From c8c6159e467b941f768cbd1f261122936d346559 Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Wed, 25 May 2022 23:14:22 +0300 Subject: [PATCH 01/12] simulation of typing && random color of text --- .../Controllers/WelcomeViewController.swift | 12 ++- .../Views/Base.lproj/Main.storyboard | 84 +++++++++++++------ 2 files changed, 71 insertions(+), 25 deletions(-) diff --git a/Flash Chat iOS13/Controllers/WelcomeViewController.swift b/Flash Chat iOS13/Controllers/WelcomeViewController.swift index 1f5ed9019..14f0cfb22 100644 --- a/Flash Chat iOS13/Controllers/WelcomeViewController.swift +++ b/Flash Chat iOS13/Controllers/WelcomeViewController.swift @@ -14,7 +14,17 @@ class WelcomeViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() - + var charIndex = 0.0 + let titleText = "⚡️FlashChat" + //MARK: - simulation of typing && random color of text + let colorArray = [UIColor.red,UIColor.systemTeal,UIColor.blue,UIColor.purple,UIColor.systemPink,UIColor.gray,UIColor.cyan,UIColor.orange,UIColor.magenta,UIColor.systemIndigo] + for char in titleText { + Timer.scheduledTimer(withTimeInterval: 0.15 * charIndex, repeats: false) { (timer) in + self.titleLabel.text?.append(char) + self.titleLabel.textColor = colorArray.randomElement() + } + charIndex += 1 + } } diff --git a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard index 84d5aa1fa..328abc86d 100644 --- a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard +++ b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard @@ -1,10 +1,12 @@ - + - + + + @@ -16,9 +18,9 @@ - - - + + @@ -62,15 +65,17 @@ - + + + - + @@ -81,7 +86,7 @@ - + @@ -106,9 +111,9 @@ - + - @@ -69,8 +75,6 @@ - - @@ -165,7 +169,7 @@ - + @@ -260,7 +264,7 @@ - + @@ -369,7 +373,7 @@ - + diff --git a/Podfile b/Podfile new file mode 100644 index 000000000..afbb02b6c --- /dev/null +++ b/Podfile @@ -0,0 +1,8 @@ +platform :ios, '10.0' + +target 'Flash Chat iOS13' do + use_frameworks! + + pod 'CLTypingLabel', '~> 0.4.0' + +end diff --git a/Podfile.lock b/Podfile.lock new file mode 100644 index 000000000..b23003e9c --- /dev/null +++ b/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - CLTypingLabel (0.4.0) + +DEPENDENCIES: + - CLTypingLabel (~> 0.4.0) + +SPEC REPOS: + trunk: + - CLTypingLabel + +SPEC CHECKSUMS: + CLTypingLabel: 95a7d1faf7e3d1d952cd11cb0491d17d80c50934 + +PODFILE CHECKSUM: d57f87b61d03530527d030790e6e437306ba2549 + +COCOAPODS: 1.11.3 diff --git a/Pods/.DS_Store b/Pods/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..e2f7b9ddd8a2e836542a9bd37028f05d8923005d GIT binary patch literal 6148 zcmeHK&x_MQ6n@jKHg&1=u)wGYrO&jye?y8XeU!?xFqI*q_=vcN)cd6j z-i6F?T8s_zdpJ&$qU`s7h{jg)(&d)Za<-k<{yRDK%b=VTgCKv&rBf->aN!5x^CX@Q zyF14+D}yA9b45s^7$L7-Bv~Y<13Af}LUDcF;Iy6gu)8~(?H~2`+=Ij0^F4QVXCMCI z!O?u)cCOvHdH31yJpGW#FKP`WaCRx{7+kx%qQjf)ca|$KFf1J(b`5R zV7_~2dn0CJCt($^3T%=Bd_K5HjGniSrCr8a17Sd3*>nvM?_cp+-mlt_mmNX|%ajz$#EzU`rRfeE;A7`}@C6 zvL&m4Rp7r;Kr~PMlL3}w?$))%@m=d8y+LB*xJsjPx# literal 0 HcmV?d00001 diff --git a/Pods/CLTypingLabel/LICENSE b/Pods/CLTypingLabel/LICENSE new file mode 100644 index 000000000..83a74692f --- /dev/null +++ b/Pods/CLTypingLabel/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2016 Chenglin Liu + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Pods/CLTypingLabel/Pod/Classes/CLTypingLabel.swift b/Pods/CLTypingLabel/Pod/Classes/CLTypingLabel.swift new file mode 100644 index 000000000..f7f67f7bc --- /dev/null +++ b/Pods/CLTypingLabel/Pod/Classes/CLTypingLabel.swift @@ -0,0 +1,183 @@ +// +// CLTypingLabel.swift +// CLTypingLabel +// The MIT License (MIT) +// Copyright © 2016 Chenglin 2/21/16. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files +// (the “Software”), to deal in the Software without restriction, +// including without limitation the rights to use, copy, modify, merge, +// publish, distribute, sublicense, and/or sell copies of the Software, +// and to permit persons to whom the Software is furnished to do so, +// subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +import UIKit + +/* + Set text at runtime to trigger type animation; + + Set charInterval property for interval time between each character, default is 0.1; + + Call pauseTyping() to pause animation; + + Call conitinueTyping() to continue paused animation; + */ + + +@IBDesignable open class CLTypingLabel: UILabel { + /* + Set interval time between each characters + */ + @IBInspectable open var charInterval: Double = 0.1 + + /* + Optional handler which fires when typing animation is finished + */ + open var onTypingAnimationFinished: (() -> Void)? + + /* + If text is always centered during typing + */ + @IBInspectable open var centerText: Bool = true + + private var typingStopped: Bool = false + private var typingOver: Bool = true + private var stoppedSubstring: String? + private var attributes: [NSAttributedString.Key: Any]? + private var currentDispatchID: Int = 320 + private let dispatchSerialQ = DispatchQueue(label: "CLTypingLableQueue") + /* + Setting the text will trigger animation automatically + */ + override open var text: String! { + get { + return super.text + } + + set { + if charInterval < 0 { + charInterval = -charInterval + } + + currentDispatchID += 1 + typingStopped = false + typingOver = false + stoppedSubstring = nil + + attributes = nil + setTextWithTypingAnimation(newValue, attributes,charInterval, true, currentDispatchID) + } + } + + /* + Setting attributed text will trigger animation automatically + */ + override open var attributedText: NSAttributedString! { + get { + return super.attributedText + } + + set { + if charInterval < 0 { + charInterval = -charInterval + } + + currentDispatchID += 1 + typingStopped = false + typingOver = false + stoppedSubstring = nil + + attributes = newValue.attributes(at: 0, effectiveRange: nil) + setTextWithTypingAnimation(newValue.string, attributes,charInterval, true, currentDispatchID) + } + } + + // MARK: - + // MARK: Stop Typing Animation + + open func pauseTyping() { + if typingOver == false { + typingStopped = true + } + } + + // MARK: - + // MARK: Continue Typing Animation + + open func continueTyping() { + + guard typingOver == false else { + print("CLTypingLabel: Animation is already over") + return + } + + guard typingStopped == true else { + print("CLTypingLabel: Animation is not stopped") + return + } + guard let stoppedSubstring = stoppedSubstring else { + return + } + + typingStopped = false + setTextWithTypingAnimation(stoppedSubstring, attributes ,charInterval, false, currentDispatchID) + } + + // MARK: - + // MARK: Set Text Typing Recursive Loop + + private func setTextWithTypingAnimation(_ typedText: String, _ attributes: Dictionary?, _ charInterval: TimeInterval, _ initial: Bool, _ dispatchID: Int) { + + guard !typedText.isEmpty && currentDispatchID == dispatchID else { + typingOver = true + typingStopped = false + if let nonNilBlock = onTypingAnimationFinished { + DispatchQueue.main.async(execute: nonNilBlock) + } + return + } + + guard typingStopped == false else { + stoppedSubstring = typedText + return + } + + if initial == true { + super.text = "" + } + + let firstCharIndex = typedText.index(typedText.startIndex, offsetBy: 1) + + DispatchQueue.main.async { + if let attributes = attributes { + super.attributedText = NSAttributedString(string: super.attributedText!.string + String(typedText[.. + + + +A lightweight UILabel subclass with character by character typewriter like animation in Swift, super simple to use + +iOS上自带逐字打印动画效果的UILabel + +## Installation + +### Manual + +0. Copy and paste CLTypingLabel.swift to your xcode project. + +### [CocoaPods](https://cocoapods.org/pods/CLTypingLabel) + +1. Install the latest release of CocoaPods: `gem install cocoapods` +2. Add this line to your Podfile: `pod 'CLTypingLabel'` +3. Install the pod: `pod install` + + +## Usage + +1. Change the class of a label from UILabel to CLTypingLabel; + + +2. Programmatically set a new String to its text property at runtime, animation would be triggered automatically; + + +## Sample Code + +```swift +@IBOutlet weak var myTypeWriterLabel: CLTypingLabel! +``` +At runtime, set text of the label will trigger animation automatically: +```swift +myTypeWriterLabel.text = "This is a demo of typing label animation..." + +``` +You can also trigger what you need after animation is finished: +```swift +myTypeWriterLabel.onTypingAnimationFinished = { + //code goes here +} +``` +Also works on attributedText: +```swift +myTypeWriterLabel.attributedText = NSAttributedString(string: "This is an attributed text typing animation...", attributes: attr) + +``` +You can pause the typing animation at any time: +```swift +myTypeWriterLabel.pauseTyping() //this will pause the typing animation +myTypeWriterLabel.continueTyping() //this will continue paused typing animation +``` +And customize time interval between each character: +```swift +myTypeWriterLabel.charInterval = 0.08 //optional, default is 0.1 +``` + +## License + +This code is distributed under the terms and conditions of the MIT license. diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock new file mode 100644 index 000000000..b23003e9c --- /dev/null +++ b/Pods/Manifest.lock @@ -0,0 +1,16 @@ +PODS: + - CLTypingLabel (0.4.0) + +DEPENDENCIES: + - CLTypingLabel (~> 0.4.0) + +SPEC REPOS: + trunk: + - CLTypingLabel + +SPEC CHECKSUMS: + CLTypingLabel: 95a7d1faf7e3d1d952cd11cb0491d17d80c50934 + +PODFILE CHECKSUM: d57f87b61d03530527d030790e6e437306ba2549 + +COCOAPODS: 1.11.3 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 000000000..33da40f3d --- /dev/null +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,608 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 30B3DB49C93DB6EF237968B5EFBC632A /* Pods-Flash Chat iOS13-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F843F9EA4341AC59B7F6DED6D8067F7F /* Pods-Flash Chat iOS13-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 39719A162A81897C508459B0098E29BE /* CLTypingLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A42BC899FD84319FB00575D48163EE6 /* CLTypingLabel-dummy.m */; }; + 4D2FC53B4837E9FED51200C321D9420C /* CLTypingLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AD44B03F013CF271605C5A4CB123933D /* CLTypingLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B41F935FECF44E33F868DF04D0D0DDEE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + C5843936956336D732E73AFA5EEAB889 /* CLTypingLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C960689C9B0938D0A50949B30985509 /* CLTypingLabel.swift */; }; + CBA4E578EE263A858B1F4F1D894D9B82 /* Pods-Flash Chat iOS13-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C9338EA578D63C3C7663FD96C2A31C5 /* Pods-Flash Chat iOS13-dummy.m */; }; + E2A01F0F5504F2192BFDDFB1D9898512 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 617989C0B8856BF627A188073AD60E62 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6F8A929BDB6E633BE35459804508532F; + remoteInfo = CLTypingLabel; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 07672300080DB94A3A7E9D87B9A9297F /* CLTypingLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLTypingLabel.release.xcconfig; sourceTree = ""; }; + 24B7811AD1417EFD760007BABA3F3809 /* Pods-Flash Chat iOS13-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Flash Chat iOS13-acknowledgements.plist"; sourceTree = ""; }; + 3C9338EA578D63C3C7663FD96C2A31C5 /* Pods-Flash Chat iOS13-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Flash Chat iOS13-dummy.m"; sourceTree = ""; }; + 4367BF2B0B52DBC23245DCE5C1561046 /* Pods-Flash Chat iOS13-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Flash Chat iOS13-frameworks.sh"; sourceTree = ""; }; + 61E75DC80543DF7605A7EEFE89CE66DF /* Pods-Flash Chat iOS13 */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Flash Chat iOS13"; path = Pods_Flash_Chat_iOS13.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6FA3F86C28464E41F46669C7DDDEC6E6 /* Pods-Flash Chat iOS13-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Flash Chat iOS13-Info.plist"; sourceTree = ""; }; + 73010CC983E3809BECEE5348DA1BB8C6 /* 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; }; + 7A42BC899FD84319FB00575D48163EE6 /* CLTypingLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CLTypingLabel-dummy.m"; sourceTree = ""; }; + 7C960689C9B0938D0A50949B30985509 /* CLTypingLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CLTypingLabel.swift; path = Pod/Classes/CLTypingLabel.swift; sourceTree = ""; }; + 81EF2928B5AE30D287990BF6C3B3562F /* CLTypingLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLTypingLabel-prefix.pch"; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A14B3C788299AC37E17C0EEFE998EE16 /* CLTypingLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLTypingLabel.debug.xcconfig; sourceTree = ""; }; + AD44B03F013CF271605C5A4CB123933D /* CLTypingLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLTypingLabel-umbrella.h"; sourceTree = ""; }; + B0542A5624B5DE02B2C5350C79F8A878 /* CLTypingLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CLTypingLabel-Info.plist"; sourceTree = ""; }; + BC3656EB186ED503E1A92DDC3FC4DD80 /* Pods-Flash Chat iOS13.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Flash Chat iOS13.modulemap"; sourceTree = ""; }; + CE8765B3053874E73AFDC78B5D6B4396 /* CLTypingLabel */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CLTypingLabel; path = CLTypingLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D50DB27001C6CB150388C484EC253FE1 /* Pods-Flash Chat iOS13-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Flash Chat iOS13-acknowledgements.markdown"; sourceTree = ""; }; + D5C7209DEA018C4293E1EAE3D31B95A0 /* CLTypingLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CLTypingLabel.modulemap; sourceTree = ""; }; + E6C05696DDF473DAFA042867E1824F95 /* Pods-Flash Chat iOS13.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Flash Chat iOS13.debug.xcconfig"; sourceTree = ""; }; + F80DD9660AFE9D88D648B289A0C0D664 /* Pods-Flash Chat iOS13.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Flash Chat iOS13.release.xcconfig"; sourceTree = ""; }; + F843F9EA4341AC59B7F6DED6D8067F7F /* Pods-Flash Chat iOS13-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Flash Chat iOS13-umbrella.h"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 48848003628701101494E561F2825532 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E2A01F0F5504F2192BFDDFB1D9898512 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F88E8F07CAB8FFBED62E89D59A33244D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B41F935FECF44E33F868DF04D0D0DDEE /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 578452D2E740E91742655AC8F1636D1F /* iOS */ = { + isa = PBXGroup; + children = ( + 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 95AF2F3A6BF6B054F5B2C3FB8F96548F /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + E5051AF8D1464E55AB23BF3732F5BDF1 /* Pods-Flash Chat iOS13 */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + AFC3D31ED54F53BF4A8BC448129532ED /* Support Files */ = { + isa = PBXGroup; + children = ( + D5C7209DEA018C4293E1EAE3D31B95A0 /* CLTypingLabel.modulemap */, + 7A42BC899FD84319FB00575D48163EE6 /* CLTypingLabel-dummy.m */, + B0542A5624B5DE02B2C5350C79F8A878 /* CLTypingLabel-Info.plist */, + 81EF2928B5AE30D287990BF6C3B3562F /* CLTypingLabel-prefix.pch */, + AD44B03F013CF271605C5A4CB123933D /* CLTypingLabel-umbrella.h */, + A14B3C788299AC37E17C0EEFE998EE16 /* CLTypingLabel.debug.xcconfig */, + 07672300080DB94A3A7E9D87B9A9297F /* CLTypingLabel.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/CLTypingLabel"; + sourceTree = ""; + }; + CF1408CF629C7361332E53B88F7BD30C = { + isa = PBXGroup; + children = ( + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, + E5728BA1B8CEEB3143CA35A236294C2C /* Pods */, + E66B07859DB863BAA9FB64BA426DA346 /* Products */, + 95AF2F3A6BF6B054F5B2C3FB8F96548F /* Targets Support Files */, + ); + sourceTree = ""; + }; + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 578452D2E740E91742655AC8F1636D1F /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + E5051AF8D1464E55AB23BF3732F5BDF1 /* Pods-Flash Chat iOS13 */ = { + isa = PBXGroup; + children = ( + BC3656EB186ED503E1A92DDC3FC4DD80 /* Pods-Flash Chat iOS13.modulemap */, + D50DB27001C6CB150388C484EC253FE1 /* Pods-Flash Chat iOS13-acknowledgements.markdown */, + 24B7811AD1417EFD760007BABA3F3809 /* Pods-Flash Chat iOS13-acknowledgements.plist */, + 3C9338EA578D63C3C7663FD96C2A31C5 /* Pods-Flash Chat iOS13-dummy.m */, + 4367BF2B0B52DBC23245DCE5C1561046 /* Pods-Flash Chat iOS13-frameworks.sh */, + 6FA3F86C28464E41F46669C7DDDEC6E6 /* Pods-Flash Chat iOS13-Info.plist */, + F843F9EA4341AC59B7F6DED6D8067F7F /* Pods-Flash Chat iOS13-umbrella.h */, + E6C05696DDF473DAFA042867E1824F95 /* Pods-Flash Chat iOS13.debug.xcconfig */, + F80DD9660AFE9D88D648B289A0C0D664 /* Pods-Flash Chat iOS13.release.xcconfig */, + ); + name = "Pods-Flash Chat iOS13"; + path = "Target Support Files/Pods-Flash Chat iOS13"; + sourceTree = ""; + }; + E5728BA1B8CEEB3143CA35A236294C2C /* Pods */ = { + isa = PBXGroup; + children = ( + F50BBCA84C4709AF15E302F2BDC0566D /* CLTypingLabel */, + ); + name = Pods; + sourceTree = ""; + }; + E66B07859DB863BAA9FB64BA426DA346 /* Products */ = { + isa = PBXGroup; + children = ( + CE8765B3053874E73AFDC78B5D6B4396 /* CLTypingLabel */, + 61E75DC80543DF7605A7EEFE89CE66DF /* Pods-Flash Chat iOS13 */, + ); + name = Products; + sourceTree = ""; + }; + F50BBCA84C4709AF15E302F2BDC0566D /* CLTypingLabel */ = { + isa = PBXGroup; + children = ( + 7C960689C9B0938D0A50949B30985509 /* CLTypingLabel.swift */, + AFC3D31ED54F53BF4A8BC448129532ED /* Support Files */, + ); + name = CLTypingLabel; + path = CLTypingLabel; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 68AAB4D6EA9C39AE2E83AA81FDBAAEE1 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 30B3DB49C93DB6EF237968B5EFBC632A /* Pods-Flash Chat iOS13-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D275CA89F5DD8CD924CDCE265C7B54A5 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 4D2FC53B4837E9FED51200C321D9420C /* CLTypingLabel-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 6F8A929BDB6E633BE35459804508532F /* CLTypingLabel */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4DE7FF6FC7102AF47081FF2B49E8E1E9 /* Build configuration list for PBXNativeTarget "CLTypingLabel" */; + buildPhases = ( + D275CA89F5DD8CD924CDCE265C7B54A5 /* Headers */, + 131C50C6A0C4B4B7AF5E8EA504C8F4A5 /* Sources */, + 48848003628701101494E561F2825532 /* Frameworks */, + 84A72A200C69980E5EBD1C2537106D4A /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CLTypingLabel; + productName = CLTypingLabel; + productReference = CE8765B3053874E73AFDC78B5D6B4396 /* CLTypingLabel */; + productType = "com.apple.product-type.framework"; + }; + 7A900DA3F4D75939CD1871D9BBCE2CC3 /* Pods-Flash Chat iOS13 */ = { + isa = PBXNativeTarget; + buildConfigurationList = CE742DD539DED24F49B39B044E5BCC4B /* Build configuration list for PBXNativeTarget "Pods-Flash Chat iOS13" */; + buildPhases = ( + 68AAB4D6EA9C39AE2E83AA81FDBAAEE1 /* Headers */, + 3F743F7CF6C05B7E5B7728576F71CF85 /* Sources */, + F88E8F07CAB8FFBED62E89D59A33244D /* Frameworks */, + 4A043BB1AD1D2518941DFC9085E53AD6 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 8F7CBCB286FEA692C1AEC187DC6A6363 /* PBXTargetDependency */, + ); + name = "Pods-Flash Chat iOS13"; + productName = Pods_Flash_Chat_iOS13; + productReference = 61E75DC80543DF7605A7EEFE89CE66DF /* Pods-Flash Chat iOS13 */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + BFDFE7DC352907FC980B868725387E98 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1240; + LastUpgradeCheck = 1240; + }; + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = CF1408CF629C7361332E53B88F7BD30C; + productRefGroup = E66B07859DB863BAA9FB64BA426DA346 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 6F8A929BDB6E633BE35459804508532F /* CLTypingLabel */, + 7A900DA3F4D75939CD1871D9BBCE2CC3 /* Pods-Flash Chat iOS13 */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 4A043BB1AD1D2518941DFC9085E53AD6 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 84A72A200C69980E5EBD1C2537106D4A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 131C50C6A0C4B4B7AF5E8EA504C8F4A5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C5843936956336D732E73AFA5EEAB889 /* CLTypingLabel.swift in Sources */, + 39719A162A81897C508459B0098E29BE /* CLTypingLabel-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3F743F7CF6C05B7E5B7728576F71CF85 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CBA4E578EE263A858B1F4F1D894D9B82 /* Pods-Flash Chat iOS13-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 8F7CBCB286FEA692C1AEC187DC6A6363 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CLTypingLabel; + target = 6F8A929BDB6E633BE35459804508532F /* CLTypingLabel */; + targetProxy = 617989C0B8856BF627A188073AD60E62 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 4388C22E4AC3D63E26AFE6E977219781 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E6C05696DDF473DAFA042867E1824F95 /* Pods-Flash Chat iOS13.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + 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/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 469832D5AA477AA185990354FCD42610 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A14B3C788299AC37E17C0EEFE998EE16 /* CLTypingLabel.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/CLTypingLabel/CLTypingLabel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel-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/CLTypingLabel/CLTypingLabel.modulemap"; + PRODUCT_MODULE_NAME = CLTypingLabel; + PRODUCT_NAME = CLTypingLabel; + 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; + }; + 5FC3A7A0CD248AF4623E3220F55CC25B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 07672300080DB94A3A7E9D87B9A9297F /* CLTypingLabel.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/CLTypingLabel/CLTypingLabel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel-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/CLTypingLabel/CLTypingLabel.modulemap"; + PRODUCT_MODULE_NAME = CLTypingLabel; + PRODUCT_NAME = CLTypingLabel; + 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; + }; + 7EE7A78859F657F6BEFC651185B43192 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + C6B312EBD8C7809E0E0556972F51B451 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F80DD9660AFE9D88D648B289A0C0D664 /* Pods-Flash Chat iOS13.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + 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/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + D299434AB35E7FD6F7921C8EF24742FF /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D299434AB35E7FD6F7921C8EF24742FF /* Debug */, + 7EE7A78859F657F6BEFC651185B43192 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4DE7FF6FC7102AF47081FF2B49E8E1E9 /* Build configuration list for PBXNativeTarget "CLTypingLabel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 469832D5AA477AA185990354FCD42610 /* Debug */, + 5FC3A7A0CD248AF4623E3220F55CC25B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + CE742DD539DED24F49B39B044E5BCC4B /* Build configuration list for PBXNativeTarget "Pods-Flash Chat iOS13" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4388C22E4AC3D63E26AFE6E977219781 /* Debug */, + C6B312EBD8C7809E0E0556972F51B451 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; +} diff --git a/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/CLTypingLabel.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/CLTypingLabel.xcscheme new file mode 100644 index 000000000..eadf53430 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/CLTypingLabel.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/Pods-Flash Chat iOS13.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/Pods-Flash Chat iOS13.xcscheme new file mode 100644 index 000000000..dba95f511 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/Pods-Flash Chat iOS13.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 000000000..98fe27c3f --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,25 @@ + + + + + SchemeUserState + + CLTypingLabel.xcscheme + + isShown + + orderHint + 0 + + Pods-Flash Chat iOS13.xcscheme + + isShown + + orderHint + 1 + + + SuppressBuildableAutocreation + + + diff --git a/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-Info.plist b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-Info.plist new file mode 100644 index 000000000..53e4061e8 --- /dev/null +++ b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.4.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-dummy.m b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-dummy.m new file mode 100644 index 000000000..3f405a87e --- /dev/null +++ b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_CLTypingLabel : NSObject +@end +@implementation PodsDummy_CLTypingLabel +@end diff --git a/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-prefix.pch b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-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/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-umbrella.h b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-umbrella.h new file mode 100644 index 000000000..21110dde5 --- /dev/null +++ b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel-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 CLTypingLabelVersionNumber; +FOUNDATION_EXPORT const unsigned char CLTypingLabelVersionString[]; + diff --git a/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.debug.xcconfig b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.debug.xcconfig new file mode 100644 index 000000000..b8e878121 --- /dev/null +++ b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.debug.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CLTypingLabel +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/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.modulemap b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.modulemap new file mode 100644 index 000000000..ddc34aa52 --- /dev/null +++ b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.modulemap @@ -0,0 +1,6 @@ +framework module CLTypingLabel { + umbrella header "CLTypingLabel-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.release.xcconfig b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.release.xcconfig new file mode 100644 index 000000000..b8e878121 --- /dev/null +++ b/Pods/Target Support Files/CLTypingLabel/CLTypingLabel.release.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CLTypingLabel +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/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist new file mode 100644 index 000000000..2243fe6e2 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.markdown b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.markdown new file mode 100644 index 000000000..f36a7967d --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.markdown @@ -0,0 +1,26 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## CLTypingLabel + +Copyright (c) 2016 Chenglin Liu + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist new file mode 100644 index 000000000..f2bc9e6dc --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist @@ -0,0 +1,58 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2016 Chenglin Liu + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + License + MIT + Title + CLTypingLabel + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-dummy.m b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-dummy.m new file mode 100644 index 000000000..1587b9e20 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_Flash_Chat_iOS13 : NSObject +@end +@implementation PodsDummy_Pods_Flash_Chat_iOS13 +@end diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist new file mode 100644 index 000000000..06061b3b9 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist @@ -0,0 +1,2 @@ +${PODS_ROOT}/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh +${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist new file mode 100644 index 000000000..907f1c621 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist @@ -0,0 +1 @@ +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CLTypingLabel.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist new file mode 100644 index 000000000..06061b3b9 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist @@ -0,0 +1,2 @@ +${PODS_ROOT}/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh +${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist new file mode 100644 index 000000000..907f1c621 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist @@ -0,0 +1 @@ +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CLTypingLabel.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh new file mode 100755 index 000000000..c1c49ba95 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh @@ -0,0 +1,186 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +function on_error { + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" +} +trap 'on_error $LINENO' ERR + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +BCSYMBOLMAP_DIR="BCSymbolMaps" + + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then + # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied + find "${source}/${BCSYMBOLMAP_DIR}" -name "*.bcsymbolmap"|while read f; do + echo "Installing $f" + install_bcsymbolmap "$f" "$destination" + rm "$f" + done + rmdir "${source}/${BCSYMBOLMAP_DIR}" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + elif [ -L "${binary}" ]; then + echo "Destination binary is symlinked..." + dirname="$(dirname "${binary}")" + binary="${dirname}/$(readlink "${binary}")" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + warn_missing_arch=${2:-true} + if [ -r "$source" ]; then + # Copy the dSYM into the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .dSYM "$source")" + binary_name="$(ls "$source/Contents/Resources/DWARF")" + binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" + + # Strip invalid architectures from the dSYM. + if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then + strip_invalid_archs "$binary" "$warn_missing_arch" + fi + if [[ $STRIP_BINARY_RETVAL == 0 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + mkdir -p "${DWARF_DSYM_FOLDER_PATH}" + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" + fi + fi +} + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + warn_missing_arch=${2:-true} + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + if [[ "$warn_missing_arch" == "true" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + fi + STRIP_BINARY_RETVAL=1 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=0 +} + +# Copies the bcsymbolmap files of a vendored framework +install_bcsymbolmap() { + local bcsymbolmap_path="$1" + local destination="${BUILT_PRODUCTS_DIR}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identity + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework" +fi +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-umbrella.h b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-umbrella.h new file mode 100644 index 000000000..b1eef0cf5 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-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 Pods_Flash_Chat_iOS13VersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_Flash_Chat_iOS13VersionString[]; + diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig new file mode 100644 index 000000000..01993e3e6 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig @@ -0,0 +1,15 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "CLTypingLabel" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap new file mode 100644 index 000000000..1f4230121 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap @@ -0,0 +1,6 @@ +framework module Pods_Flash_Chat_iOS13 { + umbrella header "Pods-Flash Chat iOS13-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig new file mode 100644 index 000000000..01993e3e6 --- /dev/null +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig @@ -0,0 +1,15 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "CLTypingLabel" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES From 9d0735ecbb04609352409f64f8b61afa74903dde Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Sun, 19 Jun 2022 15:19:55 +0300 Subject: [PATCH 05/12] CLTypingLabel, firebase auth®ister*logout --- Flash Chat iOS13.xcodeproj/project.pbxproj | 11 +- .../xcschemes/xcschememanagement.plist | 2 +- .../UserInterfaceState.xcuserstate | Bin 21916 -> 42554 bytes Flash Chat iOS13/AppDelegate.swift | 3 +- .../Controllers/ChatViewController.swift | 13 + .../Controllers/LoginViewController.swift | 13 +- .../Controllers/RegisterViewController.swift | 16 +- .../Controllers/WelcomeViewController.swift | 98 +- Flash Chat iOS13/GoogleService-Info.plist | 34 + .../Views/Base.lproj/Main.storyboard | 15 +- Podfile | 3 +- Podfile.lock | 753 +- Pods/Manifest.lock | 753 +- Pods/Pods.xcodeproj/project.pbxproj | 29484 +++++++++++++++- .../xcschemes/xcschememanagement.plist | 123 +- ...Flash Chat iOS13-acknowledgements.markdown | 3225 ++ ...ds-Flash Chat iOS13-acknowledgements.plist | 3321 ++ ...13-frameworks-Debug-input-files.xcfilelist | 18 +- ...3-frameworks-Debug-output-files.xcfilelist | 18 +- ...-frameworks-Release-input-files.xcfilelist | 18 +- ...frameworks-Release-output-files.xcfilelist | 18 +- .../Pods-Flash Chat iOS13-frameworks.sh | 32 + .../Pods-Flash Chat iOS13.debug.xcconfig | 8 +- .../Pods-Flash Chat iOS13.release.xcconfig | 8 +- 24 files changed, 37538 insertions(+), 449 deletions(-) create mode 100644 Flash Chat iOS13/GoogleService-Info.plist diff --git a/Flash Chat iOS13.xcodeproj/project.pbxproj b/Flash Chat iOS13.xcodeproj/project.pbxproj index c314dc386..48c36bd3b 100644 --- a/Flash Chat iOS13.xcodeproj/project.pbxproj +++ b/Flash Chat iOS13.xcodeproj/project.pbxproj @@ -3,10 +3,11 @@ archiveVersion = 1; classes = { }; - objectVersion = 50; + objectVersion = 51; objects = { /* Begin PBXBuildFile section */ + 0463FC11285DEC6A00BFB8DA /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 0463FC10285DEC6A00BFB8DA /* GoogleService-Info.plist */; }; 0B628177235DEE8100E35CAF /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B628176235DEE8100E35CAF /* AppDelegate.swift */; }; 0B628179235DEE8100E35CAF /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B628178235DEE8100E35CAF /* SceneDelegate.swift */; }; 0B62817E235DEE8100E35CAF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0B62817C235DEE8100E35CAF /* Main.storyboard */; }; @@ -21,6 +22,7 @@ /* End PBXBuildFile section */ /* Begin PBXFileReference section */ + 0463FC10285DEC6A00BFB8DA /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; 0B628173235DEE8100E35CAF /* Flash Chat iOS13.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Flash Chat iOS13.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 0B628176235DEE8100E35CAF /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 0B628178235DEE8100E35CAF /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; @@ -79,6 +81,7 @@ 0B628192235DF02000E35CAF /* Controllers */, 0B62817F235DEE8400E35CAF /* Assets.xcassets */, 0B628181235DEE8400E35CAF /* LaunchScreen.storyboard */, + 0463FC10285DEC6A00BFB8DA /* GoogleService-Info.plist */, 0B628184235DEE8400E35CAF /* Info.plist */, ); path = "Flash Chat iOS13"; @@ -116,7 +119,6 @@ 66994428E1BB42C78EA77343 /* Pods-Flash Chat iOS13.debug.xcconfig */, 41D365E32DD792F011ED41A7 /* Pods-Flash Chat iOS13.release.xcconfig */, ); - name = Pods; path = Pods; sourceTree = ""; }; @@ -190,6 +192,7 @@ files = ( 0B628183235DEE8400E35CAF /* LaunchScreen.storyboard in Resources */, 0B628180235DEE8400E35CAF /* Assets.xcassets in Resources */, + 0463FC11285DEC6A00BFB8DA /* GoogleService-Info.plist in Resources */, 0B62819E235F0F4D00E35CAF /* README.md in Resources */, 0B62817E235DEE8100E35CAF /* Main.storyboard in Resources */, ); @@ -403,7 +406,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "co.appbrewery.Flash-Chat-iOS13"; + PRODUCT_BUNDLE_IDENTIFIER = "co.maonz.Flash-Chat-iOS13"; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; @@ -422,7 +425,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "co.appbrewery.Flash-Chat-iOS13"; + PRODUCT_BUNDLE_IDENTIFIER = "co.maonz.Flash-Chat-iOS13"; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; diff --git a/Flash Chat iOS13.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist b/Flash Chat iOS13.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist index a5260f25b..71c8ec0bb 100644 --- a/Flash Chat iOS13.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Flash Chat iOS13.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ Flash Chat iOS13.xcscheme_^#shared#^_ orderHint - 2 + 19 diff --git a/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate b/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate index d0a8499249947bf4a28b9aaff42c4ad025e42b35..e16ea624919d18410ceb60055ea282a83ac15970 100644 GIT binary patch literal 42554 zcmeEv2Urx>+VGq+vokw08(pe^h*XiXu!XMlr7R*K#jY#Ds;kHn7VO43rkY+&PXtS1 zN$=GpCNaHeVobY9Ok%pGH$R+sirgJKEgdF0=VH z1~Hgn8II90JR>mD^!R12POsb3J|n)lvt^MRzBR^oc{--Yd*&~8wRCv{8Fbbrr*ULW z!z9;AS8K7a(5sA|5t|yin!8*Ix-EdciIEutGl~gg!kH8%l`%1COgdv`ER2=0F%G7R znZ#5xlbIT(mZ@W=F!f9W)55eeE@lCp8V17gxv4}%D#3KR4p?H*l#-T(s9wnhY>Y{F?c2j}8ET!f2p z2`LegV(j;u<5Ls&0urbiEKVw%$Bg_Yy~@st!1aPPIdvim~Ce}*=6iy@tJ(y^g(}y@9=v-NbHTce1W{ zI(vY9gMFL*ko}1Lm_5vX%YMgx&;G#v$o|Cs%>Kgu${u5na||bNBe*~=l#Ae^xUpOu zm&7G=>0BaNjU zuiK>CtlOsBuG^)%O?Q{>UfqMbM|IEWp4Gjm+o#*Fdt3L8?p@sny3cf9>5k}r)g9CQ zru$v@hweBp@Oob4B|efL!$M{3HCM{1f~h{z?7?{zd*J{$>6Z{#E`f{u};V{zv{N{uuw8zz9gt z3A`W)vM^FG3c*5%5H3UrQNmauPKX!A3rRw;P$HBHcA-ot7b=8G!68%$lZ0AfsxVua zBe;YG!a`xOute|*UBZRJMZ(3xCBmh`Wy0mc6~ad0O5rNuI$^W0UDzSqDcmJIB0MTQ zAv`BMFT5eVC%iBGDjXAj6Mh%|5RU5^J|dTK#GIGxTTbFVJ78zesQ`n&XZ>+jLutG`cwzy1OJgZhW`59=S(@6|t}e^&pT{uTYJ`Zx7&>EG6WtUs*( zT>q{9JND}cZzq3cZ-jTyTv`?^WqEQLGgX@ z1M!&noA|rbC~ zNR?8f)Fe%nrb*MK8Pcgzr{tBoq;6@Mv|L&tt&~E|kmUa=AvXmFwgw@+^6_JWpOEyX9_qt$doi zQNB{XO1@gYM!r_QPQG5gLB3JmByW*-%Ddz{<-6pElW^`KbK0{Ehsr{GI&0{Db_X{F8w-a0Z=$HwXs3K{QAPqangD+7M|N zV~8@0HzXNS4HFIdh5|#Op~z5dC^J+V9EQn;2E#PNOv6IM5<{Dz!*Hsh+px^Aswuv` zyRB_Ma|$zp8Oa!#ASQHLO+(re*Glh9`0L}%Q{!9On!Vm$CV&Z4u)_8-!Ayw45j0at za2n$?OUkp&nOUVKTXD9Cv%I{sd8x~3EEw2dWApq{PkUFVr>)J^>CDL}$;>V* z$u?zKb23dCW^1-7*IrU$vgVX$+p~+aa;;?+r*T|gi%`3yxpP{xcdFa#p5Nx0=I&b5 z;BH^o=7Kj)A}k)8X&cX$Zv zGdWBylgCV8CNlZT2xX*VR05PhB}fTYLX^<$u)IY~F;l{nGIpj6zE!{qhbbGBbCt`K z%ax7r?P?{}X*9xU8Wwq$*EBD4FKmXnYLEK97I(T}#sN^OsmtBw?sB`l)7-6Hi?m{n zc5esBeV)$#VtqB$VzZ~ZUCZsR`P~Z_!j>6>CcBn;I#*V7Hg_!Qf9fAYUk`JjyRufd zuU*kU{YGXMle~>-Vx}_FnCZ+6W~LIZL@1+`NM(!?wT+q0%wgs-PG%m{tc+DmN}f`q z)GAGMn$go+Jgu%YXm^skE3I#gX?+{$G>-n0B8>n7PGjVsyj5ob3)J9hgN1Ol_B9Ps za7Cx5yF+^cGPBod9P=lQIK19&m)Aed#f*nZ-oh+l+L)zGyArL$D6vZ17N&zamFZ+U zlz3&Fk_f+HTEXS+wk}tv3Y#S>C&Ls$?uOA+H+#GKMnWGujiF8L3x+KmrnTW}ZE_55 z$3LD`%xWfd((@?9b z1sco`8c%}=Ld%yPO()%7#nU9P3-OaX?0B6bzGw79%pS1Ta5 zYp%D2l9xJ<7eL+9KF90ZRtMDa-exrNBZ9&r$Ht9MHD_c`C@ihmC+Njf8atZ17R>;% zIpTXebF(o zCtLCPTMyj~72^|o6UGfQl<9Syp4M*A4vlzUQgX`4w))(L zy$V{jkJ=1^$uP|}QNrroSLvua$rfS8XWv6%XX~4%?VR2_xwf~aCXVs_>#ds-S9GfO zC9de4bJR~g4KRSls4Y#hVd^j=0Ge3uS_pXO>ZD`o2jw*Ha`%ERQ27Hu6i8$8L7ATm z>iZ%fUdxyb%ypok?*O&@2~fh{V%`A-{3GTk<~QaKP`N`v(N04)l!>y@L{O&ZqJ^jp zc|dJG50vIh(N<87A3;x`r_e!AfxpHq4#cBzG>*lYpxRCbMb-r>>{6`Y^YF!ZGbpPM zscPyQ_+5Mm|G;vfhK91?Y$Th&j%O`w9;lzipnA^GrjC(sJ*N5o`u?yhG}3nob16s^ zWh*+`G?}2byQ|IJ?xNGzOdXUK`N-&I<}&7TX8lQ*cN*tA8@nn>r&_Y?QycsH0Dfi7 z>i;^R%f^)*E^oH4JLl8}r_It|P9+r$z|`9pI$D7yx)->C0c+FP$Xp4mxTaxpcNZOS zKiS^QY@~$SPn54_Hc@_i4RbAQ+V#v0%#BK#lCGE)i(*x5+dz&>U^c_gR%ROrZy8D^ z{A4M)lrd2OsG((%YpF})E-;L;cG_91CO$PRad&jMS}AY!4lR*5kn}gG6uEZ60q8#`StDq;ErzcQNDDilHJ4Ht>jR?L|dHN+y)H0*h^dVuh#v{157foNy?T7G?{G$AucDg zzsX0KC+Vs_%IszyV;*O2WcDZ%l!;2dQlQwB!fnh`%+t(X5ZImt`M5|aR;oc%n@ojc zjU~dywk#?2ETz1T@&t7#PU9#Tl`4xgc2ZseJFY?i2pyyBB^7;qlwv8o(?kNwVX5p_ z+upXazPr60HmRh|)3St0Dg$0QpbB)>1+RV8jo3fw{melstGvd%&KzLgP)d|i#jccX zVcrDP9?!g^lq(Jxeia>jh<}6tq|Lx9TUDOwG{(X6((cYq7*=(2cYDjC25n;Xt_9F- zdy6L0SfEs8^D>vC9T;aCL2FK4m^<);HBOz?a$C3+89F=DOzRWM`PQ zCck2iY*Hp^b-!l5ncG*lxU;i)Hy}Px(3-p$eZLVdmw$}NkHuwBa&<>_7^jEDwRfDQdLe>WZdRYhkCmYvmNbeF9BEje{C#LQ|D?a%=Qds3NB#5e zMl0#Om!aiog|b3fsjS+JR-x5sjj~!;AeJ$X6i6omkmvysB}Li>ias4eq7gZPeZp4V%*D zSxN0^(V!7i&`tdFQ71;bz0n{DMR$3kbJ9R=ncoecp-tfW3tiEk1<~H_jt);JSR#gL z*yp|T(nfOA%(M|pW?E)iZf@EXx3+rMqZ>9UXKRb|Ioi}q8J!Wu6?GJ;valawwxDfH zau3?7oY#YHQqHHGC8iqyvaXYI?M_!~DJatm!PHZ>0^|)Ur#S4s{n^PJ*@kwZThOiO zHgr3>L%Be?P`OCCSh+;GRGH*7X89Nkl{yxHl~LVgS0}aG^qHIdt)~@tb#=O74JeH= z|DB2r?p1)O6MR*GRC>BQTU|l<4pc)pj9!+ zy=V`5Qn^yOs+UUlz!6osGo-J2wX1oFtJNUTHMXp5bIlz1GTQeA+IM$=MHnngU3H!ArNF7G zn^$_e!AuyU6`?(=ul+)JT!&W9|5|mPw+^;g0gKioSy!i8m+leBPrez|QO`Rl+wCXV zxd8B^{S?vPy03EwwMf;0ZEEi1<`wRx0P$2n=<;hU=o|DSh>hr5^d0&h{h(}9Zc=Vm zwr@c{p`TF{`c>JX+zwLF!%FJ(YS)4;Z8%hl?;Bm;D$msBPuFlpy?fyzwXkpZF~U4_ zgE4699M&m2m0ij$%B@=f!1iJhAT$H^^fn)yPK7O^Y9g4+UCUM2s&8JdX4wg%?Qpd_+QGx&rMgO>57a40 zG!L0e&|D zrFm9)jvz^SmY`Bfa|YpEfCkqv0&w7{5Dd7kJ*xzi04@U$L2aF*J)?uR*ivTEJ(>ho zS=A&y2DZB!gcXp8>p)bicby6fd>0S}%6P$0>Ic?&xD`Yp+>Gbr7Ug;61?9!f*abTI zQ_4%AjTg}+3ZzR>?Dci+(_)Q&9E6uD-hqr`UkMg+cZ>gtwoFTrdoymw9^9e4tbC>X zuB<Ufmb0IyyL+A|r33%dir zI^WaW*&02*q}l6AQUxu1BZiV?x8~GUzYI?WHTLz@`l#$ z$P@bY7rGg5heB^EZz->9rer_?-$ZUjQSj;=ApJ1zA#MzRsk_u({-yOYw3MpcwBh^l z19*+{zVd+rq@(5UsV=HAlVCMdbq4;Z3Qantir#d(c4=*@GIPTGv;}caN2Z7iPM(@LA+Hl{-?|?Z1R$>qXpj5aQze~qI?7N{fb{&2n*5?q= z*pKkX_%P6_Utv{_0M+_U`9(Q4m}-5BKl4*9|5nK<@LcHK!1S&80dS%aw@w0_}A#hiYmJOtfAY& ze*oS3_rRO}XZtb$+E`JAte*kHI=bh#xm&cIGkI0*%4swW0+$n@qt3Ok+1u^)>si!k z9S(YyyL~ud7_y;k2;ERN44=kEu%q!|f{?nSe<)uPBod@QVNcm8cC3F-3F4LGgEo~- zfK6q`v5DX&N+O6M2ouB-#Pw|~8$!t>?M0=Nf9VVJ@9Th#_dgnDt8?jA6Quh$dtE^H znjk^j>?Qy3X8)CIZ{UU(&<%%C%vlB)Yj?L+dzxFv16u=2AX^C%A?qMW2Gby04G$)> zHGtnOnz4Tf{t{#$sASlUW$W1n*w~Q1jU_0Api}79LQw6Ht)0Qn?BCj8f<_G9+j(?v zo7wqn3)@Q2NP>(61rQWC{NDO^>f|=ht8HG;-`G5#=*g~O&jBr&UCW-vu45IJu6hUDGg%cD(&}f1p2^vFC6hUJNir&d?0EG(vvlp-zvKQfF@aa-! zJV7z45)VOE@dPCklmb)-zNBgTRzyFtY1@(3XNLq~W9Uneo+rE8LE{BuMa;0TOF{T9 z^?;#CHH3~Gwv3~FnHGWtI@!=x+Ei7#Pq2hCaYI{CeS)egkmgZ6gToD%8a&HAZLJ_k z4cCzt>Y+74-MGUw;e{C&cXusP^+y^@rY#egxhT9-O~dz5d#*MHit3O7FNcVyYUo3= zfw4VcqhxytidDe!NKs`g1<7qFivAE3r<|kyQq~)z{m^j>dmC6n*;@%p=wWXsXdJbL zM%Z0#UCmnGnqJnoZvJ|Av-g3~o4tpD;lS2i;Tai$JjlzsmIwT2udZ$G_a|r1+dU3HsY`N9QzU|RqXTZ3+#&o zr4wW($g-JznSF(Ql^`oYHiC+&4Opj-2T;bQ+n6+g+NZ0vIf-(TLweU#x9rissiFet55tK<#RxkTL`vF1O1pE~V zO=^hboE8tnN-gZ}RBiiIvnVO`w0N2uJ>4yfd?VBbh>(1+6rLQ;+hH4ma7>oxGk<(o=)n! zRXd&w5^q|6$4+CSk9(Hb)oKmh^Qk)`jTUp)E%LOxvYZw-I8dF&q`@VN``RDSURpIZ z)c9@rX%1hjwfzG~s{;#4XS2I2uJ9HAszL-9`y2ba<`mNaZ=ep|%l<)SFlr?l`jYz2 zeLA^Qdpk(V;t+@X$@V0I$_9~bP7gT3iJZjA959MVULG8z#|x(aG}GukV~}2i_`6d^&|tct;E>Q!VGsfrIVNgsbaZTVe8RZI z@zKdC$*FT{8U_R!!&n;KU6kYmK+v!Dq8{u+5Ny&3t{(rRaF`o@Rb9SvcP9;5^mcf_Y|#lTR0{EeUd^O4 zs-|H;EAGB{Xeiat1yz^mkx@bd zQcG?#hNh*PAp|cYGb_KqUR~eNIBl+TUdsY4JRP{J)eND{(KN1^hBZf<;lCv#!yKIp z4}g~q`abB38lGNkEh{mXn#`pcc2h=)-C`;!$;pOj^^!81#g?62mR;5a^UKTe7}J?@ zh@EX_ybyC14FS-L;Byyzazi><10LsbPp-+Xt(yX}IRKan-x@?UH972>Aq3_;_!ae^LGV5V zp2Oy3WR(|N%{e)yOiOmA$&zicn#>u+8KxXdj?J2FEiJcZ+=#AsV24Z~?8bT3HQ~4}e&W zKMA)7{?#AArHwi#8zQ)1*v<3%&_e6Cx49G^x4H(0Kev|7HLu8C;L0}VHs@MeTFh!R zWCY|sBteQ}Hl#RqLZIC_5LWjv#CjcoRK$;&BM3oIOCqvCB4H~e3!aBAhm^pr=q5-D z-05?eg1ZzF1n+_5zz5O85DB>(k^`Rv7ukp4T^WnZ!OVUOSg_v0AK*{%H;{HGLE_yA zP@5tk-Z71>1vP3Gs6C6>Zb+x?YsXs2jbKWjTubmW&ok}#~A{#-^@+t zW-{x6B2tUBPkiELa|CeJY&&5U!d^qzYYBTjVQ-)uIk*IP-jWUv1ZaEJ z~D+?*}tHxIl?4w<<@X(xzo6HoI((+6+{IL$yNIAAJ=`S(Emcwn7(BR*n!%&ZX{`STOfKqj zdLcFkc)zQwZ~w05dYR;#xofy#(>?q+T~w}YT%1T80M1wktbT1C)mg4Pmr8r|Jdnuf21U-okz?<}usqw~A7 zT3uZbR@=|VfH!pbV>>kMwi;Y-YL3qwZwpxZK*=^WtI0w}ttANJ@^<+ijRe`Is~n)7 zVgnSKLoEbUgI3?Gx*B&6^YJF7Qu}wC<($2bSM?<5t%w* zRhN}EI%;d2lgefcSDr*{sPfMTA1o+aFkS+)k8D14Q&HIhNxQZFhOVgcl0wg zCKjk@KWEJ~XQf8lvNQTZqq(oRuOS45JHj0$=v;!%@8!PXz9r~Ff}R+>x<6^Fd!Ex+ z{P$LOm~gm($o-qv?gdU`_1|lEIA2wN#GQYej_WvxgwQcMq{BLvAfPc969hEo(k(ij zj@Jn~JwcZdbU8tf5%f6SvD87-P@|@*3BuFu)uQpVXR7uvd~rYf@G}a3C>ub&Mj`$5 z*hj0i9*2qT15em6qj74_1`Y;g%6z(3^Td_g02`43#kj%g>XMn(sm_58wtew zoeq(T=^KR&l|T4aP#2+#0zjvcin=j0QjwsmHtWWsLR}0&S1Z8VuAz&j1vw8Fc{pJ1 z|89um=nz4lzqZeIq)XOWAfQ2)qD$48bZNSDotYr8)L&1~4Fugt&?bU2HPVr~?|&HnfO2a+@(iSF9`1mFn!eGF`c@ zLRYDC=&E#+bk(}ax*A=ru1+^aSFdZ(HR_slQ+3mH({(d+GYQ&E&{l%B5p)wlHxsm- zAmCs-3ED-_Ed+tZ6DZj21l>Wq zb#rucb=v!=m5slK*W3k20Q>*fP%=#y17t!Fbl zZc!5%weS9>7pM(}BYR)y=9)DQFas1f zOkIcpUHi7t*R_+*&Ogu#)Y4%C2kI|9uo!R*Xfz&8)sEs(CsgWNS}0#d`S1x#3@inz zL=URsD*~WcUJJklD>B_b5TLzKJZiY&j+zQ*!;FT;vdR9!SF44Sz{K3!3m!8~M4KNO}%;W($2Lu;NMh-4nS8H!@mNYp4RP2tvApp^VqN9c>s?h}v zZ-62}shD9(Y53-Bs4pE@9thXap*Bo&ln>b!plnbwZ*a>^4P{P{rJ4Yvrj|JyN`VSA z!Y0)|AV?pzz6_w@Ez%H2REw@h~w^l+6UwjT0U7^_cPb~boUREadi*r9v=K) zw+`g#%^E47{X! znfr|j1A7UAwl7eHfwXUD|8jqjf4r~h-k=f7APi7ZpjUSg!-_rwkxMXuz~Q8lVIKP1 z`j_s#!Bah?`xqM6eTYGMenC0ht2?awgrJuQ`f`vcs{2wC8DDf70f_%jX2x(LWBP!= zCSNj~YK|KaIOZSlQQh}cmi$`xjqY3BcLcpm&?^MJO3=P7Sk(Qf`$_jRmHhV;^cq12 z>5}vb6>tax7<32deqi?21P(9-1D9Xs28%RJ%q!^+_W=f|WpoV=#(+2;aE>*%FQdn5 z3=G);ymFKbNLKCF+I$n>8J>j&<`ItxdYzyHz07!CM{PK7(7^@|sO#|3uuULzVDldE zSXDkDGvWP#Iv_9eL2w8OZ{SbiNAM$gBOkyA67(iPZxIB#(K`gaOVGavdhaGam=EDY z`B8irAI>BY^gcm{34%@jl%UTD`do{BAF0_|= zK$F@%%iFcp@Sh+snYzkH(U-;aqz14Wx%wNJRSK3KNSdHVDJVtdZ%8EbbX3zcDBmto z1=XlI{2=<(7qYJ64Ihu(y?g>cj-U?+`Uu2SK8YF0C-W(MD&9p;e(3~RXIXO_{YcO0 zfV@e94iN+)ZBtjTHs$78)3P$NGOf8_wl&+pa-SM)vY0c{GIGt9EbyyZvU9E3x$0RY znc3NCxsb+cvzc=Z8@}$oLmcJ%37>z*Txkd3bu!mppwn!Xvo>;hy)ks zYLnG$OUug2wq{v#vvM%_o8i-O`c?TfXcYHNJnV=&Sul5m)2xe7U2P*LZ#q7_* z0{mS~;hTVl^7VWJ-$>9=g1#o`8*qm6)A;GCGaNMD?}l-P{~OOYKuMo#Tysu)`<> z7bjhTc?5mmr_k^%`~q->^R2v#pdSeOv6o-SgA(-sXHCz$#F%^B|B$MyV~L+IDpK)*0nQsau;DpB%> zPVndPmz^wCx}3j)-^gFdU&UVyR0(qg2M`=ca1g=41TqpJI$qn)>ydjKe*=FbzlrbR zd-=@->j)MI773OKK84_s{Ul+Vih7t=QLh0|&uY!hNV8_zthu>4*6hrjT)-WZ6>vJu zYPRO&=H%pLSS^_qxJ5 z)O2D;SvE^97=8YvqYPVyIn4|mXJzMDGi(+M6#a{?Zq>Sy`Uu*fIpt*M+EnUdvF4;@ z*>W;0mfQ@BEfW$~f!GY{Dl6NPkvU9P1EzJS)|a7gS~=#dG)rbij@6QD0pgdT5i)a5 zT25A$Ej!1Om78O>WU7Y>3|ziUb4HFjD;Si`mXn#Am1zMFQ&x8W3f`-AHDdU#vMo7g zI8gwI=HR}p8AGO(nMuhj9E>%nt87Tz^>5aLT35!t6+CfP*4$yb(xx?N1$~=kwZf`o zX2YuFX2Swx17QbZ{#?b_FUId^@#D>I{;?s%JbAUrVzp)i=gG;;F=qoW$%C;H?>bUH7{(K+2~$svXz(?WVHK-xQ_>6a2LOy ze~o{gKfu4iALQTU-{Rlq-{Ifo|3z>l!BGT96C6u$Ji+4#9#3#G!KnnN5o{*dx{H6G z|A0Tlf5?Btf6O1|KjA;+KjS~=zaTh+;3|S!2nd$=3WDz>_yvMLCagr*F@(({?9@R5 zCjYf6VB#^rwEqDCvjHNdTo5$|v9?{1EkaLf8DIeAf6zJ`>oook1(fnM3i}g+W1PlC z|G;$n#ZGVfpT-goT!7E6zk^lmsv zEgif)PWmBj(SY6sPU{^a`xgJhlb_~lgSdY6sG9yY8M6O^8oy0&qSJWs-y48Bea!|8 zxf(vt9(*bXok&YSHw~-s(0aqZp}7h!SW2*>x2WNG1J`MUwoXY-W9Hu;Cao~Atst$f z6sK|C-);+n;;SL;3RIKo=J~ERnrNS{TH;~OgWe2X=`gKZlhb(Nf6(ney3(!me7<4V zd5ktlIDf10?+tR;y#^c6pHdznR_h9mZ2X&uH*8n^Fn&^b3qqpSyUl4__V*@w@@U@% zXGOH7`wpvcLL885g>z|hJ6Op&(^~x8QAidtndBWpijXRpgft;tFbfvJD%b>I8<_-W z5u8nM4#Bwu=Mg-C;E4q16I`%E$fD8TOoEUnOaS*of=~d_-?-2h{f&zWt^h9tv{L!M zFZ6q85V?0ifH)0u{53poo)dFOLhv&gyq5tVWqH2 zSS_p()(WTbr2>dElL)RR7*?T%;97#~2%bW4J;4nGeMNBNPGP+dM$cj|gcN1SQ4r1( z&L_CZ52e!}M*+Z-rYPW91UFOldg#(?5e#6f`mO*9=v?{|1OAZ=g};PiRdN=t zrhs}4!BhQ!3TouAsR#Zo-y&?Ipt_ad={>?t1kX50P~9oqO2O+M0epCg1kVKUVjrO3 zMKcdh09AiqcMD*F9>z8zJSc#F&r0xYg6DvG-5-w*25@0Fozi0j&+W&rJ;Kw24I9E< z;TeLR1kavQhId83?H!Q1NFgxTY50O?%#r_)J-cDuR{&-6BZ)?hr-XX`;a zSwryJlfpCoM1AppglGCn{UjC7^i?XJt^2Db@K1Y+el`eK`g(nXzER(#pQ@jxpRS*w zpQ#64LkM0^@aY7fLGYObpGEN51fN6j27=Gsp`W9nn7&yPuJkS{T%G4funYTytIPf? zT&d@F{|y8hj>GqHMU`jiy%g}e2tMDBUCSwUtzh=jAA&DXKBfLn3?tzM@m6th4m zxu{1E8+-9dV%Ayu4H{;hqhi)26s*ouG3(Nym}Pjv-`&Of%QR@bRE5UN|Eik5&ei&@ zK=t+4=&#jZr@vl*gZ@VSCVh{-moL?CA$TLfR}y>`!B-Ou?D|>)Il=gPf^Sf%{*62J z+WD&q`W=3%ufI)yJHea$KnV=HkLvFr`1b$GQgBqG8s?eyf3Fc}aQO&@%SQ?B@x$fg z6fU38?}4AE2<{~qjPme%3qWR|F~XSW-}>kEFH-1yf#7XD`j-g4=_H|ZpZ;|XI>Dz4 zGS$r#%-&F;bNf)})P3pi?j8O6!;||%`VUodzmwoyL&*InbatN-d`myM|3ZHR`XAsg z(jV1-O~CDrZ#y}1|GoZ~|A^d+jL518CSn!A?)a;j`=%|5BAghyQE5&BgB!S zQ4A0R`BE{M;JXOEn_$qR?j`s>g6}67q|*lp20;_Vs)u)qp&HE>BY@_sVwE^nj3)RI zKZ5P1RNp67JxQ<{_wZk_iXJrdPa&9S0uU6_2!7OuV4?*O>`%37F-Ob;v=Va(eym3X z+sNZ5hgM>tSOUN$7E!JG3Basgv6O1ndjPYBqSc62KYTgF$-|;B{vDUAe+o;*4h^k5Dq1}cXeE}a z1ZB^VnfvQ36W3F;S}v{-SBk5|)#4g)t$3Qa4$umOs22$ag7z}OuMqqy!TSi_Pw;C5 zLx=~U)q$Pj={~eN+t0Ve^Ti7Ye#4JeZw}yF?-KmsfBDuw&9}sBCmCtKQXj?& zAU-5Qh%Z-j-|xq(C&j%d;MFtYvjl%Y@S&5#s~5$6{~2DrDZZoO z)!QmweRMMH>X3MZ;?;-ZN8-ogVeu33Q}HwLbMXuDOA#>VFu|V?4D9$bf}!M_mvE5W}}>)P-C`xKSGRMY$p#oKnI($^==ul2#|g_ojFXfpWl;=f5rLzk{)q!WR6$&tNS8C8 zu(%KRr6Q@6j=TSy56Lc-5f+Zs;Z6$oC5Kc4xIgTf9#XATCry#+39BP4PgsGldRUGB z_s;9^@5fBZ1%?l4mNZ+MBh8hZ(mbhInlH6TkS{9})c2^&P% z;2qKejjBkCHN%J04m5?OK}hhQu%oC5Ozn#7=>L86>bFVLj5hgbhDQ5^F(*5H{i@q(JFP=^BkLKmtH2VIxnb&L(LW za5$+)>XkN2TcoYhHt8nmW@$TLD(xg}6k*2_Hkz<8gpDO^9AV=Ln?TrcRB~h!cS^VT zVDS#=PVF8C>0aqR!qO9jRcM4^SO5&+A_u|(jmi11PxRm`zc)RBdn=MdX2DYCkdAaCF)C&-UQagrmL*$ z9S|N_FhLKam+4l=6$KCGT^~xH3@b=VpGlvqY{*7f2&WwEPLht$IUXf!WDsdJesf*2s@Fmz$^<0TS(XC3AW8_$7 zyk24wyRT6fx0+hdl;#m!08~=-E|1_S-832QFCSl8ccqZpiJbOXTqd$OO zgssqi1EP)b?|YF9W{e&gw$srgmlC$>^-tWCI6EE#$>Rl1B_J@>noC+rNu&Lr$C!pc)f(3@5e2A_@cZ`dY1kW78ne0F!~#CE7`x3A^AVaqDhb zJAP4ybY&o-3n^fMof&Xz(NNr4yUpL-qw?b#JU*tv4ZIFi~NUt+`t$RVb3J&Sp?3OWz~}jLIG9=pH$>K5|7?aHu!}v z^%%~C8S<*OgPtb`8)P2x%6CW-yl&`Tx)d%=(V()ywNSl-p-DZ2V5-Gd4yk9x&sD|V zAj4&127}=g11P6JRxc#%C4Gk`8UhU9-`Q*kGz1xf2@Cqpd4xTGvm9#}CI1033SlpR zIa1+-+HD5UU{Kd^hl_{a6y`Lh{B^++NFi@g*UrszEQTk60Nqki=Hg>{w3JSW- z7%m%vf+NQyj!%Pg>S8ApR=|z2lcqFHojJ#MtGsrSA{-~@n~rwhGaPr;fAtdFCLgA- zGa9<#B4rnxL$^O9bi}Ce(Zd}%7p8DM5pa-T5S##34tG($4(Bq)jEIecgBjroJyZ^Q zS^!jPp?aZo-|a2%lG3rhBWVN9F)D%rx5fjBNKKh4+382NqGlWS^+J5zA*`E@mQ zuno29<=s%Dz5x!s^Bv-*U13?@SO>eSeg^8MO@uDGIu)ofZ8}is6IZu)M%^$^q4ccT zK4|EjRR>?^I@Qw#`&Oh?gS_5(P#sPoJn{LEqxGtpDNF+#-Pp~nVa{aEXRc3hs!<|y+UVvzxjgu5hzPzYQ=oC#MCx1o0AMcrr( z9L2XDoq^6m=c4n`h3I0qhWKXmJUR>)5PyY^qHo}`q+{rJbR3T0<1ml)cpNUmCD@J~ zxDn4$uOnUt_qm*lFT@-1&2T{9V|WiffZv9@2R_E1 z`7jwW-~<{VdFckTA=qFwfCdYM?^42E2DFc`mlO7iZH7z~Wym(3vX$-qZURbd?rT&nx}6B_Rb%D;Za$*QUMCP{NEflp5@m ziqI<&=}|z}Kk;2qC}FQs(~J$}h6;ci+DWgWoLN7&5$=Lt84cI1TQc&@xf=hd0$Gm< z00QNYyf)Mr;8G&>S&v}~VXyOLQyLoK6a}@Uc8#TBx_V%h*2*m8-T_C?e{7g*a2n=8 zHrU&S7OZeb=+X1P5cWpG_7HZnng|BU!&c=m9A5=J_TR!`Sght3uyD=G|3p@k!J~EG z`#+UeWa!cc0EbfiUnlGsR%&f+a~fBzFs-0r`X={$Qwu$zyNjOCZGwa9=-G04CwFa& zc4_9{y=MlfPB;_Gq{4Bsc}yWtoT#OxO`Z@?eY=q#$=@5A6)-Ta7)qC`v`Y!!4{R;gm{RaJW`tQUju?S)SmW!8& zH;8wLcZv6i_lXaH|ML-XxA?fYM?4@N6yFlx5&tE=FCGGi;bCwVelGql8KrnBTbd+I zm)a#FT_jyBT`%pBc1gENw@Y_QcZ0!nkMxv8t#!{!FG??iW$t^h5?SOjd78W&RM-pT zi{wk>%j7HM8{|!LuMB#Te6ze8RDv%J0uY=KL#QFl5MxL+WEx5g6^1&)62l6^YQtKC zVpwlD!*HYFX2Vm4y@qE4f&wA~$^xnbx&z({_%Ps?Kql~%z=*)ez^K6Jz}Ud}z;S`L zz|6qxz}&zIf%$=jfyIGy0@np@4}320oxm>wzYJo7j6p#`Awgk55kZkbX+aZ$CI;mP z6$VWWY6I~`%S{Ae-XjRafpbbIi1ziwyQP3qpmjzuBbY;+;K`#Uy4o1N-!EwRn z;N0K|!TG_3!NtKd&; zLfbbei_ot^kA{8| z`d#P`p+ANG5_&B3_t4{`MvNLaDsNQdD9@;KM{OJR)Tq}+eLCv*uz;}fVV1Cru&l70 zu;Q@Fu&S`?u$r*CusLD#!&<`@ge?hM8s-T*HLNRadDw=q^TMtQyFTp3u%57OVK;~E z2-_9*QrIhD?}i-;`zY*i*cV}6g&ht1ChU)JUAPb~hRflB;lbgd;czf^_}Fk;cwu;b z_^j}`;q$`hhkL`s;h%;782)?s@dy;bMo1Bch!GLSh`@;O zi0Fv2h~@}y#F~h85hUXDh>IgGi?|}z)G1LT zqY|SWQB$LqMtP!6jq*lyM=g(98MQiUZPdCb5_NjiHBr|^-4L}YsyAv&)V8SYQM;mU zi@G!F?x=gCUWoc-tUNY!Z0^`8W0#LTZ|tpOUmg4Y*ssR^IQHkUzmENF>>trWv=}W% zpAtPXIv_eC+8Ui7T@l?FJtx{3-5lK#?TT)X?uhP;?uuR(y&`&J^j*;hqK`)Z9Q{l5 zu^4@f9CJ#HF(xo3IA(l|B_=B-CnhguVvHlEE~Y-FF=lGaoET?Jb4*K&E5;k6#9S70 zUCh>)J7XS*c_`+QnB6f?$2=4BT+9nGFU1^;`5@*<%r`OL#rzoabIh-?BVxm2N5`6D zb7LpQ7Q`0CPL7=!J3Dr6?7Z0dv8}NSV!g55vCCsu#jc567fWJKkG(LqH}?M6r(^fU zejEFJ9E#J&NpXg_5pf}LqvFEjM#qhbv&NOhO^cfsw=m8fwt&2#@{#o;qm*&e?R`m@js9Mb^LGR|43qza1xg^CTVO^Oj2A@LQ-N(z!|JCtaO%ZPN8gHzwVgv^(kX zq&-PbC8sA(OfE<+N-jyBo_tR7mgJ|BpGkf$`Gw?{l3z*QpL`(sVDdM~-zWc={B!cJ z$-gE4ks_oRQ-V@LQ^HdsQ=(E*Qqoe)Db|!JDRWcirOZ!hO*u8io6?=KJmrj(vr{&t zoR@M#%FdKqQ*KYWGc`KZl$xGuNzF(tNu88hlR71}A$4}@^3+wSYg2DX?MdC7x-E5k z>dw?#Q}0NS-D4oXD z(_QI{(wC$!O<$J2E`5Fa8R=)IZ%98c{etvs(yve7l)gEATl&rEPo?imePLi+O>0sky`KH7_%- zFrRI{#{7`^N%M>5SIqm(ubU5uEV`3LjQ=3gz0WrQUejw~;-lv>Iy4okJA z$uiwC%QDx}Y-zE$EghECma{DzEst5gv<6rstZ~)})*|b4>tgHa*0Zb|tmj!TuwG=n z#CnZ&vvr$wyLFfKHtQYMN3D-r_gJ5@?z6sTJzza({n+}6^)u@i)}O7%tiM~2+X8K4 zZLzj^+c=xemSxMeO|%u-ifv7{xwaPD0-M{m#J0k=&PHsf+s?F|Z@b8LiS2URM%yOa zcH6zSM{K)okK6Xxp0mAZd)cPvkw7 z_e|dNc`xO?nzuji^9jO);0Y-c=1%CCaKVHdCp)vo6qNq`G)+F`2qP+`O*2Y`3d=}^3Tq{D*xL2 z8}fVdx8&cHza#&a{M+*%&wnz1Z~k-nFXq3Jzd!##{+s!4=l@WE3W5vL3-Sx<3g#Dd z6s#;*Rj{Vu%!0ED&MCOL;EsYv3w9SgR`5i@%LV%iUN1OU@K(V)1xE@Eh2ez}g`*3{ z6ebs%3eAPK!mPra!m`4OLPueB;f})l3Lhxf ziyTGOMKwj!il!IMEIPI5w4&3C&MMkabYamYMVA+CEZSVOwdkgz9Ysfqjuri0bi5cB zPbr>Tys&t2@zUasVsG)9;&sLAi_a`Rr}*6B2Z}!}2`ecsnNzZ$#9h)>(q6KzWPQn* zCFhi!TXI>+rjnaVwwLTIxwYh;lKV>@EP144cgaVkOsQCEC>>cEP#RU5Qkqt3Da|O& zF3l^=FRdz_Tv}IJU)oqYwRC#v%u=QFy3#$RpV>uwnmyazZa>xDWnXSzWnXJo?5Eq$ zvTv}TZ@!%VNtCz}#3>Ho44Q)>+nFc3s)lvYX3ZDtn{st#YpXlyYNvPI+;;y?jBrr@XU# zWBHBcz2#4rzg)hr{Al^l<;N<*Dq;}Q36*J;mdZJm3o6}}=T%-_d1d82m5)|FUip6IXO&+%c*jUbpd-ss2nR~ebGRLC zj_r;+9rrlycRc9W<9OQfwc~fkACBWysA@#j$SPx1VAa^FaaBoGsa5G!Syj1J6RQfV zimMh^d8?LHt*lyIb$-=FRhL#>QFUe2rm9=2?yS1I>fWk{svfO+tm=uXH>$p@`lagE zs$*5ZPm(5$oD?`IcvASJ$Vp=-#Y{?@WS(T5lsW18NjoOpHR=CUb>{y~6AT;%WZa-4 z?~A+~g9$P~1Q8sE)4hNUS=%&g({<~TCQI5ZX_F;u+Ga_cE@_MOU?79ZBj32olD2*JUX9F)&-lMy_&9Cw@SBJw_kTkcSd(!cR_baSFgLSyQzDsYtX&WHR_w| zTk2cu+v?lvd+O8mfS%HO_0#l=^(*!3^c(eC^xO0Y^e6Qf^_TTm4WkX?3^@j)0XCop z+)!?a8LAB57-k#3HGF3{VW=})G+Z{+8}1nzfH#0vKwF>#@Fvh1=n3=&(tv(IIxq+r z3|IghpaBNp01qGmL7*H615scmuo*ZEoB}QYmwhoZ1-KR50qzF(fN zunxQkUd|ofBzzp7o1MELcUA7%+zqDorgu%kOL})To4QKkO2812?|2xkOobIzJ@BHD(E5f5^A(Gv%F#9EsCYw zqFJJrN0wKX*LltJTIR8Na$Ybml&9rA%zK&FXl-VF!&+ti&brjP%(}vQ&HB*#*!qX{ zS$=-LGru^W&S&x)3)&ZSEO@h^a{*Q0D-a8$f?&a|f+q#f3K|Mt*aVwutFl$w=Gqq6 z7TcEEez2{yt+B1QZL%G))!L5RPTGF4owe23F4+ESyJEX)yI$C=Ftu=8p`$QXxVG?g z;qUO<@P}{)JQ~h~KZhs6AZ&smI1kQ;ZE!K{f?1e{1=t5y!VBT0@DK1xcpbbE-U4rf z55YC?Y4{9$4!#24habaF;6LG)@N1+6(h_+G>5XI{qmfJ`3mJz@K)ytD2!P}w5Mo72 zkWxfIe29q1h=PM(3gn z&_(D9bR)V2-Hz@=52MG>ljv!*4!ww8M(fd+SX-yHh@24h39kFgQh zSS%Zxgz2$d48p8f0Y+gyY$`S#tHi3XYHTjH09%YL#eTq6Vr#Gi*kP;&tHq9Er?4~F zIjj!5fL+4sv1{1tqFzN~i-@8rMQe(V7Cpo};e+u{@KN}u_-A-FZp2Nv1<%I|aRf*4 zqNYir6!+pHF5^M`TYMS53SWzFz_;Q%@ZIP=IAQ`Zkst`3kcc2rPK1fc#57_CF^iZ@%pv9xD~Pqk z24XX@gV;^%CH51ih|9zu#53YK@sfD$XyHh4v~jd|baK4yc;7L=F~~94F~l*o6Zi-p-#ZbIup*B&TpLGI_ElICnXZ zIBT6JoWD5FI?p?wkj=?fWLvTW`8L^w>`Hbc)5$^PNHUYmBFB*v$sE!^8c93pCd1@p zGDarJY2*xY7CD=oL(V4`kxR&(SA2tNNxesXKn0d&&D2)vAa#T~M_r=osq55D>Nn~U^#}EgYM`6b?dXp5TXbhSmF`RTrw7tQ z=wb8-I)gURC{59Bx`ZyJy|hBBbcFtjj?+oHnx0QDqL%lbNVIy+SS69;_Bf_b@g$*=j!K5cMWn4b`5cTF!GREcbl(GWT-#O808_TK9VQkM4c$pWTPtHSSvX9rrW$3wI;a zoN2|hWjZjOn4U~;W-v3H$zVn^nap@5o0-Ju8Gx}e7(*~5Loq%^W)wzcCNnW6$y6{a zn61oS<|pPLbA+j7&N6k(MdmVdmATG5VxBS$%nP;|`v%*JZNqkD`?6!$&)9#n z602v8tckU-`D`KUVSTK~N^F1)u^Jm;C$m%71Y5yQXIHbe?4y#-C7+ZOmXwvuE7?_Y zvEv{Kz z@kjaN{7L>7{tSPfzrbJO>-lT^4gMB?r?gdRztS&DU8U1XHheeHayzBFH7-}}CF-yq+IzM;Nhz7f6*-zcBO=k-^{@B;=-=o6*?-7i?sZuhls<(5#neuQ_K>_ilB&yUQrZfQ4v)!B7P;t#i`h`mNZWKLdurDlq^!dR4Cb{B8iYxsY0rhs-$XZzO+bMB7HAymbOXzq~p?AsZP2m zU6yW0x21d11L=|UTy7z!$Zh0ya#y*BoGPcu{pBV>ojgR&k*zW&6EZ2&G9&xsGC3fJ zWKE99U&~c;wLDi|BrlPd$;;(!@&Wn3@)h}-d_%r1-;*E6kL4%wpYmVwt3a1P*Fd*G z_dw4;@4$P3eu4DBz`)?Z(7><&5MTo{0-FMLfyQ9>;O9Xk7z|Dh#)8RUMev*8!r*to z?}N*OtAcBS>w>$3dxJj(4+f6}j|OiCp9cR5zEYYgDM}lqz0y(Xp`O5VP&!sQ!13Nm6=MFvO(FS99E7h$CXpc8Re2vuUuDd zDtDB7N`vw$)YN?pwF$Kkbqc)|N)3Gw`gdr2C_6MMqz@TGrjR9+A1VylLqf zV5mG44n;#>h2o)Ps3Np7R1eUyQ~Rm?)$uB*TGV{CP{mY2B~?llRau>)PF1I?mFjGDjyhjmsIFCa zse9D@>H+nzTBFvf_tXZhqxP2ej`mNjo7O{1)zY+nTDmq!%hJYa6SRriBu%dwHIru1 z@->?VYow-VF>SH7S*z8qYR|%*!u`XUVIYi!7l)UJ*M)b64~I{M&xFs1FN80JZ-(!L z?}s0Te-A&2bd01&#zlOQKqMTAMk*q+BC{iNBJ(2)Bda5uB3mOnBD*6$M-D}5BF7>p zA`Q{^qq$LY6pI!|T~Rj5N5!ZdRibJ%9F0dSW7A`mv4yeKv30SHu`RLfv0bq}vD(;) z*s0i=*!kFhVi#kV;w|F+<6vBlN8(fCv*PpPi{dNd>*HJE2ja)$r{bsMXXDr6H{!SA zcjLdsAI2NvFXFG_uM=$&Z4>PiT@nKlA0$3Ze3TfT$ViM%WG1o_V-sH_vJ>WnC1Fk2 v5(g8f6K50W6Bm-%NpsSYv?guI%H+c2;^dO#vcE~?-^8+m{QsnKYTy3>1aAKA delta 12130 zcma)i2V7HE8}~Wq-V;z6Nq`VSLP7$vR|tfJkPtwL6(@=V6%nJN2naZ^+MMgGbsM#| zjtaO(-J{mlJzw|M`dYQNTD4lW+M(9(+ytzB+wc2*Tym3~{rsQ(-0V7m7OjP|`a0lc z&;odYKp+J{AO^&OI1mpKKq5#2T96D{fz}`w*gzZb9%u{lKs(R_^aO>V7w8R2!C){1 zl!2jO7#Imgfe(NKj0Y3I6fg};2lK#u@G)2bwt{V7JJ@Fmy{z5-u^Jzy`` z2Mz+qQScvd3Y-RKz*%q^Tmj#J>)-|W75oN%2Y-N<;1zfc{seCzfDj_cKo&NKEuav} zU@(+J1q^{o7zLwY3`~F)mg3ueO{*b26W9bqTf8Ro+tuoMo5BjEdxgX7>N_z|26 zr$Z;43l})xBDfgV!R2r*{2Xq88{sCn4So#|!4vQdJPR+vOYj=}27U`~!aMML_#?az zAHZMWON5XBd7u`^3wa|E5+ex;M8QaoR45dMqbQ_B29$|%kPYRbj;IsriiV@)}qbmOSA_a zKnKxLbON107tlp?2mOeiqZjB`^c(t}!Hj_MU_6;-j4vZ(0vIKuVnUf1CYFg~k{KP7 z!Wftg#>%u}+Au{-U#6Jp$CNmj{*0X&zzk#tF_p|PW+d}IGlrSOOlCf0rZCePCo`9s z$1G-+FrP6?ndQuCW(~88`I_0o9AFMIN10>HN#+#u19O+T$Nb3LXC5#QnV*ev+4k;>}XG}gpsvu)V-*v@P|+lB4M z7O{QVQEV+cnth)g!;WP?U>z)BId&X7iJi_m*}3c@b}_r0UBQ0M?qT<```G>L0rnt! zh&{|6VUMyW*z@cK_9FWYd!4<*e$W2E-en)NKVwha3^&Iuuow2mKG+uv9ax0LSb`Ne z1S@ekZi(Y@0#3w9Sc{D~9p~dNxGOHe-Eeo@1NX#*xEJn?i}4^_jw|p;JPOxh4v)hh z;wkteT#p;@GQ1qGz$@`8yc(~;YwUGZb1(AbKT80jWR_(trUNK|1jvzC=hwL`?jM|4I-E z%)kONft7yBrc)&(i)545^iwX0blz`P>@05{9n~J>gXm?T1Lz1kfzBk5NJ$WpEdyOZ zS5N@Dkzf)0H%fptu}V0Ljv&B=j7p0@a`f40nclX_y)?!kOz8E2;(W14$hiO~UHH7!ppY?dTQU z>>Tg~1aM%SbCp+!G=jA3AYvT-D$7c%YZ4PLK*X>(-IV3L;bqjU6L<+FvJiE6RJ>My z&cm}=i!PPLHG_JTmiM=hvXz$C)HQc*^7iu(f^*(JzAc<*yu*E?o~gH(2hqWzfCjOj zKi}^x@b>fWT2N{qSuJGF1xkZlBYpUh-N(|A!HRmhpL-#APN@oYbqDg@U1rj5jiN5B zOUH`-)#qA9ME|A19$=v2&OI|gPQy9)X4Xv2ELqvJsx}r7J@Zk3pM1sslC1p z?t%N@F}2AeYKxUn4O5^VnqUXm2M&Z~upCyyQPj?U3LD@mxDM`thv89plA6)S@HhAx zLF7+Or5Z&bBWi;>qe9dN6(i$dY9*;vL>!t#&EXQX$$fYP8!56izBj(1({90;2qrn@ zq8L1xo^pgUPc$ox7pITF)FPo@`}}spYl{1o*>g%uYDz20i>qoIXcsSIXPaxn&I51Y zLnUekm<^)q!AvlV#E{r}D&S5k+;JqbNEq%MCXqNz5)oAMpS*IbDu!3ax2dikZm)Kh zOCkn?PrwQgy$*azAzB0$gC*cIuoTpRde8utf#oEDB$6beCCNlbQb;P%lQd!=#&uvN zSOr$oE8O*p1RGqRR+DsMB4&DJx?Taq>iT4+>itF%1|6v>y0K%=xsJUb99T*++$bCZ zhx@#x)>>6nObI;%j(`!}+UL8zx~Cii$Cna|d&&uLvTOVNe0xnjH~~g@3ZW*mGSdZa z6E5e#1rS{a&Xb%vaFMj)@o=WfBOKtWYv;G})inOU;71U>7Tf^ef}7wLm6Pwl9q>K) z0o(=mh>f%%?~%47kF+E0Ne9xAbRwPCQbBqE9@6_G@EH6Io`9#|8Tf_dlP;tyy%&&v zH7ZTa0UGb>Wq0LH1+xzF&6xZ0DCqnYXq8xj_;R6TStMaKGsNpr$X;5bR z`?bkwm17@JJiM&NHNaYBFLp|l;m(c9Q0G*oCQ=B5pl63ldwHAkF2((-8;O7zdQhUF zfOM;ao}@dqR@UU8H0T8m)I)FRLwb-RlF>9+1OtGi0g9m?^d~(@A?eisB_I+?NpEUS z`%tT84~=*9phs!dzqF>JN|RaI_g#pg3Woh-fp8EGBS>G$_hJ%SB=mI=;wF(NLX+8R zuWJn#OJOWHPzU2k$zO*`gnAIY0wzH%Oolp`5(QI9e_|&C$UriPl&*kj&;X6}ZUW(C zFd0Ht()(%NgE+^lN2y^hYzv|rpbfTx?~yVxl$1BXJlGDlBNb#Oy&|0ojYS8$!0rvO zD=dKBNF|v}J|?wSU{6>Gd%@nomzshi*cTSVey{}ghjuuCnubBnS(*)z!^wC8$S^XA zOe7qca0w2ELtq)5GL%}53Rnq;!75k{9ykYv4Q?@-RFkoUkSfx}c|A;@14qK{_0+o5 zk{U9S)Sic9;8;4f7(9TaXPf@^@|w~CrS__>ZFnnBhEp*b(T$ql0i|Vjm(;`YaDsC| zxDwaHiPQ=#2v>D#Tw*fV00|jI^=*XPV7uJX5jd@$SEKWA2Hj>RoCRmYlEVHKCBui( zy}EYJ>rqoW)LvavJhYO$PsR{XBusHu_DJ&nYsYzTzVl{F3ElByy5r53K>_d+Y8w~! z(<67JBkJK&Fyh??Hy!n`!8srzmW9jc zqVpqSz2FLZz?Bs3)o_;cR77CHIP$)G=sLKbDmp!DJzNJy6bZ$Z!~2z$mc&;L?^hdF zT~bwASyLp8n`4qYM@IWWmouP_mOsj7xW&0NQp&=ubd#l#fsTK2cstxd_xyr#xCHKo zUy-R~9_8+bl)He;CG-Ez-92z`6L-lRGNp;LZb3c_yDx)BsHZpvkCTtcG%|zC`isNc zc@8`1@|2_0vS;UYsjZ~Q*bRQr;#zV|&Dl-+}uUC3PHeIw3%06l?E zDL@Nd04<;Ztsu+)7og|x#anE!xNvHKPPCCQHbO!t9FjnyQMjGJ93EkZmL$`M8K*$`j9r1%6HKel95M`6c;w zNh2so>H=k%8-XzC>F&*J4$$q+GetbqIU8hsG($}dyCp8vi5JNAtOZ%r6Uu{KxVRztS6t7 z4ey|q?IO{IS`*dpz}3|B4nR#!?OYQ#HeuuV7i=261S&wqAbJhzhPtC3s3(ngdZFGl z<|#sb$riGeY$Myr4ziPcL3WWZ$?i3%9}NZQg$AI3Xb^oL3?j)_)IRgqK5~>CqwmM5 zf1&GgM;gt7o=3Lrmm(yp!xEwSJcCSOV!dUbH{~~+HUe~Ku zs1Qn;&NvZGrtvnKME2LA56J=QxkCGfInXpT6G-aObToq;B!}wJEHs-OCPzqUpC%ia zXD=UEGpMkvwA}78y7p=jmbiEQ7He?@va|1 z>(F|)NKmhJjht;1iJ9(mZGqiapsi>d+KzUho#+d4j+`eK$t7}`TzM-RD8Z!^CwZl4 z;`v?|&o8)DETEgctfXS7osT%ER#8jtQme+X(4~)Vb!?jc|0h^yU7K8eD_Gay40H)y zMpw{Psy5f)O!N)9j-==Y`j&>^2;D@tU(GNw!KJpmigGjfakKw0*fMkykdIqDDe zh9CVBy+W_ipX4_Aj@%*NFQe-90L`Xql}TYf!mE;Vlxk#9;~q?N#*4;)Obc?ij`1e< zXfKTc9gK*^fQ*>&BR`UdZ^JD{!pQzNgkyq1B%>hr>B0|4X!kt(09Rb9$$a0f2~GQ` znU?>U8bPNO^uqS}E$ffoC&cY2l1d)3Mg9>>OGS@eiX(U4BWG z-CpiSqdvP;_xAZ6Tx(s(wQ1YDr)it#>-1O{_SZwwKFZI zcHx74T2d{9y=iRUkH+-_XnFMmIDsbmt7(*>Kp`lV`q@^r>e-FDxnWOebb2Q$b6R)wJxmoR%5CV0JV6XmRnZTV39k z01DjSo9@g_^1>~*t(n~3Z`0o#DuxYAYsLmf6i|Zcwo~ZD zgQq!ohJ)ugc%E8_^TtOCrj#k8l>}xm9K=CHCe%~9$~nkzkhd_MO-60gNvdd}iz;t5 z2iZDiI7idX$n$@Nl+0*8eBvN35?Wmm=gmytcz3aa8Ov}qJ7Ydz91P*02M0Yl*sOsW z$BbttaIiTC{WzM7MmoQ+Cczlz1FOuxV^sw&du_@GRJgNH8tpr$TZ7v*cDNg}dAW4? zN9H3MJup)_*n-qvU}nIXeD1@{WM(n5nK?bG?PYW^>LWPl!$EHjdT~(v*ExNPG_)f1 z&5TY71Da@^&wRpz@-ef3gT5RT*2BrnLNbbjA`;oH@eBn`CkyOOJ&!&4A7^&+xsIuK zzLJFsm`wajLkBs1%n_3$aP0q$ltaZtk1 z#C7^7=3s0cLv<_89bNWh8CF2!K$b-_I2cdEOV$I;=3v6V#FwIG ziEm4rjmxq=tjHBbvO@A74r*x_$$F3@{QOYorooayY#^(q*sxMIh?TLytejP_A*_;B zu@n*=2U9qh%0WE`(>Q40ppk>=95it-V-2fuW5Y(cv0-C)Z1|cSy*Nn!8?oVw<}}cF z2OHKvv0>?2mPTyYjQo_>CP6q@#)FqlUvVrWINF5bP+c|1KDDhnyWQzKemMJ&)V4m z>_B!9Tgnb*hj6eB2jAmhTMp)NupI~6bC6D^C+Nh%&TH7AjQ|aErzq@j9-#atfV#Sq z6b|;j&;8SKa85J!tb zY)3SU2Zv@6Jon}761L7w{!*U&p8q=_m|e+I6R?I|#ja-8uxr_M?0WWdb_2VS-Q=8R zlv3&F&q4bdc1t6vJJ_APp0Ho?qz-5zbub4j+^zqGbxkMXn~=itC5T2E41*;DLk z{>AZ5qSSpSwL(THYNGiPdxfX@G6#p$u~d)C+%)%K|I6OwW#R@e6GM5KxW(&B`M>Ck zuvoL_XSbhhTJ;|Lz>UX!9*<$Xy4>Q`rQ8iz82f~M#pCgmea8O6K4)LBzp}rvzq5a^ zFF8mZRSgG+JNISyCyiOdzIJ1RAx4-1;TZFnjBUb%y4s3acq7n5yo$I!vwEcsD40a0HH~bm2%IlnE3R z9K$Qh#D7(kz%H81csDGVIny#_#{3{!zz3VpT=i6Nauge z!95N596pcf8hbgok1k19Iz3^0z9zFV0_~(~g6lfI`ES#2;oJB-4j$m(K@J`wks3>* zQkDQ!I07nH`h@Q>Ia{0)Uo&~+Mbml@@KYL|(Bu4sAK^3jXZ*xA5&~jDyEl z;Adb1evV(zXGavL{}3w&PjK)QO@FQQr2n0=${_&2R{#Zw&qVk_H6NQji`91M&B2qd zh)Tc;uscY$*9%xMqEDBK{>8Pb;u@7U*_e{#aw`H)Dv3Zu5Uq{4qYij_YquZ-4iu=!avEpxLDyUk zULYI?FY@J=w}otGwma_edZ$egOs_m#B?L>cIFq8g_U@f)y8`w?k7IquEgZ+a3c;Gnw`M@dm4113L zgn(LM_AZXZo$wecn!E5t{20HYkK(-rzVvatAAKMnCSf*%C;1os6GJ$yYh9w{DOJ^FbJ z@fhk+;W5mk+GC8z2Oh*@oW}%@Ngj(mHhCQP_}=5G$1{&#JYIOb@oett=c)1x_l);! z<5}R@!?Vz{k7r-ceh$yEo|8NqJePZ}^osUM_Uh$T;x*0diPsH6?453A66=n-t33G*Qgl&cGg#CpBgoA{Gg=NBWVWqH2SR))E93>o0-NIDi zPT_IkMd6PkD2i~1GDLkv<3%e(t3+!=+eG_CheSt2$3-VZr$o0!4@5tUo{D}Ey%00v z=3+0gk60)U6bFfe#R{=f949u4+ljl0`-+E(Ys4eOqr{`doOrx=qIj}+ig=-TnRvZ; zqj9@>phu<;3bADI-zVZ97-?x6Z{E>f%f0ln2|0@4U z{&V~{`fv8%>c8E8r~fYh-Tq(u@Abdx|Iq(sfL}n%fUJO=fYt%FfcFCO0@??VfGGhp z0%irw378vD=LlFAusL9B!1jQh0eb_E1>6hxN#Z35k_1Z>5~UXgotek}b&x=^}U>iA4rCvA}KmVPbWE8Qyj)%>uaeiuN61IXN6W{{9n<79j6}> zAtysFg_7GFBO{OjM>Q^-6;>UHP7} zK-ojtPg$b0E6bIY%CX9E$_dIz%Bjlf%9+a9%8!*Rlv|ZwDK9FoDW9rXl|rRdg{m~F za8-mVN~Kj~s;W>8Q&p>`surj|RV`92QLR<2 zS8Y&jQhlx3tJ<$Rs5+}UuezwZthyiS7aARE3C#~35Lz2LBeXtrS?G$;RiSG_*M)u_ zx+8RN=(W&Wp)b`Ub%;7b9i@&@$Eg$4X=JoLidXz&wQ9VOFOFc(D zS3O_-nYvEhpkA(Csa~x|%*o3f&VUxpVg)NA(MZFi5A5|PRD5@fAOw`P% z*-_4@c~KuneG;`WYH`$OQT0*VqIN{>iux*QZ`6UP!%@egPDGuKIvaH_8b^zxqoR97 zmq$;HUL3tM`cU-o=#$Z>qc22Xj=mOsJw_6viD?-V6%!ki5R(*RcEn`HWW}_KnG!QU zW^v5Yn1+}YG3#SC#%zh%9BEH!yB&+(&U!f+@k0us&f|!s&!_2^SNtBz%)_BjHxUorJpy_Y;0fM2R@jBe7Xxi$tG9 zQKDaBK%z8JmMBj&Bz8|6lei>tf8xC)ucVly_mT!CRVGy@jYt}m#3g-{G|iDTBWYIB zoTRx)bxF&TRwk`UTA#Eb=|s}iq#H@MlDJG1}SMx!U>K1=>%wi?vI&_1b0HmD<(X zwc4ZFyU8t*eyervpHTgyI8y(VNorg}S3(^Ja6gs6YRHxA;>XLP-I)l!n zGwTX!rF{PMO3R6a>EJ@j$ zawoNUYJ6(D)UwnmsdG~2r7lSQG_@ghUFzql8&fx@ZcW{udLZ?1>ao-lsi#xVranr2 zsRw$b$NJ`aZ@sTxq*v+V^jf`6uh*OO7QI!Ut?#Ta(%0xm>PPFx>WO~5ev*EQewu!! zevW>nevN*e-toD9qkfBiyMCvBm;NjL9{oQ34gKr1(6sEdfoapzHl>|Odu;GB1Q?`- zV1vTY(vV=#8d3~thIB)Q!D6r)+8a66_EHrhk=wIQ>}q ziS*Oy=h82vUrN7{{(btr^atsW(x0S1GYL%!liCz+iZI2R5=>f?&XjFxZR%j^Wa?uo zF*)p}L8hUmN>jCIxM_lEwrPcFwP~GcgK4vAn`x)%OVih;eWrt^tETIw8>XA4+otbL z_e}Rq4^59vPfX7;gc%7L`5D7AKFQdV@tql&L(OJ$uK7K4J97tfcXP41#B4VYG?$u( zm`9o4H-BK}%oEI$%njy^=56L3=3VAJ4)cEVA@dRQCG%DD59SBvpUgj-pPPR(zcjzL zcv*rha*NWUwuDn$5CTP)ixJ1x5`2QA-Nez3gB6lX?dnltk=hh$F3{4{f2=GU2TtOBdIRcdvFTjQ-s zR-ILEHCnT+t*vdWdDafrPS(NJiPojo^VX}@o7UUb2iB+7=hok>FRib$nrDf!{IdeH zWLcqEVObGb(OI!sU9-k#ZOGc0wJYmL)~T$sSr@V{XWhuUm31fUZq|=kPqTi{My=oE z!d#!+;M|bh(A==xh}`JhxLl(nHzU`Qo0Z!tH#fIUZrj|-+ Bool { - // Override point for customization after application launch. + FirebaseApp.configure() return true } diff --git a/Flash Chat iOS13/Controllers/ChatViewController.swift b/Flash Chat iOS13/Controllers/ChatViewController.swift index eb06ca23e..75860a502 100644 --- a/Flash Chat iOS13/Controllers/ChatViewController.swift +++ b/Flash Chat iOS13/Controllers/ChatViewController.swift @@ -7,6 +7,8 @@ // import UIKit +import FirebaseCore +import FirebaseAuth class ChatViewController: UIViewController { @@ -15,11 +17,22 @@ class ChatViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() + title = "⚡️FlashChat" + navigationItem.hidesBackButton = true } @IBAction func sendPressed(_ sender: UIButton) { } + @IBAction func logOutPressed(_ sender: UIBarButtonItem) { + do { + try Auth.auth().signOut() + navigationController?.popToRootViewController(animated: true) + } catch let signOutError as NSError { + print("Error signing out: %@", signOutError) + } + + } } diff --git a/Flash Chat iOS13/Controllers/LoginViewController.swift b/Flash Chat iOS13/Controllers/LoginViewController.swift index d4efc0598..b671f35b1 100644 --- a/Flash Chat iOS13/Controllers/LoginViewController.swift +++ b/Flash Chat iOS13/Controllers/LoginViewController.swift @@ -7,6 +7,8 @@ // import UIKit +import FirebaseAuth +import FirebaseCore class LoginViewController: UIViewController { @@ -15,6 +17,15 @@ class LoginViewController: UIViewController { @IBAction func loginPressed(_ sender: UIButton) { + if let email = emailTextfield.text, let password = passwordTextfield.text{ + Auth.auth().signIn(withEmail: email, password: password) { authResult, error in + if let e = error { + print(e) + } else { + self.performSegue(withIdentifier: "LoginToChat", sender: self) + } + + } } - +} } diff --git a/Flash Chat iOS13/Controllers/RegisterViewController.swift b/Flash Chat iOS13/Controllers/RegisterViewController.swift index b3e7f126f..244908afc 100644 --- a/Flash Chat iOS13/Controllers/RegisterViewController.swift +++ b/Flash Chat iOS13/Controllers/RegisterViewController.swift @@ -7,6 +7,8 @@ // import UIKit +import FirebaseCore +import FirebaseAuth class RegisterViewController: UIViewController { @@ -14,6 +16,18 @@ class RegisterViewController: UIViewController { @IBOutlet weak var passwordTextfield: UITextField! @IBAction func registerPressed(_ sender: UIButton) { + + if let email = emailTextfield.text, let password = passwordTextfield.text { + Auth.auth().createUser(withEmail: email, password: password) { authResult, error in + if let e = error{ + print(e) + }else { + self.performSegue(withIdentifier: "RegisterToChat", sender: self) + + + + } + } + } } - } diff --git a/Flash Chat iOS13/Controllers/WelcomeViewController.swift b/Flash Chat iOS13/Controllers/WelcomeViewController.swift index dc18c96c0..6795b51f7 100644 --- a/Flash Chat iOS13/Controllers/WelcomeViewController.swift +++ b/Flash Chat iOS13/Controllers/WelcomeViewController.swift @@ -7,34 +7,90 @@ // import UIKit +import CLTypingLabel class WelcomeViewController: UIViewController { - @IBOutlet weak var titleLabel: UILabel! + @IBOutlet weak var titleLabel: CLTypingLabel! override func viewDidLoad() { super.viewDidLoad() - var colorNum = 0 - var charIndex = 0.0 - let titleText = "⚡️FlashChat" - //MARK: - simulation of typing && random color of text - let colorArray = [UIColor.red,UIColor.systemTeal,UIColor.blue,UIColor.purple,UIColor.systemPink,UIColor.gray,UIColor.cyan,UIColor.magenta,UIColor.systemIndigo,UIColor.orange] - for char in titleText { - Timer.scheduledTimer(withTimeInterval: 0.15 * charIndex, repeats: false) { (timer) in - self.titleLabel.text?.append(char) - self.titleLabel.textColor = colorArray.randomElement() - //MARK: - lastColor - colorNum += 1 - if colorNum == 10{ - self.titleLabel.textColor = UIColor(red: 157/255, green: 196/255, blue: 234/255, alpha: 1) //which color will be last - }else{ - print("...") - } - } - charIndex += 1 - } - + + titleLabel.text = "⚡️FlashChat" + } } + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +//MARK: - Reference: VDL text animation +// var colorNum = 0 +// var charIndex = 0.0 +// let titleText = "⚡️FlashChat" +// //MARK: - simulation of typing && random color of text +// let colorArray = [UIColor.red,UIColor.systemTeal,UIColor.blue,UIColor.purple,UIColor.systemPink,UIColor.gray,UIColor.cyan,UIColor.magenta,UIColor.systemIndigo,UIColor.orange] +// for char in titleText { +// Timer.scheduledTimer(withTimeInterval: 0.15 * charIndex, repeats: false) { (timer) in +// self.titleLabel.text?.append(char) +// self.titleLabel.textColor = colorArray.randomElement() +// //MARK: - lastColor +// colorNum += 1 +// if colorNum == 10{ +// self.titleLabel.textColor = UIColor(red: 157/255, green: 196/255, blue: 234/255, alpha: 1) //which color will be last +// }else{ +// print("...") +// } +// } +// charIndex += 1 +// } + diff --git a/Flash Chat iOS13/GoogleService-Info.plist b/Flash Chat iOS13/GoogleService-Info.plist new file mode 100644 index 000000000..89b8b41a1 --- /dev/null +++ b/Flash Chat iOS13/GoogleService-Info.plist @@ -0,0 +1,34 @@ + + + + + CLIENT_ID + 410345050732-h2pj0umhot6ijsruspaei0sd6ujptkm5.apps.googleusercontent.com + REVERSED_CLIENT_ID + com.googleusercontent.apps.410345050732-h2pj0umhot6ijsruspaei0sd6ujptkm5 + API_KEY + AIzaSyCFTz8DWchZLp0MucH4M7J5ADBf6sNt5N4 + GCM_SENDER_ID + 410345050732 + PLIST_VERSION + 1 + BUNDLE_ID + co.maonz.Flash-Chat-iOS13 + PROJECT_ID + flash-char-81e71 + STORAGE_BUCKET + flash-char-81e71.appspot.com + IS_ADS_ENABLED + + IS_ANALYTICS_ENABLED + + IS_APPINVITE_ENABLED + + IS_GCM_ENABLED + + IS_SIGNIN_ENABLED + + GOOGLE_APP_ID + 1:410345050732:ios:01f108d3c8d59afaaf3e49 + + \ No newline at end of file diff --git a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard index 9a73a83c9..63c382e0f 100644 --- a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard +++ b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard @@ -32,7 +32,7 @@ - iPhone Dev Wiki +Crack Prevention: App Store binaries are signed by both their developer +and Apple. This encrypts the binary so that decryption keys are needed in order +to make the binary readable. When iOS executes the binary, the decryption keys +are used to decrypt the binary into a readable state where it is then loaded +into memory and executed. iOS can tell the encryption status of a binary via the +cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is +a non-zero value then the binary is encrypted. + +'Cracking' works by letting the kernel decrypt the binary then siphoning the +decrypted data into a new binary file, resigning, and repackaging. This will +only work on jailbroken devices as codesignature validation has been removed. +Resigning takes place because while the codesignature doesn't have to be valid +thanks to the jailbreak, it does have to be in place unless you have AppSync or +similar to disable codesignature checks. + +More information at Landon +Fuller's blog + + +## Libuv-gRPC + +libuv is licensed for use as follows: + +==== +Copyright (c) 2015-present libuv project contributors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +==== + +This license applies to parts of libuv originating from the +https://github.com/joyent/libuv repository: + +==== + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. + +==== + +This license applies to all parts of libuv that are not externally +maintained libraries. + +The externally maintained libraries used by libuv are: + + - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. + + - inet_pton and inet_ntop implementations, contained in src/inet.c, are + copyright the Internet Systems Consortium, Inc., and licensed under the ISC + license. + + - stdint-msvc2008.h (from msinttypes), copyright Alexander Chemeris. Three + clause BSD license. + + - pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB. + Three clause BSD license. + + - android-ifaddrs.h, android-ifaddrs.c, copyright Berkeley Software Design + Inc, Kenneth MacKay and Emergya (Cloud4all, FP7/2007-2013, grant agreement + n° 289016). Three clause BSD license. + + +## PromisesObjC + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## abseil + + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +## gRPC-C++ + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +----------------------------------------------------------- + +BSD 3-Clause License + +Copyright 2016, Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +----------------------------------------------------------- + +Mozilla Public License, v. 2.0 + +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can +obtain one at https://mozilla.org/MPL/2.0/. + + +## gRPC-Core + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +----------------------------------------------------------- + +BSD 3-Clause License + +Copyright 2016, Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +----------------------------------------------------------- + +Mozilla Public License, v. 2.0 + +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can +obtain one at https://mozilla.org/MPL/2.0/. + + +## leveldb-library + +Copyright (c) 2011 The LevelDB Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +## nanopb + +Copyright (c) 2011 Petteri Aimonen + +This software is provided 'as-is', without any express or +implied warranty. In no event will the authors be held liable +for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you use + this software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and + must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. + Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist index f2bc9e6dc..e8d8c08b9 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist @@ -12,6 +12,267 @@ Type PSGroupSpecifier + + FooterText + BoringSSL is a fork of OpenSSL. As such, large parts of it fall under OpenSSL +licensing. Files that are completely new have a Google copyright and an ISC +license. This license is reproduced at the bottom of this file. + +Contributors to BoringSSL are required to follow the CLA rules for Chromium: +https://cla.developers.google.com/clas + +Files in third_party/ have their own licenses, as described therein. The MIT +license, for third_party/fiat, which, unlike other third_party directories, is +compiled into non-test libraries, is included below. + +The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the +OpenSSL License and the original SSLeay license apply to the toolkit. See below +for the actual license texts. Actually both licenses are BSD-style Open Source +licenses. In case of any license issues related to OpenSSL please contact +openssl-core@openssl.org. + +The following are Google-internal bug numbers where explicit permission from +some authors is recorded for use of their work. (This is purely for our own +record keeping.) + 27287199 + 27287880 + 27287883 + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * The licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + + +ISC license used for completely new code in BoringSSL: + +/* Copyright (c) 2015, Google Inc. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ + + +The code in third_party/fiat carries the MIT license: + +Copyright (c) 2015-2016 the fiat-crypto authors (see +https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +Licenses for support code +------------------------- + +Parts of the TLS test suite are under the Go license. This code is not included +in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so +distributing code linked against BoringSSL does not trigger this license: + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +BoringSSL uses the Chromium test infrastructure to run a continuous build, +trybots etc. The scripts which manage this, and the script for generating build +metadata, are under the Chromium license. Distributing code linked against +BoringSSL does not trigger this license. + +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + License + Mixed + Title + BoringSSL-GRPC + Type + PSGroupSpecifier + FooterText Copyright (c) 2016 Chenglin Liu @@ -41,6 +302,3066 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache-2.0 + Title + FirebaseAuth + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache-2.0 + Title + FirebaseCore + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache-2.0 + Title + FirebaseCoreDiagnostics + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache-2.0 + Title + FirebaseCoreInternal + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +-------------------------- +nlohmann_json +-------------------------- +MIT License + +Copyright (c) 2013-2020 Niels Lohmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------- +FirestoreEncoder +-------------------------- + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +## Runtime Library Exception to the Apache 2.0 License: ## + + + As an exception, if you use this Software to compile your source code and + portions of this Software are embedded into the binary product as a result, + you may redistribute such product without providing attribution as would + otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. + + + License + Apache-2.0 + Title + FirebaseFirestore + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache + Title + GTMSessionFetcher + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache + Title + GoogleDataTransport + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +================================================================================ + +The following copyright from Landon J. Fuller applies to the isAppEncrypted +function in Environment/third_party/GULAppEnvironmentUtil.m. + +Copyright (c) 2017 Landon J. Fuller <landon@landonf.org> +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Comment from +<a href="http://iphonedevwiki.net/index.php/Crack_prevention">iPhone Dev Wiki +Crack Prevention</a>: App Store binaries are signed by both their developer +and Apple. This encrypts the binary so that decryption keys are needed in order +to make the binary readable. When iOS executes the binary, the decryption keys +are used to decrypt the binary into a readable state where it is then loaded +into memory and executed. iOS can tell the encryption status of a binary via the +cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is +a non-zero value then the binary is encrypted. + +'Cracking' works by letting the kernel decrypt the binary then siphoning the +decrypted data into a new binary file, resigning, and repackaging. This will +only work on jailbroken devices as codesignature validation has been removed. +Resigning takes place because while the codesignature doesn't have to be valid +thanks to the jailbreak, it does have to be in place unless you have AppSync or +similar to disable codesignature checks. + +More information at <a href="http://landonf.org/2009/02/index.html">Landon +Fuller's blog</a> + + License + Apache + Title + GoogleUtilities + Type + PSGroupSpecifier + + + FooterText + libuv is licensed for use as follows: + +==== +Copyright (c) 2015-present libuv project contributors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +==== + +This license applies to parts of libuv originating from the +https://github.com/joyent/libuv repository: + +==== + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. + +==== + +This license applies to all parts of libuv that are not externally +maintained libraries. + +The externally maintained libraries used by libuv are: + + - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. + + - inet_pton and inet_ntop implementations, contained in src/inet.c, are + copyright the Internet Systems Consortium, Inc., and licensed under the ISC + license. + + - stdint-msvc2008.h (from msinttypes), copyright Alexander Chemeris. Three + clause BSD license. + + - pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB. + Three clause BSD license. + + - android-ifaddrs.h, android-ifaddrs.c, copyright Berkeley Software Design + Inc, Kenneth MacKay and Emergya (Cloud4all, FP7/2007-2013, grant agreement + n° 289016). Three clause BSD license. + + License + Mixed + Title + Libuv-gRPC + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + Apache + Title + PromisesObjC + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + License + Apache License, Version 2.0 + Title + abseil + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +----------------------------------------------------------- + +BSD 3-Clause License + +Copyright 2016, Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +----------------------------------------------------------- + +Mozilla Public License, v. 2.0 + +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can +obtain one at https://mozilla.org/MPL/2.0/. + + License + Apache License, Version 2.0 + Title + gRPC-C++ + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +----------------------------------------------------------- + +BSD 3-Clause License + +Copyright 2016, Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +----------------------------------------------------------- + +Mozilla Public License, v. 2.0 + +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can +obtain one at https://mozilla.org/MPL/2.0/. + + License + Apache License, Version 2.0 + Title + gRPC-Core + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2011 The LevelDB Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + License + New BSD + Title + leveldb-library + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2011 Petteri Aimonen <jpa at nanopb.mail.kapsi.fi> + +This software is provided 'as-is', without any express or +implied warranty. In no event will the authors be held liable +for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you use + this software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and + must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. + + License + zlib + Title + nanopb + Type + PSGroupSpecifier + FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist index 06061b3b9..c4bfd2369 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist @@ -1,2 +1,18 @@ ${PODS_ROOT}/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh -${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework \ No newline at end of file +${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework +${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework +${BUILT_PRODUCTS_DIR}/FirebaseAuth/FirebaseAuth.framework +${BUILT_PRODUCTS_DIR}/FirebaseCore/FirebaseCore.framework +${BUILT_PRODUCTS_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework +${BUILT_PRODUCTS_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework +${BUILT_PRODUCTS_DIR}/FirebaseFirestore/FirebaseFirestore.framework +${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework +${BUILT_PRODUCTS_DIR}/GoogleDataTransport/GoogleDataTransport.framework +${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework +${BUILT_PRODUCTS_DIR}/Libuv-gRPC/uv.framework +${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework +${BUILT_PRODUCTS_DIR}/abseil/absl.framework +${BUILT_PRODUCTS_DIR}/gRPC-C++/grpcpp.framework +${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework +${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework +${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist index 907f1c621..6b860b264 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist @@ -1 +1,17 @@ -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CLTypingLabel.framework \ No newline at end of file +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CLTypingLabel.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseAuth.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseCore.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseCoreDiagnostics.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseCoreInternal.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseFirestore.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMSessionFetcher.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleDataTransport.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/uv.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/absl.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpcpp.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpc.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/leveldb.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist index 06061b3b9..c4bfd2369 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist @@ -1,2 +1,18 @@ ${PODS_ROOT}/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh -${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework \ No newline at end of file +${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework +${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework +${BUILT_PRODUCTS_DIR}/FirebaseAuth/FirebaseAuth.framework +${BUILT_PRODUCTS_DIR}/FirebaseCore/FirebaseCore.framework +${BUILT_PRODUCTS_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework +${BUILT_PRODUCTS_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework +${BUILT_PRODUCTS_DIR}/FirebaseFirestore/FirebaseFirestore.framework +${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework +${BUILT_PRODUCTS_DIR}/GoogleDataTransport/GoogleDataTransport.framework +${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework +${BUILT_PRODUCTS_DIR}/Libuv-gRPC/uv.framework +${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework +${BUILT_PRODUCTS_DIR}/abseil/absl.framework +${BUILT_PRODUCTS_DIR}/gRPC-C++/grpcpp.framework +${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework +${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework +${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist index 907f1c621..6b860b264 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist @@ -1 +1,17 @@ -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CLTypingLabel.framework \ No newline at end of file +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CLTypingLabel.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseAuth.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseCore.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseCoreDiagnostics.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseCoreInternal.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseFirestore.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMSessionFetcher.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleDataTransport.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/uv.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/absl.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpcpp.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpc.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/leveldb.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh index c1c49ba95..2b0fb80b4 100755 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh @@ -176,10 +176,42 @@ code_sign_if_enabled() { } if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework" install_framework "${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseAuth/FirebaseAuth.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseCore/FirebaseCore.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseFirestore/FirebaseFirestore.framework" + install_framework "${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework" + install_framework "${BUILT_PRODUCTS_DIR}/GoogleDataTransport/GoogleDataTransport.framework" + install_framework "${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Libuv-gRPC/uv.framework" + install_framework "${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework" + install_framework "${BUILT_PRODUCTS_DIR}/abseil/absl.framework" + install_framework "${BUILT_PRODUCTS_DIR}/gRPC-C++/grpcpp.framework" + install_framework "${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework" + install_framework "${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework" + install_framework "${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework" install_framework "${BUILT_PRODUCTS_DIR}/CLTypingLabel/CLTypingLabel.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseAuth/FirebaseAuth.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseCore/FirebaseCore.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FirebaseFirestore/FirebaseFirestore.framework" + install_framework "${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework" + install_framework "${BUILT_PRODUCTS_DIR}/GoogleDataTransport/GoogleDataTransport.framework" + install_framework "${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Libuv-gRPC/uv.framework" + install_framework "${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework" + install_framework "${BUILT_PRODUCTS_DIR}/abseil/absl.framework" + install_framework "${BUILT_PRODUCTS_DIR}/gRPC-C++/grpcpp.framework" + install_framework "${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework" + install_framework "${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework" + install_framework "${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig index 01993e3e6..67eb165f5 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.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}/CLTypingLabel" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${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" +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}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.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}/Libuv-gRPC/uv.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.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" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -framework "CLTypingLabel" +OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "CLTypingLabel" -framework "CoreTelephony" -framework "FBLPromises" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseCoreInternal" -framework "FirebaseFirestore" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -framework "uv" 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/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig index 01993e3e6..67eb165f5 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.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}/CLTypingLabel" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${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" +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}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.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}/Libuv-gRPC/uv.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.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" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -framework "CLTypingLabel" +OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "CLTypingLabel" -framework "CoreTelephony" -framework "FBLPromises" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseCoreInternal" -framework "FirebaseFirestore" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -framework "uv" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) From 3863a4d016259d0beebeba218c77bb2ba818dbc7 Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Sat, 6 Aug 2022 01:41:23 +0300 Subject: [PATCH 06/12] now data sender work correctly problem in gcf (allow read, write: if true;) --- Flash Chat iOS13.xcodeproj/project.pbxproj | 20 +- .../UserInterfaceState.xcuserstate | Bin 26959 -> 28028 bytes .../UserInterfaceState.xcuserstate | Bin 42554 -> 57088 bytes Flash Chat iOS13/AppDelegate.swift | 6 + Flash Chat iOS13/Constans.swift | 29 + .../Controllers/ChatViewController.swift | 38 + .../Controllers/LoginViewController.swift | 2 +- .../Controllers/RegisterViewController.swift | 2 +- .../Controllers/WelcomeViewController.swift | 3 +- Flash Chat iOS13/GoogleService-Info.plist | 14 +- Flash Chat iOS13/Message.swift | 14 + .../Views/Base.lproj/Main.storyboard | 17 +- Flash Chat iOS13/Views/MessageCell.swift | 28 + Flash Chat iOS13/Views/MessageCell.xib | 83 + Pods/.DS_Store | Bin 6148 -> 8196 bytes Pods/Pods.xcodeproj/project.pbxproj | 3043 ++++++++--------- 16 files changed, 1743 insertions(+), 1556 deletions(-) create mode 100644 Flash Chat iOS13/Constans.swift create mode 100644 Flash Chat iOS13/Message.swift create mode 100644 Flash Chat iOS13/Views/MessageCell.swift create mode 100644 Flash Chat iOS13/Views/MessageCell.xib diff --git a/Flash Chat iOS13.xcodeproj/project.pbxproj b/Flash Chat iOS13.xcodeproj/project.pbxproj index 48c36bd3b..50aa82a9f 100644 --- a/Flash Chat iOS13.xcodeproj/project.pbxproj +++ b/Flash Chat iOS13.xcodeproj/project.pbxproj @@ -8,6 +8,10 @@ /* Begin PBXBuildFile section */ 0463FC11285DEC6A00BFB8DA /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 0463FC10285DEC6A00BFB8DA /* GoogleService-Info.plist */; }; + 0463FC13285FC93700BFB8DA /* Constans.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0463FC12285FC93700BFB8DA /* Constans.swift */; }; + 0463FC15286082A000BFB8DA /* Message.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0463FC14286082A000BFB8DA /* Message.swift */; }; + 0463FC182863258000BFB8DA /* MessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0463FC162863258000BFB8DA /* MessageCell.swift */; }; + 0463FC192863258000BFB8DA /* MessageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 0463FC172863258000BFB8DA /* MessageCell.xib */; }; 0B628177235DEE8100E35CAF /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B628176235DEE8100E35CAF /* AppDelegate.swift */; }; 0B628179235DEE8100E35CAF /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B628178235DEE8100E35CAF /* SceneDelegate.swift */; }; 0B62817E235DEE8100E35CAF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0B62817C235DEE8100E35CAF /* Main.storyboard */; }; @@ -23,6 +27,10 @@ /* Begin PBXFileReference section */ 0463FC10285DEC6A00BFB8DA /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; + 0463FC12285FC93700BFB8DA /* Constans.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constans.swift; sourceTree = ""; }; + 0463FC14286082A000BFB8DA /* Message.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Message.swift; path = "Flash Chat iOS13/Message.swift"; sourceTree = SOURCE_ROOT; }; + 0463FC162863258000BFB8DA /* MessageCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageCell.swift; sourceTree = ""; }; + 0463FC172863258000BFB8DA /* MessageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MessageCell.xib; sourceTree = ""; }; 0B628173235DEE8100E35CAF /* Flash Chat iOS13.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Flash Chat iOS13.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 0B628176235DEE8100E35CAF /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 0B628178235DEE8100E35CAF /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; @@ -83,6 +91,7 @@ 0B628181235DEE8400E35CAF /* LaunchScreen.storyboard */, 0463FC10285DEC6A00BFB8DA /* GoogleService-Info.plist */, 0B628184235DEE8400E35CAF /* Info.plist */, + 0463FC12285FC93700BFB8DA /* Constans.swift */, ); path = "Flash Chat iOS13"; sourceTree = ""; @@ -102,6 +111,8 @@ isa = PBXGroup; children = ( 0B62817C235DEE8100E35CAF /* Main.storyboard */, + 0463FC162863258000BFB8DA /* MessageCell.swift */, + 0463FC172863258000BFB8DA /* MessageCell.xib */, ); path = Views; sourceTree = ""; @@ -109,6 +120,7 @@ 0B628194235DF03A00E35CAF /* Models */ = { isa = PBXGroup; children = ( + 0463FC14286082A000BFB8DA /* Message.swift */, ); path = Models; sourceTree = ""; @@ -191,6 +203,7 @@ buildActionMask = 2147483647; files = ( 0B628183235DEE8400E35CAF /* LaunchScreen.storyboard in Resources */, + 0463FC192863258000BFB8DA /* MessageCell.xib in Resources */, 0B628180235DEE8400E35CAF /* Assets.xcassets in Resources */, 0463FC11285DEC6A00BFB8DA /* GoogleService-Info.plist in Resources */, 0B62819E235F0F4D00E35CAF /* README.md in Resources */, @@ -252,7 +265,10 @@ 0B628179235DEE8100E35CAF /* SceneDelegate.swift in Sources */, 0B62818F235DF01000E35CAF /* LoginViewController.swift in Sources */, 0B628191235DF01B00E35CAF /* ChatViewController.swift in Sources */, + 0463FC15286082A000BFB8DA /* Message.swift in Sources */, + 0463FC13285FC93700BFB8DA /* Constans.swift in Sources */, 0B62818D235DF00B00E35CAF /* RegisterViewController.swift in Sources */, + 0463FC182863258000BFB8DA /* MessageCell.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -400,7 +416,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = 3ECFYJZ64T; + DEVELOPMENT_TEAM = 8U25RXJ494; INFOPLIST_FILE = "Flash Chat iOS13/Info.plist"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -419,7 +435,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = 3ECFYJZ64T; + DEVELOPMENT_TEAM = 8U25RXJ494; INFOPLIST_FILE = "Flash Chat iOS13/Info.plist"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", diff --git a/Flash Chat iOS13.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate b/Flash Chat iOS13.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate index 42579517e5987af95e70f19d4eeacf62b972e98e..7676417a03942cf01279e59c3baaf0c8230f0c81 100644 GIT binary patch delta 15741 zcmc(Fd0do5{Qt~67s$2T%dyLHgR-1nT*|V`!otD|3(LZS$gv`dfE?boGiqv^883vdPgKnwyv0!Rc&AQ_~9!C(j&3WkB9 zC-i~7Pz(cLAe6!oD1$LD77m1iU>uag6gUhHhuKgGRWJvtVLmK`qhKi<0~??jHo@_* z1-8Nt*a@G2i{N5tSpuJgOW{+{3YWpB;WKar?1nvXBYY9Q1b4z+a5vloUxoYNJMdk2 z27Uq0!gKITcphGW7vUv%8GZ%7g+IaT@Hco1{)GU72%!PU1x2DL6pdm~EEeQ32AUQVSZ5YEV6zfSS=%^dwq}od4#brk26m&i>>68_AvV)dxZUn{e(Tmo@Xzx7uiefW%erj1N$R;ll_YW9OMwka02Je ziMaqSkPG5MxiBu0i{j!qIX8qG$_?X+xe`v#m2zdAfh*^XTm@IjnYb#hj;rU!aqV0O z*U5EplesAzv2e4wIow?CQEndh6ldj@bI)@xaBH}=+(vE-_XhVS_ZIgyw~u>=dzahK zeZ(E*KIV>br?_vpYur!VZ`>X3E)RK*=Xrs5;XQZ}@5B4@az36<;1l^IKABJ92lGSt zq5LpDozLd;cnx37m++OmiLc_v@RlaNji1DK@ss%}Jm%-~kMm3TC;6rP)BH318orzF z;d}WF{1$#Izm4C`@8MtN-{9Zm-{Rlq5Ah%Kr}!`Uv-}1ABL6i6{1yIt{wn_yf1Ur8 zzsdi`-{NoccLX3f3nIZ&@D=1jypSLy3Q0n;kRl8gh6qDd!Z0CS$QJShjZiF<2$h0K zs1e2p&B8>XMQ9b;gqgxD;Ss?iU}2sxUwA@zMp!O9EA$Ax!dhXIuvyqH?6R`lNTvv9 zTGiZqe*!rIod^sha43Pp2uvj~4To4SazAHhgZK>~9b|w^FanGOSwMkB*b{qUZ|sA8 zvEK%u1S*gN)F2n+0S)%YGHk|^@G1NS{uzhVh@!14wZV+Gwb8mtP(jGK#D2F8}6e&rAkApFw7Sw_IO6&0`@5HhqeOZaNhc+}Ai}bp>@#gx@ z{&kH7<813{#KGO52}^8y46rVB39uZuFMA?rS%amH`P#rFx=uxVd+oFy&;}YDtsS7V zM&w*Od;;Qoz{lViR^aR&a2%Y#O01%bo$Q&O4bFf|Hc9>hoCW8=m*70O04`!R&c%6H zgY$6#)@}fo!B^mGa0Pq=z6Hl|AvWPET#ZNL8ah#k^%u{TYVZqaSr2{%H^Fb<7Pt+5 z$3?gp>v0(_#}zg@+@TVB7u*AXK~QOz%=*sBwavDl9c||NrrKt#!=tR9dR0Zz?Lh{z zR6Y!~&0Xdm$bg2v@sPKT$0f9SZaOGcVu)t zOr)|06Y$t>n1shYBzthEUF#ZaL?)Z)S#n!j8=K8~bNl3`db3>9GPX6o&8F^sY=WsU zlgbuMgXu5>H{tPkLN927BViWRq-H$PrcF|fDyL?YR--Si$x&%abtN_W9Bq!WRHG}Z zDafg)5y}45!JyG=vb8xSITmH9qtCx5$uW*n6zT6z;xl7LVw@~-R-9}`YU0p1+0enm zXU($98O(*6ZkUH#aGT@40BYCZR=e`TBB&dEUv=%8-3yEE>o&9$!xE~$eX6ZDclN?! zs0R(ypwOFsB9y^O5Wf~0U^z6x3fzu6@nk%8Ei}O@SPe(x>DY>2#QPs6biJL>9W|mG zW1E`I)UG9zb(q^b5+>HxCup1M+Nl9aP&Jq*o10tP%t#Nh$KW3F9VB?rNIWKDo1{t*x=WcKY}UEn^#->&7+LCuDauH8&(^ zS~|_`6U_}xwVmdU_?FhDmIm`w>nDSJgX8P$9aQGJu10xN+ql*ib4Sy}E^3LXRi_=Y z`#Ly`XNSC{wS8i3bHdc&Lu-Z(PEfS9sm#shMmlXgo%{jQ4#(N|*;OMNPX$V6eauhd zbKma6iS~z6YD5$44=V>rJ^y~#Zhtt<8Wh)DWA`Dj3t|wz2~LJn;8ZvbPKPt#OgIZZ z0xft3o{4ASN3aEBOz><<%FBz7W_DVq6cn++wmg2m_9uhAWMZW+ntIChQECs*#G)x+Y8^Yje8Bg zj+f%69vD|PwzavT!#YXgR|)sSqc$qM2M@r5@O^j)egF@{58)B`5nhI$#?Rp8_*wiM zUV)#-EAgsL@Z&xzoPa0oR5(Scu)2>5-FUs73L74#!q+w`T){8&Q{g)s6~3obpkKU( zj<9{DBIo{f-+;f^sPHrH>4v}JUI!J*Zo@xqyZIe%#%uB8J@5|PhSyO#WR7lVt?!y> zZt2vTTN*pZd2;8&9drQwbVUr}?UX*&mrB>uIoNDSgPBRAxZJdg-^ zA}{2Pe2_2l19R{uycuu7Tk$r$9q+&|;hlIFj@XO>9ArQecoIa~2!X;-IDWa05W6WM z-0h@z9lzNp5TA=@XQ4z&3Y3Ij=_3Ui{GS5RM+lUTGASWY2Hw++M&MWNgor3a*(itZ z1}P~e_EJh9H4QahqbBlSlz`U$nY2jfAV3i%z#BcF390FT*Bk^em7$7%`*dVNRn(`y zh2O>@;UkYZNNN{jG{&}zTDG!xB2k01-eh@jbM4t@_Gzz6aB_z?a8AI2ZzBlx3D=+QoQJm!!}w1`UO z(LQDzbL|t$PahD=IU}hqcB7T}<9=4W@V~NRJ=$nv#RmLIH+m5t?`OqUw8KW%&1gGS z%@a1d?xb`*`5&w}(!aGm=rso`_EJ`S_P`LEEJo}@?^1V)-odB4(SCg9AuEp#*=^Y8 z)`f0UhN2JA5r>!VpZH@$gPd-344>^r$MKgB4?Sfcdd{kIDzjdT6Y|j+bQ#2NL|>q@ z=p6bIokthYMRW!AQ!X4$j!W;btHEa4@BKqC_+xnYxq7L0de?7EH1~DvMCBxt!yBQ8&v-xxn^VGIl z>N^@Vo#u%eRfk>37-wd{8vK*PvFaJu9-F7MZX6Jq%6KrMhv)QWd~I|3;9t5KKYa6{ zoijo9o&Q=R(o(OGZOt4tU{D{$7%3A*<(>&)WK1aj4d24Idzo-1f{Dbx6UY$A(%p^F zC0Vz))CMzysJt+7_zx^S$s{m|OcL;5l9?1{Ff+s&>l*5E7vI5u5{UkOkwpfM0|;~>(3LlHDcyvtcKhk_TBAM#ou3g9Zv%c7ho+kz7cV z#l_%hu#zTy+bJ-)i>7dUXx_FDd;pG74Dtf_j-rs)z;%i_x>KAnjN*%Na0m_ab19yv zqex<-W6=oq`R$axYu^RVBrwiy2$((0tJO4uHuq)6lz_doZ7*n`TeHQn{S17ap=NYF zW#F64Tg*ykAM=i#jqwB~P)-tWf-qa}qR+E^Te7ohGa8 zlqC&LOCIhJxYN{r058nkcbd#u=1Xd}Y;E1lc>;&y5J%5TQ0wSP(+V0jGL|cSIfm_q z22Y!q@0qL256q9uHRdPgI&*{hnfZmlbOJL897&*pK&p{B1m+T`Auyjnt?i}vV`1jD z%_I_-@xP}F_p=4l|L=4``Tv+MFn1jr9q~ZEF#0|jSmbz`_5TD4JwQ)Za7>ilm**z@ z&w1|OFL!l}Q9Y2Yc>Vp<)A3YoT{y_%`**XSqdD(yEGI1T{!?bK?J55A!IgzL1{B!R zo(HCna5NY8hXaLdG@C#n5H^O5We2i@*f>_sQf1K*NZm>?fz++&2`nYBYy&vXCed#S z?JO$uA5l(x1u*VVRbIt)!6O%&F$j*Jg< zp_Y(UFt6x5xz~3!#P5W1Cu*{g=RObY;w*yLR|GsCao#TSOGr#gP8mF8=&%tZa|-pP zWyYE@wGEBdk%=Rz&ln=B5k)8mtCLiU9F<%#ICZ#uaAL|}xnfApFu5W-C1rTFB0Fd3 z@Zn`OMf$YityHUbCPqsXppAZ1wCvJMzl{`4>ZI3rYSo%RtyPwkoSu-f^9arq=)?nA}0t&18oG8)_ zA5~mpwIn5RZj{U()>o1Shh!-X1YXMGulrJ zC7;mX@dho8+(fs~J%*vh5PxPklTIrh1&p4?6JwYOZiAZ%c_uzT4z95&zK3M}+yT%Qx@yRaWpU(jde zSruCZ;$LKQST&o==CK+!pDkduY$1Ua1XdDgBCv|UY63?SSVQ0#0&8Cck?bh8m@Q%T zY$;nt@5-?|fpr8vPayU6FA%tfz#d!MIt)XsS%bGEv-K=Rb=R^DteG9lHWFA*U;}|> z0>`dpo7nN}1h$z#+TKB6CxKIGU?3gRmdtjrQ*FaK*)Dc6JB7e;1U3;kp1=uf*=g)_ zb_P3*Kss_Ffz*{W(_#CDG&;{==K?>9zGYeyhlYDEU>DNhj-^3OYd8Bifo=BoAm`&$ zd6rPhEwwHj8sgMW;3Sv&Pq*4)Y8&nJ53$! zfA@ot?1u#qEwM);>@xOg>*>@%+%xQQ8mT*_Jqab&&>{YVG#wpX=8k>|UBS{ovWI=1 zrJ~hE;N%{5HA@A63PT5F_m^opt87SUe^rBB$L<92TiEqf7dEmlvYXh=R42Bw+t}^w z4)!Gisklrha0amjM6(Edgg^^{m_S0{Yy#&HICl%Xi+!1)6*U^E(=UZ4w%dL&9D$D# zIFIIA*JxI3`?}L0$M%b6V7m^dC&1#PH0oeKCKQr!gdOa08X>bM*puw11TG+O5rI$M zkC55Z>=!hPWj|-n5J-h{VGnzjJx3sw&?j(aNmD~f=QJDNEX9rer1*;c<{u-zWxpeE zF@Z~PW{oJyjzG$62&Bx8K8(>+C?mB3}a?4Rr%_AY@>6G+4V=Ws}A=d?C+jmYyp zl+;>Jt46IY9j38e&CP}8j*i+!`rPlo7iACAIF<%@93}K}EIq>{aZa2wH^9QV01wWU zN#xu(cjh+ic6>My>;@*-&3RF$(m^w&PP#Q^YjfAcmZGkSb>?;&e4ASu{?+JNKd!dD zww}VSCABS$W(s)Kh(yhOYqdKVI)pYk#%h~dEav<3^}mL;-f#Tpe67^7We|#30`I^2 z{_N7u`Eb582~`ajV-MmolW%}GCOuHGq<<5w#S5NT4-^k>ER9?O^q$Jon7tbu-M|J z@T|5hyKeR|n+xWoG@j-p1g`4lLI_-Ki{eAOtTCC91G#W}3>}^|$)V2uW1_iO+ZdY9 zb$8Qf#)jTb&5R7@;<+TMxLg89GlgCP*V<}E$Em{DiamQX6&7wdr=p-Cm&&Da>0Abv z$&KJfa#@^$%jT2>t|xEg1v@!SNCdZ||k+)dz~Uakd1a%}{@YV(nMsXK~Q#9IR^ z0;9R9+|2*#Ka2LKcItIo|2JrVQ$6ut?Lj0D(sF}q(*BV+gaLL($qMv z^D}Nfw}5+$YR^LMaqbDw#4YBQ028;=dQUN7$h(+w`8@*Przd6LJKmN)VLf3-WfGa& z+|z&(jEeGpOc_U^74BK?IqMHf@z51ELG`AR{7)&S9+g|kt>RW!+B~Ks-6ilKfd^_t z3ai3B&N^1*FSkwA&Gne*1ZrxRM$xW4TrX&Nu)*=db=-RECY7AoK;6R`RZ{tj)V^|5 z7C!i!z+1VOX_m@uuz7 z+)0j__0I_WgCIbVKbD^6PII4gXSgpY9nNy+xG%Z$+y(9;cZs{qooB9cSFAJDJF>nY z@GAnpCh!!2)S%MaOagB|%&c#@?`+KCet=Y%FBAB=gH;5c#`CRHvxh0T>$X+g;C|+Q z;eI8Mx{z}OULf!yO;fpB+-V<&uB1c6_PvEY3%A?)JZ?+<&-OL) zuC`Ybc**gmi@82teNuJTAyp%&R9S_*kVf8*52YwI@6U_*06vfp;)8h!FXcmc8G%;_ z{D#1938X&mdjhW#_yd7I5_pZkpEmJf4!oL=a^ThcKoCjbb-R6`*5hXfU`^m}c7xPc zPEzv2sfXcH3B1vVS@Rh-%=%xIls<*$l{~Ezbn_|#f9dAcgw|4Q^`wX(KA$hNLC~9d zEv63pCdHs>Jw(!15Ahqw>v@Ci`D=U`rtb9C1JD0aYq6csaI*7(ujZ{kYQ>ZdHIxn4 zv;mfXNE2Vn*8vmXV3(%vIZB?t2)t)gUrK9-B&GjTlKAocYR|V4c=th_zw^KAe2vKB z+16Fp+*D61%(YD|@=ofvDAN3o(&E2lo}bE31Zte9#1q8XqXT|{jdza`WW#^@B=iZppdq$T(1v*j z{cBT$Z6arbmG@hJDT;_*&OcA}oPU;oj$c8LGeH9ga_Qw)@~imO1i2FAO^^>Y>mzj5 zLADbZ{5pc%9ssQQjr@!JCT0jhB7!^!q89l9ygDdoJ5K}9zcFfl7ymLro&D4(0fMO3MSxb^d*VVhD<&97hx*rlgFu0aPgZ zVN!m;AHHupP$WSC57-U|A&=4X2>d7fasC8!c56aGcORcVMpHv*8x`?Si^BRjEDCk}`>oXN(c?+~!!oTa3qu@di1^>B zAK|Ih9z^4G{x0y~@9}@p%&5Mrox%!zC#Ui#NI^GhtEUhYN09R0f=<;@U<8&jr| zjsztVB)97$)y{wDqlJ517|^ef0+pVG2NV*;|4Visa>9K!N$?YFCR6Yi#6o}&CNDHPCH4rSTu z&)aF$buqP?wi>cuil7%9HdCmf{6Molq|{2xfxl>#2g|5u{lwGz#P3c40h0`2^{xfFUDQ$rB?pt*oIW!U!W)n23TbN5wu{{zD zv@D>3pzxTmkf0KR%I?Q0!Xjbme*|{IQy@}UMv$HccBm9*8g0>=E$I)>vWOlG%!TKK zRsS`9H66c(AcJjuIjtCtwg-NW8K&WfW>_a|u&sDKK^5IJL!EDrgsDsKXl*vrIE*Gl zg%n)tXW|xNYhQ^>*de?GJm{(8ZegeO*@{?8m4o~*3$M__f%cff9>NK`X$bc~18@QX zAPmIO^V@0kWMeTf&~t^OX@(I-Q-WbM#@EnzeH1;HT24=+R&k^0`O}r$i}Zl$Tl8@0 zyWD#;5Ie*j=8n({+Ah-(dR5wC|P$6816rzP#VGup?SuQLUUKg%9#X6NbEp~d|X|>ZD zr(UOZP8*zFc6!6~xum+JyJWklT+}XkF8MAM zF4J8Wxjf_Yg3Csi%`RJAw!6IH@{Y@Xi^~C*!!Ac$j=CIk`OM`jSK#XA>gOtU4Rj55 zmAXc|#<~u2mAfXmCbv`92U4L}_&GmQJKV9#-Il1||1-b>h zN!`NTBHg0hV%@Ub^lqhY)o$b6rn${V?hD)(x?gg? z>i&!SZ4b^v@No91^Jw*$wc6m;uje+;*FE3z+~>L9^ML33o+mv& z^E~Z&#%s7&j+fS}$ZM2WiC2Y}$*bC{#;ewAw%0nZgI?#nu6TXtb=B)fuiw0GdHwE< zygj|e-l5*{-b1|8z4N?_z4hK@-sRpE-gVv$-ebMTd5`yQ_MYZF!+Vyu#izpu`^@&4 z>tmVc^NTO=MZT;r@7w81eCPN+>O0@}hVMN;Z$Do@f4=~~AU}y;h+n8*xL>4Sv|onb z2)``9Y(JHs+Aq&9-%smTt8_`mP}f&Yj8r~SY1Kj(kJ|C0Y#7BLjNi@n9ZVt;Y4SSpr@!^H98OtD&= zE7ph$#HHd|@mTRV@py5oc#^n7+$EkNUMOBJ-Xh*6-XY#8ep$R*{Hpjh@f+f|#QVgb zicg6@7k?o>Cq6H}D84NITKtXpJMq;3r-0~yf`EwuO9S=$I3fvP}@ zI#3sA46F>S3LG6cCa^BBA#hS)XW-<(X@N5WX9cbZ+z_}Wa9iMxz*hqI1nv!dJ@9bg zM}eOOUJm>=@cY0Y0&fKV5_mK4RuCWL9W*c~E+{@IF(^4`aL~}8;X!FZ89^h0vVzKk zDuPTw)j>5uwL$ek=Ag!)rl1Ky6N6fVo(S4(3HmtbMzC*idayBgX7KaDuLbW9J{Wu` z_;B!v;IqMB244ui6#P~2mEd23e+#}H{Acjp;J+lnl2}Q+BvFzq874`Uq)Rd-T8U0l zC8?FvOU#n-l4ePZq)lRxJRz}4o|Y_^JSSNr>5;6Jte0$*yd-%|@}}f%$vcvxk`t0o zC6-f?vyv|*7bKS?_oOaTAE}>IEDe+fOCzPx(pc#rsa%>M&5#yL_0lqFxwJxRl2%J= zq_xs|saZN*I#c?H6ia7I=St^E7f2UMpO7w=J}KQQJtDmx;uSJ9q>2{BUkG_C14$+z04@9lvT+_%O=X& zWV2+mWpicoWRJ@h$(G2L%GSuX%677p}&RR4*etaPMBMmN0`Mk%sb3C z%s(t3EGSG877~^kmJ?j)!Z%fi-&y&U#t*jr)y!afK)9Cjq^hp?OBD4Ypr!})OU zaKCVIcu=?`JS03RJS{vuJTqJ!UJ%|CJ~@0!_|)*};q${6hCdO$Bz$SOHGEBYPx#vK z_2D-oP=s@YON3j5M}%L5I3marA&rnl=prl;TO)Qy?2ULm;?0Po5vLs^N`bcx+_{fQoZISJf(<4dbvdC?bdm>Loei?Z$$|ov5Dm^MADl=+i zlr~BiRT5PeWsItf8W%MqYC+Vhs5Mc&QR|~#jM@^lJ!)svD^agTy&iQe>O_>~v#8Ti zXQIwUU5L6IbtUS%sH;&wM%{{bj}C}Vj?Rg$ik=ibFM4(Kp6HLF&qv>gNsdX4$%@H~ zDT^5$QybF|(-<>8rXyx@%(R%9F_st-vm)k|m}9X_taGd=)+;tBHY_$WHYRpZtUNX? zRuQX;&5g~EEsiaXEsw2?t%`j#c9$jgeC)Te-^bpHy*CgJWCscZ-3N*WdJps)C>|Ix zFlJz4+|anxxa_!5apiHN<0iySjhhkoNF0fq8#h00Vchb#6>%%$UWn_7TN}4NZe!d> zaX-t0A$?=EO6J-z0vQcs21_(uAa`Nz;>NCRvic zPWn0N*QDQ)ZYOieLb7wRYx3meImwS&lIJHcOg^9dL-L==_flXAn_jZJGxYffuTYftM+o02v?ZD!h%w4SuxX&i%#;S}p89f3$o9JE~KB=@SpH@Drd|qkUrre=? zQ~9p)fbx*?BjqvW3FW8Cdn%xEQ+cU;RbrJyB~yi~B2~$%R8@v*q$*pbQE62=Rf(!p zRiT=wnx=Y6^}K4es$12oI-i6Oxmhlbd788J$y`Q=ikE)0ML%=b4-xIS182 zYKb~ZouVG9PE}{9N2(PTwOQSwZdFfGPgl=ZFH|p5KdF97y-dAR{kHl&_513>>W|f* zs86UrRsWdlksF+wk~=gvH8&%7WNvnDPHtXqL2glQac*hugxr?gw%m@~$+^>VXXaXR zXXieeyCC=R+(o(Fxkqy^bOR$)B4)FMmn? zy8KP~`|>}?Kbe0j|4f0@QV?B`QZT$gRZv(kwP04k#)6j$UM|>Eu(#k~!HI&;3O+A5 zTX4SMQo+{+KNs9AxLxpP!96Y1GFnb6(ne_0w0YW6ZKrm!c8+$Tc9Hf;tyQ~1yGr|l zwp-h)eO3FR_MG;L_9yMn+MC+j+CQ~-3#El=g`*4G3Ktjl6mBa#QfT?O@Oa^;g{KR@ zDEzYUV&PYXcZ)y~Q^XfJ7r7R>7iAS`ib{&gii}03qR~ZTiY69KEqbJg6wN7`SG2Zh zYtfOSPl~P=-PHjdqvLg6Iv-uAEEK?Mn#RvAJshS z$x*vUof-9evAB3h@rYtYv8q^ItSdGaR~AOU9KvR`Nv2 zl9Ht*%Sx7)tSDJkvZiEj$r~kamAq5(Udh3d4@!=goG-al@^#5KC4cJO^zr&6{b2nt zeVRT~pQTso)%qHJo!+b;r=Os2(NEG(*U!>p{cQab{Zsm7`sMmf`d#{c`gipQ^zZ90 z>aXc<>Tm1+)ZZ)RN}WnwET!(HqSBG26H8Z>t}lJDbW7>B(zi?BEj>_rsPx0Kz_ReN z#Ihk}!^%?2MwBVaRAuV2in5L}Tt>=fm(49(U3R+cs=?LZVem5e82k-^28lst2sdOH zMjEmWIfgt#fuYb~Fw`0v42_2IhKYtYL%YFZm~EJAm~U8P*lMusFzhtEVtC(h(s0Uf z#&FJX*>K(Pi{Yl>cDYNrxICy_QZ6e`DbFfbmaEJ2%Dc+9mmezsru=&OFXg|L-!?*H zurb6KW>gy0MvYNx)EP^RWk#dXWb8CfF-|kiG+KsDskoP%DI*EDi>5fUHNR~^OdVByDNJu_f>vWdA#z| z%2SnRE5EF~P2`$zobydfc?wwA8fB zw92%`)N5L2+GyHj+GYCC^qJ{`=||IVrr%9>On+6ODwis^Dvv79D(@=as+6ixRUK7N zR6SR(Kfdavq(sv}h&SAA0TW!2YJ-&S3%x>j|w>UPy1Rd=iYs&=aO ztd>?sR>xEiDy@#M9#TELI;}dhdStbxx}>_Mx~|$>J+69ub#pbYUR1rfdP()t>ebad es}EEks{W+rjhz{G28J0n1q5VQ*#{T~24`3X25WZv&)5n}ip zoC#;a7oqWGI0wE8=fU~#b+`~Ng73g(umg6&F4zs%!4Kd@xD{@LJK;z04Ez#)1<%5- z;W_vX{1$!(zlZ1HkMJtI2Cu{4;cfT`{s|u=gc!sk4ml$caznmIib7E|ib1g`4-G{c zq(%9t02QJlq(j9ur|1~^0-Zq@&=qtQ{f2I#-x&wSk#S<284)99To_lzjd5o@ z7*EEF@n$59597;7nNTK-8Ne9BnFuD58OTI22~0YpU^19YCW}!r`Ah**%#<->nL1`1 zGoGnuCNLA3R;G=a%uHiuFfTAKF|RRiFpHVDn75furi*!xS;4Gf)-t=9JgWxi+5Ge0mFn2XGh%umcE=4a+IbDO!t+%+=ym_JyKeynolr3W`*h+RZTg}$7 z7YDVP9qEvGdsltciV%eVtv%E@Izc7qjoO%h~tX73@lOGrNT~Ze_QzAF{jI zJ?wt=bM`oUg6&~XvZvT@+3(oz*`L@;?9c3F_BMNmeZ(;w%h_-aoFnJNxp1zWC+Efa za&j(+3+6((2rimaa2Z@Cm&GZ$Y)-}Ha7CPsE9OeL5nMgj!cFC-b2GRXxY^vx+^gI? zZWXuM$gSbla_hMD-22=H?gMTkw~5=#eaP+M4sZv#&$;8=m)uv}1@0pEBli>c3-=p$ zi~F6s%|jmX4A1f$&+`Ir!`t$9ygl#Cd+{>9A0NgK;0N-t{2+cXpUkK5*}R4?j6cnv7j#0gFiNNrMhn$KjbIS!gmFTXFj1H! zV1WoTggL@o;T7Rk!6Ym)`EqGYFs?RLaI@U-MSKbWL7)eLo&pq?^ix zL>OUd@hK8#o&=7-2{;1{$On-fK#M&(Kmqo~At!;3HWz~upa-R;T3zJmsusg=`rB-% zuWGHEWWWG>Vb4lYk*P5%({wz>*|rA^1H-`xFw*2;>pOA;s3_Cw@<)#|RJZo-G78jz z$Q7Upj0V-91{lB?Pz%Ol3HHIhSc?6y49l_q3NQ|g2lZeAXaJ3%2~5NRI0y&hez-pl z#Su7?GC~&cW&)T7o?V6mt=k#_9--A~+FGkd*Bf+()-GTK1XPr0b@ZmkLgRCm;ijVj zQBmMU@DhkzwhV_@XU_q1D@Cq-^Rw!zTk9Gds+y;CfjQt6P+{6&>n@%L7MOW7ABS}S z6CPkbMWClUSOnf!hQqDv5b$QFd0SInVDJ#|7I@pbNiY2!pv$~MCywd>-8km&TwZD6 zXmq7$DCKB|NmODN+BASdU|I9FFe-8^8x(BTm5SSV2!B4_e?0J_I{D zz;-+cr=0>Hfn8uXmEa!mF<1#cF&zu?j~;>t<7k{3sMr_kT~cuPmEPqKfWsiN6C4DG za3W6X1fPNgjgRF}D2Y76@kNe;OcnBVWKd~C;;h|WAweLazA@~zAkj44925a#c zJf70{lHEH2&;g1lhoK{Mg3h=A7viEWD26W373**@E}_HJ_QS%V59KiQ#d@6fgm+K| z1As>-ltX`9ipx4-APmCgco;R}F<-Ji6fk7!D&~Bp!}O;E}kZ8%Dus7z1N* zB_4&V@MtLshwt(v*;{LH*cuG2AnpmrqmG8P#O`FlhM1k66R33!EC6) zwRmhN%!O)PhsV*whB_u?z(QCKBHx2WPzQ@)3Dm<q zvIMa-PNj`4PaB`NG)|+9-#l%6$Tx+sv$nvgx|o6@tb%F)!wD6;SnlX^XGGT90bE2dUXn(#&1y( znLizP1$M$K>D4OyJ{8(LzhkBp-x*o(2ea;6z;EL;t1kTnc67r_@MrTEzk`=qzGwP zs4+}7v{ckIR<}(sG_(#iG}N|^wQPw1*s%tAR3tro2e8?Sn{nhx8HeYAynwi zM3&;+PlSesQK6x1>xYiDe$qss_sFAB4HX%x#(O)E0e@l)QZ7}oXef(ty`T&1r<%#ze^r4xSt?({Bi@Q6~ zc6c9uP4&3ilp>W3--Gu3i#8rW2dOrGgTL+5#$IJSVm{GP{M}P!{2cX|dEOfd&`ER( ze~-^wl`#)}iN5*&DdR7xNchwuO_49|ugjhvpoKm5T7(6IuP(<9ItoR7U zknFgKnD~s$jLfJZnVCZp^pgiCR3^mf>k7s;HW-Fkf1+c;qo0U}@nZr(WH%#Y*&QOh2YS{u4hY5D*B>$*V_hmQq2pu}O8UQ;JOULWuSki#K4RnfNXy zhKXh32t)+h5a>Xld+#2Dm?SDrW-v2^NhFXVkR_1oVv?B@CWt_uK!I*Um+xmf9`0v) zHnc4xn^FJE3@B!XG8(KS(3U_u98wMB!3fBEm_p#p6frt;W?WO%T9q$m{xHRb>3r9V zyzL!a-F&6}Lm~$cNeoCzQ|08U^9oD!!$z7GghkkUVWwQyR$Xl{)R+#21sh%UT3vQy zL+fcjncUwgATTJnA8paqO*PQ;c}#YFRc#ARY_kk4)y;KHt&PpJQ(HB`5SZT2YOLZH zMOeVRITiPaR5Ufw>~~5_t6@S(u6flA>bFihg@z3XkEj%RT6cQ7R(?~fk>Ytl= z^Yl!gPDKWG#-h$FrM2v-6#3BQdzY@KwMJueZVin>bz|xb&6MQ6-r^}uhNnFuAmV$5 zYP9*rVL{dPRV^(Il&59ZOM`{seI-DrwxF+&p;L-<6@7JrCGG7hDlX_vfh$GMR%*?B zx6ndol$KSBME~S(XL*68HPOtQrxKyVhmUxo5uL*e=xs%1rO1V5*uCMb)De|gTd31bYY>aixB&PkJ z%E3%BS4CErHHF3u;DVXHn87^D7|pef3$AB67)+p-xge#v4)YunZy8EmnzdmT6HgER z-tf zo0nRf{mfbFUz$6t&2rQADC1w6ms^_y%$ctH(?wQWn}ePL0v;M>9kYd2Ak2E^eP#pm z0ke_W#B3(8AA$V|3?VR-z%T*_5E%X*4ME%JcRRBg1T!DuIszlie`* zC@4NVGdempJ2N6HbI9O`xU8(qhzx}?i(VxtvN8unWyZ#2l~ihViGv$OgG}!w^jDQq zV56P_9F1TCz0y<6!$5)LOnToyVdZA}TTed*dKF25=62dYhPKP)Za@x{6c(wYcLq>n zx{?rsQqoKVIf=L<8QXTGQco*BsmMsoq=fDp6wOf=j2%q(2gN1R2s8BG92wO{U3Ig; z&@i-WN@H7VXP&0dm7U5jNGvQ0(-oUEgGX`Hr(!452ZQ4V-ZHi+%VD%f(0c1~cM*fw?s`@GdT^!bd6zxxdK zH6wKzz5d_`a~edhWR5bQF~^wCnd8g}riVGnoFb4KL^Odh1jZ6b^M!Z<69^nc;NX>1 z-OeyyGG8%gnXj31^zK`;z6~L;f~puyZW)|@YhsFLZ%HnwZ4Ce_te(O_eG zHF0q~^9yssoYGujt}@q{>jcuABZ{z0&Gqksem>y@5*u_Lr zgTVy$)6d@AFNk1|e?Xw6 z+cDHzw|c=Vv^&_Pqo28#>j?=Bv-COBzW#OdXkYlit_b@`%i4!h9bs>8ar&LLvD8EF zn3b-qHQA+w@h;t|_8w_;pu3GvsiD5Qae~1#%H2&1Y=9W}P(w?h&v*0`UKvHf#Rdw| zy$0T-Pj5QFCK@S^(x){ishj=<+yVE%BPgP%P6)+oqUZw`B~(**q@G5|sc@R<)3kvD zHE7g7lrsJAN{Oahq5b?@HK2An*>b21amFlU>X?d6)+Jvg20g! z*c?EUfAiOgMo9A&g*q#!-kUw`#=wmJa6pMQ7zL&`SxJ9lfYfq_({RSpT}E}Vbg?RW zdPR2V0CrUGgo##G^-ic^$CxJ=2(0O#l?SbYO|NAK`?BNN1~WtI*$D)WA+XkrZROIl zm_e!2*$N}|4TP4S>?F3Goy<;Qr?Stm)7WR(>8z2(1k%Vcj==E*))PoqXdtkWz$OAG z64*>&%W8H8%4TP>&(qH=_C@w3b~gJmJBPqlyoW&gJJ<666#_d5$|6WZkd~kVv(>s% zK4ck8#W^BVmnz4(LQ^%lZUW7CX;xO%YA`wFq`Qc-45Qm>YYol1ruw>8v*nnssDe$i za{NuBa{>qVlKv+94mEmq3A>bii+!8GHVS_c*iPW&Zgv^l0e@z@2%JLTbaTQoo6@~% zcuFL@id}D>wVGYSu4UH|IF-O>2%JXXv)vS1$VL+=7wc#Nz2Cx1_Yu>L>~?mina4W_ zG?Z^g0%tufsMrJSr@*6&J;)wn4-+_p zz~=~@*~K0K!R%)QK5urAFW~BtblIm#_6T}sO3w8)Js#oRpFPcf^=~Vjr7N5x@I~_q zFHxtJHd3Nt&$AcIXa0e}mpf24rN?~aOj@Zl)*G_x>RS!Xn#LN#u>2-NLvBNH)#w%x z_=5d~y~19l?(Q0UoxQ={WPfFUV{f5s(~aEm&PxcKN8nooQf9u2_n4ftgB0vtiXyQ0 z*gx3&>;nSl6Zjf|iwImyvnKXW_Azkg0Ltdju%{H2Simj<7nl{rWO_j>H^bu`$ML2U zS{c{L2^0Z8p_LDQGT)Z7<7jdEI)Mx6_~Dd-*5=0gdP8%Ih(3k0?%@o7HjjD3EN7G1 z)w%cfxS4k+@J;Jxw8!tH1=HWfEaD`9nzk>2GOz&XAK2(XeSo}D*oDF-64z{ zVAAA8FyVClXY-=VB597w4J5GhshV&x9Cc62xmYfai{}!!K^%2SRFAs}e3!uG1inY$ zisf7)m&7I0zp0Q0q?H7&BFMvhfif)?&JCRsoXcrwInJrMJdS$A)da2~aBUZ-rH~QL z;@44?FlX;wL(`KeV%E)-a%EgOM;*_40)HUz8bLfx`;r^URdAKuC@RS+ZZucT0nWgU z;cB_D9AIAN#+&>!?;95oxQ)OM34EWx^Hj8!MEd)`sS`JWYv@%c0=E*l;V-&mF&wVd ze2O-164%a6Ch!9SHxjssz|H^ArC!zP6|pUs@K+7#ZT_21^fu12s>7B(buj*`I#4Io z)Hb@lt~#=%y>3ivL`!2^bG6}#+u`POZ&Am|E#OStYuxMHLT(ZF2Dg}dlUu?qC2%`| z)KBarkot*T1nwq~>iNe6?j?}Agng^Ix2^CU*9nhv-9ct7ntKlf6S&{voT=YEh*uDJ z#0*Ch_?g8CnepgqPnqc!%?p}j(WaN}LQOL~<(b?TS`KlPnFpSrdfax(!~X=Rdr$r` z_X*8#IC_*r9o#-b;c^Q+?ZX}7j!>YCI}Gm<_$fv9-~%*)qSO0n|9rWJ4|jq)WdYK- zlbFiwC`Bx!|JI8%P;4uO}C-69Z{KI|EoyRnco*?i$a|FyN zXf{lu?p#-0Wv(|weGNs1>bfRFi>ch+Kf$UEm&~M5J?$|UU>4w?yTV;JpYkeqjlh!x zp6cXoa5o7&P2d;wAoO8T40nfnKp{fzE_aXngS$`Q83Ml~@GAn(c5@H8N8F#>V* zkh)8H&~NFqXoqzUPhfHYDn-4|bzRL~iFe=~O@&3CTqo~DEw-@8+xQQ2;6Wt5D=77;pp#b;#1Z&Afwu{~ZYCdbw2nsX-y8w2;&ZIj^VBQd zBJf5Z^#uNAkv*@avgh*&eTvdYZV}41SoyDg2Q{tI*@>-Z1uM;G#nJSrrv190{v-J+ zs*ZdGU&)Um@D4Gn^}Q~BG+)iv5cmf{6mVy#?-Lc9!sxTP4xY;G{$C#X@(p|=-vp?= zJ|gfTp}L;>^qI1cw2hxkQ!9QF-%cQ{H6C~JQ~0R_0fH#rN+0+pntm%gzxmIY^nVRW{ADX+WPObJ z_mK3&2lBu1f70N?-{ODgZ}WHfyZk-=5B@&?fPct8A}D~MK!Sn@3MQx@LH!8|At;of zFoFgU6uz2&Yz;mF1CI-wIra!PH1;5h6q!E+4a6&`Ok*v<2gU!d!AJ0-5`2U> z8hlXPKl*cpB!NPhT|%;uBBTAMm|wI;W=T}zpd~hU12ss zdFB;{Qi>Mm`j|e>b$2`|%oFC**BY*&QNjY#+ap5<=UeG}O?aKY17#@!EQzwPkS5B1 zY3SYW4Po&U?|FTsr;(*qfF~#8!sr`x3EW_s_@>b}>9XiMbR)T$G$ZTgmUAoU+j48@ zi*oPNm*h5aTe!pA5$-ekg4_x2B=-e>k@gd&a)VzS4e-{aE{P_VxBH_HFj<_EYSiv0r6>*1^U>?BM3$ z;o#*E>JaOY;*jf*=b&-OcPMli=1}WU@6h1TWOQhAXm^<6@QlNA4znHJa@gvy$KiX2 zOOAr0)Ulsqq+_h3#&MYAaK{mj6^`Q_8yuS)TO8XQ+Z|^*zTo(x<7~(KPJ)w-ldY4z zlb4f^lhjG>6yOx(6zvr26z??1=`E*KPMe*!I(_K0!|5ZZ-A6FtK zPLG{^oQ(sWOPm{=pK+eyJk$9F=NFw{b)N5Ra(>-;k@IrrgU)B2FF0RyzU_R^`M&c* zk*&x{BoeuZJVo9jACXiPD2f(o=u0luB7>+_R3{oQY86cqO%_cRO%qKQ%@n;XS}5ui zZ4iAe7R2G=cyXdQQ=Bc%5v#=|;?d$-ah-U)QQRbM7PpEgiRX%!i95ur#9PG&#D~P6 zijRtqiI0nW#HYj;#6OBJi7$(w4FnuDe|KxOuzva|>|` zb2C2YHqUK=+iPyu-0r(Qbo@o3!M(|SihH;FTK8@4+ue7%?{eSczSn)9 z`{(Xw-G6ky>HfgO#>3e|?BVL+?&0g<=OOn9@CfpV_K5X}_ZZ~S?XkgQqsL~Ct)Bj# zk)BbWF`jXrou2DG4|pE({M7TP=P}RYo;{wYJijn{e(8DE^PJ}`&)c4NJ^%20;Q7e& zu^04Wyf`nx%ht=@E5u9XHQsBk*9NaMUcY;Lc@Of|dsljo_O9_B7(+=^~v+m_~aXX3Vn1wB|fD-qUibOX=WCzGzQMk^ zzGHo7`F8uR^?l#>1K&-)ANd~eJ>>hT?@`}lzQ=uge82Pk!S|x?CEv@wSEM#lcd10` zEA^8GN`s~SrJ>TnQiU`_nk7|93#22Zqop;{G1BqU3DQRCL@Acem3B*)OIJu&N!Lh? z>!j~XKag&cZjo-2ZkL{ro|K-Jo{@ef{aX5s^gHQ!=>_SJ(o53Ie!O3>U#{PHzgPV> z`}O$Uk-5v_WGS+AS%xf2rjhAoWwK$i5wZ%|DA@#AldM_RCTo{Xku8*U$yUf#$=1j= z$TrG0%eKl6$PUZCkbNWjPIg{)LH3JLc2#y=c2oA7?17w>3vyezz1&MKmCNM*@_zCV zd6+z0o+B@jSI9@nN6TyEW8{tUiSibCo4j26-y`2EKQ6x@zv<8U3;wqL_Wq9k&i-P5SATbZPk(R!NdGAR82>nbV}k!+|3v>} z|5X2U{|x^uf33g4zsdh4|E2yL{SWzn<9|EADIh2yAs{Eivl_W)(310*dDMm zU{}DNfWrYt0zL~k9&j??binmM+rXf}(!h~{HGyLS8v`c=P6?bAXbhYY_-f$7z{P<} z1K$Z;9=I}aP2jq~_XEEQ5`tobl8r&BL3u$%K_x+DLBoSa2h{}C28|1<4{8aT7Bn-2 zgv<m@8y#i{s|~9Qs}E}on;6y-hQnrr%?z6r_WJ-hfEmCIuo*CE zz;gqhA24gc>~JC6E!-pAE8Hji`S1nduZ1rRUmSit{6U0Wgkyv#!ZpGp!aKq@LKYDj z5fu>|5g#!)A}JyzB0VA_Vq`>p#Oo1zj1fOX{27@RSsFPi_EhYd*o(1uWADd4iUV;> z93N*J=Md){=Monj*FP>SE+Q@}E;cS9Zb)2GTxwi;oGxxm+|;p7=BIR}$C+SweV1L_%ajR6<@tS;FvyiiE0!nuIY4Bw=>KdkL!&)(-i6$d`#Q z(IzoEabe9$9>4l`1 zlIA46nzSJ4^`v!488qq)leuJBa$<5x z^2FqM$?qg@Og@x+F8NmS!{kRPAjLMtBgH$#H$|2bkP?)VlTw&clv0vXkupA|A!TAp zYs#dQ$tep{x>8o8tWH^%vN2_I%GQ(*Q%NSCDtqz9*mqz_1sOHW82 zoSvAToSvFKB7I8w()7*gd(-!)A4)%xek}cX`o;8X#`NFPZ>Qf&f1t2YI4fKf?g}r3 zOc9_6QuJ4ZDh4UC6s3w$iaNz4#j^^mcuw(xVytXSB_9tDyxjjYGs3RhVl*Na^(lg9_1ftLwyO524yq2Tj;g*=ol||QIHH`hBiCAT_vM(*<5 z{khlG_G&k^r&^-+RR^mh)lupgb(}iEs2;3Vs&mwNYOT6Zty4FtpHdWe@>Kp1i>U-)3>Ob>9o^xJ6US{6V zy!^bPyyCp7yfJxodG&b{^IG%T^QPn(^XBHQ%-fQ;J8y5^{=7qZNAgbPoyj|!XZ$Ab z`@A3We$Km*cYi29)O~2$(D6g(4P89+@X(&2mxo^0aGHLaP))cdQWLF-(+tuiYEm?M zO}S=-rcyInW6;!Unlw{1(=q zp}+x^?gAR_fO1KGf~h?bhwpeXi@# zozk7rUDRFDUDjRIJuY@Ab}n`)b}RNT9$cJMoLa0X&MH= z>m~X?eXzd2K2$$IAE8gwr|8r5nfh#fj^3be*0<}Y=%?w4{yF{g`dRvg`Y!zn{VM%h z{RjF@`Yrlx`h)sY`mc@pZ}sQ(7xh>4*Yr2_xAeD5*;3Ea!KI4QtWs5JZmGU>cxgpx zRq2@0y3+d6hSJ%ki%OT3c9kwKU0J%ObaUyp(jBF{NVOdC-rc7T}S=L@Q zt?ae3HXwzF(^*~ew4%f2nUQ1(;V<+7_~f0ToArkpRgEgvZ=cP)1>_bQi^ z2bD*ZCzdP9v&vQF>hi+!;&Od?dHL}23FVW@UoL;6d`K4-QAsf`#*PPXOoRk`o4X?@BRKy;fc*$KfinIo_n^kzQ!MHjE{ewLmcJ^ z$8!!&;6zTDJ#>YyA?Od(%^B)#s9NfWzsiO-2I^-I4OA}kRW$~?acILPk6SM+o$g!h ztIiA+dXAGgxxBQ|+vqdU4N(p^=j2qbH`j;j%Z=v7aIst*H-JfOs<40qiakq-q?BWgk`&`Pup9gj{#r=l~_S?C(H6YWCRqU+H0 z=mvBn+Kp~PH=|q79&|gp6WxOzLQkTn(9`G{^elP_y^LN#@1W1n=jaRcCHe||j~!UR zPVB}}xEt<{d*FV!KOT-p;E{L~9*xJ~Se$_;;~YE{7vLGV5SQSE*n<~gFRsK@*pHXt zIvl_!U;|TpB3_SA!)M`*_-uSN-h`WR3*L;k;H`KE-i5El*WsJ-E%+XMFTM}oj~~Df z;)n3V_!0ahehR;U58@Z`*Z3R!E&dLFj}PG=@Q?T>{4@Rq|4KN*69*B9LNsy|8APJV zU^0ZnkfCH48B5|x0!bv}NdYM(Wn?~CM7+dD7L#RUIjJG_V!8gc?zPfjAI zl8xkCavnLKTtF@)my#B84Y`i&CO46r$!+9zvX|UV?jiS*$H+6}AbEwnO5P;zlK03* z>J=P%|j=da*5 z@y+~JejC4&-^E|c@8S3I5AcuhkMd9O&+yOk&+{+vFY{mX-|*k^-|^q`hxi}(ANim7 zpZQ<-KOBNXbhsRvqnD$%qmQGnW3Xe0W3(gDk>Qx&nCQrI23ik;Q2@eZT2u}*n3NHz- z2yY4>3ZDv}2|o+J2)_!y3BL<}h_a}NPEi$IVwBid>?igY2Z$rYk>V(Ev^YkL730LQ zV!W6jCW_<4W5n^|1hGgg7H5hjVyRdrmWvhQLa|D$7MF<2#N}e07!Vu8ptwR@DXtRN zitEJV#S_K#;<@5^;`!nQ;)UWx;wG_KY!Nq$Tf`mWjpAj7N{>rVNKZ@8Nc*J&((}?w(#z5-(i_s7GLc1Dl2zFyN6FpfUUF}_ zzdS&WmIuqjWACRAy zUyu*VFUl{;FUzmUugb5#}KgvJJKg++#zbk?wDua}0Ww0_tiBX0s z!<3_y;mQbQq!OznD=Eq`%6KJ5$yM@{DN2!2tSnQOD>X{3Ql|uzdgWN9K?y32N|Ul$ zF%+ttsGO>trktysr<|``u3VvPQ?@HRlxvio%Js^v%5BPn%0tS-$|K67%A3kt%G=62 z%Dc*Y%KOR(%7@BF%E!v*m{Yz}zE=(@zbd~u9Ztb1I(4VpIl?*8Im$WOImQ|5jB}24 z#yb<7iOy7vofDkd&KzffbB43fS>!Bs&UVgm9_wsy2Az%0Cg%$0O6Mx)YUgpzHO>>9 z8=R*&Pjzl|p6$HYd5QB8qI`4Dd?|i`dpz|T;W6o!s&pHn} zUv$3de9QT^^JC{HDprZgs}5CAMO9K|RZ*R)s=C$QY9I9|b&xt-9ifg?6VybtK%Jo$ zszqwCI#VrCOVu*9T&+-Nsq@rIb*buCk5wDgpxUS&ub!Y9DpgNb&r&z4m#LSlSEyI2 zSE*O4+tnTFed_({1L}k7L+ZooBkH5-W9mNjarJ5S1@)l%n)zWRasq57rzl}m9s zU8>9F(p*PHNiE-HPw~xn&z7B zDss(o&30A0e6Gc=C9b8e6J6_FC%H~`ZE&69I@NWW>vY!{t}|WdxGr{G>AK3b&9&XN z+qK7ax9c9)nqpSu5Vo5y1sLL?>glASwotrNt#=W()w!s zv_vgQOV(1fR4q+Q*D|zm+A-RAZL&5+o1qnI71}J#qb<@_X{)v4v^CmVZJlfId(^N*|=h=t+9Ao}#Df zX?nVzp;zd0^!d6+uhf0|Qhm8zryr{~>MQl*^mV$Suh%!|r|D)h0Riu(-rM)&3AL+hGq zY7THNPUCdW&2{H`%_=O7TkcyOoC`lg+GfSjsv2)F*uq6|-3)Ay7On@^)8HvOWR!Z` zLsPQy(&AH6vtyGo(-LBn6LK?SGjj8iVl$HCQ?lZ-a&q#Lb3N`J`8m0>0u9T9_1-F9 zPN1r()>qeP_uP*g!j0O__2&j~1G%HPL0mL9*l-wvAsUh)8;arF&c$#;xnbPVP-Fx* z%uo%NF`A<9piFOLv@vZVYu;a19ax#y;H~v}+!NdOSLUtE4%9U^1Zrx04W9Jmtdz9e zthCtF#PpQdU4tk}f#ytJIO%+!p;+ysyN=x~crJImWJ%Nwll2mO^bzFGdp zrKSG5B{e>H<8hB@+mkg0Phn|^FW4Ap@IrA@AJ6eNdOhwzP&Biu5fu9HQbZ2T-M6*Z zK%l15+mLVf>T&mJeP@oS&8yyP)+EM{iB3yfHzs;bLUKI&JtKYHI(vbWxryAUYq%6H zl}qE&xeRU`cMLb4n_y^$Zn%voqnpv)=wb9UdR+s{JDJPmvbbz6hs%Y(roamKFe%5 zwTk7}1?$0*2{g183)eJ@&9CtLR_6FBo0cpAlDWIj@YMzyR!?d0)-P>+YL6k@!vg3o zx7r_SSGK2L#x3GT?c&P03T_rRo14SU<>qnoxdq%p&SUg7`WgL=0meY%C}WTjZ45Ss z7%{szFIUM`an+oUTg)xtmU4b>8MoXRYRoX^8jFo3Mx$|pvE8`cc))mqEysY_Re@?> z9P~fk-xwF3OPo1ak9$=3b!nifp~@G6V|jj?qS;HmbxV9fk9%OaaAaGht7|I*HL$3q zz8Y9OUv;<}umz_y1e)rt7hpL;E2Fz;B?}0%yguNsYYbZT0i#{_nI8-`u`%`UqP0BO zbRKtf7jMHb@4A69*eG4UEeI?L+EiT48QiFC+;Q9*ZY{TtJDxki7-k%83^zs?BMo>l zj60EA4}d+H+W;(KjFAaYoo*B`>I@8lwWzLUb$(r=uK_xR9n7czY{=v84ew1#l{I+l zf_`{r?pm04@0_eD;bjh$p8=G%wjA*3tPy97HR6qgt=z>hr4ig^+~r0h zOsKb!X5_Oe^|XhayQSM96LZ}io|fQQ-7Gi!j*)vMVM>+%8(g}#-=-lm|h+MJok zodD&gdRO@J>tJtsYid^8?PM31TRV&`&{BU*b%U=iROcwW?MMIufI^+eK!NP02B^_k z;BBg_T3Tw&w#2s>*1WFD2mXrvrm)$}ZQsmo;kI(yj3gu3NHJ1jN_ik>mPW%qXpHt3 zl_n%b4;vN@toW$To+l?}Bxj_iC1#`mM`>SRKX)y69d|uu(ZhZuvlZfncLIM-D0F0Qx9^takq1KfRMbCyNlb) z-3?#&a`$ofL*KSAD+pA18-cP5^Q&R{{>6S@L$R0fyPn})P!b3<=J{)U)^n&?>-E>Q z7WV-A2THCgT5Px3`p)2taqu<8$T0GNc;WpP-olImak;B}RZVOVxpgc24S_l)WUXGT z89l`9+rmA}J;FW8J!TwZOfs^JY$Nvo_XPJO%fSd=aVJq8UQk8ono)Qp@n;a+x;hH?4DnQjr)u-8Mf@i*=0)^Zle?2 zoc(s2`8I{UwI980KFVQ_Km{3J%>+es&;ncZ;y^=mdqhmMhW!EeA!s<64GrGaE!+p( z?(Qf2Vg0jSf5Lrg3G|3%ZJlC?kL_PrRFl#z+-GctOaVBe@>U;Ta9=JABhVblX6_3% zmicLmD^shIljGCVQ{%0&-*Df8>H?l*4K7VanRXYLp7SEJALuw0~l*KS3dMOQn1_9HyYw9S9>(z|hMnyB~X3S!GDASHQt+O8#{9dRx>f>?u z0~yVbTFe};k+d}C7_*DqJ1T9TEW(6$2%>9_ANEy<{kefXHD*>-0nB{Wpwamj2CJA( zSsVxg4-M2U2!`ac$qhFpWj<8+@#H6S&ux*E7FmwrLjPKvYRu$gtv_NWpKATGNs8(p zH(`1~`RsYsOX^o!4-t^X{HKL}+CPpnR}A$>13*y)#$98nnng{GHU2suQ=M8d8(RI% zXdpU@E$$JP_qZ!PWsOs^D-u$3D#}{>0F@*$we`<7U6!q`_XX2J-FYfXJxK|z<;*24 z1ziz1M3_H%YqXfPUrV$e`D3>}SzqY=hDW4^J#SZH{RMTXa?+yNq<$-)sR zjvI#JQ38m0CJ}oZRq$K2;bX`h3OKM7r7#+p2xOug*cbTKnY^}C@lJ|O1+MJ{cRG|{ zvaFL5VP zZ!9yG8#P9)QD+2<`fE@TsMzyCXP%47I1jfF%`%P!^*S2#<)e%SBL)=fAS2O`u=I-1 zZ%qw0&YF$KJ@{~iLRxhfYNyqZrI`*pTr)s}rmDuK2GHh)AFf;*mHAIbZ>!6P9T`(< zyQF|McuOlz2@k4EtHCPHK*`j#Ks}gQT`TkU+ID4N*rWdo)`|_2#i#}}ShNH!MSir5 zJKktARv0UdRmRAzs229^FjS9@HCDqu9c`>NjyGitz%?7#r?(!E&Xm`(1|OpYJZ@d^ z@Fuo|Nl_gL9Y0g9!0KSC?qN#i)-hfW<#Z@#Ypkpfd(5lQaZHM=HjZmXYm7Baim;-l zY97oqhhrB#0fFrSqH3D`U_ClHTz7-9&M38CoQ6)fN_HWR?Q$E@<=m)i(b?!6bS^p% zosTX+7ov;M#pn`rDZ0!s3~HQctT#?FPBu0erx>Rirx~XkXIzV}Kv%-o6|kW21*~uj z`weY3&NMc{*O{=q?5nr2)%wkwJu+5B8c^YYb}z&m+p39Nn^xY`(%| zevPFhLun>-a~m204Hk6(g5gDHufm;1)?!W$u#7;B>R64blor3XOeND^sakG&bxg~O zy$oipW<#?^8+rgHSfihLe!8{o*xVlNEi#J}-imJ9WSnKG9yg*pT9_GNy}1kYezey( z+n8$oeJ{6XGrAAmj~+12F)lPNF{au?d>B2(^=d(npht~!jq_U2KJ>V8zHxz3TH>!R zX=Dmhp1;9Y=?(hWPv#Nw&0Jzvehxh!QTYXQ(74FB*mSCOsAgLPrs5fGZq%8!{|vo~ z-iT=FP4t#=sj;OMl<%SsxlxscN0 z%-P0FaNc6@5Y7ON$GZg9wtFYTu-52nZeI)f27PN>ZL}DuVrc zyM_Z*#wNF7G`oiyT=$T*@Q25}WHD@{abw4hEf0cHF}BuQHP&97;8@f8h-HRstZB%` zjx7#U!{hc~FrS#P7+VF{7#nP;8VmMY&Dfx?(Zha;TWSIni&$d5h>Ef@-zu=^EcdBR zq|I2y3RCU6D!>R=QP#d%*Ffd zJ+{f$usYmjFyu4?A8u$1;Q@FsSTuMbJ_--Q(Z)_=mvOCe-4<>=j=@9mFfb3VH*PR) zWR3L-S#E%e(yBncFMDYq0F(m*m1*_4-r(x8faMEm^vz`bnkw8pa|q058vuNDGyf_D z&m~A83uzW7&GI%@EoBM^Bad0TY%%xWl;9xXaiJ<}aR$=b7g3 z-Nrrt1Lp5xY*l-x)p#*z7uaXq+l-eO_x+iDis9d_^4(xYc5&6P2B>n8jA^zC=VZN4~cDYQ5ss(D~14elQl zJ@|-QI{3t3Xes9CmZ8HsX=-+HL!cVWj-VUwA2D*&5x4qcj}xHPF=}(q{c&UCkG$H1 zzECZ(*XAT=awnrHXU>A){?xSeBX05FPm7_&aT7NmGk!uREq3x~UMuGgy7~Q+GqaAk zvlq4gjO3r-3uALza;LQ9<+b`zrslWxqgalV=IJoDf?iu@6iz7WWF(zF>ca#zTZh(R z#sydU7dJvYT@;*3#&HuMQf@AowABzDcPw`j_~b8z__y8Q0p16`(`Ug``2qJSM7Mo| z91zDg5Zo9;A$n~*DuOt*C8!1kAR_Gyh(|jQZH4HwyU_y>dA1L|hCW5#fsXVWM40u0 z$g(&*0q5cAxCmF`CWshYk59#y7oFry&aLE&LAt5PydMAl)o?5VpNU z#kPCM`blDKc2bX5!pR9*h8u7YH*&}06=0Y>Xgp**3@0a#Y{RR#VfZ-sS_>zukAmH> z5569UFJSKM$g*^~zrNlFvMtyc?5MFbdo66Gm6{H*qQ#3rfywfLBNh~2=14SkF~+C! zyr4F9)f6)fN~@OoYFlfC>*XBudcYDQApnCQgR_;u?d zABUZzcDv``i(!TEx%fPMKE427h%YjpG@de^Hl8t_HJ*dBC44C}V(}IDN?4cu@HN^v zU_8%OC>jP07JYaLvP>U8%-M8#nQqe_RkoSi>iYugiA}d{P19J(T5VQg-lw+j+S*I4 z4R<%0BRl*F`_!P_A?@n6IgGNano2v~W;%nc->(TdhT8g&Q(*Pdl412?Cf83kL1nMk z_4r1nt=(X}*o=1@FR^tP3=XS?;s$oo(*T|;aE~s56WiQXaKgs8cYaRL>SzzQXFI+X z--d6;ci=nmU3jnYvhj-Xs_~lfy77kbCi70kgdHEuLlizNwi}HDP=Pg)8Y;yO^cF){ zK~@u-R{0t_uaemadQ4?gBQtX2|4PMD|8dY)+Fz*xe54Le{$SS7S@K`0Y0;5cj>m+m z!H#HmV%%{#B1!;i;7lT1yYtnU+2pTUKGj!KALgJoWgo@+7-b(b-f8AWfFA)U+ut;? znIAHQB*rU4J^;Jg)A%`VR11CvKWn^ayx+n$i@8alde3n60yug0Ra>W|z*=UPgx@gE z%lrWif!eTx)o%JF{2rX%=@VE;133vGs@>-24HAmtg7Zy(4eiz2vc)eUE`bE z_GNUAZ?U(jrm>g>dI#CmBab5hH$B^p!`!;?Jf^dhygITv7<|A3LVcLd zQWj^iaE5o4zZT$Zp8-c%2fe_m*hCpsVHrZhgu(giA$oP(LAQ z^gMRlGaYnZlW`9OOgGh3Gh`Qo>!id77F@6qAj8gLK_|6mbu<|TE*UbMj36T^LKI<& z$YwH{j3KcU@f7J4fnx@YPPQ7E!O#HAqb1N{Y_P&hbNRty%UKO}qrb|2Vy#vZw{JU1 zCMhJ9q>*%zLB>(!plC2f(93v=7E{zj(M3k?OJo9>NG6fVoK7-H7Re?#B$wMurjV&5 zpG+guL0;L;8VlLrFl3`CG~=xXGj|A!a$?qI$gFISNj=D}CbT`U>|bZ@kx)zR%ST1L zW&K3Di~8H+X%#YIF-Xx-6b&$d)&fP*6b+)NA4LNr4)VziQb>xpd&x|0Jw-hzk|^qJ zOrc0LGCl6GVHO%OUF$eKF3hFEX9(7Mmvj5Jk_s}5%qDZlT#96hoD{hza#J{|w2#`! z0(O2)kzyTS_nHAmQ?O_Nu*!h9p*ng*7PtXMh7P+)rBzt93hV6(+ohI}F|0`qkYh}= z)Ov(MuA%x4$R%{PsiPb;A<`t@9 zv_EoJnA!QT#CWE4!w=IzHr6yl#Py*y@X<%+y|X$$nQWK`ZZxKQz!~1s7IF$OuQm@3kkg>6(_zn? zNmjBrO6K=E8MJo`8bO|*$%%pwZRY8Zec@M1E)k+R**H^i^#>GLxWU_;D?L> zw2({K_&a^qk*i!rE{7Gm(&Q?eNHaxaC>q69W{AB{fgO&H+^3t#7Hgl99TW|xD8}BW z6di4CyPe#=X0nT-p{-l&dJD_U3D_Cr!;v2cLZH6I0`-Uxs0;pmP{*xeF@X%tZJ_~9 zI1>gVz+c-+a~h15-x1to#QfITg3s;>_;G`1&hM43+Zc1IH2NA3p_JV>U( z_eaR16eUmu!9^6s0SVa842q74q`*G%cq^w&qiC#60VC5Qz_SopM4lu2$pP{_Me!6R zQj|ndN-I6?<2EoBlmHQVKo321rjYHcsfk3_1%vjbHDZ&{$JYN@r)ZA<0I_BpVIj?~U4 zhsY1)N7!&blV8ZMrYOv(Xc|Qm%pK>WXeve3k@WtZ{LxD9Jc=f^qc`sWdh-G=@)9po zG>M|g6lGJC(@O7rOCEvX1$h*rB=6><7>P0|$}%QKx`k|Fw-r@(wSE?5a}Q5hevn03 zkl?0V`in<2oyw(Fmr!tQR}8Yv?&b%D2t5UaQGHV-xa2KYQf$z);zHUVKax-8M(yNB z@uT@Md@LWwkLBa}1U`|6Ju{u60*Yo(R7g<~Ma2}&q^N|VQi{rU@+r);;)d}V{5bv? z_&I?Cj#X|jhs0=#=1}CJXc7C>YZ-6-Y~!%nXL0Vhpcyv;W(k~qbbJYV>kNM#SQv0V zHn`K*EGQ*A0GCqDBf&wPmdS_sLo-+&43>_q!1)9i5@D^488sbSF+EA95*`;Y{Yjm* zWCdVZrC8`wS5wMtYJ~F^=&0k28IR5j)L6%b9an25gq*YELCbr=PX|H619>V!0X2LP z+X%({O!h_5EQ)4Z-;G@N7nN(EsH$ya<%?kn+Bf5I$C}c`4r_0xRuub|c!N#BR?-1mhv3L+a00Oixe=am zBRjAoeib>y?d8{ysr)+rc>V;6mQj??Hq8=~8#PkYKv6J)8}XDsv6UOuQ?#@_H#(IO z;WYkq{tW(1iu@EUr>KUax-d85S6L!tnI%G^+OlfX)oXK~&g2h&iB-Aw@bZVh(&AEq zKjBg>7MD6U#HHr`N92z+sa6TZw}cqevHt>5+pZSK>W)OcjvV4|;BN$?UdP|eWXx(H zDn$lGD@>}wpFrtI8N=Vo-_}aibrh{^Pu07*eVh4v_EREkcc==7cZ z2O%l(3I8dG;bHt2OiG+#ONosXozKKFNQn#nkrL*8p|~IjzQ0XM{K}-nZxo#wk`fLM z7?cBX>)97YXBnUX!8ec*YKYbj$)SLRaDXy(cC*7t(K$yZAso7+8!&Z;n_ooHxgaE3 z9Nn4veICTambRA)j!$DIOO{lyyY1%~Xvze~08=Jh2r|LZoe7xpI#lnl?Hw_UmphIo zQyn85BiXjUEX2z%Hg|msMa}JZyEFN? z+Nzmd&!?4FI0{0%0@8qVZ}2T)K4fP;nfJU+vV%Z$?INdSdu>ef{ zD(j9;2UDJ+Z4^D!fzaRpJml~?D%;x-H&C>_OB=$m)ZuTX^z{_&Xiwwxt-0Bv{Ktamrl4LeoPZCc;%xRbHoJ1Dxl z*>M*|_Z%VXz1Q)8shm6RH49?` zaKM!-7EcwiZNc`bTHfL??^<>K60~yrgu-K0jnJ+gFF9Tg?Nd-9o}=i|@IEcDn8=&l zzHN@T9B(_`alGqz&+$G*k5TkEMKJKED0-TrXIgjc&yJ7To&%@CK4YTW5!#-P&#kTa zgtZmBb+n}Ief;n3_}{H=p6z1CcN+1?4-$C3A~NEUqABj~EaWjnEI|@n5IZKwf+9Et zm7)U_ft%|EiVkiOG(ksOgeZz$r06wcD@AV@(`Fa=7MllZb4vV6mYToKwM;zgaF9_d zeCQTFptF1HBMfA{^%eRF{RI%rFH!U|MXylwDnxs8>rp(M%#MaRR)@}KE8sMe#k#{? zaoL$~eQAWnK*DKX#7na}xEOPMU|0L=!RHJXbFYXZX6x*X#~$kl z0nV|Sg^?7!-ps9sLBWw#6o|86pe7W>!Deii9xEiU(x9Nc*(`vI@GY}AIMKt4VIFXq zxD!&jJuO0-kWSIt6nz*z?-Py@CULzs3*&_e0{Ergq3B(T-rFop=0*rv6uocsrV!;^ zx&T^j4U3r1{%XBT?}k6wY-f0v!2Q>zYG0UOF_YI$Hn*xhm` z1bY~^%K|2__X}${U05ruW9J>!aQs&k<+wdE#!wJP|Emej-gI}9WW}kvSZrXo?mc?; z>J1Tn{Ra#@YEbl`Au&UT9X)8o$PuF!6qdHh{Qx5=^Ea~ikSNH*V7(}TBUp$V-+6dtQGrYm&&`5ZQ*4n~;>)*Cw8JL`T z{+gPgHB>l*4Of7E;V6HK5AL*?G1k`Dr!>@?qhzPR)vI6<)&f|u?*@Xb8lpiY+2CbJ ztsxjV>OS3Y%5Ki+8O2xJ;O;dh7J>^C5|fgT8J{(+cxFlY`~?fW)mEYq@SY{cLz0PT zmSKV=n23&t{|RtoH97+x0IP}kJK_(x=$4(Hk&~L7ksO@t zo|v4Jot~7ImRAnb8!PE3w0Tnj zZ+wubE*p~9)j`Py_*n!0eehcxw6YT3FXrGbKD!+fCU_`YhbdI;!?IRQ{6GpsMP`f( zr9YXy(xhR24xDt=hod%H8H}O0k2d5AHvWXP{Szimn%vpla|l*0ENu02(o$j*(h?G58Hsr3%DHR|*^)4CcpqZYIoftnFPdHz=K)6u22t*g=DE}(u-=O?g z)S*yte>hy!p)onxqxFJc&`g~J4nDZj2d;B7e#+8kP5*xol3c)PdT_p#VaJLig$ArY z;d&ToHE_4c!e(KMuvOS5Y!`M2 z*HDZohG1YqF;B6BVu50DyRb{RR=7^MUbsQHQP@qfL~#_wXHdL};>Rh!n(`aj>P6ma zjqErM{0#OW{+)n=!}d|kZrWS@wuW6E@nPm)cU4EmJ+_;0CU{30A%@gj!$Ktg)gyMB zSa%6`Gqr9n#d5Q755-Qn9NOxj5gxQ0G+6Pt6IaEqVy8^8&@Y6^q@*Tgq$Ol##ipet zq{b%aWv0ibr^M&PX6GiSCMKolX2z$c*quBgJjObClw!46*hjI8QMIp)ESr4xMKJ4( zN_YxPVBu+sH6!;07Ox{bhYkt*g#&O`Xru6;@FJ)kR@|_e?Z(vftt%TWtc7B?!2z5U ziuG`)AKwH25sKjxUKL&gqX5Kc8~oS<*etv*yupG&x_IAtgpNJgw}f{ghE#Z)Ory9P z#A~$(?+Ncy+=Jp7k!u?|O~>6mZr|VFd}|YR6v|p-3eq+KS@sA&7ry02Z56%{z7)O^ zz81crxF^NECtm%;6=r86py7iiBXLu6te&ce!3OR_5etP zezl&PY^)7=A?Fp`e{5ATfa8QxKf&QG1cj{dgVxCs6=b!B2Zh7Yn03>t%P@*$Wqa#Z zuqsI905T2=YxLSU8; zE;B+3qj`Y_mLSTMBMTvTEv~iWR)(9EV^%9|s$>^y<5)3&@lv?lmg-6H!`(lRdt~Tj zHB=G~hC=PPX)msTIS*P>4ur}UwGJSz7(`Qp*WVa3=~-)4K{v|JYLk_t6$AE4B#Ei8 z&BSCeh2nUM6I#SHa8Y8GT?%08Zc{guu&qa%NBKeK0f6fqa3$a^vq!txiDDiIFL9DM zSC@o=R~(#jy3K zgKq-{qFd6E!IjD1;9LftJTFTc2YRa&ex9FG7GNNoUI$68EO^_=SZ1&QhTiODCcA(F za^Kh5z`SgrAUMof7BncuwjW$d3Dg((R`}qyv$^eZ0LpHQj1UbR3h=ftI}3t5#o6K< zajrN|oKNw1iYHN=NpUvCxqxHQ!|CE8(JNMxS7gEjCe(CXvafxXO841Y= zNr}nv8SyD&qT%jcQk+#eAtNjZcnCNlr>nOixTr1}g!Ib~XaLuNtebtgid&dbWSHuX?MmoN!+m8HsVJDXA%t zBrG8PurL)%3GhkW3mV%ozlirECa7EpSF^HGwcpd5+MP_R`FzUgLsN~s(2d3g%lT2Tukvyic7YNXNYHtr->WIvnej6 zcriSq7{q?ff4`8rScIGzo5f4SOU275E~B`d;tD3Dt`x5_h14vHXLll`{zM{mBE`bQ zu~vL5Tk&la&uJA>*NE3LA+=N7Me$sU=e3B}iPuvM++e}KE~IV|?_fe|k9ezin|M3L z3n}(cyoh4&7V%E;E^)7TH^r3{S5XYgh425Gkg^u@F}9eX%Ps-MVeMx+aNvD^^SHxGv*TmPw zH^et7uBEt+;sC|<6dy}*1I5AZ;@jdo;=AH|;`<^*QBd4SF{SuKxQS|S(JA>OPE-fuF0hn+qc$pH@K$tNPR9s3DG?oPHHZ>(7#guzY*2SeHCPFWX z@vK7_)?xaRu+`UbW?yB%og?~6Nl#8^%sR3!;MOc}Ui+Sy97sz{jf+oAO^?rj5yhvc zwaNiWuzFe>o)vo^mzJEEnwXZ9oRS(JpUQelNRLZOP6v*joC?A_F)_7cUx^^n58sz! z^>us~ePtwObnGiNB_p9@U$BB~UP&40aT)Qc38|@x2^nl~VQNX5)fY&au$IzxUeK2* zOB2%K;uF%-Qd84lsz4TNUPo)E%lx&mNm;Rrlk4VY&6yjU zlpfm{-!OMd*6i52*|FXwrE_amR>x*ejcrP|O%v&82@=({NW&#in9rnmV~aFO0(0RU ziZ6{YQKk5h`G1zjJ@0QYQKtj~kZ-!w*T9UCSmt1ggNu2=#x@=YDJ9h9*&g?dzoE-E zomdy~q;zRKh+io~8Yh9uelEr5QGEVpX@WFS0`>O-iZ7!062_(3MQ=}WL4IkOCpRa* ztf<6Onp=>YU6x-|=$W27r?UdNvx_s~Y{f3XE>%aiP?2AnpH+}s0?n{COi?1`f+&$d z2fNV7os(5wm{XAJ$tN4Qa~5S!kpZse(usrH}(N{iU+ycAz;&#u~> zoxPEkNPch|Nubp=H%rSXhKq!4krD_YrN!g^&)t3qfu=!%+yh&rpwuWeNg!voP`s65 z(51F-fn{ASt&rBRh1~%UDBLFp^n~48o%lZnCAIx?0*KHB)>e#k(oKiQ=0nzJ=mF z6yLgC+AM96wo2Qi?Gj|rr1&<9AENkSiXWl)Q3^M`|I5v7>1I%9q+6st(yh{M((Te6 z6oYDfC&hayzK7!bD1IQU&`5hNxdmlFZh=A*o1O?}T}FC(60@39l2TGkxs{$07Y`Yv zGr-(44R0nQLF)h=BPAm>8SL;R@XdlaPJ)6U88ebo;?q)7lG2h}6&mS2tE;CYvXGu8J!W-vZ@8;Ou%a{4Q(y%WlT(x6;}Mvi29i83 z{46a!DT&Q0Eh!}~DLy$VISrfx@k}QGD>x}W&VG^(3)^;9Pg-5wA6~)4jCfESlEElX zNlHzG1xtsn5);$o(o-{-9iIT%C{isGJEE_IBydTz?<+Ye4GeI5TF+X2Js9pQas~hn z1`OypE(0`|#B?^}M1Y4$tyIumSnq%pII#vlP3L{ZOvc-9O}uB$DfX^?K{{yd+ORzd zsTtNJBqYQorh}g$BOx^@4Qzh4OaKyCw=__ylR(D=0EIaHt4zebM)5w-U8YZ29_vqw zowjVH-N9SZ*W9QZ+-~V@=^e*N={@Ov=>zFQ=_Bc5=@aQw=`-nbh{yj$`ikNwD28Ay zU=d(fJxB2YieI4kMT%dh_*IHurx?s32(y7O{izhc%bNT~`d0c*`d&ID{UH4){UrS? z{UZG;{U-e`{ULKQqWFDEBub(wNu_YrnH)>Wsgztr$<35JM#-m?hhx2Al%Gi9W(?d~ zX)A(cAtZvH1RvPnpsbXFciGqO0zm6wjO+~c_O!>n{BP*3)u$R9TM`Psjg$qUI|yxt z0H-SK+9!V2b4Ua8EWnokGuG< zHP`7C#?bAZj>C=%^#kX5=lr#P%xsor-i9SUc7s23F&Tc#gK(vwnd>sP)1k0>oxWjr zG|Klp?iK&SD32(?DNE8?Gq#2u zwNzJnAgao@%2VsDgWIGHaaC0z$tLH@Ga>7boF`9_r^@;AGl z!hu&N`~4?M1ZH@2y!`op_o{5ixr8sW{w?=tkN7nEuorGkV^&@UDvrFI;%`DB`*IzG z>;uir|3D(^zwLvOo8*;TuVxu+$?uwFa3_9$Wa0YqTKNPsTwjI@eE@|+5O6P3W_$k7 z;i^-V93Nx(k2yO8Ts}pH40D_1Q{~g-(<%O$;$JBK6%HTdv*eBD;lpnf|Nb91e2_0> z%LA^JKf;F(@}=?>ktgKxl`<$^93_Y?#-E;s%PsQuu1>?{9r88uPI(t4m=egF!c*da z1^TZ!>9!ffP4XT_&RQ9+;8ao~9)_HDmAm9e;8KsgSH4@mN4{6SPrhG%Kz>kuNPd_S znG%H(CnYK+E=n{?bV}TmL{ZXhr~GJ$ojf5w2^kEA$NGCWgqug zo8F(upD|AHDJ6ZH<q6>I2BcKDVm}yZY4_T zM#*4GhENhi$xup$QF1gT!zlqUj-&*t^ssQM^ildUp{Ky7B~oIFJO<7GN0R@6 z>ED0%Oc@0*RbZXRgkY+~nJ`u2<#&{L6QHrycYtYDO1Xo3T2iuTbZNGRpu%4DS;`ZQvy>MN69gijHhG*B@-!`M9E}IGIuEpL+Gpo zbec+;vP4-*2{2AmDI<9dpO#Warc(k@fBz_DHD**`+~2`wk5Feb*_pC}VRfOzZ3#JATUU?E>Xu3&R(g7%l)EK-mZ?9n@=o`Q5H^rP2&)oN|?NwX%tlLQ0A# zDF!u8*{s0P#8H&Yqy#|zUgEhVL4HBPxfxe12fCeTs2S-FLhGD^yi zNR3l&SMKggjZ^MX?p5wn?x&=Jl3A3@reqE*%72?0r#z+{V6twX^0@MZ@}%;V^0e}d z@~rZlvY(Q9lmJ^T%Jd^-5yp#a1s-mQNr}BJ=o4gc~b+0j5=d*dqvaqZR{3GlB z1G4TD24~Q$7Tf&c3&tP5RK9|*Zzx$p32=7!?g#!b*lnjGSAI}_V*KGpN|rY(KT}e3 zg#6)mCt^E&krTYAfQeez=}y9SdR>Q|9!2b=8cxaSH2H&5G5JINVQPi=gEPuG0PyJS z=Irk5;q2+`=*)Fa1yDKjn5cpjJo8(e`AqSGK02`u)CXcF53wu) zw`gN*rnAg~WvL0vQ$Y1{=0kO8qyw7mI&+;qhRb=*`OXE-g-(xik<;s}bXGZG51dBH z>6Dy7$(fX#Maf1=&ZguXO3tO^yq(U)AzUuA_@uLr;qrVNmlucm+%lBigLVZcXyfdN(+#XXb0r$m4~Zl*V*j6o&j=;bE|WkbGvhg^BU() z=Pu{9&g&?-ni5d1nki|aWHTjODA`KMHcGZrvSX+7h7cfc4gvBu2FPn{K!S=CGE#T{ z1IYgXARlIce1wvnHX!!_Ao*hF6YPuSE@XLh*>^x>FPqrUIS(*Af=+f_v-5dMu0KLN zzT|wB@yeGOuY_ztz$;&4YW zL*r-8&z)a5zjS`({Mz}A^IPY4PVlwdLdhOVZl&ZlN^Ym*4odE%bTvaAryiq@S0||84%tV^$&-{kMak2Y zJVVK|lsrcX?5_j6)X5ei)f_cf&13FnHJ@Sfc^i`lDS4HW*FqlWkN^L};@O5Oyohq^{xYkEE2 zqU57aydHo3dZ)E2C$d!m_2%ucx~*adxPutDv&JL&>{r4gU1ZNpetvG zdZBueda-&5CGS!4J|!Pe@*%9te~q&v9R6j~W0ShsVk#{rQ~BgDVL2q#52Gk)MvT%?2D2gnOzFsK)%T~sb5rI zW=!HGN`7uuU!mleBV-b9sBZ(R)Hj)YgPa>6-`-)C>2I_X%hcUs_x6$csfEQ)Of3EZ z%D)P`66ES{9e9gf=WF#hCgHwOzg53ezgG{bKd3*dKdC>fzo@@b9#I}so=_e#H#;aV zP+p|GL?Kf=uTb8(Oa0wKqzk(UH^SxMhPgx+yjMe*IVRJ_2;A57v(k3L#*!r;nP9@aSd?|1qi!hDDQ4|4WoS2 zkwMrs(lrLa=o$qO<{<~f{1#U%sAxQ-r0syksNQ8UlXFA9m9y-QQ(SPI24MlNG=^rr zH*i*0EC@*JM{F<@-{;ALaXlaCGIka+z@C2T*=sC&KaHJrZyg zu$7%b`J=*8(pBs#h2gi6lCCmWIpqgYKKh8Hq-&0AVOLVp<#8=?d0nt7gDF3R@<1F& zsPNw-C2bP=T}{ATT+3X`T{W&+SDh=Mj&mLBYH$Tzjg&u{^1~@Vg7PCNKZ^3;Pkn~+ zV<;a>`8djt-Q`*lVlKzYvs`Q0DY)wd5O{pN&0G>8^o#QBQ$m2bjQ>aG{ry&*>nsNB zjg(KYS;o1CQ;J=exGrPN;!?^dHM=gSeDV=8i>qBNY_BhJH3O%he9E6|QLY`XYdckh zUDvyAF!y>I<&QC@nOdytCN_!0idtDE8wLd%8 zV%zJEt|wj3SR4)#cEMhra0Ih{!3DRUce)O`UUa?WdfD}g>s8lluGd{}xZb4vB+5^w zJTSg2%4btPhw{0U&!hYl%1_r#9R|qBh#ftF4V?NStpYaUn(EC}MfF`O1Hg z`1d1Gn*d1E;40685E8XaK;mKZYHL%qX$*_`l=n1i(<#5`2(ehCl`vc_(jdPsuyrrs ziU&^z;0iwVrd?uf8&|Wnc@`Gunpmtlk~&_khGDT%tJ119pSD)RP%yM6hQ)x5#Re8zZfX}R|AFFv0E+7w z6i=djy$!`v0E*hF>a*;N^2dTbZG8uWWRwk%v$b;>7|)@6uvt5g@{LCb#*4H|8DqSd zF-Ay~JikS|3>YK70`S-Yj8W^h+1+i@EC-KfI(Yb1fJf~zhGBk1hiZ16YqVY5sAg>^ z<&SIDuBH6ih%0m2ZtHFazsBP(`D=GG@*ri}()ORYX=XzV!YvR;r{-(4b5LrxXpq)$ zhqgz%Rl7~QUAsfOQ@cysOZjz_Kc2$pHSq@JDSRLk<=0dGq#fEl+P&I++Wp!C+Jo9d z+QXDTnerPbe+uPKrTl4>Kb^uyGVy0I1HQKv0}Y>64xbv?CavAPp!wNoX6A3W6J70V zgb#^ty>A7%ZR_oi6}LWXssJ({n7PRo1gqc^*5Eo$tQS&MLtU$-Se6zHCD*WB0E z!K%Haz09?}pRK*7y}^k2I_1x3MpqbTvIWq?AJ@(nfF&5~&r+YWPsJ?@EcewF`fJQ= zT{FB5%Y6+tEZ)=LQ-IoB{nkFxKIKNWXdlBFD}OdcBU`l3w9hGjF6AGKM9eoK#GK=C zXZ|(Bm>0a*w>F<)XIui9_g@07oY z@)uM75z0Tx<~_#Db!UH$Wt$|3fu^8!vB`R7UZv{1c$X59uQ1FEMhT*A?_D`yf%>sjJ#Ix;7^q?@#&5 zC=aF$aGr-_G9N0~F(UPpYeKZuqx7C&j_BR=?s^Z(gXwbx<*(eV_tJaoeJFnw<*%mv zCSzKKHTDW?e0D;>q)w)1XW|5Gbv=AQV(9u6?3Bs|_%Ly6LeXqO;2UTT+dKMDeKdTw zwmwWhS|6^D&`0WEa<@=^Gv&8XekQ+3 zeVF?xqSU}Pr6QqWwKAm5d%G2u(!EV1)@qI8_T1p^ryrw_*C*%`^-20`Rgfv1Lbd|{BFwM zM0qedZ=w7i%HK-)+bDlKUosrY&2kp6U7KH6T9#Q* z;3>{53%9kfW3kfd`Nf`4S-UkaD>gKuwbHVZ)^fQyp5l_Cobv2&|JAHUOhk>c%#ta& zWl%IHw<13~*OQkyBfkJryjTNX!YT}psE}VgwWu(+s1zy`7ZlBzky}{iu^O=}En}62 zp#p#1a@hN8*XGPAfX_|NE}8*z1kPTNUpB{6kz2wt&e&CIS(QN@s+5 zD>nYzy!^u4QqK%n%YtyTt2>m-FU%{lGVkQ&x0YMmp`6vujLc$B+j1wca)a9T8zNq) zUk{s@J;)PT;Xa)eZd>YPR%$4!U@7whb>>{MLrV&6Ph;tP+AZy=tVVQ1jZg^yUtSU5 z3D#n^J&H3}>7zO;onJV`Q#z-#EO&-ob|Wi05>lp;g?b<2X z*`c;QQ{h^6Zi!v(TvlyRdC=Do3u(vULpQ6}uFWpUgyyqn&-MVWN-|5rXuW_H?jKor zMp*%18nPkHXtTjCW(5aC7A!8xDfMKP=L0-)^27aK#!B|?q-5J|eI+Y2xRXNGzVMWm zWVbE8sgq%r&dSg0K#k3;;JCeuSmfnsLyXJF0jL$TYZz}~E1uiwBjP#?b7 zVG~j7yY-tQG%kIQerx1|JM{ZNENVaKcWH<8yY+i?V8@^Z?K9P($0`2=<)7T9->*NQ zKd3*XKdgf$^c3ayQ~pKDzeM?$DgO!+jngCM5>imCXQp~y<_)VYrVby?J~$~Fj@mCSUY!jJo%m@wJafnL;K0d?RvUzbyx`rnHhs3m)V+f2N@4h?wgF< z(#)Eg!wlq0{i{fHe5-#K`QQir$H)i2=>M;?^Nvd^S^qy8O|eAm*cDA;M^x-sC<;QF z9kF2-6*U$lD1u5PD59uXL6q1@Y($fdrfkY4o3=5VzUgh#)+C#r?B;h&cK7bxdtdka zdj0<5I5X$WnKR>ao_Ws9=lvTn8`b&5QTwS+2k@7#1H2+Y@@&b^0F~QG3c!d&W`wg`>6zBt?=+ zzDPU(4g{cW_4W9xAo8X>N=atHmi+jfVr*VcRt~_P0u;voUIJeno3o_pP+SbO2DY3e9>rMub6TluVgRJn6LWZ@n3%c4JP=X{pkz_m{>c&E?`$M z4D7~Hd%;nA$x-{2qxNbC*d6Qv_5>q1YOgtJK-A$aNA2Cx*j|#?|93paAIKxfe`Nge z;sxH+|B6wU;o~;f2(@amKuKPiJYTmRWZQDA`J^&dCCLLD3rCNF(7QU`I=RoLNaAnP@%AnPwoEO7Gj%8k0q z-v5(@rSbpE!aBEdRn(S(f)cjMIM_r}OW(lUVx7G!z$b$G2ZiDA;e^f6G4Y9CK~3ks z0+&>!uxO9P@H#Q^9gqy(@osih?u#cWkJguRRuS(=uXk&&K}e%{b%wXuoWe}fG{ z*lK;I069t@;J<_x&`K@<_$?r8zr^1HQkHN+Kuwu|xyo9q;$QGMAalu}*#@uu`b2ek zV1PcgoNWvYVAn5RSR@1BmgYy}m#&He0OaRaJ2*Nyy8zzK*P8xyt-r>q=|6M+)+8f6 zfN-^(y>h87Fb^|10J37QVr#H9<$w|^TMK|58M5^OQ}Fc?OE>=4$$-ZR;Jc!hZX`5= zvNUu0b8h&zA^>CQYmsPtbTQyF{*|?0v^pTL4+$`p43_E+Mw|7Apx8QWa6bmi)?I=Y z0X`vc>YrE613Z_4zmXk)2LF}21lRjla10CrFJB-6gs1;TllpgZ(S}VxH*8E@@``{n zA|e6Y(H{t(B|r^B9uc((=-n^JfSLQ+kfn$Ir76G}v2lQ@{^!%}CvEyKsX%FR!XKld zpS%h9Gb#BCXX>vfvLw(5yvF)dfYSl~)IZZfD?z#-)4xHLh@i~?*sB0k3aS8cK@Ffz zP&Y^d>IIE}CO~^YhXK^mcc2rXlc3W8a_J`M0ca8QNoARemWqywu8O{jp^B>tLS>^$ zo(fH+Sfx~@LWQkTtx~J94L~t9s5GiHsfYjo(@B*FDo<3NsVu6zP}QL2fmRMmXdGF7H3U$s$HtU9c^Q}v+gVbzPO*HrJQ-dBCB z`gxh^*CG8EOo{S`(fH$M8NlOv{ipdz1p{iFgMjTz2WNnB;4E#!*)Tj37r{ zouj^dQ0 zGAXJcox-pNd|5ZRpNGfS_Xi7bAVIo-UHVh$1zZiT1!Aa6X?%bj=0v@1irvgwa0R_C%OL}*J z(%q5*UIRy62hh6%>im~ho66@eaZ|Po7^Nm4D99NA&iR3YfDsx4N&qEkRBP}w+B75@ z!@ve!rN+$CE?i)*?YA07G@fXxYU*fOYFYzZ0PQr_YT9c$YC3EBYa%s+G($8onxUFF z&2UX3u#2ll^Qh)?Ej=w)Ej+L$xKOJ`i>p+aAU(jCzq(>zS1(_$Os`6hqgSKH z)vMFnt|!*((;Lzo(Hqm-skd8iR_~zRO}%^i%k;te03%Z0NZ(4|M&DK6P2XMLQ$Iu> zt&i0Y)2Hdv^{e!2^#%H3{X_c4^k3+IFj!>(Hn1>QYY96oF{m-% z8q^sy8Hfy84a5c=23-b|21gBU7`!)JZn(m5rJ;tQz9GcW!!XzoZHP6*8HO7Y4YLdj z4F!fm!)BuZBdih4sMJVmyv!JEY-4O|yvBH)v4gRbv5PUx7;cO*#u$eh~Uz)x$ePjC0^n>Xq)8EYu&4SFb%ot|d%(k1=n>Cs>nTgDH zm`$2ZnN6GRHv87>sM&XB-J7adu>?gD9W;e~=m@hLoH@7smHiw$qnXfgsH+M95 zHg`35Gj})lG+%GN(R{OcqSW5Km(v}m#DvFNqvvyfXTET%1XTg+PQwb*BI+~TywS&MTP7cDMZ zT($Vg;-{@Mm7)| zGaCyVD;s|soXuvNNSkPzSR0Z}s!h60rcJgD)h5q|YqP^IWr2)1Z0KB4{zR6iSD(p?qiqR0QpY?u06#^U!0^8_>JZkGA@@ z5L+8tlx>)8wr!~`%a(0hZCh)*%~ojJY};bnX4`JtX**$i#P+)FJ3D2LI~;ZR+2OOJnPZ4!tYd{E*KwO8&#~E2iSQJ78axA@4bO$s;6?BfxB%V+Z-I;99q?|r1b!BN z8GaZ30R9O66ut<534i6T;;!bt+dTjQ{@+kCRdayh=9-|)99tS**c>LgT z-Q&K;3y)tt-gvzCRP|ixsqN|KS>h@19QK^_Jnnhg^BzJSu@a$)&_;j}`UoS03BnwK zK=>g15rK$c1R4>F*ocTgL?dDm>4+>u4k8!9LewEz5$%XBL=WN#;vM1x;x{jlm#J5j zSC$vgtKO^8tI4ayOYGI*)$Jwqn)Uj|Yu@Xi*SB6ry}tAM!Rw0GPhK~@?s(nzdg%4a z>#f&&uaDl^-lpCb-qzkwZx}Ew_w@Gi#(T$jlf22^iQa|YmELUc8gH)mE$?UEi{3B2 zU;99PqJ7GI7(Nv~RX)`|TpylKy-%ahkk6>kPM-;%DWBawvpxrXPWYViIqS3FbHV45 z&pn@qK97B#`n>n~}+|Sbw???38;J3*y!Y|q{&X4Su=$GP` z>X+`v@ss%-@q6H};qT@jLZPiCP;H60_lVFM+PE;k!U0qxd9oAj7KISQ;=!M z4CEGMDUyz4AO*-Sqy#BL_9MrUQ%EIp26+N`5qSl94S5~;9Qj)yC~#SzdSGf`L10l} zNgzFNC~$A!)xhh4w*v15J_vji_%v`a@MVx@(CQ%FAcG*IAd?`oAiE%^AlD#xkY|ur z5IQI{2p1F{loXU3L<=em+7eV1R2@_sv@NJJXfS9bND;IvSUp%T*dW+A*fe-ua6oWS zFe(@uj0+|NZwTHT92FcJ93NZ|yd}6KxGcClm>J9p<^sVy7uAQFK%GPVh`NNjg8B({6Lkl5AN4a@ z1+9i&f!084p>@!@Xj8N;dM(-k?Tm(@;pjkg2pWyXqA6$^x(Ho@E<@L#x1o7xKDr&< zh3-L1(Ua)?=tJlu=wlc-CJ+;hL1RKO378~I7KVz+#}r`7F)bJ|rW5lGW*&18a~N|B za{_Y;a~89Jd4l-`^8)h<^9J)C^AW3t)y9Ic`dA~Z3Dyj2k9ESjV%@MvY%ms$#R8;- zXlyK&gw4d}U~{qgSTY>okkkE|Ky3n!EbD^)p48lCZHiePG62g+hC}GsF;;^zX zMp#8yRTw9%F|0YPHLN|XE37AMZ`iT0lVNAV&V^kJyBu~c?0VSKu-9R4aca0#I4ztG z&H!hGGr^hR9C02v0&Wv78@CnLf)nF9aXmOGt`8^2DR6snbGQSzZ*fO)$8jfdr*T(t z*KxOScX0P`FL1ALZ*cGM+IUmE1>PDD#l!IKcm&=XkHLrG@puA04o}7>;*;@P@ZESR zUWV_-@4!#uzroMr58@BwkKxba7w{MGm+)8dKjH7=7x5p$^}?;f?ZchIUBltwp5e&w zpzx4zbT~FVEIcE;I(#5}fB4DpGvVjLe+<7EemVSU`1|lr;hzbr1a-m+f*HY%;6QLD zzzA?cAOTCj5eS40glIw>A)b&(NG9YHwh{ycF`<{BAWRcx2zv>0gu{emgyV#hgwupe zgjXic;wt|7V;eTf0YAR>y0ClZMph?|L##6)5yv6#4( zSV?3PYlwWJfG8x2h^@py;yCdL@ig&5L~}%Igd}1tVk%;9#IcAg5kE!TjJOkVKjPN*kJZ3WHo0#)4S7UyST@`B-YZhx6YZJRR)*;q8)-~2Y78x5Hi;f+O-4lB__E_wR z*i*4*V;5qt$KHy)6MH}Q=h!E)&*F^Y+~Y#y^5VF0qPWhup19t){t+$A1_9WBlFt z2l0>MpT;l7zl?t!|Bk$ZtU=Z$gUR}2BeDtEjBG)Mk^RUNGLu|K?jtM7^W@{?ljJkx zbL1b%m&jMh56CabpU9sRR1?Sv=?QrWMG33~PC{+M^@PU>&k~*|;uB*MNr?%GyA!`n zJeqhs@qXeji60X`CH|K9Ica5*M^ZpiP!cK$le94@At@_~nv|bZm{gopmc&V_O{z=c zCkc|8l0-@Sk}f4ZN!CqvO!iI=Ob$uLB!?w$NZyki08-GFh2C zlYBV&c=E~QGs)+ZFD73}zLtDDc`-#Z1(ITuVwbWm#WBSt#Vf@(B_Jgz1(kwH2~XLa zl8};}LQm;SIi2z{Hcvr}_ZX{kl2C8_k( zt*I5M+fy4-g{coyU!}fH{g4)!mXem1mYFu6_I=vvv>(zP(!J7s(*x4m()-f~(uXrt zGBh%bGawlz8D<%F8JjXlKrA&Yg9^Z)0TyaTX$Cu^K0}<*m!Zhmo3TIRP{xsr6B(y6 z&Ssp;xRG%y<8H=-OibqH%*f1`Oj71Z=1k^%=E2Ovna46uXa10RKJ#Mc<;?e4rdi0W z&@6lwF>6CsToxrOJu53KCu>VqaaL(oLsn;&EK8m>m^G3$ku{aIJ8MtYH(A%Re$Teb z_R0>*MrC8O!?HJJZ_bX)PRUNo&dkoq&da7{GqWqR+1WMOH?p5(zsi1_{UQ6e98k`x z9L=27Il4IpIYv3|IZ-*;Ih>rvoc5fq97&EWN1mg|8PA!_QRd9%?9KTh=OI;vYCyH2 zLaDaYHB@)12i246MMYC1sL|9oDw&!@rBKtUS=2HrgIYnYqE=J6R34R2ZJS%nLfYwB7p^0gov>w_4+PAc$wBxjsv@^7Gv>$1gXjf_1X}4&1 zX%A?RXisU2v=_AB3qS?S3YHfn7vvSt3W^F!3hopv7Q85URq(bjs*qBcR+w3sQ#fDv zec`FXvxN&q0Y&&CLeYkz%|-i*P8OXm`l0Cj7VRyjTg=ExHa}k8VJ>ps%Id(;ex~bXU3?9Z3(Sqv@e^Je@$#rkB#U(ktm~I+tEY z=hGYL-E=8^h_0mXqwl95q9383q@SUmqyI?1NWWjcyxgQ5TJBWtS`IJwC=V{jmgC9^ z<(tYQ%VWyp%1g>Q<@|C%c~f~yxwyQyyuW;)e7Jn9d}sMw`2&U?!<&I&;2A{5Mn)7P zhCyPG8B_+H(ZCQgM2t2@2cw%IW%Mz2FoqbTj022s8Alk$7{?hW8D|*h80Q%m8J8JX z8E>~5ZS~ulu$8@aaO?M5A2C-l*Dzg~aHc2Iiy6ekF$v5K%+1UwW(+fq8PCjOQknV8 zLS`|ulqq8NGIubCn4`>b<`i=`bC!9Gd4jpXJkPwqyup0Je9rup`G)zC`Fn**#j*;$ z3abjw3hxTP3S>oa1-c@%0$)L_*jN!!kySyh$g7}L6jl^hlvR{hY^|uQsH)&pNGs+m zZdWd=TvxfivZ%7Da=h|X<%P=2mDeh-S3am*tbAGdy7FD+$I9O-KeM!0IxIbwAq&DX zWqGqOEIfS2ws_OQ;f7FZWpms!_X zH(0k>_gD{Ek6F)H&#P8cX;f)dt*!!B=~o$5L8?rv%&V-bpjCENAyp|=wN-;v-&Z{c zK8e8Do7e^H4t5`V2YZM;!k%L9WAA4lVjp3D$3DS6$v(}#%D&FN#lFja!2X$|&e7u- zb4)oF94KcEXC23Zdl2I8Hn#k(11!ahRNH4wu8@)N@3fHckhpnU zIHx(cIFC3lIj=eII3KE4RBKi1RO?k6SDRK_R9jX1SL3QTS4UOHR>xN-R%ce{ROeL} zRBx#+sjjKsS$(DY_ZrO_>l)jdwKWbk&NZ+a_ZmcvPmO;~U`=FAOif%(d`&`4a!qPY zdQE0cPEBr2eht57q~>(ZVy%9yZ*5|2MQwNOp4vmTM{2*TJyE+*d#(0H?d{rowGV3_ z)jp|xR{Np$H!g^~jJuq>lDmfM&h_T{agkgU7sCzX;<<5LGB=x>&n@H@bIZ9~xs}{1 zZX>swJHegi&T#i~=eP&B-*S&~k8@9Q&v5T@A8>!>KIT5t;}a6AHU z18*}giWkd^=Oyw|cxk*$9+Su7v3b?JT3#KG&uic{@|t-qyf)qx?;P*-cH`~-+bP?* z+jnd~y#3bpN86unU)=s;`v?9q{&M~*z7~HqAI#U|8}M!TcKmgGN4^Um#wYSg{3Jew zpU%(W=kW{pMSM2DhTp_*<9G18`7*woKgb{E&+?D(uke53-{jxn-{=3#f5QKT|APOD z|F&MMUZ-BSUccV39#U^sZ&7bm53RSWUt5o^Pp#ipKU{yR{$+zv1EL|Sp{QYNLuCWI zp}L{Ip|zpCp{qgCAZzGv*wHZAplq0J_@-gL;XuPr4UZarX?W4_s^NXZr-t7JAc2lR zPhcgm6RZL%SLgC^r9*Cu$AM-!sSyUDK!*%aJ_Zo)Rhxr@9-ej=m@CBlfpM0io0h%8DM6^Y74Oc6`O5%EOzqDE1(s72H-+AX>$x+%IN zx-WVtdL?=<`Xu_?qSmsaMWaQl#l8j664(;bf@ukB32%vPiD@CVB(x;AP+AIGx>}C4 zJZX8=s?xf=bycfYt8S})t5GYYbzQ4xE54Q3y0JB)HM%vfmE4-tN@-1R&1$V^t!m}8 z*0ge4d9C%Wf>vRxsI|3K+&bO5(E6qg(iYH`+P1B2pzTQ8?Y75l&)S~1y=?m^Ruiuf zuM%sCSBt@7J+YM-DqbVD7dwev#Npytae_EmoGQ)|Q^on>0x?U>77N58ahte9ED_7Z za`AvzDLy2=EWRebA-*lXCw?e?EPf__F8)>gM*O}V+^*kl*lyfz(r(^v)o#;n*S@yh zq20ONwVlvTZEtL!X#cVOLx*vPe@A==qocoLtYcTlWXE*JT*uLl;~ghE&UBpXINx!h z<4(u@j-NZ8bo|osyi>c=w9~2++PS9FvD2j!)(P(n?nHMIJ2!NaJ5xH-Ix{io6yQm*Uj%9>OR)}xJRqUttX~u zYfop-o}LRmH+pXO-0OMJv)J>l=R?n@p5G-PiK;|Lq9-wwKqO`o3yGg3OhS}wltf5k zB_v6LBuSDl*(%{kY9)0NzNA^wDruK=NqQs$l3~f1WT)gC$pOi?lB1IEC8s4nNERf& zNIpu{q${KvQf(<%Y9ck4T1lbOHPUrbHz`tzl47Me>3Zo#X@oRNnkFrja-}?Jy|hu< zENzvxOS_~JsZ1)D?vd`3&PxwS4@r+mzmtA1JtaLWJtsXcecr3n>(LwC%joUxJ=}Xo zrXsVHt&=&*Tx2krk1Rxnk%h|eGJ&h+Vw(_-d2f3>pF87ps$+7YXd8|BMo+wY1XUMbV zR5?SwP2Me+%KPLy9-JCr*v?|3_4G~h81Fc36=8o&&!ABY(s4I~UC52OyH4`dD$50nis1}X-s z1~>!Kfw6&!f$4#nfqet}2M!G!9#|N-FmPw!;lSg8X9F(>UJtw*_%OI?&}h(P(0tHp z5ISf#2p{wq^cwUXY#i(!R1A&}P7UrJ+%vduaR1<;!6Sng1}_g@8@w@id+^@i!@r_l?~Mn35FVnnua=ux`uj&=7x?AEexF>`f=#u(A}X2Lyv}@ z4*fFpd{}kZde~*ybr?1b9}XNw4~Guphc^sw9*!E08BQC{7|tHf9UdQ^8$LRGeE8(> znc;K8SBI|;-x|I<{9yR!5#y22k+PBAk$odaM!p;Qe&p21^^u1ok4K)3JRkXWI@Z;aj=y)$}m^ud_cnElwsvC^@&v2Vr>k9`>XO#xCYQ!H1kQfMi36nY9n z1w>({uvFM6>=f%1jtUoro5DlkrSMe*D1sCy1y+GmgexKy(TV~^xniqAtmswrDdrW& z6vq{dig$_+JFRy*>~z{0y)$WN%1++S=AA7&ckkT4^We^VJD=@b+@-(Ee3#`e|6Q0} zp}W#{g_aWT6;U@{IDK^22W3-D`LI?~dG^x4U|G>+Zqb4|o5v`}GWHMtjC+ z#$?8P#%cyS<22(s1E2An@t*OWiI~Zs;mz!uIW%*8=KGoRGgoJ>&)k~1J9B^L<;?q; zPcxrqRcBYtYR&4*>dhL=B4=}F+h=97{j=ksX<`(9z&fT4R zFt<4OX71y>#=QQ#(L7|{bbj5usLgtT^GT`2SUm-K!|Nj7~4I3>0 literal 42554 zcmeEv2Urx>+VGq+vokw08(pe^h*XiXu!XMlr7R*K#jY#Ds;kHn7VO43rkY+&PXtS1 zN$=GpCNaHeVobY9Ok%pGH$R+sirgJKEgdF0=VH z1~Hgn8II90JR>mD^!R12POsb3J|n)lvt^MRzBR^oc{--Yd*&~8wRCv{8Fbbrr*ULW z!z9;AS8K7a(5sA|5t|yin!8*Ix-EdciIEutGl~gg!kH8%l`%1COgdv`ER2=0F%G7R znZ#5xlbIT(mZ@W=F!f9W)55eeE@lCp8V17gxv4}%D#3KR4p?H*l#-T(s9wnhY>Y{F?c2j}8ET!f2p z2`LegV(j;u<5Ls&0urbiEKVw%$Bg_Yy~@st!1aPPIdvim~Ce}*=6iy@tJ(y^g(}y@9=v-NbHTce1W{ zI(vY9gMFL*ko}1Lm_5vX%YMgx&;G#v$o|Cs%>Kgu${u5na||bNBe*~=l#Ae^xUpOu zm&7G=>0BaNjU zuiK>CtlOsBuG^)%O?Q{>UfqMbM|IEWp4Gjm+o#*Fdt3L8?p@sny3cf9>5k}r)g9CQ zru$v@hweBp@Oob4B|efL!$M{3HCM{1f~h{z?7?{zd*J{$>6Z{#E`f{u};V{zv{N{uuw8zz9gt z3A`W)vM^FG3c*5%5H3UrQNmauPKX!A3rRw;P$HBHcA-ot7b=8G!68%$lZ0AfsxVua zBe;YG!a`xOute|*UBZRJMZ(3xCBmh`Wy0mc6~ad0O5rNuI$^W0UDzSqDcmJIB0MTQ zAv`BMFT5eVC%iBGDjXAj6Mh%|5RU5^J|dTK#GIGxTTbFVJ78zesQ`n&XZ>+jLutG`cwzy1OJgZhW`59=S(@6|t}e^&pT{uTYJ`Zx7&>EG6WtUs*( zT>q{9JND}cZzq3cZ-jTyTv`?^WqEQLGgX@ z1M!&noA|rbC~ zNR?8f)Fe%nrb*MK8Pcgzr{tBoq;6@Mv|L&tt&~E|kmUa=AvXmFwgw@+^6_JWpOEyX9_qt$doi zQNB{XO1@gYM!r_QPQG5gLB3JmByW*-%Ddz{<-6pElW^`KbK0{Ehsr{GI&0{Db_X{F8w-a0Z=$HwXs3K{QAPqangD+7M|N zV~8@0HzXNS4HFIdh5|#Op~z5dC^J+V9EQn;2E#PNOv6IM5<{Dz!*Hsh+px^Aswuv` zyRB_Ma|$zp8Oa!#ASQHLO+(re*Glh9`0L}%Q{!9On!Vm$CV&Z4u)_8-!Ayw45j0at za2n$?OUkp&nOUVKTXD9Cv%I{sd8x~3EEw2dWApq{PkUFVr>)J^>CDL}$;>V* z$u?zKb23dCW^1-7*IrU$vgVX$+p~+aa;;?+r*T|gi%`3yxpP{xcdFa#p5Nx0=I&b5 z;BH^o=7Kj)A}k)8X&cX$Zv zGdWBylgCV8CNlZT2xX*VR05PhB}fTYLX^<$u)IY~F;l{nGIpj6zE!{qhbbGBbCt`K z%ax7r?P?{}X*9xU8Wwq$*EBD4FKmXnYLEK97I(T}#sN^OsmtBw?sB`l)7-6Hi?m{n zc5esBeV)$#VtqB$VzZ~ZUCZsR`P~Z_!j>6>CcBn;I#*V7Hg_!Qf9fAYUk`JjyRufd zuU*kU{YGXMle~>-Vx}_FnCZ+6W~LIZL@1+`NM(!?wT+q0%wgs-PG%m{tc+DmN}f`q z)GAGMn$go+Jgu%YXm^skE3I#gX?+{$G>-n0B8>n7PGjVsyj5ob3)J9hgN1Ol_B9Ps za7Cx5yF+^cGPBod9P=lQIK19&m)Aed#f*nZ-oh+l+L)zGyArL$D6vZ17N&zamFZ+U zlz3&Fk_f+HTEXS+wk}tv3Y#S>C&Ls$?uOA+H+#GKMnWGujiF8L3x+KmrnTW}ZE_55 z$3LD`%xWfd((@?9b z1sco`8c%}=Ld%yPO()%7#nU9P3-OaX?0B6bzGw79%pS1Ta5 zYp%D2l9xJ<7eL+9KF90ZRtMDa-exrNBZ9&r$Ht9MHD_c`C@ihmC+Njf8atZ17R>;% zIpTXebF(o zCtLCPTMyj~72^|o6UGfQl<9Syp4M*A4vlzUQgX`4w))(L zy$V{jkJ=1^$uP|}QNrroSLvua$rfS8XWv6%XX~4%?VR2_xwf~aCXVs_>#ds-S9GfO zC9de4bJR~g4KRSls4Y#hVd^j=0Ge3uS_pXO>ZD`o2jw*Ha`%ERQ27Hu6i8$8L7ATm z>iZ%fUdxyb%ypok?*O&@2~fh{V%`A-{3GTk<~QaKP`N`v(N04)l!>y@L{O&ZqJ^jp zc|dJG50vIh(N<87A3;x`r_e!AfxpHq4#cBzG>*lYpxRCbMb-r>>{6`Y^YF!ZGbpPM zscPyQ_+5Mm|G;vfhK91?Y$Th&j%O`w9;lzipnA^GrjC(sJ*N5o`u?yhG}3nob16s^ zWh*+`G?}2byQ|IJ?xNGzOdXUK`N-&I<}&7TX8lQ*cN*tA8@nn>r&_Y?QycsH0Dfi7 z>i;^R%f^)*E^oH4JLl8}r_It|P9+r$z|`9pI$D7yx)->C0c+FP$Xp4mxTaxpcNZOS zKiS^QY@~$SPn54_Hc@_i4RbAQ+V#v0%#BK#lCGE)i(*x5+dz&>U^c_gR%ROrZy8D^ z{A4M)lrd2OsG((%YpF})E-;L;cG_91CO$PRad&jMS}AY!4lR*5kn}gG6uEZ60q8#`StDq;ErzcQNDDilHJ4Ht>jR?L|dHN+y)H0*h^dVuh#v{157foNy?T7G?{G$AucDg zzsX0KC+Vs_%IszyV;*O2WcDZ%l!;2dQlQwB!fnh`%+t(X5ZImt`M5|aR;oc%n@ojc zjU~dywk#?2ETz1T@&t7#PU9#Tl`4xgc2ZseJFY?i2pyyBB^7;qlwv8o(?kNwVX5p_ z+upXazPr60HmRh|)3St0Dg$0QpbB)>1+RV8jo3fw{melstGvd%&KzLgP)d|i#jccX zVcrDP9?!g^lq(Jxeia>jh<}6tq|Lx9TUDOwG{(X6((cYq7*=(2cYDjC25n;Xt_9F- zdy6L0SfEs8^D>vC9T;aCL2FK4m^<);HBOz?a$C3+89F=DOzRWM`PQ zCck2iY*Hp^b-!l5ncG*lxU;i)Hy}Px(3-p$eZLVdmw$}NkHuwBa&<>_7^jEDwRfDQdLe>WZdRYhkCmYvmNbeF9BEje{C#LQ|D?a%=Qds3NB#5e zMl0#Om!aiog|b3fsjS+JR-x5sjj~!;AeJ$X6i6omkmvysB}Li>ias4eq7gZPeZp4V%*D zSxN0^(V!7i&`tdFQ71;bz0n{DMR$3kbJ9R=ncoecp-tfW3tiEk1<~H_jt);JSR#gL z*yp|T(nfOA%(M|pW?E)iZf@EXx3+rMqZ>9UXKRb|Ioi}q8J!Wu6?GJ;valawwxDfH zau3?7oY#YHQqHHGC8iqyvaXYI?M_!~DJatm!PHZ>0^|)Ur#S4s{n^PJ*@kwZThOiO zHgr3>L%Be?P`OCCSh+;GRGH*7X89Nkl{yxHl~LVgS0}aG^qHIdt)~@tb#=O74JeH= z|DB2r?p1)O6MR*GRC>BQTU|l<4pc)pj9!+ zy=V`5Qn^yOs+UUlz!6osGo-J2wX1oFtJNUTHMXp5bIlz1GTQeA+IM$=MHnngU3H!ArNF7G zn^$_e!AuyU6`?(=ul+)JT!&W9|5|mPw+^;g0gKioSy!i8m+leBPrez|QO`Rl+wCXV zxd8B^{S?vPy03EwwMf;0ZEEi1<`wRx0P$2n=<;hU=o|DSh>hr5^d0&h{h(}9Zc=Vm zwr@c{p`TF{`c>JX+zwLF!%FJ(YS)4;Z8%hl?;Bm;D$msBPuFlpy?fyzwXkpZF~U4_ zgE4699M&m2m0ij$%B@=f!1iJhAT$H^^fn)yPK7O^Y9g4+UCUM2s&8JdX4wg%?Qpd_+QGx&rMgO>57a40 zG!L0e&|D zrFm9)jvz^SmY`Bfa|YpEfCkqv0&w7{5Dd7kJ*xzi04@U$L2aF*J)?uR*ivTEJ(>ho zS=A&y2DZB!gcXp8>p)bicby6fd>0S}%6P$0>Ic?&xD`Yp+>Gbr7Ug;61?9!f*abTI zQ_4%AjTg}+3ZzR>?Dci+(_)Q&9E6uD-hqr`UkMg+cZ>gtwoFTrdoymw9^9e4tbC>X zuB<Ufmb0IyyL+A|r33%dir zI^WaW*&02*q}l6AQUxu1BZiV?x8~GUzYI?WHTLz@`l#$ z$P@bY7rGg5heB^EZz->9rer_?-$ZUjQSj;=ApJ1zA#MzRsk_u({-yOYw3MpcwBh^l z19*+{zVd+rq@(5UsV=HAlVCMdbq4;Z3Qantir#d(c4=*@GIPTGv;}caN2Z7iPM(@LA+Hl{-?|?Z1R$>qXpj5aQze~qI?7N{fb{&2n*5?q= z*pKkX_%P6_Utv{_0M+_U`9(Q4m}-5BKl4*9|5nK<@LcHK!1S&80dS%aw@w0_}A#hiYmJOtfAY& ze*oS3_rRO}XZtb$+E`JAte*kHI=bh#xm&cIGkI0*%4swW0+$n@qt3Ok+1u^)>si!k z9S(YyyL~ud7_y;k2;ERN44=kEu%q!|f{?nSe<)uPBod@QVNcm8cC3F-3F4LGgEo~- zfK6q`v5DX&N+O6M2ouB-#Pw|~8$!t>?M0=Nf9VVJ@9Th#_dgnDt8?jA6Quh$dtE^H znjk^j>?Qy3X8)CIZ{UU(&<%%C%vlB)Yj?L+dzxFv16u=2AX^C%A?qMW2Gby04G$)> zHGtnOnz4Tf{t{#$sASlUW$W1n*w~Q1jU_0Api}79LQw6Ht)0Qn?BCj8f<_G9+j(?v zo7wqn3)@Q2NP>(61rQWC{NDO^>f|=ht8HG;-`G5#=*g~O&jBr&UCW-vu45IJu6hUDGg%cD(&}f1p2^vFC6hUJNir&d?0EG(vvlp-zvKQfF@aa-! zJV7z45)VOE@dPCklmb)-zNBgTRzyFtY1@(3XNLq~W9Uneo+rE8LE{BuMa;0TOF{T9 z^?;#CHH3~Gwv3~FnHGWtI@!=x+Ei7#Pq2hCaYI{CeS)egkmgZ6gToD%8a&HAZLJ_k z4cCzt>Y+74-MGUw;e{C&cXusP^+y^@rY#egxhT9-O~dz5d#*MHit3O7FNcVyYUo3= zfw4VcqhxytidDe!NKs`g1<7qFivAE3r<|kyQq~)z{m^j>dmC6n*;@%p=wWXsXdJbL zM%Z0#UCmnGnqJnoZvJ|Av-g3~o4tpD;lS2i;Tai$JjlzsmIwT2udZ$G_a|r1+dU3HsY`N9QzU|RqXTZ3+#&o zr4wW($g-JznSF(Ql^`oYHiC+&4Opj-2T;bQ+n6+g+NZ0vIf-(TLweU#x9rissiFet55tK<#RxkTL`vF1O1pE~V zO=^hboE8tnN-gZ}RBiiIvnVO`w0N2uJ>4yfd?VBbh>(1+6rLQ;+hH4ma7>oxGk<(o=)n! zRXd&w5^q|6$4+CSk9(Hb)oKmh^Qk)`jTUp)E%LOxvYZw-I8dF&q`@VN``RDSURpIZ z)c9@rX%1hjwfzG~s{;#4XS2I2uJ9HAszL-9`y2ba<`mNaZ=ep|%l<)SFlr?l`jYz2 zeLA^Qdpk(V;t+@X$@V0I$_9~bP7gT3iJZjA959MVULG8z#|x(aG}GukV~}2i_`6d^&|tct;E>Q!VGsfrIVNgsbaZTVe8RZI z@zKdC$*FT{8U_R!!&n;KU6kYmK+v!Dq8{u+5Ny&3t{(rRaF`o@Rb9SvcP9;5^mcf_Y|#lTR0{EeUd^O4 zs-|H;EAGB{Xeiat1yz^mkx@bd zQcG?#hNh*PAp|cYGb_KqUR~eNIBl+TUdsY4JRP{J)eND{(KN1^hBZf<;lCv#!yKIp z4}g~q`abB38lGNkEh{mXn#`pcc2h=)-C`;!$;pOj^^!81#g?62mR;5a^UKTe7}J?@ zh@EX_ybyC14FS-L;Byyzazi><10LsbPp-+Xt(yX}IRKan-x@?UH972>Aq3_;_!ae^LGV5V zp2Oy3WR(|N%{e)yOiOmA$&zicn#>u+8KxXdj?J2FEiJcZ+=#AsV24Z~?8bT3HQ~4}e&W zKMA)7{?#AArHwi#8zQ)1*v<3%&_e6Cx49G^x4H(0Kev|7HLu8C;L0}VHs@MeTFh!R zWCY|sBteQ}Hl#RqLZIC_5LWjv#CjcoRK$;&BM3oIOCqvCB4H~e3!aBAhm^pr=q5-D z-05?eg1ZzF1n+_5zz5O85DB>(k^`Rv7ukp4T^WnZ!OVUOSg_v0AK*{%H;{HGLE_yA zP@5tk-Z71>1vP3Gs6C6>Zb+x?YsXs2jbKWjTubmW&ok}#~A{#-^@+t zW-{x6B2tUBPkiELa|CeJY&&5U!d^qzYYBTjVQ-)uIk*IP-jWUv1ZaEJ z~D+?*}tHxIl?4w<<@X(xzo6HoI((+6+{IL$yNIAAJ=`S(Emcwn7(BR*n!%&ZX{`STOfKqj zdLcFkc)zQwZ~w05dYR;#xofy#(>?q+T~w}YT%1T80M1wktbT1C)mg4Pmr8r|Jdnuf21U-okz?<}usqw~A7 zT3uZbR@=|VfH!pbV>>kMwi;Y-YL3qwZwpxZK*=^WtI0w}ttANJ@^<+ijRe`Is~n)7 zVgnSKLoEbUgI3?Gx*B&6^YJF7Qu}wC<($2bSM?<5t%w* zRhN}EI%;d2lgefcSDr*{sPfMTA1o+aFkS+)k8D14Q&HIhNxQZFhOVgcl0wg zCKjk@KWEJ~XQf8lvNQTZqq(oRuOS45JHj0$=v;!%@8!PXz9r~Ff}R+>x<6^Fd!Ex+ z{P$LOm~gm($o-qv?gdU`_1|lEIA2wN#GQYej_WvxgwQcMq{BLvAfPc969hEo(k(ij zj@Jn~JwcZdbU8tf5%f6SvD87-P@|@*3BuFu)uQpVXR7uvd~rYf@G}a3C>ub&Mj`$5 z*hj0i9*2qT15em6qj74_1`Y;g%6z(3^Td_g02`43#kj%g>XMn(sm_58wtew zoeq(T=^KR&l|T4aP#2+#0zjvcin=j0QjwsmHtWWsLR}0&S1Z8VuAz&j1vw8Fc{pJ1 z|89um=nz4lzqZeIq)XOWAfQ2)qD$48bZNSDotYr8)L&1~4Fugt&?bU2HPVr~?|&HnfO2a+@(iSF9`1mFn!eGF`c@ zLRYDC=&E#+bk(}ax*A=ru1+^aSFdZ(HR_slQ+3mH({(d+GYQ&E&{l%B5p)wlHxsm- zAmCs-3ED-_Ed+tZ6DZj21l>Wq zb#rucb=v!=m5slK*W3k20Q>*fP%=#y17t!Fbl zZc!5%weS9>7pM(}BYR)y=9)DQFas1f zOkIcpUHi7t*R_+*&Ogu#)Y4%C2kI|9uo!R*Xfz&8)sEs(CsgWNS}0#d`S1x#3@inz zL=URsD*~WcUJJklD>B_b5TLzKJZiY&j+zQ*!;FT;vdR9!SF44Sz{K3!3m!8~M4KNO}%;W($2Lu;NMh-4nS8H!@mNYp4RP2tvApp^VqN9c>s?h}v zZ-62}shD9(Y53-Bs4pE@9thXap*Bo&ln>b!plnbwZ*a>^4P{P{rJ4Yvrj|JyN`VSA z!Y0)|AV?pzz6_w@Ez%H2REw@h~w^l+6UwjT0U7^_cPb~boUREadi*r9v=K) zw+`g#%^E47{X! znfr|j1A7UAwl7eHfwXUD|8jqjf4r~h-k=f7APi7ZpjUSg!-_rwkxMXuz~Q8lVIKP1 z`j_s#!Bah?`xqM6eTYGMenC0ht2?awgrJuQ`f`vcs{2wC8DDf70f_%jX2x(LWBP!= zCSNj~YK|KaIOZSlQQh}cmi$`xjqY3BcLcpm&?^MJO3=P7Sk(Qf`$_jRmHhV;^cq12 z>5}vb6>tax7<32deqi?21P(9-1D9Xs28%RJ%q!^+_W=f|WpoV=#(+2;aE>*%FQdn5 z3=G);ymFKbNLKCF+I$n>8J>j&<`ItxdYzyHz07!CM{PK7(7^@|sO#|3uuULzVDldE zSXDkDGvWP#Iv_9eL2w8OZ{SbiNAM$gBOkyA67(iPZxIB#(K`gaOVGavdhaGam=EDY z`B8irAI>BY^gcm{34%@jl%UTD`do{BAF0_|= zK$F@%%iFcp@Sh+snYzkH(U-;aqz14Wx%wNJRSK3KNSdHVDJVtdZ%8EbbX3zcDBmto z1=XlI{2=<(7qYJ64Ihu(y?g>cj-U?+`Uu2SK8YF0C-W(MD&9p;e(3~RXIXO_{YcO0 zfV@e94iN+)ZBtjTHs$78)3P$NGOf8_wl&+pa-SM)vY0c{GIGt9EbyyZvU9E3x$0RY znc3NCxsb+cvzc=Z8@}$oLmcJ%37>z*Txkd3bu!mppwn!Xvo>;hy)ks zYLnG$OUug2wq{v#vvM%_o8i-O`c?TfXcYHNJnV=&Sul5m)2xe7U2P*LZ#q7_* z0{mS~;hTVl^7VWJ-$>9=g1#o`8*qm6)A;GCGaNMD?}l-P{~OOYKuMo#Tysu)`<> z7bjhTc?5mmr_k^%`~q->^R2v#pdSeOv6o-SgA(-sXHCz$#F%^B|B$MyV~L+IDpK)*0nQsau;DpB%> zPVndPmz^wCx}3j)-^gFdU&UVyR0(qg2M`=ca1g=41TqpJI$qn)>ydjKe*=FbzlrbR zd-=@->j)MI773OKK84_s{Ul+Vih7t=QLh0|&uY!hNV8_zthu>4*6hrjT)-WZ6>vJu zYPRO&=H%pLSS^_qxJ5 z)O2D;SvE^97=8YvqYPVyIn4|mXJzMDGi(+M6#a{?Zq>Sy`Uu*fIpt*M+EnUdvF4;@ z*>W;0mfQ@BEfW$~f!GY{Dl6NPkvU9P1EzJS)|a7gS~=#dG)rbij@6QD0pgdT5i)a5 zT25A$Ej!1Om78O>WU7Y>3|ziUb4HFjD;Si`mXn#Am1zMFQ&x8W3f`-AHDdU#vMo7g zI8gwI=HR}p8AGO(nMuhj9E>%nt87Tz^>5aLT35!t6+CfP*4$yb(xx?N1$~=kwZf`o zX2YuFX2Swx17QbZ{#?b_FUId^@#D>I{;?s%JbAUrVzp)i=gG;;F=qoW$%C;H?>bUH7{(K+2~$svXz(?WVHK-xQ_>6a2LOy ze~o{gKfu4iALQTU-{Rlq-{Ifo|3z>l!BGT96C6u$Ji+4#9#3#G!KnnN5o{*dx{H6G z|A0Tlf5?Btf6O1|KjA;+KjS~=zaTh+;3|S!2nd$=3WDz>_yvMLCagr*F@(({?9@R5 zCjYf6VB#^rwEqDCvjHNdTo5$|v9?{1EkaLf8DIeAf6zJ`>oook1(fnM3i}g+W1PlC z|G;$n#ZGVfpT-goT!7E6zk^lmsv zEgif)PWmBj(SY6sPU{^a`xgJhlb_~lgSdY6sG9yY8M6O^8oy0&qSJWs-y48Bea!|8 zxf(vt9(*bXok&YSHw~-s(0aqZp}7h!SW2*>x2WNG1J`MUwoXY-W9Hu;Cao~Atst$f z6sK|C-);+n;;SL;3RIKo=J~ERnrNS{TH;~OgWe2X=`gKZlhb(Nf6(ney3(!me7<4V zd5ktlIDf10?+tR;y#^c6pHdznR_h9mZ2X&uH*8n^Fn&^b3qqpSyUl4__V*@w@@U@% zXGOH7`wpvcLL885g>z|hJ6Op&(^~x8QAidtndBWpijXRpgft;tFbfvJD%b>I8<_-W z5u8nM4#Bwu=Mg-C;E4q16I`%E$fD8TOoEUnOaS*of=~d_-?-2h{f&zWt^h9tv{L!M zFZ6q85V?0ifH)0u{53poo)dFOLhv&gyq5tVWqH2 zSS_p()(WTbr2>dElL)RR7*?T%;97#~2%bW4J;4nGeMNBNPGP+dM$cj|gcN1SQ4r1( z&L_CZ52e!}M*+Z-rYPW91UFOldg#(?5e#6f`mO*9=v?{|1OAZ=g};PiRdN=t zrhs}4!BhQ!3TouAsR#Zo-y&?Ipt_ad={>?t1kX50P~9oqO2O+M0epCg1kVKUVjrO3 zMKcdh09AiqcMD*F9>z8zJSc#F&r0xYg6DvG-5-w*25@0Fozi0j&+W&rJ;Kw24I9E< z;TeLR1kavQhId83?H!Q1NFgxTY50O?%#r_)J-cDuR{&-6BZ)?hr-XX`;a zSwryJlfpCoM1AppglGCn{UjC7^i?XJt^2Db@K1Y+el`eK`g(nXzER(#pQ@jxpRS*w zpQ#64LkM0^@aY7fLGYObpGEN51fN6j27=Gsp`W9nn7&yPuJkS{T%G4funYTytIPf? zT&d@F{|y8hj>GqHMU`jiy%g}e2tMDBUCSwUtzh=jAA&DXKBfLn3?tzM@m6th4m zxu{1E8+-9dV%Ayu4H{;hqhi)26s*ouG3(Nym}Pjv-`&Of%QR@bRE5UN|Eik5&ei&@ zK=t+4=&#jZr@vl*gZ@VSCVh{-moL?CA$TLfR}y>`!B-Ou?D|>)Il=gPf^Sf%{*62J z+WD&q`W=3%ufI)yJHea$KnV=HkLvFr`1b$GQgBqG8s?eyf3Fc}aQO&@%SQ?B@x$fg z6fU38?}4AE2<{~qjPme%3qWR|F~XSW-}>kEFH-1yf#7XD`j-g4=_H|ZpZ;|XI>Dz4 zGS$r#%-&F;bNf)})P3pi?j8O6!;||%`VUodzmwoyL&*InbatN-d`myM|3ZHR`XAsg z(jV1-O~CDrZ#y}1|GoZ~|A^d+jL518CSn!A?)a;j`=%|5BAghyQE5&BgB!S zQ4A0R`BE{M;JXOEn_$qR?j`s>g6}67q|*lp20;_Vs)u)qp&HE>BY@_sVwE^nj3)RI zKZ5P1RNp67JxQ<{_wZk_iXJrdPa&9S0uU6_2!7OuV4?*O>`%37F-Ob;v=Va(eym3X z+sNZ5hgM>tSOUN$7E!JG3Basgv6O1ndjPYBqSc62KYTgF$-|;B{vDUAe+o;*4h^k5Dq1}cXeE}a z1ZB^VnfvQ36W3F;S}v{-SBk5|)#4g)t$3Qa4$umOs22$ag7z}OuMqqy!TSi_Pw;C5 zLx=~U)q$Pj={~eN+t0Ve^Ti7Ye#4JeZw}yF?-KmsfBDuw&9}sBCmCtKQXj?& zAU-5Qh%Z-j-|xq(C&j%d;MFtYvjl%Y@S&5#s~5$6{~2DrDZZoO z)!QmweRMMH>X3MZ;?;-ZN8-ogVeu33Q}HwLbMXuDOA#>VFu|V?4D9$bf}!M_mvE5W}}>)P-C`xKSGRMY$p#oKnI($^==ul2#|g_ojFXfpWl;=f5rLzk{)q!WR6$&tNS8C8 zu(%KRr6Q@6j=TSy56Lc-5f+Zs;Z6$oC5Kc4xIgTf9#XATCry#+39BP4PgsGldRUGB z_s;9^@5fBZ1%?l4mNZ+MBh8hZ(mbhInlH6TkS{9})c2^&P% z;2qKejjBkCHN%J04m5?OK}hhQu%oC5Ozn#7=>L86>bFVLj5hgbhDQ5^F(*5H{i@q(JFP=^BkLKmtH2VIxnb&L(LW za5$+)>XkN2TcoYhHt8nmW@$TLD(xg}6k*2_Hkz<8gpDO^9AV=Ln?TrcRB~h!cS^VT zVDS#=PVF8C>0aqR!qO9jRcM4^SO5&+A_u|(jmi11PxRm`zc)RBdn=MdX2DYCkdAaCF)C&-UQagrmL*$ z9S|N_FhLKam+4l=6$KCGT^~xH3@b=VpGlvqY{*7f2&WwEPLht$IUXf!WDsdJesf*2s@Fmz$^<0TS(XC3AW8_$7 zyk24wyRT6fx0+hdl;#m!08~=-E|1_S-832QFCSl8ccqZpiJbOXTqd$OO zgssqi1EP)b?|YF9W{e&gw$srgmlC$>^-tWCI6EE#$>Rl1B_J@>noC+rNu&Lr$C!pc)f(3@5e2A_@cZ`dY1kW78ne0F!~#CE7`x3A^AVaqDhb zJAP4ybY&o-3n^fMof&Xz(NNr4yUpL-qw?b#JU*tv4ZIFi~NUt+`t$RVb3J&Sp?3OWz~}jLIG9=pH$>K5|7?aHu!}v z^%%~C8S<*OgPtb`8)P2x%6CW-yl&`Tx)d%=(V()ywNSl-p-DZ2V5-Gd4yk9x&sD|V zAj4&127}=g11P6JRxc#%C4Gk`8UhU9-`Q*kGz1xf2@Cqpd4xTGvm9#}CI1033SlpR zIa1+-+HD5UU{Kd^hl_{a6y`Lh{B^++NFi@g*UrszEQTk60Nqki=Hg>{w3JSW- z7%m%vf+NQyj!%Pg>S8ApR=|z2lcqFHojJ#MtGsrSA{-~@n~rwhGaPr;fAtdFCLgA- zGa9<#B4rnxL$^O9bi}Ce(Zd}%7p8DM5pa-T5S##34tG($4(Bq)jEIecgBjroJyZ^Q zS^!jPp?aZo-|a2%lG3rhBWVN9F)D%rx5fjBNKKh4+382NqGlWS^+J5zA*`E@mQ zuno29<=s%Dz5x!s^Bv-*U13?@SO>eSeg^8MO@uDGIu)ofZ8}is6IZu)M%^$^q4ccT zK4|EjRR>?^I@Qw#`&Oh?gS_5(P#sPoJn{LEqxGtpDNF+#-Pp~nVa{aEXRc3hs!<|y+UVvzxjgu5hzPzYQ=oC#MCx1o0AMcrr( z9L2XDoq^6m=c4n`h3I0qhWKXmJUR>)5PyY^qHo}`q+{rJbR3T0<1ml)cpNUmCD@J~ zxDn4$uOnUt_qm*lFT@-1&2T{9V|WiffZv9@2R_E1 z`7jwW-~<{VdFckTA=qFwfCdYM?^42E2DFc`mlO7iZH7z~Wym(3vX$-qZURbd?rT&nx}6B_Rb%D;Za$*QUMCP{NEflp5@m ziqI<&=}|z}Kk;2qC}FQs(~J$}h6;ci+DWgWoLN7&5$=Lt84cI1TQc&@xf=hd0$Gm< z00QNYyf)Mr;8G&>S&v}~VXyOLQyLoK6a}@Uc8#TBx_V%h*2*m8-T_C?e{7g*a2n=8 zHrU&S7OZeb=+X1P5cWpG_7HZnng|BU!&c=m9A5=J_TR!`Sght3uyD=G|3p@k!J~EG z`#+UeWa!cc0EbfiUnlGsR%&f+a~fBzFs-0r`X={$Qwu$zyNjOCZGwa9=-G04CwFa& zc4_9{y=MlfPB;_Gq{4Bsc}yWtoT#OxO`Z@?eY=q#$=@5A6)-Ta7)qC`v`Y!!4{R;gm{RaJW`tQUju?S)SmW!8& zH;8wLcZv6i_lXaH|ML-XxA?fYM?4@N6yFlx5&tE=FCGGi;bCwVelGql8KrnBTbd+I zm)a#FT_jyBT`%pBc1gENw@Y_QcZ0!nkMxv8t#!{!FG??iW$t^h5?SOjd78W&RM-pT zi{wk>%j7HM8{|!LuMB#Te6ze8RDv%J0uY=KL#QFl5MxL+WEx5g6^1&)62l6^YQtKC zVpwlD!*HYFX2Vm4y@qE4f&wA~$^xnbx&z({_%Ps?Kql~%z=*)ez^K6Jz}Ud}z;S`L zz|6qxz}&zIf%$=jfyIGy0@np@4}320oxm>wzYJo7j6p#`Awgk55kZkbX+aZ$CI;mP z6$VWWY6I~`%S{Ae-XjRafpbbIi1ziwyQP3qpmjzuBbY;+;K`#Uy4o1N-!EwRn z;N0K|!TG_3!NtKd&; zLfbbei_ot^kA{8| z`d#P`p+ANG5_&B3_t4{`MvNLaDsNQdD9@;KM{OJR)Tq}+eLCv*uz;}fVV1Cru&l70 zu;Q@Fu&S`?u$r*CusLD#!&<`@ge?hM8s-T*HLNRadDw=q^TMtQyFTp3u%57OVK;~E z2-_9*QrIhD?}i-;`zY*i*cV}6g&ht1ChU)JUAPb~hRflB;lbgd;czf^_}Fk;cwu;b z_^j}`;q$`hhkL`s;h%;782)?s@dy;bMo1Bch!GLSh`@;O zi0Fv2h~@}y#F~h85hUXDh>IgGi?|}z)G1LT zqY|SWQB$LqMtP!6jq*lyM=g(98MQiUZPdCb5_NjiHBr|^-4L}YsyAv&)V8SYQM;mU zi@G!F?x=gCUWoc-tUNY!Z0^`8W0#LTZ|tpOUmg4Y*ssR^IQHkUzmENF>>trWv=}W% zpAtPXIv_eC+8Ui7T@l?FJtx{3-5lK#?TT)X?uhP;?uuR(y&`&J^j*;hqK`)Z9Q{l5 zu^4@f9CJ#HF(xo3IA(l|B_=B-CnhguVvHlEE~Y-FF=lGaoET?Jb4*K&E5;k6#9S70 zUCh>)J7XS*c_`+QnB6f?$2=4BT+9nGFU1^;`5@*<%r`OL#rzoabIh-?BVxm2N5`6D zb7LpQ7Q`0CPL7=!J3Dr6?7Z0dv8}NSV!g55vCCsu#jc567fWJKkG(LqH}?M6r(^fU zejEFJ9E#J&NpXg_5pf}LqvFEjM#qhbv&NOhO^cfsw=m8fwt&2#@{#o;qm*&e?R`m@js9Mb^LGR|43qza1xg^CTVO^Oj2A@LQ-N(z!|JCtaO%ZPN8gHzwVgv^(kX zq&-PbC8sA(OfE<+N-jyBo_tR7mgJ|BpGkf$`Gw?{l3z*QpL`(sVDdM~-zWc={B!cJ z$-gE4ks_oRQ-V@LQ^HdsQ=(E*Qqoe)Db|!JDRWcirOZ!hO*u8io6?=KJmrj(vr{&t zoR@M#%FdKqQ*KYWGc`KZl$xGuNzF(tNu88hlR71}A$4}@^3+wSYg2DX?MdC7x-E5k z>dw?#Q}0NS-D4oXD z(_QI{(wC$!O<$J2E`5Fa8R=)IZ%98c{etvs(yve7l)gEATl&rEPo?imePLi+O>0sky`KH7_%- zFrRI{#{7`^N%M>5SIqm(ubU5uEV`3LjQ=3gz0WrQUejw~;-lv>Iy4okJA z$uiwC%QDx}Y-zE$EghECma{DzEst5gv<6rstZ~)})*|b4>tgHa*0Zb|tmj!TuwG=n z#CnZ&vvr$wyLFfKHtQYMN3D-r_gJ5@?z6sTJzza({n+}6^)u@i)}O7%tiM~2+X8K4 zZLzj^+c=xemSxMeO|%u-ifv7{xwaPD0-M{m#J0k=&PHsf+s?F|Z@b8LiS2URM%yOa zcH6zSM{K)okK6Xxp0mAZd)cPvkw7 z_e|dNc`xO?nzuji^9jO);0Y-c=1%CCaKVHdCp)vo6qNq`G)+F`2qP+`O*2Y`3d=}^3Tq{D*xL2 z8}fVdx8&cHza#&a{M+*%&wnz1Z~k-nFXq3Jzd!##{+s!4=l@WE3W5vL3-Sx<3g#Dd z6s#;*Rj{Vu%!0ED&MCOL;EsYv3w9SgR`5i@%LV%iUN1OU@K(V)1xE@Eh2ez}g`*3{ z6ebs%3eAPK!mPra!m`4OLPueB;f})l3Lhxf ziyTGOMKwj!il!IMEIPI5w4&3C&MMkabYamYMVA+CEZSVOwdkgz9Ysfqjuri0bi5cB zPbr>Tys&t2@zUasVsG)9;&sLAi_a`Rr}*6B2Z}!}2`ecsnNzZ$#9h)>(q6KzWPQn* zCFhi!TXI>+rjnaVwwLTIxwYh;lKV>@EP144cgaVkOsQCEC>>cEP#RU5Qkqt3Da|O& zF3l^=FRdz_Tv}IJU)oqYwRC#v%u=QFy3#$RpV>uwnmyazZa>xDWnXSzWnXJo?5Eq$ zvTv}TZ@!%VNtCz}#3>Ho44Q)>+nFc3s)lvYX3ZDtn{st#YpXlyYNvPI+;;y?jBrr@XU# zWBHBcz2#4rzg)hr{Al^l<;N<*Dq;}Q36*J;mdZJm3o6}}=T%-_d1d82m5)|FUip6IXO&+%c*jUbpd-ss2nR~ebGRLC zj_r;+9rrlycRc9W<9OQfwc~fkACBWysA@#j$SPx1VAa^FaaBoGsa5G!Syj1J6RQfV zimMh^d8?LHt*lyIb$-=FRhL#>QFUe2rm9=2?yS1I>fWk{svfO+tm=uXH>$p@`lagE zs$*5ZPm(5$oD?`IcvASJ$Vp=-#Y{?@WS(T5lsW18NjoOpHR=CUb>{y~6AT;%WZa-4 z?~A+~g9$P~1Q8sE)4hNUS=%&g({<~TCQI5ZX_F;u+Ga_cE@_MOU?79ZBj32olD2*JUX9F)&-lMy_&9Cw@SBJw_kTkcSd(!cR_baSFgLSyQzDsYtX&WHR_w| zTk2cu+v?lvd+O8mfS%HO_0#l=^(*!3^c(eC^xO0Y^e6Qf^_TTm4WkX?3^@j)0XCop z+)!?a8LAB57-k#3HGF3{VW=})G+Z{+8}1nzfH#0vKwF>#@Fvh1=n3=&(tv(IIxq+r z3|IghpaBNp01qGmL7*H615scmuo*ZEoB}QYmwhoZ1-KR50qzF(fN zunxQkUd|ofBzzp7o1MELcUA7%+zqDorgu%kOL})To4QKkO2812?|2xkOobIzJ@BHD(E5f5^A(Gv%F#9EsCYw zqFJJrN0wKX*LltJTIR8Na$Ybml&9rA%zK&FXl-VF!&+ti&brjP%(}vQ&HB*#*!qX{ zS$=-LGru^W&S&x)3)&ZSEO@h^a{*Q0D-a8$f?&a|f+q#f3K|Mt*aVwutFl$w=Gqq6 z7TcEEez2{yt+B1QZL%G))!L5RPTGF4owe23F4+ESyJEX)yI$C=Ftu=8p`$QXxVG?g z;qUO<@P}{)JQ~h~KZhs6AZ&smI1kQ;ZE!K{f?1e{1=t5y!VBT0@DK1xcpbbE-U4rf z55YC?Y4{9$4!#24habaF;6LG)@N1+6(h_+G>5XI{qmfJ`3mJz@K)ytD2!P}w5Mo72 zkWxfIe29q1h=PM(3gn z&_(D9bR)V2-Hz@=52MG>ljv!*4!ww8M(fd+SX-yHh@24h39kFgQh zSS%Zxgz2$d48p8f0Y+gyY$`S#tHi3XYHTjH09%YL#eTq6Vr#Gi*kP;&tHq9Er?4~F zIjj!5fL+4sv1{1tqFzN~i-@8rMQe(V7Cpo};e+u{@KN}u_-A-FZp2Nv1<%I|aRf*4 zqNYir6!+pHF5^M`TYMS53SWzFz_;Q%@ZIP=IAQ`Zkst`3kcc2rPK1fc#57_CF^iZ@%pv9xD~Pqk z24XX@gV;^%CH51ih|9zu#53YK@sfD$XyHh4v~jd|baK4yc;7L=F~~94F~l*o6Zi-p-#ZbIup*B&TpLGI_ElICnXZ zIBT6JoWD5FI?p?wkj=?fWLvTW`8L^w>`Hbc)5$^PNHUYmBFB*v$sE!^8c93pCd1@p zGDarJY2*xY7CD=oL(V4`kxR&(SA2tNNxesXKn0d&&D2)vAa#T~M_r=osq55D>Nn~U^#}EgYM`6b?dXp5TXbhSmF`RTrw7tQ z=wb8-I)gURC{59Bx`ZyJy|hBBbcFtjj?+oHnx0QDqL%lbNVIy+SS69;_Bf_b@g$*=j!K5cMWn4b`5cTF!GREcbl(GWT-#O808_TK9VQkM4c$pWTPtHSSvX9rrW$3wI;a zoN2|hWjZjOn4U~;W-v3H$zVn^nap@5o0-Ju8Gx}e7(*~5Loq%^W)wzcCNnW6$y6{a zn61oS<|pPLbA+j7&N6k(MdmVdmATG5VxBS$%nP;|`v%*JZNqkD`?6!$&)9#n z602v8tckU-`D`KUVSTK~N^F1)u^Jm;C$m%71Y5yQXIHbe?4y#-C7+ZOmXwvuE7?_Y zvEv{Kz z@kjaN{7L>7{tSPfzrbJO>-lT^4gMB?r?gdRztS&DU8U1XHheeHayzBFH7-}}CF-yq+IzM;Nhz7f6*-zcBO=k-^{@B;=-=o6*?-7i?sZuhls<(5#neuQ_K>_ilB&yUQrZfQ4v)!B7P;t#i`h`mNZWKLdurDlq^!dR4Cb{B8iYxsY0rhs-$XZzO+bMB7HAymbOXzq~p?AsZP2m zU6yW0x21d11L=|UTy7z!$Zh0ya#y*BoGPcu{pBV>ojgR&k*zW&6EZ2&G9&xsGC3fJ zWKE99U&~c;wLDi|BrlPd$;;(!@&Wn3@)h}-d_%r1-;*E6kL4%wpYmVwt3a1P*Fd*G z_dw4;@4$P3eu4DBz`)?Z(7><&5MTo{0-FMLfyQ9>;O9Xk7z|Dh#)8RUMev*8!r*to z?}N*OtAcBS>w>$3dxJj(4+f6}j|OiCp9cR5zEYYgDM}lqz0y(Xp`O5VP&!sQ!13Nm6=MFvO(FS99E7h$CXpc8Re2vuUuDd zDtDB7N`vw$)YN?pwF$Kkbqc)|N)3Gw`gdr2C_6MMqz@TGrjR9+A1VylLqf zV5mG44n;#>h2o)Ps3Np7R1eUyQ~Rm?)$uB*TGV{CP{mY2B~?llRau>)PF1I?mFjGDjyhjmsIFCa zse9D@>H+nzTBFvf_tXZhqxP2ej`mNjo7O{1)zY+nTDmq!%hJYa6SRriBu%dwHIru1 z@->?VYow-VF>SH7S*z8qYR|%*!u`XUVIYi!7l)UJ*M)b64~I{M&xFs1FN80JZ-(!L z?}s0Te-A&2bd01&#zlOQKqMTAMk*q+BC{iNBJ(2)Bda5uB3mOnBD*6$M-D}5BF7>p zA`Q{^qq$LY6pI!|T~Rj5N5!ZdRibJ%9F0dSW7A`mv4yeKv30SHu`RLfv0bq}vD(;) z*s0i=*!kFhVi#kV;w|F+<6vBlN8(fCv*PpPi{dNd>*HJE2ja)$r{bsMXXDr6H{!SA zcjLdsAI2NvFXFG_uM=$&Z4>PiT@nKlA0$3Ze3TfT$ViM%WG1o_V-sH_vJ>WnC1Fk2 v5(g8f6K50W6Bm-%NpsSYv?guI%H+c2;^dO#vcE~?-^8+m{QsnKYTy3>1aAKA diff --git a/Flash Chat iOS13/AppDelegate.swift b/Flash Chat iOS13/AppDelegate.swift index a42d5ae9b..687a982ed 100644 --- a/Flash Chat iOS13/AppDelegate.swift +++ b/Flash Chat iOS13/AppDelegate.swift @@ -8,6 +8,8 @@ import UIKit import FirebaseCore +import FirebaseAuth +import FirebaseFirestore @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { @@ -15,7 +17,11 @@ class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + FirebaseApp.configure() + + let db = Firestore.firestore() + print(db) return true } diff --git a/Flash Chat iOS13/Constans.swift b/Flash Chat iOS13/Constans.swift new file mode 100644 index 000000000..6f3d13451 --- /dev/null +++ b/Flash Chat iOS13/Constans.swift @@ -0,0 +1,29 @@ +// +// Constans.swift +// Flash Chat iOS13 +// +// Created by Mac on 20.06.2022. +// Copyright © 2022 Angela Yu. All rights reserved. +// + +struct K { + static let appName = "⚡️FlashChat" + static let cellIdentifier = "ReusableCell" + static let cellNibName = "MessageCell" + static let registerSegue = "RegisterToChat" + static let loginSegue = "LoginToChat" + + struct BrandColors { + static let purple = "BrandPurple" + static let lightPurple = "BrandLightPurple" + static let blue = "BrandBlue" + static let lighBlue = "BrandLightBlue" + } + + struct FStore { + static let collectionName = "messages" + static let senderField = "sender" + static let bodyField = "body" + static let dateField = "date" + } +} diff --git a/Flash Chat iOS13/Controllers/ChatViewController.swift b/Flash Chat iOS13/Controllers/ChatViewController.swift index 75860a502..fd9863098 100644 --- a/Flash Chat iOS13/Controllers/ChatViewController.swift +++ b/Flash Chat iOS13/Controllers/ChatViewController.swift @@ -9,20 +9,43 @@ import UIKit import FirebaseCore import FirebaseAuth +import FirebaseFirestore + class ChatViewController: UIViewController { @IBOutlet weak var tableView: UITableView! @IBOutlet weak var messageTextfield: UITextField! + let db = Firestore.firestore() + + var messages: [Message] = [ + Message(sender: "1@23g.com", body: "ertertert"), + Message(sender: "1@23b.com", body: "cvbcvbcvbcvb"), + Message(sender: "1@23g.com", body: "sdfsdfsdd"), + + ] override func viewDidLoad() { super.viewDidLoad() + tableView.dataSource = self title = "⚡️FlashChat" navigationItem.hidesBackButton = true + tableView.register(UINib(nibName: K.cellNibName, bundle: nil), forCellReuseIdentifier: K.cellIdentifier) } @IBAction func sendPressed(_ sender: UIButton) { + if let messageBody = messageTextfield.text, let messageSender = Auth.auth().currentUser?.email{ + db.collection(K.FStore.collectionName).addDocument(data: [ + K.FStore.senderField: messageSender, + K.FStore.bodyField: messageBody ]) { err in + if let err = err { + print("trouble in data sender \(err)") + }else{ + print("bebra deployed to space") + } + } + } } @IBAction func logOutPressed(_ sender: UIBarButtonItem) { do { @@ -35,4 +58,19 @@ class ChatViewController: UIViewController { } +} +extension ChatViewController: UITableViewDataSource { + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return messages.count + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let cell = tableView.dequeueReusableCell(withIdentifier: K.cellIdentifier, for: indexPath) + as! MessageCell + cell.label.text = messages[indexPath.row].body + return cell + } + + + } diff --git a/Flash Chat iOS13/Controllers/LoginViewController.swift b/Flash Chat iOS13/Controllers/LoginViewController.swift index b671f35b1..ebecd3a27 100644 --- a/Flash Chat iOS13/Controllers/LoginViewController.swift +++ b/Flash Chat iOS13/Controllers/LoginViewController.swift @@ -22,7 +22,7 @@ class LoginViewController: UIViewController { if let e = error { print(e) } else { - self.performSegue(withIdentifier: "LoginToChat", sender: self) + self.performSegue(withIdentifier: K.loginSegue, sender: self) } } diff --git a/Flash Chat iOS13/Controllers/RegisterViewController.swift b/Flash Chat iOS13/Controllers/RegisterViewController.swift index 244908afc..68ebaa09e 100644 --- a/Flash Chat iOS13/Controllers/RegisterViewController.swift +++ b/Flash Chat iOS13/Controllers/RegisterViewController.swift @@ -22,7 +22,7 @@ class RegisterViewController: UIViewController { if let e = error{ print(e) }else { - self.performSegue(withIdentifier: "RegisterToChat", sender: self) + self.performSegue(withIdentifier: K.registerSegue, sender: self) diff --git a/Flash Chat iOS13/Controllers/WelcomeViewController.swift b/Flash Chat iOS13/Controllers/WelcomeViewController.swift index 6795b51f7..0c3a87df8 100644 --- a/Flash Chat iOS13/Controllers/WelcomeViewController.swift +++ b/Flash Chat iOS13/Controllers/WelcomeViewController.swift @@ -16,8 +16,7 @@ class WelcomeViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() - titleLabel.text = "⚡️FlashChat" - + titleLabel.text = K.appName } diff --git a/Flash Chat iOS13/GoogleService-Info.plist b/Flash Chat iOS13/GoogleService-Info.plist index 89b8b41a1..3f781cc11 100644 --- a/Flash Chat iOS13/GoogleService-Info.plist +++ b/Flash Chat iOS13/GoogleService-Info.plist @@ -3,21 +3,21 @@ CLIENT_ID - 410345050732-h2pj0umhot6ijsruspaei0sd6ujptkm5.apps.googleusercontent.com + 378673531586-qr2h519k0an1bms8tgpqm3peshpsbnpb.apps.googleusercontent.com REVERSED_CLIENT_ID - com.googleusercontent.apps.410345050732-h2pj0umhot6ijsruspaei0sd6ujptkm5 + com.googleusercontent.apps.378673531586-qr2h519k0an1bms8tgpqm3peshpsbnpb API_KEY - AIzaSyCFTz8DWchZLp0MucH4M7J5ADBf6sNt5N4 + AIzaSyAkFCNnGX5byhhCaX9RbErKD6KiJuDwTbA GCM_SENDER_ID - 410345050732 + 378673531586 PLIST_VERSION 1 BUNDLE_ID co.maonz.Flash-Chat-iOS13 PROJECT_ID - flash-char-81e71 + flashchat-e6040 STORAGE_BUCKET - flash-char-81e71.appspot.com + flashchat-e6040.appspot.com IS_ADS_ENABLED IS_ANALYTICS_ENABLED @@ -29,6 +29,6 @@ IS_SIGNIN_ENABLED GOOGLE_APP_ID - 1:410345050732:ios:01f108d3c8d59afaaf3e49 + 1:378673531586:ios:92cd930a9ddadf8e4f895b \ No newline at end of file diff --git a/Flash Chat iOS13/Message.swift b/Flash Chat iOS13/Message.swift new file mode 100644 index 000000000..b2b0069e7 --- /dev/null +++ b/Flash Chat iOS13/Message.swift @@ -0,0 +1,14 @@ +// +// Message.swift +// Flash Chat iOS13 +// +// Created by Mac on 20.06.2022. +// Copyright © 2022 Angela Yu. All rights reserved. +// + +import Foundation + +struct Message { + let sender: String + let body: String +} diff --git a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard index 63c382e0f..eacfc2abc 100644 --- a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard +++ b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard @@ -190,7 +190,7 @@ - + @@ -215,7 +215,7 @@ - + @@ -282,16 +282,6 @@ - - - - - - - - - - @@ -345,6 +335,7 @@ + @@ -382,7 +373,7 @@ - + diff --git a/Flash Chat iOS13/Views/MessageCell.swift b/Flash Chat iOS13/Views/MessageCell.swift new file mode 100644 index 000000000..85d2f0c47 --- /dev/null +++ b/Flash Chat iOS13/Views/MessageCell.swift @@ -0,0 +1,28 @@ +// +// MessageCell.swift +// Flash Chat iOS13 +// +// Created by Mac on 22.06.2022. +// Copyright © 2022 Angela Yu. All rights reserved. +// + +import UIKit + +class MessageCell: UITableViewCell { + + @IBOutlet weak var messageBubbles: UIView! + @IBOutlet weak var messageBubble: UIView! + @IBOutlet weak var label: UILabel! + @IBOutlet weak var avatarImageView: UIImageView! + override func awakeFromNib() { + super.awakeFromNib() + messageBubbles.layer.cornerRadius = messageBubble.frame.size.height / 5 + } + + override func setSelected(_ selected: Bool, animated: Bool) { + super.setSelected(selected, animated: animated) + + // Configure the view for the selected state + } + +} diff --git a/Flash Chat iOS13/Views/MessageCell.xib b/Flash Chat iOS13/Views/MessageCell.xib new file mode 100644 index 000000000..9a037ec57 --- /dev/null +++ b/Flash Chat iOS13/Views/MessageCell.xib @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/.DS_Store b/Pods/.DS_Store index e2f7b9ddd8a2e836542a9bd37028f05d8923005d..a4a7595cb6dee8f6f01895aa203e54f5f68b9dee 100644 GIT binary patch literal 8196 zcmeHM-A>d%6g~q8UHOj~iHS)QFF`~=qVZn&T~6vZMch1ar=FDWeL?lYh+C8FaA~H}}P7LFAO5yih zyGmdB~9)P>~)nL;}Zqlhq-M zsca`Qfs;t!BvQ{JJ)sEc9XL~}lPD%q-!%i8fo=x)>^?{q*%XnJJHK-(t)PDUEsF$? zQHcTyq3Khds<_tZ4n3uHdP(KX*`KlBbJ$TTLwkb`sFC8=q-RI@YS8gIm+^WA(r!hK z^n1e(yWzP}JU{_{c7lYfnSFfTNt4yU@t_pY_P{s zTcIY!w5_r)Zb3I2xt_Rl!r=XXWU%M>{>ooj&S)pcA4et2-;FNbQyf(g4-47g!%l=q zxU@x4&f2e>wW*%gR$(VbR6|HBpBa5T3$neM?6T9D9o!Sn)ZDl@qs3Szx2_?316+0T z;I#suG3o}87J3jNSJ_Iej)!wwu`;e$c_mr!zy!15bg_ZCsh|ybmn#U?k}}QEjOtAw z7K(mB(LZIB0(>ioN%U`no@2d2Z*aL7l@IP5^l*!|Aw$(CGp$${qG!;usK&ba5y`bK zyJC$?Hus_H0byfY%!Vyl4e3DjC1dhA6O*f0Ct15m`#`4Lj7y7Gy^9Lh=EGAQo?U>@=R&*S=&VY zfXapS+KH49+~jc_QXa=4kN+@4+k`4(im7ZT5>HV6`-cF%|C2l$WOp~c|6jWO{|`dU Bb^QPU delta 144 zcmZp1XfcprU|?W$DortDU=RQ@Ie-{Mvv5r;6q~50C<+o_1dA0gWHRJ2q%-(1ByKER z&dkU$d4iza=1BtDjFU}8^(J2xEt^~}X0!RVm<;2@hHZ=4IXDEFftrCpfE!4-f(+eQ a_?>w&zlwxd!wdj)l^T5j diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 09c2f509b..7ec83a246 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -12421,102 +12421,102 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 00196DB86F777EE3545D422DE44E59DC /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; - 0053C09A789A18B70B272E4C7999B5C2 /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; - 006370D3AB38F7A18323959A5B124EBC /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; + 00196DB86F777EE3545D422DE44E59DC /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; + 0053C09A789A18B70B272E4C7999B5C2 /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; + 006370D3AB38F7A18323959A5B124EBC /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; 007E478F711A95978A982971A9CE62C1 /* FIRPhoneMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorInfo.h; sourceTree = ""; }; 008B402552EA81359C03A2F1A123C46A /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; 008F4B3C6F0E06E4FD9D7DA2C275B58B /* 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 = ""; }; - 00906BD353BE3993A86E048716F07463 /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_impl.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc; sourceTree = ""; }; - 009EA74778F49391B657C1ADB3136375 /* p_ed25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ed25519_asn1.c; path = src/crypto/evp/p_ed25519_asn1.c; sourceTree = ""; }; - 00AAD56CAED7DA6A268CE5099AD23829 /* time_zone_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_posix.cc; path = absl/time/internal/cctz/src/time_zone_posix.cc; sourceTree = ""; }; + 00906BD353BE3993A86E048716F07463 /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_impl.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc; sourceTree = ""; }; + 009EA74778F49391B657C1ADB3136375 /* 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 = ""; }; + 00AAD56CAED7DA6A268CE5099AD23829 /* 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 = ""; }; 00B301FF6B0D0904B8E79378F6BA801C /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - 00B97DC0B4F0A9A2781B471DD61B80C6 /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; + 00B97DC0B4F0A9A2781B471DD61B80C6 /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; 00BCD1AAA6A80ED84AED36F68B1A2BC3 /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; - 00CA251CC67B1A10B62249E6F289493A /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; - 010289DABB71A1F8AE36F645B8AEC3F5 /* create_channel_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel_internal.cc; path = src/cpp/client/create_channel_internal.cc; sourceTree = ""; }; + 00CA251CC67B1A10B62249E6F289493A /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; + 010289DABB71A1F8AE36F645B8AEC3F5 /* 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 = ""; }; 0123B5EDEF4A14D9CE53785D79866588 /* 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 = ""; }; 01268477E858E2ABCF1131613B5DA3BA /* blake2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = src/include/openssl/blake2.h; sourceTree = ""; }; - 013A3C96BE818C952C2F61253C4447B7 /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; + 013A3C96BE818C952C2F61253C4447B7 /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; 0146E1CD2F2087892BF302BEF9ED10D1 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; 014FC73DC3798CBA3556EF64137339AD /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; 015628D7908A39BCEDAA4DC667A59F1B /* log_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_writer.h; path = db/log_writer.h; sourceTree = ""; }; 01781C87CC57C5C88AE2D6A81AC6E2C8 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; - 017B4D3115AFB76F1624CEE3990915EF /* xds_http_rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_rbac_filter.cc; path = src/core/ext/xds/xds_http_rbac_filter.cc; sourceTree = ""; }; + 017B4D3115AFB76F1624CEE3990915EF /* 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 = ""; }; 01800632BDFA1E468AA8488910C566CC /* FIRPhoneMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo.m; sourceTree = ""; }; 019E255684CF5E4E67BB030E7BA79D47 /* FIRAuthUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUserDefaults.h; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.h; sourceTree = ""; }; - 01A73D0F5DB33ABBF6E4AC874879FC13 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; name = decode_fast.c; path = third_party/upb/upb/decode_fast.c; sourceTree = ""; }; + 01A73D0F5DB33ABBF6E4AC874879FC13 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode_fast.c; path = third_party/upb/upb/decode_fast.c; sourceTree = ""; }; 01A843A33D35776B086BE103F200DB87 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; 01AEC015FE1445352B9747AD1ED24B6F /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 01B074B71CF6D4B2259BFB54CB344488 /* regex.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c"; sourceTree = ""; }; + 01B074B71CF6D4B2259BFB54CB344488 /* regex.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c"; sourceTree = ""; }; 01D620E45BD3B627CFB5EFB06408CF0A /* 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 = ""; }; - 01DC83CB71CDF7A5E4311BACFCDB6718 /* p_dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_dsa_asn1.c; path = src/crypto/evp/p_dsa_asn1.c; sourceTree = ""; }; - 01EDFCF5D02DCACA3EA8AFE078A56372 /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = child_policy_handler.cc; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc; sourceTree = ""; }; + 01DC83CB71CDF7A5E4311BACFCDB6718 /* 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 = ""; }; + 01EDFCF5D02DCACA3EA8AFE078A56372 /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = child_policy_handler.cc; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc; sourceTree = ""; }; 01EE093E08022F490ED57BBA14ED7A2C /* 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 = ""; }; - 01F6F82C661D7152709701740551DACD /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; + 01F6F82C661D7152709701740551DACD /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; 02173BFC07D0ACF77EFD0440C35F6ADE /* FIRVerifyCustomTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.m; sourceTree = ""; }; 021CAE0AF549BDF7E56675BDE315D6F3 /* binder_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_credentials.h; path = include/grpcpp/security/binder_credentials.h; sourceTree = ""; }; - 021E812C1CB6B8EED60F900BC62BFBE4 /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; + 021E812C1CB6B8EED60F900BC62BFBE4 /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; 0228BFD2D8F7A219960F55844927159E /* fixed_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fixed_array.h; path = absl/container/fixed_array.h; sourceTree = ""; }; 02308FC28DF717728421322BBB9E69D7 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - 023E7A4FD949DD5A05E54771B81175EE /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; + 023E7A4FD949DD5A05E54771B81175EE /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; 024230598FD5AE93CFD3BB4682695DDC /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; 024C89604927D27644723703E868DD3F /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 0267924C8F19F2FEBFEE014398CF5B95 /* memory_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_mutation_queue.cc; path = Firestore/core/src/local/memory_mutation_queue.cc; sourceTree = ""; }; - 026CF909AE1FC9038429B4C1362CC194 /* resolver.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c"; sourceTree = ""; }; - 0273057575C7E444F4111D593C90F269 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; + 0267924C8F19F2FEBFEE014398CF5B95 /* 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 = ""; }; + 026CF909AE1FC9038429B4C1362CC194 /* resolver.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c"; sourceTree = ""; }; + 0273057575C7E444F4111D593C90F269 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; 027585817CA4B742EB65A933E9F49051 /* algorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = algorithm.h; path = absl/algorithm/algorithm.h; sourceTree = ""; }; 0277278048B10C5B447C256BB4AC9539 /* FIRGetOOBConfirmationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.h; sourceTree = ""; }; - 028EF34AE84526E6C26DE38242962783 /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; - 02B122C13233EF7357BDD2C2048ADBF8 /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; + 028EF34AE84526E6C26DE38242962783 /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; + 02B122C13233EF7357BDD2C2048ADBF8 /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; 02B2BB94E5E99839ADAD523E880D5433 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; 02BA4924C1398B9F2F4BA5A3721B3520 /* memory_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator.h; path = include/grpc/event_engine/memory_allocator.h; sourceTree = ""; }; - 02BB76AB70FEEB044C2A851E3C5D8D7A /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; + 02BB76AB70FEEB044C2A851E3C5D8D7A /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; 02CBA8D76D22BE12FB8B493C4E990614 /* FIRVerifyPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.h; sourceTree = ""; }; - 02D2B48E16EEC1144F53F98D6DF73E99 /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; - 030219229BE5BA4A5D3AE7087D1EA6FA /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; - 03281A9BADCE0D3F956492525C03536B /* time_zone_if.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_if.cc; path = absl/time/internal/cctz/src/time_zone_if.cc; sourceTree = ""; }; - 032B23396516DD7A1D65EA615F8B3100 /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; + 02D2B48E16EEC1144F53F98D6DF73E99 /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; + 030219229BE5BA4A5D3AE7087D1EA6FA /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; + 03281A9BADCE0D3F956492525C03536B /* 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 = ""; }; + 032B23396516DD7A1D65EA615F8B3100 /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; 034BCB0F41D9A8B27B9EBCF60671A30A /* GoogleDataTransport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleDataTransport-umbrella.h"; sourceTree = ""; }; 03609EE23B2A58FDA5D12A5ACF25C22C /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; 0366B5B04275EA3FB9BFE02F9677EC3B /* FIRGameCenterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.h; sourceTree = ""; }; 0376345AF21E938726D4C37516953861 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/cipher_extra/internal.h; sourceTree = ""; }; - 039EC92088632A500B7C3599B617F460 /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digestsign.c; path = src/crypto/evp/digestsign.c; sourceTree = ""; }; + 039EC92088632A500B7C3599B617F460 /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digestsign.c; path = src/crypto/evp/digestsign.c; sourceTree = ""; }; 03A7283B85028846B7E4135773D656AE /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; 03B4748FCF138B7F32F0D3DFEE60261E /* FIRAuthExceptionUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthExceptionUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.m; sourceTree = ""; }; 03BB18A312AA070D83984098067EF81C /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; 03CBEB05F5C2867A917CFACE48EE047E /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; 03CC49C3B01DDFAA85DCE5CE96BAC488 /* leveldb-library.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "leveldb-library.modulemap"; sourceTree = ""; }; - 03CF886D35E03504769A922450BA26E2 /* grpc_plugin_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_plugin_registry.cc; path = src/core/plugin_registry/grpc_plugin_registry.cc; sourceTree = ""; }; + 03CF886D35E03504769A922450BA26E2 /* 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 = ""; }; 03CFAE30300C2CB9B8F90D95DF297431 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/codegen/serialization_traits.h; sourceTree = ""; }; 03EC09431A21733C761853523EB8F447 /* 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 = ""; }; 03F12C9E238CE872C4E5AD15A6C3E880 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; 0405A327F66A55E127C175A635EA75EF /* comparator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comparator.h; path = include/leveldb/comparator.h; sourceTree = ""; }; 0408792A4E03A83D5F5BF0199DC0EDA0 /* FIROAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h; sourceTree = ""; }; 042477EE03D18F13CA08BC910A4C1C5B /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - 042663A38D86B562E4534551771A4C7C /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; - 043C52BD169975B49DE0110B63349929 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_channel_arg_filter.cc; path = src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; - 04734AB5AF74C9DE20D6D8802C0D9E18 /* global_config_env.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = global_config_env.cc; path = src/core/lib/gprpp/global_config_env.cc; sourceTree = ""; }; - 0477AA6CF1B36AB9D8D58B968512BE93 /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; + 042663A38D86B562E4534551771A4C7C /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; + 043C52BD169975B49DE0110B63349929 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_channel_arg_filter.cc; path = src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; + 04734AB5AF74C9DE20D6D8802C0D9E18 /* global_config_env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = global_config_env.cc; path = src/core/lib/gprpp/global_config_env.cc; sourceTree = ""; }; + 0477AA6CF1B36AB9D8D58B968512BE93 /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; 048D1F5340C8D142942B39088DF3692B /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 048FEF35773E60377A355722C171880E /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; - 0491067842479745D9A5CAD7353AAA78 /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; + 048FEF35773E60377A355722C171880E /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; + 0491067842479745D9A5CAD7353AAA78 /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; 04B224CEDF61E100299461ECBB4903B8 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; 04F5AED04D774AFB1CDCBB0DBAF1EF04 /* delocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delocate.h; path = src/crypto/fipsmodule/delocate.h; sourceTree = ""; }; 051CFB6A3B8577E17C6BA543DE60655B /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - 051E0706CD1594CB9D0E0EEC0FEF443E /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; + 051E0706CD1594CB9D0E0EEC0FEF443E /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; 0531C82DEF32707A12F9BAAD419C0D84 /* FIRAuthSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSettings.m; path = FirebaseAuth/Sources/Auth/FIRAuthSettings.m; sourceTree = ""; }; - 0534BDFCB05C211DF3E7EE6BAFA4C0DE /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; + 0534BDFCB05C211DF3E7EE6BAFA4C0DE /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; 055EFA98F92611F06DD3C545A984662D /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; 05618ED55E3E7779BEAA558D074CE80B /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - 05945181925CD902E93B6CC28DB4AFF4 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; + 05945181925CD902E93B6CC28DB4AFF4 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; 05A808793AA18FCA269DAA9351AD071B /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; 05B52CECB19A59ADE013965B3CF4E76C /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; 05C92F39C7289C2EAC486EF107DDABC2 /* 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; }; 05EA13824C8A5CD55A0A214BC6BF4D41 /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - 05EFEE8FC860BAFA424F582FFF89EA53 /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; + 05EFEE8FC860BAFA424F582FFF89EA53 /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; 061468C930A9406C41997EBF42AFBFFA /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 06214A3F5DE0E5E97C1063F4E5C4CA1E /* memory_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_index_manager.cc; path = Firestore/core/src/local/memory_index_manager.cc; sourceTree = ""; }; + 06214A3F5DE0E5E97C1063F4E5C4CA1E /* 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 = ""; }; 065A175D13E9F5A503FB946D1E6E7577 /* poisson_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poisson_distribution.h; path = absl/random/poisson_distribution.h; sourceTree = ""; }; 0664AB84AF0389F95F3FC70A01619934 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; 067F7C4805B5D6AB5D84D50A8C75A24A /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/internal/thread_annotations.h; sourceTree = ""; }; @@ -12525,223 +12525,223 @@ 068F4F2AD949B3784C2592596099624D /* benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = benchmark.h; path = third_party/re2/util/benchmark.h; sourceTree = ""; }; 06926B472FFC0205E8282A2D7A31D8F2 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; 069431580008CFFAF0D9587C310BBE0D /* numbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = absl/strings/numbers.h; sourceTree = ""; }; - 0694CC8E77BC7242BAA35ABFFC770A96 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; + 0694CC8E77BC7242BAA35ABFFC770A96 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; 06AC0FAC7618637C3953ED6E44B0C385 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = src/include/openssl/pem.h; sourceTree = ""; }; - 06D1CBF5AA64F18DF7A7F11F8C8BAAA0 /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; - 06D7201BBAE66F5F5EB93E1C26B1A9BC /* proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proctitle.c; path = src/unix/proctitle.c; sourceTree = ""; }; + 06D1CBF5AA64F18DF7A7F11F8C8BAAA0 /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; + 06D7201BBAE66F5F5EB93E1C26B1A9BC /* proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proctitle.c; path = src/unix/proctitle.c; sourceTree = ""; }; 06E8C0DF14FF51DF74FF293B35FF204A /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/support/client_callback.h; sourceTree = ""; }; 06EC2F2CF14E9C040A2BD2941944B9AB /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; 06EDAC646F9CB4D8FB7544DB9E4B3170 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = nanopb; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 06FF34CB5D2A71F22620F073FC69B8F0 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; - 06FFACA6173CC50666E4F1FBB01CEE73 /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; + 06FFACA6173CC50666E4F1FBB01CEE73 /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; 07002E4BA9911E20048212DE5F9AFA94 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; 0705F9ABAC36C590EFDAC7F72B26B23D /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - 0709B52C49A88C084216A76A6F816228 /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_pipe.cc; path = src/core/lib/iomgr/wakeup_fd_pipe.cc; sourceTree = ""; }; + 0709B52C49A88C084216A76A6F816228 /* 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 = ""; }; 0722CA38178D3469D4A31A4E2D184724 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; 0724A62328D18B5FF33F489B2E8AF32B /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - 072500AACD576F7DC05582E9B1DFDBDF /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; + 072500AACD576F7DC05582E9B1DFDBDF /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; 072F84CD6CCF8A5485861B918443B04A /* filter_block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_block.h; path = table/filter_block.h; sourceTree = ""; }; - 0730AE84D2819641162A6300FBCE6EE9 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; - 073613EE37261B08AE096C4B0237270E /* security_policy_setting.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_policy_setting.cc; path = src/core/ext/transport/binder/client/security_policy_setting.cc; sourceTree = ""; }; + 0730AE84D2819641162A6300FBCE6EE9 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; + 073613EE37261B08AE096C4B0237270E /* 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 = ""; }; 07382E56313C06E32A5F9E349763D60E /* distributions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distributions.h; path = absl/random/distributions.h; sourceTree = ""; }; - 076E8422B2457B1D1A05CF6DEB52DBED /* typed_struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = typed_struct.upb.c; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c"; sourceTree = ""; }; + 076E8422B2457B1D1A05CF6DEB52DBED /* typed_struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upb.c; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c"; sourceTree = ""; }; 078EBFF284ED55CA70999B58346EE0E4 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = ""; }; - 0797522F0757818688768EF3E2DDCAF7 /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; - 07A4D675C662616BC90B0903CE156B19 /* hpack_parser_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_parser_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.cc; sourceTree = ""; }; + 0797522F0757818688768EF3E2DDCAF7 /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; + 07A4D675C662616BC90B0903CE156B19 /* 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 = ""; }; 07CB71535C746BAF1620AA034BBDE774 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - 07E5EF2CFF5AE29412E5C52C1C300013 /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; + 07E5EF2CFF5AE29412E5C52C1C300013 /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; 07FF581D6BB3B05C9AF491F90CF4D209 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; 080BF6BA304EA321ACCB99762F26AAE6 /* FIRAuthRPCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCRequest.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h; sourceTree = ""; }; 080DE6EFA8EC19278A62615B0C71678C /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/support/string_ref.h; sourceTree = ""; }; - 082DF87FA64B8555F0A22DA75AA9F2FB /* array_contains_any_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = array_contains_any_filter.cc; path = Firestore/core/src/core/array_contains_any_filter.cc; sourceTree = ""; }; + 082DF87FA64B8555F0A22DA75AA9F2FB /* 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 = ""; }; 083EF7D483AD0F08BCFBDC447AC45C24 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; - 0844B64D32D2C69136CAA33112FE2A5C /* cord_rep_ring.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_ring.cc; path = absl/strings/internal/cord_rep_ring.cc; sourceTree = ""; }; + 0844B64D32D2C69136CAA33112FE2A5C /* cord_rep_ring.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_ring.cc; path = absl/strings/internal/cord_rep_ring.cc; sourceTree = ""; }; 085C3CC27446B08D4C41619ADA1FFEA8 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; 086A00C6B82047D630270FA8F2293E5E /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; - 08784A562EE7D4FC1393492470FA3740 /* any.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = any.upb.c; path = "src/core/ext/upb-generated/google/protobuf/any.upb.c"; sourceTree = ""; }; + 08784A562EE7D4FC1393492470FA3740 /* any.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upb.c; path = "src/core/ext/upb-generated/google/protobuf/any.upb.c"; sourceTree = ""; }; 0880E5E502915CE446F292A316BD0F99 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; 088F51DD14C05CBC4BF0EDE08728A569 /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; 08940229C89D7950A341B63D6AB7CC4A /* errno.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno.h; path = include/uv/errno.h; sourceTree = ""; }; 0898EA6E1B9E38125C80EF6E982755C2 /* FIRAuthErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrorUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h; sourceTree = ""; }; 08C312EBBA1FDC1A9251678212F6CDD3 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/support/slice.h; sourceTree = ""; }; - 08C9E81DF8129B2441B49C3B9F58FDB5 /* client_authority_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_authority_filter.cc; path = src/core/ext/filters/http/client_authority_filter.cc; sourceTree = ""; }; - 08D11470660AEEBB1A2B43742F4981AC /* channel_argument_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_argument_option.cc; path = src/cpp/server/channel_argument_option.cc; sourceTree = ""; }; + 08C9E81DF8129B2441B49C3B9F58FDB5 /* 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 = ""; }; + 08D11470660AEEBB1A2B43742F4981AC /* 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 = ""; }; 08DDE828A858C6E4F07FFE0412B333FC /* FirebaseCoreDiagnostics-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreDiagnostics-umbrella.h"; sourceTree = ""; }; 08E13ECFF2261B5D89C0EE63092ECCAC /* 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 = ""; }; - 08F56A47FD47D730D49C1F0AC250A77B /* xds_channel_stack_modifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_channel_stack_modifier.cc; path = src/core/ext/xds/xds_channel_stack_modifier.cc; sourceTree = ""; }; + 08F56A47FD47D730D49C1F0AC250A77B /* 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 = ""; }; 0910BB72DBDAB252986ABE9082C84128 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; 091FB50E071D7F52B2E598CBE4CB007C /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; 09219B6965124D7CC583F7CAC19DFB79 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = include/grpcpp/security/credentials.h; sourceTree = ""; }; - 093ABA6BEE3C66EF9CE1EA5CF4CB0985 /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; + 093ABA6BEE3C66EF9CE1EA5CF4CB0985 /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; 093F493F9F1708A9BFC9D9CC9BC36975 /* 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 = ""; }; - 09400F7221E967EAE32529B40064FBBB /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; + 09400F7221E967EAE32529B40064FBBB /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; 0944E9991EEBB1536BFF771198D50168 /* atomic_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_hook.h; path = absl/base/internal/atomic_hook.h; sourceTree = ""; }; - 095F41438DE678236B51E05C4C1BCABE /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver_registry.cc; path = src/core/lib/resolver/resolver_registry.cc; sourceTree = ""; }; + 095F41438DE678236B51E05C4C1BCABE /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver_registry.cc; path = src/core/lib/resolver/resolver_registry.cc; sourceTree = ""; }; 09A090612BA2D7BFA79EFEDE37B18C92 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/civil_time.h; sourceTree = ""; }; - 09B5ED5FF8068FC36343D9D450D40A8C /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; + 09B5ED5FF8068FC36343D9D450D40A8C /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; 09CA4E7C19F69D3FE6A6BF7440C67970 /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; 09E52E93BE86560301BEE49508E9FB1D /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - 09E7A06DB41077318FAA5DD03E533C32 /* stacktrace_x86-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_x86-inl.inc"; path = "absl/debugging/internal/stacktrace_x86-inl.inc"; sourceTree = ""; }; - 09EEFC05621D99984DB106D7160A0F6B /* http_connection_manager.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connection_manager.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c"; sourceTree = ""; }; + 09E7A06DB41077318FAA5DD03E533C32 /* 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 = ""; }; + 09EEFC05621D99984DB106D7160A0F6B /* http_connection_manager.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c"; sourceTree = ""; }; 09FC723A640A7C6E406509A5D7C99137 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/leveldb/slice.h; sourceTree = ""; }; 09FE1F9AD0B515229BE968DEFB62C134 /* Libuv-gRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Libuv-gRPC-Info.plist"; sourceTree = ""; }; - 0A0303B9017479130F16A465F2F04856 /* xds_cluster_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_resolver.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc; sourceTree = ""; }; + 0A0303B9017479130F16A465F2F04856 /* xds_cluster_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_resolver.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc; sourceTree = ""; }; 0A1F48A2124CD01860DD254F8F89D30A /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; 0A4786DF96C94BEA793A9C5243A9B166 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; 0A511B16F2FB557F764FEF88CA4007B1 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; - 0A688A2D2E641068B51C641ABE7E28A3 /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; + 0A688A2D2E641068B51C641ABE7E28A3 /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; 0A712F3423A4271693EE4062740620EC /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/impl/codegen/completion_queue.h; sourceTree = ""; }; 0A762BAA1F593DCF2C5508248C2A6CA5 /* 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 = ""; }; 0A79386C98FA637B665D093A6F55CF97 /* FIRAuthTokenResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult_Internal.h; sourceTree = ""; }; - 0A7AAD420E50EEB88CD367F5F33EC811 /* string_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_posix.cc; path = src/core/lib/gpr/string_posix.cc; sourceTree = ""; }; + 0A7AAD420E50EEB88CD367F5F33EC811 /* string_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_posix.cc; path = src/core/lib/gpr/string_posix.cc; sourceTree = ""; }; 0A9302647F77DB9B0C47A2E75BA59730 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; 0A9F1467DC185EDC5A308A1DBA464392 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; - 0A9F46A999C47653013D3AD854352507 /* leveldb-library */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "leveldb-library"; path = leveldb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0A9F46A999C47653013D3AD854352507 /* leveldb.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = leveldb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 0AAEA5BD6F309E1297C47444FDF40F85 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; - 0AB212895931C1B830B838DED31B7217 /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; - 0AB3814B23C67744B7CECFC49B590473 /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; + 0AB212895931C1B830B838DED31B7217 /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; + 0AB3814B23C67744B7CECFC49B590473 /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; 0AB859AFBDF808CD70C9D89CA6B9B99F /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; 0ABE47976C44914C32EDB89690E04A02 /* clock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clock.h; path = absl/time/clock.h; sourceTree = ""; }; - 0ACCE5A9C30AC47F61D3D672E8987859 /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_lib.c; path = src/crypto/x509v3/v3_lib.c; sourceTree = ""; }; + 0ACCE5A9C30AC47F61D3D672E8987859 /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_lib.c; path = src/crypto/x509v3/v3_lib.c; sourceTree = ""; }; 0ADCA58369C9314BEF7FFB6A8CEB21CA /* container_memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container_memory.h; path = absl/container/internal/container_memory.h; sourceTree = ""; }; - 0AE2E7AF105E233173E49B4CACCBD993 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; - 0AFE4AF6BADEF74CD5AB394132C86502 /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; + 0AE2E7AF105E233173E49B4CACCBD993 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; + 0AFE4AF6BADEF74CD5AB394132C86502 /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; 0AFFEBCF57F8E8D177A9585FBF21FD22 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; 0B024046359A066F10122E255FB19398 /* regexp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regexp.h; path = third_party/re2/re2/regexp.h; sourceTree = ""; }; - 0B0867D9044F28DE7A8D0F3752F15364 /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; + 0B0867D9044F28DE7A8D0F3752F15364 /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; 0B19703192BDEA80C0D6167C677F1992 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 0B201214C661C3A8FD1F30C55195002E /* eds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c"; sourceTree = ""; }; + 0B201214C661C3A8FD1F30C55195002E /* eds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c"; sourceTree = ""; }; 0B34697920BDD3E002E685D02B9B736A /* substitute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitute.h; path = absl/strings/substitute.h; sourceTree = ""; }; 0B44DAC196971F034F3867F3EE421F42 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; 0B8179009EE4DD7ECDA95B6EFF5C52D3 /* 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 = ""; }; 0B93226B0B0A22CD8D9078E645982A33 /* 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 = ""; }; 0BA6652B31A30D9100EAF433066BAB5C /* charconv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv.h; path = absl/strings/charconv.h; sourceTree = ""; }; 0BAFAE40DB8443E0742EAE7D49932F70 /* 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 = ""; }; - 0BB83BF4747E3E2DC80C6A3D27F17062 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; + 0BB83BF4747E3E2DC80C6A3D27F17062 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; 0BC4CA131A02B29CEF60507DB1FB7CA0 /* curve25519_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_32.h; path = src/third_party/fiat/curve25519_32.h; sourceTree = ""; }; - 0BE317B351B87093CD8D68D54373ADD5 /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; - 0BFEA9FB016A5AE331A2240DF946E29F /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; + 0BE317B351B87093CD8D68D54373ADD5 /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; + 0BFEA9FB016A5AE331A2240DF946E29F /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; 0C084BC6B112233FFF6F45D47996A083 /* FIRWithdrawMFAResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFAResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.m; sourceTree = ""; }; 0C2095D264506F6C53E5E27B74BCD841 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 0C20B6C2076551C65ACE4BD190E6370B /* address_is_readable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = address_is_readable.cc; path = absl/debugging/internal/address_is_readable.cc; sourceTree = ""; }; + 0C20B6C2076551C65ACE4BD190E6370B /* 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 = ""; }; 0C2F2A3AFEA0D5D4CE3E81BE0F27E0E0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs7/internal.h; sourceTree = ""; }; 0C4D1B3173B704482EA24D9558A28E8B /* 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 = ""; }; 0C5D2D56A0F193DFEAD2D94346235DC2 /* FIRAuthGlobalWorkQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthGlobalWorkQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h; sourceTree = ""; }; - 0C64F12EEE81876D57916AC68BD7D1FA /* plugin_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = plugin_credentials.cc; path = src/core/lib/security/credentials/plugin/plugin_credentials.cc; sourceTree = ""; }; + 0C64F12EEE81876D57916AC68BD7D1FA /* 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 = ""; }; 0C672BF1FEBDD57C63F7CDC1885E5132 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; 0C7C8DE9C3148DC7DC53B3FC43D7D64B /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; - 0C8A983BD476638DE1C216B609CD70D1 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.c"; sourceTree = ""; }; - 0C99074E38B6B0820675CB8246AEA784 /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; - 0C9DEA443590B430A4E0BA9F624F705B /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; - 0CA261CBF415CADD6F1C0A78F1D53B0E /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; + 0C8A983BD476638DE1C216B609CD70D1 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.c"; sourceTree = ""; }; + 0C99074E38B6B0820675CB8246AEA784 /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; + 0C9DEA443590B430A4E0BA9F624F705B /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; + 0CA261CBF415CADD6F1C0A78F1D53B0E /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; 0CBD774048CF5B1198B6641A7BD58BA6 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; 0CBDFA6628F937717EC9AB0E3DF6D750 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; 0CC06ADACEB1AD6CC264389DC5E29D7A /* pcre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcre.h; path = third_party/re2/util/pcre.h; sourceTree = ""; }; - 0CC2DB07FA7217E9ABC8066A6BCC9DE7 /* alts_grpc_integrity_only_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; 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 = ""; }; - 0CCC667FD79B757B4B75C1B064DCA254 /* pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pcre.cc; path = third_party/re2/util/pcre.cc; sourceTree = ""; }; + 0CC2DB07FA7217E9ABC8066A6BCC9DE7 /* 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 = ""; }; + 0CCC667FD79B757B4B75C1B064DCA254 /* pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pcre.cc; path = third_party/re2/util/pcre.cc; sourceTree = ""; }; 0CE331B4A316B5158904BD0AF7046BD1 /* 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 = ""; }; 0D0BF6EEBE006543AB748051BC0E4836 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; 0D148EE2BDFF3B88B93A22DB6FC96920 /* 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 = ""; }; - 0D1D9B7FF9B113BD0D08F70177D4C792 /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; + 0D1D9B7FF9B113BD0D08F70177D4C792 /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; 0D1F365029B9CABA2F3F6E843CE8148A /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; 0D1FF92140BB1CB967A19E2081E537C2 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; 0D4CFE1B1B76A3CA107FA023E08C0AD3 /* GTMSessionFetcher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GTMSessionFetcher.modulemap; sourceTree = ""; }; - 0D6973E9FD4602D0EB5B6674ED6FC4A1 /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; - 0D705894742B7AECE42C642F46A004D0 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; - 0D73C62F74C60A0038816BE380CCFB1C /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; - 0D7A711902FAFD58B0D51DE512C7F0D9 /* endpoint.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c"; sourceTree = ""; }; - 0D919EFA463CBC77F2DFA8AE1343A8D2 /* binder_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_server.cc; path = src/core/ext/transport/binder/server/binder_server.cc; sourceTree = ""; }; + 0D6973E9FD4602D0EB5B6674ED6FC4A1 /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; + 0D705894742B7AECE42C642F46A004D0 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; + 0D73C62F74C60A0038816BE380CCFB1C /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; + 0D7A711902FAFD58B0D51DE512C7F0D9 /* endpoint.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c"; sourceTree = ""; }; + 0D919EFA463CBC77F2DFA8AE1343A8D2 /* 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 = ""; }; 0D979F92BDF244F13B3F04D4D97CEDC4 /* 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 = ""; }; - 0DA0F50CCF3ED2684A872EC348D3A902 /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; + 0DA0F50CCF3ED2684A872EC348D3A902 /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; 0DB4086DE19DF3D4B5EA8E42A0AE451D /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; 0DBCD24DC3549995F4AFF9F0732601CA /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = absl/base/port.h; sourceTree = ""; }; - 0DC4E75E5DDF106E57A9722F56804C51 /* channel_stack_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_type.cc; path = src/core/lib/surface/channel_stack_type.cc; sourceTree = ""; }; - 0DCB722C5580C3374611E817F413456F /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c"; sourceTree = ""; }; + 0DC4E75E5DDF106E57A9722F56804C51 /* 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 = ""; }; + 0DCB722C5580C3374611E817F413456F /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c"; sourceTree = ""; }; 0DCEA46D88606CCB5D800F62EC370C36 /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = src/include/openssl/rsa.h; sourceTree = ""; }; - 0DE70EB1DB433C520CB28E01F35FB98F /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; + 0DE70EB1DB433C520CB28E01F35FB98F /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; 0DEA7A9E2B2A73D4BC2A0E2670F1570F /* FIRMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion.m; sourceTree = ""; }; 0DEF4D15E45040D73F213FCB8E3E80D1 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 0DF09409695F4FDF672633C9D5849BFE /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; - 0E0678F2283ACC9375BA35241FC9DA07 /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; - 0E23C7BB6473142E7DEC19539D93EE45 /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; - 0E41D4B5CEA53B9599AEAEF856A2193A /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; + 0DF09409695F4FDF672633C9D5849BFE /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; + 0E0678F2283ACC9375BA35241FC9DA07 /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; + 0E23C7BB6473142E7DEC19539D93EE45 /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; + 0E41D4B5CEA53B9599AEAEF856A2193A /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; 0E4A86F5754EB2CF5721F8EE31369243 /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = ""; }; 0E52B729C93F31620E4F86CB92E33AFC /* FIRFacebookAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthProvider.m; sourceTree = ""; }; - 0E6E9F7FE8111771743D8A312B998CD2 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; + 0E6E9F7FE8111771743D8A312B998CD2 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; 0E93FFB691C4C2349B8A0794CA0D9F4C /* FIRAuthProtoStartMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.h; sourceTree = ""; }; 0EC00C7BC8E5010AB1C694A593AEB2C8 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - 0EC397F569D7D2B5DF68B5054B7260C3 /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; + 0EC397F569D7D2B5DF68B5054B7260C3 /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; 0EF741DBBAF3D551A3DDC41183993E16 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 0F00A066CADA55FF51D7D626B01EB967 /* firebase_auth_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_auth_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_auth_credentials_provider_apple.mm; sourceTree = ""; }; - 0F181B431456C24E0CFCE7C42D099FCB /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; + 0F00A066CADA55FF51D7D626B01EB967 /* 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 = ""; }; + 0F181B431456C24E0CFCE7C42D099FCB /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; 0F1C751E0CE7DED158C474DA45E6235C /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 0F71C1A9FAC37518FD3EDB1CDC02041A /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; + 0F71C1A9FAC37518FD3EDB1CDC02041A /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; 0F73F97959AF9D69E929C6E5757BE61B /* 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 = ""; }; - 0F8B9887C1AD07620725764CEC688E60 /* chttp2_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_transport.cc; path = src/core/ext/transport/chttp2/transport/chttp2_transport.cc; sourceTree = ""; }; - 0FB52414EBBC4DA5816C50E7F604E478 /* uv-data-getter-setters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "uv-data-getter-setters.c"; path = "src/uv-data-getter-setters.c"; sourceTree = ""; }; - 0FE2327D3ABB7E533C6F89E6F421DC8D /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; - 1016B6533B6334EFBB41E2B0CE9C6394 /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; + 0F8B9887C1AD07620725764CEC688E60 /* 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 = ""; }; + 0FB52414EBBC4DA5816C50E7F604E478 /* uv-data-getter-setters.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "uv-data-getter-setters.c"; path = "src/uv-data-getter-setters.c"; sourceTree = ""; }; + 0FE2327D3ABB7E533C6F89E6F421DC8D /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; + 1016B6533B6334EFBB41E2B0CE9C6394 /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; 10214F472CD8AC6AEF85EFE63A53ADAA /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = ""; }; - 103D92F53A7D5B6EEFCB5EC837F89384 /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; - 103FEFFB2EC36F91DEB028C07461AC3C /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; + 103D92F53A7D5B6EEFCB5EC837F89384 /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; + 103FEFFB2EC36F91DEB028C07461AC3C /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; 1049A0D6E69B70BEC0AFA43348A93D7B /* FIREmailLinkSignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.h; sourceTree = ""; }; 10545D77D9C1A01F70E4CF99E617B359 /* FIRGitHubAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.h; sourceTree = ""; }; 105F6F2140CC8863CCF1D3A3E2F88F44 /* 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 = ""; }; 10641A04E2D53ADED2BF610738EF0077 /* 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 = ""; }; 1089C2A3EEDC66C119FFFEFE90A42246 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; 108BB5CD4241C0B32A859E2013DB7D69 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - 10A7F346BF20586EC4872FBDE4276041 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; - 10AF5FCFDDD0356D5800BBAD7AEE4A7F /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; + 10A7F346BF20586EC4872FBDE4276041 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; + 10AF5FCFDDD0356D5800BBAD7AEE4A7F /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; 10BD02C45CEC656C881CDDFD5DDBAA2E /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; 10E00607DDE6722CFFD71796198FD0C1 /* layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = layout.h; path = absl/container/internal/layout.h; sourceTree = ""; }; - 10FEF88193B0994E2CA1AAEBBDA1E5BE /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; - 11051F2C2550E6A52CB1022EE4E6A73D /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; - 11182830AC95751FBC2D7BAB97A3C855 /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; + 10FEF88193B0994E2CA1AAEBBDA1E5BE /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; + 11051F2C2550E6A52CB1022EE4E6A73D /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; + 11182830AC95751FBC2D7BAB97A3C855 /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; 111E5827F6D4C420280AFC436891B7C8 /* bind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind.h; path = absl/strings/internal/str_format/bind.h; sourceTree = ""; }; 1139487F571F09B49842A7C5D226CF35 /* 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 = ""; }; 113E06EC08373C0D0F5E4A4199783EA7 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; 1140BCB2FCA2D020C4A7274336D89450 /* 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 = ""; }; 11711EFED4ECA4494FD187B235B8CED2 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 117D757718A4B70AB2CC66799941DE34 /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver.cc; path = src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; + 117D757718A4B70AB2CC66799941DE34 /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver.cc; path = src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; 11AF86F9EF33BD7DF6343A3B802DCB6A /* FIRSetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.h; sourceTree = ""; }; 11D3F44C7D05DC20BBFDA01D021730AD /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; 11D542BDE4D613A4E0F0C144F1E103AD /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = src/include/openssl/ossl_typ.h; sourceTree = ""; }; 11F203843CE6C7F85506A846373E8668 /* 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 = ""; }; 1201AC5472C2B4881F5AC493870EB983 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - 1205F2889A96427D02569CA6D5C6EBBC /* pid_controller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pid_controller.cc; path = src/core/lib/transport/pid_controller.cc; sourceTree = ""; }; + 1205F2889A96427D02569CA6D5C6EBBC /* pid_controller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pid_controller.cc; path = src/core/lib/transport/pid_controller.cc; sourceTree = ""; }; 120ABBD46E407F53EDDB9B34A20925BB /* FIROAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h; sourceTree = ""; }; - 120F321E499139142877333EE282EFA8 /* duration.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.upb.c; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.c"; sourceTree = ""; }; + 120F321E499139142877333EE282EFA8 /* duration.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upb.c; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.c"; sourceTree = ""; }; 12135DF65E1F0C38D520F5E15E5F19D4 /* beta_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = beta_distribution.h; path = absl/random/beta_distribution.h; sourceTree = ""; }; 122B00E616010981938DF57113539D0F /* str_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join.h; path = absl/strings/str_join.h; sourceTree = ""; }; 12429A113E4A88203438C07F04B7E0CE /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; 1245C30E3BBB5BA0EBD6EEF7E7995ADA /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 1245EA7C4914BC48F3409224DF7FF30F /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; + 1245EA7C4914BC48F3409224DF7FF30F /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; 125E7C9EE2431EDDF575C7D0014726E5 /* hide_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hide_ptr.h; path = absl/base/internal/hide_ptr.h; sourceTree = ""; }; 128BC5B34F91B957F31D73633B525055 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/ec_extra/internal.h; sourceTree = ""; }; - 129BAE49CC1DFD58DA05B51BD7686FCB /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; + 129BAE49CC1DFD58DA05B51BD7686FCB /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; 129DD4B06CDBCBED6594DD40D9AF5C06 /* testutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testutil.h; path = util/testutil.h; sourceTree = ""; }; 12E4771F2C7E5533F2EB5C0B2B1BE64B /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/impl/codegen/sync_stream.h; sourceTree = ""; }; - 12F4B140B7C4D81DC3382CF6BA78EA92 /* pcy_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_lib.c; path = src/crypto/x509v3/pcy_lib.c; sourceTree = ""; }; + 12F4B140B7C4D81DC3382CF6BA78EA92 /* pcy_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_lib.c; path = src/crypto/x509v3/pcy_lib.c; sourceTree = ""; }; 1305C0B1E6A416895C6478B37E56FEA2 /* malloc_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = malloc_counter.h; path = third_party/re2/util/malloc_counter.h; sourceTree = ""; }; 131FF3949C22D0E3E07D35ACAC8B2A95 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; 13274DA87457F27BAA718528E39BE269 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; 13382D730A85BD6B46B67A89B976C2DB /* FIRSignInWithGameCenterRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.m; sourceTree = ""; }; - 1347E56BC088529A1E10AB3717C8D528 /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; + 1347E56BC088529A1E10AB3717C8D528 /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; 1360D9522A38AFAB3B1B9BC5E8F4E907 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; 13718E78D781CAC908AD69A4AB91F365 /* binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder.h; path = src/core/ext/transport/binder/wire_format/binder.h; sourceTree = ""; }; - 137F0BDD0FBCC30B59A95FBC6AAD5190 /* byte_buffer_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer_cc.cc; path = src/cpp/util/byte_buffer_cc.cc; sourceTree = ""; }; + 137F0BDD0FBCC30B59A95FBC6AAD5190 /* 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 = ""; }; 1380CA1378FD02FCA99D6BD6F8090838 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; 1398368D2FCC28ACF4105DAE1E07AD10 /* 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 = ""; }; 139DD96B689C090DA3A1D2413E0C3867 /* thd_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd_id.h; path = include/grpc/support/thd_id.h; sourceTree = ""; }; 13B72E44E24DD163410789E57AD9C4CE /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = third_party/re2/util/util.h; sourceTree = ""; }; 13B7D7297C71BB30F9F2F238C429AB7F /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - 13CB3D02B8DAA0AF8C9CD37D36DA7E73 /* a_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_enum.c; path = src/crypto/asn1/a_enum.c; sourceTree = ""; }; + 13CB3D02B8DAA0AF8C9CD37D36DA7E73 /* a_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_enum.c; path = src/crypto/asn1/a_enum.c; sourceTree = ""; }; 13D5B46034460DA584B40760F42C4DAA /* direct_mmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = direct_mmap.h; path = absl/base/internal/direct_mmap.h; sourceTree = ""; }; - 13D8F5B5DC6F45DA97BDDE979B842BBF /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upb.c; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.c"; sourceTree = ""; }; + 13D8F5B5DC6F45DA97BDDE979B842BBF /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb.c; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.c"; sourceTree = ""; }; 13EA44A2BB6451D6C319F7A782688203 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 13EB72C9B72C5613092F38C7C7222FF2 /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = options.cc; path = util/options.cc; sourceTree = ""; }; - 13F35B7C63EC49466E0CB66EC7EAF51C /* binder_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_server_credentials.cc; path = src/core/ext/transport/binder/server/binder_server_credentials.cc; sourceTree = ""; }; + 13EB72C9B72C5613092F38C7C7222FF2 /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = options.cc; path = util/options.cc; sourceTree = ""; }; + 13F35B7C63EC49466E0CB66EC7EAF51C /* 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 = ""; }; 1439354E8BD02F0DCBF6F1E3843F824F /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; 1441803C9A9B4E9C8B17DFA2EE420B4D /* FIRVerifyClientRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.h; sourceTree = ""; }; 14551A96E7B02E8A89F4E0A37FE0DC54 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/support/atm_windows.h; sourceTree = ""; }; @@ -12749,50 +12749,50 @@ 146BB52D40F58BF18FD4E0C931AF55D0 /* FIRAuthBackend+MultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAuthBackend+MultiFactor.h"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"; sourceTree = ""; }; 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreInternal; path = FirebaseCoreInternal.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 149F71522D39AD65C4611C373A772AE7 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/curve25519/internal.h; sourceTree = ""; }; - 14AF2DEDAF2B5F381E2B74C997BBD786 /* pcy_node.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_node.c; path = src/crypto/x509v3/pcy_node.c; sourceTree = ""; }; + 14AF2DEDAF2B5F381E2B74C997BBD786 /* pcy_node.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_node.c; path = src/crypto/x509v3/pcy_node.c; sourceTree = ""; }; 14BB0A90551130C509C2157B8D216850 /* 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 = ""; }; 14E9EE3053D8D4EC207AB9CCB6DD5777 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 14FB3AFD1D96EB8865F674ED16F8F9BC /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.c"; sourceTree = ""; }; - 14FB791CFD1D50E67A6DEBBA1157911D /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/cds.cc; sourceTree = ""; }; - 150445BDBA63DA02F8A9D99400A7FA80 /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; - 151D3117B5252D9812C5A2E2ECC77483 /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; - 15202DDC387AB84537DCCCEB03246778 /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; + 14FB3AFD1D96EB8865F674ED16F8F9BC /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.c"; sourceTree = ""; }; + 14FB791CFD1D50E67A6DEBBA1157911D /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cds.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/cds.cc; sourceTree = ""; }; + 150445BDBA63DA02F8A9D99400A7FA80 /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; + 151D3117B5252D9812C5A2E2ECC77483 /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; + 15202DDC387AB84537DCCCEB03246778 /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; 152C94B565CDFA1CA88FB0B2EA1A4669 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; 1531EAFD9B94BF49DE0811872AE81E53 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = absl/random/internal/traits.h; sourceTree = ""; }; 15321B846B04CB1F6A881383F0DB88B1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/bn/internal.h; sourceTree = ""; }; - 15367EA7C9BEA1146813DE3A0264036D /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; - 153B0A74C9969A6DC4C81676C52EFBEA /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; - 153C2CA41EDAE13B8C59C9858FAAACA2 /* endpoint_pair_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_event_engine.cc; path = src/core/lib/iomgr/endpoint_pair_event_engine.cc; sourceTree = ""; }; - 15463D2206CE9BDF45FF9F3C957A5952 /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; - 1579B526F8670F3007B2CBF0B82CB2C4 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c"; sourceTree = ""; }; + 15367EA7C9BEA1146813DE3A0264036D /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; + 153B0A74C9969A6DC4C81676C52EFBEA /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; + 153C2CA41EDAE13B8C59C9858FAAACA2 /* endpoint_pair_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_event_engine.cc; path = src/core/lib/iomgr/endpoint_pair_event_engine.cc; sourceTree = ""; }; + 15463D2206CE9BDF45FF9F3C957A5952 /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; + 1579B526F8670F3007B2CBF0B82CB2C4 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c"; sourceTree = ""; }; 158272B4DFAE0E8688667BC5564BD303 /* GDTCCTUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploadOperation.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m; sourceTree = ""; }; 1599917140E7483D292ACA488797E8F1 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; 1599A6F8C155019451146520A7A94AB9 /* 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 = ""; }; 15BB6E7E26F87757A2EB4F37788D9228 /* 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 = ""; }; 15BF773627AFF8CA45BA4352D0262F77 /* 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; }; 15D0A302434364C99AF37CD09B4CC84E /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/support/interceptor.h; sourceTree = ""; }; - 160FF1B64A68C3D8B86C39F366D491E0 /* channel_args_preconditioning.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args_preconditioning.cc; path = src/core/lib/channel/channel_args_preconditioning.cc; sourceTree = ""; }; - 162E2896B50B3D18BC8864E30E9E6311 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; - 164B93CF4BF89AA050D6CF1436CC31F1 /* p256-x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "p256-x86_64.c"; path = "src/crypto/fipsmodule/ec/p256-x86_64.c"; sourceTree = ""; }; - 164E08AB20A64EFAA7F2A8B2D5DEE2B6 /* cds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c"; sourceTree = ""; }; - 164E3F644881E2C2242E7291223033B4 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; + 160FF1B64A68C3D8B86C39F366D491E0 /* 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 = ""; }; + 162E2896B50B3D18BC8864E30E9E6311 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; + 164B93CF4BF89AA050D6CF1436CC31F1 /* p256-x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p256-x86_64.c"; path = "src/crypto/fipsmodule/ec/p256-x86_64.c"; sourceTree = ""; }; + 164E08AB20A64EFAA7F2A8B2D5DEE2B6 /* cds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c"; sourceTree = ""; }; + 164E3F644881E2C2242E7291223033B4 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; 165AF293299953E36888270D3420C4FF /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; 165DD603E57F15999F1C1F665D769035 /* 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 = ""; }; 167230493EAB5869464F695EFD915F34 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; 16879689F72DC8AF3940C9F3C8B7CC01 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/impl/codegen/sync_abseil.h; sourceTree = ""; }; - 16A5313D7B313F88137F8A59086AAF1D /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; + 16A5313D7B313F88137F8A59086AAF1D /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; 16A85F6C2100EF7345C885ACD1142D2B /* FIRGetProjectConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.m; sourceTree = ""; }; 16BF8D2A37975F69B29D91B636352945 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/impl/codegen/client_context.h; sourceTree = ""; }; - 16C6CBCD7F5BAC1B71AB0B1087EB8B8C /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; - 16E16CC3956A82204A9FA94DCB43F459 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; - 16ED48FB8B8CFE8D24F33556B41EBFE9 /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; + 16C6CBCD7F5BAC1B71AB0B1087EB8B8C /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; + 16E16CC3956A82204A9FA94DCB43F459 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; + 16ED48FB8B8CFE8D24F33556B41EBFE9 /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; 16ED6AC448078AE5BC8D36393271F233 /* stacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace.h; path = absl/debugging/stacktrace.h; sourceTree = ""; }; 16EEE417B9EE9219567DCAE5CDAC7A6A /* generate_real.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generate_real.h; path = absl/random/internal/generate_real.h; sourceTree = ""; }; 16F960930908E8DB8DBD6B435D9BEA20 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; 1703CCAA0723A71572E930CB0369F2A0 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; - 170F436A7AE394349E0529630C42DA91 /* server_chttp2_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_chttp2_posix.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc; sourceTree = ""; }; + 170F436A7AE394349E0529630C42DA91 /* server_chttp2_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_chttp2_posix.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc; sourceTree = ""; }; 1718D18788DABDA40F35E9DBA31BC622 /* 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 = ""; }; - 171BA3B97CD6CB3ED48D6A2E0B877CFF /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; + 171BA3B97CD6CB3ED48D6A2E0B877CFF /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; 171F490AD49757C7C83F7B0E22ACB1AC /* charmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charmap.h; path = src/crypto/asn1/charmap.h; sourceTree = ""; }; 173E5A4C450048B6C6C6B302691C1974 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; 1758E1C18988D684BE111C96BDA7C639 /* 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 = ""; }; @@ -12802,36 +12802,36 @@ 17B73653A6E77DBE5B4C4D0CAE6EFFD7 /* unicode_groups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_groups.h; path = third_party/re2/re2/unicode_groups.h; sourceTree = ""; }; 17BCED408F6BD628CEEC4DA6BAD202B5 /* merger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merger.h; path = table/merger.h; sourceTree = ""; }; 17C760A7FE09BDFDC990826F5DB964C9 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 17CE8D39CE1F05421B72E10D0F414CDA /* write.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/write.nanopb.cc; sourceTree = ""; }; + 17CE8D39CE1F05421B72E10D0F414CDA /* 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 = ""; }; 17D6DB6DF4AA4B150207E77864495927 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; 17E6A8E601C57AE36A52B3079F9DCA48 /* FIRAuthURLPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthURLPresenter.m; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.m; sourceTree = ""; }; 17F11C58B1B9088856035B4F5B4CB2E9 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; 181B0BFD03F5CD3E793CA4720EA9BF49 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = util/random.h; sourceTree = ""; }; 185ABA0DC179F9A6BCA461B114A1240C /* 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 = ""; }; 186278B4B3E5C34D3C237CB0FBC9B477 /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; - 186841B5446847B2D2442BE32E6BFEE1 /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; + 186841B5446847B2D2442BE32E6BFEE1 /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; 18698A808976E119CF4B0AE4CD22F90E /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; 186AB981471D537A21CF9D1312C54DF1 /* FIRStartMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.m; sourceTree = ""; }; 189058C32983FBBDF09FD677C6F662ED /* casts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = casts.h; path = absl/base/casts.h; sourceTree = ""; }; 18BE2E6F39B4A8181A5196C60C54BE48 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - 18BE6DD368D580B5F84D88AB5E966528 /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; + 18BE6DD368D580B5F84D88AB5E966528 /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; 18CE6C911AA09F7B71282A834834102B /* FIREmailAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailAuthProvider.m; sourceTree = ""; }; 18D5C614881B5B957AC21C397F05C4A8 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/symbolize.h; sourceTree = ""; }; 18F4037BAD085E86E22627E24B18A6EB /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/internal/symbolize.h; sourceTree = ""; }; 18F4AB179872D100B381C405083401D3 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; 18F8F6DB7AC44C59BF6198BA77DA9ABE /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; - 18FABB9F395C08BEAB2D3BB7826E8115 /* syntax.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c"; sourceTree = ""; }; + 18FABB9F395C08BEAB2D3BB7826E8115 /* syntax.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c"; sourceTree = ""; }; 190D8C358B73CFC381C6F594D00A22FE /* p256-x86_64-table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64-table.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64-table.h"; sourceTree = ""; }; - 190EFD6CB0B891E1ECD261122E6CAD43 /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; + 190EFD6CB0B891E1ECD261122E6CAD43 /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; 1911113E0FBF13CFF9132E5FF7685228 /* gRPC-C++ */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "gRPC-C++"; path = grpcpp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 19171CACBB3AEE462136219C2747D233 /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; + 19171CACBB3AEE462136219C2747D233 /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; 191F3DCAC92B9D78ABAC07E8A5CB5FE4 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; 191F6F794486933834A6A920B289F428 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = util/logging.h; sourceTree = ""; }; - 19435DE142DE1C914D59812EBA19D370 /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; + 19435DE142DE1C914D59812EBA19D370 /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; 194A4A4DA190C984B4CB804B9DAA877E /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; 194D9E902B5032863A3872DFA38643E3 /* re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = re2.h; path = third_party/re2/re2/re2.h; sourceTree = ""; }; 1960D9067D5E66F3BF55125055D12786 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - 197F775A96CBA9FF12D0845FF18C85FB /* endpoint_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c"; sourceTree = ""; }; + 197F775A96CBA9FF12D0845FF18C85FB /* endpoint_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c"; sourceTree = ""; }; 19986ED50EFBCBF49E698A69657018CE /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; 19CCF5110D48217F6AC727BE7DF28C9F /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = ""; }; 19DD9438E0B2C19378670964B332C600 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; @@ -12839,24 +12839,24 @@ 1A2A76BF99EF52992D62D0379718EEBB /* FirebaseCoreDiagnostics-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreDiagnostics-Info.plist"; sourceTree = ""; }; 1A587CE9582409E4F9F8A18CE9770F81 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/impl/codegen/server_callback.h; sourceTree = ""; }; 1A6247254B867F3497DF7993E91C7A6E /* 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 = ""; }; - 1A6F5673FB2F36B1D67FCF0357FDA396 /* cord_rep_btree_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree_reader.cc; path = absl/strings/internal/cord_rep_btree_reader.cc; sourceTree = ""; }; + 1A6F5673FB2F36B1D67FCF0357FDA396 /* 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 = ""; }; 1A72859B749BE05E10B9A733448830F3 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; 1A7B226E2860EE4A4C2039C99B8C1A95 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; 1A7D1E1EBC55384C3ABA51B3A3FAF830 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; 1A806E667BE778D74815FCA1EC42366C /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; 1A8884C73DFDFC7B06F018B8496D3382 /* FIRActionCodeSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRActionCodeSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRActionCodeSettings.h; sourceTree = ""; }; - 1A9428B14F787924821F5CF6A803F297 /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; + 1A9428B14F787924821F5CF6A803F297 /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; 1AA58BB75490621BF68FE5B54FF306C0 /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; 1AC602E91A9265BD8C92854BE65FBDAA /* 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 = ""; }; 1ADAB5732A0C083A127FF5BFBE807394 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; 1AE9E31F364445B9B1803AC0FEC39BE1 /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 1B03DD138741DE953FF1480D4440815A /* murmur_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = murmur_hash.cc; path = src/core/lib/gpr/murmur_hash.cc; sourceTree = ""; }; + 1B03DD138741DE953FF1480D4440815A /* murmur_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = murmur_hash.cc; path = src/core/lib/gpr/murmur_hash.cc; sourceTree = ""; }; 1B03E6D535171A4A06590C4066009F2A /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; 1B07088A0727FFC2066081EE02A8EC01 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; 1B07DEBFBDA24D1D3F2412DF0F81656B /* 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 = ""; }; 1B104BE6B4F17949616FD4316E82ED18 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; 1B239BBF54E94500FE09868C3FA904EE /* workaround_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = workaround_list.h; path = include/grpc/support/workaround_list.h; sourceTree = ""; }; - 1B2C8D3AB989E23FB1D5E93C680949B8 /* stacktrace_arm-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_arm-inl.inc"; path = "absl/debugging/internal/stacktrace_arm-inl.inc"; sourceTree = ""; }; + 1B2C8D3AB989E23FB1D5E93C680949B8 /* 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 = ""; }; 1B3B8A3B521B2D672486E73D221BB385 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rand/internal.h; sourceTree = ""; }; 1B5D05458B59200757E195D54A4C21DC /* FIRAuthDefaultUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDefaultUIDelegate.h; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h; sourceTree = ""; }; 1B6718A703B00EB14A073DCFB26491B3 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; @@ -12866,53 +12866,53 @@ 1B798171AF0544B2942D9ED30CF2C7F0 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = third_party/re2/util/logging.h; sourceTree = ""; }; 1B86D006209A2606308FB2EFB58A22C2 /* FIROAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthProvider.m; sourceTree = ""; }; 1B8757EE11A45905CD3C789A32FD30A4 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 1B901BC05BCB1833AAB7767F5E40870A /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_util.cc; path = src/core/lib/security/util/json_util.cc; sourceTree = ""; }; + 1B901BC05BCB1833AAB7767F5E40870A /* 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 = ""; }; 1BB0A3E584BEF0F85A6C342E357C3BD2 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - 1BB45A6DDE7C6F47DD54F7FEBE6E9432 /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; + 1BB45A6DDE7C6F47DD54F7FEBE6E9432 /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; 1BC6E86F97EB3A0A9244A0E6A3DBC8F6 /* 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 = ""; }; - 1BC93782BDCC796123A9A98BCDEB70D5 /* aes_gcm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aes_gcm.cc; path = src/core/tsi/alts/crypt/aes_gcm.cc; sourceTree = ""; }; - 1BCB8C2ABCAD8DA94966E4B5E657A0E3 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c"; sourceTree = ""; }; + 1BC93782BDCC796123A9A98BCDEB70D5 /* 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 = ""; }; + 1BCB8C2ABCAD8DA94966E4B5E657A0E3 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c"; sourceTree = ""; }; 1BDAA77E4D4E97DF2602DA099F5A30B8 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - 1C18DC46EB1303F2504D3AC050477F96 /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; - 1C25D6A2BE37006EE65C81CC8D71A26A /* def.c */ = {isa = PBXFileReference; includeInIndex = 1; name = def.c; path = third_party/upb/upb/def.c; sourceTree = ""; }; + 1C18DC46EB1303F2504D3AC050477F96 /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; + 1C25D6A2BE37006EE65C81CC8D71A26A /* def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def.c; path = third_party/upb/upb/def.c; sourceTree = ""; }; 1C31AC9CEE840BF57B39B2D7E2026AD0 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - 1C31F25B1C421AC8C5E1B06DAF5190D1 /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; + 1C31F25B1C421AC8C5E1B06DAF5190D1 /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; 1C37AB794E353DD50C86E9F36B53870B /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - 1C4396D42440B47D972C429C01F5B858 /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; + 1C4396D42440B47D972C429C01F5B858 /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; 1C4E3D4CC02E345C5BD0D5E5FD013CD9 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = src/include/openssl/aes.h; sourceTree = ""; }; 1C55468D656DA68A0FEBB52B02448A1D /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; 1C8AD2D5CC93E773F479FD4EFAFA1E14 /* event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine.h; path = include/grpc/event_engine/event_engine.h; sourceTree = ""; }; - 1C8BE7FC0C0D8C3D4E18CDE3BEA5AFB0 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; + 1C8BE7FC0C0D8C3D4E18CDE3BEA5AFB0 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; 1CA236348EC6D78D789EE5B5434CF7D1 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; 1CA4882F4984BEFDC9C47DF4E1CBDCEC /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - 1CBC7A784CB8D56FD8185B16AEB663FA /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; - 1CD343035A33161B83D3029139BDC01E /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; + 1CBC7A784CB8D56FD8185B16AEB663FA /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; + 1CD343035A33161B83D3029139BDC01E /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; 1CE7A83080E48FDA75B4EACB16B8D1C3 /* 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 = ""; }; 1CF483FE30166C6F9C092B78F1DA9732 /* 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 = ""; }; 1D0BBA69D5C9396D599BF177EC2668EC /* FIRAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h; sourceTree = ""; }; 1D152EEF95A1B79151411BC6D91C8806 /* 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 = ""; }; 1D15FB3B94278C883D217A51158C8F9A /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; - 1D1B18550D6F805BD7DC779F15784C34 /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = google_c2p_resolver.cc; path = src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; - 1D1D46CAAD98F49D19E437BF915C6B4C /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; + 1D1B18550D6F805BD7DC779F15784C34 /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = google_c2p_resolver.cc; path = src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; + 1D1D46CAAD98F49D19E437BF915C6B4C /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; 1D4084D4193630FD21926688D6848A62 /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = src/include/openssl/md4.h; sourceTree = ""; }; - 1D4811168E4A7A39B2BC5B601D65B9A4 /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; + 1D4811168E4A7A39B2BC5B601D65B9A4 /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; 1D7F91ABBB27B2B6603C4A42C6795236 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; - 1DE593DAF8F85BA6D4B4D6CDCE8D272F /* text_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = text_encode.c; path = third_party/upb/upb/text_encode.c; sourceTree = ""; }; + 1DE593DAF8F85BA6D4B4D6CDCE8D272F /* text_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = text_encode.c; path = third_party/upb/upb/text_encode.c; sourceTree = ""; }; 1DEADFADE249FA65EDDB9B9EC3554ABD /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/codegen/channel_interface.h; sourceTree = ""; }; - 1DEBFE4A61DCBA5995E99136EBB60381 /* time_zone_fixed.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_fixed.cc; path = absl/time/internal/cctz/src/time_zone_fixed.cc; sourceTree = ""; }; + 1DEBFE4A61DCBA5995E99136EBB60381 /* 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 = ""; }; 1DEE616058B744730B0D59A55A36A813 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - 1DEF0FE1C57D52046F1679B62D82BBC9 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c"; sourceTree = ""; }; - 1E1076622A68901C6A2041768AD5D700 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; - 1E3D851D11D6B61DD65016960CECCCD0 /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; + 1DEF0FE1C57D52046F1679B62D82BBC9 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c"; sourceTree = ""; }; + 1E1076622A68901C6A2041768AD5D700 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; + 1E3D851D11D6B61DD65016960CECCCD0 /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; 1E4E73ACFC00C2148A3968C43975F0CD /* gRPC-C++-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-C++-dummy.m"; sourceTree = ""; }; 1E52F4B3EA787624F36715A80D0ED675 /* FIRStartMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.h; sourceTree = ""; }; - 1E5E8D5A2E417044141E107B704A2AFC /* fs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fs.c; path = src/unix/fs.c; sourceTree = ""; }; - 1E99D68AFE1BC93F0C2874C72C6E4A27 /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; - 1EB69F46ABEB0B6AD59483A6A99CE5E3 /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; + 1E5E8D5A2E417044141E107B704A2AFC /* fs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fs.c; path = src/unix/fs.c; sourceTree = ""; }; + 1E99D68AFE1BC93F0C2874C72C6E4A27 /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; + 1EB69F46ABEB0B6AD59483A6A99CE5E3 /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; 1EC6CC8FEAC7C2A5DF91F812DA05106E /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; - 1EC6D0B2A934D5E1720D46892D868F10 /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; - 1EE6DBBF7386BDD194B872FB77EE4117 /* server_config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_config_selector.cc; path = src/core/ext/filters/server_config_selector/server_config_selector.cc; sourceTree = ""; }; - 1EF4D8A0006A4598309ADE1047F01D6F /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; + 1EC6D0B2A934D5E1720D46892D868F10 /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; + 1EE6DBBF7386BDD194B872FB77EE4117 /* server_config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_config_selector.cc; path = src/core/ext/filters/server_config_selector/server_config_selector.cc; sourceTree = ""; }; + 1EF4D8A0006A4598309ADE1047F01D6F /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; 1EFAF1562947C29EB39F3F46749E7784 /* FIRUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUser.h; sourceTree = ""; }; 1EFFFF6D25138BB3DA03E950E6B4E009 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; 1F0F1ED998B308C7D5AF20A3BA40232E /* GDTCOREndpoints_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h; sourceTree = ""; }; @@ -12921,12 +12921,12 @@ 1F3F5ABE756FFB0C88CEF34B25192312 /* nonsecure_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nonsecure_base.h; path = absl/random/internal/nonsecure_base.h; sourceTree = ""; }; 1F4ED41D435D163928AFE2FFB17FF36C /* version_edit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_edit.h; path = db/version_edit.h; sourceTree = ""; }; 1F66012B53DADA982C07E04F86E2CBD2 /* 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 = ""; }; - 1F6FC346A052F9DB23C8B2447686F55A /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ia5.c; path = src/crypto/x509v3/v3_ia5.c; sourceTree = ""; }; + 1F6FC346A052F9DB23C8B2447686F55A /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ia5.c; path = src/crypto/x509v3/v3_ia5.c; sourceTree = ""; }; 1FA7EAA56B657EF8C16E2544E895206D /* leveldb-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.debug.xcconfig"; sourceTree = ""; }; 1FB05CFF0090FD6BD34C158303B2D784 /* BoringSSL-GRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-prefix.pch"; sourceTree = ""; }; 1FF0051089C60C7E7165197BD3E5A3CA /* 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 = ""; }; 1FFFF58013F964E342FC7BFA429875C7 /* abseil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.release.xcconfig; sourceTree = ""; }; - 201389BFE7A89264E2E4CA963DED02C8 /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; + 201389BFE7A89264E2E4CA963DED02C8 /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; 20223C01D2404ED06B88642B8B6A8511 /* 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 = ""; }; 204A7CA3893FC0E86FC7AF6E7DC09EB3 /* 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 = ""; }; 205B82C2AE7FB26CE9CC8CABF4CA119C /* str_cat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_cat.h; path = absl/strings/str_cat.h; sourceTree = ""; }; @@ -12935,108 +12935,108 @@ 209719DEF4DC58AD4FBCD23512B758EC /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/internal/function_ref.h; sourceTree = ""; }; 20A0CE992004A9426ABBC87C8A9F6DC1 /* randen_hwaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_hwaes.h; path = absl/random/internal/randen_hwaes.h; sourceTree = ""; }; 20D46D7A1A5F88080AB5F54DE174971E /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - 20F372708514C259F15778DEF50A5681 /* ev_epollex_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_epollex_linux.cc; path = src/core/lib/iomgr/ev_epollex_linux.cc; sourceTree = ""; }; + 20F372708514C259F15778DEF50A5681 /* ev_epollex_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_epollex_linux.cc; path = src/core/lib/iomgr/ev_epollex_linux.cc; sourceTree = ""; }; 2119AC896E16E18FF0B4C0F4DD01D5C7 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; 212E4E04C972A790054A66B6563CD0FF /* 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 = ""; }; 2134484353B50F8458CA0604E5FD1AC0 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; 213FAC7B282298253E9DE2551076FE8B /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = src/include/openssl/rand.h; sourceTree = ""; }; - 214B04D720FC7B254E359E8C73D2EA34 /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; - 214DEB6E60ED630E65F21ED4FF7FFF77 /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; + 214B04D720FC7B254E359E8C73D2EA34 /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; + 214DEB6E60ED630E65F21ED4FF7FFF77 /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; 21585847B6ACE5D8A04B10A86825DD22 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; 21654CCB6253D06B1D4BDDF55434D26B /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; 2167347ADE2E4333838FEEC3311BA218 /* 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 = ""; }; - 21685A6AAD2642B772F84140E578B0A8 /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_epoll1_linux.cc; path = src/core/lib/iomgr/ev_epoll1_linux.cc; sourceTree = ""; }; - 217C1B0490B92241DB967CA6CA418AD4 /* bad_any_cast.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_any_cast.cc; path = absl/types/bad_any_cast.cc; sourceTree = ""; }; - 218EE2F0CF0A30A862E8758F5857CE11 /* timestamp.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.upb.c; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.c"; sourceTree = ""; }; + 21685A6AAD2642B772F84140E578B0A8 /* 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 = ""; }; + 217C1B0490B92241DB967CA6CA418AD4 /* 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 = ""; }; + 218EE2F0CF0A30A862E8758F5857CE11 /* timestamp.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upb.c; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.c"; sourceTree = ""; }; 21A5B9C7E61545B76E4EA0DF8218CB77 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; 21DCCDDEFBD25A66AC91F8FCF8ADDC6E /* 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 = ""; }; 21E0824CE197191EA4748AED5AB0F409 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; 21EB6379863FC4D3BA6BD07B6E5036BC /* 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 = ""; }; - 220976223099B776CFEE5AEF80B7B732 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; + 220976223099B776CFEE5AEF80B7B732 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; 221B4E95EBE3473FCFEA9C187412B2DB /* FIRCreateAuthURIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.m; sourceTree = ""; }; 221D8A8F051385514616E6519F967FCD /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; sourceTree = ""; }; - 222D5CD5D1F9F334073952EAF77795A3 /* xds_common_types.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_common_types.cc; path = src/core/ext/xds/xds_common_types.cc; sourceTree = ""; }; + 222D5CD5D1F9F334073952EAF77795A3 /* 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 = ""; }; 2239C4362DD148908BD031839107AB18 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = absl/base/internal/strerror.h; sourceTree = ""; }; 223CBC3027704C73021CD6046B599261 /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; - 22539ED4ED6419590B656234F6A85E51 /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; - 22614C12534A0DA77B903B8EED70F18F /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; + 22539ED4ED6419590B656234F6A85E51 /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; + 22614C12534A0DA77B903B8EED70F18F /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; 226D1191440EAC029F2D6D08503B2D0B /* FIRAuthWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebView.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.h; sourceTree = ""; }; 2275BF8153B0D1D464CAE45994B5BD5B /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; 22828E6A75C6D54E0FCE59C4261CCFEA /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; 22A113D06AA76DBF4562F41B3781E9C2 /* GDTCCTUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploadOperation.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h; sourceTree = ""; }; 22A246B9CD6287F1683AD66E6FE13A18 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; - 22A644ECF56754B4B4DF74E6A40ACAC5 /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_resolver.cc; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc; sourceTree = ""; }; - 22AC2D28592341FF9F2FCB5D9E63E64E /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; + 22A644ECF56754B4B4DF74E6A40ACAC5 /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resolver.cc; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc; sourceTree = ""; }; + 22AC2D28592341FF9F2FCB5D9E63E64E /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; 22ACE164D2C00A15FE6817EE0DF044DC /* uniform_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_helper.h; path = absl/random/internal/uniform_helper.h; sourceTree = ""; }; - 22C4EE5E8A8FDDBD29545F1E50629978 /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; + 22C4EE5E8A8FDDBD29545F1E50629978 /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; 22C62FCFCF0BCD4614045187C1B27BFD /* 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 = ""; }; 22D345E76B9E1F74CAB790D4F3760C79 /* 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 = ""; }; - 22E0EF64C357445231796C90CDDB2DC3 /* grpclb_channel_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_channel_secure.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc; sourceTree = ""; }; + 22E0EF64C357445231796C90CDDB2DC3 /* grpclb_channel_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_channel_secure.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc; sourceTree = ""; }; 230853402A57B29BFE6552B7D2B51FCC /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/slice.h; sourceTree = ""; }; 2310AD88DC074D5CA55FDF1C2208A771 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; - 2313BB422A91B3865C047C93A1C13F67 /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; + 2313BB422A91B3865C047C93A1C13F67 /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; 231FE5ED1ECABA37FE98975101A24994 /* 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 = ""; }; 232E972A47C285CFFEBE1576DDBCB1DD /* unix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix.h; path = include/uv/unix.h; sourceTree = ""; }; 233028B39C6DBA8BBC89EDB37D2B0A41 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/codegen/rpc_method.h; sourceTree = ""; }; 235CC43425366ED60206A650CBDD7AB7 /* 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 = ""; }; - 2362F1A093F5A0B02C13C48CFCA63057 /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; + 2362F1A093F5A0B02C13C48CFCA63057 /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; 236FDF54EC7750B0F5EF5EEF15485592 /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; 237003C6E93AE690EEAB407C47E3479D /* 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 = ""; }; - 23B1C5DB10E572DE6A04CD75C2B520C4 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c"; sourceTree = ""; }; - 23D7E87599070B56E740C1C2545B0E72 /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; - 23E70C2685EECF559FD8D1A5B98E6E42 /* a_i2d_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_i2d_fp.c; path = src/crypto/asn1/a_i2d_fp.c; sourceTree = ""; }; + 23B1C5DB10E572DE6A04CD75C2B520C4 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c"; sourceTree = ""; }; + 23D7E87599070B56E740C1C2545B0E72 /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; + 23E70C2685EECF559FD8D1A5B98E6E42 /* 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 = ""; }; 23EBE03537519CE6BB7C75F49EBA93C7 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; 23EEE0EE5AEC1D97BCB9966C6C910AD2 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/support/sync_windows.h; sourceTree = ""; }; 23F444C749369E35D8C929DC01DD41D0 /* FIRAuthExceptionUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthExceptionUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h; sourceTree = ""; }; 23FE49622F05665B444EB1EF40E26AB9 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; 24032A9C5706531404A71BA4BB02939A /* filename.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filename.h; path = db/filename.h; sourceTree = ""; }; 240A7D21E041DA464BC39040DA88FCF0 /* 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 = ""; }; - 2410EB361482A60F6EB96C7995A9D9A8 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; - 241985D60215FEF6DE94B3F95DE0AFEE /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; - 241F7BD662A57FAD921F7E51E7A17B80 /* tcp_server_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_windows.cc; path = src/core/lib/iomgr/tcp_server_windows.cc; sourceTree = ""; }; + 2410EB361482A60F6EB96C7995A9D9A8 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; + 241985D60215FEF6DE94B3F95DE0AFEE /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; + 241F7BD662A57FAD921F7E51E7A17B80 /* 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 = ""; }; 24261D04D1AAB92CF8F1244AAFA8313F /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; 244335E45C8683CDD25A3A32BE814CC4 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; 2483FF59FA39CF3A44053E5C7C678D77 /* FIRTwitterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.m; sourceTree = ""; }; 248A796EBE99A412DC59BE302B43CA0C /* 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 = ""; }; - 24ACF7FDBEFE569BE1788D2B3CC96992 /* grpc_ares_ev_driver_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc; sourceTree = ""; }; + 24ACF7FDBEFE569BE1788D2B3CC96992 /* grpc_ares_ev_driver_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc; sourceTree = ""; }; 24B7811AD1417EFD760007BABA3F3809 /* Pods-Flash Chat iOS13-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Flash Chat iOS13-acknowledgements.plist"; sourceTree = ""; }; 24BB071A53AE872ABC3A9D5797A66109 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; 24EF0E90A52894A9FDE65FE9F01D4DD1 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; 250A209FA4A1DACD384D3BB6584B2D67 /* 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 = ""; }; 2511ACDEA600A7860F4479462B373DE2 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - 2517A8D97C1C3BFC7DDF2D1CEE2601F1 /* refcount_c11.c */ = {isa = PBXFileReference; includeInIndex = 1; name = refcount_c11.c; path = src/crypto/refcount_c11.c; sourceTree = ""; }; + 2517A8D97C1C3BFC7DDF2D1CEE2601F1 /* refcount_c11.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = refcount_c11.c; path = src/crypto/refcount_c11.c; sourceTree = ""; }; 251BE7664DFB6CFCDED2BEDC9448B275 /* 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 = ""; }; - 251C9D15ECB381146A595D0AE61D8549 /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; + 251C9D15ECB381146A595D0AE61D8549 /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; 254F524B944A594C50A83B4875F42C2E /* 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 = ""; }; - 2553B6B0242BB468D7301153F95211CD /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; + 2553B6B0242BB468D7301153F95211CD /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; 255697C72A715B47AB9A661A94CBA082 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; 256CE2BBC3FD4CFC24A11F0AF4E63EF6 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - 2575528806B23DD6726B5F4B9FFBB8F9 /* timer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.c; path = src/timer.c; sourceTree = ""; }; - 2579B86C049C5FFA3434D76F294DECFF /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c"; sourceTree = ""; }; - 257F33CF7173065407120D50A63780C2 /* socket_option.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_option.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c"; sourceTree = ""; }; - 258B832FB63945A46BE1F8B81F6F4684 /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; + 2575528806B23DD6726B5F4B9FFBB8F9 /* timer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timer.c; path = src/timer.c; sourceTree = ""; }; + 2579B86C049C5FFA3434D76F294DECFF /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c"; sourceTree = ""; }; + 257F33CF7173065407120D50A63780C2 /* socket_option.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c"; sourceTree = ""; }; + 258B832FB63945A46BE1F8B81F6F4684 /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; 25E4A7E6BBFBF0EA50EEEE38D563D632 /* 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 = ""; }; 26044C8A88DBA8070C43339A9D8C66C2 /* 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 = ""; }; 26132B0505FD1F5C6017C3F830906A0E /* 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 = ""; }; 2633CB8F25B0870D37571A671A3D11B5 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/codegen/call_hook.h; sourceTree = ""; }; - 26475598C62DA2BA400EEF0977CC14AC /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; - 264B41E145D441C27ED2ACBCF935E7A3 /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; + 26475598C62DA2BA400EEF0977CC14AC /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; + 264B41E145D441C27ED2ACBCF935E7A3 /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; 26636377EF83406F8696B60416119593 /* 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 = ""; }; 2670E9783D257D7E43A3104A953C57F7 /* cordz_statistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_statistics.h; path = absl/strings/internal/cordz_statistics.h; sourceTree = ""; }; 2677578817C44F7EC0A65F90A311093A /* 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 = ""; }; 2677924889F0BAF829EA6C296F2F417F /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpc/support/time.h; sourceTree = ""; }; 26783FFD06BDFB3076708698B2BEE932 /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; - 268E8B0F9C65AFCF0500BCA88D7A6407 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_parser.cc; path = src/core/ext/filters/fault_injection/service_config_parser.cc; sourceTree = ""; }; - 26937D15CDA7807683604E02EF6A1847 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; + 268E8B0F9C65AFCF0500BCA88D7A6407 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_parser.cc; path = src/core/ext/filters/fault_injection/service_config_parser.cc; sourceTree = ""; }; + 26937D15CDA7807683604E02EF6A1847 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; 26A2410A18AF6C751163F4313DB7FB33 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; 26B8B4EBA6ACD25E2AB454FBDBDAC6BC /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; 26C293EEBD555F0093D25E9338CAC79F /* test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = test.h; path = third_party/re2/util/test.h; sourceTree = ""; }; - 26D09F96E4744FBAA1B641E5ADAC5528 /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; + 26D09F96E4744FBAA1B641E5ADAC5528 /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; 26E13DD99206CFC900786253FACA018A /* 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 = ""; }; 26E90942413AA60D17440D86F28422B1 /* FIRMultiFactor+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactor+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactor+Internal.h"; sourceTree = ""; }; - 26EB6670A7BE940E343F862120174E7C /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - 26F520E1CA138A7A296559A144520015 /* xds_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client_stats.cc; path = src/core/ext/xds/xds_client_stats.cc; sourceTree = ""; }; - 2711A0841A9A031734E61B68B49B1E33 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; + 26EB6670A7BE940E343F862120174E7C /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; + 26F520E1CA138A7A296559A144520015 /* 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 = ""; }; + 2711A0841A9A031734E61B68B49B1E33 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; 27147275BA0B70A69E1075EF4B67F09B /* 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 = ""; }; 272D43B1469F028934436B767A61C6D5 /* FIRFinalizeMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.h; sourceTree = ""; }; 272EAB0B07CEF88D86A697C7A8E149ED /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; @@ -13046,63 +13046,63 @@ 27594DD949E1F1AF56837B70C828F270 /* 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 = ""; }; 276275BCEAEF50D5205E620B2405F40F /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; 277CCD76DA7B067320BA681117836189 /* FIRAuthWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebViewController.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.m; sourceTree = ""; }; - 2788C5C4A897FAEC338FEA9DED0482A7 /* msg.c */ = {isa = PBXFileReference; includeInIndex = 1; name = msg.c; path = third_party/upb/upb/msg.c; sourceTree = ""; }; + 2788C5C4A897FAEC338FEA9DED0482A7 /* msg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = msg.c; path = third_party/upb/upb/msg.c; sourceTree = ""; }; 278F37A20F9EE3B1A2577D97369A38F9 /* ascii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ascii.h; path = absl/strings/ascii.h; sourceTree = ""; }; 27AE0460F042D36393F55774BE28F3D8 /* exponential_biased.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_biased.h; path = absl/profiling/internal/exponential_biased.h; sourceTree = ""; }; 27B0120BD8156120D5B01B0A9DED1493 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; - 27B41D444990669E3462B974E545950B /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; + 27B41D444990669E3462B974E545950B /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; 27B83CCB6B3B7094AA5781C0E039A723 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/sha/internal.h; sourceTree = ""; }; 27D3E3E005C028D8C54EF2B9AEDBD7C5 /* 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 = ""; }; 27EB040C9F6623F53A8CEDBC2A07DE6C /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - 27EED20F777EDB7606ACB8393D53F6EA /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; - 27F4181ADFFDC3F99788E40652CDB660 /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; + 27EED20F777EDB7606ACB8393D53F6EA /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; + 27F4181ADFFDC3F99788E40652CDB660 /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; 280F12DE9BC85D65A9BE1CD815E0F008 /* FIRAuthKeychainServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthKeychainServices.h; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.h; sourceTree = ""; }; 281D7CB2C39238AD997A50924356692A /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; 281DC0E90357AE176BFE2AD6D80A47C4 /* cordz_functions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_functions.h; path = absl/strings/internal/cordz_functions.h; sourceTree = ""; }; 2847383C53A3F02907B58EBA12C564E6 /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; 284DA824411F4BCFABD60A0C33573BFF /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 285A0A08A325E8E833899F82592A8BBB /* secure_channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_channel_create.cc; path = src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc; sourceTree = ""; }; + 285A0A08A325E8E833899F82592A8BBB /* secure_channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_channel_create.cc; path = src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc; sourceTree = ""; }; 289A2528AAF51BACA0EE77CA6C863A58 /* 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 = ""; }; - 289CA993EA579980E413B37B337DFB83 /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; + 289CA993EA579980E413B37B337DFB83 /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; 28A678D600E6B93AA271B7F611DC318B /* 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 = ""; }; - 28BEDF6F585B966C2A9B48BB898EB706 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; + 28BEDF6F585B966C2A9B48BB898EB706 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; 28C218425C921A293F8EC141469AB738 /* darwin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = darwin.h; path = include/uv/darwin.h; sourceTree = ""; }; - 28F5EAD524F4BBF3F2865235F5FD5927 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; + 28F5EAD524F4BBF3F2865235F5FD5927 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; 28F67E9DEFE42E74DEF2154F9947DB82 /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; 28FBC142C4AA69D45856DEB3ABB67C9C /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; 28FD653AF6EE2E8E0101B0B496730D20 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - 28FF6F3483284C0EC671060F3A0F499F /* tcp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp.c; path = src/unix/tcp.c; sourceTree = ""; }; + 28FF6F3483284C0EC671060F3A0F499F /* tcp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tcp.c; path = src/unix/tcp.c; sourceTree = ""; }; 29162625476EED4B899EAA781ED51679 /* seed_material.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_material.h; path = absl/random/internal/seed_material.h; sourceTree = ""; }; - 292127B5970DD256EB9B4D227EC52820 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; + 292127B5970DD256EB9B4D227EC52820 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; 293EFA39415DA874CC9055DB7E3E2EE9 /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; - 294CD7B9276C69405498746C2F4D395E /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_enum.c; path = src/crypto/x509v3/v3_enum.c; sourceTree = ""; }; + 294CD7B9276C69405498746C2F4D395E /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_enum.c; path = src/crypto/x509v3/v3_enum.c; sourceTree = ""; }; 295EB74E5378050D141386E004672B8D /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - 2964F8AF13523FA15B09EDE310B8B483 /* resource.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.nanopb.cc; path = Firestore/Protos/nanopb/google/api/resource.nanopb.cc; sourceTree = ""; }; + 2964F8AF13523FA15B09EDE310B8B483 /* 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 = ""; }; 2965F18933BA8826E8718D022CC72933 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; 296B9FB2DB614DAD2BA84C5A83834DE0 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/include/openssl/cpu.h; sourceTree = ""; }; 297258A7C1F4FAE009597544F8343745 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; 297FC92917D7076EC5381279B860A3BF /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 298253A9952C4F4EDE1ACCE265869CFC /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; + 298253A9952C4F4EDE1ACCE265869CFC /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; 299CDEE2553897BACBD94BFE14463D22 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; 299F7B554D383F28DFF7121F9234D97C /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; 29B6A5C8B82E5BB8F65103C56D6EC7D5 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 29BBFB150446397511913BAF16FEF106 /* tcp_client_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_windows.cc; path = src/core/lib/iomgr/tcp_client_windows.cc; sourceTree = ""; }; + 29BBFB150446397511913BAF16FEF106 /* 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 = ""; }; 29C34BBE3DDDE111AD578FC8259C3D89 /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; 29DC2ADCA18C838ACC4D893D940E986C /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; 29E839E2409C4DEBF613483BB190B433 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; - 29F7778080EB562735F2C40AF72D594A /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; - 2A09129A84D16BC2141876A2ECF39439 /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; - 2A3D6BAECA5BE1975F12C7FCA3B0C62E /* listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c"; sourceTree = ""; }; - 2A45C27079B48D59BF85661F6D3ED49B /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_manager.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc; sourceTree = ""; }; + 29F7778080EB562735F2C40AF72D594A /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; + 2A09129A84D16BC2141876A2ECF39439 /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; + 2A3D6BAECA5BE1975F12C7FCA3B0C62E /* listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c"; sourceTree = ""; }; + 2A45C27079B48D59BF85661F6D3ED49B /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_manager.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc; sourceTree = ""; }; 2A4DB39031B2F9441E734C5161E5FA96 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; 2A550B61F9A6CE6ACE773AA5F2734EF0 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/codegen/grpc_library.h; sourceTree = ""; }; 2A6023FCAA29295E143235996A575562 /* mutexlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutexlock.h; path = util/mutexlock.h; sourceTree = ""; }; - 2A70FB5288867A5EAA0C1F5743344615 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; - 2A7444BC97F1D298FB1712842043CBC8 /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; + 2A70FB5288867A5EAA0C1F5743344615 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; + 2A7444BC97F1D298FB1712842043CBC8 /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; 2A76F1906C8853A58783E519A67E1174 /* leveldb-library-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-umbrella.h"; sourceTree = ""; }; 2A7CA3D6AD61F23A0E12CD6631866A53 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; 2A90AF16F929756ABD2D82DA0C0D638C /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; - 2AA2D49E46F308C2B9D7AEFFF440297F /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; + 2AA2D49E46F308C2B9D7AEFFF440297F /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; 2AA605CFFABB8AFE2AF4D199805E9B53 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; 2AAAC20468B4EA1FF4A649B57A5A3FA8 /* 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 = ""; }; 2AC6F4188AEDBDD96CBF8092C5A0ABB3 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; @@ -13110,56 +13110,56 @@ 2ACDD6D7F925875C5D0B3F4C4C345AB3 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; 2AD7E04B247A048A8B2E9C43B804FDBB /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/slice_buffer.h; sourceTree = ""; }; 2AF97FCF21560E17B42AB9A924396382 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; - 2AF9EE79843E299C5CA738D793A86666 /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; + 2AF9EE79843E299C5CA738D793A86666 /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; 2B108932F308EF62DB064CBBAA1EEAD7 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; 2B24575716E87E99C692991FFA1C4F6F /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - 2B25468BDC04AEF0C0643FBC675902B4 /* insecure_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_security_connector.cc; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.cc; sourceTree = ""; }; + 2B25468BDC04AEF0C0643FBC675902B4 /* 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 = ""; }; 2B5D6CFEE2D2D303F915C5B485902924 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; 2B6BBC2793907037432260D0054EF8C2 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; 2B8A4984270A3A0094AD8696AF5CFEC7 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; 2B90957A6D6006C1C1D3FFCEA5391A00 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; - 2B95705859DA0C47A4F47C74AA021174 /* inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = inproc_transport.cc; path = src/core/ext/transport/inproc/inproc_transport.cc; sourceTree = ""; }; + 2B95705859DA0C47A4F47C74AA021174 /* 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 = ""; }; 2B96B9F8E30E3E523EF8A827500F70E5 /* FIRPhoneAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthProvider.h; sourceTree = ""; }; 2BA5BA0F46B851E957F968A90C435EBA /* FIRAuthProtoStartMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.m; sourceTree = ""; }; 2BB3D20A55446593382E747352ED1281 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; 2BCAAD5971AD4DC59DD30BFCD0F7B2FB /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; - 2BCBF59C495AE53E708AAD10DC35B022 /* socket_utils_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_windows.cc; path = src/core/lib/iomgr/socket_utils_windows.cc; sourceTree = ""; }; + 2BCBF59C495AE53E708AAD10DC35B022 /* 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 = ""; }; 2BD137A8AC8A1CB486DC69A50603A5EB /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h; sourceTree = ""; }; - 2BE9CF2096C3004AA4744BD750E3AFEA /* transport_security_common_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_common_api.cc; path = src/core/tsi/alts/handshaker/transport_security_common_api.cc; sourceTree = ""; }; + 2BE9CF2096C3004AA4744BD750E3AFEA /* 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 = ""; }; 2BFF89B8F40635722A0E211E8D2AC34C /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; 2C162A8765788186600371216F98F67D /* 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 = ""; }; 2C23DDAC09916FA1C2F317B501B5A9C4 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; 2C37C2024A74B505A1B63B1BE5BEC548 /* 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 = ""; }; - 2C4551AC6FC31FB427136348DC26800C /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; + 2C4551AC6FC31FB427136348DC26800C /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; 2C57EEA26AD6BBA77AE13C7A4D4FFFC3 /* 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 = ""; }; 2C60B7A7C032805CF2ADE7B597C33DBA /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; 2C6AE7A334E057ACCE60193479DD98EE /* 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 = ""; }; 2C6D86BA89D5C38DF0769CD58B4FFA71 /* char_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = char_map.h; path = absl/strings/internal/char_map.h; sourceTree = ""; }; - 2C6F632ECF7BDA73193731720C29D133 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; + 2C6F632ECF7BDA73193731720C29D133 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; 2C7AA62AE0F3FFB59513C0F688C50545 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ec/internal.h; sourceTree = ""; }; - 2C8C251885ABD3047EBAF2443F9E18F9 /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; + 2C8C251885ABD3047EBAF2443F9E18F9 /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; 2CB024760AADDA5047FAE3B20A5C4C83 /* 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 = ""; }; 2CE893101F2901BF8553CA56AC9EAB06 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - 2CFEA868DA0718FE2E6F5C21105EDAB3 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; + 2CFEA868DA0718FE2E6F5C21105EDAB3 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; 2CFF16852C2AFC38C831643FC787D0E2 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; 2D03D337B47AC826656C9CD58DF6A277 /* p256_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_32.h; path = src/third_party/fiat/p256_32.h; sourceTree = ""; }; - 2D0534E332838F7F012B7DA614821326 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_channelz.cc; path = src/core/ext/filters/client_channel/client_channel_channelz.cc; sourceTree = ""; }; + 2D0534E332838F7F012B7DA614821326 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_channelz.cc; path = src/core/ext/filters/client_channel/client_channel_channelz.cc; sourceTree = ""; }; 2D369DC3002DB936D7ABDE484CD4F9E8 /* 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 = ""; }; 2D4CA1D2355D777A33E37CB19E837A67 /* 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 = ""; }; - 2D55881B4D51668D099863AD66D35FE4 /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; + 2D55881B4D51668D099863AD66D35FE4 /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; 2D558E5CC8F8FF9A279E6FCB823F78E3 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; 2D6AECE6FE9DF2E2AB2E4B8AF3B9F4D2 /* 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 = ""; }; 2D89D1CE8725C18039755580DB45ACA4 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; - 2D8E98012D224137DE647D294723AC15 /* socket_utils_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_linux.cc; path = src/core/lib/iomgr/socket_utils_linux.cc; sourceTree = ""; }; + 2D8E98012D224137DE647D294723AC15 /* 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 = ""; }; 2D9437CE97B4AB49A4A92D1C11D67C7E /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = src/include/openssl/opensslconf.h; sourceTree = ""; }; - 2DB80BD156C6ED11C149487F60C7C1F1 /* health_check.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c"; sourceTree = ""; }; - 2DB98B4A4B93C6E39540C9E8C9592547 /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; - 2DBC6A7D941C308EA8FF996B1CEE1F16 /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; + 2DB80BD156C6ED11C149487F60C7C1F1 /* health_check.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c"; sourceTree = ""; }; + 2DB98B4A4B93C6E39540C9E8C9592547 /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; + 2DBC6A7D941C308EA8FF996B1CEE1F16 /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; 2DCF8F8EA5F27C10634FB81A368742EA /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = absl/time/time.h; sourceTree = ""; }; 2DF6FABDA9E55396A5A08C2A0A88EEB0 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - 2E0BD66856E6AF55D5C343CBCD359A9C /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; + 2E0BD66856E6AF55D5C343CBCD359A9C /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; 2E2092D66C4B88A11CF1BD9D12226F21 /* 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 = ""; }; - 2E25E97677A1F67935E003006B920A24 /* timer_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_custom.cc; path = src/core/lib/iomgr/timer_custom.cc; sourceTree = ""; }; + 2E25E97677A1F67935E003006B920A24 /* timer_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_custom.cc; path = src/core/lib/iomgr/timer_custom.cc; sourceTree = ""; }; 2E2E8B06225A868EA146B961E725D102 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; 2E36560640A07A2A61D6BB28D985EE0A /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; 2E4F6A1682FB6A646EAD4A871E104DF0 /* 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 = ""; }; @@ -13167,41 +13167,41 @@ 2E5B439F90A941226BD2EF48024DF759 /* 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 = ""; }; 2E60938E3AC08188BEA5D9EC936593B2 /* 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 = ""; }; 2E64C988A06069008CBE7404176446EC /* siphash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = src/include/openssl/siphash.h; sourceTree = ""; }; - 2E6E5A9884964163F23FB4EF2D037847 /* threadpool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = threadpool.cc; path = src/core/lib/iomgr/executor/threadpool.cc; sourceTree = ""; }; - 2E7811BCD18DEBE33FDFEBFC5D70119C /* status_payload_printer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_payload_printer.cc; path = absl/status/status_payload_printer.cc; sourceTree = ""; }; - 2E7C3B971E061CAA4118317470F26C80 /* client_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_idle_filter.cc; path = src/core/ext/filters/client_idle/client_idle_filter.cc; sourceTree = ""; }; + 2E6E5A9884964163F23FB4EF2D037847 /* threadpool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = threadpool.cc; path = src/core/lib/iomgr/executor/threadpool.cc; sourceTree = ""; }; + 2E7811BCD18DEBE33FDFEBFC5D70119C /* 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 = ""; }; + 2E7C3B971E061CAA4118317470F26C80 /* client_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_idle_filter.cc; path = src/core/ext/filters/client_idle/client_idle_filter.cc; sourceTree = ""; }; 2E9C813306FE4637E3A1F3F671AE68B1 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; 2E9E7BC9B124BBAEF0FF9F056080C648 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - 2EAB187A812125CAB25053C6485756D8 /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; + 2EAB187A812125CAB25053C6485756D8 /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; 2EB0FEB99427CEDF311876D733252FD3 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; 2EB807AF59CEBBFEAD5D068C2AF0C15B /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - 2EB847EA7567E480A69A6C979104B841 /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; + 2EB847EA7567E480A69A6C979104B841 /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; 2ECD7C45BD93FA085A307E6852B8D685 /* port_example.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_example.h; path = port/port_example.h; sourceTree = ""; }; 2ECE464BF00D647D8E8BF568F0CFEBCB /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - 2ED0AC6123468E1997F88580F045E67B /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; - 2EDB2F167EADB2E8637A3DA5B1B162F5 /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; - 2EE4CFF0200FE73D7112F7C9279E1EE8 /* fake_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_security_connector.cc; path = src/core/lib/security/security_connector/fake/fake_security_connector.cc; sourceTree = ""; }; + 2ED0AC6123468E1997F88580F045E67B /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; + 2EDB2F167EADB2E8637A3DA5B1B162F5 /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; + 2EE4CFF0200FE73D7112F7C9279E1EE8 /* 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 = ""; }; 2F1E94508EB4E03B4A7860CCBC54B098 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; 2F261C77E4E04DE5A3675B7EAD8EA528 /* 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 = ""; }; 2F398789DC69B60337CFAAA89F9C2C2C /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; 2F503D6A45B2099D96A857507AAFD6D7 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - 2F58B2BFA46E8AB96575505C1596C57E /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; + 2F58B2BFA46E8AB96575505C1596C57E /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; 2F59D0A701AC559D06CD851A4EF0701F /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; - 2F68E55D20F0EB8F288CBDF8CB4BA9AE /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; - 2F7287B6C3806AC1BFF064656453E95A /* parse_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parse_address.cc; path = src/core/lib/address_utils/parse_address.cc; sourceTree = ""; }; + 2F68E55D20F0EB8F288CBDF8CB4BA9AE /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; + 2F7287B6C3806AC1BFF064656453E95A /* 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 = ""; }; 2F7A57196AD9F95EE44B2819AA1DC7E2 /* 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 = ""; }; - 2F7C12CE21BB724195A589B8F46ABD86 /* dl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dl.c; path = src/unix/dl.c; sourceTree = ""; }; + 2F7C12CE21BB724195A589B8F46ABD86 /* dl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dl.c; path = src/unix/dl.c; sourceTree = ""; }; 2F89D8C7938A637AA1A669F498A3845A /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; 2FA12178C1547ECC33770020AF8B1C2F /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; 2FA6D061555D83FF6B468E3F4FEA90C1 /* randen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen.h; path = absl/random/internal/randen.h; sourceTree = ""; }; - 2FAA5C95A4C739C9F9D5C01AEA8E2FE9 /* frame_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_ping.cc; path = src/core/ext/transport/chttp2/transport/frame_ping.cc; sourceTree = ""; }; + 2FAA5C95A4C739C9F9D5C01AEA8E2FE9 /* 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 = ""; }; 2FB5B22D1EE806E8722D9A8220E2E181 /* 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 = ""; }; - 2FBD16630C80A72BE52123E66DAB8F4C /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; - 2FD71EC52CB8E6B1C76E04C40B49DECA /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; - 3019D75318370CD3F98D6EC27E1BD637 /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; + 2FBD16630C80A72BE52123E66DAB8F4C /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; + 2FD71EC52CB8E6B1C76E04C40B49DECA /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; + 3019D75318370CD3F98D6EC27E1BD637 /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; 301F5C96FBCB9D74BE64E69DED8C8DB8 /* FIRPhoneAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m; sourceTree = ""; }; - 301F96EF0324E4BB2ABE6AB951938A4A /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; - 302A18CCD614B9AD5B368E47920E56A0 /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; + 301F96EF0324E4BB2ABE6AB951938A4A /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; + 302A18CCD614B9AD5B368E47920E56A0 /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; 3036537CDA0649E0878E8594EB35397F /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; 303B101274BBDA3CB492D5B770804466 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/impl/codegen/client_callback.h; sourceTree = ""; }; 3047FB83474EAFCB097933548DB42C08 /* 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 = ""; }; @@ -13213,103 +13213,103 @@ 30AC3A8E167308D1D7240D3DE5D834AF /* 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 = ""; }; 30B3E3E58ECF0A0F7A49A3DFC99C46C8 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; 30B5D24B68DD6839E1EA306C4838C3A2 /* 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 = ""; }; - 30C3B201B17396A9C773F2DF111BC999 /* config_dump.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c"; sourceTree = ""; }; - 30CCB2159D5C999162A39AB66BBBEBD6 /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; + 30C3B201B17396A9C773F2DF111BC999 /* config_dump.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c"; sourceTree = ""; }; + 30CCB2159D5C999162A39AB66BBBEBD6 /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; 311249B28A37ADB26D2F8496EBE1606E /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - 3119C9E31E7411A07B4708EF92B43450 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; - 3120041D8C193654BC3E2BF7D733CE35 /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; + 3119C9E31E7411A07B4708EF92B43450 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; + 3120041D8C193654BC3E2BF7D733CE35 /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; 3128BEDF4F00F8CB1A853FB82AF9B0EB /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - 312CD1C44A9663F11F15772DA1532D07 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = util/status.cc; sourceTree = ""; }; - 3150ED5C74D30FFF0FFD701F245EF0A8 /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; - 315BA1F94307C1F97FD43D2C8B36831E /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; + 312CD1C44A9663F11F15772DA1532D07 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = util/status.cc; sourceTree = ""; }; + 3150ED5C74D30FFF0FFD701F245EF0A8 /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; + 315BA1F94307C1F97FD43D2C8B36831E /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; 315EA5002D682DA429221872CCA3E771 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; 316FC845923E5D3310C933ADD1C6D738 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; - 3180921B80BB71E5BD48E14F2730DC53 /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; + 3180921B80BB71E5BD48E14F2730DC53 /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; 3196A6973F0A0600A4A185932D3B0832 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = absl/base/internal/spinlock.h; sourceTree = ""; }; 31B7DB7266DFE8353372E95262AE99CF /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h; sourceTree = ""; }; 31C40B607709910E6F746EEE5AF5ABDB /* sysinfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = absl/base/internal/sysinfo.h; sourceTree = ""; }; - 31CB79105C6E07611318E0573FE4D179 /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; + 31CB79105C6E07611318E0573FE4D179 /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; 31CD1B87BECA28E0D1476AA7FFF433E3 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 31CFD08288EAA99304CA81EF453B57DC /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; + 31CFD08288EAA99304CA81EF453B57DC /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; 31CFD654A9B427BD7D1F2A1B4C52BF1E /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; 31E8BB4CBB6CC716DFCDE95657E0D4A7 /* 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 = ""; }; - 31F06E334CBB06F34C00DD2B5D2545BF /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; + 31F06E334CBB06F34C00DD2B5D2545BF /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; 31FB8D5B4FC165FEABA997D168908CBE /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; 32027744A97394A95DC5724E3F25AEE1 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; - 3203273057655BF14A87E80BB9B001F8 /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; + 3203273057655BF14A87E80BB9B001F8 /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; 320B54A3BA2F1AA334EA800DA62CF99B /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; 32277E5B585B3472A2C9782C3E7147E3 /* 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 = ""; }; 3228A2741A4C6E799D0B11D846CE6B63 /* FIRVerifyAssertionRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.m; sourceTree = ""; }; - 322D997FA4CDF6864964B05AD7459511 /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; + 322D997FA4CDF6864964B05AD7459511 /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; 32398E89BC47DF807E68FE2F84AEA156 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; 323E902A459BDBDC083ADB54C910C097 /* 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 = ""; }; 32585DA0E531CAE90EFE97D49B826F56 /* server_initializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_initializer.h; path = include/grpcpp/impl/server_initializer.h; sourceTree = ""; }; 3261546B3FF64262DFE3888B391CD023 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 32A9E9202EEA853D80E2AF093225EBB2 /* bad_variant_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_variant_access.cc; path = absl/types/bad_variant_access.cc; sourceTree = ""; }; + 32A9E9202EEA853D80E2AF093225EBB2 /* 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 = ""; }; 32C6FB56F78EB56A627DADA006124E0C /* create_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel.h; path = include/grpcpp/create_channel.h; sourceTree = ""; }; 32F61F17A57202CF69FADE3454DF795A /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/hash.h; sourceTree = ""; }; 32F802F6AB37F162D6A36B9BE0562664 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; - 3338EF7CC0F6A7B5B62EFF92A3FA755F /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; + 3338EF7CC0F6A7B5B62EFF92A3FA755F /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; 33467055A1131134E290ED6BA1AFCC00 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromisesObjC; path = FBLPromises.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 3357F12C6D535E9D39B0257434E716F3 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; 3377F11FB830CB2910DC9922CF675B8A /* evp_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp_errors.h; path = src/include/openssl/evp_errors.h; sourceTree = ""; }; - 338AD937C5D82034B874829C27B672D3 /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; - 338DCFDF07BF23D05CF7099E55CD03AD /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; + 338AD937C5D82034B874829C27B672D3 /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; + 338DCFDF07BF23D05CF7099E55CD03AD /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; 339451B1E530FE7CBDA9C45BD6ADD87B /* have_sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = have_sse.h; path = absl/container/internal/have_sse.h; sourceTree = ""; }; 33B7EEF5256573EE04339179405CAD3C /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; 33D878849C7C735A5538DC91CB06B95E /* 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 = ""; }; - 33E148A32E81CE02789BD5E8B8E6A2F6 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; + 33E148A32E81CE02789BD5E8B8E6A2F6 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; 33F6EC1DF8D438D5408BDD437ABB19C2 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; - 34092176C974227E1B825D596BB3580E /* wakeup_fd_nospecial.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_nospecial.cc; path = src/core/lib/iomgr/wakeup_fd_nospecial.cc; sourceTree = ""; }; + 34092176C974227E1B825D596BB3580E /* 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 = ""; }; 34491EBAE4F913D87F311FE88219C475 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/security/auth_context.h; sourceTree = ""; }; - 344E025219EFF315DC636FCB840F7266 /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; - 34632AF358CE4E6CEBFF021A951862A8 /* address.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = address.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c"; sourceTree = ""; }; - 34651B372889054CA1EF487B86F7754E /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; + 344E025219EFF315DC636FCB840F7266 /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; + 34632AF358CE4E6CEBFF021A951862A8 /* address.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c"; sourceTree = ""; }; + 34651B372889054CA1EF487B86F7754E /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; 346711871383A162527FCAD76FE81CC7 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; - 3473FFFF8960559F72A9FB33E8906BDC /* create_thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_thread_identity.cc; path = absl/synchronization/internal/create_thread_identity.cc; sourceTree = ""; }; - 3484B2187B50937B04F33D472FC3A18D /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; + 3473FFFF8960559F72A9FB33E8906BDC /* 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 = ""; }; + 3484B2187B50937B04F33D472FC3A18D /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; 34961D4577F6699640DCBE1FE90D3889 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; 34B5523EBCFB7AD3B0A50EE4F710AF9E /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; 34CC0BD5618599DE64D5433E71949B4D /* pcg_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcg_engine.h; path = absl/random/internal/pcg_engine.h; sourceTree = ""; }; 34DA46C8AD75AC54D0AE0F95E7CB5580 /* FIRCreateAuthURIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.m; sourceTree = ""; }; - 34DB73A41B0B3D3E2D58654BF92182FE /* array_contains_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = array_contains_filter.cc; path = Firestore/core/src/core/array_contains_filter.cc; sourceTree = ""; }; + 34DB73A41B0B3D3E2D58654BF92182FE /* 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 = ""; }; 34DC42CCEA2E96DE368DF549B28BCC6A /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; 34EB3707EDF7F049D8480DCB263651A9 /* arg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arg.h; path = absl/strings/internal/str_format/arg.h; sourceTree = ""; }; - 34FBC651550B80DE130C4659DB76FBF9 /* reflection.c */ = {isa = PBXFileReference; includeInIndex = 1; name = reflection.c; path = third_party/upb/upb/reflection.c; sourceTree = ""; }; + 34FBC651550B80DE130C4659DB76FBF9 /* reflection.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = reflection.c; path = third_party/upb/upb/reflection.c; sourceTree = ""; }; 34FCA4B5D9C8BB7BECC604BFC2D98AD4 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - 34FCD35F76CD3465E5CF8DAE795F964C /* timestamp.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/timestamp.nanopb.cc; sourceTree = ""; }; + 34FCD35F76CD3465E5CF8DAE795F964C /* 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 = ""; }; 350BB5B6ED4023073151A810AFA778F0 /* log_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_reader.h; path = db/log_reader.h; sourceTree = ""; }; 350F82129B072868F3B3EC0AB835B050 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; - 3514264010C09B881E6399A2067BD9AC /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; + 3514264010C09B881E6399A2067BD9AC /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; 351C2030094A0B30ED06BA4FB171AD64 /* 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 = ""; }; 351F5AD28BA1065D0765745AE13DBE2F /* cycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock.h; path = absl/base/internal/cycleclock.h; sourceTree = ""; }; - 35381D5F445307A4BCBD97FDC475B3C2 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.c"; sourceTree = ""; }; - 355446109EE55B4B00E77AE497275B42 /* ssl_aead_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_aead_ctx.cc; path = src/ssl/ssl_aead_ctx.cc; sourceTree = ""; }; + 35381D5F445307A4BCBD97FDC475B3C2 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.c"; sourceTree = ""; }; + 355446109EE55B4B00E77AE497275B42 /* 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 = ""; }; 355A3A4870ECB7DFE003AF192D259D78 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - 356E0DEB164D923940B3FE6991E71990 /* http2_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http2_settings.cc; path = src/core/ext/transport/chttp2/transport/http2_settings.cc; sourceTree = ""; }; + 356E0DEB164D923940B3FE6991E71990 /* 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 = ""; }; 357C0EE43A790060F71C003C23DF0341 /* FIRFacebookAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFacebookAuthProvider.h; sourceTree = ""; }; 357D8DA16FD8A238CA43A10F5357676B /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; - 35866E00BBAA2DE6F52A7E7BCB54D059 /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; + 35866E00BBAA2DE6F52A7E7BCB54D059 /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; 359F4AC1A320E4BE15F76DE391F2AF78 /* FIRAuthRPCResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCResponse.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCResponse.h; sourceTree = ""; }; 35A187026BEB48CC183F2B53F9FD0FB0 /* posix_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_logger.h; path = util/posix_logger.h; sourceTree = ""; }; 35B2EC2870CC90FB892D1544E3724FBD /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - 35B979CA7A8CFBCCFB84C79CDB0131CD /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; + 35B979CA7A8CFBCCFB84C79CDB0131CD /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; 35CDFD297A319020F3F9A2DE24F7A104 /* FIRAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential.m; sourceTree = ""; }; 35DC211A1B169631A2AAF447ED18AF9E /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; 35F9879CE34CA6270EFDABCFFDC56A87 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - 364FE1668A9870E8FB906BF8A0E29D4D /* health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_service.cc; path = src/cpp/server/health/health_check_service.cc; sourceTree = ""; }; + 364FE1668A9870E8FB906BF8A0E29D4D /* 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 = ""; }; 3667DEE2D4A0B610F1194FB28CB05B61 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h; sourceTree = ""; }; 366B7A05A66F656E0F1A68137EE718FC /* FIRGoogleAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGoogleAuthProvider.h; sourceTree = ""; }; 3682895FACDF0D37E958708E547839C0 /* 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 = ""; }; 36A66EC84DD34F10911E5EC0A70B1675 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; 36B1F4ADC2A1AE05945D9DD5887D8C3A /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 36E890972A8A84EF7401755010A2EEE5 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - 36EA0F59F5ED9E0B2462C4D22414A774 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = decode.c; path = third_party/upb/upb/decode.c; sourceTree = ""; }; + 36EA0F59F5ED9E0B2462C4D22414A774 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/decode.c; sourceTree = ""; }; 36EB534BE9F9A3E573FCF52106032E45 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - 37045676FB2CEDFE2136BC4ECED519A7 /* http_server_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_server_filter.cc; path = src/core/ext/filters/http/server/http_server_filter.cc; sourceTree = ""; }; + 37045676FB2CEDFE2136BC4ECED519A7 /* 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 = ""; }; 3717200A1A6922825FAC49F73D112EAC /* GoogleDataTransport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleDataTransport.modulemap; sourceTree = ""; }; - 372B2854CA1112609CD54E7C2AB696D9 /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; + 372B2854CA1112609CD54E7C2AB696D9 /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; 375812A905BE95F82BD50E548C00BDE8 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; 376F71550B79518E43168F2BFFB5DD9A /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/impl/codegen/log.h; sourceTree = ""; }; 37725DEADFA99A97087236A5E26BC783 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; @@ -13318,26 +13318,26 @@ 37A58A77CC5470E569424CC3B67BD68A /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = ""; }; 37B1B1E1D580E9FA66354D0A8C7E5AC7 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; 37B8C76488233F9B77C6A3CA062AEB52 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - 37BC3E2508C15E58712F08C92BE75E1E /* ssl_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_transport_security.cc; path = src/core/tsi/ssl_transport_security.cc; sourceTree = ""; }; + 37BC3E2508C15E58712F08C92BE75E1E /* 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 = ""; }; 37BEF1C798DECA77BBE0F70C5D42BF8C /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; 37D0B811F017EF432AF6BAF29C425735 /* FIRAuthAppCredentialManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredentialManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.h; sourceTree = ""; }; - 37DA25A646BF1A4E8B198FA3A2DBC6B2 /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; - 37E4386D74668883C28C4EE80EB8EBD1 /* wrappers.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/wrappers.nanopb.cc; sourceTree = ""; }; + 37DA25A646BF1A4E8B198FA3A2DBC6B2 /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; + 37E4386D74668883C28C4EE80EB8EBD1 /* 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 = ""; }; 381D7A72344929717C0D4200914EC9FA /* 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 = ""; }; - 38336A03A8D5B55061CD43C2CA7AD1D8 /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; + 38336A03A8D5B55061CD43C2CA7AD1D8 /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; 383C0F8BFC5DB8E70916CD8D5DA858AC /* FIRResetPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.m; sourceTree = ""; }; - 3853CE95ABEC5DB440397F8DAED51930 /* credentials_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials_generic.cc; path = src/core/lib/security/credentials/google_default/credentials_generic.cc; sourceTree = ""; }; + 3853CE95ABEC5DB440397F8DAED51930 /* 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 = ""; }; 3867EC36B10F71588E86C3C566262914 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; 38758B9C60618B24EF16969AB849A353 /* FIRVerifyAssertionRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h; sourceTree = ""; }; 387EB660A9A8BC55A4AF697223C536CC /* 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 = ""; }; - 38844297584C3846ECDD30F16E3104EA /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; - 388B364F57743F942647BC5FB98CCA27 /* log_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_windows.cc; path = src/core/lib/gpr/log_windows.cc; sourceTree = ""; }; + 38844297584C3846ECDD30F16E3104EA /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; + 388B364F57743F942647BC5FB98CCA27 /* log_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_windows.cc; path = src/core/lib/gpr/log_windows.cc; sourceTree = ""; }; 38960C23A5CDEF5518BA2D029DD0B7B8 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - 389B4E55E130BCB027299458035FA3B8 /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; + 389B4E55E130BCB027299458035FA3B8 /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; 389EFCA755EB4F8668D8F889C277C70E /* testharness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testharness.h; path = util/testharness.h; sourceTree = ""; }; 38AA84479919B2FFD980307C3D2922D8 /* dumpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dumpfile.h; path = include/leveldb/dumpfile.h; sourceTree = ""; }; - 38B368D8B91E7D953A57ABA58FFF99D1 /* frame_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_data.cc; path = src/core/ext/transport/chttp2/transport/frame_data.cc; sourceTree = ""; }; - 38B8E02B0D17EF431AC21F08FCA42544 /* time_zone_lookup.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_lookup.cc; path = absl/time/internal/cctz/src/time_zone_lookup.cc; sourceTree = ""; }; + 38B368D8B91E7D953A57ABA58FFF99D1 /* 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 = ""; }; + 38B8E02B0D17EF431AC21F08FCA42544 /* 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 = ""; }; 38B9273E7AE3746D054C8426D81E4F11 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; 38B950BD01813F0536A3D34594491EEE /* 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 = ""; }; 38C071269F35009281C67BF56ED000E7 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; @@ -13350,7 +13350,7 @@ 3906597C467D6690628F0B6330797BFC /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = src/include/openssl/evp.h; sourceTree = ""; }; 390689CA897899BB9C8215FD2C1435D1 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; 390BDC63537D7CDD7BA077745F6253B9 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 390FB7D3156824871D761D76C5B0CF24 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create.cc; sourceTree = ""; }; + 390FB7D3156824871D761D76C5B0CF24 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create.cc; sourceTree = ""; }; 391D19E6D30847380C7B1410B0D1797B /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; 39215536261C68C18E489F54AE7533EA /* FIRGitHubAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.m; sourceTree = ""; }; 39285212A4A8CF35EA699896DF026AEE /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; @@ -13365,81 +13365,81 @@ 3983670B229BF8C8B83F57F6309D14DB /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; 398A37D7EE85D3506F8C02E6A7795390 /* spinlock_wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock_wait.h; path = absl/base/internal/spinlock_wait.h; sourceTree = ""; }; 398C58EA6AFF8D30B83671182AE98735 /* policy_checks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = policy_checks.h; path = absl/base/policy_checks.h; sourceTree = ""; }; - 3991A41E8862EA047524A7B5353D4C08 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; - 3998BB66C64F6FB6F2C28162B2E8AF50 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; + 3991A41E8862EA047524A7B5353D4C08 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; + 3998BB66C64F6FB6F2C28162B2E8AF50 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; 39A961976764BF330487B056DE5C71E7 /* db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db.h; path = include/leveldb/db.h; sourceTree = ""; }; 39CA457A5A01157C2B91E819DDCC4322 /* 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 = ""; }; - 39D1C24B205845449C3DD36C7733E568 /* xds_resource_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_resource_type.cc; path = src/core/ext/xds/xds_resource_type.cc; sourceTree = ""; }; + 39D1C24B205845449C3DD36C7733E568 /* xds_resource_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resource_type.cc; path = src/core/ext/xds/xds_resource_type.cc; sourceTree = ""; }; 39D4D290E2C339574F8276D54D461A34 /* FIRFacebookAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.h; sourceTree = ""; }; 39DD3E5B16720861D303CAF81013C359 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; 39E8209446678F9C564D937FCBAB0C03 /* FIRAuthAPNSToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSToken.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.h; sourceTree = ""; }; - 39EBD7290309927D11A478C725CFCC20 /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; - 3A114BCE9571AA2D9ECAE71024A349E9 /* annotations.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.nanopb.cc; path = Firestore/Protos/nanopb/google/api/annotations.nanopb.cc; sourceTree = ""; }; + 39EBD7290309927D11A478C725CFCC20 /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; + 3A114BCE9571AA2D9ECAE71024A349E9 /* 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 = ""; }; 3A14B53094333DAB228DAD025ED01610 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; 3A17E56634F88242B97A2500C7BCD957 /* p256-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64.h"; sourceTree = ""; }; - 3A1A0D08D2628871FED2065BA20D2836 /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; + 3A1A0D08D2628871FED2065BA20D2836 /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; 3A2D112D05844BAE85A9D5F277C4600E /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/support/config.h; sourceTree = ""; }; 3A351E0FD4E085ECD644A596488A38EB /* 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 = ""; }; - 3A58FF6E7DC626C03C28441DD98EFA40 /* composite_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = composite_credentials.cc; path = src/core/lib/security/credentials/composite/composite_credentials.cc; sourceTree = ""; }; - 3A59B322654824183166FA38D78FF95B /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; + 3A58FF6E7DC626C03C28441DD98EFA40 /* 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 = ""; }; + 3A59B322654824183166FA38D78FF95B /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; 3A5CF7FCC3A671D9CFC2BF9433FDC736 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; 3A609003157E264550C579338BDECEB6 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; 3A6B5F2A71E7C74B21DE797E5DE5A864 /* FIRSetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.h; sourceTree = ""; }; 3A852D5097DE3A16C56B0E8443BF11CA /* Libuv-gRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Libuv-gRPC-dummy.m"; sourceTree = ""; }; 3A8A9152B5AB331998D27BC332BCFF8F /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; 3A9A604D130EC6035AF7272F56B6B509 /* 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 = ""; }; - 3AAAB9DCCEA56127320FB14C51D3BE7F /* http_filters_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_filters_plugin.cc; path = src/core/ext/filters/http/http_filters_plugin.cc; sourceTree = ""; }; + 3AAAB9DCCEA56127320FB14C51D3BE7F /* 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 = ""; }; 3AC9F2B2AAFA037C3768B7FE6FF141AF /* coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = coding.h; path = util/coding.h; sourceTree = ""; }; - 3ACADB5AE041394DC7A79FB2DBAF6173 /* alts_record_protocol_crypter_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_record_protocol_crypter_common.cc; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc; sourceTree = ""; }; - 3ACF56318EEBE01E1CC84185811B87B7 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c"; sourceTree = ""; }; - 3ADDAF8AD6A5384E779E32B918916FA1 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 3AE6417212A9C1AE8A5B704BE8BE7FA6 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; + 3ACADB5AE041394DC7A79FB2DBAF6173 /* 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 = ""; }; + 3ACF56318EEBE01E1CC84185811B87B7 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c"; sourceTree = ""; }; + 3ADDAF8AD6A5384E779E32B918916FA1 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_encode.c; sourceTree = ""; }; + 3AE6417212A9C1AE8A5B704BE8BE7FA6 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; 3AF0C86B29D67C1A28FFB6043385D4A3 /* 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; }; 3B03CDE5AAA98BDEC3F7E232BD652E69 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; - 3B03E4AAC355F994818EB10B9B5D850E /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; + 3B03E4AAC355F994818EB10B9B5D850E /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; 3B07CDF24AFD76CBF7FE99759886C34C /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; 3B14D60525A22925EDAD0F0C1BC7987F /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; 3B1E528EA4055534B02F72C39638A213 /* FIRAuthDefaultUIDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDefaultUIDelegate.m; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.m; sourceTree = ""; }; 3B40A5FB78E381513B04D30F0F3DF49E /* grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc.h; path = include/grpc/grpc.h; sourceTree = ""; }; 3B4C87F1BA0D825360C1186ABDEC1741 /* FIRAuthNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthNotificationManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.m; sourceTree = ""; }; - 3B66A91920AEEC73F3627121DD04780B /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_throttle.cc; path = src/core/ext/filters/client_channel/retry_throttle.cc; sourceTree = ""; }; + 3B66A91920AEEC73F3627121DD04780B /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_throttle.cc; path = src/core/ext/filters/client_channel/retry_throttle.cc; sourceTree = ""; }; 3B932235E4F3FAD4839BE79EC00B2B1F /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; 3B99AF27C2D6137A74F0735CA1DEE096 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - 3BC5E432E01D2FA1A51A2A43783CFADB /* tcp_server_utils_posix_noifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_noifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc; sourceTree = ""; }; - 3BCEBE2AF0BE7EA1D917527508500E80 /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_resolver.cc; path = src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc; sourceTree = ""; }; + 3BC5E432E01D2FA1A51A2A43783CFADB /* 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 = ""; }; + 3BCEBE2AF0BE7EA1D917527508500E80 /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_resolver.cc; path = src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc; sourceTree = ""; }; 3BD55324EBEF7B214149B1324FE3B018 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - 3BEDD253E20BA09C7983444152C002AF /* socket_factory_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_factory_posix.cc; path = src/core/lib/iomgr/socket_factory_posix.cc; sourceTree = ""; }; - 3BFD8FDEFD9D04376216A771C75FD9C7 /* channel_args_endpoint_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args_endpoint_config.cc; path = src/core/lib/event_engine/channel_args_endpoint_config.cc; sourceTree = ""; }; - 3C0AD87FAD0EF5A2541ED6F75DB2FAB2 /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; + 3BEDD253E20BA09C7983444152C002AF /* 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 = ""; }; + 3BFD8FDEFD9D04376216A771C75FD9C7 /* 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 = ""; }; + 3C0AD87FAD0EF5A2541ED6F75DB2FAB2 /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; 3C1475707A7E54804EEDDC26C78F1881 /* 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 = ""; }; - 3C1A6A4E290291A81FBA6C32461036A6 /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; + 3C1A6A4E290291A81FBA6C32461036A6 /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; 3C1D249510EBA504A9223F7F6DFD0FAA /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/serialization_traits.h; sourceTree = ""; }; 3C217BBE0010EA2018747A49C2E09B16 /* optimization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optimization.h; path = absl/base/optimization.h; sourceTree = ""; }; - 3C29945C319D2BB6C311C66D89A40D88 /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; - 3C48F4AEA8295429A5420D9D9DD1142C /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; + 3C29945C319D2BB6C311C66D89A40D88 /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; + 3C48F4AEA8295429A5420D9D9DD1142C /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; 3C5F42D556C26DB296C6B68AF657A8EC /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - 3C646D57A34E390E5AD2E5E427DFBE04 /* stacktrace_riscv-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_riscv-inl.inc"; path = "absl/debugging/internal/stacktrace_riscv-inl.inc"; sourceTree = ""; }; - 3C6DFD5E1EFE0699F1666D90AB5D9D8E /* index.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/admin/index.nanopb.cc; sourceTree = ""; }; + 3C646D57A34E390E5AD2E5E427DFBE04 /* 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 = ""; }; + 3C6DFD5E1EFE0699F1666D90AB5D9D8E /* 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 = ""; }; 3C788C6B17F482BFD35D92A8C1C83338 /* gRPC-C++-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-umbrella.h"; sourceTree = ""; }; - 3C8EB784B0ABDB3DB9B7F1A8CEE65174 /* stat_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stat_posix.cc; path = src/core/lib/gprpp/stat_posix.cc; sourceTree = ""; }; + 3C8EB784B0ABDB3DB9B7F1A8CEE65174 /* stat_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat_posix.cc; path = src/core/lib/gprpp/stat_posix.cc; sourceTree = ""; }; 3C9338EA578D63C3C7663FD96C2A31C5 /* Pods-Flash Chat iOS13-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Flash Chat iOS13-dummy.m"; sourceTree = ""; }; 3CA55C97A9F2D185301AC5EAECCC36E1 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; 3CB3512BB1D7A64A38FBA25A1B84D423 /* 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 = ""; }; 3CC9630113A9804C2DDB6863BFB961A3 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; 3CCAB43DC02E598FC4D40B6F9B118BBE /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; 3CCD4027D7B087861F3F55BD3690487E /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/codegen/sync.h; sourceTree = ""; }; - 3CF39C684DB827D8F5843149231EDF5F /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; + 3CF39C684DB827D8F5843149231EDF5F /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; 3CF7C4E9CC3AE527B125BE9BB12CAA60 /* FIREmailAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIREmailAuthProvider.h; sourceTree = ""; }; 3CF867A681925FB1B8E1F5D78D5D35BE /* 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 = ""; }; 3D0712B9A9B768261FC354452CE49365 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; 3D13134B34AC6EC7100DC5153B9F095A /* FIRWithdrawMFARequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFARequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.m; sourceTree = ""; }; 3D1419752C0DCD92DAC4A5D71D54E846 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/impl/codegen/time.h; sourceTree = ""; }; 3D1CF25D3DC1DA684B7B1C3E37744E49 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 3D2367412FDBD2B02BCC9F3F95E2137E /* url_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = url_external_account_credentials.cc; path = src/core/lib/security/credentials/external/url_external_account_credentials.cc; sourceTree = ""; }; + 3D2367412FDBD2B02BCC9F3F95E2137E /* 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 = ""; }; 3D27ED8FAF5D29E321B635DC5CCEA8C7 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; 3D45033A5D40A36FE64F1E831E32F47E /* FIRFinalizeMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.m; sourceTree = ""; }; 3D49089E8EB06F2A253519BB7EB28D96 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 3D4935C97E91F885941132A44D5310DD /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; + 3D4935C97E91F885941132A44D5310DD /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; 3D4F58B23B78A48C12D4370FFE84800B /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; 3D53A297877CDC46173C5A601C6DD358 /* gRPC-C++.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.debug.xcconfig"; sourceTree = ""; }; 3D65FF7D663DF78C36F741B6304075BE /* FIRAuthRequestConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRequestConfiguration.h; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h; sourceTree = ""; }; @@ -13449,177 +13449,177 @@ 3DC0107F0C9D63E698485CE5E573541E /* FIRUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUser.m; path = FirebaseAuth/Sources/User/FIRUser.m; sourceTree = ""; }; 3DC9F3AB799D826433E59BBAC00C70D7 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/chacha/internal.h; sourceTree = ""; }; 3DCB25CC4DD1BA3BEE60D51CF3DCED63 /* 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 = ""; }; - 3DEAD1104A9AC86FE223A9055633EE29 /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; - 3DEB0765CA6612B20935BDE6214A3B76 /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; + 3DEAD1104A9AC86FE223A9055633EE29 /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; + 3DEB0765CA6612B20935BDE6214A3B76 /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; 3E0314AB7EE2ED65DE4C224C8FE62B44 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - 3E03B4CC5DFFBDAF1F4AC00B0D31B6C1 /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; + 3E03B4CC5DFFBDAF1F4AC00B0D31B6C1 /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; 3E0B38D5A88BF6FA2B3D59BFB020BEE6 /* iterator_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator_wrapper.h; path = table/iterator_wrapper.h; sourceTree = ""; }; 3E1C7031109AF63AFA8568C092D4108D /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; 3E2C8B42A4461C643D2A8C3C9A65650A /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 3E34FF44D3B8831D1BC8865E33160244 /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; - 3E5110634BE96839141BF5E440B99114 /* authority.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = authority.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.c"; sourceTree = ""; }; + 3E34FF44D3B8831D1BC8865E33160244 /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; + 3E5110634BE96839141BF5E440B99114 /* authority.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.c"; sourceTree = ""; }; 3E51D4ECA1A8BA98D9E1D8F80983F128 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; - 3E6DC40E351A47A3F7D5C7FD67BD475C /* struct.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/struct.nanopb.cc; sourceTree = ""; }; - 3E7B6BB468DDEAFC93A24A78361E0DB2 /* threadpool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = threadpool.c; path = src/threadpool.c; sourceTree = ""; }; + 3E6DC40E351A47A3F7D5C7FD67BD475C /* 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 = ""; }; + 3E7B6BB468DDEAFC93A24A78361E0DB2 /* threadpool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = threadpool.c; path = src/threadpool.c; sourceTree = ""; }; 3E8357A1ECFAF908250B25DCBB8D91D9 /* 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 = ""; }; 3E9C70FCB53E4F64BA9683873770CDC3 /* census.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = census.h; path = include/grpc/census.h; sourceTree = ""; }; 3EC32066E9E3661CC345DB644256EB42 /* CLTypingLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CLTypingLabel-dummy.m"; sourceTree = ""; }; 3ECBD299F5CB35CCCA5E181F73C0A80A /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; 3ED40FBFF36D5236F836E60AD9233617 /* FirebaseAuth-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAuth-umbrella.h"; sourceTree = ""; }; - 3EDE27C56EE9D0DB6355BD59E4D57CB7 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; - 3EE49BD522D8869C70EF8353A9E3DDAF /* completion_queue_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue_factory.cc; path = src/core/lib/surface/completion_queue_factory.cc; sourceTree = ""; }; + 3EDE27C56EE9D0DB6355BD59E4D57CB7 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; + 3EE49BD522D8869C70EF8353A9E3DDAF /* 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 = ""; }; 3EFBD16C412F0BFC36EC99FC51068230 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; 3F0F41918E1B54D5852E73828BAFE1C4 /* 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 = ""; }; 3F1837D7B34E7A0B9C4B4DB4AE1721A7 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; 3F32C5407C3B2DD0049AE55A06D8AD6F /* FIRPhoneMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo+Internal.h"; sourceTree = ""; }; - 3F4D3C79A1EFD71DAFA06D15113FD93A /* wire_reader_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wire_reader_impl.cc; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.cc; sourceTree = ""; }; + 3F4D3C79A1EFD71DAFA06D15113FD93A /* 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 = ""; }; 3F5292B9062A1DA121D0F62ED11552C9 /* 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 = ""; }; 3F6C0E851B9F6B7DDCB7052DB7869ECB /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; - 3F7102986CCAAD8488D026CDA6A6B5C4 /* common.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = common.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.cc; sourceTree = ""; }; + 3F7102986CCAAD8488D026CDA6A6B5C4 /* 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 = ""; }; 3F71566D09A34EC5C42C27FC4DCD6911 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; 3F7947C8FF937D06BF74A57189163EA0 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - 3F9A2324EFE1A9094AB146BD55BE5FF2 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; + 3F9A2324EFE1A9094AB146BD55BE5FF2 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; 3FB8A5EF7795FC6028C4CC6AA5C56E06 /* FIRMultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactor.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactor.h; sourceTree = ""; }; 3FC4C4C93886B9E9326D162E2DD4C7C5 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; 3FC5BF75FE215C2E05C25572297F40DB /* export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = export.h; path = include/leveldb/export.h; sourceTree = ""; }; - 3FDF4D5DF64A51C8ED5950D01332A0AA /* query.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/query.nanopb.cc; sourceTree = ""; }; + 3FDF4D5DF64A51C8ED5950D01332A0AA /* 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 = ""; }; 3FE643B03358BF78DFBC8DC6A52D5CA7 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; 40012589098D7D4EA2D89C5B597D61CB /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; 400B92186A836269136B82034DD5B23B /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; 4011999713AC069C531D4FE0CBD5366D /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; 402AA420871B41EA30B847C4067C9005 /* FIRMultiFactorResolver+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorResolver+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"; sourceTree = ""; }; - 403420FD57F801406BA09CF67AA34299 /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; - 403AD6E4A0A1B734B555ABA203AAF905 /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; + 403420FD57F801406BA09CF67AA34299 /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; + 403AD6E4A0A1B734B555ABA203AAF905 /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; 4051854AD41ABC7EB6239401ABA9230A /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; 407479761867BC51108FDEF5AECCA921 /* FIRAuthErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthErrorUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.m; sourceTree = ""; }; 4088D74A22F2C8BA9604AAD6BBEA807E /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; 408B71D3E0267F149E463A0837B624E1 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - 409F28C9A0116E758506B28846AF151C /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; - 40A3CB94F9F0A09887BD7D5CF7B2CEC2 /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; - 40ABC8FF1A58776E5D32779906E6AD60 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_akey.c; path = src/crypto/x509v3/v3_akey.c; sourceTree = ""; }; - 40AFCF9EB59D9CDAD4CC7EBBCBDEC219 /* config_source.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_source.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c"; sourceTree = ""; }; + 409F28C9A0116E758506B28846AF151C /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; + 40A3CB94F9F0A09887BD7D5CF7B2CEC2 /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; + 40ABC8FF1A58776E5D32779906E6AD60 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akey.c; path = src/crypto/x509v3/v3_akey.c; sourceTree = ""; }; + 40AFCF9EB59D9CDAD4CC7EBBCBDEC219 /* config_source.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c"; sourceTree = ""; }; 40C2FD00BB842A41577CAF6F3813640B /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; 40D31D0B14057F3C93CA1E68111B6050 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - 40D7BDFCAEBC2D27A1490492E9B46142 /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; + 40D7BDFCAEBC2D27A1490492E9B46142 /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; 40DFB51FDED20D07155B0DC85FF4FFEA /* curve25519_tables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_tables.h; path = src/crypto/curve25519/curve25519_tables.h; sourceTree = ""; }; 40DFE258C35DC934C0E722347EE71772 /* randen_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_detect.h; path = absl/random/internal/randen_detect.h; sourceTree = ""; }; 40E5DC90843A442FE01FFBA6497092FD /* 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 = ""; }; - 410EE88F2B8901B01E6768AAA8C5A931 /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; - 4111BC5322C8CBCDE833BCD63559BC15 /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; + 410EE88F2B8901B01E6768AAA8C5A931 /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; + 4111BC5322C8CBCDE833BCD63559BC15 /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; 413F45D9A1C0BF1D6B4AFF9FEF1236AE /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 4163B365CE1DBF17D040516574BC57D6 /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; + 4163B365CE1DBF17D040516574BC57D6 /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; 4176D58D7F4745AA544A4FD9812706C2 /* 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 = ""; }; - 419A2F5E500E7EBB744EB470E5EE7A83 /* core.c */ = {isa = PBXFileReference; includeInIndex = 1; name = core.c; path = src/unix/core.c; sourceTree = ""; }; - 41A034203E4D9789F401092AC3308040 /* firebase_metadata_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider.cc; path = Firestore/core/src/remote/firebase_metadata_provider.cc; sourceTree = ""; }; - 41A3E8ACFA912A9AF76F6483F37B9328 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; + 419A2F5E500E7EBB744EB470E5EE7A83 /* core.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = core.c; path = src/unix/core.c; sourceTree = ""; }; + 41A034203E4D9789F401092AC3308040 /* 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 = ""; }; + 41A3E8ACFA912A9AF76F6483F37B9328 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; 41D96FBC9D0A6E1C99462DA2C4012D29 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; 41D97CEA6CF023D662FDCA100E717093 /* 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 = ""; }; 4201631D453E8A4896B50ABEAFF06D13 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/support/async_stream.h; sourceTree = ""; }; - 4207773A082DFEE41152DF199C6E7BE0 /* tls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c"; sourceTree = ""; }; - 42090D55DF53D66BCF53836855CA9799 /* stacktrace_aarch64-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_aarch64-inl.inc"; path = "absl/debugging/internal/stacktrace_aarch64-inl.inc"; sourceTree = ""; }; + 4207773A082DFEE41152DF199C6E7BE0 /* tls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c"; sourceTree = ""; }; + 42090D55DF53D66BCF53836855CA9799 /* 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 = ""; }; 42198CDFAADDC4FBEAE9CD731EBD7B86 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - 422AFB3BFD9E3B15F6863171275A548C /* transport_security_common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_common.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c"; sourceTree = ""; }; + 422AFB3BFD9E3B15F6863171275A548C /* transport_security_common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = transport_security_common.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c"; sourceTree = ""; }; 423513AA1A70B126235C93E3323B6A1E /* FIRGetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.h; sourceTree = ""; }; 42355E783CB4889255904EB91487EF96 /* tzfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tzfile.h; path = absl/time/internal/cctz/src/tzfile.h; sourceTree = ""; }; 424A4650FD0F4CDB844B98D3AF750136 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; 426693FD5A1BEE6E78EB7781E6425DEC /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - 427CED8AF3C4C27C7D6BD3F25EA68822 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; + 427CED8AF3C4C27C7D6BD3F25EA68822 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; 42A3036A3EB3F2CAB574A190EEF2227B /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; - 42AA348F4D249921F504E4AD6864C962 /* secure_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_endpoint.cc; path = src/core/lib/security/transport/secure_endpoint.cc; sourceTree = ""; }; + 42AA348F4D249921F504E4AD6864C962 /* 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 = ""; }; 42AF9E9DCB7DC1A118368FF058184E4F /* FIRFinalizeMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.m; sourceTree = ""; }; - 42B03F2B5C06689922427E4BFAD136C0 /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hkdf.c; path = src/crypto/hkdf/hkdf.c; sourceTree = ""; }; + 42B03F2B5C06689922427E4BFAD136C0 /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hkdf.c; path = src/crypto/hkdf/hkdf.c; sourceTree = ""; }; 42CF32CD743B55BBCC6BDDCE7C8A802E /* FIRMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorInfo.h; sourceTree = ""; }; 42D20D8C5C8621068047E76E3C4D7884 /* FIRAuthAppCredentialManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredentialManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.m; sourceTree = ""; }; - 42D62DC109DA630D1DF0CFA43490597E /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; + 42D62DC109DA630D1DF0CFA43490597E /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; 42E0116AA1827518C6BA3EA94F423BDD /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/impl/codegen/config.h; sourceTree = ""; }; - 42E19A0322478BF04B55DFC7F64BB28D /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; - 42FEBA5898FF456F652F06687A007078 /* ndk_binder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ndk_binder.cc; path = src/core/ext/transport/binder/utils/ndk_binder.cc; sourceTree = ""; }; + 42E19A0322478BF04B55DFC7F64BB28D /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; + 42FEBA5898FF456F652F06687A007078 /* 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 = ""; }; 4301AC34F2619CA037570179A9916F9D /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; - 4303A2830306E65C9BEA2AB456ECBD04 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; - 430F4518F77FD77BD3C0FDA487E3FE49 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = range.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; + 4303A2830306E65C9BEA2AB456ECBD04 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; + 430F4518F77FD77BD3C0FDA487E3FE49 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; 431E3E1E1B3E81C65E6542E4CBBBC796 /* 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 = ""; }; 431FF5DDC22FBBF06A0B03B99793FCF1 /* nid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nid.h; path = src/include/openssl/nid.h; sourceTree = ""; }; 433314235FA7FB503210A48A7B8C3553 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/codegen/connectivity_state.h; sourceTree = ""; }; - 4346B0DFD149A2399F33D6770A67B990 /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; + 4346B0DFD149A2399F33D6770A67B990 /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; 43573CD239787D73DF3CB946F948C1A0 /* 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 = ""; }; 4359F7F3150EE9F87188C87CFE87FBCA /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; 4367BF2B0B52DBC23245DCE5C1561046 /* Pods-Flash Chat iOS13-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Flash Chat iOS13-frameworks.sh"; sourceTree = ""; }; - 43733C341BEB1BFC9FFD78C36E397DCC /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = closure.cc; path = src/core/lib/iomgr/event_engine/closure.cc; sourceTree = ""; }; + 43733C341BEB1BFC9FFD78C36E397DCC /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = closure.cc; path = src/core/lib/iomgr/event_engine/closure.cc; sourceTree = ""; }; 43862307DEC25588167313C147983B33 /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; 439C188D35D5C60571AEF9E9CAB07ACA /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; 439DC80A01D31D0DA565A05B973F8FB5 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/include/openssl/des.h; sourceTree = ""; }; 43A351C64FF7F024EE93ED93530FA1FC /* FIRPhoneMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion.m; sourceTree = ""; }; 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseAuth; path = FirebaseAuth.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 43B970854EEA5E76968918991FA1B328 /* fsevents.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fsevents.c; path = src/unix/fsevents.c; sourceTree = ""; }; + 43B970854EEA5E76968918991FA1B328 /* fsevents.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fsevents.c; path = src/unix/fsevents.c; sourceTree = ""; }; 43D63C480DD386525C1E4B52028D8688 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - 43E9E567C990AA1967FF1BDE5F12269A /* endpoint_pair_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_windows.cc; path = src/core/lib/iomgr/endpoint_pair_windows.cc; sourceTree = ""; }; - 43EFCE7070AAA6A176A01BCA9AB3FEF2 /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; + 43E9E567C990AA1967FF1BDE5F12269A /* 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 = ""; }; + 43EFCE7070AAA6A176A01BCA9AB3FEF2 /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; 43F56D27A7F0FB1BFEA420D74D40807A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/unix/internal.h; sourceTree = ""; }; - 43FA37281A22B19D72F841F269ACCE2C /* memory_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_lru_reference_delegate.cc; path = Firestore/core/src/local/memory_lru_reference_delegate.cc; sourceTree = ""; }; + 43FA37281A22B19D72F841F269ACCE2C /* 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 = ""; }; 43FB5923F6352F0E64B8415389379F5B /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; 44039DF72B4BF0B25C130FB6CB5D4EB5 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/variant.h; sourceTree = ""; }; 4458F0D1F10EE69E8665971EC6085E38 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; 445D3A262160D62A827D3907AD6C3454 /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; 445EC53C4499CDE695F3AE222F60EB69 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - 44605840B9B334BDDB4C7FCBE5FD834E /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; - 4462AE185F80EE00EE01D49339A5BEC9 /* accesslog.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.upb.c; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c"; sourceTree = ""; }; - 446BE777A8F458662FB9871F3C5CF874 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; + 44605840B9B334BDDB4C7FCBE5FD834E /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; + 4462AE185F80EE00EE01D49339A5BEC9 /* accesslog.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upb.c; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c"; sourceTree = ""; }; + 446BE777A8F458662FB9871F3C5CF874 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; 447FDB694B22D633833151F2E5B3317A /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; 4488E92A02FBE9F1AE88BC95A1225C95 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - 44AB9CC0ABD6027D0E570AFA0B38B90A /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; + 44AB9CC0ABD6027D0E570AFA0B38B90A /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; 44B3BEC899FC6061C55B49912B75671B /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/codegen/delegating_channel.h; sourceTree = ""; }; - 44E70B4D044EDFE27528626FA49D8BEE /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; + 44E70B4D044EDFE27528626FA49D8BEE /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; 44F3C9AB9BAB9E5902D368EA28EC9D91 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; 4514AD0A7F3CF10391B711522C92E1AD /* 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 = ""; }; - 45341594EB71BDEF55F6210D28469D89 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_filter.cc; path = src/core/ext/filters/client_channel/retry_filter.cc; sourceTree = ""; }; + 45341594EB71BDEF55F6210D28469D89 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_filter.cc; path = src/core/ext/filters/client_channel/retry_filter.cc; sourceTree = ""; }; 454BC6F09893DB98D038BF08842DDF8F /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = src/include/openssl/asn1t.h; sourceTree = ""; }; 45620454AB15091C96150170C78F36F5 /* cipher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cipher.h; path = src/include/openssl/cipher.h; sourceTree = ""; }; 456F64DF049000E597A82DD48D788DC7 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - 45706FD070DE133D0E780598AEC28161 /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; + 45706FD070DE133D0E780598AEC28161 /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; 457ECAB0F72D308E112B3CF8F64AEA41 /* 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 = ""; }; 4592725643DE1ADCFCE8F803BDA0A417 /* 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 = ""; }; 4597EECA664D32D9B171C97CB20990C5 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; 45A160ECD03432F448182A72378495AF /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - 45A8734345F07709480D7823C549FED8 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; + 45A8734345F07709480D7823C549FED8 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; 45AC354AB6889EBA1ED0CD2C528B6311 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 45B97961BF706EE5E1AC410A3430EF27 /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; + 45B97961BF706EE5E1AC410A3430EF27 /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; 45DADBB766F537F6CFE3D29BEC01A64C /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; 462805E562D5F862B285CDEF040DCB0A /* 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 = ""; }; 462EF9D57B7F9C4BAB83EC879D142E8E /* 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 = ""; }; 4643512161FB87430FB3F009482FF48F /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - 465262F247160F3B86CC14880CCA471A /* deadline_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = deadline_filter.cc; path = src/core/ext/filters/deadline/deadline_filter.cc; sourceTree = ""; }; - 46533F3DADD032DF1BF49BD402476FA2 /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; + 465262F247160F3B86CC14880CCA471A /* 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 = ""; }; + 46533F3DADD032DF1BF49BD402476FA2 /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; 4659196B4EC3C5F86E39E5406F56C8A0 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; 465B01AC4FBD4F077901D79CB83AEDBB /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; 4676A21D65A47A9442C431317B31984C /* 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 = ""; }; - 4693B836E1309591AFED39C93D9CE572 /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; + 4693B836E1309591AFED39C93D9CE572 /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; 46A15753A6F5B949E66C26594B35CCDC /* 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 = ""; }; - 46A25C63BB58461F1ED4B77AAC130AE7 /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; - 46B584C459823DF83ABC276F03C171E9 /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; - 46B947F779A6111861D50A97B81A9F89 /* memory_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_target_cache.cc; path = Firestore/core/src/local/memory_target_cache.cc; sourceTree = ""; }; - 46C163AA895CED2B35401CB704316C16 /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pick_first.cc; path = src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc; sourceTree = ""; }; - 46C779AB4B47750DC30EE09E7090DC7A /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; + 46A25C63BB58461F1ED4B77AAC130AE7 /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; + 46B584C459823DF83ABC276F03C171E9 /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; + 46B947F779A6111861D50A97B81A9F89 /* 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 = ""; }; + 46C163AA895CED2B35401CB704316C16 /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pick_first.cc; path = src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc; sourceTree = ""; }; + 46C779AB4B47750DC30EE09E7090DC7A /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; 46C8727CA006A6CF451B6EDAAD249B57 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46D0D328706447157D50228B9F5CD475 /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; + 46D0D328706447157D50228B9F5CD475 /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; 46D8DEF4E450DE3F1C8C4C92BCD68576 /* 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 = ""; }; - 46E26E0AB07201DE7A2C043A2B469A6C /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; + 46E26E0AB07201DE7A2C043A2B469A6C /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; 46E77518A5A98B05D0F1CFC87F3060F1 /* 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 = ""; }; - 46EC2848BF69F0FCD2CF694ECED54685 /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; - 4717E45003D2AF5D00B6E73220748A53 /* security_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_handshaker.cc; path = src/core/lib/security/transport/security_handshaker.cc; sourceTree = ""; }; - 47346890DB8CADEFB681BBA5D928462A /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; + 46EC2848BF69F0FCD2CF694ECED54685 /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; + 4717E45003D2AF5D00B6E73220748A53 /* 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 = ""; }; + 47346890DB8CADEFB681BBA5D928462A /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; 473F4BECB31AE3F460DE823AFA12826C /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; 47402177CE5A3DE11A053DD3CEF70050 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; 474616FBF04AF1BCBEB7714A4421854A /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - 4756B5CFD2C831C8628FE8C262AE8617 /* p_ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ec_asn1.c; path = src/crypto/evp/p_ec_asn1.c; sourceTree = ""; }; + 4756B5CFD2C831C8628FE8C262AE8617 /* 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 = ""; }; 475993D0793102301F1F6242EED7CDF4 /* 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 = ""; }; - 475BED9E80993D7BB3C1F31E3FF57207 /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; + 475BED9E80993D7BB3C1F31E3FF57207 /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; 476C6CBD7983889EEADE7A40DBF578A9 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; 4770AD5392F71D42C2FDFF3ED05EEC0A /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; 4779625A715B73E29A8413C645E64F81 /* identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = identity.h; path = absl/base/internal/identity.h; sourceTree = ""; }; - 478D5AF4B55E749ECFA3D66985065523 /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; - 478F7FFDAF0AD48E7A8E12867769CA73 /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; - 479EB203FBBEB87197336466B7CB6653 /* server_secure_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_secure_chttp2.cc; path = src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc; sourceTree = ""; }; - 47A19DBC2BDF461D70C4145E0880B0E3 /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; + 478D5AF4B55E749ECFA3D66985065523 /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; + 478F7FFDAF0AD48E7A8E12867769CA73 /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; + 479EB203FBBEB87197336466B7CB6653 /* server_secure_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_secure_chttp2.cc; path = src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc; sourceTree = ""; }; + 47A19DBC2BDF461D70C4145E0880B0E3 /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; 47AAB4EAA21F13C8410B01D184CD9981 /* inline_variable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inline_variable.h; path = absl/base/internal/inline_variable.h; sourceTree = ""; }; 47BB7FFE964FE1203DCCFBE549276EE0 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; 47BE6CABFBD6DD2F81016393589470C4 /* secure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_credentials.h; path = src/cpp/client/secure_credentials.h; sourceTree = ""; }; @@ -13628,190 +13628,190 @@ 47E93296EC1FD5F93DED76D85AFA1881 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; 47F9209A1375FF6B6C5B0867AECC73AC /* FIRFacebookAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.m; sourceTree = ""; }; 4811407D5488DD7D66A5363A1508DA3A /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; - 481784854F1A018C2CB4C1DC76669268 /* alts_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_crypter.cc; sourceTree = ""; }; + 481784854F1A018C2CB4C1DC76669268 /* 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 = ""; }; 48388DE98C2EC1620B66D911004DB48C /* FIRIdentityToolkitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIdentityToolkitRequest.h; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h; sourceTree = ""; }; - 483F1BA8EA46A62D62C118AAE3B83C36 /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; + 483F1BA8EA46A62D62C118AAE3B83C36 /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; 484C096A02D4D9A27933DD68418A93BA /* 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 = ""; }; - 484F6034FC172EDB0E0A8EA1FCEAC697 /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; + 484F6034FC172EDB0E0A8EA1FCEAC697 /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; 485A32429AF2B8C89A550B4AAE685E71 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = ""; }; - 486B2A05F8690A41848B07F503F37C85 /* tls_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_utils.cc; path = src/core/lib/security/credentials/tls/tls_utils.cc; sourceTree = ""; }; + 486B2A05F8690A41848B07F503F37C85 /* 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 = ""; }; 4873DE47782D39C26B46D0A1D2C29BE0 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; 4882020D02BEE009A13FAFEA24653A32 /* FIREmailPasswordAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailPasswordAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.m; sourceTree = ""; }; - 4892F676797FE9694FB3CC0FAD5227C4 /* resource_quota_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_quota_cc.cc; path = src/cpp/common/resource_quota_cc.cc; sourceTree = ""; }; + 4892F676797FE9694FB3CC0FAD5227C4 /* 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 = ""; }; 489EB4EA70CC5221481BF03B7197BFB4 /* FIRVerifyPhoneNumberResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.m; sourceTree = ""; }; 48B4DD9A9938072A07CF259F4C5F30E0 /* 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 = ""; }; 48C982BD56A0CA1D5B756A336180642C /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; - 491C5B9E8DCE4FAD6CF9F43BBBDEB359 /* udp_listener_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_listener_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c"; sourceTree = ""; }; - 49213FF9A5BE564C95F0B6A2061AF8A8 /* low_level_alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = low_level_alloc.cc; path = absl/base/internal/low_level_alloc.cc; sourceTree = ""; }; + 491C5B9E8DCE4FAD6CF9F43BBBDEB359 /* udp_listener_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c"; sourceTree = ""; }; + 49213FF9A5BE564C95F0B6A2061AF8A8 /* 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 = ""; }; 49227DD1593D1911AB2C7D0809DFB7AB /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - 492A21B3320D00AED3907D59249ECB03 /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; + 492A21B3320D00AED3907D59249ECB03 /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; 492C1AEDF0F2473348AAD01F9857FCD8 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; 492D2DC2280346F2F0164538187158A4 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; 4932837CAF53E06EF71B43412AFA8D78 /* 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 = ""; }; 493CB65C90A34FE875D76FCA4D7E81F2 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - 4949754FF74ED2EA97CF481173C0F132 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; + 4949754FF74ED2EA97CF481173C0F132 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; 495906018B5E0F8CE64C60C2A6A381E8 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/trust_token/internal.h; sourceTree = ""; }; - 49622E3E5F58C83A87A039F6458A2A02 /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; + 49622E3E5F58C83A87A039F6458A2A02 /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; 496C34846079E9EC78D047FE2E773626 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; 49A4F8B5D211E97177EA812FF6901D9E /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; 49A752E8F3D274B1F36474049315EF94 /* 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 = ""; }; - 49AE3FB8C15125F66DEC967D521E2B9D /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; + 49AE3FB8C15125F66DEC967D521E2B9D /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; 49C50D8E8A7F1F4AD6D32A4405FD242E /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; 49C7E66F1CC266330DE34F06433B94CF /* 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 = ""; }; - 49F0BB19841D136A33CDBFA501957671 /* lds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lds.upb.c; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c"; sourceTree = ""; }; - 4A06A319259E70B5428B5F626BA3B93B /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; + 49F0BB19841D136A33CDBFA501957671 /* lds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lds.upb.c; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c"; sourceTree = ""; }; + 4A06A319259E70B5428B5F626BA3B93B /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; 4A0E0BC8A2E3A70F65E0772F6862AE16 /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; 4A2DE0F3F1C5EB3D90EFB27BB328A22B /* 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 = ""; }; 4A473E17BCA02A26F2CBEE82B4FB074A /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; 4A5A80D2FD12EB9BF337108FB83801DA /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; - 4A63E6C3A44B7F2ECECECAF4C02BE6C0 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = signal.c; path = src/unix/signal.c; sourceTree = ""; }; + 4A63E6C3A44B7F2ECECECAF4C02BE6C0 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = signal.c; path = src/unix/signal.c; sourceTree = ""; }; 4A6DA410D05FF9B136222B9F0D0A19C3 /* 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 = ""; }; - 4A6F99F62FA9BA661DFD44BE2E3BB7D2 /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; - 4A9F06DE7D615F3916E1004267B2C151 /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; - 4AA6E32CE176EAA4A511A77FCF3C8D0C /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; - 4AA8E7D424EF8D56A1B62571FE186717 /* tmpfile_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_windows.cc; path = src/core/lib/gpr/tmpfile_windows.cc; sourceTree = ""; }; + 4A6F99F62FA9BA661DFD44BE2E3BB7D2 /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; + 4A9F06DE7D615F3916E1004267B2C151 /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; + 4AA6E32CE176EAA4A511A77FCF3C8D0C /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; + 4AA8E7D424EF8D56A1B62571FE186717 /* tmpfile_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_windows.cc; path = src/core/lib/gpr/tmpfile_windows.cc; sourceTree = ""; }; 4ABF63F882F4DD9763E0CCDDFFA63080 /* utf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf.h; path = third_party/re2/util/utf.h; sourceTree = ""; }; - 4AC3582CABDE28ACD6CF8B538100805F /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; - 4AFB5D8CE16F365954298D32489F2638 /* auth_property_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = auth_property_iterator.cc; path = src/cpp/common/auth_property_iterator.cc; sourceTree = ""; }; + 4AC3582CABDE28ACD6CF8B538100805F /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; + 4AFB5D8CE16F365954298D32489F2638 /* 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 = ""; }; 4B0F1D207BEC3C04E7AA502B953EE645 /* 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 = ""; }; 4B18B60FDC4329B766B328DCF9868221 /* FIRMultiFactorResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorResolver.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver.m; sourceTree = ""; }; 4B3CF7A5C9AA34CEF648438D6AD11152 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; 4B41A9D4DE4D3CFD54498E4EBE058082 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; 4B60CBE0EC099335CFEC19ADB8EEC731 /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; - 4B68D369102811A3FCBE53E268FE1869 /* refcount_lock.c */ = {isa = PBXFileReference; includeInIndex = 1; name = refcount_lock.c; path = src/crypto/refcount_lock.c; sourceTree = ""; }; - 4B9E632ADB408AA9CCF417432865BA8E /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; + 4B68D369102811A3FCBE53E268FE1869 /* refcount_lock.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = refcount_lock.c; path = src/crypto/refcount_lock.c; sourceTree = ""; }; + 4B9E632ADB408AA9CCF417432865BA8E /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; 4BA0956FF8B0CC3BDF5FBF1BC6561514 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; 4BA56DEEB00B9AC6D043C190A8347AA8 /* 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 = ""; }; 4BAA1FACA74D6AB50362A5ED659F87C4 /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - 4BAB95E1B5D560D31ABE95BFB7348DB3 /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; + 4BAB95E1B5D560D31ABE95BFB7348DB3 /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; 4BBEBFE33DAFDA452902344CF828AB0A /* FIREmailLinkSignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.h; sourceTree = ""; }; - 4BE0C3B364EC5024E1030B3114141A52 /* pcy_cache.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_cache.c; path = src/crypto/x509v3/pcy_cache.c; sourceTree = ""; }; - 4BF3AD27D17E8D39FEBAA125959DB952 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; + 4BE0C3B364EC5024E1030B3114141A52 /* pcy_cache.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_cache.c; path = src/crypto/x509v3/pcy_cache.c; sourceTree = ""; }; + 4BF3AD27D17E8D39FEBAA125959DB952 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; 4C0842CE55EAEDE841060BAA8A1FA6C1 /* FIRVerifyCustomTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.h; sourceTree = ""; }; - 4C0C9AE08A070FC5514190C63DFA6258 /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; - 4C2E904B299A912A882B296AE204105D /* server_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_address.cc; path = src/core/lib/resolver/server_address.cc; sourceTree = ""; }; - 4C32542114D83D699B0B70FE71665939 /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; + 4C0C9AE08A070FC5514190C63DFA6258 /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; + 4C2E904B299A912A882B296AE204105D /* server_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_address.cc; path = src/core/lib/resolver/server_address.cc; sourceTree = ""; }; + 4C32542114D83D699B0B70FE71665939 /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; 4C3CBF9A2AEEFF612EA6090F5C5849DA /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; 4C47BF3E59C60249A248FE3D0EE2AF50 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; 4C7E475A835489D536032B2126BB7F46 /* 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 = ""; }; 4C899FE818FE07B81B0033853E8C5360 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 4C966CB172076FC303F3BBB47A1B1F6C /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connect_handshaker.cc; path = src/core/ext/filters/client_channel/http_connect_handshaker.cc; sourceTree = ""; }; - 4C9A0176BD5B0D9AE760206CE5326A7A /* binder_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_transport.cc; path = src/core/ext/transport/binder/transport/binder_transport.cc; sourceTree = ""; }; + 4C966CB172076FC303F3BBB47A1B1F6C /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_connect_handshaker.cc; path = src/core/ext/filters/client_channel/http_connect_handshaker.cc; sourceTree = ""; }; + 4C9A0176BD5B0D9AE760206CE5326A7A /* 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 = ""; }; 4CA284AD4088A4114E393D5BF3E14BA9 /* FIRVerifyClientResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.h; sourceTree = ""; }; - 4CAC45ABAEAEF192E6290FDD3286F4ED /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; + 4CAC45ABAEAEF192E6290FDD3286F4ED /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; 4CB352F07A72645702A6D215603714DA /* FIRGetOOBConfirmationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.h; sourceTree = ""; }; 4CB3B826478FB3221A7CE8D09EAD6319 /* 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 = ""; }; - 4CD1185D1C535BF4DA84F99F1ED091F8 /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; + 4CD1185D1C535BF4DA84F99F1ED091F8 /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; 4D02212315D8427A4561D868E99354EF /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; 4D169A2922435604B1E58316FF17DC28 /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/codegen/grpc_types.h; sourceTree = ""; }; 4D19F7F151E638E1566A7C053D2C4DFF /* 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 = ""; }; - 4D1FCB656FB363AB1952BCBAD1A9F5B3 /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; + 4D1FCB656FB363AB1952BCBAD1A9F5B3 /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; 4D4F7392040D08FFEA15676381598298 /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = Firestore/Source/Public/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; 4D508A85648BBFD2090CE02F1272B214 /* 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 = ""; }; 4D53CE77152F94AA6B5FB8C17D891F6B /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; 4D5BE0510E6733C4EE475FA4B5573541 /* CLTypingLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CLTypingLabel-Info.plist"; sourceTree = ""; }; - 4D645D2697EDD388B99515B5CD568C59 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c"; sourceTree = ""; }; - 4D6799C40D723F2EA94222DB17A1E4FA /* tcp_client_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_cfstream.cc; path = src/core/lib/iomgr/tcp_client_cfstream.cc; sourceTree = ""; }; + 4D645D2697EDD388B99515B5CD568C59 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c"; sourceTree = ""; }; + 4D6799C40D723F2EA94222DB17A1E4FA /* 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 = ""; }; 4D6DBAB58F5643BDE8B88A4CF90F2368 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; 4D6FCAC420BD70D8C784331997B03988 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = src/include/openssl/dsa.h; sourceTree = ""; }; 4D6FEE3CA9F96F7CA61E9412C792D92F /* 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 = ""; }; - 4D72A0B04509794A697C481159197774 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; + 4D72A0B04509794A697C481159197774 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; 4D811938FE470F6F794D4F17C60FF7BA /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - 4D8EDCFC2622E277B355AA171FBC0407 /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; + 4D8EDCFC2622E277B355AA171FBC0407 /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; 4D928F5756871DF72B1E07F5C79BE81B /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; 4DA709FA365A48B6CE11B651FA023E19 /* 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 = ""; }; 4DB00C3343089AE1ACEDBEE4E901DD69 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; - 4DB6308303A943EF7C14532AAC3E0B29 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; - 4DD43ABCAA2190CAA602953C834255F6 /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; + 4DB6308303A943EF7C14532AAC3E0B29 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; + 4DD43ABCAA2190CAA602953C834255F6 /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; 4DD909F395FB1CB615171423502F907B /* gRPC-C++.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.release.xcconfig"; sourceTree = ""; }; - 4DFA71A50289FC31A750032EB1A1E902 /* xds_server_config_fetcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_server_config_fetcher.cc; path = src/core/ext/xds/xds_server_config_fetcher.cc; sourceTree = ""; }; + 4DFA71A50289FC31A750032EB1A1E902 /* 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 = ""; }; 4E0BC17D35593EF35461F93FC3E2EC0B /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; - 4E0CA0615F0100D4812DD20785E2F8FB /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; + 4E0CA0615F0100D4812DD20785E2F8FB /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; 4E0E06C5D4EA976E046F997190A76DCC /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 4E3615D76DA8B5E946AB2F0F10B647D4 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; + 4E3615D76DA8B5E946AB2F0F10B647D4 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; 4E3EC9FBC638972A41DEEE83F8B1D59C /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; 4E486D36F2AE99C0A115C39B41F6D75C /* 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 = ""; }; 4E74012D0138C064621AA13083FC17AE /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; 4E756628518B41DDE180232871CCD954 /* unicode_casefold.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_casefold.h; path = third_party/re2/re2/unicode_casefold.h; sourceTree = ""; }; 4E7987C9EDCB7BA1803E4D1C4E46FBC3 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - 4E8937448E2B68BD01C5C0C401607418 /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_poll_posix.cc; path = src/core/lib/iomgr/ev_poll_posix.cc; sourceTree = ""; }; + 4E8937448E2B68BD01C5C0C401607418 /* 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 = ""; }; 4EA10F768A51A4AB656C10E6B7141961 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; - 4EA4FE0EB23C0EC7AC83EA50EBFE7212 /* key_field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_filter.cc; path = Firestore/core/src/core/key_field_filter.cc; sourceTree = ""; }; + 4EA4FE0EB23C0EC7AC83EA50EBFE7212 /* 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 = ""; }; 4EB1DD57F7FE82E39EAD20F2B74F0CDA /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; 4EB4857181698949BC3012F44F99E4C7 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - 4ED571A34E3B677C5F7AEA3F2FBB929B /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; + 4ED571A34E3B677C5F7AEA3F2FBB929B /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; 4F002DD35698729F7C777D90AAEE8B8E /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 4F0918A9481279281090CA6C38F60206 /* grpc_alts_credentials_server_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_server_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc; sourceTree = ""; }; - 4F20F018998C445B11421D01998A59F9 /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; - 4F3BADBB781CD5803D97720792F617B5 /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; + 4F0918A9481279281090CA6C38F60206 /* 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 = ""; }; + 4F20F018998C445B11421D01998A59F9 /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; + 4F3BADBB781CD5803D97720792F617B5 /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; 4F416956D1C0D99E46922CC4EA6A5184 /* sample_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sample_recorder.h; path = absl/profiling/internal/sample_recorder.h; sourceTree = ""; }; 4F43D0D8F09FCC95BD0EF4D386F8E8F9 /* 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 = ""; }; - 4F54CD61985D2CF088FC6A50AA6D9CB9 /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; + 4F54CD61985D2CF088FC6A50AA6D9CB9 /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; 4F58040F8DAD60DB9E92C3636B08166B /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - 4F6172BD84D4D8EC2DCF7845B81CE647 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; + 4F6172BD84D4D8EC2DCF7845B81CE647 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; 4F6D54E934FA1E9E2820BF7A14052CD6 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; 4F6FDEA4A5F1E357BF4010C8A5BAD9F7 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/internal/bits.h; sourceTree = ""; }; 4F7B89AD70178C95E83274ED63BD29F6 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; 4F96768A3D8951D7AA42A0BA458EF7C0 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; 4F97B8898465846AB44BB5D78E704921 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; - 4FA2248941B6C9399BA70E437690BF94 /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; - 4FC7F46A765F55FCDB801FDDF5E2D44B /* bad_optional_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_optional_access.cc; path = absl/types/bad_optional_access.cc; sourceTree = ""; }; + 4FA2248941B6C9399BA70E437690BF94 /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; + 4FC7F46A765F55FCDB801FDDF5E2D44B /* 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 = ""; }; 4FCFAECC0B9457C5990B27906BE2E680 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; 4FD0C845F190D7AD681D8171AF0A6D98 /* FIRVerifyClientRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.m; sourceTree = ""; }; - 4FD4ED5B0D555E874244EF0B61F14810 /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; + 4FD4ED5B0D555E874244EF0B61F14810 /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; 4FDCF62811B45F39F2F50B6BF289981C /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 4FF241228E1D7A5D8F3D14681DC4ECC6 /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; - 4FF58CDC1AB166052E72D0CEAF53AA68 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; + 4FF241228E1D7A5D8F3D14681DC4ECC6 /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; + 4FF58CDC1AB166052E72D0CEAF53AA68 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; 4FFA452DD4DD483849260352468A085B /* 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 = ""; }; 50026C6E0C9602DB8FF5797E20E827C0 /* 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 = ""; }; 505FD4E7742B62F8703900FF50585766 /* FIRSignUpNewUserResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.m; sourceTree = ""; }; 5073BE02EEE87077825A5847FA8C9A17 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; 5076FA3CE1D5975DC29A378E65C75CBC /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; 509E04DC4DD7DC7401200EFB5AF05438 /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; - 50AF0D85488F4449C0EDBFD8A4823417 /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; + 50AF0D85488F4449C0EDBFD8A4823417 /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; 50AF2EB2D8A9A72600617F361DA02B89 /* FIRMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorAssertion.h; sourceTree = ""; }; 50B468FC41F6FACFB7107DD6DDB1A625 /* curve25519.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = src/include/openssl/curve25519.h; sourceTree = ""; }; 50C2F3FAC412F3F87B88FBBB69FB45EB /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; 50D283A08685D59D0445348AAF1EF5B5 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; 50EB175CD8D55263964AA3FCC78A6EAB /* 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 = ""; }; - 50EB4F883CA772DD7132C582C7324DBF /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; + 50EB4F883CA772DD7132C582C7324DBF /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; 50F383CE603CBCB82B2296FF8F0C9C88 /* 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 = ""; }; 513939EF797A0D3FFC253412CE4699F7 /* FIRVerifyAssertionResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h; sourceTree = ""; }; - 514443CE44B5457F38360560E21CB2B7 /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; + 514443CE44B5457F38360560E21CB2B7 /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "BoringSSL-GRPC"; path = openssl_grpc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 5150B0D594A45DBBA0E0E810AA855123 /* 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 = ""; }; - 515A8039F086F2C6B49BAC0CB5580503 /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; name = table.c; path = third_party/upb/upb/table.c; sourceTree = ""; }; - 515F6C8B63220BF7C8868F8699C2ED1F /* slice_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_split.cc; path = src/core/lib/slice/slice_split.cc; sourceTree = ""; }; + 515A8039F086F2C6B49BAC0CB5580503 /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = table.c; path = third_party/upb/upb/table.c; sourceTree = ""; }; + 515F6C8B63220BF7C8868F8699C2ED1F /* slice_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_split.cc; path = src/core/lib/slice/slice_split.cc; sourceTree = ""; }; 5161171B05A0D32C18A67810CCBA11F6 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; 516ED07CA5ADD6BC0D6E047F1416AD7F /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; - 51714DDCB074E204B6F3BE9E3EB66986 /* chttp2_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_server.cc; path = src/core/ext/transport/chttp2/server/chttp2_server.cc; sourceTree = ""; }; + 51714DDCB074E204B6F3BE9E3EB66986 /* 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 = ""; }; 517B97015B3FC5EA2B07A71FDE8D1FFA /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; 5186766C19ED0E80B260A731B62EAF96 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; - 519111FE31AF9C33771556A6A7CFF355 /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; + 519111FE31AF9C33771556A6A7CFF355 /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; 519CFAE5E80E0858F22B1207F772371D /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/include/openssl/thread.h; sourceTree = ""; }; - 51C01A0A42203BF3A2AEBC597A235616 /* time_zone_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_impl.cc; path = absl/time/internal/cctz/src/time_zone_impl.cc; sourceTree = ""; }; - 51E171201B95E22D24FE86EA60539F2E /* mutation.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/mutation.nanopb.cc; sourceTree = ""; }; + 51C01A0A42203BF3A2AEBC597A235616 /* 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 = ""; }; + 51E171201B95E22D24FE86EA60539F2E /* 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 = ""; }; 51E18CD16C038114D5BD8101417BEE2C /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pool/internal.h; sourceTree = ""; }; 51E3E996372F9596593B3594C5F3792D /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; 51E7F2038A0FFD81F4DA08919B2465F1 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; 51F5527F8DBCF86CE08054B11994B74B /* 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 = ""; }; - 51F7BBC9E6B6BFF79BF1321A3AF0DD44 /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; - 520993DD615B962BCA83B87043F6B5C1 /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; - 5250D9750970EC72662A4328BC6D34DB /* latlng.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = latlng.nanopb.cc; path = Firestore/Protos/nanopb/google/type/latlng.nanopb.cc; sourceTree = ""; }; + 51F7BBC9E6B6BFF79BF1321A3AF0DD44 /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; + 520993DD615B962BCA83B87043F6B5C1 /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; + 5250D9750970EC72662A4328BC6D34DB /* 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 = ""; }; 526F3F794218C208C7F18690F8E54E02 /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; 527C17EF3B4C69823F04617EC5125736 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; 52B105DF984AFC8E0B4DC9069FAA1CAF /* FIRAdditionalUserInfo_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo_Internal.h; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo_Internal.h; sourceTree = ""; }; - 52BB45DBBAB2980EEBC94F2BFA411AD0 /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; - 52C8017BD512BD1CBD411D507040798B /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; - 52F16022C649ACB97E6AA6764CD9EECA /* lrs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lrs.upb.c; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c"; sourceTree = ""; }; + 52BB45DBBAB2980EEBC94F2BFA411AD0 /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; + 52C8017BD512BD1CBD411D507040798B /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; + 52F16022C649ACB97E6AA6764CD9EECA /* lrs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upb.c; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c"; sourceTree = ""; }; 52F297625EFD545077312FD10FF822EF /* 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 = ""; }; 53066434EF4AE66D061D6B1DB55A75FC /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - 5308BA4B92B51B01985457197C540C9A /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; + 5308BA4B92B51B01985457197C540C9A /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; 531F41E910FA8C57321514F25F119A01 /* pod_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pod_array.h; path = third_party/re2/re2/pod_array.h; sourceTree = ""; }; 53212C870257E407514D0B7EBBC7CAE3 /* futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex.h; path = absl/synchronization/internal/futex.h; sourceTree = ""; }; 532DA9FCB6AAB8630152D8CEA7CD8EE5 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; 5331B21BF9163E6BEFAB03650F5C2B26 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 5334B11BB7A0874C2963E2E78591A20C /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; + 5334B11BB7A0874C2963E2E78591A20C /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; 537783505D0EDCAD67C308673B6B2BD3 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; 537964F0ACE37B6A892730099609A883 /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/impl/codegen/callback_common.h; sourceTree = ""; }; 537E6C959AE50F65BB780F3D99DE18CE /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; @@ -13820,12 +13820,12 @@ 53CF68FC9387B7C4FCC322FAFB715A17 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; 53D0AA6AE75C3C240E84BC6339E5DAFB /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; 540F2B2E80B217D044C50B4B3024578E /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; - 54160E37AF4805883EE529E53FE80C53 /* iomgr_posix_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_posix_cfstream.cc; path = src/core/lib/iomgr/iomgr_posix_cfstream.cc; sourceTree = ""; }; - 542E2201649FD3BA033B8BA4C225AB0F /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; + 54160E37AF4805883EE529E53FE80C53 /* 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 = ""; }; + 542E2201649FD3BA033B8BA4C225AB0F /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; 5441A34E201EDA4BD82DD79DF4FD031A /* memutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memutil.h; path = absl/strings/internal/memutil.h; sourceTree = ""; }; 544621CF0734E8DD6CD34F8DE92591C6 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - 544EDA90AB94329937EC7A44A714E704 /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; - 544F68A089CA6E9F03FF9B22195FA661 /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; + 544EDA90AB94329937EC7A44A714E704 /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; + 544F68A089CA6E9F03FF9B22195FA661 /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; 545266DC416A734DB0D2DA7D63AB8BA3 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; 5453F7B4FAD6BB59D01E772773491110 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; 54568FD644571921487F46147E154CF8 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = port/port.h; sourceTree = ""; }; @@ -13834,137 +13834,137 @@ 54D2E0296904A01121472F6025702E25 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; 553AF1D17FF3C303161C8CE4614D629D /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; 555755FC986220016223AD6FEF637404 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - 557AF053195E4E1535624B1F30AEE6AE /* online_state_tracker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = online_state_tracker.cc; path = Firestore/core/src/remote/online_state_tracker.cc; sourceTree = ""; }; + 557AF053195E4E1535624B1F30AEE6AE /* 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 = ""; }; 5588F70B6B250953B5D1E23B172C337E /* FIRGitHubAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthProvider.m; sourceTree = ""; }; - 558B59B0974DAC57D0A823C464CFB9A6 /* rls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rls.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c"; sourceTree = ""; }; + 558B59B0974DAC57D0A823C464CFB9A6 /* rls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c"; sourceTree = ""; }; 558FEB78138F8D6E914C3226741CBFE6 /* 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 = ""; }; 55932A25182FDD770F09E6659F107218 /* 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 = ""; }; 55A9350584631285065A0B7A19044102 /* p256_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_table.h; path = src/crypto/fipsmodule/ec/p256_table.h; sourceTree = ""; }; 55BEB17780C7EC816508770FC262F1DF /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; - 55F980E84623602E0204B77CE99A9372 /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; + 55F980E84623602E0204B77CE99A9372 /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; 55FC2064FC20D690EBA7B427A819CDB7 /* FIRCreateAuthURIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.h; sourceTree = ""; }; 5644112402B53656046A5C2E62B210CB /* FIRUserInfoImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserInfoImpl.m; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.m; sourceTree = ""; }; - 5654679A04C2B3B66EFF7DC0BB2B6001 /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; + 5654679A04C2B3B66EFF7DC0BB2B6001 /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; 56547311CE3860919BB8FEFA51ECB0C1 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; 56693F7593922AF3CEBA0E29564AF012 /* mix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mix.h; path = third_party/re2/util/mix.h; sourceTree = ""; }; - 5669B37980A2C27B347C88D24A5245A6 /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = c.cc; path = db/c.cc; sourceTree = ""; }; + 5669B37980A2C27B347C88D24A5245A6 /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = c.cc; path = db/c.cc; sourceTree = ""; }; 567DE34A17B6351564C1B1B156942529 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; 56AA12118D3A9F28C995C4618237BFCB /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - 56AD1C946FE54FCFEFB46C426675FAC4 /* number.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = number.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c"; sourceTree = ""; }; - 56DDCC36A630FCE427DE8B99BF1CA8E7 /* uv-common.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "uv-common.c"; path = "src/uv-common.c"; sourceTree = ""; }; + 56AD1C946FE54FCFEFB46C426675FAC4 /* number.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c"; sourceTree = ""; }; + 56DDCC36A630FCE427DE8B99BF1CA8E7 /* uv-common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "uv-common.c"; path = "src/uv-common.c"; sourceTree = ""; }; 5706A32E275C03E7E6636938B7384037 /* vdso_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vdso_support.h; path = absl/debugging/internal/vdso_support.h; sourceTree = ""; }; 5710B7DECEFB5CADF81ECA6E0521C5B8 /* FIRGetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.m; sourceTree = ""; }; 57154B976BBF46B3B191F57066FBB2B6 /* 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 = ""; }; 572C085368F67605A3C1B0315F611E38 /* randen_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_traits.h; path = absl/random/internal/randen_traits.h; sourceTree = ""; }; - 572CC7E63EBE5612809F5A345639FF5C /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pcons.c; path = src/crypto/x509v3/v3_pcons.c; sourceTree = ""; }; + 572CC7E63EBE5612809F5A345639FF5C /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pcons.c; path = src/crypto/x509v3/v3_pcons.c; sourceTree = ""; }; 572E01E608361DD0DF7B1AB2C7BE8447 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; 5754AAF412D8D2FF369643708F23553E /* 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 = ""; }; 575DD436391DC3BA9D4CED488AE2F6CC /* 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 = ""; }; 5763BCC22760EB5D5B366C4D7D794273 /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h; sourceTree = ""; }; - 57675477D4DB0E5E71E74831B267B9F6 /* xds_http_fault_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_fault_filter.cc; path = src/core/ext/xds/xds_http_fault_filter.cc; sourceTree = ""; }; + 57675477D4DB0E5E71E74831B267B9F6 /* 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 = ""; }; 576983C2474543614C202AE55F53F737 /* 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 = ""; }; 577369043FA5FA8FDAF630730C417706 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/impl/codegen/async_stream.h; sourceTree = ""; }; - 577E93AD33C9EEE4C4DD5DF22B63F93F /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; + 577E93AD33C9EEE4C4DD5DF22B63F93F /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; 578C04481D513F9AE055EBCA062B77F7 /* 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 = ""; }; - 579B3E492708354C7D840C01C706D077 /* binder_security_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_security_policy.cc; path = src/core/ext/transport/binder/security_policy/binder_security_policy.cc; sourceTree = ""; }; - 579EEBC70FF37E85F4B04D70864B58AE /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_balancer_addresses.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; - 57BB953F0CB0C433464020B0E00F59F9 /* lru_garbage_collector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lru_garbage_collector.cc; path = Firestore/core/src/local/lru_garbage_collector.cc; sourceTree = ""; }; + 579B3E492708354C7D840C01C706D077 /* 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 = ""; }; + 579EEBC70FF37E85F4B04D70864B58AE /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_balancer_addresses.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; + 57BB953F0CB0C433464020B0E00F59F9 /* 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 = ""; }; 57D4DC1CB570DD9F0991A0C0B936A1BF /* FIRStartMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.h; sourceTree = ""; }; - 57D9D04F4FF69AA878CB56C2CE564C89 /* http_uri.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_uri.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c"; sourceTree = ""; }; + 57D9D04F4FF69AA878CB56C2CE564C89 /* http_uri.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c"; sourceTree = ""; }; 580385EA62D5F2B7AE7A7FA62157691C /* unscaledcycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock.h; path = absl/base/internal/unscaledcycleclock.h; sourceTree = ""; }; 581D4E97B9C153D6581E9FAB58DBE173 /* cord_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_internal.h; path = absl/strings/internal/cord_internal.h; sourceTree = ""; }; 5822CFBA3FA27C58E263CB725A6FDC1E /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = ""; }; 5822F78F5E1490E66C1B4E5CBDAFE96D /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = Firestore/Source/Public/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; 5825553765E09FFBA84EC6D34FA6EC0D /* 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 = ""; }; 5838A843FA8C91F40226C6CF88A6C235 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - 5852C08B5630DDB5A5C96AEC96900138 /* a_d2i_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_d2i_fp.c; path = src/crypto/asn1/a_d2i_fp.c; sourceTree = ""; }; - 58725D54B32D5B77A2724A66D7ECF9FD /* raw_hash_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_hash_set.cc; path = absl/container/internal/raw_hash_set.cc; sourceTree = ""; }; + 5852C08B5630DDB5A5C96AEC96900138 /* 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 = ""; }; + 58725D54B32D5B77A2724A66D7ECF9FD /* 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 = ""; }; 587BF25E347F3F5B394DC39E2EF64039 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; 587F6CD8D7DB682D57FDFE9C5C5E59DF /* 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 = ""; }; 58801E32C4A42A16557BA21E4B98364C /* 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 = ""; }; - 5880A4129D44D0A02E2246BC3EB7DD79 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/google/rpc/status.upb.c"; sourceTree = ""; }; - 588A030CF215733900465F808EDA6BE5 /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; + 5880A4129D44D0A02E2246BC3EB7DD79 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/google/rpc/status.upb.c"; sourceTree = ""; }; + 588A030CF215733900465F808EDA6BE5 /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; 5892480F0D782668E0F1E57DB4B5516B /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; 5892894960C914E174B043795089BF47 /* 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 = ""; }; 58AE3D4C9E9EACADE37CAC4654B7A8D8 /* FirebaseAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.release.xcconfig; sourceTree = ""; }; - 58AF641AC2B1113B880F899C1B65E8E9 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_crld.c; path = src/crypto/x509v3/v3_crld.c; sourceTree = ""; }; - 58C4316390D07AD0C9474A71B0DE7AEA /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; + 58AF641AC2B1113B880F899C1B65E8E9 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_crld.c; path = src/crypto/x509v3/v3_crld.c; sourceTree = ""; }; + 58C4316390D07AD0C9474A71B0DE7AEA /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; 58C9EADE8BEF8BE5F34E1E7E31A8D1E9 /* FIRVerifyCustomTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.h; sourceTree = ""; }; 58CA1261190A47476BFFD6E6D5769A99 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = src/include/openssl/x509v3.h; sourceTree = ""; }; 58CBA3F290BEECE48CB118CA5B45C07C /* 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 = ""; }; - 58D272EA215EECAE8DC278AE15D91714 /* leveldb_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_lru_reference_delegate.cc; path = Firestore/core/src/local/leveldb_lru_reference_delegate.cc; sourceTree = ""; }; + 58D272EA215EECAE8DC278AE15D91714 /* 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 = ""; }; 58D5D7A847B5BA00D7E5289BAC10EC22 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; - 58F5126CB35CFB3CB89D34370E0F55E3 /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; - 58FBA651283CD0BDF6C1AA81F2BDC415 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; + 58F5126CB35CFB3CB89D34370E0F55E3 /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; + 58FBA651283CD0BDF6C1AA81F2BDC415 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; 590AE90506EFCE06B4EDCD9CD77DED30 /* str_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_format.h; path = absl/strings/str_format.h; sourceTree = ""; }; - 590F9DCB1F32514A63FEA3F6982C033A /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; + 590F9DCB1F32514A63FEA3F6982C033A /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; 5934436C32E7BA87C0B6BB29A4BD77FB /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; 594423FC6BB5CE4613E472B5C0E865A8 /* 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 = ""; }; - 5944AB752283D98A6EE08F0C1216B66C /* v3_pci.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pci.c; path = src/crypto/x509v3/v3_pci.c; sourceTree = ""; }; + 5944AB752283D98A6EE08F0C1216B66C /* v3_pci.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pci.c; path = src/crypto/x509v3/v3_pci.c; sourceTree = ""; }; 59545D091D38858ABA313424F20D5C82 /* 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 = ""; }; 5970A2BD89CC425DC336C86C012215F0 /* FIRPhoneAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h; sourceTree = ""; }; 5983163DBF8E6D8A4ADEBD3302183817 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; 59AF2183B7FC040CF5BF53E5F0B49803 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; 59B6C8A3E2B9043D0619CFF8C04B9E4E /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - 59BFE7FAC516ECD49F76881AC7F57008 /* binder_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_android.cc; path = src/core/ext/transport/binder/wire_format/binder_android.cc; sourceTree = ""; }; + 59BFE7FAC516ECD49F76881AC7F57008 /* 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 = ""; }; 59FA3D0E52D47A2DDDEF7023D073F101 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 5A054577C50CFE5E8610F768511DA469 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; - 5A0E81CE3F628D747868EC97D07285BA /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; + 5A054577C50CFE5E8610F768511DA469 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; + 5A0E81CE3F628D747868EC97D07285BA /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; 5A21B5A9674571E25435EAEF9834CCFE /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; 5A413DD6F6C84C13CB8EED25FD2255E2 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - 5A537E6AEB37B00D25E6A1396917BE5A /* frame_rst_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_rst_stream.cc; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.cc; sourceTree = ""; }; + 5A537E6AEB37B00D25E6A1396917BE5A /* 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 = ""; }; 5A5690602DE554031B6F660D4731ED42 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; 5A84DAAB797057EEAC2BBECBD1D3A800 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; 5A8664A9376CF43362546ECA70865293 /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; 5A8CCD4CF85DA2D2CF5927AB48A8D078 /* 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 = ""; }; 5A9059B544057592A07E7EE271AB952E /* FIRVerifyPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.h; sourceTree = ""; }; 5A939795E3519A5887007458869F871E /* 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 = ""; }; - 5A988B88B8C81B7439F14B3A81FB90F5 /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; - 5AA069650C7EAC552FD5DD0AB2CADC6A /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_eventfd.cc; path = src/core/lib/iomgr/wakeup_fd_eventfd.cc; sourceTree = ""; }; - 5ACDC0CFC469F0C6CF83000833DD0625 /* hpack_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_encoder.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder.cc; sourceTree = ""; }; + 5A988B88B8C81B7439F14B3A81FB90F5 /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; + 5AA069650C7EAC552FD5DD0AB2CADC6A /* 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 = ""; }; + 5ACDC0CFC469F0C6CF83000833DD0625 /* 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 = ""; }; 5AD40BAC0C7B4B7D167A059CD8364CDB /* FIRAuthProtoStartMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.h; sourceTree = ""; }; - 5AD49DD9C8B5221B6CCE7DD902E02B57 /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; + 5AD49DD9C8B5221B6CCE7DD902E02B57 /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; 5ADF5062370B339DB0986D23451D2F61 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - 5B1F43074F22A077884B27BBAD53F797 /* local_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_transport_security.cc; path = src/core/tsi/local_transport_security.cc; sourceTree = ""; }; - 5B28F283A00DB24FC9776C6CADCBFBD0 /* fake_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_credentials.cc; path = src/core/lib/security/credentials/fake/fake_credentials.cc; sourceTree = ""; }; + 5B1F43074F22A077884B27BBAD53F797 /* 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 = ""; }; + 5B28F283A00DB24FC9776C6CADCBFBD0 /* 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 = ""; }; 5B5F1B2CD3C7C4A727C96B227BADCAEA /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; - 5B71F3AF31F718C75C12F8DBBC60F4F3 /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; + 5B71F3AF31F718C75C12F8DBBC60F4F3 /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; 5B792610F189EF2F180F4F1EF110DDAC /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; 5BE27CD6D539A21E10BB1F379FF67E61 /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; - 5BE83B8E9DF939E3C5AE171BFA0D044B /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; + 5BE83B8E9DF939E3C5AE171BFA0D044B /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; 5BE9B172CBA2D6DB99D3CD2D96C5D90A /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; 5C09E600218F805ADBA20C8D9B7EBE83 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; 5C1A9BD5F38531A5B1B100037F6260BC /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; 5C2DADECDCFC712412643C07ECB91D85 /* 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 = ""; }; - 5C3BDBC50FBA7DF6C99C6F031A342A14 /* udp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp.c; path = src/unix/udp.c; sourceTree = ""; }; - 5C4AA539E9FCA0404B32736D54E2329B /* xds_route_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_route_config.cc; path = src/core/ext/xds/xds_route_config.cc; sourceTree = ""; }; + 5C3BDBC50FBA7DF6C99C6F031A342A14 /* udp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp.c; path = src/unix/udp.c; sourceTree = ""; }; + 5C4AA539E9FCA0404B32736D54E2329B /* 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 = ""; }; 5C510F2DEFE792F7E0D8D71249619EB3 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; 5C5AB5AA044F03D2ED736480E3549B6C /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - 5C5B625764F5A5455D61EFCF3CE3C7E9 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; - 5C6137321C1B2F35460BB9271B14F891 /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; + 5C5B625764F5A5455D61EFCF3CE3C7E9 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; + 5C6137321C1B2F35460BB9271B14F891 /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; 5C659DABC9D85BE329800DB9D46C639B /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; 5C6AB1C491089F8F5FD5FF2F1D09FE2B /* FIREmailLinkSignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.m; sourceTree = ""; }; 5C8E3A4D669EB97BC1F5525004F1B0F5 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = include/grpc/support/cpu.h; sourceTree = ""; }; 5CA5EE1DC15353402FEEB104EAAFAE4F /* 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 = ""; }; 5CDFAF2E35260024A1BE63BD60A6A486 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; 5CF67AD7C6FBE64CCC3B527BC1ACC9CC /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 5D0CBC24FE3C66CAEBDDE5783D7C683A /* tmpfile_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_posix.cc; path = src/core/lib/gpr/tmpfile_posix.cc; sourceTree = ""; }; + 5D0CBC24FE3C66CAEBDDE5783D7C683A /* tmpfile_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_posix.cc; path = src/core/lib/gpr/tmpfile_posix.cc; sourceTree = ""; }; 5D31156CA5F808041CACA74DBC166803 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; 5D749EFF81E7CD5C75DAA368FB61B1DF /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; 5D83DC3A83153B97A813CDFCBE6D1C45 /* 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 = ""; }; - 5D85CD32021920D135B7882D57E6F139 /* server_config_selector_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_config_selector_filter.cc; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.cc; sourceTree = ""; }; - 5D8668150FFE78F4E1915CD4AE4BA246 /* maybe_document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = maybe_document.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.cc; sourceTree = ""; }; + 5D85CD32021920D135B7882D57E6F139 /* 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 = ""; }; + 5D8668150FFE78F4E1915CD4AE4BA246 /* 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 = ""; }; 5D9363E6577190A2B9F0486708525D44 /* 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 = ""; }; - 5D95EF273DCCBBB93D71AE2E4B074E65 /* credentials_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials_cc.cc; path = src/cpp/client/credentials_cc.cc; sourceTree = ""; }; + 5D95EF273DCCBBB93D71AE2E4B074E65 /* credentials_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials_cc.cc; path = src/cpp/client/credentials_cc.cc; sourceTree = ""; }; 5DAD8B947353E328A8FC5C94C23AC6AF /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; 5DC02CD35005D5EC01B54A8BE99C10CB /* 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 = ""; }; 5DD9F73745779FDEC3A122752A8A2E96 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; 5DF5B999A7319F583528EBF1C39974AF /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/function_ref.h; sourceTree = ""; }; - 5DF7949BB7626FE5F124F8620005582B /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; + 5DF7949BB7626FE5F124F8620005582B /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; 5DF9144218CD230FCDE9F2B69D01587B /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 5E343720A4CE8C235BFBCB0C0A437D97 /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; - 5E43D3DA570D5CFFDB99A9610AB9CB35 /* pipe.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pipe.c; path = src/unix/pipe.c; sourceTree = ""; }; - 5E4841A36EA67FEB52E6D60914F58BBD /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; + 5E343720A4CE8C235BFBCB0C0A437D97 /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; + 5E43D3DA570D5CFFDB99A9610AB9CB35 /* pipe.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pipe.c; path = src/unix/pipe.c; sourceTree = ""; }; + 5E4841A36EA67FEB52E6D60914F58BBD /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; 5E48E851EDEE80DD2DD3A4244A8882BC /* 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 = ""; }; 5E4B3F78F1AF4BD460176A1003D94ED1 /* 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 = ""; }; 5E511D58A382BBA38D601B2E14812370 /* abseil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.debug.xcconfig; sourceTree = ""; }; @@ -13974,325 +13974,325 @@ 5E8F118AC86E9E7EBAAEBFF0ECFA062D /* mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mem.h; path = src/include/openssl/mem.h; sourceTree = ""; }; 5EBACE88C2B991171319B4FF23125C45 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; 5EC8B112047398545277E4DF5497BEAF /* 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 = ""; }; - 5ED101EBE79DF646C3062C490E14A567 /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; + 5ED101EBE79DF646C3062C490E14A567 /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; 5EE740E8816C4FE50351436882289E58 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; 5EF1073619ADC568CC5135D837E09048 /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/impl/codegen/server_interface.h; sourceTree = ""; }; - 5EF5B116F4455A1595B671345AD15A87 /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; - 5EFB92FE6ADD9FA33092D20A95C2E9CA /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; - 5F0680FA08CD94F81F03FDC036EEA693 /* listener_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c"; sourceTree = ""; }; + 5EF5B116F4455A1595B671345AD15A87 /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; + 5EFB92FE6ADD9FA33092D20A95C2E9CA /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; + 5F0680FA08CD94F81F03FDC036EEA693 /* listener_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c"; sourceTree = ""; }; 5F1EF5E2AA8D4ED34773A9D3193BC853 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; 5F2D72FB05727E906682E7C4A9C2C7DE /* FIRAuthSerialTaskQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSerialTaskQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.h; sourceTree = ""; }; 5F31A1F83903D5B2B2BB71333CD9BED3 /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; - 5F497E5FFDFF8821B3417D2ADA45C726 /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver_ares.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; + 5F497E5FFDFF8821B3417D2ADA45C726 /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_ares.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; 5F932B48A2E2D0D659F06F52FB0ED281 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; 5F9C32276C53E6A913ED1701941C5D90 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/server_context.h; sourceTree = ""; }; - 5FAAF296D8C41C5E6F712A89A98BAA4F /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; - 5FB4585FDADA76F94A66C13ED420659A /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; + 5FAAF296D8C41C5E6F712A89A98BAA4F /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; + 5FB4585FDADA76F94A66C13ED420659A /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; 5FD1DF123C4D2DCC3447FE82DB494FD2 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; 5FDCE4408F8DB8598515CB72BEE3C989 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - 5FDE287BB040CA3F221AE9267FD8E4FF /* bsd-ifaddrs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "bsd-ifaddrs.c"; path = "src/unix/bsd-ifaddrs.c"; sourceTree = ""; }; + 5FDE287BB040CA3F221AE9267FD8E4FF /* bsd-ifaddrs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "bsd-ifaddrs.c"; path = "src/unix/bsd-ifaddrs.c"; sourceTree = ""; }; 5FE0FDABB311ED38489D45C52777A2DD /* 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 = ""; }; 600986C66218DA16998B8594BE60F5EB /* FIRAuthDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDispatcher.m; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.m; sourceTree = ""; }; - 600C85A3414AA472DF15EEF665CA4872 /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; + 600C85A3414AA472DF15EEF665CA4872 /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; 601E0FEF257129E25CA4A57BB1856853 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 603070AE0F113799A7C404D161CA89EA /* server_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_chttp2.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc; sourceTree = ""; }; + 603070AE0F113799A7C404D161CA89EA /* server_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_chttp2.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc; sourceTree = ""; }; 6040DB7AF6F89D51334BFA729DC30EDF /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; - 60828112F37F6D0FC95FDADBCEDB3837 /* resolve_address_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_posix.cc; path = src/core/lib/iomgr/resolve_address_posix.cc; sourceTree = ""; }; + 60828112F37F6D0FC95FDADBCEDB3837 /* 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 = ""; }; 6085D4800EDDEA533DB3814CA92DF0AC /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; 609B04049D55BFE2C3B432EC0355856E /* FIRAuthProtoStartMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.m; sourceTree = ""; }; 60BB127BE875449F53FF031679E0AD3E /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; 60DF5A86AFCAF4C686591D657333B86D /* 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 = ""; }; - 6107ED9DF040806A97C0E7147B35C005 /* loop-watcher.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "loop-watcher.c"; path = "src/unix/loop-watcher.c"; sourceTree = ""; }; - 6110000C637C734612869D8720E11740 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.cc; path = src/core/lib/iomgr/event_engine/endpoint.cc; sourceTree = ""; }; - 61104922BC555E34C04B2C080A9FD978 /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = round_robin.cc; path = src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc; sourceTree = ""; }; - 611247BE1EF371C6C932C6BF3622FF43 /* explain.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = explain.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.c"; sourceTree = ""; }; + 6107ED9DF040806A97C0E7147B35C005 /* loop-watcher.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "loop-watcher.c"; path = "src/unix/loop-watcher.c"; sourceTree = ""; }; + 6110000C637C734612869D8720E11740 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/event_engine/endpoint.cc; sourceTree = ""; }; + 61104922BC555E34C04B2C080A9FD978 /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = round_robin.cc; path = src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc; sourceTree = ""; }; + 611247BE1EF371C6C932C6BF3622FF43 /* explain.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = explain.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.c"; sourceTree = ""; }; 6132F3A5BA54BFB1D488321C522B589A /* md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md32_common.h; path = src/crypto/fipsmodule/digest/md32_common.h; sourceTree = ""; }; 6159D2B884D1B076A43876DDB5E2A991 /* FIRAuthAPNSTokenType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenType.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthAPNSTokenType.h; sourceTree = ""; }; 616F9F183EFBE5B98C5791972DD1ABA4 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 6170F6B8B3C4F10900FAF44A41BB2731 /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; + 6170F6B8B3C4F10900FAF44A41BB2731 /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; 6187F081F340EC2B3E66DF800D9E5AB5 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/support/sync_abseil.h; sourceTree = ""; }; - 619BACD9A4B2BB39113CC3F2FECD2E97 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; + 619BACD9A4B2BB39113CC3F2FECD2E97 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; 619CE7E61B208EE84E3B1E3101D2CD75 /* FIRSendVerificationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.m; sourceTree = ""; }; 61A3C0ACE1DE0499AB65D2648A3D2764 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; 61A706224965F379548D81D1EB652B78 /* representation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = representation.h; path = absl/numeric/internal/representation.h; sourceTree = ""; }; - 61B54FA6ADCE920BE0ABBDF87B9B4F5C /* grpc_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_context.cc; path = src/core/ext/filters/census/grpc_context.cc; sourceTree = ""; }; + 61B54FA6ADCE920BE0ABBDF87B9B4F5C /* 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 = ""; }; 61D19B8AEC91178AB1D8A68FC679EFEB /* FirebaseAuth.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAuth.modulemap; sourceTree = ""; }; 61E75DC80543DF7605A7EEFE89CE66DF /* Pods-Flash Chat iOS13 */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Flash Chat iOS13"; path = Pods_Flash_Chat_iOS13.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 61F5FB0A7D8F47A97305C64CC2404AB3 /* 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 = ""; }; - 61F9135CC68D8C62B3AB5225653B7597 /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; - 61FCEE24C2F608101EA8C8453E76DDDC /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; + 61F9135CC68D8C62B3AB5225653B7597 /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; + 61FCEE24C2F608101EA8C8453E76DDDC /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; 620416995AE0343ECE6E6346F774F1FE /* 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 = ""; }; 62097D92B72E809967C8D0989A77FCDC /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; 620BE672FD7EC0113EBCC94031C20E2B /* BoringSSL-GRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "BoringSSL-GRPC.modulemap"; sourceTree = ""; }; - 6218BEC49AB8CF32D9AF9EF618C404B5 /* check_gcp_environment_no_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_no_op.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc; sourceTree = ""; }; - 6219973BABA63D9B7FEA3DDC39F4C76B /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; - 62406121C08F30D2E7BCFAE7377CA5CE /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; + 6218BEC49AB8CF32D9AF9EF618C404B5 /* 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 = ""; }; + 6219973BABA63D9B7FEA3DDC39F4C76B /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; + 62406121C08F30D2E7BCFAE7377CA5CE /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; 62481F32653432C7A1D0E8F8A6445054 /* walker-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "walker-inl.h"; path = "third_party/re2/re2/walker-inl.h"; sourceTree = ""; }; 62582003A5DC7A58FB6C3BCC1BB0C99E /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; 625D95E33A7CCAA64F96F303F8DF7849 /* const_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = const_init.h; path = absl/base/const_init.h; sourceTree = ""; }; - 6270D4F2F333A591768623A17DFE9559 /* env_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_linux.cc; path = src/core/lib/gpr/env_linux.cc; sourceTree = ""; }; - 62713C46785517FFB47B56F2226956AC /* tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_credentials_options.cc; path = src/cpp/common/tls_credentials_options.cc; sourceTree = ""; }; - 6278C8ADAD75508AF874C23117B78181 /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; + 6270D4F2F333A591768623A17DFE9559 /* env_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_linux.cc; path = src/core/lib/gpr/env_linux.cc; sourceTree = ""; }; + 62713C46785517FFB47B56F2226956AC /* 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 = ""; }; + 6278C8ADAD75508AF874C23117B78181 /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; 6291E4CE586417037130E076746A1DC4 /* queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = queue.h; path = src/queue.h; sourceTree = ""; }; 629946C6BD3C66B3D8F2B92BEEE509DE /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/codegen/compression_types.h; sourceTree = ""; }; - 62C9039CA3722F6D91171D7881B1BED1 /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; - 62DF19CFF1EE9F5FD48066FF71779B14 /* self_check.c */ = {isa = PBXFileReference; includeInIndex = 1; name = self_check.c; path = src/crypto/fipsmodule/self_check/self_check.c; sourceTree = ""; }; - 62F0B786F7913F2A931E90C970F29982 /* server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_credentials.cc; path = src/cpp/server/server_credentials.cc; sourceTree = ""; }; - 62F24680A7191E0AFB2AFD85F1CDB863 /* thd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thd_posix.cc; path = src/core/lib/gprpp/thd_posix.cc; sourceTree = ""; }; + 62C9039CA3722F6D91171D7881B1BED1 /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; + 62DF19CFF1EE9F5FD48066FF71779B14 /* 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 = ""; }; + 62F0B786F7913F2A931E90C970F29982 /* server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_credentials.cc; path = src/cpp/server/server_credentials.cc; sourceTree = ""; }; + 62F24680A7191E0AFB2AFD85F1CDB863 /* thd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd_posix.cc; path = src/core/lib/gprpp/thd_posix.cc; sourceTree = ""; }; 63052411865EABC071586B4BA0935098 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; - 6312472BA3F98D5BADB2AE51A14D38B3 /* grpc_alts_credentials_client_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_client_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc; sourceTree = ""; }; - 6337B3FB5A0440102AF76A3F6D5F8F45 /* stream_map.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_map.cc; path = src/core/ext/transport/chttp2/transport/stream_map.cc; sourceTree = ""; }; + 6312472BA3F98D5BADB2AE51A14D38B3 /* 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 = ""; }; + 6337B3FB5A0440102AF76A3F6D5F8F45 /* stream_map.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream_map.cc; path = src/core/ext/transport/chttp2/transport/stream_map.cc; sourceTree = ""; }; 6340C2B09120725DD5CB5FE4DFD0DAC7 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; 6354B4239EA2CA91A7B1A931849D7460 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; 6368CD1DD42541FEC7E30B7745F86C2C /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 639B40463B96C85EBD02A4F619BBAC16 /* cpu_iphone.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_iphone.cc; path = src/core/lib/gpr/cpu_iphone.cc; sourceTree = ""; }; - 63ABAA30B4B26D75FADB481A2A636B6B /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env.cc; path = util/env.cc; sourceTree = ""; }; - 63B89EC784BA917D65E4143918F626B0 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upb.c; path = "src/core/ext/upb-generated/google/api/http.upb.c"; sourceTree = ""; }; - 63C023C1EF54E20A4BAF35581645B0FD /* altscontext.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = altscontext.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c"; sourceTree = ""; }; + 639B40463B96C85EBD02A4F619BBAC16 /* cpu_iphone.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_iphone.cc; path = src/core/lib/gpr/cpu_iphone.cc; sourceTree = ""; }; + 63ABAA30B4B26D75FADB481A2A636B6B /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = util/env.cc; sourceTree = ""; }; + 63B89EC784BA917D65E4143918F626B0 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb.c; path = "src/core/ext/upb-generated/google/api/http.upb.c"; sourceTree = ""; }; + 63C023C1EF54E20A4BAF35581645B0FD /* altscontext.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = altscontext.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c"; sourceTree = ""; }; 63D10555A6CCE00AD2AC9CA7250A7EA0 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; 63DCB79C7DF7F13F26253ACA6599A4DA /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = src/include/openssl/ripemd.h; sourceTree = ""; }; 63DE475E04E958BAE243E82AACEB54C9 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; 63E41FB55A6D9DD6F01BE04E3226029F /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; 63E8F197A90763ADEAF913245931A07F /* thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_identity.h; path = absl/base/internal/thread_identity.h; sourceTree = ""; }; - 63FC3BB05A9706FAE0BE209E9D4BD017 /* load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_report.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c"; sourceTree = ""; }; - 64060B2D9AFB12B064F19D77A7627D14 /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = any.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; + 63FC3BB05A9706FAE0BE209E9D4BD017 /* load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c"; sourceTree = ""; }; + 64060B2D9AFB12B064F19D77A7627D14 /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; 64092E5672D484FB049C66D8FE31415A /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/call.h; sourceTree = ""; }; - 644662E714272EBD09A89D7E82F6F076 /* target.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/target.nanopb.cc; sourceTree = ""; }; + 644662E714272EBD09A89D7E82F6F076 /* 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 = ""; }; 64522C343CB6D8CC239271338E8757B3 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; 645634BF7DADAA8AEB083791543CDE1C /* 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 = ""; }; - 645D28926BB292C897A77E7D91F4689B /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; + 645D28926BB292C897A77E7D91F4689B /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; 645DAB0A7138E785398918876DDAC4A6 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; 645FFB47B73CD219F91F74C132F32953 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; 64641CB105FCA242E88E9472F5C43BE0 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 6475FB5507F63E26986D31F5A256DC4D /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; + 6475FB5507F63E26986D31F5A256DC4D /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; 6494D8ED6C32B87FFE753464418D50C9 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - 6499B5E2D93CDB8E5DB72F18F8D4E328 /* thd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thd_windows.cc; path = src/core/lib/gprpp/thd_windows.cc; sourceTree = ""; }; + 6499B5E2D93CDB8E5DB72F18F8D4E328 /* thd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd_windows.cc; path = src/core/lib/gprpp/thd_windows.cc; sourceTree = ""; }; 64A7A1D31F84665CDE468E26569F5E54 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; 64CB5BF62892C0E010318D1AD688A34A /* 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 = ""; }; 64D133CB14A556181F89F1648028F02F /* FIRVerifyCustomTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.m; sourceTree = ""; }; - 64D26241A3BD73C0AE191FD0FC1B2B6A /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; - 64D5D8B4689A4459A9513880B7C0B3F8 /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; - 64D934788C061DB7268A7225C4E67251 /* rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_filter.cc; path = src/core/ext/filters/rbac/rbac_filter.cc; sourceTree = ""; }; + 64D26241A3BD73C0AE191FD0FC1B2B6A /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; + 64D5D8B4689A4459A9513880B7C0B3F8 /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; + 64D934788C061DB7268A7225C4E67251 /* 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 = ""; }; 64E041CE6B4F7947253B18999C4AF56E /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; 65042337FCD51B1287EB16CB9B696645 /* 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 = ""; }; - 65052151644EE762B6E4E04DA0AB26BE /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; + 65052151644EE762B6E4E04DA0AB26BE /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; 651B3EABCB682CF0D00F0EE27B208D9B /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; 652D316F848D030738302B4E03E0812B /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; 652E141444A00112AEA4C767510F5D5B /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; 65317CF0A859C74DB9311356E180086F /* 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 = ""; }; 653A06BD7CAB74B4A8C25ECCC89A3EBD /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 65440612011E1BD83B6365E703F597DB /* checked.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checked.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c"; sourceTree = ""; }; + 65440612011E1BD83B6365E703F597DB /* checked.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c"; sourceTree = ""; }; 657ADD2FE6B1590B50E001526DC51AD2 /* FIRAuthBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthBackend.h; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.h; sourceTree = ""; }; - 657F6655E90FCDCADE0FAB5DCEBA9EB2 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; + 657F6655E90FCDCADE0FAB5DCEBA9EB2 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; 65A0049FDBD6B133C6A7CA37A895F911 /* 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 = ""; }; 65BA807BA676D6B509550FAD392E8904 /* FIRVerifyClientResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.m; sourceTree = ""; }; - 65C4F6C9239CE764D0188A0F8B0EF0A5 /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; - 65D3CB1B485FF8F7E058F4C197D06891 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; - 65E2CD4426BAF301B65B5FF7BDE99220 /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; + 65C4F6C9239CE764D0188A0F8B0EF0A5 /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; + 65D3CB1B485FF8F7E058F4C197D06891 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; + 65E2CD4426BAF301B65B5FF7BDE99220 /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; 65F62C3B8A444B71E0A3B4BF1B03D155 /* 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 = ""; }; - 65FF07469E3E003F22E6DC2F69A5E9CC /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; + 65FF07469E3E003F22E6DC2F69A5E9CC /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; 6609D3D9D07068384CDE196697A79A1A /* 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 = ""; }; 660E6521D0B46DBFE7868052386A018B /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/internal/inlined_vector.h; sourceTree = ""; }; 661BCF903B4D5ADFB3247D7C25075F25 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; 6637FA7E8865B423159B3DFDEB5826DB /* FIRGetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.m; sourceTree = ""; }; - 663A111C8C2CE477620645403636787F /* wakeup_fd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_posix.cc; path = src/core/lib/iomgr/wakeup_fd_posix.cc; sourceTree = ""; }; + 663A111C8C2CE477620645403636787F /* 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 = ""; }; 665079E50D1F9DE8778E2E894AABADC6 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; 6676A4E053E5FAAC048CDB22FC05A195 /* FIREmailPasswordAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailPasswordAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.h; sourceTree = ""; }; - 6676A792A9EB52E749ECD4C348E14EEB /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_prn.c; path = src/crypto/x509v3/v3_prn.c; sourceTree = ""; }; + 6676A792A9EB52E749ECD4C348E14EEB /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_prn.c; path = src/crypto/x509v3/v3_prn.c; sourceTree = ""; }; 667BAC6C2BDB2110CC30BBF9610FF171 /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; - 66939B5BD35335176BE852BF1F68477D /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; - 66A6513433CF495099C957118F59AC12 /* leveldb_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_remote_document_cache.cc; path = Firestore/core/src/local/leveldb_remote_document_cache.cc; sourceTree = ""; }; - 66A99DEF9170B961BA2F5F7671D5FA00 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; + 66939B5BD35335176BE852BF1F68477D /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; + 66A6513433CF495099C957118F59AC12 /* 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 = ""; }; + 66A99DEF9170B961BA2F5F7671D5FA00 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; 66B2001F35E3D8A9F964D9463FE34364 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = src/include/openssl/err.h; sourceTree = ""; }; - 66BCA1F64D4618F6A075CFCFEE4C3CC3 /* tmpfile_msys.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_msys.cc; path = src/core/lib/gpr/tmpfile_msys.cc; sourceTree = ""; }; + 66BCA1F64D4618F6A075CFCFEE4C3CC3 /* tmpfile_msys.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_msys.cc; path = src/core/lib/gpr/tmpfile_msys.cc; sourceTree = ""; }; 66D0A8DF30AAFD1FEC949DB1D6F4CB66 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; 66E7D05D43D2681FB8A647B71EE5EAFC /* 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 = ""; }; 6739EE4F39EBFEA3F019DCB59BE3689E /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - 67454EC80B766A49853CF4628723875E /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; + 67454EC80B766A49853CF4628723875E /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; 6745690495A83AF162F72A6DBE1940D4 /* 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 = ""; }; 67548E2657F4C9A087F1BABDBC72E3BF /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; - 676F110A1AEFEFA2BA40EE451C96B67A /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; - 67C1F9C2B5791C770EDE2921B42CA920 /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; - 67CEB26B33A88C6DDC93A6A9D6C26247 /* stacktrace_powerpc-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_powerpc-inl.inc"; path = "absl/debugging/internal/stacktrace_powerpc-inl.inc"; sourceTree = ""; }; + 676F110A1AEFEFA2BA40EE451C96B67A /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; + 67C1F9C2B5791C770EDE2921B42CA920 /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; + 67CEB26B33A88C6DDC93A6A9D6C26247 /* 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 = ""; }; 67F83FE6CCCA340F3A90FD5F07D208FB /* 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 = ""; }; 68090B8120A1CE8ECA411D4A0029B6DC /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; 6810CC57234BDEE2EC15C865BA9FC065 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; - 681149C34A4F645D6CBEBC911ABAF9C1 /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; - 681BC9F8EB6118CCAA35162AFABE34A1 /* tcp_client_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_posix.cc; path = src/core/lib/iomgr/tcp_client_posix.cc; sourceTree = ""; }; - 682FFBD320EF46754D9D88D64EE0FE45 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; + 681149C34A4F645D6CBEBC911ABAF9C1 /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; + 681BC9F8EB6118CCAA35162AFABE34A1 /* 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 = ""; }; + 682FFBD320EF46754D9D88D64EE0FE45 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; 683B7B019CD25FF573249C768E4DDA5B /* FIRStartMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.m; sourceTree = ""; }; 6846867D83FA317565DCBBD309E8E075 /* attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = attributes.h; path = absl/base/attributes.h; sourceTree = ""; }; 684D16A44C9949E522F0782808B9BFA4 /* front_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = front_binder.h; path = absl/functional/internal/front_binder.h; sourceTree = ""; }; - 685081A1902DCC533A453331A17B3466 /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; + 685081A1902DCC533A453331A17B3466 /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; 686EB5C5CA7E45A4C7F792AA5CCEF0F3 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; 68718C4CB3EF9D93888DAA3784EFFBBE /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; 68972317BB82871141C5B4B16D8D7DBF /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; 6898356BF9B673BC05FE83E21588D19A /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; - 689BCD4A69BC62B4DE25A7D617450B06 /* firebase_metadata_provider_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider_noop.cc; path = Firestore/core/src/remote/firebase_metadata_provider_noop.cc; sourceTree = ""; }; - 68AB35173A33BA8AF7A1A16103FF7ACF /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; + 689BCD4A69BC62B4DE25A7D617450B06 /* 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 = ""; }; + 68AB35173A33BA8AF7A1A16103FF7ACF /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; 68C2F2ED49A02598CF47272D3EA5EF36 /* 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 = ""; }; - 691441895B3EB5739F8E21306168AFA4 /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; + 691441895B3EB5739F8E21306168AFA4 /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; 6918EA537480CEFB1349C0A2BD0E4231 /* FIRGetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.h; sourceTree = ""; }; - 69251AC89D2B10C14A16B0821DB6B957 /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; + 69251AC89D2B10C14A16B0821DB6B957 /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; 6934C7AE4DFE5FE0423641593EC7D0A8 /* log_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_windows.h; path = include/grpc/support/log_windows.h; sourceTree = ""; }; 693515DF5F490BDCDBC5AAACCF7D26E6 /* FIRAuthWebUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h; sourceTree = ""; }; 693AD50BB3C191C00EDB944DAF718041 /* FIRMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion+Internal.h"; sourceTree = ""; }; 6943DEED378A2F4915E7B9E730F39614 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; - 694C41002DCBBB5B3E2502AC20BA5EB2 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; - 695B2647A3F36EB5EB43FE6D55E7B604 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c"; sourceTree = ""; }; - 6966DEA203904AE91FD20E8881552F78 /* any.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = any.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/any.nanopb.cc; sourceTree = ""; }; + 694C41002DCBBB5B3E2502AC20BA5EB2 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; + 695B2647A3F36EB5EB43FE6D55E7B604 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c"; sourceTree = ""; }; + 6966DEA203904AE91FD20E8881552F78 /* 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 = ""; }; 697D22D308D8BE411DD9678A283BB4CC /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; 698C96D39E5B7CA5276758B607E300BC /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; 69913553AA2AA69C3F93358AAE7609DC /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; 6992F760957F3C24EA06E6662CBE66D8 /* 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 = ""; }; - 69A3A3909341E4214E30E4F0FAE601A4 /* grpc_if_nametoindex_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_if_nametoindex_posix.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_posix.cc; sourceTree = ""; }; - 69B1D299E13969370D04ED9A9C32BC76 /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; - 6A36A494775EB023FD732D2B6A27E117 /* rbac_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_policy.cc; path = src/core/lib/security/authorization/rbac_policy.cc; sourceTree = ""; }; + 69A3A3909341E4214E30E4F0FAE601A4 /* 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 = ""; }; + 69B1D299E13969370D04ED9A9C32BC76 /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; + 6A36A494775EB023FD732D2B6A27E117 /* 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 = ""; }; 6A3CE590B9AAA81BD046A8434120A69D /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = src/include/openssl/hmac.h; sourceTree = ""; }; - 6A60B45FCB497485D236AA563671464C /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker_registry.cc; path = src/core/lib/channel/handshaker_registry.cc; sourceTree = ""; }; - 6A7659B13EAB7C9751A82F8E7EB8896D /* tcp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp.cc; path = src/core/lib/iomgr/event_engine/tcp.cc; sourceTree = ""; }; - 6A7B4C59C93E9A050D590A8FE2178153 /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; + 6A60B45FCB497485D236AA563671464C /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker_registry.cc; path = src/core/lib/channel/handshaker_registry.cc; sourceTree = ""; }; + 6A7659B13EAB7C9751A82F8E7EB8896D /* tcp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp.cc; path = src/core/lib/iomgr/event_engine/tcp.cc; sourceTree = ""; }; + 6A7B4C59C93E9A050D590A8FE2178153 /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; 6A7D939EC7DEFF245D25E3C17ABEF97B /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; - 6A8E4912054D86CE62D7131A5ED68EE9 /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; + 6A8E4912054D86CE62D7131A5ED68EE9 /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; 6A943E7E1569DD2A06C682C436A15E61 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; 6A972C90C3984F44D9345EA92482D662 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; 6AA7470987765837DAB872FDDA2A62BA /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - 6ABEB4983A534AADCC7FAFFAC2B48A54 /* connection_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connection_id_generator.cc; path = src/core/ext/transport/binder/client/connection_id_generator.cc; sourceTree = ""; }; - 6ACC066566EEC8E49BC3D5EBD90F7791 /* darwin.c */ = {isa = PBXFileReference; includeInIndex = 1; name = darwin.c; path = src/unix/darwin.c; sourceTree = ""; }; + 6ABEB4983A534AADCC7FAFFAC2B48A54 /* 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 = ""; }; + 6ACC066566EEC8E49BC3D5EBD90F7791 /* darwin.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = darwin.c; path = src/unix/darwin.c; sourceTree = ""; }; 6AE77537ED5BC12A0F5E35BAE5EC2613 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; 6AEC713274B5BA795D30601AFA25180F /* 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 = ""; }; - 6AF361982F7AAA0BB626D002AE0E90B4 /* randen_round_keys.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_round_keys.cc; path = absl/random/internal/randen_round_keys.cc; sourceTree = ""; }; + 6AF361982F7AAA0BB626D002AE0E90B4 /* 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 = ""; }; 6AFBA70A38970E5D8229E7B07CD9658A /* FIRSecureTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h; sourceTree = ""; }; - 6B1538F88DB716CC834D004C2CBF9B3F /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; + 6B1538F88DB716CC834D004C2CBF9B3F /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; 6B2D4E1C23A7D4BD6F6F6BFEC49D8504 /* alarm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alarm.h; path = include/grpcpp/alarm.h; sourceTree = ""; }; 6B50B1686E684451FDB2B656393A1974 /* FIRAuthAppCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredential.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.m; sourceTree = ""; }; - 6B5E9E753B619848AD0DFAC04C71D36B /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; + 6B5E9E753B619848AD0DFAC04C71D36B /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; 6B7008B54F0DA9A4E3C3D37A9789B93F /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; 6B89BF58B0C0A2CFFCA992DEFDFED189 /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/codegen/service_type.h; sourceTree = ""; }; - 6B8AEE8AE63ABFE1AE73E6465E11F9E0 /* security_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_context.cc; path = src/core/lib/security/context/security_context.cc; sourceTree = ""; }; + 6B8AEE8AE63ABFE1AE73E6465E11F9E0 /* 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 = ""; }; 6B954F2A8229A780BC39577C5817474A /* 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 = ""; }; 6BA0393FEBD5F445B039789C2F3AB446 /* 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 = ""; }; - 6BB6983E8BC2ECF6213B854B0FE9607C /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; - 6BBBC0E5EA92566A613D71638D51EF53 /* external_connection_acceptor_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = external_connection_acceptor_impl.cc; path = src/cpp/server/external_connection_acceptor_impl.cc; sourceTree = ""; }; - 6BBC125812A1446D376318684CB0F227 /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; + 6BB6983E8BC2ECF6213B854B0FE9607C /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; + 6BBBC0E5EA92566A613D71638D51EF53 /* 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 = ""; }; + 6BBC125812A1446D376318684CB0F227 /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; 6BC54C3D03DEBF9C3A40965E69CAE039 /* Libuv-gRPC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Libuv-gRPC"; path = uv.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 6BCB6EF77612A02652B40481FC7C0ED3 /* 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 = ""; }; 6BF07ED97737A40E9B1E40C77C03A718 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; - 6BF5501B7CE09FE9C7876F3801A3A7F8 /* ssl_utils_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_utils_config.cc; path = src/core/lib/security/security_connector/ssl_utils_config.cc; sourceTree = ""; }; - 6C04053BA4D1A1EBE044216B5507888E /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; + 6BF5501B7CE09FE9C7876F3801A3A7F8 /* ssl_utils_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_utils_config.cc; path = src/core/lib/security/security_connector/ssl_utils_config.cc; sourceTree = ""; }; + 6C04053BA4D1A1EBE044216B5507888E /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; 6C09F723A5CB27AA07BCA67668904220 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; 6C1009E1760E792A6FCB70388FF52E70 /* 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 = ""; }; - 6C3269DF933A36AD67E3F2C509E627EF /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; - 6C4603547437175244E4036F2FC1D763 /* socket_utils_common_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_common_posix.cc; path = src/core/lib/iomgr/socket_utils_common_posix.cc; sourceTree = ""; }; + 6C3269DF933A36AD67E3F2C509E627EF /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; + 6C4603547437175244E4036F2FC1D763 /* 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 = ""; }; 6C6C06250C657E62352B87D002B5152C /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; 6C8CEDFF36B3667702B1AFA34A9B9A7F /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; 6C9312774575FDF80F1289CC775A360A /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; 6C941E45990F09473D99E998FF8A7D2B /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - 6C9C3A7DA98E3A9B773F318A2675CB31 /* security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_connector.cc; path = src/core/lib/security/security_connector/security_connector.cc; sourceTree = ""; }; - 6C9E7768547EF72E76EED5720442DFBD /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; + 6C9C3A7DA98E3A9B773F318A2675CB31 /* 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 = ""; }; + 6C9E7768547EF72E76EED5720442DFBD /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; 6CC93CBE5474FA282C8C18A49F029B47 /* 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 = ""; }; - 6CCB348D7553450087F289308D1EDED0 /* darwin-proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "darwin-proctitle.c"; path = "src/unix/darwin-proctitle.c"; sourceTree = ""; }; + 6CCB348D7553450087F289308D1EDED0 /* darwin-proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "darwin-proctitle.c"; path = "src/unix/darwin-proctitle.c"; sourceTree = ""; }; 6CF6EF7DAF219862B03229693893DC9B /* FIRAuthDataResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDataResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult.m; sourceTree = ""; }; - 6CFD6FA5AACDD4CCC42C4444F49C2B8D /* resolve_address_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_windows.cc; path = src/core/lib/iomgr/resolve_address_windows.cc; sourceTree = ""; }; + 6CFD6FA5AACDD4CCC42C4444F49C2B8D /* 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 = ""; }; 6D0BCC32ACC07E85423AA18302BB9A54 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; - 6D15C235D1CCACB2377AC3B9C0DDE55C /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; + 6D15C235D1CCACB2377AC3B9C0DDE55C /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; 6D20E187C00FA90B22573DFC7CB5AB48 /* 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 = ""; }; - 6D242905080C9B8F4F29CE9A29007048 /* validate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = validate.upb.c; path = "src/core/ext/upb-generated/validate/validate.upb.c"; sourceTree = ""; }; - 6D25181B45562534755E321362639C2C /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; + 6D242905080C9B8F4F29CE9A29007048 /* validate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upb.c; path = "src/core/ext/upb-generated/validate/validate.upb.c"; sourceTree = ""; }; + 6D25181B45562534755E321362639C2C /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; 6D28577CD5265D4152156278437C81F4 /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; 6D2FA6C3EBD0F779B1CF4D67B70802E2 /* FIRPhoneMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorGenerator.h; sourceTree = ""; }; 6D3096982B7D3EAE32758EAF2C0F23E9 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - 6D3B69AA6B3D6B45583CFBC1B10EB2A7 /* leveldb_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_bundle_cache.cc; path = Firestore/core/src/local/leveldb_bundle_cache.cc; sourceTree = ""; }; - 6D4A1FFF4985DB9C0BFA07DC78CD5C22 /* node.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c"; sourceTree = ""; }; + 6D3B69AA6B3D6B45583CFBC1B10EB2A7 /* 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 = ""; }; + 6D4A1FFF4985DB9C0BFA07DC78CD5C22 /* node.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c"; sourceTree = ""; }; 6D4AD9FB96555D3275666B4151B20CFC /* 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 = ""; }; - 6D5F933BD1F3A33D9F5834CA43667298 /* path_transformation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path_transformation.upb.c; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c"; sourceTree = ""; }; - 6D61EC7FD66A8CB74562DAEFC173E0C7 /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; + 6D5F933BD1F3A33D9F5834CA43667298 /* path_transformation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upb.c; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c"; sourceTree = ""; }; + 6D61EC7FD66A8CB74562DAEFC173E0C7 /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; 6D7217B19C5893A4CDDC16F7325559AF /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; - 6D838FE157D63BD8E610C1FF83B8DDDE /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; - 6D8427AD34E3BD97B10C729A03F31357 /* unix_sockets_posix_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unix_sockets_posix_noop.cc; path = src/core/lib/iomgr/unix_sockets_posix_noop.cc; sourceTree = ""; }; + 6D838FE157D63BD8E610C1FF83B8DDDE /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; + 6D8427AD34E3BD97B10C729A03F31357 /* 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 = ""; }; 6D92E2648A3FA1689B966AACBF6ABC80 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; - 6DAACA52181FF6C4675EF2F7A9A5D16E /* frame_goaway.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_goaway.cc; path = src/core/ext/transport/chttp2/transport/frame_goaway.cc; sourceTree = ""; }; - 6DECFA26782E608905AB20B2BA23DCE3 /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; + 6DAACA52181FF6C4675EF2F7A9A5D16E /* 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 = ""; }; + 6DECFA26782E608905AB20B2BA23DCE3 /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; 6E2048D275758EBDF2820CBC23D261F4 /* FIRFinalizeMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.h; sourceTree = ""; }; - 6E2D695C2736C5F6227401C45D9405DC /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_bitst.c; path = src/crypto/x509v3/v3_bitst.c; sourceTree = ""; }; + 6E2D695C2736C5F6227401C45D9405DC /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bitst.c; path = src/crypto/x509v3/v3_bitst.c; sourceTree = ""; }; 6E3F352FB05A9C17F11825B91558346E /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; 6E4A108B2F782A780221F6949D9A1757 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/ssl/internal.h; sourceTree = ""; }; - 6E68F38EF3C14DCBF89FEE9BCA464476 /* grpc_alts_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc; sourceTree = ""; }; + 6E68F38EF3C14DCBF89FEE9BCA464476 /* 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 = ""; }; 6E7872D75148C0436CD08E2F285534E6 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; 6E809B84C33ED7692831ED08EF62149A /* FIRPhoneAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthCredential.h; sourceTree = ""; }; - 6E905C1ED2D4D8850CDF8CD236014367 /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; + 6E905C1ED2D4D8850CDF8CD236014367 /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; 6EAD9546F1FA9B59F362A87BBA9D14E4 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - 6EAEA415A64F8DB6CEDDD4A59B706A06 /* leveldb_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_document_overlay_cache.cc; path = Firestore/core/src/local/leveldb_document_overlay_cache.cc; sourceTree = ""; }; + 6EAEA415A64F8DB6CEDDD4A59B706A06 /* 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 = ""; }; 6EBA67254B9EC025EEA8C09284C6C855 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; 6ED361DE47D86700B694C6A182A3A372 /* 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 = ""; }; 6ED4E1B1FA31185EF5FED7A8115E01BD /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - 6EF78F69FA14F1CEA6270D635445FAD4 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; - 6EFD965A64C04FF63F73B842343678BC /* strscpy.c */ = {isa = PBXFileReference; includeInIndex = 1; name = strscpy.c; path = src/strscpy.c; sourceTree = ""; }; + 6EF78F69FA14F1CEA6270D635445FAD4 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; + 6EFD965A64C04FF63F73B842343678BC /* strscpy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = strscpy.c; path = src/strscpy.c; sourceTree = ""; }; 6F1DA91C1E42CF58CF833BAA4F552ECE /* 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 = ""; }; 6F1E690ECFEBBD45033DD971BDBF22EB /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; 6F2DDC43F322BC51321F4F2FD810D03C /* 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 = ""; }; 6F6A34A6CD3CA88236F65719A3C7134D /* FIRAuthBackend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthBackend.m; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.m; sourceTree = ""; }; 6F6C50611EB192ADF0EA7F709939DE50 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - 6F74C4B79EF23F4C098059ADF87CBB9B /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ncons.c; path = src/crypto/x509v3/v3_ncons.c; sourceTree = ""; }; + 6F74C4B79EF23F4C098059ADF87CBB9B /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ncons.c; path = src/crypto/x509v3/v3_ncons.c; sourceTree = ""; }; 6FA3F86C28464E41F46669C7DDDEC6E6 /* Pods-Flash Chat iOS13-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Flash Chat iOS13-Info.plist"; sourceTree = ""; }; - 6FC28FC157D231D4A6F0070E3F51DBD9 /* cpu_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_posix.cc; path = src/core/lib/gpr/cpu_posix.cc; sourceTree = ""; }; + 6FC28FC157D231D4A6F0070E3F51DBD9 /* cpu_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_posix.cc; path = src/core/lib/gpr/cpu_posix.cc; sourceTree = ""; }; 6FC3C0AAE4B7ADAEA82189879E4AB7BC /* 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 = ""; }; 6FC4651A74CD9568DB6A23FF3E2889E2 /* GTMSessionFetcher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-umbrella.h"; sourceTree = ""; }; - 6FD82FCC4566255B10DBBD0362C8C0E6 /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc; sourceTree = ""; }; - 7032DC72FF3E68D589B453895CA48C61 /* stap_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stap_timers.cc; path = src/core/lib/profiling/stap_timers.cc; sourceTree = ""; }; - 70394CD12CD6E329869CFDEF38DC21B2 /* rbac_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_service_config_parser.cc; path = src/core/ext/filters/rbac/rbac_service_config_parser.cc; sourceTree = ""; }; - 7043E454584F0054D86E8711B5867952 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; - 704829E59C868FF2AE2FA253816AE828 /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; - 704B4F61A507CFB618CAA54C2943DB8A /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; + 6FD82FCC4566255B10DBBD0362C8C0E6 /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc; sourceTree = ""; }; + 7032DC72FF3E68D589B453895CA48C61 /* stap_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stap_timers.cc; path = src/core/lib/profiling/stap_timers.cc; sourceTree = ""; }; + 70394CD12CD6E329869CFDEF38DC21B2 /* 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 = ""; }; + 7043E454584F0054D86E8711B5867952 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; + 704829E59C868FF2AE2FA253816AE828 /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; + 704B4F61A507CFB618CAA54C2943DB8A /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; 70597DC93E879CB99A5FB9B4486E74B6 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/support/sync_custom.h; sourceTree = ""; }; 70598FDB7508AB320D1A279910567961 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; 705F25D27A2748D63FEA1E2ABCE6C90F /* 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 = ""; }; 708130ACF964A8D33BF1C90ADC381495 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = absl/status/status.h; sourceTree = ""; }; 70971CF4DE9C361E7B00EEDB67B2CA31 /* int128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int128.h; path = absl/numeric/int128.h; sourceTree = ""; }; 70B99A75D8523C9DEEE2B63870A22149 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - 70C1949E3EFF2D26D7CE9767E418B4B0 /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; - 70DDE73A07F0F639D868A2C7010A32F1 /* cpu_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_windows.cc; path = src/core/lib/gpr/cpu_windows.cc; sourceTree = ""; }; - 7102048A99536A6A568A63A433C2477A /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmac.c; path = src/crypto/cmac/cmac.c; sourceTree = ""; }; + 70C1949E3EFF2D26D7CE9767E418B4B0 /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; + 70DDE73A07F0F639D868A2C7010A32F1 /* cpu_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_windows.cc; path = src/core/lib/gpr/cpu_windows.cc; sourceTree = ""; }; + 7102048A99536A6A568A63A433C2477A /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmac.c; path = src/crypto/cmac/cmac.c; sourceTree = ""; }; 71069D0E4B6D7BB8F75C58778D839907 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; 71120AED1D2D58A379F679EA3D7E57C1 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = absl/strings/string_view.h; sourceTree = ""; }; 711A3BE5499C4C42FE3B5B309EC31F25 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; 712F2B9399D2FCA0353D1365313F3274 /* FIRAuthProtoMFAEnrollment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoMFAEnrollment.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.h; sourceTree = ""; }; - 7155081FDB6782E49C7B2676E50BAC6C /* secure_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_auth_context.cc; path = src/cpp/common/secure_auth_context.cc; sourceTree = ""; }; + 7155081FDB6782E49C7B2676E50BAC6C /* 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 = ""; }; 715827E927F450E8F75BCDDDFE144DB8 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; 716DE36C7E2FF2578E9DBCE01E4F825F /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - 71A8C0E6EF560847943F61F7B99CBF3D /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; + 71A8C0E6EF560847943F61F7B99CBF3D /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; 71BCA30FABEA5E587D2FABCE7C423BAD /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; 71C8645FD664462639F4CC7BAA73B33C /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; 71CEA7AFF8F7FF6501D68F03E9D31B63 /* is_boringssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_boringssl.h; path = src/include/openssl/is_boringssl.h; sourceTree = ""; }; - 71DB43E21179D2027ABF07979D1D220E /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; - 71E8FFB0BADBB1ACC9E9503EB6B6A4AB /* leveldb_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_mutation_queue.cc; path = Firestore/core/src/local/leveldb_mutation_queue.cc; sourceTree = ""; }; - 71FB8186443BF2952B72DB1B90382FB9 /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_cpols.c; path = src/crypto/x509v3/v3_cpols.c; sourceTree = ""; }; - 721F9D482BA10B75BDB5049CB8A83D57 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; + 71DB43E21179D2027ABF07979D1D220E /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; + 71E8FFB0BADBB1ACC9E9503EB6B6A4AB /* 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 = ""; }; + 71FB8186443BF2952B72DB1B90382FB9 /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_cpols.c; path = src/crypto/x509v3/v3_cpols.c; sourceTree = ""; }; + 721F9D482BA10B75BDB5049CB8A83D57 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; 72350D6A51CDE93C4DF9CA2C4CDB176C /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 72395D28CCE51076629E53B7EC8E0E91 /* cpu-aarch64-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-linux.c"; path = "src/crypto/cpu-aarch64-linux.c"; sourceTree = ""; }; + 72395D28CCE51076629E53B7EC8E0E91 /* 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 = ""; }; 724A5BAF656370E9A9C5B1E9FDD91D4A /* 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 = ""; }; - 726A0D5A76092A2CB4107CF225B5C259 /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; + 726A0D5A76092A2CB4107CF225B5C259 /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; 727C1911DFCF06D6C803047156E83F1E /* 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 = ""; }; 727ECEA09438D03DFDA5CB0E852D8207 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/inlined_vector.h; sourceTree = ""; }; 727F581CFE04F74BE5DB606AF581DD54 /* 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 = ""; }; - 72A655216ABE7DC9CBB40C33A77F095C /* discovery.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = discovery.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c"; sourceTree = ""; }; + 72A655216ABE7DC9CBB40C33A77F095C /* discovery.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c"; sourceTree = ""; }; 72BE14ADB8E9D63BE83FA5F437EA17D1 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; 72E7ED9B89F137804E723E6D8C7FDBDD /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - 72EEBA3EAD4BEC7B279F66AF4A9BD5B0 /* tls_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_security_connector.cc; path = src/core/lib/security/security_connector/tls/tls_security_connector.cc; sourceTree = ""; }; - 72FF79FD68F7FA479F1A649295F18AC7 /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; - 731AC8A2D407FA7020DFBFF5B56D8DDC /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; + 72EEBA3EAD4BEC7B279F66AF4A9BD5B0 /* 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 = ""; }; + 72FF79FD68F7FA479F1A649295F18AC7 /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; + 731AC8A2D407FA7020DFBFF5B56D8DDC /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; 731C9CD88DBDACDDDEC4E2D6712C1BAD /* transaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = src/core/ext/transport/binder/wire_format/transaction.h; sourceTree = ""; }; 732A82738B815AFB1B4180DA23BC0773 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; 732FD2E501BA15B3643B5E75FFE01703 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - 7362292FFBC4989459F130E05D20F022 /* check_gcp_environment.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment.cc; sourceTree = ""; }; + 7362292FFBC4989459F130E05D20F022 /* 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 = ""; }; 736A67595CF6FB95B409D4FC91B5E30B /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - 737B6661AD0760D4D5414485B0660AC2 /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; - 738018E185B998882FFF2C726F216913 /* pollset_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_custom.cc; path = src/core/lib/iomgr/pollset_custom.cc; sourceTree = ""; }; + 737B6661AD0760D4D5414485B0660AC2 /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; + 738018E185B998882FFF2C726F216913 /* pollset_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_custom.cc; path = src/core/lib/iomgr/pollset_custom.cc; sourceTree = ""; }; 738262579719C3A86B6310A3C464C738 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; 738E49FCC1C6A280494F479A639A4A46 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/md5/internal.h; sourceTree = ""; }; 738E9262168C9608155C0F2377846039 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; 73925BBE3792C59A94A629CF7E49A834 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 739D4FF66BEB47E0F6269CCDE0CE4A11 /* udp_socket_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_socket_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c"; sourceTree = ""; }; + 739D4FF66BEB47E0F6269CCDE0CE4A11 /* udp_socket_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c"; sourceTree = ""; }; 73D0572F39352BC74B95DE020DB3036D /* 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 = ""; }; 73D394A08345EED85D39C031B03B7FD8 /* GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GTMSessionFetcher-Info.plist"; sourceTree = ""; }; 73E03BF203B59BE424A6EB6AD507DEEE /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = util/hash.h; sourceTree = ""; }; @@ -14301,46 +14301,46 @@ 73EAC86445CCAA8B70E31635F665A599 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; 73FB054B2D12613885915961EA060358 /* gRPC-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-Core-dummy.m"; sourceTree = ""; }; 740F77311CF0732E5C9A39BD5781AECF /* 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 = ""; }; - 7442F7EF9EA5A5B5F4C694A4D4D90EB9 /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; - 7451A4279638DD3D6B8057DACAA6E0BB /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; + 7442F7EF9EA5A5B5F4C694A4D4D90EB9 /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; + 7451A4279638DD3D6B8057DACAA6E0BB /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; 745DC281566A5D1F63B9AE8F192A6547 /* 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 = ""; }; 7466C9F1DE3D2944732F7DB8C1334CAD /* FIRAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthCredential.h; sourceTree = ""; }; 7475970E1198DE8F552DE4D96C8774DE /* 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 = ""; }; 748535293A4B8357E06D6A89DC8BC041 /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = src/include/openssl/ecdh.h; sourceTree = ""; }; 748BD441E5DE6B375A3A71D3551AD5FF /* FIRAuthURLPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthURLPresenter.h; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h; sourceTree = ""; }; - 74918BCE829F544BBC95587ECAB7AF67 /* handshaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c"; sourceTree = ""; }; - 74D9013913FD7F5373D1E286F0D3E22D /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; + 74918BCE829F544BBC95587ECAB7AF67 /* handshaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = handshaker.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c"; sourceTree = ""; }; + 74D9013913FD7F5373D1E286F0D3E22D /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; 74E34A4C6DBCA5F911A58F405A3DCE33 /* FIRAuthWebUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.m; sourceTree = ""; }; - 74EF4AEDECE802843357099594532B26 /* idna.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idna.c; path = src/idna.c; sourceTree = ""; }; + 74EF4AEDECE802843357099594532B26 /* idna.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = idna.c; path = src/idna.c; sourceTree = ""; }; 74F65B120DDCF4943829A077989BC940 /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; 74FBE83E302340F1AF0E9527E57F9E36 /* FIRSetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.m; sourceTree = ""; }; 75025A8A27096CDB6E8AE8E4BC9FFA5C /* 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; }; - 751CBD225EA549F3C7051A909250DE2E /* sensitive.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c"; sourceTree = ""; }; + 751CBD225EA549F3C7051A909250DE2E /* sensitive.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c"; sourceTree = ""; }; 754702E20515DD719781A8F60A6C2285 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; 755713338B82495EAAE3EA194A5670CB /* 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 = ""; }; - 75682C0FA51A0354F41CAB4D0CA10FE8 /* event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_engine.cc; path = src/core/lib/event_engine/event_engine.cc; sourceTree = ""; }; + 75682C0FA51A0354F41CAB4D0CA10FE8 /* 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 = ""; }; 756E5FEE42F22FA5F6A346ED037D2DCD /* stacktrace_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace_config.h; path = absl/debugging/internal/stacktrace_config.h; sourceTree = ""; }; 757DF5613183737FB611AF88A607CFB6 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; 7583D15669BBCABA12533DDAEA5A9EB8 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; 75A5594AC85A4BCCDF3A3BC14AC1F2EE /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; 75B075366C40130FB358E1F8AE509FF9 /* 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 = ""; }; - 75E01D751EB5E14DE51A53730AEB88EC /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; + 75E01D751EB5E14DE51A53730AEB88EC /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; 75E9383DA3E778B9D79F739FB202FA1E /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; 75ED761F119C0CF1FE31AEF10B707E9F /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - 75F0CE0B64C08C2E2FF9B625156052AB /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; - 76067A3A72F9B8616CBA331F79721759 /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; + 75F0CE0B64C08C2E2FF9B625156052AB /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; + 76067A3A72F9B8616CBA331F79721759 /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; 76080F0588F5B9893CAFD758CD88D968 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 761E7749E8DAAF445F45115FF371FEC5 /* authorization_policy_provider_vtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = authorization_policy_provider_vtable.cc; path = src/core/lib/security/authorization/authorization_policy_provider_vtable.cc; sourceTree = ""; }; + 761E7749E8DAAF445F45115FF371FEC5 /* 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 = ""; }; 7640767001365462E5951CA08527F9A8 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; 764766F27DF531CBB6300370021F1667 /* compressed_tuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compressed_tuple.h; path = absl/container/internal/compressed_tuple.h; sourceTree = ""; }; - 765811F439771B8FE3F28A99188BBB05 /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; + 765811F439771B8FE3F28A99188BBB05 /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; 7673737FC609A1373ED10CCED84DC1A6 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; 7673C8C82A949E7709FCE60ECC2E03FB /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; - 7683E2F4EAF3627096B3860DE992A8F2 /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; + 7683E2F4EAF3627096B3860DE992A8F2 /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; 768F949B40301D207E873B6E6E266E00 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; - 76947F9133E5DD0EE4AB28A6D56A25B9 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; - 769B35410097BA9D4221360F33FF5BC8 /* ssl_session_openssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_openssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_openssl.cc; sourceTree = ""; }; - 76A681E025F34AF7680341E8C5F67977 /* file_watcher_certificate_provider_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = file_watcher_certificate_provider_factory.cc; path = src/core/ext/xds/file_watcher_certificate_provider_factory.cc; sourceTree = ""; }; + 76947F9133E5DD0EE4AB28A6D56A25B9 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; + 769B35410097BA9D4221360F33FF5BC8 /* 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 = ""; }; + 76A681E025F34AF7680341E8C5F67977 /* 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 = ""; }; 76AA200E816C2A98A8605CB6261B9CB9 /* 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 = ""; }; 76C31F7D30AAD11934DCF28A2F30939B /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; 76C5A2094580D570E896A866C22C7915 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; @@ -14349,60 +14349,60 @@ 76D7DD4C71EE11254080F7DF0717AEE0 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; 76DD4EA6CACBF3D5EE51596430225743 /* 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 = ""; }; 76E489E853597BF2D6F33EF918DF4ED9 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - 7714CADF8EED370782F432BCC600112D /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; + 7714CADF8EED370782F432BCC600112D /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; 771EBCC52883059ACE8C0E47ABF3BBE0 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 7723C6D3B664A8FA682151019390F965 /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; + 7723C6D3B664A8FA682151019390F965 /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; 772C7BD84E3DA84CCA800FDA58C9B0C3 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 773E3F9A2FEDB8A6657BEDFB3204550E /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; + 773E3F9A2FEDB8A6657BEDFB3204550E /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; 7775282BDFC7F8B4AFF2CABDE7D3EE41 /* 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 = ""; }; - 7782A1146E6A2F48B994E88620F5D44D /* secret.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = secret.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c"; sourceTree = ""; }; - 7783292392AC373A65539E922FD7FE09 /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; - 778A0AA9A13B9870BDB5FFC5D9C08489 /* memory_eager_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_eager_reference_delegate.cc; path = Firestore/core/src/local/memory_eager_reference_delegate.cc; sourceTree = ""; }; + 7782A1146E6A2F48B994E88620F5D44D /* secret.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c"; sourceTree = ""; }; + 7783292392AC373A65539E922FD7FE09 /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; + 778A0AA9A13B9870BDB5FFC5D9C08489 /* 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 = ""; }; 778B7A0BF342480EC6F96B9D0D5F5333 /* 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 = ""; }; - 778BD763D34B93A6562A062315E4E0EE /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_extku.c; path = src/crypto/x509v3/v3_extku.c; sourceTree = ""; }; - 7797727CCC804F0D262A0D1AB926340E /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; + 778BD763D34B93A6562A062315E4E0EE /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_extku.c; path = src/crypto/x509v3/v3_extku.c; sourceTree = ""; }; + 7797727CCC804F0D262A0D1AB926340E /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; 77D4A200637EB55E9B87B72A6B637C85 /* leveldb-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-prefix.pch"; sourceTree = ""; }; - 77F634E5FC9C8843C5E7D717581C76A2 /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; + 77F634E5FC9C8843C5E7D717581C76A2 /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; 77F9C8511B95518FA2CA0C524B274D56 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - 782C8B1210DD99790B729C9A51E5F835 /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; + 782C8B1210DD99790B729C9A51E5F835 /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; 78336347EE982FA32B1624A1D5F4E7F8 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; 783E4592B9F93EF4B78080B20DA9DCE2 /* FIRSignInWithGameCenterResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h; sourceTree = ""; }; - 7846833EB999FD2711E68ADA15782793 /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; - 78693431167DC8F6BE8B700193296E81 /* load_system_roots_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_system_roots_fallback.cc; path = src/core/lib/security/security_connector/load_system_roots_fallback.cc; sourceTree = ""; }; + 7846833EB999FD2711E68ADA15782793 /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; + 78693431167DC8F6BE8B700193296E81 /* 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 = ""; }; 786F175B02526C091DF5E32111D951FA /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; 787355FBC8B91E008ABF5DD157CE7FE6 /* FIRGoogleAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.h; sourceTree = ""; }; 787CE6B6D5330420BF853E6E010ACDE2 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; 78AA8F8957017331CC7D32A3E0BDB059 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; - 78B9A6E0D9415CEA91BBE749CA784FBF /* env_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_windows.cc; path = src/core/lib/gpr/env_windows.cc; sourceTree = ""; }; - 78DF3922EE4BEEE03E14216231A46B18 /* local_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_credentials.cc; path = src/core/lib/security/credentials/local/local_credentials.cc; sourceTree = ""; }; - 78EAAA073E8BB7481AD3F7027C08AA08 /* async.c */ = {isa = PBXFileReference; includeInIndex = 1; name = async.c; path = src/unix/async.c; sourceTree = ""; }; + 78B9A6E0D9415CEA91BBE749CA784FBF /* env_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_windows.cc; path = src/core/lib/gpr/env_windows.cc; sourceTree = ""; }; + 78DF3922EE4BEEE03E14216231A46B18 /* 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 = ""; }; + 78EAAA073E8BB7481AD3F7027C08AA08 /* async.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = async.c; path = src/unix/async.c; sourceTree = ""; }; 7906A37970F74FF088FEFC41D3688768 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - 791E99B7A60C6BBD3F48D9044F46B429 /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; - 793E6076D2665F1E548074DC8DC78322 /* iomgr_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_custom.cc; path = src/core/lib/iomgr/iomgr_custom.cc; sourceTree = ""; }; - 796E3F4399D74C1F67462E63B58D3AF2 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; + 791E99B7A60C6BBD3F48D9044F46B429 /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; + 793E6076D2665F1E548074DC8DC78322 /* iomgr_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_custom.cc; path = src/core/lib/iomgr/iomgr_custom.cc; sourceTree = ""; }; + 796E3F4399D74C1F67462E63B58D3AF2 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_common.c; sourceTree = ""; }; 799A6BA38BA72F02C43FA66FAC4E03C3 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; - 799E8D80EBFBBAFAB822B01F28704954 /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_int.c; path = src/crypto/x509v3/v3_int.c; sourceTree = ""; }; - 79A4B04EC5A7C06D99B6CCB2A86DCA24 /* load_system_roots_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_system_roots_linux.cc; path = src/core/lib/security/security_connector/load_system_roots_linux.cc; sourceTree = ""; }; - 79BB29CCDA18A39BF0778946D15438FB /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; + 799E8D80EBFBBAFAB822B01F28704954 /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_int.c; path = src/crypto/x509v3/v3_int.c; sourceTree = ""; }; + 79A4B04EC5A7C06D99B6CCB2A86DCA24 /* load_system_roots_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_system_roots_linux.cc; path = src/core/lib/security/security_connector/load_system_roots_linux.cc; sourceTree = ""; }; + 79BB29CCDA18A39BF0778946D15438FB /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; 79C3A7D7CA612068B66154CFA2106C0D /* 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 = ""; }; 79C3CFDF38FDFA63226560FBD6A6A8FC /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; - 79D05D52E31B4094E284232985324159 /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_resolver.cc; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc; sourceTree = ""; }; + 79D05D52E31B4094E284232985324159 /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_resolver.cc; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc; sourceTree = ""; }; 79E05EE534DA72A2C427B0B204D75916 /* 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 = ""; }; 79E0F27F37F7CB6B638A794C270C5FDF /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 79E75A2A64ADC6B112F117C024ECBB58 /* tls_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_credentials.cc; path = src/core/lib/security/credentials/tls/tls_credentials.cc; sourceTree = ""; }; - 79E9B6BF8F213DCB21DB892917ADF5DC /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; + 79E75A2A64ADC6B112F117C024ECBB58 /* 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 = ""; }; + 79E9B6BF8F213DCB21DB892917ADF5DC /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; 79EBAB0589A529CD029D4516380260F2 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; 79F093F8BE761F244B6DB67078B233B0 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; - 79F6FEF2BC6EFF376E1BAD23A3CA6CFC /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; - 79F77340050550C9D5F35B7FAB1483B9 /* resource_locator.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_locator.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c"; sourceTree = ""; }; + 79F6FEF2BC6EFF376E1BAD23A3CA6CFC /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; + 79F77340050550C9D5F35B7FAB1483B9 /* resource_locator.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c"; sourceTree = ""; }; 7A03AE8D2FB86CD4A35C49826D7782B8 /* 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 = ""; }; 7A1598AA01C5003E6C88928A771D6724 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; 7A237ECCFA8B96B54BBA8C415640B0EA /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - 7A25EF913710F67CCE26F52CB41CD585 /* transport_security_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_grpc.cc; path = src/core/tsi/transport_security_grpc.cc; sourceTree = ""; }; - 7A33FE4C521E1833DF1A4B2BE96DE21A /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_skey.c; path = src/crypto/x509v3/v3_skey.c; sourceTree = ""; }; + 7A25EF913710F67CCE26F52CB41CD585 /* 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 = ""; }; + 7A33FE4C521E1833DF1A4B2BE96DE21A /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_skey.c; path = src/crypto/x509v3/v3_skey.c; sourceTree = ""; }; 7A3DE77817594D44F6C217357EC78C72 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - 7A4A7FDBFB29EDE523370E23DF2693EC /* fake_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_transport_security.cc; path = src/core/tsi/fake_transport_security.cc; sourceTree = ""; }; - 7A5486BE9CC1F388E324C9C7EABD8B15 /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; + 7A4A7FDBFB29EDE523370E23DF2693EC /* 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 = ""; }; + 7A5486BE9CC1F388E324C9C7EABD8B15 /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; 7A665B245C04D150D30C2A30625B2656 /* endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian.h; path = absl/base/internal/endian.h; sourceTree = ""; }; 7A815A83BAA20EB9B7484EAD96F8A859 /* statusor_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor_internal.h; path = absl/status/internal/statusor_internal.h; sourceTree = ""; }; 7A9A6AE481C213A802D349EAA9F4C45A /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; @@ -14412,69 +14412,69 @@ 7AB6F42194261B05D48A051B0F2C668E /* 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 = ""; }; 7ABD10E2B1E588523AD9FBD3940CE282 /* sparse_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_array.h; path = third_party/re2/re2/sparse_array.h; sourceTree = ""; }; 7AC23454BB32F73F9583DB52A0C93FFA /* FIRGoogleAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.m; sourceTree = ""; }; - 7ADCA55EEAF99EBE87B8C93CE2B6790F /* sdk_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sdk_server_authz_filter.cc; path = src/core/lib/security/authorization/sdk_server_authz_filter.cc; sourceTree = ""; }; + 7ADCA55EEAF99EBE87B8C93CE2B6790F /* sdk_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sdk_server_authz_filter.cc; path = src/core/lib/security/authorization/sdk_server_authz_filter.cc; sourceTree = ""; }; 7ADED8F1E6190B3D423AE2A96A2BB920 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; 7AE60A7BA6E0A8E04D66350CD9DB972D /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - 7B105965769545C5B0B9E99C26DC589A /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; - 7B1BACB56D2CD9F872B1C6755A7E0496 /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; + 7B105965769545C5B0B9E99C26DC589A /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; + 7B1BACB56D2CD9F872B1C6755A7E0496 /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; 7B40B1F51FF6B7F02B55E11CB5B8B7F1 /* 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 = ""; }; - 7B4BCADE378832EA19B9002EDBA7FC4B /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; + 7B4BCADE378832EA19B9002EDBA7FC4B /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; 7B53B3009CC49BDB2753BB8E93BECF53 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; 7B823338B9E4C56DFF2807FBD0210A7C /* fastmath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fastmath.h; path = absl/random/internal/fastmath.h; sourceTree = ""; }; 7B848F98AC8E5B6380E17439DE224151 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; 7B9D3B1D7D115EDFC90A91EA6CFB2EF0 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - 7BB46D2645FF96E502A1BD97E9687DEC /* slice_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_api.cc; path = src/core/lib/slice/slice_api.cc; sourceTree = ""; }; + 7BB46D2645FF96E502A1BD97E9687DEC /* slice_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_api.cc; path = src/core/lib/slice/slice_api.cc; sourceTree = ""; }; 7BB9D6AA420B85C89C745776993E58CF /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; 7BC6F61972B12C5AFE35B95B4E2FEF46 /* 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 = ""; }; 7BC94C5B9BAE2B14775EA499DE8D5BFD /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/internal/dynamic_annotations.h; sourceTree = ""; }; 7BDB673E3DC250F32BEE1887018D2DF5 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - 7BDED696BE75F68B6825C21F5E27B66D /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; + 7BDED696BE75F68B6825C21F5E27B66D /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; 7BE01FC6063EB5F7F464F39C61924201 /* 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 = ""; }; 7BE9EF9D777E71CFE2C59A9655253213 /* 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 = ""; }; 7BEE68BA6F625E44541785565BC948DC /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - 7C02D0BC1F3D82EE13DDE1561F800B14 /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; + 7C02D0BC1F3D82EE13DDE1561F800B14 /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; 7C13AED8D03B4ACC81C7729DFB9C812A /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/include/openssl/buffer.h; sourceTree = ""; }; 7C32B7A8822FC8375E6AF4ACD507022B /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; - 7C3770DBCF5BCC6E005507C30119B889 /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; - 7C39B82C23E304C4405C33DB91B2EF6A /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; + 7C3770DBCF5BCC6E005507C30119B889 /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; + 7C39B82C23E304C4405C33DB91B2EF6A /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; 7C3A4A8AA200F17F3AECD5A88285A09D /* table_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_builder.h; path = include/leveldb/table_builder.h; sourceTree = ""; }; 7C3EDEC56FAC05820A497B6E4829A4A1 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; - 7C47A0B5C04C4EAEAB4E3637CF1386F3 /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; + 7C47A0B5C04C4EAEAB4E3637CF1386F3 /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; 7C50351F88C76CEDFFED2073AC0B442F /* 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 = ""; }; - 7C619C5FDC8C2239E0C41D44C8CC2C8E /* deprecation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deprecation.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c"; sourceTree = ""; }; + 7C619C5FDC8C2239E0C41D44C8CC2C8E /* deprecation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c"; sourceTree = ""; }; 7C779E900CA57D44C2F9D63A7B6A6A88 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; 7CA0185F83ACA006EC727DBDF59D27AD /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - 7CA55CBAF2E98B57BFFEDABA03F25B38 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; - 7CC01C94C1B4D012E0C86982C368B583 /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; + 7CA55CBAF2E98B57BFFEDABA03F25B38 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; + 7CC01C94C1B4D012E0C86982C368B583 /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; 7CC3B7274B204C5BEF266656A274CBAD /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - 7CC81E13AD0EA063C5581E4EBA665ADB /* ssl_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_utils.cc; path = src/core/lib/security/security_connector/ssl_utils.cc; sourceTree = ""; }; + 7CC81E13AD0EA063C5581E4EBA665ADB /* 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 = ""; }; 7CDEF017CC0F2CC3666D9416805B34DE /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = absl/types/any.h; sourceTree = ""; }; 7CE0A4D62BC222B2960459D7DD3FCC3A /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/client_context.h; sourceTree = ""; }; 7CEA1E95AB3F2E8B15CA2ED5A5DD1569 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = absl/strings/match.h; sourceTree = ""; }; 7D2CCC76EC22DFFA7A0E43DF3A79F512 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; 7D33C8BBC3875CADB64091D8130C98D5 /* FIRFederatedAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFederatedAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFederatedAuthProvider.h; sourceTree = ""; }; 7D4A083B309091D9258E0D4C82F1D3CC /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/tls/internal.h; sourceTree = ""; }; - 7D4A427A4270E220B6DB9600522D32E8 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; - 7D4B26A4EACD684AC489DECF84D7AE37 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; - 7D695078CAC476D795B2CBAB84FA5821 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poll.c; path = src/unix/poll.c; sourceTree = ""; }; - 7D7ABAEBB49E4E3F643B8E5E52765383 /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; + 7D4A427A4270E220B6DB9600522D32E8 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; + 7D4B26A4EACD684AC489DECF84D7AE37 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; + 7D695078CAC476D795B2CBAB84FA5821 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poll.c; path = src/unix/poll.c; sourceTree = ""; }; + 7D7ABAEBB49E4E3F643B8E5E52765383 /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; 7D8CF18C9D9D17FD06BFF9E3C01EBC9B /* 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 = ""; }; 7D92C9A74272B6812313FAAA4491CD59 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; - 7DAC6D463F38520CDEC390263A93D7E8 /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; + 7DAC6D463F38520CDEC390263A93D7E8 /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; 7DB40011121B0F1C6A39BC69784C72DD /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; 7DC59AAE557C5D8876B7CAA3FBF631DF /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; - 7DCA23E37FB828A5C060E1EA6F1A8780 /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; + 7DCA23E37FB828A5C060E1EA6F1A8780 /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; 7DF76BAA4C32D0A75873EEFAB878AC13 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; 7DF7AE67E3BE5A28A3D46D9E468EE3E5 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; - 7DF92B730120BC397228E9C0DAB6ED6B /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; + 7DF92B730120BC397228E9C0DAB6ED6B /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; 7E0904CB978C8745FBBBC1BB1C47E042 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; 7E28BF9D80CED00CCA8BDFFC2E3A0F20 /* write_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch.h; path = include/leveldb/write_batch.h; sourceTree = ""; }; - 7E2CC987BD0D69D5B588FA66E42CE33C /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; + 7E2CC987BD0D69D5B588FA66E42CE33C /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; 7E42C7053CD3F40C7B1AF6F78A0D5F3A /* buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buf.h; path = src/include/openssl/buf.h; sourceTree = ""; }; - 7E5B7F006D924395AD45CC2BA3703911 /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; + 7E5B7F006D924395AD45CC2BA3703911 /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; 7E612E105B962670B1B33D32117257D2 /* 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 = ""; }; 7E65AEAD12D47B9D02DFB9657A058EB8 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - 7E79E4EA366048EE1E4AEF5E266F4A51 /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; + 7E79E4EA366048EE1E4AEF5E266F4A51 /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; 7E7CC535C54B4C290FC6574D455BBC01 /* macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = macros.h; path = absl/base/macros.h; sourceTree = ""; }; 7EAE5FB266127D499A978EB17A9D62DA /* 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 = ""; }; 7EB189B09A053244B12686A0DD331D66 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509/internal.h; sourceTree = ""; }; @@ -14484,27 +14484,27 @@ 7F030BA8B204A84375448D691BFF035D /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; 7F0490F09EFFEB632ED4629FE5DFB41C /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; 7F18835E43AAE743B6DCA77EB490B186 /* idna.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idna.h; path = src/idna.h; sourceTree = ""; }; - 7F1BC2CC17F532F47E23CF44D9AADF91 /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; + 7F1BC2CC17F532F47E23CF44D9AADF91 /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; 7F1FDBF639CB74864A60D21F5939F2B2 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = include/leveldb/env.h; sourceTree = ""; }; 7F382F4DCC010C3268AD3E4B54E0C010 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; 7F50FCE2418EB5D7E1740633F64A7FB4 /* FirebaseCoreDiagnostics.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreDiagnostics.modulemap; sourceTree = ""; }; - 7F672F0F888388AF3B470D815231A394 /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; - 7F6E41B7326949C6F5E48863E5798E38 /* sha1-altivec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "sha1-altivec.c"; path = "src/crypto/fipsmodule/sha/sha1-altivec.c"; sourceTree = ""; }; + 7F672F0F888388AF3B470D815231A394 /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; + 7F6E41B7326949C6F5E48863E5798E38 /* sha1-altivec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "sha1-altivec.c"; path = "src/crypto/fipsmodule/sha/sha1-altivec.c"; sourceTree = ""; }; 7F7B28EE0F74B9AD0BB0A3DF09BC5A61 /* string_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = include/grpc/support/string_util.h; sourceTree = ""; }; 7FB991C75FBD4B12C3473928DD556C8F /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; 7FCCD9A63BC16F8C70552E3B5888B2A4 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/byte_buffer.h; sourceTree = ""; }; 7FE21EF9D264BCBA0535BE5B4C1B9763 /* FIRStartMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.m; sourceTree = ""; }; - 7FF061B73082F8F2022C4100C6C7E6E2 /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; + 7FF061B73082F8F2022C4100C6C7E6E2 /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; 80175968A0F7C9E05B272E4D1A300475 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - 801B4E8061868343881352B94F4097CE /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_filters.cc; path = src/core/ext/filters/client_channel/dynamic_filters.cc; sourceTree = ""; }; + 801B4E8061868343881352B94F4097CE /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic_filters.cc; path = src/core/ext/filters/client_channel/dynamic_filters.cc; sourceTree = ""; }; 801DB2F445C95D9AA81B40844F3203D7 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; 8025D595C262037DB6D82C7FCFB75049 /* FIRWithdrawMFARequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFARequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.h; sourceTree = ""; }; 802D64B40B4B0444252CC7C35097323B /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; 8037E1306A59555C81260D3FD37729A4 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 803A26BEC92C06FEA4714F80D68CD846 /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; + 803A26BEC92C06FEA4714F80D68CD846 /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; 803EDF75568F55113E38FF23D1F613DA /* 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 = ""; }; 803EE5BFD0498CB7975A108834085F97 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - 804D22677E760A249DDE43EF70328314 /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; + 804D22677E760A249DDE43EF70328314 /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; 804D74B24C099F007E82385C074E358F /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = src/include/openssl/md5.h; sourceTree = ""; }; 804EBECD19957CB235E9415F60286B92 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; 806D804C7A2051238803DFCA7E54FCFE /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; @@ -14514,42 +14514,42 @@ 80AA230DB59574DCC959E3FF257A83DC /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = src/include/openssl/blowfish.h; sourceTree = ""; }; 80B005971F5C75C1E0DDBCB4C334266F /* 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 = ""; }; 80B56502FE541E7DD799C011148B62A3 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 80CE9C3AC50A854AF113402C03D22840 /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; + 80CE9C3AC50A854AF113402C03D22840 /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; 80E2B9C80C1D2401825B16CF52C16D75 /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; 80F1561B81C70A802F7EA85B888BE9DE /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 8128F2E689D384161325885434437A7B /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; + 8128F2E689D384161325885434437A7B /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; 814867F6F30BF5DBC233EBFB76375055 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 814EFCD04166FA022143B812E4AE54F4 /* iam_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iam_credentials.cc; path = src/core/lib/security/credentials/iam/iam_credentials.cc; sourceTree = ""; }; + 814EFCD04166FA022143B812E4AE54F4 /* 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 = ""; }; 8169A1A883278213BAE6489152180CC1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/hrss/internal.h; sourceTree = ""; }; 817A25A1858B0BC5B123C4EA1B50F85F /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; 817AB778B3E5601BB11379797A86C8AE /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; - 81A5FA94A9CC5868125C6303E957DE48 /* ssl_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_credentials.cc; path = src/core/lib/security/credentials/ssl/ssl_credentials.cc; sourceTree = ""; }; - 81DA078477DBCCB0C1972DA80C4812BF /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; + 81A5FA94A9CC5868125C6303E957DE48 /* 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 = ""; }; + 81DA078477DBCCB0C1972DA80C4812BF /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; 81EB19368A1498215B0CA970BDF9707C /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/err/internal.h; sourceTree = ""; }; - 81EC1C4A9F7749F4A776E8360C14B313 /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; - 81F35E616D7A24D8E2DD72A96E7F1047 /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; - 81FA0F76DB5ADDF6BF62D4FDA4C212A6 /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; + 81EC1C4A9F7749F4A776E8360C14B313 /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; + 81F35E616D7A24D8E2DD72A96E7F1047 /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; + 81FA0F76DB5ADDF6BF62D4FDA4C212A6 /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; 82013083E21F9C4C42AB2F17800F12AE /* compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression.h; path = include/grpc/compression.h; sourceTree = ""; }; 821374D67A9F6268117D35B2ED29F9F8 /* FIRTwitterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTwitterAuthProvider.h; sourceTree = ""; }; - 823307DBB99753D7D63E4240D7AB7532 /* document_key_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_key_reference.cc; path = Firestore/core/src/local/document_key_reference.cc; sourceTree = ""; }; - 82365BE95D0F61322C410B9222B8342A /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; - 824F564055990B89D6937834E865A79A /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; - 82519058DB16C1508CCC9DB903349F65 /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; + 823307DBB99753D7D63E4240D7AB7532 /* 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 = ""; }; + 82365BE95D0F61322C410B9222B8342A /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; + 824F564055990B89D6937834E865A79A /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; + 82519058DB16C1508CCC9DB903349F65 /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; 8260A36825F444D43C8FA8ED5D178CB6 /* 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 = ""; }; 82889AE2BBF9643D34B161B9220FA9F0 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - 82903A1639B3CB3E512E6527CB87B7C2 /* p_x25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_x25519_asn1.c; path = src/crypto/evp/p_x25519_asn1.c; sourceTree = ""; }; + 82903A1639B3CB3E512E6527CB87B7C2 /* 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 = ""; }; 829605E36EDA6B0E8845C26075B1EC53 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; - 82FC36A5821DFC147387DC7BD77868CE /* alts_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_security_connector.cc; path = src/core/lib/security/security_connector/alts/alts_security_connector.cc; sourceTree = ""; }; + 82FC36A5821DFC147387DC7BD77868CE /* 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 = ""; }; 82FCA0F0AC99D2ED11719EB48DB90138 /* 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 = ""; }; 831D024AFACC9C4176CDC6EEBF791F28 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - 83331FBE99339EE695C88DA833274ECD /* chttp2_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_connector.cc; path = src/core/ext/transport/chttp2/client/chttp2_connector.cc; sourceTree = ""; }; + 83331FBE99339EE695C88DA833274ECD /* 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 = ""; }; 835794F36BDFBDD5B31837218FC86943 /* port_stdcxx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_stdcxx.h; path = port/port_stdcxx.h; sourceTree = ""; }; - 837537285C9BEC5295F81A450E80E355 /* waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = waiter.cc; path = absl/synchronization/internal/waiter.cc; sourceTree = ""; }; + 837537285C9BEC5295F81A450E80E355 /* waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = waiter.cc; path = absl/synchronization/internal/waiter.cc; sourceTree = ""; }; 83A178747E2BB665ED54072C495D013A /* 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 = ""; }; 83A7F0AFBC6A66D32632BCEB9EC41490 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; 83BC52BDCE224833A93A71638D8819FD /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; 83F725D38876C56067106AFBAFA14666 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - 84239BCC5B81A8DEFD7602C353FD75BC /* grpc_tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_verifier.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc; sourceTree = ""; }; + 84239BCC5B81A8DEFD7602C353FD75BC /* 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 = ""; }; 842C6DD85798D71FFE0F6A3978064B29 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; 842F3CA63637C9471D572D962F41C20A /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; 8434161CB17DA4554036A55A1DCE1BD2 /* abseil.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = abseil.modulemap; sourceTree = ""; }; @@ -14558,24 +14558,24 @@ 846272CE906ECA1A80A02B7AEB41BAD5 /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; 8462D45307158B54E7DE571C0CCC59AE /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; 846BB8B1516FFB4ACEB09BA01E3213CE /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 8473F989FCE12F29EC1D5981DAAA5216 /* rds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c"; sourceTree = ""; }; + 8473F989FCE12F29EC1D5981DAAA5216 /* rds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c"; sourceTree = ""; }; 847F94B62BC4C08B64A8B1A285CDC65B /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; 84877799626941D050865D6B8237B558 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 849051CE414BC29F7A237A39EBCD55F7 /* slice_string_helpers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_string_helpers.cc; path = src/core/lib/slice/slice_string_helpers.cc; sourceTree = ""; }; - 849A1163BE198D6657617FC151F0FFAD /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; + 849051CE414BC29F7A237A39EBCD55F7 /* 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 = ""; }; + 849A1163BE198D6657617FC151F0FFAD /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; 849A1AC8CEA272691DEB327D46B88ECC /* dbformat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dbformat.h; path = db/dbformat.h; sourceTree = ""; }; 84B5EBD6C55FCC15FC3EC63FA107C532 /* FIRAuthInternalErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInternalErrors.h; path = FirebaseAuth/Sources/Utilities/FIRAuthInternalErrors.h; sourceTree = ""; }; - 84C8A845119E06EE804C88BE83FB10E7 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; - 84CE4D473CB4B1B2A08A99F858424D05 /* gethostname_host_name_max.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_host_name_max.cc; path = src/core/lib/iomgr/gethostname_host_name_max.cc; sourceTree = ""; }; - 850FB736D8A70EC850956A82CD5849D9 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; + 84C8A845119E06EE804C88BE83FB10E7 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; + 84CE4D473CB4B1B2A08A99F858424D05 /* 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 = ""; }; + 850FB736D8A70EC850956A82CD5849D9 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; 851A72E7FAE45B9C9A9C917210006951 /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; 851DB4108E572EFE5F11384675ACE17A /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; 851DEDC9DCA1CDA1721AF7FC32D0077B /* 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 = ""; }; 85467C630EA8DE88330CB36D54EF3198 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/support/atm.h; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* GoogleDataTransport */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleDataTransport; path = GoogleDataTransport.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 857EA4814AF020796AE9D746439F0390 /* tcp_server_utils_posix_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_common.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_common.cc; sourceTree = ""; }; + 857EA4814AF020796AE9D746439F0390 /* 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 = ""; }; 85A1F02DAC8F20ECD50F07FB6A5DFA18 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rsa/internal.h; sourceTree = ""; }; - 85A9907A769CC29511FC6CEF4A8F6A69 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; + 85A9907A769CC29511FC6CEF4A8F6A69 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; 85B5B5E212867EF230C87ECF050446B8 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; 85CDB0869C1EF72668489A231E5AD02A /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; 85CE76757D158AE389D0EA2BE5A34086 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; @@ -14588,196 +14588,196 @@ 8629F5CB910A9307E786B85BF9539263 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; 8632A07B4FA18EC716EFF44F1531135E /* 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 = ""; }; 8632B1A27EDFD373FF377527EE149645 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = absl/base/internal/raw_logging.h; sourceTree = ""; }; - 86365DA0FA0891FF1DB367911C01D1CC /* client_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel.cc; path = src/core/ext/filters/client_channel/client_channel.cc; sourceTree = ""; }; - 8640AF57CE7046398BB5BF4BDA9D834B /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; - 864EA35C8E28017343BC673750F71958 /* alts_grpc_record_protocol_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_grpc_record_protocol_common.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc; sourceTree = ""; }; - 865D385616D742CD2147A5718A155362 /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; - 866E034609AFF2AB1DF5E2A47DBCB64F /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = idle_filter_state.cc; path = src/core/ext/filters/client_idle/idle_filter_state.cc; sourceTree = ""; }; + 86365DA0FA0891FF1DB367911C01D1CC /* client_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel.cc; path = src/core/ext/filters/client_channel/client_channel.cc; sourceTree = ""; }; + 8640AF57CE7046398BB5BF4BDA9D834B /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; + 864EA35C8E28017343BC673750F71958 /* 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 = ""; }; + 865D385616D742CD2147A5718A155362 /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; + 866E034609AFF2AB1DF5E2A47DBCB64F /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = idle_filter_state.cc; path = src/core/ext/filters/client_idle/idle_filter_state.cc; sourceTree = ""; }; 8673FE441D778EFC8EDEAB4F97ADA7D4 /* FIRWithdrawMFAResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFAResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.h; sourceTree = ""; }; 86923368E9A5ADF0DDAB0080F478DF15 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; - 8695BB135034FF365003E14EA12AC98F /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; + 8695BB135034FF365003E14EA12AC98F /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; 86C040CC9AD6FD805F69679AB74A6023 /* 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 = ""; }; - 86C089F9BCD9B36830F63A147C686068 /* validate_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validate_service_config.cc; path = src/cpp/common/validate_service_config.cc; sourceTree = ""; }; + 86C089F9BCD9B36830F63A147C686068 /* 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 = ""; }; 86C24E9D2FB1CEE0ADFEEB298B87A8E6 /* ext_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_dat.h; path = src/crypto/x509v3/ext_dat.h; sourceTree = ""; }; - 86D1B73F3665D1A80C9F693DD31116D9 /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_balancer_api.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc; sourceTree = ""; }; + 86D1B73F3665D1A80C9F693DD31116D9 /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_balancer_api.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc; sourceTree = ""; }; 86D31D663533283246BA26F6E695B978 /* Libuv-gRPC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Libuv-gRPC-umbrella.h"; sourceTree = ""; }; 86E2962D8352B9D73AD74FBC94939A39 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/codegen/status.h; sourceTree = ""; }; 86E4A691EE109ED2C12573E958F94A57 /* 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 = ""; }; - 86FD8F68F4A6B1F258C6DC6DCF572316 /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; + 86FD8F68F4A6B1F258C6DC6DCF572316 /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; 870D8EB45AEF8BB328D6CF7239FDC52D /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - 8717876E56C270791F761EAF3BB61D9B /* overload.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = overload.upb.c; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c"; sourceTree = ""; }; + 8717876E56C270791F761EAF3BB61D9B /* overload.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upb.c; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c"; sourceTree = ""; }; 8720A2514F3AA488CA36988AB1BFF7A4 /* FIRFinalizeMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.m; sourceTree = ""; }; - 873687AEFA557524CD837B9CAB380039 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_connectivity.cc; path = src/core/ext/filters/client_channel/channel_connectivity.cc; sourceTree = ""; }; - 87437CB2E5BC7E0D3721AE274DC57BCD /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; + 873687AEFA557524CD837B9CAB380039 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_connectivity.cc; path = src/core/ext/filters/client_channel/channel_connectivity.cc; sourceTree = ""; }; + 87437CB2E5BC7E0D3721AE274DC57BCD /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; 8753297205A15687AAC62143DFB8A370 /* FIRGetProjectConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.m; sourceTree = ""; }; 8768919247D8ABCB2FEF928EFC96F826 /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = ""; }; 87692D90792BBDDC382E34A02ED92B4E /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - 878926A72A3EAFAA9A53CE7282E98E4C /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; - 8793B3EB2A5FF8636FE624671A5600C6 /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; - 87AAFB04B55856F0F2D76B2B5CA6A303 /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; + 878926A72A3EAFAA9A53CE7282E98E4C /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; + 8793B3EB2A5FF8636FE624671A5600C6 /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; + 87AAFB04B55856F0F2D76B2B5CA6A303 /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; 87B20CC8A728B6D40F4FF620667944D9 /* 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 = ""; }; - 87D14E6E9EC2BC22A4D7C68274C25BA6 /* firebase_metadata_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider_apple.mm; path = Firestore/core/src/remote/firebase_metadata_provider_apple.mm; sourceTree = ""; }; - 87DCEE445BFC18950D3EA956CD9F708E /* extension.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c"; sourceTree = ""; }; + 87D14E6E9EC2BC22A4D7C68274C25BA6 /* 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 = ""; }; + 87DCEE445BFC18950D3EA956CD9F708E /* extension.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c"; sourceTree = ""; }; 87FB35B4B8D497659A575754E0D6694B /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; 882449BEAD5E24C274937CD60DC230DA /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; 882FCB0DEF4E1541895FE27775FB4E05 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = include/grpcpp/resource_quota.h; sourceTree = ""; }; - 884791E9AF39E8C3C863A28EB681D6A3 /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; + 884791E9AF39E8C3C863A28EB681D6A3 /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; 88632C13B6ADCC96DB3E842E58AC3691 /* 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 = ""; }; 886A8EBBFDD898F9E662627471854DF0 /* FIRAuthNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthNotificationManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.h; sourceTree = ""; }; 886F2C2B3EF92B2D3B0943E0880EA5A3 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = table/format.h; sourceTree = ""; }; - 8877D7B9D41A73338304318D2795F633 /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = number.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; + 8877D7B9D41A73338304318D2795F633 /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; 889C4559B52459471A44A392B83B1D2F /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; 88B8EEB34934317FC62E45B56F0DABEA /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; - 890230CF2B8236EA6EF05EC09ECFEFEC /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; - 8909F43A7103E527828F577EF6B571D5 /* srds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = srds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c"; sourceTree = ""; }; - 89137C271D9AE7D2F71EE1A95A351912 /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; - 89274D0E80CA9AE9EC08FE08AEAF401B /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; + 890230CF2B8236EA6EF05EC09ECFEFEC /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; + 8909F43A7103E527828F577EF6B571D5 /* srds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = srds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c"; sourceTree = ""; }; + 89137C271D9AE7D2F71EE1A95A351912 /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; + 89274D0E80CA9AE9EC08FE08AEAF401B /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; 89408EFD5BBDE9305EA1CF534689D874 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; - 895CEBE178D620DB513F64F9CBF4ED59 /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; - 895E1CEA80836E9355FBB0D9B1F245DB /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; - 8998326D6B9B8AA7EED6F75FEB6F07FF /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; + 895CEBE178D620DB513F64F9CBF4ED59 /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; + 895E1CEA80836E9355FBB0D9B1F245DB /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; + 8998326D6B9B8AA7EED6F75FEB6F07FF /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; 89BFE9384FC50E4B4557762346397B7C /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - 89E86D9D5C91216F784927BE854E964B /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; + 89E86D9D5C91216F784927BE854E964B /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; 89ECED4B6E1792842207C72F7101FF9D /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; 89EF1F94D9B6A76129355ED7CC85C80C /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; 89F082EB7C70AA62FE666DD1D372858B /* FIRUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserInfo.h; sourceTree = ""; }; - 8A09EDCC235649B6FFA8B11DC8A18C86 /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; - 8A15AED959B11C9E86D8F20E08D6B883 /* channel_create_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create_posix.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc; sourceTree = ""; }; - 8A183A96D23C6A3969C3121A9FF9905A /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; + 8A09EDCC235649B6FFA8B11DC8A18C86 /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; + 8A15AED959B11C9E86D8F20E08D6B883 /* channel_create_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create_posix.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc; sourceTree = ""; }; + 8A183A96D23C6A3969C3121A9FF9905A /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; 8A2963FBCDFA65FAB78F53F2975F33E8 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; 8A360C4E0E8DFA7C76B2BF59DB3D65E4 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; - 8A3C04A89FA9AF99E398FDE3D7CF9AD0 /* bin_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bin_encoder.cc; path = src/core/ext/transport/chttp2/transport/bin_encoder.cc; sourceTree = ""; }; - 8A5F7B06CDBF7E9AF90CF256D49D8043 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; - 8A6F30CCF75DFB0083A0F777243BF9F7 /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; + 8A3C04A89FA9AF99E398FDE3D7CF9AD0 /* 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 = ""; }; + 8A5F7B06CDBF7E9AF90CF256D49D8043 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; + 8A6F30CCF75DFB0083A0F777243BF9F7 /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; 8AAA6C1D939B1D52C82F2543E812E223 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - 8AAD56369A9309A51A1E810C19CBFC3A /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; + 8AAD56369A9309A51A1E810C19CBFC3A /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; 8ACFE6B00DFFBA1DE88A5D10C90D6ACD /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/impl/codegen/sync_posix.h; sourceTree = ""; }; - 8AD15CC95EFDF231753C086B3E07BB4D /* get_current_time_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = get_current_time_posix.inc; path = absl/time/internal/get_current_time_posix.inc; sourceTree = ""; }; - 8AF0CDC6253EC8A2EA0CA4E6F62E4F16 /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pmaps.c; path = src/crypto/x509v3/v3_pmaps.c; sourceTree = ""; }; + 8AD15CC95EFDF231753C086B3E07BB4D /* 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 = ""; }; + 8AF0CDC6253EC8A2EA0CA4E6F62E4F16 /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pmaps.c; path = src/crypto/x509v3/v3_pmaps.c; sourceTree = ""; }; 8B18036E1C30982D96418E7F0EF028F9 /* CLTypingLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLTypingLabel.debug.xcconfig; sourceTree = ""; }; - 8B20EB3E0A60999DCDAAF55B3E053B74 /* check_gcp_environment_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_windows.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc; sourceTree = ""; }; + 8B20EB3E0A60999DCDAAF55B3E053B74 /* 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 = ""; }; 8B27C1DBE793B0CB0A66541CE2706306 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - 8B33DF1B3D916AD1E131CB9E5F76A057 /* stacktrace_win32-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_win32-inl.inc"; path = "absl/debugging/internal/stacktrace_win32-inl.inc"; sourceTree = ""; }; - 8B34E0F018EC128E411D87A1E801DAA0 /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; + 8B33DF1B3D916AD1E131CB9E5F76A057 /* 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 = ""; }; + 8B34E0F018EC128E411D87A1E801DAA0 /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; 8B49BDB0B122F7A383A21639753D0255 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; 8B51234E02E93F77D820FA91638307D1 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; 8B52C63C7192772F7B0BEAE11C9E97AA /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; 8B6EEA7A98913CF8835D7D79FADC7D1D /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - 8B7C21D21FCD4FDC4F74C259991D3440 /* message_size_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_size_filter.cc; path = src/core/ext/filters/message_size/message_size_filter.cc; sourceTree = ""; }; - 8B88E0C25A38850E3616E84F5C36C4EC /* grpc_streaming_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_streaming_reader.cc; path = Firestore/core/src/remote/grpc_streaming_reader.cc; sourceTree = ""; }; + 8B7C21D21FCD4FDC4F74C259991D3440 /* 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 = ""; }; + 8B88E0C25A38850E3616E84F5C36C4EC /* 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 = ""; }; 8B8A21B052C956C294EDFBECB5232750 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; 8B8BF6AC21340963544E8EDB827FF15F /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = src/include/openssl/dtls1.h; sourceTree = ""; }; - 8BC194407DF61191096C06CF542587B1 /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; + 8BC194407DF61191096C06CF542587B1 /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; 8BCBD362A14615B5389CE7DFBD4D8006 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - 8BCD98D145DC8703C436C52D1817B837 /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; + 8BCD98D145DC8703C436C52D1817B837 /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; 8BE9F03D7DEE7284D1A168D66B5E9729 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; 8BF5D76A3CA3083DD4BE85649E7DD57D /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 8C000874FD38C4F18E56DA495B7814F4 /* stacktrace_unimplemented-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_unimplemented-inl.inc"; path = "absl/debugging/internal/stacktrace_unimplemented-inl.inc"; sourceTree = ""; }; + 8C000874FD38C4F18E56DA495B7814F4 /* 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 = ""; }; 8C10ED87C02DADCDA8F7C6BC35FB31CA /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = src/include/openssl/srtp.h; sourceTree = ""; }; 8C3ED1EDFC37613EDB539E2BF7DEAC51 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; 8C472DEB0BEFDBFBC36D5A4706B6ECF5 /* FIRGetProjectConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h; sourceTree = ""; }; - 8C4A54ADC637409E26CB1E73A461CD23 /* resource_name.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_name.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c"; sourceTree = ""; }; - 8C50941522164CC5B709F5098D927E84 /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; + 8C4A54ADC637409E26CB1E73A461CD23 /* resource_name.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c"; sourceTree = ""; }; + 8C50941522164CC5B709F5098D927E84 /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; 8C6503482F2C79CAE53AD5EC298F4F62 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; 8C7ADAD18A55A4DF52919C1BC4BBCD42 /* FIRAuthProto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProto.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProto.h; sourceTree = ""; }; - 8CB04F54C9B2F140BB565119A014EE30 /* getaddrinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; name = getaddrinfo.c; path = src/unix/getaddrinfo.c; sourceTree = ""; }; + 8CB04F54C9B2F140BB565119A014EE30 /* getaddrinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = getaddrinfo.c; path = src/unix/getaddrinfo.c; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* FirebaseCoreDiagnostics */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreDiagnostics; path = FirebaseCoreDiagnostics.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 8CC9AD7FDB2813620522076911D06528 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; 8CD4010AEA140A8338AF644585089540 /* 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 = ""; }; 8CEEF3B6D7A39DD59099C171ACDF08DA /* checker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checker.h; path = absl/strings/internal/str_format/checker.h; sourceTree = ""; }; 8D10EA9EED3A818D297A55364817B99B /* FIRVerifyPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.m; sourceTree = ""; }; 8D24F2197A3CAB3D035C336389193070 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; - 8D472872B5C24DFD93CCA5D8229AE8EA /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; + 8D472872B5C24DFD93CCA5D8229AE8EA /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; 8D5A8BAB2E25201187BB80B51865699A /* atomic-ops.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "atomic-ops.h"; path = "src/unix/atomic-ops.h"; sourceTree = ""; }; - 8D9512FC96B3406B60B3E3B1BBF67A28 /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; - 8D9E0EE4D598A8F9EE984C18B90E9FA8 /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; + 8D9512FC96B3406B60B3E3B1BBF67A28 /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; + 8D9E0EE4D598A8F9EE984C18B90E9FA8 /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; 8DA346353DD8B04B3A8A1F8B6725A0E9 /* zipf_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipf_distribution.h; path = absl/random/zipf_distribution.h; sourceTree = ""; }; - 8DA51001DB24BE687C06CD98B1E8784F /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; + 8DA51001DB24BE687C06CD98B1E8784F /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; 8DBB0F936EAD9C1CE62BBCE41D4C38A7 /* statusor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = absl/status/statusor.h; sourceTree = ""; }; - 8DCD2DC78A51F2AD295CDE68DE7FD054 /* secure_random_arc4random.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_random_arc4random.cc; path = Firestore/core/src/util/secure_random_arc4random.cc; sourceTree = ""; }; - 8DD345AC22042207A48873400E33BA5B /* seed_gen_exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_gen_exception.cc; path = absl/random/seed_gen_exception.cc; sourceTree = ""; }; + 8DCD2DC78A51F2AD295CDE68DE7FD054 /* 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 = ""; }; + 8DD345AC22042207A48873400E33BA5B /* 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 = ""; }; 8DEF7F7016C87683E118732A218CE324 /* 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 = ""; }; 8E08512D6CB73FDF31801361045DFC10 /* 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 = ""; }; - 8E0E42B27A0C562BD52063883A093B81 /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; - 8E1B174FEECD67B732F4B53E8CAC8B2E /* unix_sockets_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unix_sockets_posix.cc; path = src/core/lib/iomgr/unix_sockets_posix.cc; sourceTree = ""; }; - 8E276779D90404FACCC5FE5D75C05700 /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; + 8E0E42B27A0C562BD52063883A093B81 /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; + 8E1B174FEECD67B732F4B53E8CAC8B2E /* 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 = ""; }; + 8E276779D90404FACCC5FE5D75C05700 /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; 8E2D3EDBEC2D4BF48FB40811BF9228C9 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; 8E3E41FFE5E35BF2A37E4E9BEF010F8F /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 8E613F3839FCACC24554D0B02C7A7EBA /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; + 8E613F3839FCACC24554D0B02C7A7EBA /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; 8E65C5AAB84E9D9577DCF7C80DEF1CD5 /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; 8E735432382820CF72572A48951A0C40 /* GDTCOREndpoints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h; sourceTree = ""; }; 8E84B4C0FD222118A07FFDD1F4FEDBDF /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; 8E8CA55F955A8FE8947084FA9608D6EF /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; 8EBBC3300281DF8820FFD0B2517BA714 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; 8EC840D202BCB192C7D00EC299D38CFC /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 8EDC6706EC9766F8AB498A6387EC5B4E /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; - 8EE29E7D1062BC6577A4D494107952A2 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; + 8EDC6706EC9766F8AB498A6387EC5B4E /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; + 8EE29E7D1062BC6577A4D494107952A2 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; 8EF14B3D35E555BD070ABD8E3F6AC264 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 8F01A7FAC7EB6BCF690CF54EF48A7DA7 /* cert.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cert.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c"; sourceTree = ""; }; - 8F089400446FF39AEE585E9EB90DCC06 /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; - 8F0B1B0E7A1D412E162549929B57CB3A /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; + 8F01A7FAC7EB6BCF690CF54EF48A7DA7 /* cert.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c"; sourceTree = ""; }; + 8F089400446FF39AEE585E9EB90DCC06 /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; + 8F0B1B0E7A1D412E162549929B57CB3A /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; 8F0FE9CBBE3D5C6C2E72EFC98F311B32 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; 8F1EB8B4CAEAB2701BEB14E7F75FB028 /* FIRSignUpNewUserRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.m; sourceTree = ""; }; 8F30C48AED51F133C45EFF4BF46AFE9B /* gRPC-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-Core-prefix.pch"; sourceTree = ""; }; - 8F35B322825A95585A34A326BFDFD064 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; + 8F35B322825A95585A34A326BFDFD064 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; 8F5D5C8068B8E1F69212579EA2A684B0 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - 8F6621CA44D8B72E9E90EEDDC58FC8C0 /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; + 8F6621CA44D8B72E9E90EEDDC58FC8C0 /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; 8F7AB6697F012D5B4C6CAD1527648734 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; - 8F885CE4DB729CCDCBEBF5F515800D4D /* key_field_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_in_filter.cc; path = Firestore/core/src/core/key_field_in_filter.cc; sourceTree = ""; }; + 8F885CE4DB729CCDCBEBF5F515800D4D /* 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 = ""; }; 8F8F19F9E1481749C185D71E041EE600 /* 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 = ""; }; 8FA0DE379CA2CE743AD2677FB09A2FAE /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - 8FB4960543A440EF3011186E7332F7CC /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; - 8FE8C5CBF1F8AD9E6F207D320F127150 /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; - 8FE937010042E5CD11DC4C146355C53E /* tcp_server_utils_posix_ifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_ifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc; sourceTree = ""; }; + 8FB4960543A440EF3011186E7332F7CC /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; + 8FE8C5CBF1F8AD9E6F207D320F127150 /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; + 8FE937010042E5CD11DC4C146355C53E /* 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 = ""; }; 90015403677A1F4E07DF13546F73521F /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; - 900CD7FC507E62C267685CB5EE49AA8B /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; - 90222205E434BDAB81FCA3BEF6115232 /* rds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c"; sourceTree = ""; }; + 900CD7FC507E62C267685CB5EE49AA8B /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; + 90222205E434BDAB81FCA3BEF6115232 /* rds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c"; sourceTree = ""; }; 902C59F262D45C1D61EFC1DB32949C5B /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; - 902C79C2F988CB00311D588742020FAF /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = table/format.cc; sourceTree = ""; }; - 9034F4E1070E412BB88D4515C15ADABA /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; + 902C79C2F988CB00311D588742020FAF /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = table/format.cc; sourceTree = ""; }; + 9034F4E1070E412BB88D4515C15ADABA /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; 903A97B774EE927AEF7320B91CA5A2A0 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - 905A7EA781C7788A3FEA5515F64BCCD3 /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; - 906C7238D6A8B1A8D4803481347A4160 /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; + 905A7EA781C7788A3FEA5515F64BCCD3 /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; + 906C7238D6A8B1A8D4803481347A4160 /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; 90751A8815D0D548A9093FE5AFC0C3B1 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - 90870DE07B32AF11702B9B7186D45229 /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; + 90870DE07B32AF11702B9B7186D45229 /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; 90AB132D549C5212035D94596705C0EC /* FIRSignUpNewUserResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.h; sourceTree = ""; }; - 90BADB2D9732E8472FE44DA83861CEEE /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rls.cc; path = src/core/ext/filters/client_channel/lb_policy/rls/rls.cc; sourceTree = ""; }; - 90D58D3D2C3225AFA9FAE7A5741010DA /* external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = external_account_credentials.cc; path = src/core/lib/security/credentials/external/external_account_credentials.cc; sourceTree = ""; }; + 90BADB2D9732E8472FE44DA83861CEEE /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rls.cc; path = src/core/ext/filters/client_channel/lb_policy/rls/rls.cc; sourceTree = ""; }; + 90D58D3D2C3225AFA9FAE7A5741010DA /* 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 = ""; }; 90DD8408E8AA3022043E97E9984359C9 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; 90EE474DB361EA6A5BC977E3C6AE8ECD /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; 910995BA774B1A6E8989A8FAEB7D4CEB /* 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 = ""; }; 910B9E157C56A0513EB5A2E521E2432B /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; 911425A24CE9DB88B1F38D82CFDA9147 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; sourceTree = ""; }; - 911460E9E1D764F7B156E18A94819507 /* check_gcp_environment_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_linux.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc; sourceTree = ""; }; + 911460E9E1D764F7B156E18A94819507 /* 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 = ""; }; 9124B20595A514A26E0E3DA0D809FA75 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 91403BCF3BEB47BAB571115894508A85 /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_conf.c; path = src/crypto/x509v3/v3_conf.c; sourceTree = ""; }; + 91403BCF3BEB47BAB571115894508A85 /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_conf.c; path = src/crypto/x509v3/v3_conf.c; sourceTree = ""; }; 915C738A6579A3F2F59625F24ED5A04E /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 9174CF0C5EF191C21D645C89DC9A15F4 /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_genn.c; path = src/crypto/x509v3/v3_genn.c; sourceTree = ""; }; - 9177571BE7454B91753C83EB97D2EE57 /* load_bundle_task.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_bundle_task.cc; path = Firestore/core/src/api/load_bundle_task.cc; sourceTree = ""; }; - 91B2A42FD20545A1F0402BE218D11D34 /* resolved_address_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolved_address_internal.cc; path = src/core/lib/iomgr/event_engine/resolved_address_internal.cc; sourceTree = ""; }; - 91BB38196304FAAA1B318D6220C17D9F /* byte_stream_cpp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream_cpp.cc; path = Firestore/core/src/util/byte_stream_cpp.cc; sourceTree = ""; }; + 9174CF0C5EF191C21D645C89DC9A15F4 /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_genn.c; path = src/crypto/x509v3/v3_genn.c; sourceTree = ""; }; + 9177571BE7454B91753C83EB97D2EE57 /* 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 = ""; }; + 91B2A42FD20545A1F0402BE218D11D34 /* resolved_address_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolved_address_internal.cc; path = src/core/lib/iomgr/event_engine/resolved_address_internal.cc; sourceTree = ""; }; + 91BB38196304FAAA1B318D6220C17D9F /* 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 = ""; }; 91C05435E731F294186DBDF9A1C86D2B /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - 91D00B671669A00EB739F6894916C79B /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; + 91D00B671669A00EB739F6894916C79B /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; 91DBCA29C23EC9E70C6CF70FBF6D445F /* 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 = ""; }; 92000153CD73F7FC2DBAB4AB708269F3 /* FirebaseFirestore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseFirestore; path = FirebaseFirestore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 921A45EC6E7685EE8DEF303A9074BF72 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; 9240624901210D4C21AFB04C54534C7B /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; - 925BA70FA70A630DB8F7F22EC2019ACF /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; + 925BA70FA70A630DB8F7F22EC2019ACF /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; 925C014D54BB986A19735A906FE4E969 /* 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 = ""; }; - 926328329625E95604DF09C0249E122B /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.c"; sourceTree = ""; }; - 9278345F85F2E616B43C10F4D8D79E22 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; - 92A1549ADA2260C3ECC7D1153E1892B0 /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lb_policy_registry.cc; path = src/core/ext/filters/client_channel/lb_policy_registry.cc; sourceTree = ""; }; + 926328329625E95604DF09C0249E122B /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.c"; sourceTree = ""; }; + 9278345F85F2E616B43C10F4D8D79E22 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; + 92A1549ADA2260C3ECC7D1153E1892B0 /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy_registry.cc; path = src/core/ext/filters/client_channel/lb_policy_registry.cc; sourceTree = ""; }; 92AF8E96F7C3EB355BAE1B4CC4875012 /* string_constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_constant.h; path = absl/strings/internal/string_constant.h; sourceTree = ""; }; 92CF45BA77F86CCD6819B0D98F0C0BAD /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/impl/codegen/method_handler.h; sourceTree = ""; }; 930637C627FE0278A59ED9A4B6804A00 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - 930BD135D5F2536283B699A4A89B3642 /* remote_objc_bridge.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_objc_bridge.cc; path = Firestore/core/src/remote/remote_objc_bridge.cc; sourceTree = ""; }; + 930BD135D5F2536283B699A4A89B3642 /* 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 = ""; }; 9310962558BBBD83898390BF377C5EA9 /* FIRSecureTokenService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenService.h; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.h; sourceTree = ""; }; 93236C3E3F4C8B59F9D23B90083E88ED /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/des/internal.h; sourceTree = ""; }; 932C4CE365D2907D95A111EA2F0CB107 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; 93340BEC2EE5028AE4D77EB7A5353190 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/impl/codegen/byte_buffer.h; sourceTree = ""; }; 9343A462382C988ACE502EDBDEF7BD01 /* thread_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_manager.h; path = src/cpp/thread_manager/thread_manager.h; sourceTree = ""; }; - 93552E3D46EBC5AC5E6FD12E94BAF86A /* frame_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_settings.cc; path = src/core/ext/transport/chttp2/transport/frame_settings.cc; sourceTree = ""; }; - 9360FB5B4510F108C95F0124171BCADF /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; + 93552E3D46EBC5AC5E6FD12E94BAF86A /* 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 = ""; }; + 9360FB5B4510F108C95F0124171BCADF /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; 936BA4CAF22250B9C86D349C8466FBF3 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = absl/container/internal/common.h; sourceTree = ""; }; 937A60F9F763A70371066B2C21760323 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; 939004C04998985A7719C668EEBF007A /* trust_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trust_token.h; path = src/include/openssl/trust_token.h; sourceTree = ""; }; @@ -14786,315 +14786,315 @@ 93AABB1283FC0BF0C130CAAED5CA2E00 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; 93B49580A9E0B5869DBBD970105CF082 /* 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 = ""; }; 93B52EFCB10325914C42FD4CE7C2EEB6 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - 93BBC3402C79F0310D07B56F0E79E803 /* firestore.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/firestore.nanopb.cc; sourceTree = ""; }; + 93BBC3402C79F0310D07B56F0E79E803 /* 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 = ""; }; 93CAE6005958CC133C4263A5AA707DAF /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; 93D3CA6CD5CD08D0835E1A62BA8E4A01 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; 93E48864D26805719298E22359DEEE0A /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = third_party/re2/util/mutex.h; sourceTree = ""; }; - 93E51131E89E282662C4268F2360825A /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; - 93F3D52C2DF0FC57942B889E9D3CD7C9 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; + 93E51131E89E282662C4268F2360825A /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; + 93F3D52C2DF0FC57942B889E9D3CD7C9 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; 9400B2FE3A8884771EA2BAF46AFB2B41 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/dsa/internal.h; sourceTree = ""; }; 9403116104444C696EE6FB86563BFE32 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; 941DA661277F79EA7FD300E4F9DB6ACE /* 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 = ""; }; - 9455CE2666E6C815644C967E7B1DCEBF /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; - 9467481F7E2603037ADC577E208A3BC7 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ring_hash.cc; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc; sourceTree = ""; }; + 9455CE2666E6C815644C967E7B1DCEBF /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; + 9467481F7E2603037ADC577E208A3BC7 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ring_hash.cc; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc; sourceTree = ""; }; 946AA4CDEA08864E41DBA020331B8FB3 /* histogram.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram.h; path = util/histogram.h; sourceTree = ""; }; - 946ECDA26094B9C25497FB8DC4AD10ED /* security.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.c"; sourceTree = ""; }; + 946ECDA26094B9C25497FB8DC4AD10ED /* security.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.c"; sourceTree = ""; }; 948215A8233C514A246E79A56982434C /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 948646B1AFF25DA5C7BE174D5E915130 /* cord_rep_btree.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree.cc; path = absl/strings/internal/cord_rep_btree.cc; sourceTree = ""; }; + 948646B1AFF25DA5C7BE174D5E915130 /* 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 = ""; }; 94924A2F675D4906C7761445B7B8CF7D /* FIRMultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactor.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactor.m; sourceTree = ""; }; 94C5F1C21EE4F9D8ABD9A08D695571AB /* GDTCORFlatFileStorage+Promises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORFlatFileStorage+Promises.h"; path = "GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h"; sourceTree = ""; }; - 94C69508ED2E514CC2067BCD234BD4AA /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table.cc; path = table/table.cc; sourceTree = ""; }; + 94C69508ED2E514CC2067BCD234BD4AA /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table.cc; path = table/table.cc; sourceTree = ""; }; 94D67BDCE3A36359AC4F1B678B390EC8 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/asn1/internal.h; sourceTree = ""; }; 950D283A1E1DB9EEEBEF9281504677CB /* 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 = ""; }; - 9529D7F9B12E9292160BCBEDCDEC6DFF /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; - 953581EFDC6C8F5FF62438557AF04192 /* alts_frame_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_frame_protector.cc; path = src/core/tsi/alts/frame_protector/alts_frame_protector.cc; sourceTree = ""; }; - 953A8091CE0C592123D1B5B837034795 /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; + 9529D7F9B12E9292160BCBEDCDEC6DFF /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; + 953581EFDC6C8F5FF62438557AF04192 /* 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 = ""; }; + 953A8091CE0C592123D1B5B837034795 /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; 9554181735D19BFA24015081EDB0CE4D /* cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cache.h; path = include/leveldb/cache.h; sourceTree = ""; }; - 9560E302186CDFDDE1DB54E444160ED3 /* sockaddr_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_utils.cc; path = src/core/lib/address_utils/sockaddr_utils.cc; sourceTree = ""; }; + 9560E302186CDFDDE1DB54E444160ED3 /* 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 = ""; }; 9574B180021F11527759A92483EEEAF7 /* hrss.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hrss.h; path = src/include/openssl/hrss.h; sourceTree = ""; }; 95823E1ED04B0D9FE33CECFFD1DCDA55 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/support/status.h; sourceTree = ""; }; - 9588A547B728A1D2939D655BAD7F0544 /* string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c"; sourceTree = ""; }; - 958D65B217E5EC5E56405E2A89A567E0 /* grpc_service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_service.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c"; sourceTree = ""; }; - 9592C8F1871303A56760B4709A60B134 /* basic_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = basic_timers.cc; path = src/core/lib/profiling/basic_timers.cc; sourceTree = ""; }; + 9588A547B728A1D2939D655BAD7F0544 /* string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c"; sourceTree = ""; }; + 958D65B217E5EC5E56405E2A89A567E0 /* grpc_service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c"; sourceTree = ""; }; + 9592C8F1871303A56760B4709A60B134 /* basic_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = basic_timers.cc; path = src/core/lib/profiling/basic_timers.cc; sourceTree = ""; }; 95A754F02FF7A7672AC0B2EB718D939A /* 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 = ""; }; - 95BE7705F6D2E744FF8423ACFF85F920 /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; + 95BE7705F6D2E744FF8423ACFF85F920 /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; 95C9C6D9EBF5A41B773C37EC958353DC /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; 95D6D17DF99D5EE2E2A39F06166EE31F /* cordz_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_handle.h; path = absl/strings/internal/cordz_handle.h; sourceTree = ""; }; 95D8B10D97F05A7835C085B0EF2B03B3 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; 95E810A34AFED77E56C2233E4B2FDDFE /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - 96015440687E795360D3B0316D01F281 /* cpu-arm-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-arm-linux.c"; path = "src/crypto/cpu-arm-linux.c"; sourceTree = ""; }; + 96015440687E795360D3B0316D01F281 /* 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 = ""; }; 9603979BD46FE61BDE7CEB10C6AD4DCE /* uv-common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "uv-common.h"; path = "src/uv-common.h"; sourceTree = ""; }; - 9616CD6E320D3063B973DFE071020991 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; + 9616CD6E320D3063B973DFE071020991 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; 965F7CB033AB2E3BADDF45577EE78429 /* ec_key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec_key.h; path = src/include/openssl/ec_key.h; sourceTree = ""; }; 966B5FA65A5FAA0851CBDF158F75DD1F /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; - 966E52D69FD3F5346CCCCA92BF9380C3 /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; + 966E52D69FD3F5346CCCCA92BF9380C3 /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; 96723ED02F57A6A85C05000131EB5BBC /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; 968DE242C1A9C9C4A61776D3BFE06487 /* generic_stub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generic_stub.h; path = include/grpcpp/generic/generic_stub.h; sourceTree = ""; }; - 968FF90945CF7D58958F29673235DBEB /* file_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = file_external_account_credentials.cc; path = src/core/lib/security/credentials/external/file_external_account_credentials.cc; sourceTree = ""; }; + 968FF90945CF7D58958F29673235DBEB /* 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 = ""; }; 9694BCD69FE6E3355E49867C94915517 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; 96B990F482D91B469D396DBF9C358702 /* FIRMultiFactorSession+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorSession+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"; sourceTree = ""; }; - 96C66E47752B8C1238D754CF11A9F93B /* range.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = range.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.c"; sourceTree = ""; }; + 96C66E47752B8C1238D754CF11A9F93B /* range.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.c"; sourceTree = ""; }; 96DE2286415A052344C0F6506BB6EC17 /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = absl/strings/internal/utf8.h; sourceTree = ""; }; - 96EE001538F3FBB6B876119092EF95CC /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; + 96EE001538F3FBB6B876119092EF95CC /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; 96F270D4CF013B47C1BF78D821D60FA1 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; 97224898A8E89C03905068F65693EE03 /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; - 972561565E92A4BA5A5C6C1509292AD7 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_credentials.cc; path = src/core/lib/security/credentials/xds/xds_credentials.cc; sourceTree = ""; }; + 972561565E92A4BA5A5C6C1509292AD7 /* 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 = ""; }; 9725AAB7A869B143B3B6D3B3FECD790C /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; 9764EE514981202FA1A4B0A4D1D7C3F3 /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; 976C5F9FD1C0DE156064DEEE69394B2B /* 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 = ""; }; - 97A2526456E50D10C83586F355E84D0D /* resolve_address_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_custom.cc; path = src/core/lib/iomgr/resolve_address_custom.cc; sourceTree = ""; }; + 97A2526456E50D10C83586F355E84D0D /* resolve_address_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_custom.cc; path = src/core/lib/iomgr/resolve_address_custom.cc; sourceTree = ""; }; 97DA45B8BA1834AD8D49573C31C09F6F /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; 97DE13C4E349D8FB18F0F3CB3193965C /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; 97E8C20555D426115DE04AB28B27D69D /* 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 = ""; }; - 9821E5906EADA510A7B428FF76438DC8 /* event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_engine_factory.cc; path = src/core/lib/event_engine/event_engine_factory.cc; sourceTree = ""; }; + 9821E5906EADA510A7B428FF76438DC8 /* event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_engine_factory.cc; path = src/core/lib/event_engine/event_engine_factory.cc; sourceTree = ""; }; 98234679E486BCE9D8751FD1C81A41F9 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/internal/hash.h; sourceTree = ""; }; - 98341E91CA9FA8B8C50C0EA6B878F943 /* local_view_changes.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_view_changes.cc; path = Firestore/core/src/local/local_view_changes.cc; sourceTree = ""; }; + 98341E91CA9FA8B8C50C0EA6B878F943 /* 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 = ""; }; 9835A1F845D7E36E879422D7FAA7CCC3 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; - 98442E5BC3671841C2AB4BA613701840 /* call_log_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_log_batch.cc; path = src/core/lib/surface/call_log_batch.cc; sourceTree = ""; }; + 98442E5BC3671841C2AB4BA613701840 /* 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 = ""; }; 9844C2549A22396640A5E55202C218E4 /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; - 986D98538B575CF72D63387538891DBB /* wrappers.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.upb.c; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.c"; sourceTree = ""; }; - 98971124D8175C09D02E5D0DC663FDAC /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; + 986D98538B575CF72D63387538891DBB /* wrappers.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upb.c; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.c"; sourceTree = ""; }; + 98971124D8175C09D02E5D0DC663FDAC /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; 9897228EF3C68866C58B48DDA6C763E8 /* discrete_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discrete_distribution.h; path = absl/random/discrete_distribution.h; sourceTree = ""; }; 98A39C6B3C8330782B999C80DFA9DF9B /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; 98A4B3AEBC039061423903FF3DF79250 /* strutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strutil.h; path = third_party/re2/util/strutil.h; sourceTree = ""; }; 98B0008F4793AB277EB46B1A6D539153 /* memory_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_request.h; path = include/grpc/event_engine/memory_request.h; sourceTree = ""; }; - 98C9ED461B398EC3B0DC4D473566E8B1 /* leveldb_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_target_cache.cc; path = Firestore/core/src/local/leveldb_target_cache.cc; sourceTree = ""; }; + 98C9ED461B398EC3B0DC4D473566E8B1 /* 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 = ""; }; 98D605D86226A52F8A71732FAF42DEF3 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = src/include/openssl/span.h; sourceTree = ""; }; - 98E19F5DDBD7553791BE7FBB55EAAF19 /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; - 98FA2A9E36953720EF63E0E6C7674964 /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; + 98E19F5DDBD7553791BE7FBB55EAAF19 /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; + 98FA2A9E36953720EF63E0E6C7674964 /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; 98FB3485C23B4EFE99112C39254C58CD /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; 990EAF86A1B5E6B39C833E81ED66F645 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; 99196ECA0D094F3B960C9D145B4A096F /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = src/include/openssl/e_os2.h; sourceTree = ""; }; 991A355D55796AB7BB69E454A4B6E48F /* 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 = ""; }; 9935419A6C0E6B1EAD44499AB3D4984C /* two_level_iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = two_level_iterator.h; path = table/two_level_iterator.h; sourceTree = ""; }; - 993D19EAC26F3C8A5D486CBD92C5192D /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; + 993D19EAC26F3C8A5D486CBD92C5192D /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; 99529AFB53A046FB2DB3E3A5967BA79F /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; - 996E652CEC50B42968C0FF94701A3804 /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; - 9972D2B84D50B5AC97D2A5CDB225F53A /* bootstrap.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bootstrap.upb.c; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c"; sourceTree = ""; }; + 996E652CEC50B42968C0FF94701A3804 /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; + 9972D2B84D50B5AC97D2A5CDB225F53A /* bootstrap.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upb.c; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c"; sourceTree = ""; }; 9982753F35141DA7C6C7223EC7AB08BE /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 998690A270B8FE55E3EC79A3B9FF8641 /* grpc_tls_certificate_distributor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_distributor.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc; sourceTree = ""; }; - 9988F94F0496F3AD8CB87A58EF807E8D /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_plugin.cc; path = src/core/ext/filters/client_channel/client_channel_plugin.cc; sourceTree = ""; }; + 998690A270B8FE55E3EC79A3B9FF8641 /* 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 = ""; }; + 9988F94F0496F3AD8CB87A58EF807E8D /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_plugin.cc; path = src/core/ext/filters/client_channel/client_channel_plugin.cc; sourceTree = ""; }; 99990B79859B750223B653E08EBEB3F7 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; - 999BC742BE34501113ADB53F17174735 /* dns_resolver_selection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver_selection.cc; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc; sourceTree = ""; }; - 99A86B621B15BFF8685D7AB3AB6F541D /* api_listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api_listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c"; sourceTree = ""; }; + 999BC742BE34501113ADB53F17174735 /* dns_resolver_selection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_selection.cc; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc; sourceTree = ""; }; + 99A86B621B15BFF8685D7AB3AB6F541D /* api_listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c"; sourceTree = ""; }; 99A9C05F900A594BDEBF20B2BBDF9D97 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - 99C2E67575ACD53548D30A6942AFEF42 /* percent.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = percent.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.c"; sourceTree = ""; }; - 99CA1A6009A9DCE15FA186C735E652D9 /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; - 99CF5F7C50B01AB89627F004A27781C7 /* google_default_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = google_default_credentials.cc; path = src/core/lib/security/credentials/google_default/google_default_credentials.cc; sourceTree = ""; }; - 99D0D3AAB534D43C7EEB45DBD581E44C /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; - 99D793024EDD5BB6A78FF667AB3516AC /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; - 99E29A909A749D0B0FD23F47A8748436 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; + 99C2E67575ACD53548D30A6942AFEF42 /* percent.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.c"; sourceTree = ""; }; + 99CA1A6009A9DCE15FA186C735E652D9 /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; + 99CF5F7C50B01AB89627F004A27781C7 /* 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 = ""; }; + 99D0D3AAB534D43C7EEB45DBD581E44C /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; + 99D793024EDD5BB6A78FF667AB3516AC /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; + 99E29A909A749D0B0FD23F47A8748436 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; 99E69B26388C023E3672467A76CCED67 /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; 99EBB25D785FCBCCE4D4D9F97E432A25 /* FIRMultiFactorResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorResolver.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorResolver.h; sourceTree = ""; }; 9A048F6F5A158C9E6ABC79AE89F2232E /* core_codegen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen.h; path = include/grpcpp/impl/codegen/core_codegen.h; sourceTree = ""; }; - 9A1360F8E69155D476DD612468023F94 /* fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fuchsia.c; path = src/crypto/rand_extra/fuchsia.c; sourceTree = ""; }; + 9A1360F8E69155D476DD612468023F94 /* fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fuchsia.c; path = src/crypto/rand_extra/fuchsia.c; sourceTree = ""; }; 9A1AC7F30C8EB64FE27E72D5AE4658AF /* NSData+FIRBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+FIRBase64.h"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.h"; sourceTree = ""; }; - 9A32E86A187F522D01C7A8D7BC727210 /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; + 9A32E86A187F522D01C7A8D7BC727210 /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; 9A3A1282A2E933B905C7D1C5054F0D08 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = src/include/openssl/ec.h; sourceTree = ""; }; 9A42DA666AADED2E2544A554A7B7AFEB /* cord_rep_ring_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring_reader.h; path = absl/strings/internal/cord_rep_ring_reader.h; sourceTree = ""; }; 9A5993E01767ACEE9738FF31F4AA2AA1 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; - 9A745238172ED92D4CEFF0C0CF78092B /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; - 9A77FF1E67E9A96C8E729CB4935B56F1 /* cpu-intel.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-intel.c"; path = "src/crypto/cpu-intel.c"; sourceTree = ""; }; + 9A745238172ED92D4CEFF0C0CF78092B /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; + 9A77FF1E67E9A96C8E729CB4935B56F1 /* cpu-intel.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-intel.c"; path = "src/crypto/cpu-intel.c"; sourceTree = ""; }; 9A7A7D37537D94D33A37B443D4732AA9 /* 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 = ""; }; - 9A7A8C4E3175798BFBEAE05928BF686E /* xds_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_server_credentials.cc; path = src/cpp/server/xds_server_credentials.cc; sourceTree = ""; }; + 9A7A8C4E3175798BFBEAE05928BF686E /* 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 = ""; }; 9A7F3BB78291C139F060A61186E21170 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; 9A8902AAE8256B1B28A69B8B8D0C6518 /* chacha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = src/include/openssl/chacha.h; sourceTree = ""; }; 9A9B338A2651664FA7B64850744F91A5 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - 9A9E2991785F4124A0E3EDBC1221B5AD /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread.c; path = src/unix/thread.c; sourceTree = ""; }; - 9A9FC5BC956B95C077D810572ADB1096 /* sync_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_windows.cc; path = src/core/lib/gpr/sync_windows.cc; sourceTree = ""; }; - 9AD14038C725088873BF6D46BB06583F /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; + 9A9E2991785F4124A0E3EDBC1221B5AD /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/unix/thread.c; sourceTree = ""; }; + 9A9FC5BC956B95C077D810572ADB1096 /* sync_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_windows.cc; path = src/core/lib/gpr/sync_windows.cc; sourceTree = ""; }; + 9AD14038C725088873BF6D46BB06583F /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; 9AD19B658F379932BE01372F570E5D64 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; 9ADD56DECB0C96FC080968073B241E02 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 9AE172C90D185A9FBDBAAF64606089AA /* alts_unseal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_unseal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc; sourceTree = ""; }; - 9AF1C503AD3D4A904AA918CF09D40A9F /* cpu_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_linux.cc; path = src/core/lib/gpr/cpu_linux.cc; sourceTree = ""; }; + 9AE172C90D185A9FBDBAAF64606089AA /* 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 = ""; }; + 9AF1C503AD3D4A904AA918CF09D40A9F /* cpu_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_linux.cc; path = src/core/lib/gpr/cpu_linux.cc; sourceTree = ""; }; 9B3704F22BF62630024FD265BDE8BC9F /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h; sourceTree = ""; }; - 9B3B5492C6BD9C894299ED99B20A54CA /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; + 9B3B5492C6BD9C894299ED99B20A54CA /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; 9B5477454A0680070AB8EBB2B5792118 /* FIRGameCenterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthProvider.m; sourceTree = ""; }; 9B5663C982E680F48717C1421DE15D6F /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; 9B756D9A2C31F832C76F825485E51440 /* 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 = ""; }; 9BACB101171EAACC85C241DDC813ED9F /* gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-C++-Info.plist"; sourceTree = ""; }; - 9BBADFFFFD158986AED8859EA96B6EE3 /* binder_constants.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_constants.cc; path = src/core/ext/transport/binder/wire_format/binder_constants.cc; sourceTree = ""; }; - 9BCBE3146C591FB9B610D094A393F919 /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; - 9BCFD6C0C19E74A5FAEB69E748A33728 /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; + 9BBADFFFFD158986AED8859EA96B6EE3 /* 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 = ""; }; + 9BCBE3146C591FB9B610D094A393F919 /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; + 9BCFD6C0C19E74A5FAEB69E748A33728 /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; 9BD5515A5433C313CEFF12AC90FD080A /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; 9BDA870F6A997E924EC4374F49264977 /* invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = invoke.h; path = absl/base/internal/invoke.h; sourceTree = ""; }; - 9BEEEEDD134FD7A4B7EE339EB8085D4A /* hpack_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_parser.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser.cc; sourceTree = ""; }; - 9C14CE566BD41CAD85EEE1A4C32A4739 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_posix.cc; path = src/core/lib/gpr/env_posix.cc; sourceTree = ""; }; + 9BEEEEDD134FD7A4B7EE339EB8085D4A /* 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 = ""; }; + 9C14CE566BD41CAD85EEE1A4C32A4739 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_posix.cc; path = src/core/lib/gpr/env_posix.cc; sourceTree = ""; }; 9C18F8BAB40B71BCFA65A6DB85571109 /* FIRGoogleAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthProvider.m; sourceTree = ""; }; - 9C33E4BF618DE2E532A00F94FFE3E2D1 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; + 9C33E4BF618DE2E532A00F94FFE3E2D1 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; 9C4568144909C2F6D106A7ACD175791C /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; 9C4869AB3A39CC22A47E4160BAC0CB15 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - 9C4BE9962FEB74EDF589C4ADB20AA4BB /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lb_policy.cc; path = src/core/ext/filters/client_channel/lb_policy.cc; sourceTree = ""; }; + 9C4BE9962FEB74EDF589C4ADB20AA4BB /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy.cc; path = src/core/ext/filters/client_channel/lb_policy.cc; sourceTree = ""; }; 9C513110E8BA5300C81D117B6D72BCB0 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; 9C56A8DE9CC940E70F89D1C12AD373D0 /* abseil-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-umbrella.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; }; - 9C813F8A997726E718F1618490583249 /* server_timestamp_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_timestamp_util.cc; path = Firestore/core/src/model/server_timestamp_util.cc; sourceTree = ""; }; + 9C813F8A997726E718F1618490583249 /* 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 = ""; }; 9C88097B53DBFC74DE522D3A6631CAED /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; - 9C9DF06BCF4E83237FE65A93FB3B4884 /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; + 9C9DF06BCF4E83237FE65A93FB3B4884 /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; 9CB347B060AEE9899E9C7B094FEA5BCD /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; 9CE64C918297E52F0F66F10B8F140BF5 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - 9CE9EF99063E82F0C81A8357E0AF4DEC /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_resolver.cc; path = src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; + 9CE9EF99063E82F0C81A8357E0AF4DEC /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_resolver.cc; path = src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; 9CF6338EB9CC49F5A00F849713258C5E /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/service_type.h; sourceTree = ""; }; 9D1E1F5BD74F47BC088CF0EE7695EF0A /* FIROAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential.m; sourceTree = ""; }; - 9D35367D95FD068DB4B92945AF8370E1 /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; + 9D35367D95FD068DB4B92945AF8370E1 /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; 9D365C16CAA0B8C6282A3774A4E36C38 /* 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 = ""; }; 9D56EE2C10C9213AD3996334DF7ED268 /* FIRSignUpNewUserRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.h; sourceTree = ""; }; 9D5E89E17E28F4CA4D712B3BE50E63D5 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - 9D65CAD60522E81DABD5E36486DBCDCC /* inproc_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = inproc_plugin.cc; path = src/core/ext/transport/inproc/inproc_plugin.cc; sourceTree = ""; }; + 9D65CAD60522E81DABD5E36486DBCDCC /* 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 = ""; }; 9D8CE1456274AE8409FB524F00E978C0 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = include/uv/threadpool.h; sourceTree = ""; }; - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DA0548A6EB21AC934BE34C725B61F00 /* empty.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.upb.c; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.c"; 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; }; + 9DA0548A6EB21AC934BE34C725B61F00 /* empty.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upb.c; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.c"; sourceTree = ""; }; 9DA0628D3DC2B1B1EC1E2B622F1B0B97 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; 9DA8107F067C6979ADF3814FD6C4DF40 /* FIRAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuth.m; path = FirebaseAuth/Sources/Auth/FIRAuth.m; sourceTree = ""; }; 9DAC136197FF32241C217A185AE9D3EC /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 9DB399ABB45D98928AE439A4EAD697EB /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; + 9DB399ABB45D98928AE439A4EAD697EB /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; 9DB47FE0D474930DF72A68D3B6F6E9EB /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; 9DC4C9F0C148108AF3970F58AB84F494 /* 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 = ""; }; 9DC5941767E8FD037EE9D502A9F3EF80 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/support/client_interceptor.h; sourceTree = ""; }; 9DED17414A8AF61586F76653428F39B8 /* unaligned_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unaligned_access.h; path = absl/base/internal/unaligned_access.h; sourceTree = ""; }; - 9E107C47ED42260DD000F5A0C92FB288 /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; - 9E27BC682ACD3CEF13F6C23E2283D152 /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; + 9E107C47ED42260DD000F5A0C92FB288 /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; + 9E27BC682ACD3CEF13F6C23E2283D152 /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; 9E49949DF85BAAA58610162F286B233C /* FIRMultiFactorSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorSession.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession.m; sourceTree = ""; }; - 9E50A1D5AA54221A1BBB7FD954562971 /* low_level_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = low_level_hash.cc; path = absl/hash/internal/low_level_hash.cc; sourceTree = ""; }; - 9E5B7AAC1336D406BE31037E5441A12B /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; - 9E6391EA8F6B7CB2142584D4C462A3A3 /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; - 9E656B5E025CF677BA2290063704AF31 /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; + 9E50A1D5AA54221A1BBB7FD954562971 /* 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 = ""; }; + 9E5B7AAC1336D406BE31037E5441A12B /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; + 9E6391EA8F6B7CB2142584D4C462A3A3 /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; + 9E656B5E025CF677BA2290063704AF31 /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; 9E6BFFA9D269D9E1F76D8E3EB80AA2AD /* waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter.h; path = absl/synchronization/internal/waiter.h; sourceTree = ""; }; 9E7A22249F18452FC677E82BFA9F8256 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; 9E84782180234D80DDAA46771D10D223 /* 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 = ""; }; 9E97BF1A61EDA6EE0C6161ACC6C91271 /* FIRStartMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.m; sourceTree = ""; }; - 9EA31E7DD758C02D9539090885F535D0 /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_load_reporting_filter.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; + 9EA31E7DD758C02D9539090885F535D0 /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_load_reporting_filter.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; 9EA4C37FFC9BB6F490FF72042F5965DA /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = src/include/openssl/bio.h; sourceTree = ""; }; 9EBEF183D1561CEC4392816F0B6B7C13 /* 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 = ""; }; - 9EBEF4EBDCB00B8CFCBE12997A5C4354 /* semantic_version.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = semantic_version.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c"; sourceTree = ""; }; - 9EC5C54A6994BCDB5029DFB45D66AEDE /* httpcli_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = httpcli_security_connector.cc; path = src/core/lib/http/httpcli_security_connector.cc; sourceTree = ""; }; - 9EC7C9CDF520CEEBB66F272EEF7CB07E /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; - 9EE0EB330B5F4A1F324D863C3AF5B592 /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; + 9EBEF4EBDCB00B8CFCBE12997A5C4354 /* semantic_version.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c"; sourceTree = ""; }; + 9EC5C54A6994BCDB5029DFB45D66AEDE /* 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 = ""; }; + 9EC7C9CDF520CEEBB66F272EEF7CB07E /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; + 9EE0EB330B5F4A1F324D863C3AF5B592 /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; 9EE984C6FFA08D78838F9D8AB59D43F1 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; 9EEF49E540505AA014B17FEC5135D836 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; 9EF2476AB649C02AB753751214A96043 /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; 9EFC2DC0949691ECF6348F58BF217772 /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; - 9EFE22F6E0E0B54AFE8CE1C1D031B6A6 /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; + 9EFE22F6E0E0B54AFE8CE1C1D031B6A6 /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; 9F018035A19CFC543F3B5AE22068BBB8 /* 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 = ""; }; 9F0381DD468E37FB75F272704D445806 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - 9F4C7F33E74A38733C463A079FC14396 /* pollset_set_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set_custom.cc; path = src/core/lib/iomgr/pollset_set_custom.cc; sourceTree = ""; }; + 9F4C7F33E74A38733C463A079FC14396 /* pollset_set_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set_custom.cc; path = src/core/lib/iomgr/pollset_set_custom.cc; sourceTree = ""; }; 9F685B60BDAE2BD5F19836424C408CD4 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; sourceTree = ""; }; - 9F7C4BA109A1D722C7E7DD56A694AF4C /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; + 9F7C4BA109A1D722C7E7DD56A694AF4C /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; 9F8955684B1A4A09A1A5E59199EF40E9 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; 9F8BAE0E68120AB138691AA34E6652C3 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 9FB4A7CE6B95676BD9DE1C91B045ACBC /* leveldb_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_index_manager.cc; path = Firestore/core/src/local/leveldb_index_manager.cc; sourceTree = ""; }; + 9FB4A7CE6B95676BD9DE1C91B045ACBC /* 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 = ""; }; 9FC91767C0F0E6E5BDF96AA21B918E32 /* FirebaseFirestore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseFirestore-Info.plist"; sourceTree = ""; }; 9FDC55221D6E3CC0851C06AEBF1B6C8E /* 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 = ""; }; 9FED9539579A679A149C62EEB6E3C094 /* 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 = ""; }; 9FF43D78A918D7940A31B8373CDDB1CC /* prefilter_tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter_tree.h; path = third_party/re2/re2/prefilter_tree.h; sourceTree = ""; }; - A0090069E44E1463B0D85EDA9F28EFDC /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; + A0090069E44E1463B0D85EDA9F28EFDC /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; A0154A101698E589E1B1B631EB736812 /* 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 = ""; }; - A0203E352DB193475DC72FD6DB884C32 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; + A0203E352DB193475DC72FD6DB884C32 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; A0372D9E5AC53789D06A86098177EEED /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; A043C3A05AF6ED8594DD9916B685B94D /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; - A0612DD7EE2C36175A1AA90AF6F8D4AA /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; + A0612DD7EE2C36175A1AA90AF6F8D4AA /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; A075502B0971B7CA755D892DF582AB78 /* FIRDeleteAccountRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.h; sourceTree = ""; }; A091525807673B1231450A472D4B1267 /* prefilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter.h; path = third_party/re2/re2/prefilter.h; sourceTree = ""; }; - A0A33EA6D08F5B6D726F20B3FEBCD8FD /* resolver_result_parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver_result_parsing.cc; path = src/core/ext/filters/client_channel/resolver_result_parsing.cc; sourceTree = ""; }; - A0A557D90815FEAC898E3BBCAE0D6167 /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; - A0AA05314B8E7F9D079E203C6A26FCAF /* hashtablez_sampler_force_weak_definition.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hashtablez_sampler_force_weak_definition.cc; path = absl/container/internal/hashtablez_sampler_force_weak_definition.cc; sourceTree = ""; }; - A0AB6AE6D2CCC47F08DA0806F70553C6 /* http.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http.nanopb.cc; path = Firestore/Protos/nanopb/google/api/http.nanopb.cc; sourceTree = ""; }; - A0C69BFBFCA5CD5C18A86F75037AF1DF /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backup_poller.cc; path = src/core/ext/filters/client_channel/backup_poller.cc; sourceTree = ""; }; - A0E6D8157E71211666EBDF7C5B8A585C /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; + A0A33EA6D08F5B6D726F20B3FEBCD8FD /* resolver_result_parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver_result_parsing.cc; path = src/core/ext/filters/client_channel/resolver_result_parsing.cc; sourceTree = ""; }; + A0A557D90815FEAC898E3BBCAE0D6167 /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; + A0AA05314B8E7F9D079E203C6A26FCAF /* 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 = ""; }; + A0AB6AE6D2CCC47F08DA0806F70553C6 /* 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 = ""; }; + A0C69BFBFCA5CD5C18A86F75037AF1DF /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backup_poller.cc; path = src/core/ext/filters/client_channel/backup_poller.cc; sourceTree = ""; }; + A0E6D8157E71211666EBDF7C5B8A585C /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; A10CE7BE687855CE8651F3515B545B3A /* p256_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64.h; path = src/third_party/fiat/p256_64.h; sourceTree = ""; }; A1107E5BF01847F78DA2700745DA4621 /* memtable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memtable.h; path = db/memtable.h; sourceTree = ""; }; A11FCF074AAB713B048A641C6C88975F /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = include/grpcpp/channel.h; sourceTree = ""; }; A135513E6914703307777A672262B80F /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - A14C379D092139FDCA1B28FC4240E5E1 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c"; sourceTree = ""; }; + A14C379D092139FDCA1B28FC4240E5E1 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c"; sourceTree = ""; }; A15DF5B35AFB3F9630D58CB4EA2893AB /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; A16C986E58C4D4790A01AD205F1C62D9 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - A19A4DBBB48441280DD05AF5A59904BF /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.c"; sourceTree = ""; }; + A19A4DBBB48441280DD05AF5A59904BF /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.c"; sourceTree = ""; }; A1AFF2F47D853E17885D2F382D5B391F /* FIRAuthGlobalWorkQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthGlobalWorkQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.m; sourceTree = ""; }; - A1B6C5F8DBAC200371CF3B2610CA4650 /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; - A1C07E68D4709890E188A735AB158086 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; + A1B6C5F8DBAC200371CF3B2610CA4650 /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; + A1C07E68D4709890E188A735AB158086 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; A1C0E9DD7973D516B834F0D05357E4E6 /* 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 = ""; }; - A1D0E07D29D909DC36EF28E62B54C614 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c"; sourceTree = ""; }; + A1D0E07D29D909DC36EF28E62B54C614 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c"; sourceTree = ""; }; A1D22D6731CA71E045964FABEF3BEFAB /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - A1D289E4B6273605034E98499C47A590 /* xds_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_certificate_provider.cc; path = src/core/ext/xds/xds_certificate_provider.cc; sourceTree = ""; }; - A20A55B085DEBD64FD6A4D703D6D5CD0 /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; + A1D289E4B6273605034E98499C47A590 /* 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 = ""; }; + A20A55B085DEBD64FD6A4D703D6D5CD0 /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; A214A92A42B23975946F9EE5CB5228DF /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; - A2368298FB75DBE1B86D762ADFDB8EDE /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; + A2368298FB75DBE1B86D762ADFDB8EDE /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; A24B447B954A786A8DA8AF54CA827CAE /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; A250DDC6597003E290FABCD6A7634020 /* FIRSendVerificationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h; sourceTree = ""; }; A266F66161BD06B1A0009D73C4CB9315 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - A292C6FFC9286CA78ED588E91CB94A07 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; + A292C6FFC9286CA78ED588E91CB94A07 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; A2BDA11FC910B0DCCB97474CF682D327 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; A305B8EC7BE1B6DFB330B3DA7B058344 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; A314D3C228735D9F7CAD586E0E88D1D5 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; A319E2848167F302D33704B54E9C1BB9 /* 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 = ""; }; A31FFB39CA5C2873483DFD64F1E75356 /* 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 = ""; }; - A3288A87CEF66B021246F5A3001A6365 /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; + A3288A87CEF66B021246F5A3001A6365 /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; A32A614EDB59E1810E5D358C3DE001C3 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/impl/codegen/sync_custom.h; sourceTree = ""; }; A330A6AF6E4DE3A27FD916DAC0AF18C0 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; A33EE0C16F7BBE321ACAEEA656D09EE2 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; A3572014B13719B064E0C0820F1B40D7 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - A358635C800C1314106163F2032B1D1C /* cpu-ppc64le.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-ppc64le.c"; path = "src/crypto/cpu-ppc64le.c"; sourceTree = ""; }; - A35BF9F813177891C1221FF7B6E1EFA3 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; - A36629E6950ED349411C0194B70BEB88 /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; - A36B4BEDEB17BC89D54D38110051BE8B /* grpc_tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_credentials_options.cc; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc; sourceTree = ""; }; + A358635C800C1314106163F2032B1D1C /* cpu-ppc64le.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-ppc64le.c"; path = "src/crypto/cpu-ppc64le.c"; sourceTree = ""; }; + A35BF9F813177891C1221FF7B6E1EFA3 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; + A36629E6950ED349411C0194B70BEB88 /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; + A36B4BEDEB17BC89D54D38110051BE8B /* 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 = ""; }; A36F1C89CBBFA453DB0B177E19FF84EB /* gRPC-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.debug.xcconfig"; sourceTree = ""; }; - A38A47C5FF6941B440544DC542982694 /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; - A38E6B74E76C605238B5E0961F228A08 /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; + A38A47C5FF6941B440544DC542982694 /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; + A38E6B74E76C605238B5E0961F228A08 /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; A39434E78E6418F535A5C51C30D60571 /* 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 = ""; }; A39F583D65D9ECFC003B2D66C2E7CC3B /* pkcs8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs8.h; path = src/include/openssl/pkcs8.h; sourceTree = ""; }; A3A05BF3541B60D0B0B9BBE0469DC51B /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - A3AB34F81142DFB082834B70783FE229 /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; + A3AB34F81142DFB082834B70783FE229 /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; A3B8C57D4739031520C5CCA6CF873A4F /* 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 = ""; }; A3B9193B02337E4C6399361E55D876F8 /* FirebaseFirestore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseFirestore-umbrella.h"; sourceTree = ""; }; - A3C8FEEC10682E55A9D6201EF28275D7 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; + A3C8FEEC10682E55A9D6201EF28275D7 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; A3D549AA9B0BBF50367D92ECF430330F /* 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 = ""; }; - A423E8F5F0EDF4D36CA45D77AFBDFCD6 /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; + A423E8F5F0EDF4D36CA45D77AFBDFCD6 /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; A42A68A37270D926C25343AE4E625A95 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - A443C7E39A2DE8BA64E26D8242D2176C /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; + A443C7E39A2DE8BA64E26D8242D2176C /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; A45F54B0F7C8C5870CF72806CC6C37E1 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - A4632EECCDDBC00FF8A89DB23C7D800E /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; - A46D6BD081A1DE6301BFF9358093111C /* secure_create_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_create_auth_context.cc; path = src/cpp/common/secure_create_auth_context.cc; sourceTree = ""; }; + A4632EECCDDBC00FF8A89DB23C7D800E /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; + A46D6BD081A1DE6301BFF9358093111C /* 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 = ""; }; A47C09FE9C6851B0C41A5DEF0AE11EC2 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; A48341CBEE573F9AE064E0CC037833B8 /* GDTCORUploadBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadBatch.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h; sourceTree = ""; }; A4879F426982C95E908B0DC4B0B5EE4A /* 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 = ""; }; A493829C65E21C07D91AF4F87EA6C2CB /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - A4A529CED747C68F5DF2F2655FD30CA6 /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; + A4A529CED747C68F5DF2F2655FD30CA6 /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; A4BBBE1B26BB85CE249D843C6DEFC784 /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; - A4BD3D5D2949EA7DAE24682665A60C4D /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; + A4BD3D5D2949EA7DAE24682665A60C4D /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; A4C921B1A372B68D80CD4463811A224C /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; A4D71A3F7964F4CBD250DE3BC54339B7 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/impl/codegen/atm_windows.h; sourceTree = ""; }; A4E17436AFD5BB6F11D2BE7382D1EC24 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; A4F5FD7486731E0F60433F6C2C15AA07 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h; sourceTree = ""; }; A51DA9A47C221DE2090EF57FA1A16CCE /* strip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strip.h; path = absl/strings/strip.h; sourceTree = ""; }; A55767199B2674BA39980F45AB17A379 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - A569E416AEB5DE37366B255AB8FD8EA7 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; - A598D61B75F14E1FB7BDED718B610719 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_client.cc; path = src/core/ext/filters/client_channel/health/health_check_client.cc; sourceTree = ""; }; - A5A25621FE607FF55D8C182BD8B2DE82 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; - A5B2F976074655FA3C46ECC6383AE45A /* float_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = float_conversion.cc; path = absl/strings/internal/str_format/float_conversion.cc; sourceTree = ""; }; + A569E416AEB5DE37366B255AB8FD8EA7 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; + A598D61B75F14E1FB7BDED718B610719 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_client.cc; path = src/core/ext/filters/client_channel/health/health_check_client.cc; sourceTree = ""; }; + A5A25621FE607FF55D8C182BD8B2DE82 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; + A5B2F976074655FA3C46ECC6383AE45A /* 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 = ""; }; A5E74D52AD59FBCC6892FA2B9DE91173 /* version_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_set.h; path = db/version_set.h; sourceTree = ""; }; - A5FF12DB2508C279536226306C092B5C /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; - A6042C751468C19CD9E6F28714C6C383 /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_factory.cc; path = src/core/ext/filters/client_channel/client_channel_factory.cc; sourceTree = ""; }; - A60956DCB23BA71E2EBF485DB58F6EB9 /* slice_intern.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_intern.cc; path = src/core/lib/slice/slice_intern.cc; sourceTree = ""; }; - A637D97158BCCDA36190D250E7E0D300 /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; + A5FF12DB2508C279536226306C092B5C /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; + A6042C751468C19CD9E6F28714C6C383 /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_factory.cc; path = src/core/ext/filters/client_channel/client_channel_factory.cc; sourceTree = ""; }; + A60956DCB23BA71E2EBF485DB58F6EB9 /* slice_intern.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_intern.cc; path = src/core/lib/slice/slice_intern.cc; sourceTree = ""; }; + A637D97158BCCDA36190D250E7E0D300 /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; A6750FB37B2CCF78031E3D09A2A05F51 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - A676A6A1675341F75A6780FF241E92E5 /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; + A676A6A1675341F75A6780FF241E92E5 /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; A6868B58A5965A5AC8A6307D6B06D0A2 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = src/include/openssl/x509_vfy.h; sourceTree = ""; }; - A68DF4B310E5F88FCD5FAE5991D0CB43 /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; + A68DF4B310E5F88FCD5FAE5991D0CB43 /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; A68EA86884D69D502BFE4170135DC461 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; A6AAC288D8B06F235F9538819D512760 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; A6AD12EFCBDC400DF3A8218708542632 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; A6D28A600B0ABBA17A5C9202636BB73B /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; A6D93FF8F756E2DF0E4D0F70786B780E /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - A6FC3CBF51C0704C33A30858817A0B6F /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; + A6FC3CBF51C0704C33A30858817A0B6F /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; A717D22B8ABA4AA45090C343CCF71B65 /* pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool.h; path = src/include/openssl/pool.h; sourceTree = ""; }; A71E7264BCC67FB63EDBC52A55CA956D /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; - A72880DF767EA1F6BEB0EF23FDE047E3 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; + A72880DF767EA1F6BEB0EF23FDE047E3 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; A732803E8CF1E8DAA46F6404CC27507E /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; A74AEEAA35DF022A0436DB697F080F2E /* randen_slow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_slow.h; path = absl/random/internal/randen_slow.h; sourceTree = ""; }; A74F99F5B2B3F4DA94821916777061D4 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; A784040043ADC2DD236E835E5674A71D /* FIRUserMetadata_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata_Internal.h; path = FirebaseAuth/Sources/User/FIRUserMetadata_Internal.h; sourceTree = ""; }; A792C080FAE56896BE34A50BD173F601 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; - A7C0AC51D89C96C1B03EB8A29E743630 /* descriptor.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptor.upb.c; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.c"; sourceTree = ""; }; + A7C0AC51D89C96C1B03EB8A29E743630 /* descriptor.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upb.c; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.c"; sourceTree = ""; }; A7C6FB1722A8E76B4749596C35FEBD15 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; A7C83086694C96D041164D8E6885D927 /* 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 = ""; }; A7E93837DCF69807648A719A28942B13 /* FirebaseAuth-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAuth-Info.plist"; sourceTree = ""; }; @@ -15102,84 +15102,84 @@ A80E88F283CE6125A45C3B9CB42BB3B1 /* graphcycles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = graphcycles.h; path = absl/synchronization/internal/graphcycles.h; sourceTree = ""; }; A814B69D1F85F802438ED668CFDBE5DF /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/internal/variant.h; sourceTree = ""; }; A818395C8B5BDAA1D9592F204FD2B038 /* 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 = ""; }; - A82D46BE4221AD1794F4E23C051CA014 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr.cc; path = src/core/lib/iomgr/event_engine/iomgr.cc; sourceTree = ""; }; + A82D46BE4221AD1794F4E23C051CA014 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr.cc; path = src/core/lib/iomgr/event_engine/iomgr.cc; sourceTree = ""; }; A8399A14109D216FDED870DAF751F428 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; A86B7F7718E3856DCCC9FA5AD5626FEC /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; - A87D2959BC118BB2B56C983CECC7A4A0 /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; + A87D2959BC118BB2B56C983CECC7A4A0 /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; A88CBFC83E1A48C857043DFA10E2653E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; A8B40FABF7C9DC1A6D565AC76543388F /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = src/include/openssl/crypto.h; sourceTree = ""; }; A8D24F79296A85FC3BC27FF65CE24B49 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - A8F15779E33AAE7CD9984F36B19EFD85 /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; + A8F15779E33AAE7CD9984F36B19EFD85 /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; A90769AEF2AC0A5F00D058E4C00F878C /* umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = umbrella.h; path = src/include/openssl/umbrella.h; sourceTree = ""; }; - A9139E951B16A769D99336B2EF472CAC /* grpc_if_nametoindex_unsupported.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_if_nametoindex_unsupported.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc; sourceTree = ""; }; + A9139E951B16A769D99336B2EF472CAC /* 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 = ""; }; A92F05FA3D1F52F2A55730AA24F82136 /* 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 = ""; }; A943B7EA46BDD4487B2819B30DE43230 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/impl/codegen/server_context.h; sourceTree = ""; }; - A95F72F61CE015ACAA3EE1209D90D042 /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; + A95F72F61CE015ACAA3EE1209D90D042 /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; A96B86EE5F4532C937C73D91B261CBB6 /* 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 = ""; }; A99088ED062AB2C27087B746077C76B1 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/support/server_interceptor.h; sourceTree = ""; }; - A9954561F37DDF67338EC19E63424575 /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; - A9AB819DDB8EF30BC4642833C78C4FEA /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; - A9AEFBCC5FE630F7B74682D889D19331 /* backoff.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c"; sourceTree = ""; }; + A9954561F37DDF67338EC19E63424575 /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; + A9AB819DDB8EF30BC4642833C78C4FEA /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; + A9AEFBCC5FE630F7B74682D889D19331 /* backoff.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c"; sourceTree = ""; }; A9B48197CEDBD7C46BC341423D7DB74E /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; A9BFF848B98DE459D79C6FEB43146143 /* 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 = ""; }; - A9CB1DF3A5F94E00496DDF8FE6BF58C7 /* eval.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eval.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.c"; sourceTree = ""; }; + A9CB1DF3A5F94E00496DDF8FE6BF58C7 /* eval.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eval.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.c"; sourceTree = ""; }; A9CC64BCEB57A6B464B6A3B79D4A5C23 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; A9D096B0C6CBB57931FEC03C35975E78 /* 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 = ""; }; - A9D3F89FA2345069EB342004C13AF450 /* string_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_windows.cc; path = src/core/lib/gpr/string_windows.cc; sourceTree = ""; }; - A9DC59AACBC5A355A732AF1B0ADB4FF5 /* channel_stack_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_builder.cc; path = src/core/lib/channel/channel_stack_builder.cc; sourceTree = ""; }; + A9D3F89FA2345069EB342004C13AF450 /* string_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_windows.cc; path = src/core/lib/gpr/string_windows.cc; sourceTree = ""; }; + A9DC59AACBC5A355A732AF1B0ADB4FF5 /* 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 = ""; }; A9F6EC22B391B6C38EE4CB9B5758C43F /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; AA0DD1FAB8621882656D150DFE901068 /* endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_config.h; path = include/grpc/event_engine/endpoint_config.h; sourceTree = ""; }; AA1E77257DD61E97BF6D0946527B39D4 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; AA36937CC3A8A62A4DEC31C2A8DBD1BA /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; AA3A5D68BA26751D3EBE80AC04D33436 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; - AA44046E15985EC93ECEEC85F0FDF855 /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; - AA468256CE134AB5B72DB058D43DF44C /* core_codegen.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = core_codegen.cc; path = src/cpp/common/core_codegen.cc; sourceTree = ""; }; + AA44046E15985EC93ECEEC85F0FDF855 /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; + AA468256CE134AB5B72DB058D43DF44C /* core_codegen.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = core_codegen.cc; path = src/cpp/common/core_codegen.cc; sourceTree = ""; }; AA5F3366FEB3E1119249D08C76C36FF0 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; AA659B0CEC53DE47C207E9E946C54998 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; AA6A39F4AE049F21C047511BC5A8081C /* 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 = ""; }; AAA6C7F1B6847261A14DDB3223F6A03E /* FirebaseFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.debug.xcconfig; sourceTree = ""; }; AAAAC8BDC3C4A01BA8BB78D86F0E41DE /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; AAD0488A3346289766F43E611AC6666E /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - AAD55419D7EC5B103AE513F2F4EF9CDA /* grpc_root_certificates_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_root_certificates_generated.cc; path = Firestore/core/src/remote/grpc_root_certificates_generated.cc; sourceTree = ""; }; - AAD6A11B21495CF049CDE05CAB35A774 /* pollset_set_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set_windows.cc; path = src/core/lib/iomgr/pollset_set_windows.cc; sourceTree = ""; }; - AAFE7E183443DBFE7338AC383B6100F6 /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; - AAFEE7754ED460AA142415E9EA87E4EF /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; - AB10E3BFDA47A548969E1E40B54ECA6D /* stat_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stat_windows.cc; path = src/core/lib/gprpp/stat_windows.cc; sourceTree = ""; }; + AAD55419D7EC5B103AE513F2F4EF9CDA /* 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 = ""; }; + AAD6A11B21495CF049CDE05CAB35A774 /* 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 = ""; }; + AAFE7E183443DBFE7338AC383B6100F6 /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; + AAFEE7754ED460AA142415E9EA87E4EF /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; + AB10E3BFDA47A548969E1E40B54ECA6D /* stat_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat_windows.cc; path = src/core/lib/gprpp/stat_windows.cc; sourceTree = ""; }; AB278426E730FA69DD5BC8703BE4ABCF /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; AB2EF2AC113FE66E4FB3FD3391F5E241 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; - AB537BDC1F586C88CB1236B108B208AF /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; + AB537BDC1F586C88CB1236B108B208AF /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; AB5C53EF60285D55F87F05F004230C53 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; AB7138D6A69866788DF7070E6D9E7A7A /* 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 = ""; }; AB71DFBB3FF79835FA9A296BD2A811E5 /* FIRStartMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.h; sourceTree = ""; }; - AB8027132186DC1BF0A50C17448690CD /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; + AB8027132186DC1BF0A50C17448690CD /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; AB8E2D4C439A02A15B365386BCAC509E /* FIRVerifyPhoneNumberRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.m; sourceTree = ""; }; - AB970916F21CA2D5729CE8F3C058F34A /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; + AB970916F21CA2D5729CE8F3C058F34A /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; ABA290EC2591C516C56D719B1852CDA5 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/dynamic_annotations.h; sourceTree = ""; }; ABA39FE04431B095DEF305EA3E5F4949 /* 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 = ""; }; ABA4A13C9EAC21C4B7CA8B69309E810F /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; ABB514FAA54C3281A8E801B225061E5D /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = src/include/openssl/sha.h; sourceTree = ""; }; ABDA16D605B2CDE3BDC3C7046A243A15 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - ABFCFEFB639BAAB4AA7406E1B9C8A3E0 /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; - AC1101C998BFC206F537191514D7EBEB /* explain.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = explain.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c"; sourceTree = ""; }; + ABFCFEFB639BAAB4AA7406E1B9C8A3E0 /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; + AC1101C998BFC206F537191514D7EBEB /* explain.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = explain.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c"; sourceTree = ""; }; AC15C14ACB2B3450BD84A52512E34452 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; AC1757E25D2FF46CC7149B4F5779648C /* hpke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = src/include/openssl/hpke.h; sourceTree = ""; }; - AC186EC970ABDA7C3E9CB4256FE06988 /* migrate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.c"; sourceTree = ""; }; + AC186EC970ABDA7C3E9CB4256FE06988 /* migrate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.c"; sourceTree = ""; }; AC1B7E7C9CAE9C3D76E36D07FA5850A9 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - AC31EC92853B558E1C2883EAE6D73CFC /* snapshots_in_sync_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshots_in_sync_listener_registration.cc; path = Firestore/core/src/api/snapshots_in_sync_listener_registration.cc; sourceTree = ""; }; + AC31EC92853B558E1C2883EAE6D73CFC /* 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 = ""; }; AC439C40C5E71AD99666383E06E7084A /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = util/arena.h; sourceTree = ""; }; - AC56D82519B5C156EEE1D93D2A771B3E /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; + AC56D82519B5C156EEE1D93D2A771B3E /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; AC5DFED1F01FDCD77D59B03B4E2B3AB5 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h; sourceTree = ""; }; AC6008769FBFD150D014895EDDB149D7 /* 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 = ""; }; AC8A1B8E3C61F31956CED47E1CCB5BED /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; AC8E47E23AA85979785614D578B42412 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - ACA807973220EAE1B3BB88488899D30A /* byte_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream.cc; path = src/core/lib/transport/byte_stream.cc; sourceTree = ""; }; - ACBB700D1FFD3CBCBAB5AC9BEFDCB9A7 /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_mapper_registry.cc; path = src/core/ext/filters/client_channel/proxy_mapper_registry.cc; sourceTree = ""; }; - ACDABAD6D0A30541241E684EE23EDA1D /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; + ACA807973220EAE1B3BB88488899D30A /* byte_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_stream.cc; path = src/core/lib/transport/byte_stream.cc; sourceTree = ""; }; + ACBB700D1FFD3CBCBAB5AC9BEFDCB9A7 /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proxy_mapper_registry.cc; path = src/core/ext/filters/client_channel/proxy_mapper_registry.cc; sourceTree = ""; }; + ACDABAD6D0A30541241E684EE23EDA1D /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; ACE0594724CADA3C6E8F44A890B0A3CF /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - ACFC339F608B0702502060B8FFBC8B72 /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; + ACFC339F608B0702502060B8FFBC8B72 /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; AD03B17B162D6269292321BFD27133AD /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; - AD2745458FBCC3CEF88D590EEFD15E78 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - AD32C21BF3431BF755C1A9D4D9FBB224 /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; + AD2745458FBCC3CEF88D590EEFD15E78 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_decode.c; sourceTree = ""; }; + AD32C21BF3431BF755C1A9D4D9FBB224 /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; AD9A09242687CD13126EE381377D5B6F /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; ADAF088419ED98FE6E8A89C24FB71413 /* 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 = ""; }; ADB178BF359DB0F4B6B9B290983B7E82 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; @@ -15187,31 +15187,31 @@ ADC6A7477E4FA6256FCF730818E74E40 /* strscpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strscpy.h; path = src/strscpy.h; sourceTree = ""; }; ADE5E734449379D20E08E13749DCAE3F /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; ADE7945AC9854C300F67AD6CFFA4BC35 /* 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 = ""; }; - ADEFA34F846145BD04F8B7816D476913 /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; + ADEFA34F846145BD04F8B7816D476913 /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; ADF800B82EC13ACBB3FAB597647CEE0F /* BoringSSL-GRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BoringSSL-GRPC-dummy.m"; sourceTree = ""; }; - AE012EFDCB5F347565AF1BA8EFE4D954 /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; + AE012EFDCB5F347565AF1BA8EFE4D954 /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; AE01C797A96D6234B067C8A84EB931EB /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; AE02BD5FF7FD18F98A8A00A695F4E7EF /* 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 = ""; }; - AE10C968F0E26A0B9EDCB5D10260C40D /* health_check_service_server_builder_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_service_server_builder_option.cc; path = src/cpp/server/health/health_check_service_server_builder_option.cc; sourceTree = ""; }; - AE149CD2442E49160ABF54AF40FD99E1 /* tcp_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_custom.cc; path = src/core/lib/iomgr/tcp_custom.cc; sourceTree = ""; }; + AE10C968F0E26A0B9EDCB5D10260C40D /* 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 = ""; }; + AE149CD2442E49160ABF54AF40FD99E1 /* tcp_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_custom.cc; path = src/core/lib/iomgr/tcp_custom.cc; sourceTree = ""; }; AE2CE103B38BC976DA045BA966B95FA2 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = absl/memory/memory.h; sourceTree = ""; }; - AE63FAE1A38BD9B16B58DB8F0D76AF70 /* endpoint_pair_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_posix.cc; path = src/core/lib/iomgr/endpoint_pair_posix.cc; sourceTree = ""; }; + AE63FAE1A38BD9B16B58DB8F0D76AF70 /* 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 = ""; }; AE66776D4A64507FBCBD86A561DCD6A6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509v3/internal.h; sourceTree = ""; }; - AE9E6B5A42C82C2BC06FBFE8EABBB5A2 /* empty.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/empty.nanopb.cc; sourceTree = ""; }; + AE9E6B5A42C82C2BC06FBFE8EABBB5A2 /* 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 = ""; }; AEAB44A52ACC36D38CC3CF28AF0B2E5E /* rsaz_exp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsaz_exp.h; path = src/crypto/fipsmodule/bn/rsaz_exp.h; sourceTree = ""; }; AEBAB0C93706FEA7F5302559519A1B1B /* 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 = ""; }; - AF0435CDC5C3BB45A9AF2EE6A467ABA4 /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; + AF0435CDC5C3BB45A9AF2EE6A467ABA4 /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; AF15D34E5EF4A11A603648484E73A016 /* 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 = ""; }; - AF238BFB741F007C0817C2B5DB680F33 /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; + AF238BFB741F007C0817C2B5DB680F33 /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; AF2D82AC3822F81EF63755626F2293BB /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; - AF34AD69E917276389B10B463DFC4DEA /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; + AF34AD69E917276389B10B463DFC4DEA /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; AF4B551E052F26420522FABCCA7BDAEB /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - AF5B9C98F68CE8090916EBEEEAA1499A /* aws_request_signer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aws_request_signer.cc; path = src/core/lib/security/credentials/external/aws_request_signer.cc; sourceTree = ""; }; + AF5B9C98F68CE8090916EBEEEAA1499A /* 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 = ""; }; AF9B49254C141180AB74FCDA7F84AF04 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/impl/codegen/slice.h; sourceTree = ""; }; - AF9DEF0109F3CF6416E2EC1779559E08 /* zone_info_source.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = zone_info_source.cc; path = absl/time/internal/cctz/src/zone_info_source.cc; sourceTree = ""; }; + AF9DEF0109F3CF6416E2EC1779559E08 /* 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 = ""; }; AF9E441B0346B45C4472AD4CA8211B60 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; AFA31394D90226A94823122D7537827A /* FIRAuthDataResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h; sourceTree = ""; }; - AFAA0269C3521FE07920601F784DC1D4 /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; + AFAA0269C3521FE07920601F784DC1D4 /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; AFBDD484888DDC549AB8CA1124B35A18 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; AFD18D432E2332B5C75BCB6B5BD47F65 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = absl/strings/internal/str_format/extension.h; sourceTree = ""; }; AFE270738743B940CC0385606BF70507 /* 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 = ""; }; @@ -15219,57 +15219,57 @@ AFFF590FAD835730FDABC04CC51CEAB9 /* 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 = ""; }; B00D53290AAB3FCF0EAC9166914E3837 /* conf_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_def.h; path = src/crypto/conf/conf_def.h; sourceTree = ""; }; B012F97C2E9581291445922A05D0E52B /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = include/leveldb/iterator.h; sourceTree = ""; }; - B01BF79872DB72BBE0BFD4EB0527C9D6 /* getnameinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; name = getnameinfo.c; path = src/unix/getnameinfo.c; sourceTree = ""; }; + B01BF79872DB72BBE0BFD4EB0527C9D6 /* getnameinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = getnameinfo.c; path = src/unix/getnameinfo.c; sourceTree = ""; }; B02460F5E73D23ED6FD5521C6F407E82 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - B02499D441682B0266E4EBCE4CC8D1F1 /* collection_entry.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_entry.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c"; sourceTree = ""; }; + B02499D441682B0266E4EBCE4CC8D1F1 /* collection_entry.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c"; sourceTree = ""; }; B04BB6DEED1E3A806BB4A8871E6093D2 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; B05DBC6E4E6F2CAABE5B0E9AA646EDB8 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/leveldb/status.h; sourceTree = ""; }; B060AFD6C415714E4C53B721E30D201A /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; B062227C71E1663D64363AAD4793DE57 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; B06D6B84B14FF60295313EF657430D24 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = src/include/openssl/engine.h; sourceTree = ""; }; - B07AAB01B8090BD561A3C0213041F205 /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; - B0BACA7AF1F29511585CA8F32612F946 /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; + B07AAB01B8090BD561A3C0213041F205 /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; + B0BACA7AF1F29511585CA8F32612F946 /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; B0BB9F9D829E3114AB84B6957EF89110 /* 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 = ""; }; - B0C185EB57E244F05E3A0786F995A577 /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; - B0CC3090F23B3576D934D51450358FF2 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; - B0D56F15F9934C53F709C44216DB31FA /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; + B0C185EB57E244F05E3A0786F995A577 /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; + B0CC3090F23B3576D934D51450358FF2 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; + B0D56F15F9934C53F709C44216DB31FA /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; B0D8B99945B0B084C6C02232E8361C9D /* 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 = ""; }; - B0EA8D24AA9C1CD7267BCFB6DB564487 /* resource_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_quota.cc; path = src/core/lib/resource_quota/resource_quota.cc; sourceTree = ""; }; - B0FA88EF49B79651198EE74047D6AFED /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = priority.cc; path = src/core/ext/filters/client_channel/lb_policy/priority/priority.cc; sourceTree = ""; }; + B0EA8D24AA9C1CD7267BCFB6DB564487 /* 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 = ""; }; + B0FA88EF49B79651198EE74047D6AFED /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = priority.cc; path = src/core/ext/filters/client_channel/lb_policy/priority/priority.cc; sourceTree = ""; }; B10135E87098E777EEA98A3A723C17C5 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - B10BA2A48A4387790E2E8E48FD9575A8 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; - B10C863EE1FF3EC2F3DFFA963B297308 /* stacktrace_generic-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_generic-inl.inc"; path = "absl/debugging/internal/stacktrace_generic-inl.inc"; sourceTree = ""; }; - B11E5D7BB0C1C65418D24E4509F26585 /* load_balancer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_balancer.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c"; sourceTree = ""; }; - B12193B39AB9C9AD0B1D620F66457FE3 /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_alt.c; path = src/crypto/x509v3/v3_alt.c; sourceTree = ""; }; + B10BA2A48A4387790E2E8E48FD9575A8 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; + B10C863EE1FF3EC2F3DFFA963B297308 /* 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 = ""; }; + B11E5D7BB0C1C65418D24E4509F26585 /* load_balancer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_balancer.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c"; sourceTree = ""; }; + B12193B39AB9C9AD0B1D620F66457FE3 /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_alt.c; path = src/crypto/x509v3/v3_alt.c; sourceTree = ""; }; B128A2D8AE332941F77E6F017A320001 /* 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 = ""; }; B137F26F3880BE1C08B667F84F176BEB /* 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 = ""; }; B13EBBC179E790092217B7A4731EACC6 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - B17D3765AC63DEDCD4562043E72817FA /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; + B17D3765AC63DEDCD4562043E72817FA /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; B185F37F8856671E8CB87C39AC2E7261 /* 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 = ""; }; B18882219F9B11BFA89439644B1C5CD3 /* 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 = ""; }; B189D9B7452AE798D3FC3017FDE61DF9 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; - B19A3739C63962C5F9250B750515A462 /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; + B19A3739C63962C5F9250B750515A462 /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; B1A27515041EACD4431FA1EFEB4B51A3 /* block_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_builder.h; path = table/block_builder.h; sourceTree = ""; }; - B1B52374E6CA0B8B8C0C64FCEEF01811 /* status.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.nanopb.cc; path = Firestore/Protos/nanopb/google/rpc/status.nanopb.cc; sourceTree = ""; }; - B1CF1B07EA145273F6E0E38F0F8A8525 /* alts_handshaker_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_handshaker_client.cc; path = src/core/tsi/alts/handshaker/alts_handshaker_client.cc; sourceTree = ""; }; + B1B52374E6CA0B8B8C0C64FCEEF01811 /* 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 = ""; }; + B1CF1B07EA145273F6E0E38F0F8A8525 /* 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 = ""; }; B1D23DBF05EC7616586E3128C524322A /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; B2009767EC2AB43C81A67E16B43E0DC0 /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; B207C8E8F1F8F449F1218FB78AF0F5E4 /* Libuv-gRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Libuv-gRPC-prefix.pch"; sourceTree = ""; }; - B20A596BA414E8BA79DCEA94C7207DE0 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; + B20A596BA414E8BA79DCEA94C7207DE0 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; B227F52BE76B38DA33800FA8916A7553 /* CLTypingLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLTypingLabel-prefix.pch"; sourceTree = ""; }; - B24A2C29F88781ECA8C691DE44DE600C /* tcp_server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_posix.cc; path = src/core/lib/iomgr/tcp_server_posix.cc; sourceTree = ""; }; + B24A2C29F88781ECA8C691DE44DE600C /* 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 = ""; }; B24ADA12A72D17B8F16CD5021D839E0D /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; B24F3DA903BD8100E8D425CD745B55A7 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = src/include/openssl/objects.h; sourceTree = ""; }; B2520369B3CE7512D4B94CC515F5884B /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; B272B3AC437369888B4BEB0E375077EF /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; B275B83B87E96B5234513538FC683415 /* 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 = ""; }; B2800F81891250A61C71F852B7E69924 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - B29D014ABFCFC4733B0DFD77AFBCBE2B /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; + B29D014ABFCFC4733B0DFD77AFBCBE2B /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; B2A7DF1FCB624BA88A4A1A63AA7C8518 /* FirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FirebaseAuth.h; sourceTree = ""; }; B2AAA7B7D74FE5C27B3D957B795DFD17 /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; B2B15B6F16FCCDEE6466911D1CC6AEB0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; B2BAC9D0A1AA7CD328C15013960C88D3 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - B2C0C8C74796BA8C752625895946CF86 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel_pool_interface.cc; path = src/core/ext/filters/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; + B2C0C8C74796BA8C752625895946CF86 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel_pool_interface.cc; path = src/core/ext/filters/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; B2D349EBE125AC26A3E98F058E11448D /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; B2DCCC73DC8B3EF36A2FC3C2AFF689CF /* 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 = ""; }; B2E3EDCDAAB73EE084826C2356ED8E20 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; @@ -15277,30 +15277,30 @@ B2EDC07DCD20913C791F13BEC6B40264 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; B2EDC81F15CDAEFA824833F44EFCA60F /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; B2F1E54F59F5091F8178837BD3D5BECF /* 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 = ""; }; - B2FBF9E6367F69C3C642BA8281F5E82D /* transport_op_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_op_string.cc; path = src/core/lib/transport/transport_op_string.cc; sourceTree = ""; }; + B2FBF9E6367F69C3C642BA8281F5E82D /* 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 = ""; }; B302D325B6A31BB4DEAB926BFFDD3014 /* FIRAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthTokenResult.h; sourceTree = ""; }; B30887F8A983D0F76ABAA697A90050D0 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; B316CAC1D290248CFAFD4D6EF23B2DF1 /* 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 = ""; }; B32195B4FAA7B9B65B5287679EE3068F /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - B34BDA9AA0E38F8C1AF5B9CCC50B4537 /* frame_window_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_window_update.cc; path = src/core/ext/transport/chttp2/transport/frame_window_update.cc; sourceTree = ""; }; + B34BDA9AA0E38F8C1AF5B9CCC50B4537 /* 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 = ""; }; B3591DAABD127666506E210FB2D0D5A4 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - B37F5099C45824EEAA04C58C396669E9 /* grpc_unary_call.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_unary_call.cc; path = Firestore/core/src/remote/grpc_unary_call.cc; sourceTree = ""; }; + B37F5099C45824EEAA04C58C396669E9 /* 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 = ""; }; B38124AE2984531B5838ECBE17A4004C /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; B383B4EF2C21852CF7F1D3DC1B4C4E78 /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; B385F9E1755D429AAD18C5EA5D3FA9C4 /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; B3A3FCB84793B382ECB528EF6C51A92C /* 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 = ""; }; - B3BA59DBE2075E2D9E66626F98883560 /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; - B3C6C6A84FDD092305F1808E82E13B45 /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; - B3E780272BAD67304665F2C021A720BB /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; + B3BA59DBE2075E2D9E66626F98883560 /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; + B3C6C6A84FDD092305F1808E82E13B45 /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; + B3E780272BAD67304665F2C021A720BB /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; B3FCF85413C8149E93213E18CEE7EED6 /* bitmap256.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitmap256.h; path = third_party/re2/re2/bitmap256.h; sourceTree = ""; }; B40847EB83546152901CB2DEEC4DCA4E /* 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 = ""; }; B41124671B074406DE87DC81428576DF /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; B412DAE2C6175672DE35941A3450AE03 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; B42C1109B2541422EAFA3594E8E83C60 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleUtilities; path = GoogleUtilities.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B46CD8F0885C87FA85231ACFC5552B77 /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = weighted_target.cc; path = src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc; sourceTree = ""; }; + B46CD8F0885C87FA85231ACFC5552B77 /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = weighted_target.cc; path = src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc; sourceTree = ""; }; B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "gRPC-Core"; path = grpc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B4763C786CE3AC0D9A7CBDF0C2B9A324 /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; + B4763C786CE3AC0D9A7CBDF0C2B9A324 /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; B484180B4EBEBFB48A405FCF3FE70C99 /* FIRPhoneMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorAssertion.h; sourceTree = ""; }; B485907E37DB770775AC8FD16708587B /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; B48CC10D75584ED685E40B257421B760 /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; @@ -15308,58 +15308,58 @@ B4B27AE92E921B8A54DBDE52F1E3EBC9 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; B4B7A95FC90C43CE5CEB2E7EF6999506 /* FIRSignInWithGameCenterRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.h; sourceTree = ""; }; B4DC05570B01D1BCE88CEB55DCAEA10D /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; - B4E237C549EB7530084E39A5BD628FA8 /* firestore_index_value_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_index_value_writer.cc; path = Firestore/core/src/index/firestore_index_value_writer.cc; sourceTree = ""; }; + B4E237C549EB7530084E39A5BD628FA8 /* 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 = ""; }; B4EA72EFDFDE1E7FBB8C29A3AFC16093 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bytestring/internal.h; sourceTree = ""; }; - B4F2982B337149EF34F636899118D04D /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_utl.c; path = src/crypto/x509v3/v3_utl.c; sourceTree = ""; }; - B4F95FF3A843AA8C313482EFBFEBEF81 /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; - B5155D03FDC418BAA79EA193BD56B51F /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; + B4F2982B337149EF34F636899118D04D /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_utl.c; path = src/crypto/x509v3/v3_utl.c; sourceTree = ""; }; + B4F95FF3A843AA8C313482EFBFEBEF81 /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; + B5155D03FDC418BAA79EA193BD56B51F /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; B515EEBDBB4AFBDC0AB59659D3B8CFB2 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; B51CBF8F09D2C579A338EF24B3A56F45 /* table_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_cache.h; path = db/table_cache.h; sourceTree = ""; }; B52102069F00E34703FE84F3AE7022BF /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; B52F2B0AB87360DB9AC86BA63FE8E5C2 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/impl/codegen/atm.h; sourceTree = ""; }; - B53BAB3FA71F0EA8FD602751F8799634 /* endpoint_binder_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_binder_pool.cc; path = src/core/ext/transport/binder/client/endpoint_binder_pool.cc; sourceTree = ""; }; + B53BAB3FA71F0EA8FD602751F8799634 /* 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 = ""; }; B5592154D74A2E3E3DA27A305B0BEFBD /* 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 = ""; }; - B55D6A085CDC8D4E64B07CF2C6F48223 /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; + B55D6A085CDC8D4E64B07CF2C6F48223 /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; B55EBC5013E331D0CBAE3B934574111C /* NSData+FIRBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+FIRBase64.m"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.m"; sourceTree = ""; }; B57334934DFB7A0B38D71BBAB211B84B /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; B5946DBD845B9323E97F6B98B585DF02 /* FIRAuthSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthSettings.h; sourceTree = ""; }; - B5AB5B621FBEA0ED53A252369C31F521 /* annotations.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.upb.c; path = "src/core/ext/upb-generated/google/api/annotations.upb.c"; sourceTree = ""; }; + B5AB5B621FBEA0ED53A252369C31F521 /* annotations.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upb.c; path = "src/core/ext/upb-generated/google/api/annotations.upb.c"; sourceTree = ""; }; B5B4949DE576DB5D0512953BEB5ED70F /* server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder.h; path = include/grpcpp/server_builder.h; sourceTree = ""; }; B5BA4FE9B899AE7D9B702720917B5102 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; B5C42C603585AF08237A177C3F4EBDF0 /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; - B5D0D14AC60503E73AB89888CFDF995E /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; + B5D0D14AC60503E73AB89888CFDF995E /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; B5D947551ABB4A328FF57D6FB5E753ED /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; B5F255458A1454DD9A8A8D315A84DC64 /* CLTypingLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CLTypingLabel.modulemap; sourceTree = ""; }; - B635157D0C0769DC5CF4EA1FF3FE6407 /* tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_certificate_provider.cc; path = src/cpp/common/tls_certificate_provider.cc; sourceTree = ""; }; + B635157D0C0769DC5CF4EA1FF3FE6407 /* 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 = ""; }; B64779E85C308D6FCBE9078BF79EB01D /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; - B64CFE40FE5A39557FA57AA845062583 /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; + B64CFE40FE5A39557FA57AA845062583 /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; B654291838E7D415925BC88E230F0EC8 /* set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = set.h; path = third_party/re2/re2/set.h; sourceTree = ""; }; - B66296B5A828844EBE63423D4CCFEBA6 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c"; sourceTree = ""; }; - B66B93D5000DA5C21FF15A6A0F3C8BC2 /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; - B68DAC0B178D1225D56403D595003F83 /* cpu-arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-arm.c"; path = "src/crypto/cpu-arm.c"; sourceTree = ""; }; + B66296B5A828844EBE63423D4CCFEBA6 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c"; sourceTree = ""; }; + B66B93D5000DA5C21FF15A6A0F3C8BC2 /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; + B68DAC0B178D1225D56403D595003F83 /* cpu-arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-arm.c"; path = "src/crypto/cpu-arm.c"; sourceTree = ""; }; B6B0856A30414C2B37E98E43B2F0E636 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - B6B6FC6C8C36B2AAA03E9D840094C610 /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.c"; sourceTree = ""; }; + B6B6FC6C8C36B2AAA03E9D840094C610 /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.c"; sourceTree = ""; }; B6C9D3967C9E8A1EA197C9D497FC4C1F /* FIRSendVerificationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.m; sourceTree = ""; }; - B6E2BA0DB94840B41C6E1BE69DE86BFD /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesccm.c; path = src/crypto/cipher_extra/e_aesccm.c; sourceTree = ""; }; + B6E2BA0DB94840B41C6E1BE69DE86BFD /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesccm.c; path = src/crypto/cipher_extra/e_aesccm.c; sourceTree = ""; }; B738AE910C8B12BD51B9DEC8D9EAAFEF /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - B73AC2B79FB582F3A46C91119F13B650 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; - B73B66243871E53D2CE0D389DDD20DBB /* codegen_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = codegen_init.cc; path = src/cpp/codegen/codegen_init.cc; sourceTree = ""; }; - B73CAE13E3638576F3A52306BC74F26A /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; + B73AC2B79FB582F3A46C91119F13B650 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; + B73B66243871E53D2CE0D389DDD20DBB /* codegen_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = codegen_init.cc; path = src/cpp/codegen/codegen_init.cc; sourceTree = ""; }; + B73CAE13E3638576F3A52306BC74F26A /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; B73CD2EF881EEFFD3B2755144FCA37C8 /* 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 = ""; }; B748240AA518D9D87AB8B900C2E689D7 /* type_check.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_check.h; path = src/include/openssl/type_check.h; sourceTree = ""; }; B7564503FA87A0C717B9C8A8631A32B5 /* server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_credentials.h; path = include/grpcpp/security/server_credentials.h; sourceTree = ""; }; - B76D89A02E1DF3B51B10F9C24E717326 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; + B76D89A02E1DF3B51B10F9C24E717326 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; B76D8BFE88D7CF0160716F1CCD743470 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - B771955A4CF01CC7A51B204023248969 /* time_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_windows.cc; path = src/core/lib/gpr/time_windows.cc; sourceTree = ""; }; + B771955A4CF01CC7A51B204023248969 /* time_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_windows.cc; path = src/core/lib/gpr/time_windows.cc; sourceTree = ""; }; B775E7847EE269D6C5AFD3E0A38E09AC /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Sources/Core/GTMSessionFetcherLogging.m; sourceTree = ""; }; B7768AEE98D9AEACB1068789A9E7553E /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; B77A855DC916D0B4BECCA939B00687A9 /* server_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_posix.h; path = include/grpcpp/server_posix.h; sourceTree = ""; }; B781E6357ACE48C7978EAFEE31FE0FC5 /* 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 = ""; }; B78AFC5C7B27A52401A443D615B2D7BC /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h; sourceTree = ""; }; B78D77EEB3DF4256C73F29E5FB7B3497 /* leveldb-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "leveldb-library-dummy.m"; sourceTree = ""; }; - B795D9A40FA2C0A605AC3A6E1EED4509 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; + B795D9A40FA2C0A605AC3A6E1EED4509 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; B79883322CB09A08BAE47FE41DE6C433 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - B7AE0C1E4144A0E9DBD24D4668DEFCCA /* dualstack_socket_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dualstack_socket_posix.cc; path = src/core/lib/iomgr/dualstack_socket_posix.cc; sourceTree = ""; }; + B7AE0C1E4144A0E9DBD24D4668DEFCCA /* 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 = ""; }; B7B8E3942834457E0C677497D95DD467 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; B7D788FC8C9E1701C7F8FA6661BDAED9 /* 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 = ""; }; B832731D92AE66792B5A68300DE0FACC /* 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 = ""; }; @@ -15368,31 +15368,31 @@ B87166C717DD3DA0B19DEDF7E4907D64 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; B883A64A540D701D865342BA75CC54EE /* 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 = ""; }; B88A7560A32E839E0C8EAC3A03AE4A31 /* FirebaseFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestore-dummy.m"; sourceTree = ""; }; - B88B1173F2207725E6C40B5C06013EF9 /* filter.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c"; sourceTree = ""; }; + B88B1173F2207725E6C40B5C06013EF9 /* filter.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c"; sourceTree = ""; }; B88F781463BF5BE39A8E9E8A7DAFEF9D /* 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 = ""; }; B8A921BA900C324829CAA4A172811395 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; B8BAAD8DC1B8F6E696C82AB47F3634A2 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; B8BD14A626C65D8B2EFE971E319CBF1D /* pool_urbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool_urbg.h; path = absl/random/internal/pool_urbg.h; sourceTree = ""; }; - B8CD8F9BFEE54C15B4D49EA1371C33EB /* channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_filter.cc; path = src/cpp/common/channel_filter.cc; sourceTree = ""; }; + B8CD8F9BFEE54C15B4D49EA1371C33EB /* channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_filter.cc; path = src/cpp/common/channel_filter.cc; sourceTree = ""; }; B8CEC288DB255133814B49990155B678 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - B8DB0B72E5DFCB96209DC7048E35F641 /* sockaddr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr.cc; path = src/core/lib/event_engine/sockaddr.cc; sourceTree = ""; }; - B8DDBC7DBF588914F56027797FAFD438 /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; + B8DB0B72E5DFCB96209DC7048E35F641 /* sockaddr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr.cc; path = src/core/lib/event_engine/sockaddr.cc; sourceTree = ""; }; + B8DDBC7DBF588914F56027797FAFD438 /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; B8EF2573A9A70EF757EB2234F720B2A1 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; B8EF9304FE223CE38E6272FBE7F08404 /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; B8F23BAB6E574A3A2E4ECE03B2DCA2FE /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; B9345989AF5D41C7AA7DFBFD2228A33D /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - B935C96B194450D0E2081B217CB68D42 /* secure_channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_channel_arguments.cc; path = src/cpp/common/secure_channel_arguments.cc; sourceTree = ""; }; + B935C96B194450D0E2081B217CB68D42 /* 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 = ""; }; B9562B6E77B62B0AB48D5E6B4E698AAA /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; B9577714B976A0958049FC26BED592CC /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = src/include/openssl/ecdsa.h; sourceTree = ""; }; B9595CB87A6A7D9B9ADB477A24A1D960 /* 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 = ""; }; B96243AE067B5959A749503F23EF3E72 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; - B9831C4DBD2223F1C95190A0D511E27B /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; - B9832B887B590C7F41D9F8D0E438773D /* mutation_batch_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation_batch_result.cc; path = Firestore/core/src/model/mutation_batch_result.cc; sourceTree = ""; }; + B9831C4DBD2223F1C95190A0D511E27B /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; + B9832B887B590C7F41D9F8D0E438773D /* 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 = ""; }; B99997C354F774BF2D6DFBA0C326C38B /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/impl/codegen/slice.h; sourceTree = ""; }; B999C5BBD7419FCA918DA140A294925A /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; B99A03E51536BF873FAF6362BC129688 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = src/include/openssl/stack.h; sourceTree = ""; }; - B9A15C3F0F169748196B13B3AC2D0AAE /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; - B9A3B58D793C55394A7A17101387427D /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; + B9A15C3F0F169748196B13B3AC2D0AAE /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; + B9A3B58D793C55394A7A17101387427D /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; B9A7227AAB7C29CA7F1A7E03D3C1FA1D /* 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 = ""; }; B9AD17140052F8C4B16D097734D5F0B3 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; B9B61A0A883C527CC5C0C6C971E7AC3C /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; @@ -15400,58 +15400,58 @@ B9BEA3EEB33090BAF243B18647356F3C /* FirebaseFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.release.xcconfig; sourceTree = ""; }; B9C0B21E3B7E429887BF70F8E1014DC5 /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; B9C7017BB3C27702D3154948CFE0BD23 /* abseil-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "abseil-Info.plist"; sourceTree = ""; }; - B9CCB0C2169275C37E096261EFBF36C7 /* context_params.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = context_params.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.c"; sourceTree = ""; }; + B9CCB0C2169275C37E096261EFBF36C7 /* context_params.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.c"; sourceTree = ""; }; B9D9F47D97A06BE77A5D159A9B329EED /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - B9E146F70D02B8CC0A7E50612484142F /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; + B9E146F70D02B8CC0A7E50612484142F /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; B9EB8511E9EB7D9FAEFC0E02897333B1 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - BA1258603851C250209F3A04E1F98819 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; + BA1258603851C250209F3A04E1F98819 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; BA1E732EBE215352395DC3DC9D2CD120 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - BA30102B225E3E37D31C1AD65F3155AA /* pcy_tree.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_tree.c; path = src/crypto/x509v3/pcy_tree.c; sourceTree = ""; }; + BA30102B225E3E37D31C1AD65F3155AA /* pcy_tree.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_tree.c; path = src/crypto/x509v3/pcy_tree.c; sourceTree = ""; }; BA458B7D6BE7998BA4A6D5FD11FFBC2B /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - BA49C069162FFC8D8C567CAA398552CC /* xds_http_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_filters.cc; path = src/core/ext/xds/xds_http_filters.cc; sourceTree = ""; }; + BA49C069162FFC8D8C567CAA398552CC /* 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 = ""; }; BA742090B0070F9E5FDB352E494586E9 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; BA765361E698A45CBC71C7A420B671DB /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; BA7C8764CCB1D81C3267CA651EBB7030 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; - BA9307C509854FD4A7A28A1873BA97C0 /* versioning.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.c"; sourceTree = ""; }; + BA9307C509854FD4A7A28A1873BA97C0 /* versioning.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.c"; sourceTree = ""; }; BA9A4A88BB49FEE871D1EBCB60188E51 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; BAC34A20E46843D5D450731D82A01217 /* 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 = ""; }; BAFC39741BF200511FC99A6EBFC66312 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = src/include/openssl/ssl3.h; sourceTree = ""; }; BB08AF5701C2D462EBDBFCB35EDA6FC7 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; - BB4A184445C605B0B79BD1A6B8611BF8 /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; + BB4A184445C605B0B79BD1A6B8611BF8 /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; BB85668B872EAE26D4C8F2C12E3645FB /* 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 = ""; }; BBA022C989B90B74C20524FC656EA6FC /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; - BBB309C9AF6FDD552127343789B6BE13 /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = config_selector.cc; path = src/core/ext/filters/client_channel/config_selector.cc; sourceTree = ""; }; + BBB309C9AF6FDD552127343789B6BE13 /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_selector.cc; path = src/core/ext/filters/client_channel/config_selector.cc; sourceTree = ""; }; BBCE318F8243FA9CE289E45A666A4960 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; BBD0C48143F23BAE643E60BABDBB7AD0 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; BBD80B793F358EA6A9BF500CE7CED2F2 /* prog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prog.h; path = third_party/re2/re2/prog.h; sourceTree = ""; }; BBE2BFD957CE7C38FE4A7FDCDF71D2AE /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; BBF31B6CC200EEC3B0FD6307A2C7C63B /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; BC089CBF220AAA95F653C56DBC6E785D /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/impl/codegen/client_interceptor.h; sourceTree = ""; }; - BC0B1494CB044A37D202181203443587 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; + BC0B1494CB044A37D202181203443587 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; BC1139405CD94C77CF048C1E27CF1293 /* FIRAuthRequestConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRequestConfiguration.m; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.m; sourceTree = ""; }; BC17C8532FFA2E138B5998A99E8AF139 /* 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 = ""; }; BC3656EB186ED503E1A92DDC3FC4DD80 /* Pods-Flash Chat iOS13.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Flash Chat iOS13.modulemap"; sourceTree = ""; }; - BC45D0BB316586D6D853CCF62185FADB /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; - BC46D9B27D539E4B26C20500CA66FA09 /* ssl_session_boringssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_boringssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc; sourceTree = ""; }; - BCAC0051DF6BCED758E1C8A451A2C598 /* fault_injection_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fault_injection_filter.cc; path = src/core/ext/filters/fault_injection/fault_injection_filter.cc; sourceTree = ""; }; + BC45D0BB316586D6D853CCF62185FADB /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; + BC46D9B27D539E4B26C20500CA66FA09 /* 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 = ""; }; + BCAC0051DF6BCED758E1C8A451A2C598 /* 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 = ""; }; BCD67F62D3A37E89988A0DDC70EA3827 /* bytestring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bytestring.h; path = src/include/openssl/bytestring.h; sourceTree = ""; }; BCD6A6F72A851683BA2728B540EAFC96 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - BCED264BBCFE204D2BD0C8D3B6BE4EE5 /* cpu-aarch64-win.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-win.c"; path = "src/crypto/cpu-aarch64-win.c"; sourceTree = ""; }; + BCED264BBCFE204D2BD0C8D3B6BE4EE5 /* 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 = ""; }; BD0BE4A3B06C86885A15365B31733013 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - BD15625037E9471300A002C478F59397 /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; + BD15625037E9471300A002C478F59397 /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; BD1CC498F0F3AD4EB47FD2C2A09BEB57 /* 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 = ""; }; - BD32FB5A07861CDE58BA4E26DC7496F0 /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; - BD49302C45F7A5BB6E788EF11B82B834 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = encode.c; path = third_party/upb/upb/encode.c; sourceTree = ""; }; + BD32FB5A07861CDE58BA4E26DC7496F0 /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; + BD49302C45F7A5BB6E788EF11B82B834 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/encode.c; sourceTree = ""; }; BD6757A48ECB7053F1A1B5F3E091E57F /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; BD7B2F4FBCD4F14B3A7BEBF4EB0B4C4A /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - BD7E8B028D397147AB01F07D6053B91B /* inet.c */ = {isa = PBXFileReference; includeInIndex = 1; name = inet.c; path = src/inet.c; sourceTree = ""; }; + BD7E8B028D397147AB01F07D6053B91B /* inet.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inet.c; path = src/inet.c; sourceTree = ""; }; BD89197787961B81A6DB15F600E03C3C /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; - BD960606F502C6BF27146661CB9F3505 /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; + BD960606F502C6BF27146661CB9F3505 /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; BD9872F7FFC3C67688F09B39A94026EE /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; BDCD01606BE101721D72F2AB17CB1F2D /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; BDDD4658EE78ABCE64C2EC821A9FAD39 /* Libuv-gRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Libuv-gRPC.modulemap"; sourceTree = ""; }; - BE170FC7CA84E6477031C385CC1729A0 /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; - BE2D74B683D68FBA5BDFFD070850F111 /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; + BE170FC7CA84E6477031C385CC1729A0 /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; + BE2D74B683D68FBA5BDFFD070850F111 /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; BE2DF5EBEED0D89EDDEADAC0D721A079 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; BE3078062B091F0752096479B2C7E1ED /* 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 = ""; }; BE3545A69FD8DBB9F1BF5937E8A99D07 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; @@ -15459,55 +15459,55 @@ BE7424704490822F4A39D8365399F223 /* 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 = ""; }; BE9B3771AD49B4115D29B2442FBD608B /* 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 = ""; }; BEB1461DAD8F5C423349C319FCDCB58F /* 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 = ""; }; - BED43F18EDA973069665FC5F582F01FD /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; - BEE10044734B3238201A3C676591E4A9 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; + BED43F18EDA973069665FC5F582F01FD /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; + BEE10044734B3238201A3C676591E4A9 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; BEE479A9ED41540EF83A6C10E34FBA50 /* city.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = city.h; path = absl/hash/internal/city.h; sourceTree = ""; }; BEE7451B0DF47427A671DA88BB59CC83 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; BEF6DF5864028E3C2AD14E09D21E240F /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; BF0E9AD1D54D168BE2EED10556C27EC9 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - BF2BDCB3DCE8AA66A08BE3492F9E85B8 /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; - BF2FE446350A1E047C2367CD87369454 /* key_field_not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_not_in_filter.cc; path = Firestore/core/src/core/key_field_not_in_filter.cc; sourceTree = ""; }; - BF36737EF3290BF92212CEB76D0F1111 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; + BF2BDCB3DCE8AA66A08BE3492F9E85B8 /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; + BF2FE446350A1E047C2367CD87369454 /* 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 = ""; }; + BF36737EF3290BF92212CEB76D0F1111 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; BF391E4046D3E38846E557EE766872C6 /* 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 = ""; }; - BF53444CA98CB0EEF8C2DE8E7F24355E /* ssl_key_share.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_key_share.cc; path = src/ssl/ssl_key_share.cc; sourceTree = ""; }; + BF53444CA98CB0EEF8C2DE8E7F24355E /* 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 = ""; }; BF735140546D90B9FCCE110DAE6474EA /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = abseil; path = absl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; BFA3FB9DBFA3D42EA939C6DDDB126768 /* 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 = ""; }; - BFAD82D80D202F12003E17BFE2F36495 /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; + BFAD82D80D202F12003E17BFE2F36495 /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; BFB064FE18187EB3C731BEF2215C2048 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; BFB6E1805E7B3DFB71AE091FCE70E7A7 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = src/include/openssl/cast.h; sourceTree = ""; }; - BFC81D8FD83A9D46AE01A23BE7468447 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; - BFF4C2DC688DA522447E4ADF6FF52B56 /* channel_create_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create_impl.cc; path = src/core/ext/transport/binder/client/channel_create_impl.cc; sourceTree = ""; }; + BFC81D8FD83A9D46AE01A23BE7468447 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; + BFF4C2DC688DA522447E4ADF6FF52B56 /* 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 = ""; }; C0181A546BC885270BF0ABB42116D71B /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/support/byte_buffer.h; sourceTree = ""; }; - C025D0ACDF630B43FA270B5A85E82439 /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; + C025D0ACDF630B43FA270B5A85E82439 /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; C05B927A002AB8ACAF7BF2224C480E60 /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; - C065202260D03BDA9AAA9C3FC89C4A2D /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; + C065202260D03BDA9AAA9C3FC89C4A2D /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; C071FFFE6BFD5876239513081F41DEA3 /* channel_arguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arguments.h; path = include/grpcpp/support/channel_arguments.h; sourceTree = ""; }; C07B7906FDE9FDCEE614599B22B4C281 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; C07E225FC776C11EA0F84C20D4E00D68 /* stringpiece.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringpiece.h; path = third_party/re2/re2/stringpiece.h; sourceTree = ""; }; - C080DEC7E66CDD884AA5D181A79249D7 /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_service_config.cc; path = src/core/ext/filters/client_channel/retry_service_config.cc; sourceTree = ""; }; - C0898967AE05308D359F3516E496E156 /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; + C080DEC7E66CDD884AA5D181A79249D7 /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_service_config.cc; path = src/core/ext/filters/client_channel/retry_service_config.cc; sourceTree = ""; }; + C0898967AE05308D359F3516E496E156 /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; C089E3B830A7283C0DB5C5098FED9B0D /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; C08F143799202F9EA4BBD8C7E164FBA8 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; C09630187431D682F28B9EF86B91E3FC /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; C09F988BE5F5A2AFB1AE65EA56151CC3 /* 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 = ""; }; - C0B54C1A94EF671BCA40735DC923B743 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; - C0BE8D08025C9530A7003EBB8368559B /* create_channel_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel_posix.cc; path = src/cpp/client/create_channel_posix.cc; sourceTree = ""; }; + C0B54C1A94EF671BCA40735DC923B743 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; + C0BE8D08025C9530A7003EBB8368559B /* 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 = ""; }; C0EFB6B2E865C9C1C5F304337A94CC15 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/impl/codegen/port_platform.h; sourceTree = ""; }; C0FD7E8CDCE2D3AC3E45F2022FB15C89 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; C1307A7BCACCC3F4A4E9C91FB20801F2 /* FIRResetPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.m; sourceTree = ""; }; - C13BC162567A1BE6DB8C4EECE4EDDF43 /* encrypted_client_hello.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = encrypted_client_hello.cc; path = src/ssl/encrypted_client_hello.cc; sourceTree = ""; }; + C13BC162567A1BE6DB8C4EECE4EDDF43 /* 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 = ""; }; C1401BBCBC6B2957DDA7FD27DBEEF71F /* barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = barrier.h; path = absl/synchronization/barrier.h; sourceTree = ""; }; - C15EE8F33D1ACD481736782683F98BC3 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; - C16D69764B5A336CE2E754A80C2D7336 /* message_decompress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_decompress_filter.cc; path = src/core/ext/filters/http/message_compress/message_decompress_filter.cc; sourceTree = ""; }; - C1707012F867F69FFC65F10497BFCEC4 /* alts_shared_resource.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_shared_resource.cc; path = src/core/tsi/alts/handshaker/alts_shared_resource.cc; sourceTree = ""; }; + C15EE8F33D1ACD481736782683F98BC3 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; + C16D69764B5A336CE2E754A80C2D7336 /* message_decompress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_decompress_filter.cc; path = src/core/ext/filters/http/message_compress/message_decompress_filter.cc; sourceTree = ""; }; + C1707012F867F69FFC65F10497BFCEC4 /* 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 = ""; }; C174AA07C3256E1DA497927FF6962A9D /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; C19801C5C5306C528B28DA52BD5E10AE /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GTMSessionFetcher; path = GTMSessionFetcher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; C1A734BF9CAFB89DFA61BC0BA6A7DB06 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; C1AE2E24967046C26451A573AE94D85A /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; C1D5F80D3D9518CA8312A8A564F580F3 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/support/message_allocator.h; sourceTree = ""; }; - C1FCB318C0C0144F3ED976295FF71A5F /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; + C1FCB318C0C0144F3ED976295FF71A5F /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; C2050AD2DDD42864B31AC7CF1313B383 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; C20B0DF63F30BCB3C59D4F1804F4110C /* type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_traits.h; path = absl/meta/type_traits.h; sourceTree = ""; }; C225D98BEC5D807A2CA9653D0623D835 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; @@ -15516,143 +15516,143 @@ C2456C9738A89EFA5B8A071C2B2732C6 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; C2479404D5324CCA7B5194BA770E6A62 /* 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 = ""; }; C249643E210F1F2C7022B7B6C54BC15A /* hkdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hkdf.h; path = src/include/openssl/hkdf.h; sourceTree = ""; }; - C24BB8BBC14D491017C07EAB5AF616A0 /* cpu-aarch64-fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-fuchsia.c"; path = "src/crypto/cpu-aarch64-fuchsia.c"; sourceTree = ""; }; - C24D078D0AA495C15B5466E120AAFB0E /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; + C24BB8BBC14D491017C07EAB5AF616A0 /* 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 = ""; }; + C24D078D0AA495C15B5466E120AAFB0E /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; C25D306CBA095F95137A49734A38A4AE /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; C264B61845741E4F457B9EDCF2981396 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/impl/codegen/status.h; sourceTree = ""; }; C283B4B18029941C291B5DB40FB284E5 /* leveldb-library-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "leveldb-library-Info.plist"; sourceTree = ""; }; C28F5CFA19045E7315C4DEC6E24A1EED /* FIRTwitterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthProvider.m; sourceTree = ""; }; C2907F9DE65F15117C89FF5CE675D045 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/support/sync_generic.h; sourceTree = ""; }; - C2C9BA32B760A37579467B79FCBFDDE3 /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; + C2C9BA32B760A37579467B79FCBFDDE3 /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; C2D79FD11B6F243423DFA89100E4DEA2 /* FIRMultiFactorConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorConstants.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m; sourceTree = ""; }; C2E8514D03C47A03032FFE5FCAFCAFF2 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/support/time.h; sourceTree = ""; }; - C2F2316CD0DC56F88085F05A94197C8E /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_akeya.c; path = src/crypto/x509v3/v3_akeya.c; sourceTree = ""; }; - C2F8FE67065265A16B1610AC79E7F42F /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; + C2F2316CD0DC56F88085F05A94197C8E /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akeya.c; path = src/crypto/x509v3/v3_akeya.c; sourceTree = ""; }; + C2F8FE67065265A16B1610AC79E7F42F /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; C3026A74C8A47C9916019DC5612A832A /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - C309F76B736E422845A3DDF683DFD0EC /* get_current_time_chrono.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = get_current_time_chrono.inc; path = absl/time/internal/get_current_time_chrono.inc; sourceTree = ""; }; + C309F76B736E422845A3DDF683DFD0EC /* 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 = ""; }; C30E8C02095BE8D5E92A9813AC9D3323 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - C3178AA1C1D7B8AF668B13F35208BB37 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; + C3178AA1C1D7B8AF668B13F35208BB37 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; C318166DEC74F9FDC1958B12F6A22CB4 /* 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 = ""; }; C31858E4515A83E1F4971BB4EFB1ADA4 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; C31D0750EBFDE96E619288FCAE5CB988 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; C340DC74BD921676B8BCF0EC7E201DDA /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; - C34D80071ABCB24F5275D0B26995C805 /* insecure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_server_credentials.cc; path = src/cpp/server/insecure_server_credentials.cc; sourceTree = ""; }; + C34D80071ABCB24F5275D0B26995C805 /* 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 = ""; }; C367CD8F105C4739554637A876574A44 /* FIRAuthBackend+MultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAuthBackend+MultiFactor.m"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.m"; sourceTree = ""; }; C368D6A71A3C78EED135868B46878AB4 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - C36DEB3E1303FC9907F60D9A13C16113 /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_file.cc; path = src/core/lib/iomgr/load_file.cc; sourceTree = ""; }; + C36DEB3E1303FC9907F60D9A13C16113 /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_file.cc; path = src/core/lib/iomgr/load_file.cc; sourceTree = ""; }; C36EC1A4CF3BE368F9605138CD7CB99F /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; C373C8B4F652E5E072559B5DA58DD6ED /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - C380B43CE839010FBBC62AF26CBCFA10 /* transport_stream_receiver_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_stream_receiver_impl.cc; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.cc; sourceTree = ""; }; - C3878639BF87EEB27B1B1A16FD452E87 /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; + C380B43CE839010FBBC62AF26CBCFA10 /* 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 = ""; }; + C3878639BF87EEB27B1B1A16FD452E87 /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; C38798F9AF84AE7241A2F6AC2632E204 /* 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 = ""; }; C3CD6488F7C19732C0D5ADE3B731F6DB /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; C3CFED6ADCDF1D2EFF227DB4836B1822 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; C3F5F8034D114007F023291DE206802F /* 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 = ""; }; - C408EC37BAA293E7155C7D1648D2FD10 /* alts_grpc_privacy_integrity_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; 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 = ""; }; + C408EC37BAA293E7155C7D1648D2FD10 /* 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 = ""; }; C430DE4B2EA74D3BA63BE58F917EA493 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ecdsa/internal.h; sourceTree = ""; }; C43412CF783078771C9977A38D5AB68B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/digest/internal.h; sourceTree = ""; }; - C43F0EAB8EDA84B852C3A713CC2689C5 /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; + C43F0EAB8EDA84B852C3A713CC2689C5 /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; C449FFCCC30AD8E23058396786A3C6FC /* FIRMultiFactorSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorSession.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorSession.h; sourceTree = ""; }; C44C4FD3A6FA9FCC87B572A73B7BCF58 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/impl/codegen/message_allocator.h; sourceTree = ""; }; - C44DDAF38CF22A343A43031C03BC8850 /* grpc_tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc; sourceTree = ""; }; + C44DDAF38CF22A343A43031C03BC8850 /* 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 = ""; }; C462C711E99A867BDC0A5126C46C710A /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - C46576BB3125EA5A63BBE2F24564C6F6 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; + C46576BB3125EA5A63BBE2F24564C6F6 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; C465A378E915E97B7FE609DDC0D28B3C /* 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 = ""; }; C480D3A93BA5EA1C610DF0C1B208B9FD /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; C4990273A131F327C2A6DA911B32D46B /* FIREmailLinkSignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.m; sourceTree = ""; }; C4B8AA83F3EC994CCADAD9294FD100BB /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; C4B941A22C04C8C6DF1143C81758C0D0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; C4C728DE09CE2A2A6159631A1E8D7B19 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - C4CC0C1FF019C419087C5855EBE95A23 /* init_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = init_secure.cc; path = src/core/lib/surface/init_secure.cc; sourceTree = ""; }; - C4E98A827DDC89CDC66B26FA1BBC60EC /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; + C4CC0C1FF019C419087C5855EBE95A23 /* init_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init_secure.cc; path = src/core/lib/surface/init_secure.cc; sourceTree = ""; }; + C4E98A827DDC89CDC66B26FA1BBC60EC /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; C5035EAE6156F66A833FA2CC97DDFBE3 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/cipher/internal.h; sourceTree = ""; }; C50C5B10DBE4BA6B94C7711AA67F4C39 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; C5124ABCF913986F2FBD6E597A502927 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = src/include/openssl/lhash.h; sourceTree = ""; }; - C51B5200207C17F77D9517A51B97C6DB /* time_zone_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_format.cc; path = absl/time/internal/cctz/src/time_zone_format.cc; sourceTree = ""; }; + C51B5200207C17F77D9517A51B97C6DB /* 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 = ""; }; C54E9148FEA94098F4CC3629623CBF7A /* 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 = ""; }; C56B22C77FA201B137512AAEE747F26C /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; C5812F8E628993B351C6066BFE35E56A /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; C59534164E63CD30114D4065A8CBD5DE /* 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 = ""; }; - C5A8B75D615666E91690FA79F7D8FD89 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; - C5AE5875EFB2BA3FAADE1A0F36FA79D0 /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; - C5B6F5FCEDB50DE728724C20810DB6B7 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; - C5BE69C5A2C904956ED2F634D6E20987 /* event_service_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = event_service_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c"; sourceTree = ""; }; + C5A8B75D615666E91690FA79F7D8FD89 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; + C5AE5875EFB2BA3FAADE1A0F36FA79D0 /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; + C5B6F5FCEDB50DE728724C20810DB6B7 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; + C5BE69C5A2C904956ED2F634D6E20987 /* event_service_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c"; sourceTree = ""; }; C5C3218E007EE16E154966A6F39936C0 /* gRPC-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.release.xcconfig"; sourceTree = ""; }; C5C8B26B98A7824DFEFB1F9F680AE3D6 /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; C5E124B89D667ED1449BE4C47509B52A /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - C5F13CBEDBF4289B7B9D1A04082910E5 /* pcy_data.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_data.c; path = src/crypto/x509v3/pcy_data.c; sourceTree = ""; }; + C5F13CBEDBF4289B7B9D1A04082910E5 /* pcy_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_data.c; path = src/crypto/x509v3/pcy_data.c; sourceTree = ""; }; C5FAAA7556C6DA30CE973C8CEF0C7EED /* 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 = ""; }; - C5FC4119F20B28824DC1F434BBC1607D /* elf_mem_image.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = elf_mem_image.cc; path = absl/debugging/internal/elf_mem_image.cc; sourceTree = ""; }; + C5FC4119F20B28824DC1F434BBC1607D /* 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 = ""; }; C60F67B29A445EDFA19D3D40C7132D24 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; C6109CFE5F5C0D455544CAC1F2CE1120 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; C61C6E21E370D90A0AF9C13AD012973F /* 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 = ""; }; C61FE6CD94AEC48833C25BFA1E014AD5 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; C621179BFB1E37F5306E3CD5329A64CC /* FIRAuthAPNSTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSTokenManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.m; sourceTree = ""; }; C65F4480E8AAB8456693B6C7292E8837 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - C6A614687D8D96084D0809B9DBC13200 /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; - C6AF56E05FC2FE32ECEAA6204218D847 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; name = kqueue.c; path = src/unix/kqueue.c; sourceTree = ""; }; - C6C32CF6931BAE69159E53D68CAEFA01 /* lds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c"; sourceTree = ""; }; + C6A614687D8D96084D0809B9DBC13200 /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; + C6AF56E05FC2FE32ECEAA6204218D847 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kqueue.c; path = src/unix/kqueue.c; sourceTree = ""; }; + C6C32CF6931BAE69159E53D68CAEFA01 /* lds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c"; sourceTree = ""; }; C6C9742D5F12BF35FFE06B12EF359D6A /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; C6D86630663F758EA2D3029744C730C4 /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = Firestore/Source/API/FIRTimestamp.m; sourceTree = ""; }; C6DE9B717DC0FEA593046F3A90FDB8AF /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - C6EA938BA2D74D97E81DD55F0F7C3E43 /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel.cc; path = src/core/ext/filters/client_channel/subchannel.cc; sourceTree = ""; }; + C6EA938BA2D74D97E81DD55F0F7C3E43 /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel.cc; path = src/core/ext/filters/client_channel/subchannel.cc; sourceTree = ""; }; C6ED1D2DD590E86D9F22C0BAD48C6BB6 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; C6FA280F4CB294DDADC936C906E8E172 /* FIRCoreDiagnostics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnostics.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h; sourceTree = ""; }; - C7092725CD6866BAD043B6BBB2434107 /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; - C725D72881475EB1E4C44CAABCFDE942 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; + C7092725CD6866BAD043B6BBB2434107 /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; + C725D72881475EB1E4C44CAABCFDE942 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; C7269CBBBB056E18A8989C8BA49561DC /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - C754FD76ABD2B110D8118F685362AA51 /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; + C754FD76ABD2B110D8118F685362AA51 /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; C75D296438925FC92ABFA90B90F9BFC8 /* FIRAuthAPNSTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.h; sourceTree = ""; }; C7629139556F5591A69225C1C4A4E5F9 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/impl/codegen/interceptor.h; sourceTree = ""; }; - C765437E421FAC1FFC95D9BC8EB9A1DD /* fs-poll.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "fs-poll.c"; path = "src/fs-poll.c"; sourceTree = ""; }; + C765437E421FAC1FFC95D9BC8EB9A1DD /* fs-poll.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "fs-poll.c"; path = "src/fs-poll.c"; sourceTree = ""; }; C76FA5CDBBAE22AAB9DBFBE95E3B330F /* write_batch_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch_internal.h; path = db/write_batch_internal.h; sourceTree = ""; }; - C782842554B9F337E71CD48E2C85E5EF /* sync_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_posix.cc; path = src/core/lib/gpr/sync_posix.cc; sourceTree = ""; }; - C7B775C26829ED5BC91474B6A43CB9CC /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; + C782842554B9F337E71CD48E2C85E5EF /* sync_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_posix.cc; path = src/core/lib/gpr/sync_posix.cc; sourceTree = ""; }; + C7B775C26829ED5BC91474B6A43CB9CC /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; C7C58B7F97CDE713ADE08F118160FEA4 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; C7C80B9D1D22E6DFB41051C9CA6E49F7 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; C7E80206B45ADDCEAB1569064FDA5ACD /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; C7F0EED370268E10143DD7516508E404 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; C7F2144D96047B76445CFC21184EC9A0 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; C805321F397B4B00FAAFD18D1288C36E /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/impl/codegen/sync.h; sourceTree = ""; }; - C8485145882155D44FD39FE4D318CBD9 /* query_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_listener_registration.cc; path = Firestore/core/src/api/query_listener_registration.cc; sourceTree = ""; }; - C84AF9160F4FD8BA56412517C9DE9414 /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; + C8485145882155D44FD39FE4D318CBD9 /* 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 = ""; }; + C84AF9160F4FD8BA56412517C9DE9414 /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; C84F92D72E05064A11C297612A80AA00 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/impl/codegen/stub_options.h; sourceTree = ""; }; C863B9815B90F21CFBD4CD5E2CA640D6 /* 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 = ""; }; C8671C2960EEE6841CC7A15BE702D244 /* FirebaseAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.debug.xcconfig; sourceTree = ""; }; - C869A9447A230E6F32C9AEB80C606443 /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; + C869A9447A230E6F32C9AEB80C606443 /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; C87A121731B0E72BA0E8122F4BCE45FC /* FIRFinalizeMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.h; sourceTree = ""; }; C88EA6C7101BBD747B97A0B7481DAC4A /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; C8A770B7AABB4322CF784037E10DAC70 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/optional.h; sourceTree = ""; }; C8AC3660DECA55EDD75182491BE0E02E /* 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 = ""; }; C8B8E272838902ADC69770B38F458226 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = ""; }; C8C1060B2E162C905C627700F8894361 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - C8C6CD11CED6B0BDF15944727972ABB8 /* tsi_error.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tsi_error.cc; path = src/core/lib/security/transport/tsi_error.cc; sourceTree = ""; }; - C8C751CB698DA970855E6D515D81C9BE /* route_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c"; sourceTree = ""; }; - C8D8F191902ACBE0F9EDCB74002C74E3 /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; + C8C6CD11CED6B0BDF15944727972ABB8 /* 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 = ""; }; + C8C751CB698DA970855E6D515D81C9BE /* route_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c"; sourceTree = ""; }; + C8D8F191902ACBE0F9EDCB74002C74E3 /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; C8F7FCD73D7043163D3436BE5E6A9B86 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; - C90F6CF45AD2EEE90F41347E67511EF8 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; - C91559F5E07109588C37C0D2D1A46486 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; - C91B02EEFA3E664251FDF793BCAA4794 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; + C90F6CF45AD2EEE90F41347E67511EF8 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; + C91559F5E07109588C37C0D2D1A46486 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; + C91B02EEFA3E664251FDF793BCAA4794 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; C92CE0EACD0FC38840D6952A90BE5F5F /* 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 = ""; }; - C9429E0E6D8F7BF91DC68FF398D7ED89 /* local_documents_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_documents_view.cc; path = Firestore/core/src/local/local_documents_view.cc; sourceTree = ""; }; - C9509D87C0A4DDAD090B3C9631D46A12 /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; - C9511868A4CEA24D50389DAB2D7BEFC0 /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; + C9429E0E6D8F7BF91DC68FF398D7ED89 /* 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 = ""; }; + C9509D87C0A4DDAD090B3C9631D46A12 /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; + C9511868A4CEA24D50389DAB2D7BEFC0 /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; C95978BDFFF773913E34C5ED2DB9488F /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; C96CFA094D08F6CA77B07E8EBBC2CC98 /* FIRSendVerificationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.h; sourceTree = ""; }; - C9701281FDA344DBA24DF7E07024D6B4 /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; + C9701281FDA344DBA24DF7E07024D6B4 /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; C9752E1EBD2815BC2CD3D61E95571CBA /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - C9853E639C92F35434C27D19B4960659 /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; + C9853E639C92F35434C27D19B4960659 /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; C98EFC6D454E6CDF5D7C99C1E1FEFA5D /* 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 = ""; }; C997D04DC51A54D4B2318DB1F5AEA7D9 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; C998A8231621FB295F4B4010E042AE41 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - C9B5D395F4C7395880FEC38279818836 /* loop.c */ = {isa = PBXFileReference; includeInIndex = 1; name = loop.c; path = src/unix/loop.c; sourceTree = ""; }; + C9B5D395F4C7395880FEC38279818836 /* loop.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = loop.c; path = src/unix/loop.c; sourceTree = ""; }; C9B66061FF666FD862D90913825CED03 /* 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 = ""; }; C9D8AE15FFFB887131033ADAA1AD8CD9 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - C9DACB60866DE5EC67581EE57AAA2414 /* alts_seal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_seal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc; sourceTree = ""; }; - CA203005E2A8CEBFA37A200D2ADED6AB /* socket_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_posix.cc; path = src/core/lib/iomgr/socket_utils_posix.cc; sourceTree = ""; }; + C9DACB60866DE5EC67581EE57AAA2414 /* 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 = ""; }; + CA203005E2A8CEBFA37A200D2ADED6AB /* 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 = ""; }; CA2E1EAFC399537BCAFBE133BC2B1004 /* filtered_re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filtered_re2.h; path = third_party/re2/re2/filtered_re2.h; sourceTree = ""; }; CA3D0ADFC3A26CA2391392CBA33D0C59 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - CA428B7057A5A62FB68686C4F09239DD /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_parser.cc; path = src/core/lib/service_config/service_config_parser.cc; sourceTree = ""; }; + CA428B7057A5A62FB68686C4F09239DD /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_parser.cc; path = src/core/lib/service_config/service_config_parser.cc; sourceTree = ""; }; CA432932CA7C470A3DF820BB6360486E /* FIRAuthErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrors.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h; sourceTree = ""; }; CA542F9D5EBAA2648641D0696B7DFAC5 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; CA6AF997449AB6C9E406D9576E3CF119 /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = util/no_destructor.h; sourceTree = ""; }; @@ -15663,51 +15663,51 @@ CABC20E5064D11C863B55866F6D74AD3 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; CABD9C6B4B12971819F0BB5FE75CE838 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; CABDE50BEA39C96AECB3BEEFDA031110 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - CACBC4FBE9681958C6A8F52CD5B1DF40 /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; + CACBC4FBE9681958C6A8F52CD5B1DF40 /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; CACC8B25D9AC22712B4DC3749F6CDEF5 /* FIRVerifyAssertionResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.m; sourceTree = ""; }; CADBE25E9532EE62AC80186E0C392EFC /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; - CB12FE3D2DB278EC95BA232B873626CB /* thread_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_quota.cc; path = src/core/lib/resource_quota/thread_quota.cc; sourceTree = ""; }; - CB16C0F892A968FEF894B2D211E63F25 /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; + CB12FE3D2DB278EC95BA232B873626CB /* 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 = ""; }; + CB16C0F892A968FEF894B2D211E63F25 /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; CB25817ED74FEAB86AD0696FCF1FF893 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; CB3434DB42D580FF9206FCA5DC1B7285 /* gaussian_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gaussian_distribution.h; path = absl/random/gaussian_distribution.h; sourceTree = ""; }; - CB4D14A531525F369307B4D8D5300CF9 /* stream.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stream.c; path = src/unix/stream.c; sourceTree = ""; }; + CB4D14A531525F369307B4D8D5300CF9 /* stream.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stream.c; path = src/unix/stream.c; sourceTree = ""; }; CB554E4EFAE2152B9F0F887AAA50F612 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - CB66DD72E8C1A2D3A12051569026F198 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - CB87F14890BC900D8882C824C4365F72 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; + CB66DD72E8C1A2D3A12051569026F198 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; + CB87F14890BC900D8882C824C4365F72 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; CB90DC8E59620E9204E545F3B1EFF01B /* gRPC-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-Core.modulemap"; sourceTree = ""; }; CB97F2AEDDD7B018E84CECF9EA3CA927 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - CBB9ABE80AE02D4BA51EBD6FD14CAC50 /* x86_64-gcc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "x86_64-gcc.c"; path = "src/crypto/fipsmodule/bn/asm/x86_64-gcc.c"; sourceTree = ""; }; + CBB9ABE80AE02D4BA51EBD6FD14CAC50 /* 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 = ""; }; CBE18E936DE3AEF0D077965B343DF523 /* 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 = ""; }; CC063C2A7B8CB16DF2DFD45FBBD5CA20 /* arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arm_arch.h; path = src/include/openssl/arm_arch.h; sourceTree = ""; }; CC08A282FD10411FBFB14760A5279F1B /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - CC0A5D90843E279269F9A66DA5AD1C87 /* stacktrace_emscripten-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_emscripten-inl.inc"; path = "absl/debugging/internal/stacktrace_emscripten-inl.inc"; sourceTree = ""; }; + CC0A5D90843E279269F9A66DA5AD1C87 /* 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 = ""; }; CC0BD34C39553239FE70DFB4FA7F6483 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/unix/spinlock.h; sourceTree = ""; }; CC0CBDAFB6698BA7CC2DAAC93ED2FFE6 /* FIRGetOOBConfirmationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.m; sourceTree = ""; }; - CC2AF9358F90E27C92C5EE8088F89502 /* custom_tag.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = custom_tag.upb.c; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c"; sourceTree = ""; }; + CC2AF9358F90E27C92C5EE8088F89502 /* custom_tag.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upb.c; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c"; sourceTree = ""; }; CC2B41542185814F8B2E458C30ED2F92 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; CC2F8AC21E20AE51FFE111ABB972A7BD /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; CC3A0B9BF28899FB9B0139659E71B356 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; CC72DE90953D843CA4A9CDF23F33366B /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - CC7E2A7F82347F1D0D3DCD64E95B64B8 /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; + CC7E2A7F82347F1D0D3DCD64E95B64B8 /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; CC8F9E037B1CCC32C489B94082E3E01D /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - CC90425DD9169FFEADA8355B46159D01 /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; + CC90425DD9169FFEADA8355B46159D01 /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; CC9D9002A2F38A3892043EC9E0BF3891 /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; CCA0559AD89F4C152AA990E7F686E22B /* pretty_function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pretty_function.h; path = absl/base/internal/pretty_function.h; sourceTree = ""; }; - CCAA24BD543FAD45679BB35E20E75EF2 /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; + CCAA24BD543FAD45679BB35E20E75EF2 /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; CCABC239B4A170829EF83176891AFCC8 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = absl/random/random.h; sourceTree = ""; }; CCB304597FED9277C05362D1BC6433A1 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/span.h; sourceTree = ""; }; - CCB58DF526AD4589CB46243E1739BCB4 /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.c"; sourceTree = ""; }; - CCB7B9E539043AC58010754DCF25C64F /* stats.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.upb.c; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c"; sourceTree = ""; }; + CCB58DF526AD4589CB46243E1739BCB4 /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.c"; sourceTree = ""; }; + CCB7B9E539043AC58010754DCF25C64F /* stats.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upb.c; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c"; sourceTree = ""; }; CCD3458F0E0060AE7CAC7A5C21933035 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = src/include/openssl/rc4.h; sourceTree = ""; }; CCD8D9D7DC02DD36502C40878046E492 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; CCDD770CE4C3ADCF3BE8F8901FD0BD11 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - CD10693D79C4585EB7768E62B52B9822 /* memory_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_bundle_cache.cc; path = Firestore/core/src/local/memory_bundle_cache.cc; sourceTree = ""; }; + CD10693D79C4585EB7768E62B52B9822 /* 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 = ""; }; CD215B139F99764ECFB4ABE97A34FCE1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/internal.h; sourceTree = ""; }; CD49DBCE5F26C030D3026C20CC3B4633 /* FIROAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h; sourceTree = ""; }; CD5C4BC9194C5D8456F456356066A8D0 /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; - CD61D5C404275309588C25D934759FF7 /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; - CD70ACA3F6A313E808CA86A0A53A0203 /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; - CD79C45A43DBD53D96E4584895F586DD /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; + CD61D5C404275309588C25D934759FF7 /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; + CD70ACA3F6A313E808CA86A0A53A0203 /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; + CD79C45A43DBD53D96E4584895F586DD /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; CD8FB3756F6658B26C1416C73BC4E6DA /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/base/config.h; sourceTree = ""; }; CD9035BC8BCF884010568F764CAC6565 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; CDB37A77A9F84910B17B9F14844F5A59 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; @@ -15715,9 +15715,9 @@ CDB9354E8802B92EE62BAFBF065D4710 /* FIRAuthWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebView.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.m; sourceTree = ""; }; CDF34C585EF858951B444984D28BBD12 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; CDF6EA864689F2CC9D215984D6B411D0 /* compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compare.h; path = absl/types/compare.h; sourceTree = ""; }; - CE0237899554CBB5F63DDAA329A2E06F /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; + CE0237899554CBB5F63DDAA329A2E06F /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; CE03DE28E455BF7EA43BA2D1DAC48B55 /* FIRDeleteAccountRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.m; sourceTree = ""; }; - CE1D3F5CECF3126959D7FE0D1F812792 /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; + CE1D3F5CECF3126959D7FE0D1F812792 /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; CE2A944A1ECC8689E7A9DDDB9023F511 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; CE325CF2B3B0AB572793CC4925DD03E2 /* 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 = ""; }; CE3EDB15AA47F928FC042E2FFAC93322 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; @@ -15727,42 +15727,42 @@ CE8765B3053874E73AFDC78B5D6B4396 /* CLTypingLabel */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CLTypingLabel; path = CLTypingLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; CEE92F69E76D3A4C9CEAA12B91A26695 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; CEEE2EDA66AEC36646307BFF0AC34628 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/impl/codegen/sync_windows.h; sourceTree = ""; }; - CF2126D3715D7168FDF9329EFBF6BDA3 /* target_index_matcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_index_matcher.cc; path = Firestore/core/src/model/target_index_matcher.cc; sourceTree = ""; }; + CF2126D3715D7168FDF9329EFBF6BDA3 /* 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 = ""; }; CF2C3151D883C28CD63E7386697F4B5D /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - CF3F3AA21887C68B6B22D4563A4E23D9 /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; - CF46505CD318965F101C06DE376A38C7 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = address_filtering.cc; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.cc; sourceTree = ""; }; - CF4CCCE0933285D444F1B3FCD018A42C /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; + CF3F3AA21887C68B6B22D4563A4E23D9 /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; + CF46505CD318965F101C06DE376A38C7 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = address_filtering.cc; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.cc; sourceTree = ""; }; + CF4CCCE0933285D444F1B3FCD018A42C /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; CF7FC3F5BBA14AB71E73986111C0C5BE /* bind_front.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind_front.h; path = absl/functional/bind_front.h; sourceTree = ""; }; CF84102C19E84A907B43C8B687D2EC5E /* container.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container.h; path = absl/algorithm/container.h; sourceTree = ""; }; - CF8EDF4A7DD376AC2749424763FABB28 /* substitution_format_string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = substitution_format_string.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c"; sourceTree = ""; }; - CFA4F84ADDE9D42E8A533CA19310F62D /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; - CFA9D0C4C390F2E6682AC1BF86962118 /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; - CFBD1990DB242CCF51D6F5241BBD8BA4 /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; - CFBF0C6B12A6980CE9C1AB6441B71051 /* default_health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = default_health_check_service.cc; path = src/cpp/server/health/default_health_check_service.cc; sourceTree = ""; }; + CF8EDF4A7DD376AC2749424763FABB28 /* substitution_format_string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c"; sourceTree = ""; }; + CFA4F84ADDE9D42E8A533CA19310F62D /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; + CFA9D0C4C390F2E6682AC1BF86962118 /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; + CFBD1990DB242CCF51D6F5241BBD8BA4 /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; + CFBF0C6B12A6980CE9C1AB6441B71051 /* 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 = ""; }; CFCBF557B450C28C62115DA5A09D5BA5 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - CFD081566DFEC6AC03DDE5B3C7256851 /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = global_subchannel_pool.cc; path = src/core/ext/filters/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; + CFD081566DFEC6AC03DDE5B3C7256851 /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = global_subchannel_pool.cc; path = src/core/ext/filters/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; CFFB70412FE861E520AFACE9517AF9DE /* GDTCOREndpoints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREndpoints.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m; sourceTree = ""; }; CFFF274942974D8426972695EE62AA5A /* 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 = ""; }; D01D764F848732762154906CA67EDE28 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; D0366A98ADDD50070B9F9A40359225F7 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - D080EA6F461026ECFFBE2225B832311E /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; + D080EA6F461026ECFFBE2225B832311E /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; D08A2638176BCEEA41B0DAF7016F25A7 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/poly1305/internal.h; sourceTree = ""; }; D0B1EE73AF16D4A5AB6FABF5065CBE44 /* FIRStartMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.h; sourceTree = ""; }; - D0CD146BB23ADA6C8DE4CC62EDD8F601 /* secure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_server_credentials.cc; path = src/cpp/server/secure_server_credentials.cc; sourceTree = ""; }; - D0D57CC0DF6920802DFB3317EE2240BB /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; - D0E34BEAE195F627DC431779EE2B11B2 /* a_utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_utf8.c; path = src/crypto/asn1/a_utf8.c; sourceTree = ""; }; + D0CD146BB23ADA6C8DE4CC62EDD8F601 /* 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 = ""; }; + D0D57CC0DF6920802DFB3317EE2240BB /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; + D0E34BEAE195F627DC431779EE2B11B2 /* a_utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_utf8.c; path = src/crypto/asn1/a_utf8.c; sourceTree = ""; }; D0E85C6EED65C44F5B979A374A81034E /* FIRAuthProtoMFAEnrollment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoMFAEnrollment.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.m; sourceTree = ""; }; - D0FE88D8D2512BABB09D84291E98BDED /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; + D0FE88D8D2512BABB09D84291E98BDED /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; D10509B00BE01DD3698883859BB908C5 /* FIRAuth_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuth_Internal.h; sourceTree = ""; }; D11F8528FCA68FD9E9D3DB4A443E448E /* FIRSetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.m; sourceTree = ""; }; - D1278476EEAF9DCBA841C37F3109080A /* connectivity_monitor_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_monitor_apple.mm; path = Firestore/core/src/remote/connectivity_monitor_apple.mm; sourceTree = ""; }; - D13697CC896FF38298F4E35327AA46A4 /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; + D1278476EEAF9DCBA841C37F3109080A /* 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 = ""; }; + D13697CC896FF38298F4E35327AA46A4 /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; D13D74CB48A75E26EB2CA5C2B4235795 /* FIRAdditionalUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAdditionalUserInfo.m; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo.m; sourceTree = ""; }; - D17BA513E45AD12BA2ADFFCAD7C1CACC /* mpmcqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mpmcqueue.cc; path = src/core/lib/iomgr/executor/mpmcqueue.cc; sourceTree = ""; }; - D18FD77FC0C53EBA15ABA83EDB7480C0 /* base.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c"; sourceTree = ""; }; + D17BA513E45AD12BA2ADFFCAD7C1CACC /* mpmcqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mpmcqueue.cc; path = src/core/lib/iomgr/executor/mpmcqueue.cc; sourceTree = ""; }; + D18FD77FC0C53EBA15ABA83EDB7480C0 /* base.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c"; sourceTree = ""; }; D1A4740E2C1BF014B7C22B066D82FCD0 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; D1A6C9AE0E511F6442B4343F210DD8A7 /* 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 = ""; }; - D1AA625C021C4761EAC2FD5B2FA5366F /* alts_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_counter.cc; path = src/core/tsi/alts/frame_protector/alts_counter.cc; sourceTree = ""; }; + D1AA625C021C4761EAC2FD5B2FA5366F /* 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 = ""; }; D1AE94F64AB48AA3BA2E6A823B375E5D /* base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.h; path = src/include/openssl/base.h; sourceTree = ""; }; D1BF1B629F0D9837451E1439695FA3A2 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; D1C858F819921D5FD0F665E90B34271D /* FIRActionCodeSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRActionCodeSettings.m; path = FirebaseAuth/Sources/Auth/FIRActionCodeSettings.m; sourceTree = ""; }; @@ -15773,7 +15773,7 @@ D201AE938325688A6F184084D68B7B36 /* log_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_format.h; path = db/log_format.h; sourceTree = ""; }; D212BAB6F36CDA459758DC064DBF0801 /* getrandom_fillin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = getrandom_fillin.h; path = src/crypto/fipsmodule/rand/getrandom_fillin.h; sourceTree = ""; }; D2299334CC90B4B12520DC15F16FC1F8 /* FIRAuthWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebViewController.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.h; sourceTree = ""; }; - D25B6C442FF545F49CEFEAF985590F2D /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_client_stats.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; + D25B6C442FF545F49CEFEAF985590F2D /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_client_stats.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; D271BC81566FE43E6A30021BDF1FF2E3 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; D288EF42924243D421A2DF302D696E7E /* 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 = ""; }; D2BC235A12F6C796B35D7371BA1AA852 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; @@ -15782,19 +15782,19 @@ D31088DAB37DE2293502AB4C2C235526 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; D32EEB7FA859C547483EFC63973D03DB /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = util/crc32c.h; sourceTree = ""; }; D336A7ACE4B95A3B5F8A8D1E3EAF3099 /* str_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split.h; path = absl/strings/str_split.h; sourceTree = ""; }; - D341324B667D52FF17BB9DEB60FAEA2D /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; + D341324B667D52FF17BB9DEB60FAEA2D /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; D3775D0CDC52BDD5A7CFD3EE88368628 /* FIRAuthStoredUserManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthStoredUserManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.m; sourceTree = ""; }; D37875305F6A495BA1F49510058F5E64 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; D396619CDC2A3F891AE60AFDE0FD8F0D /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; D39AC4C19A7AB69AFE17F5704DBCD3E7 /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; - D3D6F222923616FCD2E92FC8F0A9E835 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; + D3D6F222923616FCD2E92FC8F0A9E835 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; D3EEF546AA4F79705AC98DACDE3A51E5 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; D42394AFD21771B30F21D48CC55A5C8D /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; - D434BDC04715A1EDA7B91096A897AC44 /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; - D43B052152B2FCB5579B8AE0F75FFFC6 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; - D47048AB6CBE069988DF05B1D60FFC5E /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; + D434BDC04715A1EDA7B91096A897AC44 /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; + D43B052152B2FCB5579B8AE0F75FFFC6 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; + D47048AB6CBE069988DF05B1D60FFC5E /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; D4A48F0FC2B5B383E5549A55EC186092 /* curve25519_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64.h; path = src/third_party/fiat/curve25519_64.h; sourceTree = ""; }; - D4AF8E54559D6984DFC27D03A680EAD6 /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; path = err_data.c; sourceTree = ""; }; + D4AF8E54559D6984DFC27D03A680EAD6 /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = err_data.c; sourceTree = ""; }; D4C81AAE6F95E9DC58CD6BB8014B1A3E /* 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 = ""; }; D4D3D25A4EEC86ADFE439BAE0D32F9F1 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; D4EEBEB7898F2FE1A175505C29D11F80 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; @@ -15806,68 +15806,68 @@ D5308B145BF7938146E0E27F9F531C95 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/internal/span.h; sourceTree = ""; }; D5397304C266A806CDF6150D539B04AD /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; D543BC6FB6E3DB0066CC5AC3C589CEE5 /* 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 = ""; }; - D54CC4A988C6BF58A89322CADB3D7F53 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c"; sourceTree = ""; }; + D54CC4A988C6BF58A89322CADB3D7F53 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c"; sourceTree = ""; }; D55736FA019DE944E9BF69ACBB520148 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; - D55B6488075C9D963E44ACCC5D36E521 /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker.cc; path = src/core/lib/channel/handshaker.cc; sourceTree = ""; }; - D56A9D5E4B8D0F2DACB027EEBF47047E /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; + D55B6488075C9D963E44ACCC5D36E521 /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker.cc; path = src/core/lib/channel/handshaker.cc; sourceTree = ""; }; + D56A9D5E4B8D0F2DACB027EEBF47047E /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; D56F948E9047188CE4C2B2366B8E71DB /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; D58712F06503B873DE8C8927559B158B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/modes/internal.h; sourceTree = ""; }; D597823B6ABD6474B4C340558C63BFA6 /* skiplist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skiplist.h; path = db/skiplist.h; sourceTree = ""; }; D5A8123E62684C3D6ECE4DFDA0832DEB /* FIRAuthDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDispatcher.h; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h; sourceTree = ""; }; D5AF258E4577E6ECFDC07B7D70237A35 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; D5D3D20598A55161711B9B6E509BF708 /* 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 = ""; }; - D5DF8494FFFDECFE6AC1E315C51FDFA2 /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; + D5DF8494FFFDECFE6AC1E315C51FDFA2 /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; D6084F302AF7DE26462CE35B96D689D1 /* 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 = ""; }; - D61FCF06A99C152C877D668205EAE127 /* log_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_linux.cc; path = src/core/lib/gpr/log_linux.cc; sourceTree = ""; }; - D620BCDF1AEB62F6BAC0833653E67E8C /* common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c"; sourceTree = ""; }; + D61FCF06A99C152C877D668205EAE127 /* log_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_linux.cc; path = src/core/lib/gpr/log_linux.cc; sourceTree = ""; }; + D620BCDF1AEB62F6BAC0833653E67E8C /* common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c"; sourceTree = ""; }; D62734CBF3A3CF169A326C3AA4874874 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; D63E35D73C8758A1BFE4882CB13519CE /* 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 = ""; }; - D65CAD5624BD2F29D6B46EFE7F095817 /* aws_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aws_external_account_credentials.cc; path = src/core/lib/security/credentials/external/aws_external_account_credentials.cc; sourceTree = ""; }; + D65CAD5624BD2F29D6B46EFE7F095817 /* 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 = ""; }; D672F3F3F312F2306B924BEC11F7DC20 /* 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 = ""; }; - D678AA0C66CD6BE034B10A87C4F259D0 /* hpack_encoder_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_encoder_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc; sourceTree = ""; }; + D678AA0C66CD6BE034B10A87C4F259D0 /* 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 = ""; }; D67C77147745C4A24D1AF5072FEDA0CC /* cordz_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_info.h; path = absl/strings/internal/cordz_info.h; sourceTree = ""; }; D6C60E3941E66348B76800E5F9E3F5FF /* distribution_caller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distribution_caller.h; path = absl/random/internal/distribution_caller.h; sourceTree = ""; }; D6D5D58B5E8527BB18328F77710A33BF /* 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 = ""; }; - D71A76C212C2678D75A263CE58A8AD06 /* json_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_token.cc; path = src/core/lib/security/credentials/jwt/json_token.cc; sourceTree = ""; }; + D71A76C212C2678D75A263CE58A8AD06 /* 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 = ""; }; D71D6E7417FA89D1FCB946E368E0ED5A /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/thread_annotations.h; sourceTree = ""; }; D730797E39DF8B969E19E57AAFF8FEE6 /* status_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_internal.h; path = absl/status/internal/status_internal.h; sourceTree = ""; }; D73EDA482871B4A469E78259B2138A8D /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - D74C0DBAC3C74BF1DF99DDE17F9B8FB1 /* outlier_detection.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c"; sourceTree = ""; }; + D74C0DBAC3C74BF1DF99DDE17F9B8FB1 /* outlier_detection.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c"; sourceTree = ""; }; D77538918830180FEB3FC2011A25CD4E /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; D7810A76693B06E29CF3126FEF8A7D1A /* 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 = ""; }; - D7881D3A9F10FC22663BE44A7D6C427D /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; - D79A4F5BB76F6BF5BD9A1968A3F80295 /* upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upb.c; path = third_party/upb/upb/upb.c; sourceTree = ""; }; + D7881D3A9F10FC22663BE44A7D6C427D /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; + D79A4F5BB76F6BF5BD9A1968A3F80295 /* upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upb.c; path = third_party/upb/upb/upb.c; sourceTree = ""; }; D7A1BCC1BD351D2E82C4A73CDAD1E3B1 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/support/sync.h; sourceTree = ""; }; - D7A4D4F24271BABBA08D314EB1F8DA79 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; - D7A6E1BD7B1922B011D56859695076BD /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; + D7A4D4F24271BABBA08D314EB1F8DA79 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; + D7A6E1BD7B1922B011D56859695076BD /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; D7B07C3D9BF4FC3E9BAE8CEDFEF26ABD /* gpr_slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_slice.h; path = include/grpc/impl/codegen/gpr_slice.h; sourceTree = ""; }; D7B80E822D54F8ACB4C46012E8FB7E6B /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; D7D415C7C36A9A8D7F3F9675703F552E /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; D7D50A83BA802440535A19E241DE58AA /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - D7FCE6674BA17AF287B0D45E98D523B8 /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; + D7FCE6674BA17AF287B0D45E98D523B8 /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; D8417D60AFAAC26362E49B188B8C5DE5 /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; D84906327689C0432C441F86D5E92F54 /* FIRUserMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserMetadata.m; path = FirebaseAuth/Sources/User/FIRUserMetadata.m; sourceTree = ""; }; D85093D2E5A2786BA6F08D51D6B94DC9 /* FIRAuthKeychainServices.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthKeychainServices.m; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.m; sourceTree = ""; }; D854381C4F85DC44C055AE41D1BFEDF9 /* FIRSecureTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.m; sourceTree = ""; }; D85C569EC3C4CDADDF6D05C449DD50B2 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; - D8693045961A4F90EB797D43A606E523 /* byte_stream_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream_apple.mm; path = Firestore/core/src/util/byte_stream_apple.mm; sourceTree = ""; }; - D86D20653032359E9748E2D481FF13A6 /* alts_iovec_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_iovec_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc; sourceTree = ""; }; - D873FD51C63E7E9AC400868B6B35AA0F /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; + D8693045961A4F90EB797D43A606E523 /* 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 = ""; }; + D86D20653032359E9748E2D481FF13A6 /* 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 = ""; }; + D873FD51C63E7E9AC400868B6B35AA0F /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; D89E60C69C9D8691D454FB1B145ED0F4 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; D8A6510FEAF022F1A7D52FAB5DF8E970 /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/codegen/propagation_bits.h; sourceTree = ""; }; D8D76ECB21C28DC7140E59D0E33290F9 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - D8DE4E2C9C14967A29E55F97DC61342D /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; + D8DE4E2C9C14967A29E55F97DC61342D /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; D8DE670129A60E52265947F84F2B39A8 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; D8F18D863A904F7D9A7D3DCEF0753001 /* 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 = ""; }; - D937FAE2336CFED96D2E760413BD2C52 /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; + D937FAE2336CFED96D2E760413BD2C52 /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; D93BA2E1EAFFA2E2E92C9EAA934DE96B /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - D93C74FF2F3EB52B18FBA4028AF762A7 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; + D93C74FF2F3EB52B18FBA4028AF762A7 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; D93F471F1CB78A80D807F8494A18278C /* 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 = ""; }; D94C17DF99BBF14FD287F41375DF2721 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; D94E3A1CB3C6DCD6DCF73B5FEBAF55A9 /* 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 = ""; }; D9510ADE57176A17E624D0973FBFD810 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - D96D70C8DF3C10C3AA273E260D59BD7A /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; - D97C24A3A1EA7413ED97C014D2C7D1FF /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; + D96D70C8DF3C10C3AA273E260D59BD7A /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; + D97C24A3A1EA7413ED97C014D2C7D1FF /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; D97CA3AEF43D21B8BF128FB1F7782F5C /* grpc_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_posix.h; path = include/grpc/grpc_posix.h; sourceTree = ""; }; D97D1568AF51BD1FCBC9CA817FB74DB2 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/bits.h; sourceTree = ""; }; D9BD501CC4F60EAF7EAC0DC5C35A9811 /* BoringSSL-GRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.release.xcconfig"; sourceTree = ""; }; @@ -15877,39 +15877,39 @@ DA49D325838E71B66BCCEE312008835E /* fork_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork_detect.h; path = src/crypto/fipsmodule/rand/fork_detect.h; sourceTree = ""; }; DA5049626C841D064ED3EF1E3BAD31B3 /* FIRUserInfoImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfoImpl.h; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.h; sourceTree = ""; }; DA70F32C24EBC6AF33B5DBC101D36ED3 /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; - DA906284FC068648F7216A429E622F62 /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; + DA906284FC068648F7216A429E622F62 /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; DABA334080FF1B8BC3C3702CF0D77E81 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; - DAD4C2942F03A926CA0F41061B13AC86 /* civil_time_detail.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = civil_time_detail.cc; path = absl/time/internal/cctz/src/civil_time_detail.cc; sourceTree = ""; }; + DAD4C2942F03A926CA0F41061B13AC86 /* 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 = ""; }; DAEA55D952FC7E5F38FCA8F814871D05 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = src/include/openssl/safestack.h; sourceTree = ""; }; DAEE076E65297226B99003203899237E /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - DAF4BD13C4CDBC3FD9BA2324E42B1467 /* xds_channel_creds.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_channel_creds.cc; path = src/core/ext/xds/xds_channel_creds.cc; sourceTree = ""; }; + DAF4BD13C4CDBC3FD9BA2324E42B1467 /* xds_channel_creds.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_channel_creds.cc; path = src/core/ext/xds/xds_channel_creds.cc; sourceTree = ""; }; DB090B7C2BDFB39C0463B0C158AD6B11 /* FIRAuthOperationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthOperationType.h; path = FirebaseAuth/Sources/Auth/FIRAuthOperationType.h; sourceTree = ""; }; - DB1E94CE7108438A6FD3DAEB224C426A /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; + DB1E94CE7108438A6FD3DAEB224C426A /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; DB3311B11943FB75B9B41944CA924FDA /* GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleDataTransport-Info.plist"; sourceTree = ""; }; - DB4C7ECB33E87C6E974F7975A09D9176 /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; + DB4C7ECB33E87C6E974F7975A09D9176 /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; DB5D2488D6272B40E8D8FF936E5BBADF /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = include/grpc/event_engine/port.h; sourceTree = ""; }; DB6110A19686169BD41F4305AD5F411A /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - DB6539463074E567351285C084FA86C5 /* a_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_print.c; path = src/crypto/asn1/a_print.c; sourceTree = ""; }; - DB67F5C32EF498043599DE2BFAAA2ABB /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; + DB6539463074E567351285C084FA86C5 /* a_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_print.c; path = src/crypto/asn1/a_print.c; sourceTree = ""; }; + DB67F5C32EF498043599DE2BFAAA2ABB /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; DB7BDE5FDADF95A04A3D4250F5B92A00 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - DB8119CC0ED14A26F19C03B8C405C890 /* target_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_id_generator.cc; path = Firestore/core/src/core/target_id_generator.cc; sourceTree = ""; }; - DB938770B5ABB3CEA25FBA2D8B86A356 /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; + DB8119CC0ED14A26F19C03B8C405C890 /* 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 = ""; }; + DB938770B5ABB3CEA25FBA2D8B86A356 /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; DB955FFBD28F186FDA952864D12C7582 /* FIRResetPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h; sourceTree = ""; }; DB99C7B8E5CBE52253764CB16C0A2B9D /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; DBBDA39D068CC4CAA43DBF85FF6152D7 /* uv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uv.h; path = include/uv.h; sourceTree = ""; }; - DBC6321CBE1EADECC1A7375957D40CCD /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; + DBC6321CBE1EADECC1A7375957D40CCD /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; DBFEB3D4747533FD2C19D99D744563B6 /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; - DC1C6762A400F6798B0B37360C37A926 /* dynamic_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_thread_pool.cc; path = src/cpp/server/dynamic_thread_pool.cc; sourceTree = ""; }; + DC1C6762A400F6798B0B37360C37A926 /* dynamic_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic_thread_pool.cc; path = src/cpp/server/dynamic_thread_pool.cc; sourceTree = ""; }; DC1E4C15DD4AFED68BE7C12B431F3A3F /* 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 = ""; }; - DC1F569971BB63A727BCC88CA83A0FD4 /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; + DC1F569971BB63A727BCC88CA83A0FD4 /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; DC37F2C6B67598116FD1520F1EF960EB /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; - DC5825CA05529EBCC409BCFD67DAACE3 /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; + DC5825CA05529EBCC409BCFD67DAACE3 /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; DC637756A9F0249C0C1714D9543D98CF /* FIRIdentityToolkitRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRIdentityToolkitRequest.m; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.m; sourceTree = ""; }; DC641807268E1AC1DD2C9AC572CCC1BB /* FIRAuthSerialTaskQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSerialTaskQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.m; sourceTree = ""; }; - DC6E7037F102DEF924EC45B262BE86D8 /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ocsp.c; path = src/crypto/x509v3/v3_ocsp.c; sourceTree = ""; }; - DC72CB81E12AA31C703F7BB4579F8897 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; + DC6E7037F102DEF924EC45B262BE86D8 /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ocsp.c; path = src/crypto/x509v3/v3_ocsp.c; sourceTree = ""; }; + DC72CB81E12AA31C703F7BB4579F8897 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; DC78B1A132A43E5B8AFE780965E476AB /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/support/sync_stream.h; sourceTree = ""; }; - DC7A402F407A94D0DB2197EC732C8805 /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; + DC7A402F407A94D0DB2197EC732C8805 /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; DC82D6E91B4E76AF1EF3C92F3AEA9A14 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; DC8552EF2CAB93C5141DBBD292FFE15B /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; DC8FD461109F4BFD28EB78275FC9DE30 /* obj_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_dat.h; path = src/crypto/obj/obj_dat.h; sourceTree = ""; }; @@ -15919,18 +15919,18 @@ DCBC1F3E107D759242A1C3955BC6AC49 /* grpcpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpcpp.h; path = include/grpcpp/grpcpp.h; sourceTree = ""; }; DCBC5FAAD2345D712AF224E2301033E3 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = src/include/openssl/pkcs12.h; sourceTree = ""; }; DCBE62C0B163E9CE657447A8139A5807 /* FIRAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTokenResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult.m; sourceTree = ""; }; - DCC9D2A05792D26EB7C2CD9B3C482660 /* chttp2_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_plugin.cc; path = src/core/ext/transport/chttp2/transport/chttp2_plugin.cc; sourceTree = ""; }; + DCC9D2A05792D26EB7C2CD9B3C482660 /* chttp2_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_plugin.cc; path = src/core/ext/transport/chttp2/transport/chttp2_plugin.cc; sourceTree = ""; }; DCE4B2DDA68818DC0F0051E95A3BC73E /* charconv_bigint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_bigint.h; path = absl/strings/internal/charconv_bigint.h; sourceTree = ""; }; DCE58A3EEAD1EA60AFF20BB6CBB5AD09 /* gRPC-C++-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-prefix.pch"; sourceTree = ""; }; DCEBE57AA1157990290F48A8B0B75D9D /* 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 = ""; }; DCF332F2DDD31827838523295C7C02A6 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - DD0A01392CCA1F02BB228D0F2797B114 /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; + DD0A01392CCA1F02BB228D0F2797B114 /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; DD0A15CFFABD2B2AD12F72F339A0140B /* 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 = ""; }; DD150F5546A5585D6469457EC7E81C69 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; - DD1A9376D1B750DF242C83896A072A31 /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; - DD330175DAADA9ABC12A31910A009140 /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; + DD1A9376D1B750DF242C83896A072A31 /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; + DD330175DAADA9ABC12A31910A009140 /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; DD47E50FD816BCA648E6A62FB33EF373 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - DD49D66BAFBE891DA7AA4111007D11DE /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; + DD49D66BAFBE891DA7AA4111007D11DE /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; DD5F9EF7C35287AF0D4B1B7DC5333DFF /* 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 = ""; }; DD6BCBB3FC57E054A0EEBB19DE632159 /* 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 = ""; }; DD6E3DBC7CF3EF9831EFBBBC57694DEC /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; @@ -15938,69 +15938,69 @@ DD72F7E5E08707846370D7D0F991BCC6 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; DD792B696E54BAD4DB9DFE7BEDAA1CE9 /* wide_multiply.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wide_multiply.h; path = absl/random/internal/wide_multiply.h; sourceTree = ""; }; DD7BACA8BD1F55CB592E9D37E4AC694E /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - DD7DD370D040B24E02809DC936611A86 /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; - DD81BFD2D733C61E88BCDC297E49A022 /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; + DD7DD370D040B24E02809DC936611A86 /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; + DD81BFD2D733C61E88BCDC297E49A022 /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; DD8FC2845807DC1F93E2AA11FBFD2A6B /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; DD9291D160844646275766D62CC3BD45 /* 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 = ""; }; DD98A72A3325D1FA05221010208F85D2 /* GDTCORUploadBatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadBatch.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m; sourceTree = ""; }; DD9EE5CE0162E2CE20771D5FCD674031 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; DDC5467A6D118C9C70E8C109BAA8D824 /* leveldb-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.release.xcconfig"; sourceTree = ""; }; DDC87770B5482CDB35C42F1DDF578D42 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - DDC90827167DE07186F2C45B18646DBF /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; + DDC90827167DE07186F2C45B18646DBF /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; DDD1A765EF37CB0AA9CD55D346E5DA33 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; sourceTree = ""; }; DDD45AF9835B6BDB1FDEE9D1B4389C76 /* 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 = ""; }; - DDF341C1AC91DFF46EFC5323EE23D3FA /* not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = not_in_filter.cc; path = Firestore/core/src/core/not_in_filter.cc; sourceTree = ""; }; + DDF341C1AC91DFF46EFC5323EE23D3FA /* 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 = ""; }; DE0321B044440171F6DE03BAC7F46A6B /* ex_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ex_data.h; path = src/include/openssl/ex_data.h; sourceTree = ""; }; - DE065B3FF36AF498B88D7E0451533BC1 /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; + DE065B3FF36AF498B88D7E0451533BC1 /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; DE0D449B2F65E2ABB08DF305B4B650C9 /* 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 = ""; }; DE31F621CAD4A75C21F0F9B1769442D7 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; DE46969394F93E30E45B318EE4D104E0 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; DE4C3B5107632E3D71E08E88B47F9C28 /* errno_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno_saver.h; path = absl/base/internal/errno_saver.h; sourceTree = ""; }; DE68FFC8358FA04D5889EF2C3E394D68 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; DEAF412D0CFFB39E1BFFDB1E64048FE9 /* exponential_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_distribution.h; path = absl/random/exponential_distribution.h; sourceTree = ""; }; - DEAFE4C13D8FF1FDE065A8794EC86245 /* frame_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_handler.cc; path = src/core/tsi/alts/frame_protector/frame_handler.cc; sourceTree = ""; }; + DEAFE4C13D8FF1FDE065A8794EC86245 /* 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 = ""; }; DEC5DCB722723A5C567A8DD9E3ED1F89 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - DEDFE2D9923BBF6E4912316E851F60B1 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset.cc; path = src/core/lib/iomgr/event_engine/pollset.cc; sourceTree = ""; }; + DEDFE2D9923BBF6E4912316E851F60B1 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset.cc; path = src/core/lib/iomgr/event_engine/pollset.cc; sourceTree = ""; }; DEE81A8EC18A0B5B1E43DB60ADFF2EDC /* FIRGameCenterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.m; sourceTree = ""; }; - DEE9080859018223B5C219AEA15FF95F /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; - DEFA22796A64CE2A3C7F2975BEE267F8 /* per_thread_sem.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = per_thread_sem.cc; path = absl/synchronization/internal/per_thread_sem.cc; sourceTree = ""; }; + DEE9080859018223B5C219AEA15FF95F /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; + DEFA22796A64CE2A3C7F2975BEE267F8 /* 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 = ""; }; DF133F2683B39795BBB6F7B19E6D29E4 /* 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 = ""; }; DF3BA76983ACBBCBA404FCE5F0C36FBE /* 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 = ""; }; - DF4831465B7E4BBC06DB8DAB743BC086 /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; - DF4B715D2D3CD1E93A5E116190319997 /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; + DF4831465B7E4BBC06DB8DAB743BC086 /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; + DF4B715D2D3CD1E93A5E116190319997 /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; DF6D080175DA2DD01E385F9AE766F924 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - DF733EF4B1566BCA7A9112EEE57C2775 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; - DF96EB173C3D3D9BB5CB096769BB2EF3 /* tty.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tty.c; path = src/unix/tty.c; sourceTree = ""; }; + DF733EF4B1566BCA7A9112EEE57C2775 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; + DF96EB173C3D3D9BB5CB096769BB2EF3 /* tty.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tty.c; path = src/unix/tty.c; sourceTree = ""; }; DFAD14B32EA7BF53E160C42E43D50DE2 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; DFAEF6561E267CBD51ECA0CB30CE1C7F /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; DFBB19560673ECCA382E404ECF23EA31 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; DFECF25E986CF23DED9CE2C28C5C3D12 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/impl/codegen/string_ref.h; sourceTree = ""; }; DFF073FFC72C100A9B8AA5298287D6A5 /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/codegen/intercepted_channel.h; sourceTree = ""; }; - E007083C7EC0E69EEC5D3781AE86F704 /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; - E00B0C136969A5895435928AE7AF7F7B /* scoped_route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scoped_route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c"; sourceTree = ""; }; - E03193938D6B2092668107D6C262DD29 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; + E007083C7EC0E69EEC5D3781AE86F704 /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; + E00B0C136969A5895435928AE7AF7F7B /* scoped_route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c"; sourceTree = ""; }; + E03193938D6B2092668107D6C262DD29 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; E0513206EB05495F91596B0BD900F18C /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; E055EEDB5448804CCEB4060CE6F61487 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; E05770E71F657FB048D0F7D4FAC44CDD /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - E05A18C9830C52CA3BEDE113EA6A519F /* tcp_client_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_custom.cc; path = src/core/lib/iomgr/tcp_client_custom.cc; sourceTree = ""; }; - E06E0ACBC7AD67018F9414C5C3CC5036 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; + E05A18C9830C52CA3BEDE113EA6A519F /* tcp_client_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_custom.cc; path = src/core/lib/iomgr/tcp_client_custom.cc; sourceTree = ""; }; + E06E0ACBC7AD67018F9414C5C3CC5036 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; E07766BBBDA07E4BC2FB9C6661DA6AA6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/evp/internal.h; sourceTree = ""; }; E086E6A087051487FC30ECA133659F06 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - E08BD7600DB08ACCACAFB35E3B0D58E7 /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; - E0A85F283FE7D435DADBCF60CD3329AA /* pcy_map.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_map.c; path = src/crypto/x509v3/pcy_map.c; sourceTree = ""; }; + E08BD7600DB08ACCACAFB35E3B0D58E7 /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; + E0A85F283FE7D435DADBCF60CD3329AA /* pcy_map.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_map.c; path = src/crypto/x509v3/pcy_map.c; sourceTree = ""; }; E0AA062F356DE5E81D6DE8A6B65CC870 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - E0B9AA38F9ECD62D502E9168A7E7D00B /* binder_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_connector.cc; path = src/core/ext/transport/binder/client/binder_connector.cc; sourceTree = ""; }; + E0B9AA38F9ECD62D502E9168A7E7D00B /* 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 = ""; }; E0C232F842638FF1D1B46F350B0E2B89 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = src/include/openssl/ssl.h; sourceTree = ""; }; - E0DE70107CB844BDFB9383271BF9831B /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = certificate_provider_registry.cc; path = src/core/ext/xds/certificate_provider_registry.cc; sourceTree = ""; }; + E0DE70107CB844BDFB9383271BF9831B /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = certificate_provider_registry.cc; path = src/core/ext/xds/certificate_provider_registry.cc; sourceTree = ""; }; E0E5618767EEE83B43C7EA69399AEFC7 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; - E0ECD12E084BC15CD3104BFA48CC9DE0 /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; - E0EF834F0C98BCAA3413536D1CC6D427 /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; + E0ECD12E084BC15CD3104BFA48CC9DE0 /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; + E0EF834F0C98BCAA3413536D1CC6D427 /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; E107805DA7D7B89CBF0FA4E981BF1949 /* FIRVerifyPhoneNumberRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.h; sourceTree = ""; }; E120DE33311DF0EE2E15E78A6BDD749C /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; E1217BD05EA599124A79A8E31CA778DE /* 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 = ""; }; E13DC566F5693D7CB358DD61EBD04F6D /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; E1459E43783B982C187E00129DD89CC8 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/grpc_library.h; sourceTree = ""; }; - E155A005DF25CE96972E3AC05FB3A94F /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; + E155A005DF25CE96972E3AC05FB3A94F /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; E15D9432149ABFD448857B24887A93DF /* 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 = ""; }; E168C2D1F463B1E816DACA078EDE1AF4 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; E16F600F5BFFC32128B93D6DA86C2DDC /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; @@ -16009,54 +16009,54 @@ E188EC24E7F2369ECC6533CFF6B204E7 /* base64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base64.h; path = src/include/openssl/base64.h; sourceTree = ""; }; E198F4A7374CF35608E3D56C9A802F60 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; E19B3D43D11D5638D68E4CCD659D416A /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; - E1C937C3027E078D1518FD5A761B5503 /* document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.cc; sourceTree = ""; }; + E1C937C3027E078D1518FD5A761B5503 /* 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 = ""; }; E1EE6A492364C823126EED0463057D97 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/codegen/call.h; sourceTree = ""; }; E22CAE7A7003499908E6265DD4CBD778 /* FIRFinalizeMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.m; sourceTree = ""; }; E237E1ACC8358970594371C3DACBE19D /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - E23B213AF99F8385AC041E7DC39DCB3F /* max_age_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = max_age_filter.cc; path = src/core/ext/filters/max_age/max_age_filter.cc; sourceTree = ""; }; + E23B213AF99F8385AC041E7DC39DCB3F /* max_age_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = max_age_filter.cc; path = src/core/ext/filters/max_age/max_age_filter.cc; sourceTree = ""; }; E23B9ABF6D6C4F37041C82AB78050532 /* 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 = ""; }; - E23C76272ECD4ECB694402E88B794149 /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; + E23C76272ECD4ECB694402E88B794149 /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; E2490F9EFDCD38D0882590687B9960EA /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; - E253167A05AC66A4F9B0084C15177D55 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; + E253167A05AC66A4F9B0084C15177D55 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; E25600AB4491B7DFB66FFBFDF46DC259 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/status.h; sourceTree = ""; }; E260591847D6BC81E6A8BD445C5C9E1A /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; E264E033AD2FFC131B3D21D214DE1329 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - E265193DCCE9BD9FFD5DB1CA1F821870 /* proxy_protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c"; sourceTree = ""; }; + E265193DCCE9BD9FFD5DB1CA1F821870 /* proxy_protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c"; sourceTree = ""; }; E2687499390ECE5053BC5731A5DE7131 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - E270BEE109637DD62BABF331C4C23A69 /* certificate_provider_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = certificate_provider_store.cc; path = src/core/ext/xds/certificate_provider_store.cc; sourceTree = ""; }; - E27BA693190BF853791F6233AB26A3BC /* alts_tsi_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_tsi_handshaker.cc; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc; sourceTree = ""; }; + E270BEE109637DD62BABF331C4C23A69 /* 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 = ""; }; + E27BA693190BF853791F6233AB26A3BC /* 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 = ""; }; E28A2D63D5BD3D10CC33E262C66AFB6D /* 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 = ""; }; E2A467762A7C41D8C3DE86CC6E2BE3B6 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - E2AEB9A76A326E3D381622EA7B9D3590 /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; + E2AEB9A76A326E3D381622EA7B9D3590 /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCore; path = FirebaseCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E2CE7272D09CDC1E4A2D66205C7E290D /* byte_buffer_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer_reader.cc; path = src/core/lib/surface/byte_buffer_reader.cc; sourceTree = ""; }; + E2CE7272D09CDC1E4A2D66205C7E290D /* 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 = ""; }; E2D327B3862D4AFA0F0F250F058C4BD9 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; E2DEE01B8736E272BF2B3BAFCECD78B2 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = src/include/openssl/asn1_mac.h; sourceTree = ""; }; E2EBBE7064951DC0E72B9D6A5B1FEFD6 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; - E2FA57F253AE2D3A72E3A68B54CD2933 /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; + E2FA57F253AE2D3A72E3A68B54CD2933 /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; E2FC9010A499AC6F06F9233BA1D72B18 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; E303A4B867C0A073E43D2705A20FDD53 /* GDTCORFlatFileStorage+Promises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORFlatFileStorage+Promises.m"; path = "GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m"; sourceTree = ""; }; - E311060DD11CA125094EE84B5A3793E2 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; - E32695E7994B6A021A79F8905B13D7CE /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create.cc; path = src/core/ext/transport/binder/client/channel_create.cc; sourceTree = ""; }; + E311060DD11CA125094EE84B5A3793E2 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; + E32695E7994B6A021A79F8905B13D7CE /* 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 = ""; }; E33EC5D4DBABE8940D18D69C54D9D1EE /* FIRFinalizeMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h; sourceTree = ""; }; E39F865726404450820E00BAFB232434 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; E3A731AC3AD96D4A9F2590A4263C5903 /* FIRVerifyPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.m; sourceTree = ""; }; - E3B766557559F5FD34F3189EDD5DDEF0 /* ads.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ads.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c"; sourceTree = ""; }; + E3B766557559F5FD34F3189EDD5DDEF0 /* ads.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c"; sourceTree = ""; }; E3BAB4CA449A540C0DD9127A10E54745 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/support/log.h; sourceTree = ""; }; E3BE049556DEE07E98DCD21FF9ACFB00 /* FIRPhoneMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorGenerator.m; sourceTree = ""; }; - E3C030AD5C975B2D61A9775FDC1D6630 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; + E3C030AD5C975B2D61A9775FDC1D6630 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; E3D0EF8BC014BAA93E07834E11BC30DC /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; E3D79E31FC5357C1A031B15D2AF7998F /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; E3DC2819FA4380B3479C1CE4F49175DA /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; E3EC7C431BEDA3CC8F8D81F339D9B5B5 /* call_once.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_once.h; path = absl/base/call_once.h; sourceTree = ""; }; - E3FBE8F2B818881C05811BD975B4C16B /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; + E3FBE8F2B818881C05811BD975B4C16B /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; E40D05F40778528A6D07508416613D8E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bio/internal.h; sourceTree = ""; }; - E421476D80888AFE7A0647615D36D8DB /* evaluate_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = evaluate_args.cc; path = src/core/lib/security/authorization/evaluate_args.cc; sourceTree = ""; }; - E4228D7609B06D2AD530873B28AA28D8 /* grpc_root_certificate_finder_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_root_certificate_finder_generated.cc; path = Firestore/core/src/remote/grpc_root_certificate_finder_generated.cc; sourceTree = ""; }; + E421476D80888AFE7A0647615D36D8DB /* 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 = ""; }; + E4228D7609B06D2AD530873B28AA28D8 /* 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 = ""; }; E43F67AEE07741EE4D2F439CB32A4D82 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; E4528AB5A3133E3F42FFDA529B0B572D /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; E4665355206BF6E344BFA82DC965B5A2 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; - E46C379ED94A55A89F6F983FD07B2087 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; + E46C379ED94A55A89F6F983FD07B2087 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; E46E1F47CB726BCAD4F834D3C073CA7D /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; E48D36F8EF0BD5B1226A31B16C558557 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; E49801020AFE5E2E8E61195F0AF783EE /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; @@ -16064,228 +16064,228 @@ E4B3FB2498E704230EE92C863837CC22 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; E4B7487E1643CE26881ABE43E4784145 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; E4CAEEE1E8159A80E76B9C605AA98BCD /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; - E4D3CB0CE6FAFA4A3EA9A781FFA104CD /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_averaged_stats.cc; path = src/core/lib/iomgr/time_averaged_stats.cc; sourceTree = ""; }; + E4D3CB0CE6FAFA4A3EA9A781FFA104CD /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_averaged_stats.cc; path = src/core/lib/iomgr/time_averaged_stats.cc; sourceTree = ""; }; E4EF9A96A73109D86F43AC6D681D8A62 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; E4F7B2DB581CD295CBB5CEA8D69212C8 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/impl/codegen/sync_generic.h; sourceTree = ""; }; - E51B30EDF4ED3DE4FE989BB8F808ABDA /* message_compress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_compress_filter.cc; path = src/core/ext/filters/http/message_compress/message_compress_filter.cc; sourceTree = ""; }; + E51B30EDF4ED3DE4FE989BB8F808ABDA /* message_compress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_compress_filter.cc; path = src/core/ext/filters/http/message_compress/message_compress_filter.cc; sourceTree = ""; }; E52A76C25EF128EC971D9F68027D59FD /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/include/openssl/conf.h; sourceTree = ""; }; - E5302244D099757754F2D0B45FB759BE /* http_proxy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_proxy.cc; path = src/core/ext/filters/client_channel/http_proxy.cc; sourceTree = ""; }; - E5327910D0BDF08F4B39E825521C1512 /* v3_pcia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pcia.c; path = src/crypto/x509v3/v3_pcia.c; sourceTree = ""; }; + E5302244D099757754F2D0B45FB759BE /* http_proxy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_proxy.cc; path = src/core/ext/filters/client_channel/http_proxy.cc; sourceTree = ""; }; + E5327910D0BDF08F4B39E825521C1512 /* v3_pcia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pcia.c; path = src/crypto/x509v3/v3_pcia.c; sourceTree = ""; }; E54A45C82715C6857D1231EAE542E134 /* FIRPhoneAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential.m; sourceTree = ""; }; - E5593CF7B0CAFD576AD24EE8A30CBBC6 /* ssl_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_security_connector.cc; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.cc; sourceTree = ""; }; + E5593CF7B0CAFD576AD24EE8A30CBBC6 /* 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 = ""; }; E566718B81CF266276E026CC37C9BC92 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; E56F9C2783CB4AD0BCAC21122DB2F4D8 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - E586021E930683DC5C528A2D8B64D3D5 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_des.c; path = src/crypto/fipsmodule/cipher/e_des.c; sourceTree = ""; }; - E592DAE2079B75A9B744AAA603FF2E0D /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.cc; path = src/core/lib/iomgr/event_engine/resolver.cc; sourceTree = ""; }; + E586021E930683DC5C528A2D8B64D3D5 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_des.c; path = src/crypto/fipsmodule/cipher/e_des.c; sourceTree = ""; }; + E592DAE2079B75A9B744AAA603FF2E0D /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver.cc; path = src/core/lib/iomgr/event_engine/resolver.cc; sourceTree = ""; }; E595D21180F46EC1D31980433C2CDE28 /* 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 = ""; }; E596444A54257E1EFD45894FE8CA034D /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - E598D5945193EF65D52D21390E286354 /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; + E598D5945193EF65D52D21390E286354 /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; E5E22965A8E2CB5BC99C33E43BE01C61 /* 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 = ""; }; - E5FA3A38FA52055AE790370AE1C7D782 /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; + E5FA3A38FA52055AE790370AE1C7D782 /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; E6196DBAF2CA9416A88ADB40066B3C3C /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; E62307E7B559EDCC9BAA7D7D24E57C72 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; E651DB79FC5ADC9A7D0ACA4E8496A1DB /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = src/include/openssl/bn.h; sourceTree = ""; }; E65254C7F4A2A475753D63DC57C94241 /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; E65D9AB517F0E6F16A3526448CF1BF30 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; - E668578DAFC72287B12587A5773FB725 /* alts_tsi_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_tsi_utils.cc; path = src/core/tsi/alts/handshaker/alts_tsi_utils.cc; sourceTree = ""; }; + E668578DAFC72287B12587A5773FB725 /* 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 = ""; }; E66F5CE31CC30B5FC35F11E8037F254F /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - E6700B793E2D1C6EFBA12F4C7C8D5668 /* string_util_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_util_windows.cc; path = src/core/lib/gpr/string_util_windows.cc; sourceTree = ""; }; + E6700B793E2D1C6EFBA12F4C7C8D5668 /* string_util_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util_windows.cc; path = src/core/lib/gpr/string_util_windows.cc; sourceTree = ""; }; E6810D0196C1EB8D83072918AFC948C3 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; - E695C5A78EA0B2F78681E3C1E6415550 /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; - E6A2580E1C95493E5B4546C6AF57646C /* completion_queue_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue_cc.cc; path = src/cpp/common/completion_queue_cc.cc; sourceTree = ""; }; + E695C5A78EA0B2F78681E3C1E6415550 /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; + E6A2580E1C95493E5B4546C6AF57646C /* 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 = ""; }; E6A3DC25092FF62F5600E56A662F43DC /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - E6A4871BDC1F28C1FD965F1685D3BB02 /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; - E6B8E7E067A2BA1EBD9CB451591FF59C /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; + E6A4871BDC1F28C1FD965F1685D3BB02 /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; + E6B8E7E067A2BA1EBD9CB451591FF59C /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; E6C05696DDF473DAFA042867E1824F95 /* Pods-Flash Chat iOS13.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Flash Chat iOS13.debug.xcconfig"; sourceTree = ""; }; - E6C5D6968181A44C5AE9A6F0811EAA82 /* grpc_ares_wrapper_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc; sourceTree = ""; }; - E6E1DE6163A6D4EC0E925B494E7AB7F0 /* time_zone_libc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_libc.cc; path = absl/time/internal/cctz/src/time_zone_libc.cc; sourceTree = ""; }; + E6C5D6968181A44C5AE9A6F0811EAA82 /* grpc_ares_wrapper_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc; sourceTree = ""; }; + E6E1DE6163A6D4EC0E925B494E7AB7F0 /* 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 = ""; }; E6E380CAF586F48321C4B88645489180 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/support/server_callback.h; sourceTree = ""; }; E6FE6F7D69C20EDF333264214F637C5B /* 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 = ""; }; - E71E7A3D5C56D23CF026879467561E29 /* eval.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eval.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c"; sourceTree = ""; }; + E71E7A3D5C56D23CF026879467561E29 /* eval.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eval.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c"; sourceTree = ""; }; E732719E9F47BC742EDA62113AD8D11E /* 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 = ""; }; - E760D29944F24E42412686AC46A044C9 /* csds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = csds.upb.c; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c"; sourceTree = ""; }; - E76A4836D972DD833224C99A523BF6F7 /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; + E760D29944F24E42412686AC46A044C9 /* csds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upb.c; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c"; sourceTree = ""; }; + E76A4836D972DD833224C99A523BF6F7 /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; E788A415E25EB920A6EB265B3185EDEB /* 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 = ""; }; E79C807B8417BF0363160E2A52C5B9C7 /* FIRResetPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h; sourceTree = ""; }; - E7B18BEBE462292C1D1AED6B07156D28 /* context_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = context_list.cc; path = src/core/ext/transport/chttp2/transport/context_list.cc; sourceTree = ""; }; - E7B379A0E11B63FEAEE4C1740322F28C /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = block.cc; path = table/block.cc; sourceTree = ""; }; + E7B18BEBE462292C1D1AED6B07156D28 /* context_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = context_list.cc; path = src/core/ext/transport/chttp2/transport/context_list.cc; sourceTree = ""; }; + E7B379A0E11B63FEAEE4C1740322F28C /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block.cc; path = table/block.cc; sourceTree = ""; }; E7C0C0E1E847F84B5E23FC49A2629F6B /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; E7D2C044AEDDEA9CBF48C3FA49A909AE /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; E7D2DC228CAF707CB39D12A2F8494002 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; E7DE45560437692A216A598C00E9D614 /* abseil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-prefix.pch"; sourceTree = ""; }; - E7EFB82A20A4AE926CBC13C1F37A689A /* srds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = srds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c"; sourceTree = ""; }; - E7F1B8E58D1581F110C3B3FDCC04ED95 /* memory_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_quota.cc; path = src/core/lib/resource_quota/memory_quota.cc; sourceTree = ""; }; + E7EFB82A20A4AE926CBC13C1F37A689A /* srds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = srds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c"; sourceTree = ""; }; + E7F1B8E58D1581F110C3B3FDCC04ED95 /* 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 = ""; }; E7F562839B8733B44E6DE53F84BB97F3 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; E807A42D134D52C54CC6F2A3641297A8 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; E81199DFCC42FBE07DE7CE783259513E /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - E81FDB3722FFACFB579184408B8B40DD /* memory_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_document_overlay_cache.cc; path = Firestore/core/src/local/memory_document_overlay_cache.cc; sourceTree = ""; }; + E81FDB3722FFACFB579184408B8B40DD /* 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 = ""; }; E8248AC1B424553C75E095E2F0A5A7F3 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = absl/synchronization/mutex.h; sourceTree = ""; }; - E8256504B391A133658A9F53E70BF601 /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; + E8256504B391A133658A9F53E70BF601 /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; E83840BAED426BA06FE7371113DC90ED /* snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = snapshot.h; path = db/snapshot.h; sourceTree = ""; }; E840D06A13004DA5F9D2848A1199EA15 /* poly1305.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = src/include/openssl/poly1305.h; sourceTree = ""; }; - E8573B22D701832A339D06B71454F1A9 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; - E85E80D625A605827C324C4DDE86CAD7 /* jni_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jni_utils.cc; path = src/core/ext/transport/binder/client/jni_utils.cc; sourceTree = ""; }; + E8573B22D701832A339D06B71454F1A9 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; + E85E80D625A605827C324C4DDE86CAD7 /* 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 = ""; }; E886BAAAD0217251B889F27BBF6E6AEB /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; E89A85148727E57700EEFC54A410F463 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - E89C97DABA46937FBF097A0108E131F8 /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; + E89C97DABA46937FBF097A0108E131F8 /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; E8BA8631E8E3418C7877A784E5394DD9 /* 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 = ""; }; - E8C560804BBFFB22FDAB00E46EB12B05 /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; + E8C560804BBFFB22FDAB00E46EB12B05 /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; E8C736684F4696714E6AEC832225730C /* gpr_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_types.h; path = include/grpc/impl/codegen/gpr_types.h; sourceTree = ""; }; E8EC9429436F9734233822710E79603A /* digest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = digest.h; path = src/include/openssl/digest.h; sourceTree = ""; }; E8F2E3E057E99001FA8B4A53B7DB4B63 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; - E8FAFD4A53F35F90DF0A545F674F55EE /* is_epollexclusive_available.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = is_epollexclusive_available.cc; path = src/core/lib/iomgr/is_epollexclusive_available.cc; sourceTree = ""; }; - E900281EAABAE1D29ADE22362A955E51 /* local_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_security_connector.cc; path = src/core/lib/security/security_connector/local/local_security_connector.cc; sourceTree = ""; }; + E8FAFD4A53F35F90DF0A545F674F55EE /* is_epollexclusive_available.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = is_epollexclusive_available.cc; path = src/core/lib/iomgr/is_epollexclusive_available.cc; sourceTree = ""; }; + E900281EAABAE1D29ADE22362A955E51 /* 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 = ""; }; E908D78B9685E44ABF94444391558EC8 /* CLTypingLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CLTypingLabel.swift; path = Pod/Classes/CLTypingLabel.swift; sourceTree = ""; }; E92B7E2A01A1A84C351E4515E391885B /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; E9309C3628B3BB6CC05595DB7C4490B7 /* version.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version.h; path = include/uv/version.h; sourceTree = ""; }; - E93F17885C817A781D7FEA8C61ED67D9 /* testharness.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = testharness.cc; path = util/testharness.cc; sourceTree = ""; }; + E93F17885C817A781D7FEA8C61ED67D9 /* testharness.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = testharness.cc; path = util/testharness.cc; sourceTree = ""; }; E93F49FA1B936E265C8DEA583A74DB54 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; E95CAA6C502E1AF1DEB32A8F1E108ED8 /* 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 = ""; }; E96E38C373753DA20564A46C665249EF /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; - E98D24A1EC19DC58525C92E2A5F33B90 /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; - E9CAA198FD151FBEDE21AC4EC956EC2A /* version.c */ = {isa = PBXFileReference; includeInIndex = 1; name = version.c; path = src/version.c; sourceTree = ""; }; + E98D24A1EC19DC58525C92E2A5F33B90 /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; + E9CAA198FD151FBEDE21AC4EC956EC2A /* version.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = version.c; path = src/version.c; sourceTree = ""; }; E9D2894C386C06DD677DDB65D31CB243 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = src/include/openssl/x509.h; sourceTree = ""; }; E9FA2AAD6655170A9A03B73C111477A2 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = src/include/openssl/dh.h; sourceTree = ""; }; EA03399A7B468623B9679F0EECD5B912 /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; - EA044D27F2CFCA94044FE2FE079A4C86 /* health.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c"; sourceTree = ""; }; - EA252865CAAACF7FC55E8E8B86F8097E /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; + EA044D27F2CFCA94044FE2FE079A4C86 /* health.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c"; sourceTree = ""; }; + EA252865CAAACF7FC55E8E8B86F8097E /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; EA2596B068E37E2DA464F89021B3C799 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; EA3F173689A0C2FE9591AD9013ACD0B0 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; EA58CE37525AB947BF6101C7E0E176CD /* grpc_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security.h; path = include/grpc/grpc_security.h; sourceTree = ""; }; - EA5D1E61EF8C0592D12C1A2B4A893AF9 /* client_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_auth_filter.cc; path = src/core/lib/security/transport/client_auth_filter.cc; sourceTree = ""; }; - EA6C84B01B4B3F4253B9620219390EFA /* cds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.upb.c; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c"; sourceTree = ""; }; + EA5D1E61EF8C0592D12C1A2B4A893AF9 /* 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 = ""; }; + EA6C84B01B4B3F4253B9620219390EFA /* cds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cds.upb.c; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c"; sourceTree = ""; }; EA6C9BD4AD61CFF187F7EE76821C1BA4 /* windows_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_logger.h; path = util/windows_logger.h; sourceTree = ""; }; EA8A415FD529DD061B3E1E52B489E778 /* sparse_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_set.h; path = third_party/re2/re2/sparse_set.h; sourceTree = ""; }; - EA8A5FB349D280095EDE58AB34326E4F /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; + EA8A5FB349D280095EDE58AB34326E4F /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; EA8FB6449FDFDFF8C9E2213EBB0AD778 /* 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 = ""; }; - EAB845998AE346CA019CE1E12E5A0417 /* http_client_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_client_filter.cc; path = src/core/ext/filters/http/client/http_client_filter.cc; sourceTree = ""; }; + EAB845998AE346CA019CE1E12E5A0417 /* 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 = ""; }; EABF70D8A882EE12AF939E7386C8B8C7 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; EACF1A8D502BC2BF2C5DE7ABC793A0B3 /* channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_filter.h; path = src/cpp/common/channel_filter.h; sourceTree = ""; }; EAE351CD4D924458B9CEA52AE415FA4A /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; EB1743C3DE9AF6A5D7F8459C4F1990F7 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; - EB242366755BF06AABF518B6372676AE /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; + EB242366755BF06AABF518B6372676AE /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; EB261D2E8DEF8C7F3DEFC6A0E40124B2 /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; - EB4995C236C3160F2405E7443D18A1AF /* cord_rep_btree_navigator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree_navigator.cc; path = absl/strings/internal/cord_rep_btree_navigator.cc; sourceTree = ""; }; + EB4995C236C3160F2405E7443D18A1AF /* 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 = ""; }; EB6473C00A114F36597B1C0E29FD0D37 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs8/internal.h; sourceTree = ""; }; EB67F319D5A6DBD6F3DFC7872D41DAFB /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; EB772318A59C605E4C6DFC555E79904B /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; EB7AC6D0022C4E8E5D8A87CB7A4D419D /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; EB7B56FD7376EE690838AA923F85B40C /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; - EBC37F490E9C93CF4402A78E798E4295 /* process.c */ = {isa = PBXFileReference; includeInIndex = 1; name = process.c; path = src/unix/process.c; sourceTree = ""; }; - EBD806A3ABA3D64B269E18BE83711909 /* alts_zero_copy_grpc_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_zero_copy_grpc_protector.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc; sourceTree = ""; }; + EBC37F490E9C93CF4402A78E798E4295 /* process.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = process.c; path = src/unix/process.c; sourceTree = ""; }; + EBD806A3ABA3D64B269E18BE83711909 /* 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 = ""; }; EBDEE9E5B1C61B8C1AACCE38D96A6160 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; EBE90029584481452022B1912EBEDDE3 /* 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 = ""; }; - EBF78627D85A05E925BCEC8B289D3D03 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; - EBFC42E958DF0803F6F22DDF7A26A347 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; + EBF78627D85A05E925BCEC8B289D3D03 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; + EBFC42E958DF0803F6F22DDF7A26A347 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; EC0CAF8725E41FF2AB537CCC9C681811 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; EC1AB1800A8ACA9451B945397CA7931C /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = include/grpcpp/server.h; sourceTree = ""; }; EC1B749CF3C9B8580BFC484CD44D768B /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; EC44168BAA289E239377CE1F0728929F /* 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 = ""; }; - EC52F6B0CFCCBEDCF1ADF353116D9FBE /* quic_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quic_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c"; sourceTree = ""; }; + EC52F6B0CFCCBEDCF1ADF353116D9FBE /* quic_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c"; sourceTree = ""; }; EC7E86AC2F60004477CA101FB037F81D /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/internal/optional.h; sourceTree = ""; }; ECAD3F5F27AC7B82A341BF9833C8A251 /* obj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj.h; path = src/include/openssl/obj.h; sourceTree = ""; }; - ECB17867ECE1D701EA31E17DAE72FF57 /* time_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_posix.cc; path = src/core/lib/gpr/time_posix.cc; sourceTree = ""; }; + ECB17867ECE1D701EA31E17DAE72FF57 /* time_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_posix.cc; path = src/core/lib/gpr/time_posix.cc; sourceTree = ""; }; ECBC9522495EEC9154681570104F395C /* 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 = ""; }; ECE350535DA59CACFE56629B0ECDE9DF /* FIRDeleteAccountResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.h; sourceTree = ""; }; - ED0248F7016CA5C4A61F1CFA3D000F60 /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; + ED0248F7016CA5C4A61F1CFA3D000F60 /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; ED14E173B56E9601D4D0462A4EFACFB5 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; ED28175BE8D554A752CCD22E4BE652CA /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; ED35CA2F4C3351265B988D788C7563AD /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; ED3709609F8752D5A98EFBE135A01FB6 /* 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 = ""; }; ED526BE498618C869237B2280C4B7296 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - ED61FCFCBC151356785B88227EDE6C86 /* service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config.cc; path = src/core/lib/service_config/service_config.cc; sourceTree = ""; }; + ED61FCFCBC151356785B88227EDE6C86 /* service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config.cc; path = src/core/lib/service_config/service_config.cc; sourceTree = ""; }; ED93ECD107BADD0ADC249CD6139437FB /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/codegen/interceptor_common.h; sourceTree = ""; }; ED97F5BEB8C729A4F52372DD79B4BBE2 /* 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 = ""; }; EDC309F641F64D59235FC2D1EABF756D /* charconv_parse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_parse.h; path = absl/strings/internal/charconv_parse.h; sourceTree = ""; }; EDF050AF714F458A3079DC64FC9A39A9 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; EDFBD28B8B0233E8BD26BDC0EBE44644 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - EE0D76860924C5B664B07C8F94ADA018 /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; + EE0D76860924C5B664B07C8F94ADA018 /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; EE1FBF4FFC89B38701D1AC33FB70946B /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - EE63AC1FD47F00F6B061F81485AD4DB0 /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; + EE63AC1FD47F00F6B061F81485AD4DB0 /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; EE7C0C751870C4A9442DA503730D2D98 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = src/include/openssl/obj_mac.h; sourceTree = ""; }; - EEA4FDB6F17DAE059FF724EC9F5F896F /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; + EEA4FDB6F17DAE059FF724EC9F5F896F /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; EEA7A8C84EDBBCD0CF47112A1D84CA90 /* 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 = ""; }; - EEB052A50906220DD857C7AAFA1FBE4A /* eds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eds.upb.c; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c"; sourceTree = ""; }; + EEB052A50906220DD857C7AAFA1FBE4A /* eds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eds.upb.c; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c"; sourceTree = ""; }; EEB1E143C62286D67ACCFD1C4AA1D928 /* kernel_timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kernel_timeout.h; path = absl/synchronization/internal/kernel_timeout.h; sourceTree = ""; }; EEF496676802304202D5940F12569C51 /* FIRTwitterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.h; sourceTree = ""; }; EF0C17AC04718859D77F9EC3118D7215 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/fork.h; sourceTree = ""; }; EF0E9618951890E5D02ADFF1F7E3577D /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - EF21D0EFD59FEE50F44DAA3937253DCB /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; - EF2575DA89A6EB446485DF147818F554 /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; + EF21D0EFD59FEE50F44DAA3937253DCB /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; + EF2575DA89A6EB446485DF147818F554 /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; EF3507125003FC6BB7CDD91111DD98EB /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; EF84631B1BD863A89DFD6F285BF43554 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; EF8585BAC73F56B2FF65C8BB3C7A5C5E /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; EF975D81A087BA3F429817DFB625AB49 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/support/stub_options.h; sourceTree = ""; }; - EF994F46A9C8965E8ADC6066B89D511A /* memory_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_remote_document_cache.cc; path = Firestore/core/src/local/memory_remote_document_cache.cc; sourceTree = ""; }; - EF9E51701BA237D68C21BB5A16E65A85 /* alts_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_credentials.cc; path = src/core/lib/security/credentials/alts/alts_credentials.cc; sourceTree = ""; }; - EFA7D76D3BB268FC03E410CB6541E819 /* circuit_breaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = circuit_breaker.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c"; sourceTree = ""; }; - EFCDBABFCFCDD85E1D659C09448A7BA7 /* firebase_app_check_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_app_check_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_app_check_credentials_provider_apple.mm; sourceTree = ""; }; + EF994F46A9C8965E8ADC6066B89D511A /* 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 = ""; }; + EF9E51701BA237D68C21BB5A16E65A85 /* 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 = ""; }; + EFA7D76D3BB268FC03E410CB6541E819 /* circuit_breaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c"; sourceTree = ""; }; + EFCDBABFCFCDD85E1D659C09448A7BA7 /* 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 = ""; }; EFDB94C4488339479A5FBB96F4A77AB2 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; - EFE7EE4B2EF0BB0A05FA4334345FA0CA /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backend_metric.cc; path = src/core/ext/filters/client_channel/backend_metric.cc; sourceTree = ""; }; + EFE7EE4B2EF0BB0A05FA4334345FA0CA /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric.cc; path = src/core/ext/filters/client_channel/backend_metric.cc; sourceTree = ""; }; EFF1CDC13F7412C1746C666002D610E3 /* hashtablez_sampler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtablez_sampler.h; path = absl/container/internal/hashtablez_sampler.h; sourceTree = ""; }; - EFF54E47F13A60E7BF9B7A0E2E1C8783 /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; name = des.c; path = src/crypto/fipsmodule/des/des.c; sourceTree = ""; }; - F005F70494ED628BB86D4C7FBF979460 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; + EFF54E47F13A60E7BF9B7A0E2E1C8783 /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = des.c; path = src/crypto/fipsmodule/des/des.c; sourceTree = ""; }; + F005F70494ED628BB86D4C7FBF979460 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; F0186B61EF4267F27EFB04F25BABC067 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; F021F07F2BB1EA0B57EBDCB932408C98 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; F0279C2FB3DEAE77649A5360F9E3A262 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - F02965C5796544EDFF3A08F7ED61F859 /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; - F02DA9FAF929FEF2B82003022CB2154D /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.cc; path = src/core/lib/iomgr/event_engine/timer.cc; sourceTree = ""; }; - F073FC63DCEF38ADCB635B9A108B42F7 /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; + F02965C5796544EDFF3A08F7ED61F859 /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; + F02DA9FAF929FEF2B82003022CB2154D /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/iomgr/event_engine/timer.cc; sourceTree = ""; }; + F073FC63DCEF38ADCB635B9A108B42F7 /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; F08A0465E472D1FDBAC50E174D8EEE82 /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; F08BE196034109B697180D78D809E347 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - F0C1D8200BF9B7DD0B2571512F931245 /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; + F0C1D8200BF9B7DD0B2571512F931245 /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; F0C30F1566D0583AB7AE5249E64EB59D /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; F0CD28FEFFE9BE1FB6AD4EF9B24FA93D /* 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 = ""; }; - F0D2A6741B6AC3467AD675BC85B73759 /* wire_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wire_writer.cc; path = src/core/ext/transport/binder/wire_format/wire_writer.cc; sourceTree = ""; }; + F0D2A6741B6AC3467AD675BC85B73759 /* 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 = ""; }; F0E7F4AE48EB81AE062C4372FD027BEE /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; - F0E89013BE4C90A38F93A7C351868777 /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = router.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; - F0E89286887058C2C817910578913803 /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; - F0E9C076EE4562F169398AB1E094ECAC /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; + F0E89013BE4C90A38F93A7C351868777 /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; + F0E89286887058C2C817910578913803 /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; + F0E9C076EE4562F169398AB1E094ECAC /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; F0EBC78591DEFEF7921E1840BC6FB4C4 /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; - F12ADB1764B204CD1A020753579C360E /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; - F14F0DE50B4CB633FAE83E281885F8D9 /* time_zone_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_info.cc; path = absl/time/internal/cctz/src/time_zone_info.cc; sourceTree = ""; }; + F12ADB1764B204CD1A020753579C360E /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; + F14F0DE50B4CB633FAE83E281885F8D9 /* 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 = ""; }; F156CFB7E64F64A271C8B53E40F249B2 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/completion_queue.h; sourceTree = ""; }; F15C801A0DA65B1D98130F7A0EA0A48D /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; F17342CEFFC42DB864338830958B7006 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/support/sync_posix.h; sourceTree = ""; }; F173E16EF68725331068A2234C23F194 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; F184372EF0DD7867E4C7A15532681777 /* FIRCreateAuthURIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.h; sourceTree = ""; }; F1876AD29203EDCBAA95AEF56C391B15 /* BoringSSL-GRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.debug.xcconfig"; sourceTree = ""; }; - F1A9B32250BAC29DB540FB31DEE78F6A /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; - F1C1BFAAB2C8A5FB9112D556774EA352 /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = work_serializer.cc; path = src/core/lib/iomgr/work_serializer.cc; sourceTree = ""; }; - F1F679A621E1A792F46EA9E04B40CF35 /* orca_load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = orca_load_report.upb.c; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c"; sourceTree = ""; }; + F1A9B32250BAC29DB540FB31DEE78F6A /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; + F1C1BFAAB2C8A5FB9112D556774EA352 /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = work_serializer.cc; path = src/core/lib/iomgr/work_serializer.cc; sourceTree = ""; }; + F1F679A621E1A792F46EA9E04B40CF35 /* orca_load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = orca_load_report.upb.c; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c"; sourceTree = ""; }; F1FB242F75F16071761D1F27A801B3E7 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - F20DC61653D07A5218B80C88EDBF46CA /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_credentials.cc; path = src/core/lib/security/credentials/insecure/insecure_credentials.cc; sourceTree = ""; }; + F20DC61653D07A5218B80C88EDBF46CA /* 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 = ""; }; F217C159D65636F0F061BCA2D529E92B /* FIRSignInWithGameCenterResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.m; sourceTree = ""; }; - F2265CDD259ECBF9355CD4A223DBD4D3 /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; - F22B9B31D85DF26312A861D0CCE2A8AA /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; - F230DC6996F5E7002A9B7EA162E28AA6 /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; - F233A040D5335CB26AC78328CCCFCC1E /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; + F2265CDD259ECBF9355CD4A223DBD4D3 /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; + F22B9B31D85DF26312A861D0CCE2A8AA /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; + F230DC6996F5E7002A9B7EA162E28AA6 /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; + F233A040D5335CB26AC78328CCCFCC1E /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; F26B9C2F2E2DA58209865C39C0E53E0C /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; F27183A113D1803C275050826C9FE06C /* FirebaseAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAuth-dummy.m"; sourceTree = ""; }; - F2738DBED4DD1018F316A2BCC19F191F /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; - F27799AE30548C615991718BB2206374 /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; - F28D93D0392D301003A54356AB26BD46 /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; + F2738DBED4DD1018F316A2BCC19F191F /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; + F27799AE30548C615991718BB2206374 /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; + F28D93D0392D301003A54356AB26BD46 /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; F2978EC0CE5A13374B10982A42E1848C /* FIRGitHubAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGitHubAuthProvider.h; sourceTree = ""; }; - F29E47AD285743120CB04BFD9F819687 /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; + F29E47AD285743120CB04BFD9F819687 /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; F2C38DC3C3143523A4E2AEBF9222C627 /* FIRVerifyPhoneNumberResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.h; sourceTree = ""; }; F2D335D665F2A4868D2118D1F02CB604 /* FIRAuthStoredUserManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthStoredUserManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h; sourceTree = ""; }; F2EEA44DDFFE109C6FF944EF696AB884 /* 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 = ""; }; F2F4CF16F8909913BF91E0D6289B56BE /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = Firestore/Source/Public/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; F3041B8C822A72DAE8A333D61EB79A31 /* 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 = ""; }; F320CAD1AAAB5139D3D07236FD50A61D /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - F324F90A3E58BB250B2027A6494539D5 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; + F324F90A3E58BB250B2027A6494539D5 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; F331E697A629AF29DF3B809C5CBD5131 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; F33B22EFACD93B2FEF53E71050B22243 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = port/thread_annotations.h; sourceTree = ""; }; - F348CA9589917F4EF4379A54EF6D350C /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_purp.c; path = src/crypto/x509v3/v3_purp.c; sourceTree = ""; }; - F35BB122C0FDC4A5A66F3E973547181D /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.cc; path = src/core/lib/resolver/resolver.cc; sourceTree = ""; }; + F348CA9589917F4EF4379A54EF6D350C /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_purp.c; path = src/crypto/x509v3/v3_purp.c; sourceTree = ""; }; + F35BB122C0FDC4A5A66F3E973547181D /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver.cc; path = src/core/lib/resolver/resolver.cc; sourceTree = ""; }; F36C18E462F395CD7CE249F81FBD0971 /* 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 = ""; }; - F386BE668E88666BA052FB9B36FDD17B /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; + F386BE668E88666BA052FB9B36FDD17B /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; F39007E062F01D6D490E9282FB37ADBF /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; F3A4B256D7B81123C933D00EEB5FA81F /* 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 = ""; }; - F3A67551D5639EB99BC8DE8AC3A031D2 /* grpc_authorization_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_authorization_engine.cc; path = src/core/lib/security/authorization/grpc_authorization_engine.cc; sourceTree = ""; }; + F3A67551D5639EB99BC8DE8AC3A031D2 /* 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 = ""; }; F3BDC6E666DC47C867D5776A20B0F742 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; F3C365A6481D30E9535EED7CC2D910AA /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; - F3C74FB6699569A51F2AB5B01D0470FC /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; + F3C74FB6699569A51F2AB5B01D0470FC /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; F3E7E7FEA136401A4F0A999AB6E35A19 /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; F3EE28BA0A3986A37071EC9847F32046 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; F400C3DD7DBFE9DEE16915515FA6F927 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; @@ -16293,62 +16293,62 @@ F42F8A9459FA648D94BDFBB529A123F2 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; F43D6F8F97EFC9ADB30BE1BFA495ED8F /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; F49CB4FBA3DF06BEC049B6BA4C9E21CE /* FIRUserMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserMetadata.h; sourceTree = ""; }; - F4B67B7D07D09B82A59B5CCA57C16C6D /* tcp_server_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_custom.cc; path = src/core/lib/iomgr/tcp_server_custom.cc; sourceTree = ""; }; + F4B67B7D07D09B82A59B5CCA57C16C6D /* tcp_server_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_custom.cc; path = src/core/lib/iomgr/tcp_server_custom.cc; sourceTree = ""; }; F507942283D65C20EE7AADED44DC257E /* core_codegen_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen_interface.h; path = include/grpcpp/impl/codegen/core_codegen_interface.h; sourceTree = ""; }; F51C9F9C01AF60DEF26C5303CF8C3E26 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - F549F5326DAE57963E865B97E61C8817 /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; + F549F5326DAE57963E865B97E61C8817 /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; F553422E6D75F130739156018E7932AE /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; F5589CD8DD361E4ACC78FCDBC8EAD70A /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - F55F6CD510B964675BE20024CF1921EA /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_bcons.c; path = src/crypto/x509v3/v3_bcons.c; sourceTree = ""; }; + F55F6CD510B964675BE20024CF1921EA /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bcons.c; path = src/crypto/x509v3/v3_bcons.c; sourceTree = ""; }; F56838B6870AC5CF4883318A61922AB2 /* ostringstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostringstream.h; path = absl/strings/internal/ostringstream.h; sourceTree = ""; }; F57622D49B27A597B810667D2AB89B01 /* throw_delegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = throw_delegate.h; path = absl/base/internal/throw_delegate.h; sourceTree = ""; }; F57A0E11DE528394AA16EC7F0E6A1247 /* 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 = ""; }; - F59C17FA51337D4E1D53DE48D24CFB1E /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; + F59C17FA51337D4E1D53DE48D24CFB1E /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; F5A34CC87BF55F8D3984703D92C62FD1 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; F5A5079FA7023F3172142202B0C5412E /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; F5B0FD512FD44EABE41B08E05BE36689 /* 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 = ""; }; - F5BE855D21326F8EEDF5368996E2194D /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; - F5D482698E307862028290C8A6E90F07 /* server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_auth_filter.cc; path = src/core/lib/security/transport/server_auth_filter.cc; sourceTree = ""; }; - F5EDD3CFEEC26EF50AEBFE1683C69B26 /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; - F5F58EB19671336B06F38DCB8077B470 /* time_support.c */ = {isa = PBXFileReference; includeInIndex = 1; name = time_support.c; path = src/crypto/asn1/time_support.c; sourceTree = ""; }; + F5BE855D21326F8EEDF5368996E2194D /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; + F5D482698E307862028290C8A6E90F07 /* 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 = ""; }; + F5EDD3CFEEC26EF50AEBFE1683C69B26 /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; + F5F58EB19671336B06F38DCB8077B470 /* time_support.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = time_support.c; path = src/crypto/asn1/time_support.c; sourceTree = ""; }; F612E893C7C7ED1FCB6396D763AD329E /* 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 = ""; }; F61603C41D94BA4F96FC0771D64F232D /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; F61E8E74301241F7AF70B31048B66F46 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; F6232FDED7D78A155E56486C1DCFD29E /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; - F6578E4C29BCEDCB97CA7D2598188115 /* flow_control.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = flow_control.cc; path = src/core/ext/transport/chttp2/transport/flow_control.cc; sourceTree = ""; }; + F6578E4C29BCEDCB97CA7D2598188115 /* 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 = ""; }; F65CF751FDCEDBDBA60DD9E94F92D1BF /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; F67364A0B636B3915967F77B4404605B /* resize_uninitialized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resize_uninitialized.h; path = absl/strings/internal/resize_uninitialized.h; sourceTree = ""; }; F680A8909E35847D60E83EC28C0AAC77 /* 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 = ""; }; F6812B437C1B185EF3A69575A2372FB4 /* 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 = ""; }; F68E7432DBC881D4E811C5C30F103151 /* 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 = ""; }; - F6E40EDCCB76C1E818797E5DF4BE37D0 /* memory_allocator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_allocator.cc; path = src/core/lib/event_engine/memory_allocator.cc; sourceTree = ""; }; + F6E40EDCCB76C1E818797E5DF4BE37D0 /* memory_allocator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_allocator.cc; path = src/core/lib/event_engine/memory_allocator.cc; sourceTree = ""; }; F6F8EDB5F658CCAC4035F4862D17CE9F /* 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; }; - F6FCA450EF8F65BF78359B228372F377 /* stream_lists.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_lists.cc; path = src/core/ext/transport/chttp2/transport/stream_lists.cc; sourceTree = ""; }; + F6FCA450EF8F65BF78359B228372F377 /* 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 = ""; }; F71296438012632256D049B9544C1A20 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; F715D3FA7D1AA29064C66D1B95A09324 /* cord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord.h; path = absl/strings/cord.h; sourceTree = ""; }; F72629B5E3E85846E45AEE242FA15545 /* 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 = ""; }; F736C0B3A3BABA4B020D6AC9346D7ECD /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; F7391DE403FB21A53277E5EE16782E6C /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - F7509B6E3A393E84102B2CD2D6C28FC8 /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; - F76C167FF95D245F602D460422DAFC83 /* jwt_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jwt_credentials.cc; path = src/core/lib/security/credentials/jwt/jwt_credentials.cc; sourceTree = ""; }; - F76E4AFB78F50DDE9A7713280841D684 /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; - F770904C7D178770A2BA31A6AF947AA2 /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = address.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; - F77EEB1F31D4AE20B3422EAE116B8F27 /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; + F7509B6E3A393E84102B2CD2D6C28FC8 /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; + F76C167FF95D245F602D460422DAFC83 /* 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 = ""; }; + F76E4AFB78F50DDE9A7713280841D684 /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; + F770904C7D178770A2BA31A6AF947AA2 /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; + F77EEB1F31D4AE20B3422EAE116B8F27 /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; F7849998A15CCC4FE82E1E692A7440C6 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/impl/codegen/server_interceptor.h; sourceTree = ""; }; - F7A100EE1ADAF19FCC191974945A2BD3 /* route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c"; sourceTree = ""; }; - F7A78EC8A546A7F77990F67141891918 /* log_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_android.cc; path = src/core/lib/gpr/log_android.cc; sourceTree = ""; }; - F7B3FFCB9BCA2ECEA5E9056F6CD391B4 /* log_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_posix.cc; path = src/core/lib/gpr/log_posix.cc; sourceTree = ""; }; + F7A100EE1ADAF19FCC191974945A2BD3 /* route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c"; sourceTree = ""; }; + F7A78EC8A546A7F77990F67141891918 /* log_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_android.cc; path = src/core/lib/gpr/log_android.cc; sourceTree = ""; }; + F7B3FFCB9BCA2ECEA5E9056F6CD391B4 /* log_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_posix.cc; path = src/core/lib/gpr/log_posix.cc; sourceTree = ""; }; F80DD9660AFE9D88D648B289A0C0D664 /* Pods-Flash Chat iOS13.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Flash Chat iOS13.release.xcconfig"; sourceTree = ""; }; - F81B2DEC6F23DA165340E328D390E626 /* cord_rep_consume.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_consume.cc; path = absl/strings/internal/cord_rep_consume.cc; sourceTree = ""; }; + F81B2DEC6F23DA165340E328D390E626 /* 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 = ""; }; F8259370A64043B3DCAA9E5824148E1F /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; - F82B58759F2F0B6A915BCBF266D1BBCE /* jwt_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jwt_verifier.cc; path = src/core/lib/security/credentials/jwt/jwt_verifier.cc; sourceTree = ""; }; + F82B58759F2F0B6A915BCBF266D1BBCE /* 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 = ""; }; F82EBB8CB2C5F61673E11E0F567ECE9A /* str_replace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_replace.h; path = absl/strings/str_replace.h; sourceTree = ""; }; F843F9EA4341AC59B7F6DED6D8067F7F /* Pods-Flash Chat iOS13-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Flash Chat iOS13-umbrella.h"; sourceTree = ""; }; F84C8B471ED03E868C3C3F1135141693 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; F85B1285B8139AED8F758256483FE150 /* CLTypingLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLTypingLabel-umbrella.h"; sourceTree = ""; }; F85DB4CC446BCB5E866C9F9494CFB717 /* 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; }; F87DE3ED40247E87F65E4242C07E580A /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; - F885E11DD802A4EC67111CDD2CFE9638 /* router.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = router.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c"; sourceTree = ""; }; + F885E11DD802A4EC67111CDD2CFE9638 /* router.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c"; sourceTree = ""; }; F8945C5C7F9E2F863D8819348D0F453E /* 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 = ""; }; F8A01E1671B3BB46D43523807EAB98B2 /* FIRGetProjectConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h; sourceTree = ""; }; F8BCD3ACC3A9537DB76A1799829D4C5B /* 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 = ""; }; @@ -16358,65 +16358,65 @@ F900FF5448DCE4BEFEBC824D038C5598 /* CLTypingLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLTypingLabel.release.xcconfig; sourceTree = ""; }; F90DE3DB25220666D1233C3E7D2FFD03 /* 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 = ""; }; F91D2A7725CFAD9D1DA90A801FADB7B7 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - F9203645BA0FAA60CA2F8F8FE1F5B21E /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_info.c; path = src/crypto/x509v3/v3_info.c; sourceTree = ""; }; - F929D05607622872F8B4AF7A7E916917 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; + F9203645BA0FAA60CA2F8F8FE1F5B21E /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_info.c; path = src/crypto/x509v3/v3_info.c; sourceTree = ""; }; + F929D05607622872F8B4AF7A7E916917 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; F9514C0821DE3D9512A12B6846090A1E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/lhash/internal.h; sourceTree = ""; }; - F95C628C2A27D30BED6DCC9D38BDF1C5 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; - F96007A87BF3248224B01BF4AB37B1C6 /* ssl_session_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_cache.cc; path = src/core/tsi/ssl/session_cache/ssl_session_cache.cc; sourceTree = ""; }; - F9B982D25E697F8CBC0C37D13FB4562A /* path.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c"; sourceTree = ""; }; - F9C2700FD1B3D06EF98074306A411168 /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; + F95C628C2A27D30BED6DCC9D38BDF1C5 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; + F96007A87BF3248224B01BF4AB37B1C6 /* 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 = ""; }; + F9B982D25E697F8CBC0C37D13FB4562A /* path.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c"; sourceTree = ""; }; + F9C2700FD1B3D06EF98074306A411168 /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; F9CD7F32C915CC6D9E5092E802ACB02B /* 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 = ""; }; F9CF7FF71520172A54AA51AA42DDEB02 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/rpc_method.h; sourceTree = ""; }; - F9D1CC3EE498999B30139AB65F642E84 /* x_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_info.c; path = src/crypto/x509/x_info.c; sourceTree = ""; }; + F9D1CC3EE498999B30139AB65F642E84 /* x_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_info.c; path = src/crypto/x509/x_info.c; sourceTree = ""; }; F9D802CEE2442557DBEBBB89B9D745CB /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; F9D89DA5B5D6A1C5AAFD95C0B26C03F6 /* FIRSecureTokenService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenService.m; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.m; sourceTree = ""; }; F9E6ECD0031EF129A9FC62746415E60A /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - FA03A788EE692C767890B8599E7DDD82 /* oauth2_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = oauth2_credentials.cc; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.cc; sourceTree = ""; }; - FA0B42D0A09220E148EEC932FC36A409 /* async_generic_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = async_generic_service.cc; path = src/cpp/server/async_generic_service.cc; sourceTree = ""; }; - FA1F2970262B2B17870B752504553D11 /* protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c"; sourceTree = ""; }; - FA24B90275506B2AFF2CC4E35D9AADB2 /* p_rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_rsa_asn1.c; path = src/crypto/evp/p_rsa_asn1.c; sourceTree = ""; }; - FA3E56DE2F04D016CA72ACF03FCB2F5F /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; + FA03A788EE692C767890B8599E7DDD82 /* 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 = ""; }; + FA0B42D0A09220E148EEC932FC36A409 /* 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 = ""; }; + FA1F2970262B2B17870B752504553D11 /* protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c"; sourceTree = ""; }; + FA24B90275506B2AFF2CC4E35D9AADB2 /* 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 = ""; }; + FA3E56DE2F04D016CA72ACF03FCB2F5F /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; FA535764C50D67EFBF9B6F306B1CFFD4 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; FA5F2259F1F974EAD2E550059282DF46 /* 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 = ""; }; - FA629B5DBD44D22B5379CA0BE84C472C /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; + FA629B5DBD44D22B5379CA0BE84C472C /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; FA6807FCF63A1D43B0E71A56AB378C49 /* 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 = ""; }; - FA6C384225F43B1F3957E13A76557E3D /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; + FA6C384225F43B1F3957E13A76557E3D /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; FA6F17DE47110BDFEAC55F8AFDB69450 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/impl/codegen/fork.h; sourceTree = ""; }; FA78CE6B038EF8067EE0A0E99CE92620 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - FA8DD3BE0C57410703E94BA4CA213FB1 /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; + FA8DD3BE0C57410703E94BA4CA213FB1 /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; FA91580EE93856FD88ED75C260987E44 /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; FA920E1981646315519E7CA578F46E94 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; FA9725B601F031FEFE1B4E213F49A52A /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; FA9C72197B6BC403850AEF928454F46B /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; FACDB6EC2330126C7BF62C3243506D5C /* gRPC-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-Core-Info.plist"; sourceTree = ""; }; - FAFA58FB10054832862CEE0482F24D2D /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; + FAFA58FB10054832862CEE0482F24D2D /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; FB20948313E52E2A54C81FE6694CD207 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; FB225E62EF172357B3E0DA86D4AECB84 /* FIRMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo+Internal.h"; sourceTree = ""; }; FB2417058DD5CEBAC8310A2F6C7DC5F6 /* cord_rep_ring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring.h; path = absl/strings/internal/cord_rep_ring.h; sourceTree = ""; }; FB3F7C722862A72BA6197A56886703C4 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; FB431DE016E0C15DED146DFD83946FDD /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/internal/escaping.h; sourceTree = ""; }; - FB502533DB2A8389BBCAC2AE2C212BBB /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; + FB502533DB2A8389BBCAC2AE2C212BBB /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; FB5AB2338A78A9938C7582B965F370D9 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; FB871EBA96139E497887203510BD0075 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; FBA1410D0DE6F9F93C6C8430C26C3D84 /* abseil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "abseil-dummy.m"; sourceTree = ""; }; FBBEB415CDF581F0D0FEE2A27814EC2F /* db_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_impl.h; path = db/db_impl.h; sourceTree = ""; }; FBD13DC0CA3448437E698AEF12BCEC82 /* 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 = ""; }; - FBF329FC08B1C7ED5CA09A4920080461 /* bin_decoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bin_decoder.cc; path = src/core/ext/transport/chttp2/transport/bin_decoder.cc; sourceTree = ""; }; - FC00F275871BA9CCB21D1871779468AA /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; + FBF329FC08B1C7ED5CA09A4920080461 /* 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 = ""; }; + FC00F275871BA9CCB21D1871779468AA /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; FC0413FB7D016F2CA26B29C8FF107925 /* 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 = ""; }; FC5B3005DDD30B2745CCB8DD7D6C5A10 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; FCC2155119C04BAC7B6DC58CE331B31C /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - FCF0B6D2ABA038FFFEA9BAC95BB318AE /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; - FCF50DD9E1F68DB063FE2AFCA2BAC23E /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_subchannel_pool.cc; path = src/core/ext/filters/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; - FD01CAAF1CB8E468112CB41BFF20BE1F /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; + FCF0B6D2ABA038FFFEA9BAC95BB318AE /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; + FCF50DD9E1F68DB063FE2AFCA2BAC23E /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_subchannel_pool.cc; path = src/core/ext/filters/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; + FD01CAAF1CB8E468112CB41BFF20BE1F /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; FD1265C686F1661E68C612FA3E6317A2 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; FD15BA8BB1E9FAA7120F8B11290B2976 /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; - FD1B5F391FD32940B0A27533F8EC0203 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; + FD1B5F391FD32940B0A27533F8EC0203 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; FD2626A7C8244BC1830F80CAB64788D9 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; FD3FB7A62D0468C3221CB74747070AAA /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - FD3FC72340EF81CF403FE3EB25A9BFDD /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; - FD4E78625E8C3DB087988B80CC1F91CF /* http_tracer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_tracer.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c"; sourceTree = ""; }; - FD56926ACD15BAA46120D5F9A461E2C9 /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; + FD3FC72340EF81CF403FE3EB25A9BFDD /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; + FD4E78625E8C3DB087988B80CC1F91CF /* http_tracer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c"; sourceTree = ""; }; + FD56926ACD15BAA46120D5F9A461E2C9 /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; FD599A7D2B8816BEF600F4E42B4AA145 /* FIRMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo.m; sourceTree = ""; }; FD5AACE58DB36475DB519B19FE32A6F6 /* c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = c.h; path = include/leveldb/c.h; sourceTree = ""; }; FD6316EF1919C08B570B0D90E1127139 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; @@ -16424,29 +16424,29 @@ FD6513770E658A6C321E028E0E393E28 /* FIRPhoneMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.h"; sourceTree = ""; }; FD8E5782C1B2822D458B8F72E0AA219D /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; FD8F6EEE135322871F125D0C7D51B718 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = src/include/openssl/tls1.h; sourceTree = ""; }; - FDAF8ADC84471FF705E01D9095797EAD /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.c"; sourceTree = ""; }; - FDC85BEF7CA0C253027CAB59CCE39D5C /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - FDCD87115AC50E6A80713C963485A6DF /* tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_certificate_verifier.cc; path = src/cpp/common/tls_certificate_verifier.cc; sourceTree = ""; }; + FDAF8ADC84471FF705E01D9095797EAD /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.c"; sourceTree = ""; }; + FDC85BEF7CA0C253027CAB59CCE39D5C /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; + FDCD87115AC50E6A80713C963485A6DF /* 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 = ""; }; FDE8C0E638ACDF3599AB17E05D1D57FC /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; FDF122BF4B038C3DAE23472B7EC2006F /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; - FDFDBD984846E1D8C8DDE6D4AAB1301D /* x_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_pkey.c; path = src/crypto/x509/x_pkey.c; sourceTree = ""; }; + FDFDBD984846E1D8C8DDE6D4AAB1301D /* x_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_pkey.c; path = src/crypto/x509/x_pkey.c; sourceTree = ""; }; FE2A5D385714451F620936B2F23E9EF3 /* 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 = ""; }; FE2DCC69A9C0C4C92718B9924A9E5BDA /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; FE30B0B96ED39FB5F73754230A57BD76 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; - FE3B5D68080F146728C8997C4A33236E /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; + FE3B5D68080F146728C8997C4A33236E /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; FE50E931BADD624421DE40023EEA781E /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - FE5646D09597315455D96DEB01EBF2AA /* fips_shared_support.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fips_shared_support.c; path = src/crypto/fipsmodule/fips_shared_support.c; sourceTree = ""; }; + FE5646D09597315455D96DEB01EBF2AA /* 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 = ""; }; FE66F2484E35FB0A463C35AEF2D4B8F8 /* bernoulli_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bernoulli_distribution.h; path = absl/random/bernoulli_distribution.h; sourceTree = ""; }; - FE75190669FC3181BD3F33A236258758 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; + FE75190669FC3181BD3F33A236258758 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; FE88D7FE642F4D3126B18590216A958F /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = ""; }; - FE8D49725F8042E90BFFA332841389AD /* create_default_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_default_thread_pool.cc; path = src/cpp/server/create_default_thread_pool.cc; sourceTree = ""; }; + FE8D49725F8042E90BFFA332841389AD /* 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 = ""; }; FEA01C9D6CF7CF60C94967B2E89B02D5 /* 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 = ""; }; - FEAF83A65BEBB3504AE2E52098A98E84 /* hash_to_curve.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hash_to_curve.c; path = src/crypto/ec_extra/hash_to_curve.c; sourceTree = ""; }; - FEB341F099142FC8448988E75D653662 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; - FEB5E7DDCA3FF8B23C041BE45ED60ED0 /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; - FEB604D15FE98D324F07E7D3AD9C746A /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; + FEAF83A65BEBB3504AE2E52098A98E84 /* 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 = ""; }; + FEB341F099142FC8448988E75D653662 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; + FEB5E7DDCA3FF8B23C041BE45ED60ED0 /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; + FEB604D15FE98D324F07E7D3AD9C746A /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; FECB7D91E22F4D2504A111623A6A6ED9 /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; - FEE0985A810CBB33E3600CDF51198CA0 /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; + FEE0985A810CBB33E3600CDF51198CA0 /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; FEE0B36B9BDC1CBC2C718224824657AC /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; FEFA76422F8B32C035952A1136818341 /* Libuv-gRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.debug.xcconfig"; sourceTree = ""; }; FF23BFB1C6FB85C06C093E0EBAFC9624 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; @@ -16454,9 +16454,9 @@ FF46A9A7423D03217525584FB0EB958F /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; FF602C6B56AC57B500B8C62ABC8828EC /* utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utility.h; path = absl/utility/utility.h; sourceTree = ""; }; FF6CCAF64B4F5CEDF52B7EB62B9E963E /* 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 = ""; }; - FFBE4E46246B71CB25C5165AC1595419 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; - FFC4ADCB64730E3C3E758C157EEC9A00 /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; - FFD3EA5B5B99831F4F9144944A1B4ABA /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; + FFBE4E46246B71CB25C5165AC1595419 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; + FFC4ADCB64730E3C3E758C157EEC9A00 /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; + FFD3EA5B5B99831F4F9144944A1B4ABA /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; FFD52C1D89BE68534B3058B5C01D5E70 /* 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 = ""; }; FFE1B0EDF56982F5B5170DFF3FB711AD /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; FFF7D6F11E84CE27EA2F85C34828A26C /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; @@ -16683,7 +16683,6 @@ 6040DB7AF6F89D51334BFA729DC30EDF /* WeakContainer.swift */, E1C2EF0F4884F498469FEFC14E7DB9A0 /* Support Files */, ); - name = FirebaseCoreInternal; path = FirebaseCoreInternal; sourceTree = ""; }; @@ -16831,7 +16830,6 @@ 19CCF5110D48217F6AC727BE7DF28C9F /* GoogleDataTransport.h */, E6B09AA943B7E29A4CFB589D15B6CE4A /* Support Files */, ); - name = GoogleDataTransport; path = GoogleDataTransport; sourceTree = ""; }; @@ -16910,7 +16908,6 @@ B96E10D42A7CD6B50B51BF953E90F160 /* encode */, 2F510A5043A190E6369A89259DEA8142 /* Support Files */, ); - name = nanopb; path = nanopb; sourceTree = ""; }; @@ -16973,7 +16970,6 @@ BA742090B0070F9E5FDB352E494586E9 /* firebasecore.nanopb.h */, 1473BFC6F208ABCBC71F81CF6134001B /* Support Files */, ); - name = FirebaseCoreDiagnostics; path = FirebaseCoreDiagnostics; sourceTree = ""; }; @@ -16992,7 +16988,6 @@ E908D78B9685E44ABF94444391558EC8 /* CLTypingLabel.swift */, 8FEA4EB6BF891A0CE27A39BA041A3F2D /* Support Files */, ); - name = CLTypingLabel; path = CLTypingLabel; sourceTree = ""; }; @@ -17942,7 +17937,6 @@ 93B52EFCB10325914C42FD4CE7C2EEB6 /* FIRVersion.m */, 783990AC3FC3E2EEFD877CA9430BF93D /* Support Files */, ); - name = FirebaseCore; path = FirebaseCore; sourceTree = ""; }; @@ -18074,7 +18068,6 @@ C76FA5CDBBAE22AAB9DBFBE95E3B330F /* write_batch_internal.h */, D400A358BEC79483A1F6AED4F661E14D /* Support Files */, ); - name = "leveldb-library"; path = "leveldb-library"; sourceTree = ""; }; @@ -18102,7 +18095,6 @@ 00ED19AF75E661ABA0309FE345D77E45 /* Core */, 346BE5219C9A8D60B00852703BB6E22B /* Support Files */, ); - name = GTMSessionFetcher; path = GTMSessionFetcher; sourceTree = ""; }; @@ -18354,7 +18346,6 @@ 8D264271F20180A0C474C49205AECCD3 /* Resources */, 0C2AEC5029494B60AD97C4AEF4077139 /* Support Files */, ); - name = "gRPC-C++"; path = "gRPC-C++"; sourceTree = ""; }; @@ -18416,7 +18407,6 @@ FE8A985CDEADE77DDA1336A2A072C069 /* Interface */, E04BECE761DE98C9DAB474E938A33563 /* Support Files */, ); - name = "Libuv-gRPC"; path = "Libuv-gRPC"; sourceTree = ""; }; @@ -18655,7 +18645,6 @@ 5A8299208F2D7F539835A125A30B7612 /* Interface */, F14791818F9FB48C68E4B40513DD85E4 /* Support Files */, ); - name = "BoringSSL-GRPC"; path = "BoringSSL-GRPC"; sourceTree = ""; }; @@ -18712,7 +18701,6 @@ 70598FDB7508AB320D1A279910567961 /* FBLPromises.h */, D97CB7CE6AA1F41B011B2B481EF9B41E /* Support Files */, ); - name = PromisesObjC; path = PromisesObjC; sourceTree = ""; }; @@ -19051,7 +19039,6 @@ B55EBC5013E331D0CBAE3B934574111C /* NSData+FIRBase64.m */, 50C1FF5BEB3A46CD874798EE3B4E7272 /* Support Files */, ); - name = FirebaseAuth; path = FirebaseAuth; sourceTree = ""; }; @@ -20751,7 +20738,6 @@ 9FDE8AC4E22EF98C5F1179BBB7C176B0 /* Reachability */, 0BD89095A84A133E22CADAC92A398FD4 /* Support Files */, ); - name = GoogleUtilities; path = GoogleUtilities; sourceTree = ""; }; @@ -21288,7 +21274,7 @@ 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */, B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */, C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */, - 0A9F46A999C47653013D3AD854352507 /* leveldb-library */, + 0A9F46A999C47653013D3AD854352507 /* leveldb.framework */, 6BC54C3D03DEBF9C3A40965E69CAE039 /* Libuv-gRPC */, 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, 61E75DC80543DF7605A7EEFE89CE66DF /* Pods-Flash Chat iOS13 */, @@ -21710,7 +21696,6 @@ EE0D76860924C5B664B07C8F94ADA018 /* writer.cc */, 30CE5693FD21DEAEB4F1A10E4956D6D7 /* Support Files */, ); - name = FirebaseFirestore; path = FirebaseFirestore; sourceTree = ""; }; @@ -21858,7 +21843,6 @@ E2149E72E981CB29B039947E20C4EDB1 /* Interface */, FABEECB88048B4E8CEAC223261C8554B /* Support Files */, ); - name = "gRPC-Core"; path = "gRPC-Core"; sourceTree = ""; }; @@ -22082,7 +22066,6 @@ 407EA160CD851BAF1543709228EDDB8F /* types */, 653A0BA05D1F35EB6CED4496EF7E4C62 /* utility */, ); - name = abseil; path = abseil; sourceTree = ""; }; @@ -25278,7 +25261,7 @@ ); name = "leveldb-library"; productName = leveldb; - productReference = 0A9F46A999C47653013D3AD854352507 /* leveldb-library */; + productReference = 0A9F46A999C47653013D3AD854352507 /* leveldb.framework */; productType = "com.apple.product-type.framework"; }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { @@ -28456,7 +28439,7 @@ 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 = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -29015,7 +28998,7 @@ 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 = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", From 817c4b92b6ffdc04ad4ca63d517fdcd867fa1a66 Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Mon, 8 Aug 2022 15:02:07 +0300 Subject: [PATCH 07/12] send messages to fb, read messages from fb, sort messages by send time < --- .../UserInterfaceState.xcuserstate | Bin 57088 -> 58936 bytes .../Controllers/ChatViewController.swift | 44 +++++++++++++++--- .../Views/Base.lproj/Main.storyboard | 2 +- 3 files changed, 38 insertions(+), 8 deletions(-) diff --git a/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate b/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate index 37b6d230f75566404bacd38656da2fa0d595c9be..cea513b528db405a1d0ef1ff37a9bcb6ea9becda 100644 GIT binary patch delta 30290 zcmcG$2VfLc*Eha%@13@@voo7Q27C-mMz2mwM1B{TtdE+7J;AR|%~ zBniDE(whjVSm+>#QdE#4T}43Qe`hzLsL%I*zxVxKe0HDQnc2Dbobx-sbMHBKM%e?m zeFbNgQYjmI2T+dP)E;Utb&&d$I!>LSPEx0+)6_TA8R{qM26dadPd%XipdM0x0Uqdq z01Q9`M&JQFfj4LbB0&_01~I@4Y`_kZKr$!*g`fx&gO;EbXbswdj-V6h40?hRPyq&j zfnX3A42FP8Fcb^}qrn)UH~o{}U^Cbb z4uLPgm*6Y#H8>28fTQ4Ba1MM2z6U>p2jB^K3Rx&X1C*f&dcp?K3;IA`7zl%47z~He z&;qS69;Uz+FclWUB3KMt!d9>ybhL-vVGr07mcU_fI2-}1;7B+Mj)r641UL~+f>Yo$ zI32zLXTn+VZ8#q;fbYTg;X=3wegGH4C2%eL2=0V?;m7a*JP1F9U%rKfxRDHoOmig}=dv@DY3hpCTQi5I_QQb0BZzhx}1v6pA8I6l#hr$cExkI?6zq zC<|qyHmEIXhuWhKs0-?WdZM9d7#fa7pei&HjY6Z5f+nHK=yfy|y@6(+nP?VL(K~1^ znuq42g=i7_0M();XenBUHltnWV{`z0j=n-)qhsheI*lCPpo{2dbPL@>_t69N7(JzR zG@@ymr`>38I)H9M2h-tnG#x`*=~y~}Zb`SIThndmwsbqXJ>7xsNOz(;)7|MZx(_{o z9!QU%tLTyRD0(#QpcNX^uhG-!+4OvRF};LdL9d}V&>QK^^bz_feT+U%pK#D8=~MJ+ z`WyNTeU|=~K2Kk!uh2i!H|bmS@AL!u5BecPF@S-L$QT)kkr@-?$@nq;OaK$eL^Cmr znQ6*c7%LOY#4$D|o=ISmnG`02DP&qPt(o>r2c`?tgDGXonZC?O<`rfN^Exw?nZ`_K z-eu-8j(N;{W&yL9sb-clE10#+R%RQso!P`-=?gB{L}XD6_)vJQ3<`vyCMoyX2+7qIWK@3RZpMeH(mIlF@0 z!R};tvAfwl>|XX`b{~6){fhmXJ<1+qPqL@jGwfORJNA3_Jo^LtBl{D3mA%G3VEB&*k&@BEFb!$+zX(@uT^1{CHmB zG5;Drg`dv9!O!Gp@$c|+`1$+-ei8oxU&}AySMV$Owfs8%Lw*zgHGh~t!XM?2@yGcS z{7L>4?>NnW!=K^5VY={!pbGB@a|G)`VUe&!*eYxjwhKFiox(0* zx3EXpD|{>*5WW<+^>cU|0t|tMa6^P4(qJ>h8 zN*pbY5yy(Jh~vcZ;so(k(IG10WTsMlLwsADEiMq>6WY4X@e^^sctAWT zeky(@el8vozYq_Lr$onT@jLN*@v?YD{8_vzUK8(%_ryQNzr-ivQ=`s^j0U4<^fop! z`WStUe#S(j-I!!dHl`Sx8Jinh7*maD#&l!0vB=og*v{C^*xlIIIKVjEIKt>KD#oeC zX~t?}jj`6a#JJSB%(&dR!no47%DCFN-nhlM%edQk&|&=4c-VNvc+Gg-c*FRM@uu;X z@wV}f@viZn@xJka@ri^aS`sCr)KK!4{G<>mREm|7r4*^1)L!Z!b(A_uouw{PSE-xS zUFso~O8un@sZts$jgiJmuSgT6NzydwP3bMEMyi#TNK2(<(sF5qv{G6nt(7)Nj*ZfX z(iUl#v|HLEeIk7!9hQzr=cMnX@1^t71?i&nlXP9WA^j%(E>*oao17>o%gyC9IaAJ&^W`GBmE2bDAa|C#$vx##xsTjW9v}~vhsq=5QSw-M zyzG!C$y4Mv^W^y-qm^@7lOkSpjCT~-K zDZ&(KiZVr;VoYX}-IQc%W-2ljn_8M$nS5HC+M7C=I-9zidYk&1DomqHub9S}945sy zS)HhF0YJF=iCzI9bW@g4L5X{nkCiW!FO{zqFXiZ_9R`jvysgwIYn07OL5b|E_A+{H zx-5=0vNM$^Wri|qQ@L*<1s5xM>dnAFnfjReL>F02?Neq~Q~MQF^$Q9Kr#_>;(nT(z zKBo>*Ur=8v?E?V{v7l@&U zC?7pShR4GrBI|C`=(8z3$VJgjYhwhnc9D8LRD#ynIPH9D>-mkUawf;6A80*4yz!LY zH3{~b#Kb1Lx_>oE$xYIRxf)HLEUG%uXKlXmvmQj4=Ii^Q4Od@R19UK5~viaCDnuKOAVwdsfpB7 zYC1KOs-ZSgJIFd>KUqEeK-Lb|s6WYS!2|e#K+uG&5t@?qK|06;d1P(S%QY-OY5(7b zeA2W(p8o^m>TC^sKx19xGHL+1jXwy`y$XVqG0IwHow8nuP&O`k3gnYtuA<9PL zIh)AmBlUyuIlfJSmDrsctGrSTVwDe-cJ;T62MKEHh-Qf?AcNc*Gy}~+3y=!ZK)SL; z*{W<)wktc7oy*8gvvk_6b3q=t=`Qk#Qg$nQ)cp~A#WuRl#5Ip=a0KnunUOJ47toD3 zDCnx}s|MYbPt-3XqZ{|qZC(yaL2pn7`harK7xYv1D+iQ=%BRX_%IC@<;@qiGDO3}+ zM|1$2Q!%K#M7F5wqN3I1QMdKOL6vsH5z1HU;^-LTSTJ4}Sp!}HH!8wxqyK$1|gf?h%r;b3b2y6-EQ4Euu45( z4)^}v>BL|SSlg{-yZj-2%Ez=Wt?FL`)~R&U#$CXNV3RI#@nWUGrJpUj&DCJ5@`I9B zZ-E_PpQibpU>Dd8_JFIH}xFeo=1Lg45s|YKd|SQ#NI$+QgDx0M6?UEe99CMQ{oH0Dc5N zfy>HmOvPZT1*Qryg)#LersgZzXTVi(4O|B|h#`LgH^D7%8{7eR!98#v{0e>pzpLvl z89+p629+pd#zJ9In2AK)Q)q}vPr)J;;JDEBZ$DY?pB z^*w8Hgid#8DWo8P5F$t`_m$t22g)PmPbK?=?n~lh66AD~bVrn5RTLY-iq5}(SFN%B zp>EKf9REXksI;hOhx(s1q?V9VkCmB93ym1u>yP_6fBqLSsPlNt3D}r)&;$m<5Z$hB zeJaaF4lW;3)uC-sm#T`v4PXt7Qd`CO zHi&^{*tF|VVr3VLV+vvls5q`^Oe~D+mesMn245!%piQ^&#RDf`0vSM}ZWl~~!Rq&M z4Lxb)sS`l38EoF6WjivK8rVz~Y)zBu00PrsHeq;}4l`gT%)%6hDIQaLObJV14$Oji zFdtI}(!`VzQ*KIuy0d3xGbh|&Yu%x0*alOglHIj^#o(B@jF`T*A@z6e06P;mf*oNe zOi7rMYhV{$IHpYMtgbBzVK3NU7r7jk!rrh9_JQTFFYJdYcT9O;$`ex!Fy)1*hM4kR z4lCdQI1mnkgW(We2&NigDiBjam}-ovCYTCVy}K=Tz_GeRHSiTU4pTmu@+bC&uM%B2 zpaL;$(3OPI;pJsjqe=&9e~uVhURF^$2vfe8@+*-$jvE(aw^_`wiHTN=-4+*@7?+e7 z7abU5i?x`OEO7}|n=L-k9v2s%Fd;f{oHf>BF(<~x+LNsD2??=@R(o`y!)i^6H9!A- ze1dht1efL~!`C{sY}c`L(8%%{I9a!`eqgU_1H)8+a|n&d5NruaTAy(?t&=26LUdq~ z#WG<+lhmsXKef&%^RCzH4EUzY=bNM+b@6zK>Z-jZO6v&TmVS`*{V zHai)cYiPE3GAKf%aJJ?rDr^Jiz<1$XOcAw;m3K0D?b#)AV&^h-R{KPCl+8QHt5f-)vdY2b zfm(zO%&Z(zHN0}rpz`4^T~xywb)(H2){<$)Mw^%8ACv%>!es=$E5LoY3a*B0FlEJ5 zilW1m*~tgZF_ny|W-svpTnE?J^8u#pm}*+b2uiw3*v+~_OW+o`6>fvuF=fG2ET-Zy zm7tiOvBFZ_6x|WhnVOy%W`O&^H(D!>kevF|-Z0<=0;u=>FE!uCRARmJH>`L5qnh($ zDyh!T`#b&IkQL_s+%=DC^3dcO^?XtTb#x1hqsJ(st*nYZMU|y}!Xy5vmG9v9L@O7F zRxZIG;E$LhKAEfCCDo~w0!-y#D(_{jT!vR%T7iVsiDReLX$4c6F17rkdGAe3r7ND# z^l--|Rz|&8>Z|d3uR2=$-6dIeon%EsvWx)pm@+ci8aljkz>DPbd!2;YvlIHMuZQ{k z)6fVaglNQo`{XYk5x!}KDMA#TF;(Q0i8MQ6N_j~pWI*C`OSi{Vah*(cmPYQx(#QjO zq6UbtM@vk##uVYFwrL;Td5Bc{9|7r{d&Xx)7B`=rIdE{N~yOsigszFL!CxC zJ8j*3s9VD^6}?|j2a2v!M+a531>|H_mQ|LvuN+y{-`qJrqt2^Q0!kq~j1rL@B_V?G zE|}_yscx9+zJ#)%<|rAZDt$23gB-wAxs!(dRa-^-rYHv$YQM}yc_<$dDD=cs38s2s zs&ok|(uJdzi0HDnLKISlsXpq~iark15p{BLNPYKR5t&nI6Nx5i6)sY#KU0GG5u!%D zP$}w-%1|Fvj{0JX{EyIee@sC*^7Ny66{)64rh2m(_DRx zc%d(w*>1I1thR)>gxGkSHrkk^L^J6niHyN+u~`%CgvbBUSCS>35dOdRmN$A#wMAG>WEHalM?M#65*Ud?;lE3jf1=#t{{uvcHMgPOXhj5v803~E0N;w zcaD$yPg0QBrCB%07H>&Rh>x{fW1m}Rj;pV+T3_l{1AXOKGf{SILK3l!W}YPVkAcwx znxui{TVnTgdA%OS3($N2h??Q!Y*w>1!5(KNFtXZ`65?Ws3KK2nxY(pvOB`ug;uB(H z6J0?QEhdDCsxjpt0kSZ6U`$0~Ou>NB>h1P%|KvA9)FhChm4x3`qcvI}BcACDWD}kA zHUm>{{5_DN^=QL$dYgu+Nq?iaEgHRTMcdGJv;$LO}y4RJgRW$17nvrR9Nxa3p_5DKhvzzZ7gIAy+;qpB0brj%>wI=X>=!PG2F&Bm09sdt`J{uyolPC6qCmeI}stE5jB7ut{J)GMQ&^l8ea zjJb8B-?fhPy`O7^rs}jZ_aBj**287Affm7iT2ITG3KkL-U}_1b7C3c4nzet|0qstE zJl6pM;CnCQf^MWcR7(f?(7v=ErryWYB20boOnh4Jl4PNplN$IhQyDtKb$)TZr1fT} z%`Qo6G_$Ws?e>Cz<~jju>b#3iq{#w*6>X=J=wv#DZbmn!ThOU=8l8@*rI=cVspXhj zfvJ_4T7{|Am?Dy|#nif0bf&iO*M-ozbRL0j2wkYH5!RDXLH@(khnU(%piKVSu51E1 z?WwFT#0hB<88;}|&S?zYgV>+$shgyIFtt%3J(4daTQ<}WuAJ^i(i1cZS(~b960$y0 z-+n#RP7k6hbq#9h!88dwn=!Seh90U-4!0_Oly*JqS8qk-L;6+q?>4AnNV#+MT|Pn` zmf=x2h90N=b}UT-9C5{+HI#)Os>SE6O1lnyD+l!%@wYp;#yXL#&uKEs-6WwwPti&A z>-1E0OqQQx52k+m2Us)?p=Z!<60ppC&LNok3{!iZVEOf5NQ74DcbP@qSCb`zt^j3Ns zy`A1c@1%FpyXigjUixF2jO=qv9m3QXnEDb^Ut#KNOdZA)amu5ZI)o4@cD);UBAQB_n5k%Vd$btQR>+VxFrp{E;H!yWpgO-E7P2bbt zF@(NLaD}OFHF*50!QrW@T&i@~NE;p_l3WFGqBx@L& zVSE@CQ)JLTVCu(OhG+DQfT^D_bs1Cl)wgG7s}DLGn=)=hVuq}@uV{96W_y_ij5q0* z@nXoj`)5pDtzjB5KA0lXU02VRBw3gsCREp83DcNq!UQuRm?9Dr&b^7LTT7TQCY*_2 z2#4Rs)E!I_$?vHPyKHaRa}Zh76qBe>+OK>>c!YBy$Rsj$wRK)YSi>Z#E%TBbOf#l= z9crgw05J7OJ!*@bp2K94$s&`*WHUKTE|bUPW9lKM9%Je+Og+KWQw(&^;7iYBiZ$vc z-tkCjA=7nXkZI#W=ARleOJujq{-ssgB2`;Ad)HHsOnwhnAW*D_<6v1-e}*o1nUjbjut`)9^86PQ;S2L?0-325#!ZLf>X9b(?FLRm^G(+%fQemT+X&F(2w0)H3Ut4a`OiJTUOY zfV4O1!kNt&c#&lYXsGrmEC}As?EAM1KOq+$z@U+Kp^y4yp`Ymx^QG4R7Z~_eGhbog z@9h7m*8ef)I0gY2G=ARyDdz0I-S%5@+wU+4)NUK3wkh%pzQkPqw+pZ6LYS)C!}WQ$j};Bt5fUPlb#ke*}{LQxB{@24%?)Ozzk9ga_1|bL24OCDyvN+{ z@vQikMLGmt3@jK}SL(u9z(N+WG|R9o%dxzM*;q_dm`0dxfN2Y+t(cC(v`r0acc&%m z$@-BMI@^HtVjHsFY$Mi(B?W~z3~U(0V~~JBA_jI0l9sdnYyca`2C{sib`g6~UTW3voJ@3@W9XwPMg*DR?2H!6vvSfS{TBbBAVLY!XY7 z7u77eU5jeA83w7^Lf>1BS?L|>q;EEj1RFLTgES@k6iGieVY6UkHk-{Mpm>W-U<=f- z9RnI?C^`-U^7Hf)pso%A4}w*Ss|LchWLv2_IyORVYqpJgrlUQ9ZO3*b8D_RU_zi^tln_FW9xW6%MEju>=OOVl}P$F7YVe!$jfDp|}{W6%wQ?k^)2_oL$KnwlaF9bz zC@2_U0tI(<9ZqY?31lc7iMA7;!GV)FHv$Jv=1dq&!eDX@=gyJP`5FdOoD(mu5f?z< z!1-{#oFC_p!Rr`I#eg7Y`VuaX3*s7cO)z)^gBcjSiNRZB;i7NEK^98MoYxmZ6w)aiM3fss>V*zYzbOg$rfuhC&a~B zlbo49tHqhGO0ZbX@rgE)!m`@!iE%a?Nu!Y(O}yD^w>avGHzd3EEUm=#cJ;N`*;jo< z=!N1>f>w}mR)k0;h-8}L<49zVwcDM^v45!u{aZn(4($%EudB0~|5u$Qk__XsA`eMu zlFV9tHj^9R>TAjKz8wFvTG#(UGH!^gGqT<%7W+>{Eyur9wYU)+slhuF(9f${5#wUw zNrujDjgL*RT5LovQk`=ZwUS7NS4-boV+jnbt^^%NYJf|*SGcC!cy0nmoNx_+JqBwr zSck#-=T$B5|5(;itIOTvU*o1~J~4$OPPP$)O*Py!ZaM~=G1&7`RN-dUMU@Xr4y^0Qoiy;8Tlnj;>yOG$7YSgQ{07aY8i z+pOLHLv9oI5e9oP_!xtIwUmY1%5Bp^*e4k5C%2#M*sJ}XoIFtf`~A*+7Ilosead}K zB0AzpZlIbwgu$mobk{18`-(g6BunnFlP+CkNoe22m*bXlC%BU&aNg#=!QgWY4r|>K zx;&xH2?Fvn^2YWaUeQNwUg4ziO@j~UgV7~q}M5wH}P&SAMoV0 z3Eh8%Zh3z`fDhz@_{Kcho`bYO6 zyd7c(DY}DiU+C+9socUhbBRTAN-ya!@ozP&zZXUR3*{C*&2{VZFWvfor`*D4x%#@O z_4OaiEsnpJTljpw;9u!H!EBGU*yBkIPmD`UB!M|PFd@lIie*|nwUR@2n=RHw=X@*T z<9urjNQUZ#dP}|6wCBrpk?Uod@4$C-z}4tH--YkWcjLSBJ@}q{3Ezt^rDe2+C+u?- zgX_+X17xD|3kJ6^xP!qx41UGncMSf(;1LES)mE#eQ^6DMo_+a#e1E=zAHWaf2l0dX zA$%o2lpn?q=ST2W{74LS7&gH$1(VG!a0E_<(=n{Za5si0FuaP9fKebu*%OF-b*CSc$g{MYIQ##2c*zTw)YM(_utbj6F7a($*{3hr z)%0R7%j>RrtU5-Nzwp~Nb;tiIk>7gZ_QmQeRq_j$ZLGWOX^A}Q*=5|Y5cQ9$(8`ba zk4f5@-^_2}xANQg?fedYC%=o|&F|s&Vn|^KFeJDqWoH^g216D@4nrP8J%+++exEDt z%pc@G)rFJHUkLvN|0RY7!nRt~0va)NCwq_6wZA~tFiiYsVjs45+E_n8Jvz?QS3g8Q%%zi|PMsvz=*#uQl!@f$Dp5-1 zX#FIDN&Oi8Sp6&dar*K43Hn#{4!y$O&`-p$8HUXXURXNoztVq=VLJ@l zYZ&gJKc+wZ--M8SH}7U>#o+K{MDD{XNZKKkKjRuj#MrZ|Hx~-_+mI-zEmT zi(zLByI@EF)D1%dpdJ|Z#IOXzUQUCRuGZhLGuVS?2K!V07lys-4c7MsgAK%R*oy{h z=|q;GC+ZLc49n^aCK!pq1WAy!4~7I?1f1G8F_=mAtuvY6C6F>twLsXRU$sCSxIZyj zn8RNPa#~CXbXu%}h%1l~NANk|pV$Up*WWB$i2heY3TC0H(~yHO9Q=1f3US)ViMMO% zA=k3PS4b3+U$&%>A`sYDVmQ=kNg++h{%=`QC=yyZEh)5gT5|Xcq7m0?*hlCf^df{L zbQC%XorNw!SD~BGUFae76o|p9FeLGQ6o$ml#$Y%W!&flbW(vn+IAN7g>awCxPOL}* zfl#3llD5;y83-n6Hgtx8shi%O+JPzlwmKm(AXC+H4BpS>bIhK)n7>lfn9WxbUtp z-=&UuPIXLs{wqxzKEemWDoq=Ug=(Qjs1=q7ONC{^a$$wAQf)c4At6~6!*^B*tLsEx zFKiGt646PC2g5n_qR+!{A%=@IF8;tNd)7Wp_D?W;w_f&xn(UwICTSlG=aS03_C+KQ zt_RoG!VyjC!x+x57LH=LK$F_%r0@+Hzi>)pVX_rsOO0?wV`0KviRuY*{-W@sOFpuG z+=1a@&D>|4NPb@v&>>tCej}bMTo-N#zX&&lTf%MOj&N7F$KDWr#jpm$S`3$9xD>-> z7%s< zQoXonADIm}nYY-90)t3YV=!X4woWw$6H$%9&EPIbnrhZzxSlw&Q#Z2gQ>Pt6BZDu| zj)8>hjnxJ}3_o;IuOY~w1z$sBO+A}5^%z1l^?anMr*gVaxgpBX^j}@pU^T=#U6#x> zw*K8^4GG#92^(yC=CX!lLvzy83*2jHVIc8oJBB-)9&5-nb0( z5fd6hoF@E8-8a*_th1qvK-AF1(ACh*(B06((9=+2=w&E1^u}-xhI=vm7{h%S61eTh z@BoGfG5i$6&sG`wxQu7$?{ZkfAPu#j*PHIEXAXPJHGwd^qKQr1{ZPGWUe!$FFeusw z!!I!W()CSn8!b1ex6SK@X_{?_r+!^+n2zCL%{JbKw+wGG~Ls1Nc)ieH5iihp!Q9K_NW*6h~bzfGI7%%stw06{Lv-yX#*+9))>CgME=Ps z^0%7Em(}Sr{Tf{~xLnoXa@C(TiNDn(zN|?+jnQE z!^aqsm7g|cM7*l)4r%oEYIl*u(P~k`@V7eoMK>}}_cM8mK14#1gv15+TG8O^8Qo?(E=DF-p|@O^g;}L^FmY#y`REDVe8>R?+EiNQV*U zEES1%t>Yw&sAoLd)t6tTw z5vYk%bd$6XMh!_+(7vAQV}|&aW`s8}YE&)G#K_0VdZH@6OC%ECAuvO}8qCDGg!K@i z#YA=RyN!Ish2mnD$R9XG4j_~w&ebRd`8lJ4xJ>+zfK6O3t`Jv>tHjmf8gZ?-PFyc; z5I15Jgi&LRnqU-+Q3yt%7=>X(M2o;E5~HZq;-)&mw~E_z;o=Tmh`3AKjmh3`*IWQK z#mJ_3VHB@nEde9@%V9yiu;`Pzs1Trzn-`PwrKXs#Fp8;H%n?m7N5MDR2O~2Jml zWGfHBLZXI+9|(NOX@Z4N@xJ&#gYU26Z{qJ55pX7Bl%m1+q4-D(7pNIV&7YOGj1(ES zk)X51Gm{xU1b#$dx8W2iCA7;Yqn$-yWWqdbiAG1(Z83N?a2MHm%hM0}#v zYGahkX2z!cr$(zbe>2)NxVEmh8Cf9`V0Uy*;ZS!cV%?1ynt)^&q@3#{M`Mn25pOIu zl38Z8k=(gmwXrou?VapkY;WwOsdtF6qs9)X!^^JL-Ppre`mgL@EHn0Ts<#tH-RiQq z#(rAg{W0qNT)6{{L;j}RO5;$Bx?t2*Q*IAqm2vEUQtrPIgwpO=s=W?XMr@qyM2K;c z6Cpib7NL)Ex^WI+3*#Hc8OAq_Zy9GAXBpo%&NiyXcQ7i!s24`181=@e3?l+7;+1_d z>W5MPRmOMg46wkp`_s5cQ-4Lh`bo{#wfhrQy4b?FMw5RnMg!_~zrh)p{<-_Je&}0` z+cl$X!)Q>ok)V69lP!#UjQfa0#=V+D4AC5d9!l7P+N!Yy0llyBGvgO7kx95CKO0Ke zf*z`|1+~@57RIB-?=<8cGafgdFrGA?GM+YmV?1L#%ib`a!)Q20BQUDMXe36XFdB`~ z7)WUH1$8Sg`X?I zZ~RqL&2Jb@s8`J&nrbfo+YZKh)P5%1?QX;#Qt0f&^+J6edOgwonUqT~D>au|NU2hqlrCjRnNpUNEfLaq z1EU!jkqGk^MkK<_!su;`W@Dsc^v)_N&t*EPh-Ci=Wk{_x%+{}a5Lx%QyZB*17bNMru*cx%An$)W=sEC%x*DdxBH$MMQ3iEMF7JHJa_BrODD1U1YWN8b*t& zrPnd4c_}q5&2XhnQFV#jmZVLyRArfGnlw|Ir;A)6&63`hW=pE{jx3wOTv`G3uT0DD=2l^1BP3p~M?;EAny5)=OijLAc zb?)+bKWUTnk2r*>Vsz_eiN3CrXiJHl{wxt(y~5KX9hFXzvYvEIIxd}%PGUrQ+m6YT6=>%Y z>9q8XbVfRh(JqWg6#oUIo9dMn=Ny+bW0EfSDA^~a%j98S^2o1rMfzF#TDsO{MEM}H z2aoK2!{}p-_F_c%{zjAZ14S#s6JB3gKk{EBve~3ox+&d~NI2Su(I*(~ua)jf_oVw6 z9l+=yMx@-@F}qJiRps!G?MsLEE3Yb%8+Rs8+No))+O~bHjp0v>K6~y+Pi2NY<}K@F zN(M5NkxXMmv~dWdFEIKNBQlTpdYR11+SAXIs3qii19TXpYXqq2QAfANwTMI z^Ln|F+(7mssZehBGzVllMTB zRgEN1kBlGRE~~I@t5zg?DsdEf3x=GaEL2}v6X0qjkw$fWqZw&@z9!OjCY3ZEt%-0o zGDst8ZH%jtO&Yz{M!6b!q@k`2aWx7_8jd$0Dn4JUdp^4LwYF%13u#`Lt({KFv)@@s5b;xXA(lWi6Ocq>1_aZ;Jwyti_ zWu)P=KGfAsU((25AM9#WkjBXMO=;qTHl zjDE-HH%w)_9IWNFMiZ@R^+Wnl-mFmraWI#A)yP{&DFi(rkMI|$>ozs=m3PW}$QAM~ znYi{tj2_jo0??HU&v(Z@e8aYAC`~2eBiiz;^hOU+zs^znohN}2cRNwRRHC=;M@&);#d`bR6{!#u(zARsnf0nOen#MGPX%^EQrg=>3 zF)d))fN2ra##Qol`3A}7hsd|&+wvXxu6&O~8(PA&Op^Igm^NYB4b$$J_Q15~rbQoB zP!u{;d=q9PbHMK=7BC&|gmfuw55 zw$|&U)93GaFpYJEHadZnc?a2^?L0EQT6f%DBEK>w#`%PHOhxaQGVQ_RD(%7Jn4!bV zwMWjA)nl>U6JEUKq`IFbm&ld>KR>00wsepOopqefTh~|@t+VQqb*bbPGaYr^bv^ZG z^yf)Q)|R z!UExa@{Y8{B=fvcxM%P&# zk=KZSL{2o622(@ApS&NC3aQ3 zF8(6k67Puj$Z}L5uMm@rCZju9ZF-THiTRKhi3N}~Wtwp?S<_S-HyJNUloUW_iM^y( zr8lH`WQOy;dSv>`^wf=VYvdN=*37NFTR*o+4!76bUU!@3_J-S=ZZqBXyM5($%IzDs zvu@|yzIVIe_KVvCx4+z;x>N4ZU2qrO8@R{2C%boX@9W;*eSrHQ_mS?S-6y+Gai8iw z-F>e6eE0X<7rGyC|JwbO`?u~ty8q(g<>Bj*>(Sby#G|jr2#@g|vpwc}Ec4jyvDf1( zk5eAsc%1ccob&kJskLw=4c-->1sZc-lN$d3N{g;n~x(muH3N5YK6z?|RPn ze9v={=VH$q&)uG%dj9Bn+4JWHvm3nE;6Q^f8~p0k#jCH^Xs@we$v%G<-cfj4>Z!rRx|-#gH|v3Ia{sCSZgig$DGRPS`}Oz&*(TY zzxh4zH~Rbd`}+s_H}Mbg5A)CTZ|&d3zngy#{}TUF{{jAk{D=4t^&jqE<^QJt8vkwn zU;AJ7za9Vs!~m~=pn&Lr#DJuLlz?UdEdtU4G6LEK3=F6W7#lDyU_yW+U~0hZfOi5G z1k?s>4%iiNFyL^&m4F+8FwiG3FwhYZSP)LuQ23 zIzo1Yd=_#tSH~sS(p7W<Sjj0%cs5)~a~k7^#3AJsmpV^mpGpQ!Sv zeo;fCMnsKtM2(J`9QAgT8Z{?sZq)p!_o5a?t%_O`wJvI7)TXE{QQM++L>-Je8+AMC zuV_9xB04JC9-SJU9-SGT9bFXNGP+H4yXX$l1EMEH&y1cIy*zql^qT1P(H}-{j@}l% zGkSOQ`RGS6{xO!AmNC6!hQ!Q>nHe)XW=_o9m<2HlV;0BM#yEDx?1}j}W`E4Vn9pJk z#XL46vt%}z-OZk6FSEDV#~f~sG)J4w=3H}ob4PP$b64{q^H}pZ^8~ZQ{F?c7^E>8u z&GXC)%xld%%)88c%paRim@k@tG5>DDh1S;AcGeEoPSycdY@KeMYh7ktXP2cOve5+_ku0ZDw1pt<*NahHX=93vGLB`)mhnpV|)DzOo&$9k-pb-Ll=a{c3w) zduV%X`zxM_mmKkK@t*Mw<9*`&;v?f@;+w`>`Wq1U2EKgsllX5_To*P530?V8Z7K zUncyN@N>fTgqsPs6YeJbn($YmE)gcuiEfFWiC&4`iP4GiiH?lK?8Lmpg2efW%Mw>4 zu1;K+__-a}J?$2I8+&_uCwo_W4|^|rnZ2*Q!amXdntiJM4f~t+nfABs3+%P_W%iZ! zHTL!PjrKkEefItKgZ6LiKiRL?uiCHMAJ`w-AKU**(kF>YQj#etIElQ+BPlT{De0Z0 z>ZIDFWl1ZOPCJr*O!_71cGA71-;(}FrjlVYlguX@l8woc$wkS%lE)@bNuHTJJ9$p> zyyW+imn1JwUYWcmd42N6GgGtRW--l@n>BBi z)-1DGPP6=GMa^0^>(;Div(jcentj&ni)LRp4{09TJifWT`K;y(n=fu&+x*WKd<#Ph zsYU-5BU_AVF|NhQ7T>qH-r`1!Us~L1@gTKvYE-H@)tVZY+9GvW>g?1xsq<17q%KTd zoLZZ@EOlk-C#eThKTrKK_3P9lj?`nR-=_YUdL{K*>MyCcQ}3oeNu$zW8lC2r=9$(o ztx;N7T0~k@T1;AUTJyBjwDh$0X{Bj>()y)Uq@75+nD#^3<+Q75kJEkA1JWC(2d9Un zN2bT5Thimwi_%-Aw@vSm-YLCHdbjjG>4VdUrjJM;l|D9oT>8}XH`3ospP62p?%0t2 zVfshuThjNZA58x&{ZRVp^t0*b(!Wo?lm1tRE(2!J8ND+qGlpeUWsJ_4m+@Z4qKxW{ zB^k>zR%NWs*pP83TN!sV?q}*UVJ4l)X8L4?XGUg5 zXPPrpGFxP(WoBe{$n2e2p4mThK<2*8!;Z|OnI|$&Xa1P^N9NqfRIJ3hO8_K56R+4HmC z&;B60I(t?2rtB@*+p>3N@6O(vy)XN4_Oa}f+23S;oBdt(!yG0@$T8-aavJ1#=lJ9} z{Bojm>^UhpSvhTTI_7lA>7G-XQ=r+?0noC!Hoa;D|X$ayPgZqA1}n{&41oXz&pDX6dx$e21xn8;6xs7w9a?QEcTw88pZc=VeZhmfIZgFnc z+#b2Ta(m}i<_^mpkvlSXV(x3Xujfw7eLr`lBX>>i`rM7VdvZ_Zp21zb@>k@q&R>_mA%A=RC;12SKhOU%|8V}%{Nwp2^DpK9l>c-7_57Rpw+jpf z-Ua>zK?RQBf{22s0&{_-AhjT)ps=8GL63r71!V>O3kDPnE~qScwLmF&v*4YAxdjUf z78WciSYEKIU~R$rf;|Pt3hos=E<}ZFp}x>i=w0Yv7*rTs7*QBq*tF1Em{^!ySXwxw zaCG4-g%b*u!bycQ3TGD1E}T<1uW&)(;=<*H9~SN@{Mu3Ypr}bvUQwH(UPTo}xM)hz zqM{8&hl;)`I#P7J=w#99qBBL8if$F%E&8?SLD8e4zlwFmpjaw)EA}k*D)uf8EsiLT zDvl}6C~j5Uwzz$9$KtZ$zQq;A|6dLF{g-s&_yN4Uy7u1t+I#Q4>l!jzsDLPf%2IJ5 z^DQfetUy2z5CkEnh$0B3U^|;v+3qT@vbwtJ8rSsOTsG6OOjG7qv4vKX=*0)p&^9D*c6;E-%cE+ij- z6hTTL0E7eKK?D#HL<_M&LXa5b9Hbp`AMy~=0eK2}1$hH`2l)W`1nmy(3mpX=3!MP{ z4LTJ%9l9F21-cWu8=43OLlMvnXeJZ~B|;0J#n2Kc9m<3XpbDrFYJ)nUE~ppU01ZK# zpvR!i&@0f}(AUsU&@LEo2$l>(!}4Gh7zNuQFwBz;fr zmOLnVX!3~U(aGbICnir$o|Zf#8ImkcZb*KXGAdEL%9oUH@X_$e@M-Xw@Y(PUa3~xOPlcz!)8QC+7Q7H%3N{}<5>k$~ul=#9ujFcCsT8A66Qf+$C55!HwqgahG1coBX? z0C5)qd_wj^E=KM~!jP%RbR-6uh0H;ck%dSKl8O`}E0M>Lr;ulnZODtrJIFtgkC9K1 zFOaX0Z;YJ#}a5q14h;PwLgwJE`wc-BG`y z`k?xwhM27on^bquL^eFT)^m_De^d9tHGzbktbI@gI8TtrXg*Ktx=tguC`WPB$LARn$ zp|7B?q1(~7(f81Qq90}S&6ts~CL=9_nsGQonxV*0WoR;t8RiUYhCSnGMkwP}#>0FEU{Wwym^@4YrWixTFfe?K5L1ScVUA!_ z7#+rpabrT5)0j8d@z~7(b~iQ=3&HNgBC&XEE;b)qgr#8_SOCk$R$$%OF!l`gJoX~? z3icYd9eW#l5Bn1P8v7Re9{UOV1^XS_mDxRWSmwmc?U|@dLMA`6BGZ!T$*j!`WCkf$aM1 zhU~`dmh6|=@3Xsb3AmoP-nf3afw;lAakv?{#kh62T{sX9iaUTy#vyPhTskfXmxn9B z72~es9^pE0PjS!jtMNPViFgQpKmHINiBH34;4|^rcoE)(zld+g-^Sm=Kfrh5-{Rln zKjA+EgapDbgr0=)gxQ2egr$TPgw=#ige`>agx?9f2?TwiaD#A@@R0C` z&_Q@Z_?PgJ@R{(9@PpWoIFdMqIG#9(IE6T!xQMuvxPrKfxR$tqxQU1+<`RpER3d{2 z5DybYLc>P5ewsAoV2mCiNo?B#k1C zB~2jxMw&{RPFg}*OWHu%Oxi};NrI5}lMa%SNN^I8R7jGMDoF;CkyJ(Ukh~-x$xk{? zxnOO%9)Zg9mtuLGdE{J z&Z3<4Ih%5}<`{CEIi8%_++MlEb4TTl&CSmRayhyD+y}WYb6@Aa&D)&^%S*{a<~8QE zB(;o`y#g_{bu7Vao4EtD3@ z3zdcH!p_1Eg`Wz)6n-yK6d8-EimHohitZP^DEhnTpQ3lg2aC}_F{U`H7+?IA(wowk zGJrCeBBE$0UW%VmPidqyQI1hsD6N!Jl(UpJ$|cGZN+;z7#2>@ zCh9S2GZnZ??WDeTR>Y(TSi+++d$h)+eX_-+eJ&F zQE3vInr5O|Xf~RiR!Y8J4LwVkzt z^*am7N@ZoRGFdoQ4vWkxWEHdcEG5gy@~~=I0alO|W<^=etT^i=>kR8W>k;cO)>Bp| z>jmo->kaE2>pklu>oe;c>jy9nSOcU2rGO1M4?O#+b<8QsIQma{Ao~k{uG;k5;*MM?0)Ql z>>=#Y>~ZXg?8)q@?0M|v>{aZw?Dg#3Y%qHt`ye}ojbx{>(QFpGj9t#wvh{2u+st;d zJ?vU`fE{Fq*eBWN*caHB+1J@O*>~9Y*e}`taRzaKp_~z%(VTIdiJZxtX`GpyIh^^N zMVy_S-JHD~5C_89&pE_N;-qj8925u5!Eo3dGv_4dDYq|o5jT-b<|??g+%PxFZRW#>U(H|3-_3{diTqrCKEH@x!l(0Dd^VrQ z7x2aWDt^N!689`pj5yY2nA&Vg+M7#3$y~e zz$s`HL4ikOs} zQgm8$R&+yjOLSNCK=eq|A?_v~ARa0nAs#KBApT7}RXkn1OuSOONxVf279SA9#3^Ew z7%c{{;w*8om@C$cjbgLdDz=NAVvo3191sV^VR2Oahxms0rueq_uK0oYk+?(rMEp$r zLi|enPg(!6xnc$&t_{ zED2k}lL#atiCt1J2}`1qX2}Uaa$0gu(k8hhxi5Jkc`JD@`6T%w?Jn&h?IrCi?Jpf6 zohY3wohF?jT`FBAT`S!n-74K7-6h>4&5{;MnbJ}zS9(|~k}9QYX@#^>YLc3zUTHuY zl!m3pr7`IV=_%=T=_Bb!>1XLTX_qWP)>GD7)=xH2HbgdDHd_YFlP!=fk}Z)fm#vbm zk*$+$lx>!6m8Ho5nN@a5_FO(lzEr+XPL|8$TDe|slvl}*%Io9}@{l|tKQ3>P$K@yF zSLD~^?eg35d-4bJuZrG^0gAzjVT#d;af%6wNs0xE#flAzt%@CrT?&u_qS&uEsK6-5 zio*(#LINn{3Z+7=s8CcYObUy_rf5#Z|>M#hW98jx0TL z@Cfxt)sYiN9xJ;mCn{$u=P2hZ7b;gNH!HU(cPe))6O~{kRGF$wS7MY|O1zS&6e%^z zN~K9@QQDPGrCaG$9#b|e+mu(7*Ocu_;I8t%@}csv@~!fRYJ_UEYMg4KYO-pYYNl$A zYQAcbYN=|4Dp3Vd?Nc349a1H$5I?VbXcb14rNXHQDxu1uYE!)`A5y-uJguBpZY^&u z|FgWa{AKy;@;Bw5)d}hz>R;8p)qU0d)nnA-)sxgy)YH{7)!Woi^&xe#8Ud)&)fwtc zb+($Krm4AVg<7lDtBq>2+M#x-y=uQYppL7rt3RlJXu4~9XnxfU(~Q=P(@fM%)y&Y$ z*38xH)Ev+tHEEg*O{NB?$=4KVN;Gs0OH-tZu4qhHjQ_u5P|=p>CaSqi&0CyY6@0Ze5nH zP)F4?kewcowe!hN@eu;jWeuaLuew}`UezSh7eusXSevdv|FVMU77xix|M^!GXOsb?* zYARbQ&sMfoUaGuOdAss)<&(mrGB=r9&8N&~&F9TG z&G*cInjf2=nO~S+ng6l$vy8S(woJ3kw9K*0x2&+Nwyd*kv~00#vm{zlEGP@wg0%!E!CD9%TbHl;l?y&B%?y(-QBCTmwv=wX3vf`}8R;ra@1*{w^ z&uX#yto7DLYm>Fv8n>Rbp0?hwKDIuyzOcTszO#O?{%8GS>th>fn{QiWTWVWjTWwos z+i2Tj+iv^aw#NptVQtwqybU1Qa%^N|Pwb5-X8{5XUnQbk$j+&k|vunUL#2Q6S zZOx^cn>BZ8?$`WT(^>Pj=6%hlnlClqYr5?H?St$??IY}??PKjL?c40T?0fBC`vE)5 zo?=JX3HA~@VCUHRcA;HvSK8I~3cKEJwR`Nf_JF;?9=D$c?C0zk>{spA?KkbW?H?Qo zj((1TjvPbG~zhbE9*MbG!3*=N@OG6YNAdQBJfI>&$lIodRdMQ|B}|tDH8c!|8H* zoKa`9v(0(MdCl4Gyz6}6eB|tKzH@fD5?no9y`x^KH*dir=qdPaFhd&YWZdggf+dX{)rde(T> zdp3IZdO#ki=YXfeQ{(Y@>O2jekSF3f;W_O&=egjy?78ag=3VFoP+p^zKg!gz7MrSYFE{!*0O4?wVv9J+NZV8YyYnO zr}ka#huZ&u+OM@g{N4RM{Js2r{R8}i{lokt{bT&&{geDt{L}rj{B!*a{EPid{pGtetAEigZ@Ft9gpFaQe_2ABaLUq>s9sY`cQqWzP0{g{qy>l4SgGiHH>Ij*s!W$O+#u!Rs*g<(4c5gHe7DF)o{1r zLBqp_=M67|BZ3oy8-m+|*dRS942pu{pd_dZ>VuU*W6%{01tY=Z!C3G_@O1E8upJ2A z4&Dp?8GIak66_4VXk68ZZWJ{J8l#QPjq%14jn^A*Hr{Ex-}tccdE>{%uZ=%K-9x{I z`h@z0284bK%?~XJEf1{vGFB}@x5!=+(v_;6Sl7Kh8j?r>xHa`+VJ;;Z7DtOaYP&yN5`@8 z>^LEw6DP+DmLLdP`hXfD-Z%3pE0>T0+MM>yQ zKtL=gC{08KQHlbBh!qhFML_g7dzVnu&-b4nyzX+lJ3BMa^KLWmncdevB(-lOB_?S3G94F2YpA%mYmx!N;tHjU5HR2cI2A}{91fT*B;0e5dH}C`g zpd*L`Q6L(00x=*Kq=0OY4+=pk=mNTeGSDAXg8`rh3bM^ z%mwqneDE?@37VXs8LR@U!5Xk0Yyz9X7O(^C1n+>oU>|rFya)D!1K=Py1U>{Gfs^1A zI1PRUzk%Pub#MdR1h>E+;5N7e?t(u_6A4L*q)DEX$sjVA3?W0wFfyEMPezdOq?xpk zRx+I|CCkYQ@-cD%Swq&5gGuKwayU7H97B#J$CDGtC&upSPB!(jt#gyZ1^I1y@aCY%QsLLEL2m%-(5C2WFg;99s5Zi1WPF1QE2 z2M@u+@F+Y6kHgR4N%%SZ75)Z)hu7f^coW`&f56-D4!jHhrkpgzP!c6mZ7Cnhmug3a zQejjl%1WhB8B`{fOLeA-sS>Ii)t#!KDyb@}57nOlgxJ({2a&Cp)7H{FJAOZ(8_bbC62?m%~>W9c|Lk+#vPbUy8%JJSVpAzeh5(-m|j z-IsohuAzt1Bj}OzMEY@h68!}IB>fcq0{tSrlwL+Jr&rJ~(J#|0=_Yyyy_4QWzeew- zU#H)o-=z1^2k3*e^C$HkZv~ z^VveSi0#65XM3=H*~i#^Y=5?z9mEc1N3dhqvFud#N!H0~EMn)f^Vs?9bL;|kG5aFB ziQUX@VP9dlvfJ40?5pfs>^tmU_C0n#dx$;Ee!w1OKW2}yC)iKf&)75U=j<2km+S>6 zM{*3uav~>j9-JrFmh<8Kxd1MN3*{oX4qPxS?DD&zNIc@>Bkkh$E+zZ@Fu8G^iy~1tf zwsG6JH@G*s6P)u??lbNrcZxgBo#8&`zTnPs=eUd9cii{f58O5G7w!-4Hg|`+$Nk0A zJi`a`A$%ww#)tFm`3SxP-;s~xqxe`pk+<<_d^(@cJNV9g0pE@9&JW{<^CS3?{3w1j zKZYO6kK-HoMt(d$iPw0f8ehI6Mvn*!QbTnVGuuphbcu&|b91z|YjtR$w zQ^INCf^bpzO87zeQ3N6>LXi?_kr7#u6M0b(MNt)fL|-vT3>G_zkz$l+5v@+KRO}*l z6}ySu#U5grST0tGm133HQ|v1a6o-oS;#hH<*dR8FPl`@a6OlMwoGZ=~mx{~8<>CtQ zCGll(ow#1yC%!AbC+-&yhzG?(;$iW9@rd|=__26WJSCnJ&x_xP--_Rf*Ti2WUJ@ix zk|bGDBvo>HNS>0H8S?M|Hd1;08lC)M@CvBH@NpDNAF+8A>EYj$b`(utgOl&ay!{iw#o@|qHL3sWV@U! zr^u;tnw&0Y%LQ^5xvN|y_mr#U0rKPWB>4$>vOGneDnBVZWlcu%Q}PUXt~^g(Brld% z$S=t+%j@Lz@+e=Hx9Psq-b@+tYWd{+KSz9fGwejAB2~vWUa3w)WRBTF;Vpo!t6s1b(tvsewD+84} zWvDV-8KsO>8kLF46UtOYQ>H01lxLJ@mHEm-WwG*tvP^kNX;M}z>y=H)HnXx*d0ly5 zIih@^992G4jw>gXQ_7dh1?4;Cd*uh^C*`X0v+|pAQ@Nv>R6+&%?yV6Sb~RZ|QB&14 zHC@e6Gu3>xtJ+QNuJ%yN)N-|-+Fz|v$ExGh2DMQguTD~@s8dy>&Q#~9^VDVf89oyb zH+5e@1H|wmcC75;E>)LzT(H+5h~KrBwPwxn1#y$OMf^eBChlMc?-G9!_lUoUzkvyu zOlM7J0Rez%4*&r6b+&dtQpr>ub=MHkMG@BKN53RGjfcc*fpxHwo>J_ zCbhk0^7^~wU$r`9;rIl7azi3_!nE161u%fsU+U^dtpXh2_2pfy&i~yH>Ct}R>J_a? zGgYhh?lt3TM%FdfjSJ~mGZ_Er7&2;fW60pq<44to)Q<{j99kDLc>JhAE)k>^$!5?)?-CN-0hEJY2EYnX393L(?G5cs?JaH3YSUk!59n+9 zODogf*51)qgv?NC!C+I{CQzsCZ308Iefr8aAv73H_<)gmuh5XT?{@PbuMQkDqQ0Tg zZ2pV@B&724i}iV-smd#~Fi^wHr1L& znZ}x)Ha%~8(e#pOyJ?^4i0P>5xam{Vx27wmtES%witr`^i7=u)VJFgwZbW}#2r+^f zO*}=+A?6Ybi8aJd;%(wRJfA#5oFlFf*Rg%y!}G?rc)l11GC*fgg7sh^7?0m?E^p*oz;*pAYb-xLOS^%6F6xuOFj- z-F{}k(_jWxGh&kVL=%{)y?@_3g4tk>J|iOC{v3E7Hv|@dg+K?3z+$jO`%wEx`&c`s z9oIfti<@}S6oJ2&gB7^?6Zq3f`&9c(za6nxT5H<1vL#@E4f??jvC1o8n_=}^wbM;t zyLLt=I>v);LWCU^_%(LUF{(9UY-wDa1R+6ApppVcu^@6j=3$F`0E z1b-MDG3t0)H+NrgjSvhY)c>yMc%w5%K$uccbD6;U4%4`w&m;R{qxSL`Sy!-Q^5Of&_iLmKTkx zt$VzCP2K9;7GfMS7EM zwAh%g~ywek0${#vIg9mo!3G!AHFM>3L(LIi;b zfCzFG*@=uHV-W!np&(+FULKQELME7wtRoXi8<|Af$z(ExOhp8Rh)_h}lIe&TjEM1w zSfV-3kQrnqnMG!s6f%d*CG*I9(qY;|7LbKx5m`)@=wHTcOAkUsfQEZRBO(M5!HDof zMBpjYZqw_gH%yA@P19Rs7qTna&9s;7VVZ^rZ$z+&@X-no!RUu$Q{yX5N7j&4WKXge z*_-Tx2o4bfA|ynpi15@LpJJQ*5ci;;X`1O6B6vMIE`lBCJ`nY)xS)wG3+?^&0czDp06iy6UXB}$%*9Srag#ggNU~J z-MCTY6mqIQBHlOYNz-;C$X8Xg#`)H901hCeMk4a5K4Y+$-QfTc?GWKxt#;70`VRWV zc)IU&az{^aT2F>JrJ=+|wcki99n-kmV7sA^)-9?s=&*Pwr&D>F2kH=SqI7o~h zH>s$xZe%n0f&u0~ul-xpOUY%pS1VkiUP(3~A_fuBMsLDe<&5>L(?fF3#)4i&u67HW zT#ty3hzM^LG$J~<^?sx2NE5jU5$zuc_7%4{BCt4o^cXwu(;||cZjnS{kr=~}(uMK4 z`h2_S^?)%P$zAM3>aW;`IRA}dANelEu%9f%--pPjVQl3N()wJ^R&|NA|q&BI#rV+#k#`i7KPJu@rO z`7f(2B5#tn$Um?s?~r%NKV3#zgot89WVmEmhloN%)ILhYU*z8pi0F)n%zqF8DNF>U zAp=>6Ej9}g*@(zPM1J%G$riZ{6Z-^gm@U|$3Ox*%Cl~``VH}KyW@v#{ zh^1D7h*Cs!K}1(XbVEdUMD##J86wINQLz!)jNoR9fGIE)rs2OCCajBNFZZ|RP-9eUYY%(DJ~$3T zTw$Lk*cTCf^{<}k;Dpt1AfCj)0k8%Uk0GL8Ghv3cS}h{_Yvp}M)Q_rj1(~{r{;e~H z(z;PY8i#stFg!cXJ!nwFTH6=_M;n!mgrg8K5D|kOuB>wK=n=L5tcI*sWA(Yc19hg4 zr&DRD8&%sK&)6F3Y9p&tqyA-T@Nx2{X%C!C7Q(6UN$5nxFhmp?@)+V$u|`CULqx+P zDh3gJ>Vb-lLB!C1s@N=pzGvX<_HYh-77_J`7>QJcTN`}A zU1sEcYoj^1!mVMWAJ(vDw}y>v(Xc*la})J`xlG&pP6sx(XxZ3D2x^%S=GBcD5%+lg zz<(38g}e#3!flwKEpUfngp)8qh|mx*!Nm|h#H>APgzz=E`vF5!5i#+f483hSvI@Qf z`|O4L5b-!7opKh2!SnD-cmZC7U%^Z8Yj_zE z2oX;q0uKqEM#OYP%s|9UM9f0OGl-bI5q{fZeLuo0*o{QMpAGAq(`tS55TP4x1zX=D zm-RW|pN93_L&UQ!)<>DJ`cQ;vn(;xzTn)P%{Do~#Z0Q}vQarXi3j445O_YF$=UkRY zDU>HR7D|N!5U~IoUo+)pc>0A}tyca|Yoo4&XR~f=YpvCf3Ut{T72vY9#n{#;FT-#b z{_FOC=?N81I5O`3bGQ9s>am~!K0J9aSu5bm3BE!swW;EQ`lLq!BYsTuSuaE zqx$L3cMf!}MZ|%Bk%mX3H>nzG;6EeWRz$4(pAn84O4UCg?G;3<|0ijq4bsL?W2tde z10pscVk4>~HX&m3eb#WpuAyh}|B7(`H+4_BsoP>u=X8&H9u0G?8a0Pnf~|;pmYPe= zqvli3Q46Srluj+879(OCBDN#qRYdGS#7;!)Ld0u`*o}zS5%I=G>Up;nQOl_1)CyAs z^|E0_Z?;;|9zMcaP4J8@i8KfJrMpK>IY*agNIK?v`m$1@ut*Ow^Wb1y{>28(3(bL zPJ(k9dRiBy^Z%d9{N=9vxIV9op)&u@DZ*eH!m3Aed59=by^LgD3%N8)OE?upb2Lv2 zw1|jL5rGG@ClPUKH7(N$v6}Wk#A!sF)7Bv3ORcz9Y29EKh~8!OLx#G3^(n2<1G+`} z`O<+#Rqbd$+MmV_?+hY7N5mJ1IIH*Xwor(q@w~K&jzYwF{cg8#k9gW*9Aj^Kp^3&r z=ZkuL_ki>y)2?RPPA4PcD@1&Ee@;xN(OIUptLSt(gT~{}ONjUy5tmod*``Q37ZKlR zK8W~MpV_^*teEclUj@72f;|xNy;1N7t^7gn!?UNj(<`lvRM9v&*F^V3#FZwxHzIy= z^{b!Jul{s3BCaChmk0eCNaF5{pN;0O>63c|wjV{0`>%oxrU-gGB7QXt z?>BuTwga%uSsD2G@t}Kt8-~QbQm7ceHV(v7xE6CN>pns^6Bq|g zpJ98tY`R5|I2#y+Gl6}G2?QRb5HAwTh!w=kL=(|WtisvAwZwX2Be9v-N^B=y#ks-P zh&PB6c!$X?yoV$W=bM*;t>7?D`<=vDsT+7J$8B(z1UNP1N&4fB8d*4gb;Eg(fn+T? z*hvm0hv97+4R}+=Dsm0E4sXUdPM#ybB7ec#EdIosDzac-yknvo*1*YlU&IS=9o`MG z74L-D>vpC0^N4lsBz@{*tevV#1FQj#P z5xtmRf~^9W5Il?Emk9oXC?4S<7bPJ|HZqgmx#Q|;hL0ItKdP}I2g^dg)AL++x|!Z+ zie5*rqF2*v=(Y4ZdOf`X0RjP>P$dz72v7*n2r%pDP4s4Z3;hbcmEJ~gM}S4Z1A#dR ztVG}g1ScUlPb=1E_YU6S=$%PK(Qnaj8wS4z0j`OD2LVAVerQ@v?{|+=0IzTElkQ0$ zqTe@4A4WiIqK_aT>38~shteP6U`c!zQJLt zX2PA}5l}t_ElES@4gS{L2}AlUeNK1w^@H?z`b&L9-{d6vBKx{8@*T0~t@I4UXW97lS(x{~R| z^k(`neVNA)NJk(GfgA+#5O84hOtnd21~4_uKytX@%*J6?Hlb#O@v~t}-JtrK5eQ@; zkf~?YSo9YLL`J!6k*Q+_V;5LeGh%#QGgD{U-dfL4qaFmZ-FNutKMu(AY-wVI`%Eh<{1RKBG3(i?g;cipll5@hk2HHhMC9AN1z;m!T1~kLlGF^QlICUWrq5^z`V#T zMW6zKN(8D5^;yBZvMMWFWsh1tMtHWX$fvk8Gd2=r}cwlJ?C zfI05xR+yd48-~K{VqRl*Gp{4iAAxEF1|U$gnt79Xi`m1xjle(z1|fj;x(+MMt`z2d zqakdvLo`R9nt^4pL!O8oJ*Ko(J3eBL8@lu{a}0rc1co)6BAFA0ry8z1>te7r)w{L4 zwfq_8qM=QnGhZ-gnRCo}=1b-R0wWO^g}`V8#vm{jfpG{ltYf}nE-_y-mzi%EJe5VD z5dnn2Q+Oc=fu|9eZfKK}!K=h;nctY-nd{6A<|cCsf$<1TL|_sElM$GTfb)S$-Em8B z0+wL4S~+>L#hj2FXG^r$Y>6qhlw`Br8WR$0NwnGH9-K=`Ni>#TEmm`4oIS~skdkOI zTkOfn_LvZBLW(mX&X#0LN=`^hOtPk=*rrZxRlC33Z9VR4t7`J(SgScX&Th9_EcTQn zYhtq1ZZjIQTjFd9xVD6pl*A;P#b$S{^Cp^8;%rtcZpLahTEzXrjr~VkPM58)z}?sr zuEr|<*_bUkF*)&HjajV!*%ZcQv0Ibk%+{o2a|-T~IoY0g9~MiyTbj}W%Q-pLC=h2) zv?f{Y35m8OvpLCV%90$HkeF<<+7gpeEQwZY(!U$CS`sj>|En?H-Pn`&IefIO6l;p} z-;E{NQY`;&43lUeOGrtMOED)|l9H^J6r*>~UsGvOOuu zjEiK3r%n5NAr#Z!9v0+6>Ou>y=toFF11ebUd&E|we+*o+l8TIKb z+vHl+3eP(3Hk4{LYO*CM(HxgzwOVafv&C#TTMY48lgzj}tKDq3+Y?hPDR#@$6Wxtn zBWyeDQCUCMpABFGSsY_#ATSewSqNb7GaFm2ZGts+s3SJ9a$ui|`jN2-xv_&2NA=0= z-6u97IkwR}u1`U3uh>z&Vrzz!>y~;iTL(4@+ceve#X;d&1m-of(JT%i&mr*QBk_|p zw*>jQ)oNcOe(tIFdywd3Z7o;lSF2r&tMS7;Ba+#4?BLiGHkHNEVF3aQ5ztq$8Ehtt zgTNvLmLTwgUN}5LpEIm5)`49QiyiJ_&CxrzvTJ^+qq->H6))Lh)4C?M1cB$ZB=?D~ z3x~IFU&dA$)t9psEcTq(g)Tz??@TeXz1ZGHs9u4+Q9!<aD~Nwxv7aAh5+8s^3dRh9o>Sgxms;qQ%GvPbsUQqmshh5Y$H3K#ja*G0&5V! zj(Xi{+>c4@1a`8~llAxn0$X)4wK1N3ik)fPGmU+koz7zEZ9rfn0@#ahUd_%jMY6M* z69{ZEyef9*!}YDHwN7>+tGhL)wc#Z!UTiiNNLx=VWt*|9WtXwb*%j)$T^%00IXQIE27qgjb7QYu`#)-5@-X zG3Mf9bY<{-=ML<9*`4ez_BD1l`#Spu0yw6;iNGEN-a%j=0`J}Tz3d*hdEqi{-y553 zjZ3koBqt|Wu!FEA*laHIO18zB6Ae$AkdTmKvAf(M_K(;b+ES7d?bu`6ElJpIB;bPK z*n(3MZDxCtEy14n!1uEI+-<#u+tPm>?XAzxUIWpTH zxU~=6ZN2M)<%&ZoX6&gFQ*Z!ENV3|T=9FZ^xmc6ql9N(!Ftb|hiRPq)`@3<(1wt4%W)~#S6Y)XWG9xa8(BgUc9%x;SnvrLncec= zjfH1}b+1|9={>Vm&rhCtEC*IBRl(IVHuClweQ5AqZE8l>jqm$H6=SM>ZUR zrs7p!!-bwTJk2=-j$n6LQZPKW-X2>#Y+`E*7ujD;(OXrO{ffOrMX{IJZ`g0y@7V9z zAJ`w+E9_6~RlFo|m;D8SqX^(M7dA6I9Qp)-PZ2nYz-a_NN8l_1=Mlhz9h{=UD;0$Z ze2uFd#{S0s&R%D4us7LT>>uoH_6~cO{gb`N{>A>ynK%N0ZxG2MG6a!H2ruuGV-YzE zkuM=~2O{4`{xf(x-NN{|&@x9(eiujF$l8b8G8ffS=!>#fF;~Ksa$UHtTsN*e z0^cI=9RlAY@B;!rB5(zPpAfi;z|RO=L*SQ9T$wu+%~f$dO_4Z_8Nv1C@Yo(F!HoY1 z{EomMcrR*>@%uI+=^bdbnb6IXNF_W8vV=Om|dxo2hz#RncBJd}k zqi}P%d9FFiJp}%8%~80;M!Pto|9yXs!oA2Xe{@pIt>CaOn-EFpzx0bRbIshk|23)Q z)^i)Ujoc{f1Z4NIxu&X6^=e6OsOi4EWbtmx%nJmDfKxS6}j-M|&$>U7Lfd!FUJFiSkg^Sr=|yu{1A!mGRo z?}^AzM1~pD=n@$^fZ#OHvFW=5kL_WY^#ifP@6>*46aH%1g=pv|8PV%^`El!O*a_#{3VQ^MO38Q;XGAku7562NEh*%$_&X;5M@DB*Jq zN~{=(ep-w0FXT(yF!BBjtP3^_lh1L%v>Gs-d=I`KHbcIQFXt=xO1_Hk$@k)W^L_Zf z{9}m3%_SoeHw{55(AAX2=iWhawUyfy)fZ&IWq7 z8ImQ4#3`q0)vtW?_;G{k@^BV+$8)PQ34O`3xFUXn!OBEL=C!i&1ZIVw%ug{sh|EW% z!~Km}@lXR=d6~vfH+Xp(kp)fs3`7>X%$A?c&oy|NWAIYs;$$>V9*8V+ z*)_k(==f$tmfyE)ek=bfuKl586~BYuiO32>R_X&#hxpg|xBr(}^Y8F``F;Gmh^#_n zPek@YWN&QNiw3>Ve`@IC5&i@IDE}e<5&toNj6cqQ!k<87UqoVI^+RNTL{=jbW3E9Y z7WW`T)^6lKYmw2J7X3VD=x1H4gofSM&(Ut9<$p8)VcQ$rDv6&BNnGQ9!Jpp{IRued z!uY!$OCnTl-AKyc;%^(0_ydu{oA^739AQYJ2mhBq7)%ckaQwub9Eq70NQ3E7|6#MO zYv}?j2rl^uyh}b~9^7TfCsgnd0x%nbr{E=c3vGn9f{)-Uv=jUU>svOym)-8W{V z5a@<3gbHCoxG6%2FrZIqh3-To)|=^umCkTs&lB*{c9W2Z$f+&Z1v|zrB%7ugA4EQh zm;H^e`=S;y1#Ey#0yYS(Nx&BoM%~fhAr#{73!M%1!@Ck5YZi(Ov&1z7=;5@MdDO6pHXgT*Qs9k5Fge>nl7a^b`6E)xrRwMi?jz5-@SkAab_;*G%6|8->9w z_=dSfD~vMm>8<#lzc1S5E_j8)6a(H=L@sKDry1~&@DxAUfVUWtOR$j{_*7N(Z?Q4q z8DWlraW*1fXcC@9gAtZva-t6%QA{ zLaY^539lF+R|{)|wZb}Ky|6*pC~Oio3tJHRG9t0zH6gMYk*g578j))dxfYS@5V?M% zu(bvEjuzaz4cr@Aabsg_ak<;wE>}2c;68-NjjgzkVBD~~aMbu1yQqv^gvK`p-nJF? zC&H%&Y;0d!nuN~~`HBJC_l$7X5bfuNXz`W+EZTF1XW6FvKNsjPToS%bc zy*+1W`!++awZawQrUCgU;i~Yna839{_*M8#_+7Xz;Mjvb#4bd>hREHBd>xT*Ao5K_ zzJ~6!Vu%=yQHh}j<^u+1vAu!$puS;YpkK5Y>w+xC zxF8?Kkj3@}xSB90_S5cvTjk0SCzM1F+G zj}dtck;f7F2_iA^pKcPf-MGbk(IIv=Mjc|2f&8;pafcqH`&tlr9g#OSio04U ze#5O=;@bwnH(Lq5eP6Zya;cU>JZj*>^19W^>@lob;&Ib7qUB8LHi`T^);!W|E_=k8~yd&Nf|3r{L5Fkh*h_?q)2+{~L z2(k$8F@-#W!Y1)AH*^U|q$yIOOc4?z;p<`xc&H%gt@$9>1_ue)7D3-f2QWM4ug)^Y zFY%q*VooGnP-@{s^23}+{?NntASh$~bbn)3o@rr43X|GnR-|wQ)g~zdK@XR?Nl{V^ z1}#NnRv=!od#qWC#pVXR^y1}Fel`gY1o7xzvKx#*A1rez7V9a#j0x!=WlFhNPo*p= zTgpMO9fE!c`eQwn@+F6%r!WA)K-b7cDmD7t1;L>EdMb67%5m)v>8Vs9RU#OSV2Ddk zrQTBi|D~r=wKPDgk#MI%5e!2R!)kBLNJdHZ(s(Q+X_z!z8X=98MoFW^RB5abAsB;TEP`miur z8fC-u9owI;Bs}LD*ybT zD;@Y>y#AN{YvuQI)ix76~<4 z`ck@pU>1Ve2x5K7MKBM+d;}c`c1ExO!NQHwS1tU1XbF@f-|?o`3J1Z0WiTWQc_#V>>NvlChn3ad`)slSPb3<_$aOYS;ngg}no@ z5Zk|@>jAQ-Y%B`Hk+Qc7a(C<u9fTL!SWD!s9Y}(lZPW%hu~lYhaflykzX{#{k$P=yr1c@W_c+VH=KZ> z>l-)t2goaBces;X;SN5Iamz~$V&DXWm>7A3yvY>ZByU9Ui6(h7f>R#J|H<3k2`D(Z zS}ikDVna8!?IrJ&@z#y?@-F!`dAIz!{D%Cd{Fb~2!Kny7iSXWYs3C~(=5hq5A^7xq z`5k$$yia~teox*nACM0sI32+m2+l-s7J|?9S0?0h@|Q-Z&m%ZTKd~vZK)x*FUCs}!UC7_dS4`2(@(*}K4Cf;vs#*R? zzKY-i1mAxY;BPGepQ~1LjO^U(&27x`4fzgUPmyoRx8y(M+X!O9bp#h7xOlaESN>DJ zC;x@u5(J+|@DPHB^<$gQI%zCcg+cHI&GDJSKd!nuwHm~mmc*>Sy_nD2OLS7?t4+Cz0wIk)uu!!9h8nrq!OjzaM6t5 zDg;*}xCX(s2(DYJ#3->?cc&4n34C@vg8Q+`=4fm1hW(FTIV&isrd?ZAKP62`*T<~$ zb}9u*p;Dw2Dp5Yim$su?^&xV` z4H~L<-qt1_1H$SEzY?w(U||K9%E4t@5vVAgd{ z4L;buE!urhix0lu7Ue#`4M8>4aU!?)J~bwrJ}UDb540h zb(e=Yc^=<&Wk*=7>#n6Pav!~`d$;`Z>auR#a8A%o$O?Q%>dqF}EAc`7&QNy`R^fw% zJ9B-MHF(#!f;H;E1G#N9+SwTomCec)J!n@bt-PXa#gAzR?F!Lf?;1E**{;0$i0LZ3 zl-C|T@rJSwtFU}ac}u>jysf;WVEw@6c*JFwA0T)X!4KCe?<(&p`;`OAK?R%SM+lxk z@HB#F5d0j$FZAzs9jjD~-D1ke2!8yqiGHG-Aa^PjwX4$NqC9(7W1Q8y(usa|?xu_UB#+0v=O9+07;AhRsW#t5U`sm&o9Ay1l_;$>vp{SdUwK%pP|B= ziC3$!YMdIcni2dJ!QT-49l`6XRjZnyCaN|BZy<<6(k%r4(1YK6p-|1jZ?90Z)f_b! zLF`-qMijWeu~&7dMc4(Zoz()h5WzbL-bL`wRcf(XqFNDtxCCMbZWt4a4*Gz7L3-d@ zjmc_-ink8`>mG(u`>1`5fhJ`_6rmLlGKE9{Q^*M#Z}nBH>8U%8y!97ZOx$P@vN}-3 zYxZk#)3s`yTBr_DhZ-HANJK&02SibbqSwMJ#A4X^!lgL8{0eaGeFJi6Q=F`D@NDWObV%K3^7|$ z6B1krc=buFs3s2$+;`*ZQ|i+=;u+_f)ai&4TgJ`mENpSElI~Z7^j4pJ@YuIH-*jXn ze&BE=UUIy|UV%ICl4D2p1-#5?JZ^}0gyUt#kBmh{yqst(Gd_zb1urV%MjtG^5r4bl zqqb6)_xm`F7YHrJiQe@%UAq&%F$gDRaq9Iw{MMi=0>Ezq3KBwa*08XVXdpuSLuh}FH@ro!f%)vqSWK}$v9VG_j5-1P6aAyB>U7r zH5jLJ!_^4YjP*THO~UVpNyYDnslac4*`|J?-tsVcFdm$T;30V^9vwXjJ^FgodW`mX z++(`OvmOgQmU*o9Sm&|9W0S`LkJBFCdi>?-;Th{0?`iQ&@U(f_JySeKdQR|kdLqwh zp3^;NIz6B9T;kc}xz2Ng=O)iBp1VAEd+zhR;Cb1L^isV%y}Z5JdIfuhdc}E}y{uk| zUO8TQUJkDUuTfqTy_{Z8d(HJ);`OfAA+KM(?s#+Fs&}Aw2k&(6Jn!z_L%i#~CwM!( zk@qz3>E1KFpYvYmy~uls_Y2-jy|;TG^#0QOb{o2llWD`Y;oEq%@okgPCc8~u8%LYM zHpOj9+YD(lrp??o^V=+Fo8H#Zc2wK(ZC~;seN>-NpKzZDpN>9JKAn7Ged2vAKDj>m zKAn9EeTscbeY*N|_bKzK@R{th!e_tFcfQcKlW#ZQfxd%$NBEBP9qs$L??{~gG_+Ih7>U+)iSKr@#Z}{G77tk)d z-Jo`J+U;uhMZ0@`A%4C59`}2}@1Wlazw>?<{J!%0+V2~`@BDuAyY6?>?+?E_et-J? z<=@6X%YTUfB>x%y&-l;rpXdLa|3d%O{@eXu_21#Y%l|$9gZ_v8Kk)z1-}$lsS^snX z=lw7E-wYrF0s?{pLIT19+6Qz9hzy7hhzW=bFb7xz5(ByfbPMPaP##bj&@-TSK;M9V z0o4ID0fPeS0)_-k4$uSE1-u(@F5p(6SD-a8C$KVbSm30G#0QB%a*$V0 zn;@T{c0t)exk256DuSwldIj|hst&3N8Wc1pXkyT$pvgf~gPsnW5i~1kcF?my3xd`J zZ4WvebUf%}(CMJhgU$xSU^Td7aC&g};6cF?g0Z>WE0U}$h?T4-TtkI?ea%Fv#n zy+a3v)`kua9U3|;bVTU%(AA;aLJx+X54{w6H;f8X!rFzk4~q}8ge8O}h9!k1hoy#< zgbfNC5jHlgA#8lu#4s&vcG$CF3&WO$ZE=R}40}85P}rAYUx(cd_X_t74-L-^F9;tR zK0f@(a4r0)@TbFPgwGFO5Uz(W4u3xU#qe$62g1*X|Iyy7eMo!!xJLWP_R;NQ+84C% z-hO2J(e1}Z4vZWfIVJMRNGGBS46%X*%Y}d@?hk(C^af3 zDkUmC%9$CJ6O|X`h$@RJkE)2OiW(X9bku^Vm!eiiHAk(ES{t=KYGc&ys5heCih4V0 zZ`8X{`=bs=EzR?U8k&0k9XSC>6@5A3HI2Qtaf|sj*t@wAksfvtsAO&W+s`dp`DB?47v4I9pubxUq3s+@iSMaR=hg z#9fKI8h0}u#53_;@y?+5koeg6xcK;ZOMGg4MtoL$PJGw+zVZFytK)0p2gTRL4~cJ# zpAbJOeoFk4@hE;;{Pg(e;#bGN8UKF#XYtqLZ<zzDf8s;rE1_3AYnLBAX~BrY1Hf&P`mOxIOXx#E%j$ z+bA1r6Ks-AwRzdv+S=IyY&Ki6EzOo`%eLj&I@`M0%50Ukp0--s5L>-%xa~>XOxq&c z^R}h7<+dxfKWukw_mWIWen}NcLy~4C%}JV<^qezEPg;`nLejFNmy&iTy_xiO(!Qkk zk`5*vPCB0SdD6M03rUxfzDfEn>3Y(wq}xe%?ULQk9%v7-huP!pR(qm7$zEiyviG+4 zwfD1+u}`&Y_G$L%_KWtb_G|Xv>^G9bk}H!ZBu`47lI%==DtUVHtmHY#^ODykZ%p2j zye;|FWaqBr-O2lsk0gJXd@T7y^2y}W$(NJAOa3wWr{vqoewJfzVwO4B2)PAW0QU|8irlQo9&eQ{`-=^_t=Cq2mhO~ugThm@o zdn@gow0&tu(oUqEOgocyHtox_i)okAE~ovPc0KJ@+MTp}X@92&q(`O4rCZVy(^JyZ z(lgVu(@WF)ruR=Dl3t%aA$@ZClj$gZM*6JuIq7rL_4MZS6X};Ts0=nk$dEGB46lr~ z8SOFxGHe;nQMj7b@DGnQto$XJ=t zoUt|I)r_4PuVoy`IF<2v#@USX8NX!Q%QR(@nN;S$%+Z-+GaEA}X0FS8BlC;Q^O+Yj zzs~$N^M}lzGOuO+mL+7#Ssq#5S#7i0W%*~d&+3#Fmu10kmdHxV%FF7URhU(r)jw-^ z)~Kv8S>v*tSx;p>oi!ut#jLei8?rWMy^>93duDrQ`(*oNcg#-D&dScsc4QZ3mt=R% z?vY)Q-7~vS_UPfhq8an5p&ErRXI=OyqNQP z&dHoFbH2*CobzqYwH)UkId^mJ<(hIqF3hEKy>i>;w#yC34bBbC&CD&y?VeknTb0{4 zw}0+{+=01ca~pG~=FZNYpSv)3aqiOG<+(5CHsx;1{UrCZ+|#+A=bp>Gkb5cjo80g7 zh&-6b9CZ&^BVIeU<#*11EWdyLko;l!BlAb+Kc27WFUfx~ z|IPfj^Y`WN&p(uZB>%(wWBDiYujK!n|7-sB{G0i=^Y1#KLvpANFGpKPJBPm`($UEg z=P)}m9NCUMhr?0ksB}1cI(j<>JL(<79V79RCUYInIdsQj{2r{`jyD}|JN7yDI}SOH zI6ib7bDVITbo}VJ>bU0k)$zOIrsKBbPsd-KiOytas&iQ9oX&NfXLjDy`IF8!3cL#v z3c45cE_ke3 zRJf{ebKx6>dkXg!zE^m#@cqK0g&!4uQFy-aV&SF2%Z0xdUN5{^_(zdcM{~99$e(+^IOO*ixKWoKc)roKu`v>?kfMt}A}3cuny; z#Yc-jF8-wWv*J_5XNrF+zFquh@!ut&geqZ5{7c%GM3uyp#Ftn~GD{pKg(W4;_G{Voa;BUs7t57$&+<0qzUBVqLFJ+4;pM62J` zA2=&NsytqKqVhuJSCyA5zpDzUimHmKim$R(*{bYSp>CpXqdHJ;QD0EslKUp3lGBqjlXH_f z$=qZ?^1b92$*+^UQxa2>QV=Q0DUB(oQqH8DOL>~|CgpR=mz4iffN$u5=%whj==JE0 z=mhj0bTXQVrl7OXIp}UsFeR7@j2%;l@nHg(Af_2}4%32Z#azYQz}&{%#XQ7xVSmDo!A`+W!_LIc z!Oq97z^($YYq9IG8?g!4?bvFZ{UOWPyjwj+N_$+)5J|9oR7vsfv zHQs{v;E&;t<4@vGHnN9YPxg@mXSwdM#Sw>kw*+kh-IYfa|P!u!;M@gp;DFqZJg-rn{JPJq=Q6P$h zVxm-2u25c3K4c8bn3^#!V^zl5jP)5CGd5>z12T4G?8-o9q-0<-j%J+6IG53qIW2Q> z=CaI{nX=4^%*sq_W^dMjtif4BvItrESp`|ltoE$CS1rn7<^Sl26ZP=Cgr(ApcQ*SN_}lcljR=iw>6`)*RL!Hqv5gQ)#Pd z>u4Kjn`m2TiL{-xJ+%F_Lo_%IMa!enXmlEr#-ed(TpFJS(u6dKCZ)+}9$E{nt6+G+ z@&Z%=qoAUoso)8{A3d5rlpaGLNuNlcL7zpRL!U=qKwm^(N8do-LV6`e}L#y_McZzec}7f6D037|V!f%w;TKEM_ca zY+!6=Y-8+T>}4EaBr)KO!wfD1Vn`WshLWLXR5Gj#JHy4OVbn6hj1FcDb0sr@naJG9 z+`~M`Oahn)CW=X6(wP#bjHzIjGqp?u)5NqetC&uvn|XqHig}uOmU)iZ!fa)>F|RUj zFmEyMFh3T?7OpN#E-Wr|6kaHN&Kk&?&RW1)%v#1;!CKGS#@fN!&DzI0$Vy_tSx6R< zMPX&Ja#;B+8cV^dWL2@8EH|s3)xZK8Ss~V0)_GPt>niIy>ptrxtDE%?>jUdE>npnt zyB|A-9mihAUddj~UdP_R-o)O*PGs+7?_uv}6WJ7YCY#F6Vdt|8*bH_dyNC_2xoi_V z!hTrPuV`k`uAMH6fdSCQ!(dVN7ioS880nSiP3}+N) z3}+l?B`1NC$l1x+!#T)-agdy3P6mg{p>qVB5{`r;4g3rY14aO`z!+d0Fad}I;(=+vZvYk$01n^+&|N&F zcyaOG;_UCtGGHmLDs~oE7dL!|V~-b~{4Rd}S$w{@m&#>vd0dby;)=NnZaG)WHE@kw z5BC!H0rxq#hx?xUFSnOBfEUdh%8TKR=8fY`1bA`0HN0)SeY}G_7!S!y;SqRbUM4S_ zm&ZHIA@CEn^>;ikh_uxmc7yJT#Ju?2t>LchQ#Yd`+TsZPZ zI7B#4m?+#YJOl{gLZmQFm?_K_<_ZrB3xo_IC=?0B!ct+GP$~2ZBf?X{Gs1JiOTsI{ ztHSHTC&Er)x3EX}P4t6kfM~F2s3=A>N;FzDL$p-1O|(O_TeMGfPy`bpMJXbzC{08V zu|ynEv4|%Uh=d|YBoUR0%0x<0xu`+ZCIa4Ie0Q20_u#&(JU^1{w)Xfu=z-p*hfeXd$!{LO^H;2c<(~C=<$ta-m{~56Pi&NDCPt zGh~AtkP8Yyr=i=>U(nysBj_pg40;K@f!;#zppW8c@lf$_@d)uKKs-h~UOZ78Cyp0S z6VDKD5~qrfh+X1~;vPw?WVz&^Bv(=>DUuXRcoMNhCDBOq5~IW{u}Z2WK1o0llKd`- zNKQ!pl028Zk-U|>lYEkVk$ja#Nry^fq;b+|(wWjZ(uLB+(q+;W(#_KSQlgY1&64Iw z^Q8q+rW9aH0Vz)kO7&8sv{Gu3+N2I?wX{ZBEA>hnqycH0w7Ya<>55WhX>n;)X>;kL z(r>bXvY%u>%ZACu%Hn0yWwT^+Wea4BWJ_f0WgBIiW!q#sWV>V(8C}Mf0WzLUD1&4Y zS*gq@tCV?UK3PB(l7(f*WhZ6LvUWiBx9o%LlkAJ^o4l|5NBKbcPx7DT!{sC8qvZ?a zi{(q@%jGNOtL5wD8|0hho8{Z&+vPjuWVuN0k+;fw%EpxaR)#MVl-bJuC_7(vvFvhL zTiKnm$7N5;I?JAyy)1iO)?4gO$z(+m#2DNlJt=S&32NlsQVh@~rZu@|~)Ws=sQGDq1yMH9{4u8l#%2TBb@= z?Nsei?N=RA!Br>~8c^X>=_;a%tpZeB6<-CaL@KdLs*WlKVAN?{6+ce^6v7U^3UoY)C1Im)Y0mn)x*>=>Ns`0db)a+daioDdb=8?PF7>o zscNE{qRvuht2ydowN$N8m#ejEquQ*tsqN~38aS!GrM|1auYRb0qV80`P`_4ptN&4d zP=C@4(~QuJ(u~%O)lAUDX{KnVX=Z3AE?(`MQO=#ei;u zZj)}OZnqAl!|Kv>1YL$MOP8a|({XjBx^kUXXV95+cAZOCqpQ<-btiNWbpPnS=zr7? z)c>R(q93P^)5q(l>*wg_>lf*l=y&T;`gA=}Ptj-TbM#C-TMy`YdQdOatMz~AUm1oQ zCK;9+ele^u{A&2kkYE6|8nzpD8TJ|u7?KQGh8#nl;jp2=z%;N8fPrh^8;%%62FTzv zoHe|th^|;vkyKGwp{qDralPVx#lwmx6&)2_75`TBR(z@WYK$`WH4Zh#7)Ke$7{?nY z8dn>)8h0A^821}tMuaihh&E;!3yoZ(z$i3A#xkSIr~!<6V};RfbQx=mwZ`9#Cyb|z zXN(t&myB18?Z!98&!!(t15ATWLrlX=V@(rGai)0Fbkj`JBGWq4M$=}~Hq$QC9@Bo) zK~tJ3#{`;0Cb6m1RAy3{G$y^tXfm5@rlY1NQ^a(_bkcO%^rz{9>7wbfsm*lN)Ll8W z5?ES!sFGP(S=n6q$lS*~$vo3M$2{M>(EN+}H*n>}iRcv)xeb#_A zWIbj*Wo@yxTHCDGtT(NqapYmfDvZMbccZK`dCZMJQJZLw{cZG~;KZNCj> zL)ubosW!ZgWTV)awj(x!&1AFKs%%c1+g5Ay+WfYl?U=3A2DI6(+OFGf+V0ry+5WaY zv^}wP*q&AWST(I`TNS0Mv?@?_tLmdY*1puf*1q1p(Vk%6Wlypr?8$bFJ=LCWC)o4t z1$L&LZ3paJyUAW-_uBpTpuNd{+{#kp;aKG;br>8TN4=xL(danpXmT8PoOGOaTzA}Z+;!Y{Jajy9bUI!* zUOT#+gPfzBvz(ip`<&^{0;j+!b(T8iPMuTltZ;^%XPoWMtIliA8_vhh4(D^{E9V<$ zx2vyfvTMF;foq{_vFlgYCf62MqHDJc*ylRvN^+&S@Gg=o!&UDJyUw`IxmsMUt~S>l z*FDz**JD?Q>sj^a>Mhj;)s@vv)u*fftiDivvHD(hXZ4Hf*VWzC|5Sf*4{{H4k8sDj z$GRuGr@CjjXS?URm$+BC(e6UG#9i*zx(#ll+wBgye|JaRf4H07XWi%BHvso-_h0V& z?g#Ei?kDb!n&_HYHG67kHRUzG*EHAk*8Jy*^7Qlc_YCqxdxm;qJfl2gJmWo+JX1W= zJTpCWJo7z^JWD+*JgYowJ?lLiJ)1q-Jlj17Jcm5l9)_pTqxMvKES`wxtmmAk%k!_N zw{~*v?Ap1thicKa*jiC7P*$s~ZLB?B`$z4Q+Sj#RbtCE~)J>{eQ5vyNIP zu2a>i>yFl)tZS~jU)Ndpyna~y*!uDHzt(T9PpqfZ=hxHfE%oktPkn3s&HCH*AH7lD zzTPR`Io^5RE#5ueeO{WE<1O}@yiRYmx5L}z?eV_%e)L88`ugSpzU96{zGNTUr|?z! z%sz|H=JWb|z6M{wchcADYx7<6-Spk@-Sa*0z4mqc{_%bAee!+reQW5`u&069U~V|y z(B5#p;a0<)hL;U*8s0X%YxwAo@(=OH_(%E2_$T@&`=|P+`+xCo_HXy^^6&K@^27Zo ze~O>&H~F1@z~y)Q>-;DEt^UjYEB-~I>whyKU@ZvR_%xTf(yV`d|-QPt>Z>}-6~_#OyG1&0Jp%NwIvYA4x){0~Y75;8J#4z)^swno)90qI;XdIX!UMvC!$ZQrxbVbq zTsS^FJv=i!J3KeMH%tpxhR=uF!*{}u!yVzS@Q3i{$l%C`NNi+GWL#usWKLvWWMO1U zWLacgWJ6?QBq6dZvOBUjf{0Kfxsk&WdZaK?6e*7IBS#`75lN&pVu%Zzh9F4 Re}+~5uLu9HqM{ - + From d554206908368011822cf20c4c606e483716dc5c Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Mon, 15 Aug 2022 11:40:34 +0300 Subject: [PATCH 08/12] message sort by time, ui improve(textfield lift above keyboard), account switch --- Flash Chat iOS13.xcodeproj/project.pbxproj | 2 + .../xcschemes/xcschememanagement.plist | 2 +- .../UserInterfaceState.xcuserstate | Bin 58936 -> 64140 bytes Flash Chat iOS13/AppDelegate.swift | 10 +- .../Controllers/LoginViewController.swift | 6 + .../Views/Base.lproj/Main.storyboard | 11 + Flash Chat iOS13/Views/MessageCell.xib | 2 +- Podfile | 1 + Podfile.lock | 34 +- Pods/Manifest.lock | 34 +- Pods/Pods.xcodeproj/project.pbxproj | 44712 ++++++++-------- .../xcschemes/xcschememanagement.plist | 17 +- ...Flash Chat iOS13-acknowledgements.markdown | 25 + ...ds-Flash Chat iOS13-acknowledgements.plist | 31 + ...13-frameworks-Debug-input-files.xcfilelist | 1 + ...3-frameworks-Debug-output-files.xcfilelist | 1 + ...-frameworks-Release-input-files.xcfilelist | 1 + ...frameworks-Release-output-files.xcfilelist | 1 + .../Pods-Flash Chat iOS13-frameworks.sh | 2 + .../Pods-Flash Chat iOS13.debug.xcconfig | 6 +- .../Pods-Flash Chat iOS13.release.xcconfig | 6 +- 21 files changed, 22691 insertions(+), 22214 deletions(-) diff --git a/Flash Chat iOS13.xcodeproj/project.pbxproj b/Flash Chat iOS13.xcodeproj/project.pbxproj index 50aa82a9f..521f41173 100644 --- a/Flash Chat iOS13.xcodeproj/project.pbxproj +++ b/Flash Chat iOS13.xcodeproj/project.pbxproj @@ -188,6 +188,8 @@ Base, ); mainGroup = 0B62816A235DEE8100E35CAF; + packageReferences = ( + ); productRefGroup = 0B628174235DEE8100E35CAF /* Products */; projectDirPath = ""; projectRoot = ""; diff --git a/Flash Chat iOS13.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist b/Flash Chat iOS13.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist index 71c8ec0bb..ca84307a4 100644 --- a/Flash Chat iOS13.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Flash Chat iOS13.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ Flash Chat iOS13.xcscheme_^#shared#^_ orderHint - 19 + 20 diff --git a/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate b/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate index cea513b528db405a1d0ef1ff37a9bcb6ea9becda..20d102761f587c4b8dfabdcd7123640c57ddd53c 100644 GIT binary patch literal 64140 zcmeEv2Yl2<)3lO9sB zsR7ap2`QxaN)pn059uMjeY4W(+`-Aq^S;mb{GO1rebQ=Y%k0d5W@lClD$C0v)k#S& zafrhl;doBqL{8$=nSGassv>3KidlV&t4bD^!MB3G)#1vSeZvcugi5L-aU42*Ly=`p z&Yuuk6)GJSE%X8>b4p=;b#ZmbMmPF}+c}NXxlY^>TxaemZZMa?C2~W!Brcgt;ZnI= zZag=Eo5)S#CUaA`JZ>sCjmzhjaTQ#ctK^R3s<;SO&DC(rxfR?>ZY_5vcNTXxcMf+h zcOG{>w~o7ryMnu#tL3ieZs2a@ZsKm{Zs&G!cXIb}d$@T=t=YxdKx{CUP3RUedu-c26_{{k3K+O zqi@i+=sWa1I)Hw_2+LT<7H*F_;EuQp?vIbe1MomR2q)qpI1Q)cq4;P#0Z+t}@MJs% z=i%viHlBm$;sv+_FT)i$j4SbRxC%#bHLk&{@d@};d>TF-Z@{&<4sXPp@MgRPZ^hg2 zb$C18fp5mQ;9d9u{2+b^Ka3y2kK*U?3wSSn5x<0A#;@bg@qYXT{t|zMzsBF-Z}D&V zcl-zblPIJ!i6_0tK$1WbNeW3NL6Si-$uKgUWRcM%my9Qq$uyErW{`R0SW--ukqQzf zmE<^5Lza^h$w|Z}lw3qECYO*)$z|knvYuQ)Hj-`RIW|SH2q`&-dc{@%{Nh{89X1K8-(yAI*>D$MF;SJidT00%4)BNLVVA3zfog!tnwX z&JfNP&JorL7YmmN>xC6u<(@dwD64ZqVSUN zrtp^Vw(ySduJEbwnee%=U-(-1Uie)kq9&T6CAJrj5W9)-VlT0um@KA+Buny3ancb|XQ`LeTk0eAl?F=*QlgY1rAfo39BHDIClyFD zrMc2PsaRSi9WSkxPLS3}CrT$twnU|qrBkFcr1PZnrAwqsrE8>Xr4727I{ zbieel^qBOx^py0p^t|+f^s@At^p^CV^uF}Dv|sv0`d#`%`cwK#=44&=$%bsomfTV9 zBzKeh%SXxs9HTeVi zL-`~5WBC*LQ~3+|fc%5}qx_RX6kZV&QIQl`Q503t6kTbrbWl1f1C)WvAmu1!u#%u8 zDnpc@GE_NQ8Lo^_vXs%v7-g(7UYVdwRPvOm$~0xVGD9g*N|lhZP+6obRU%5YQlp%q ztX0lb&Qi`+&QZ=)&QmT^u28O2u2HU4>XePj7G04 z)OXbn)sNKA)X&wg)UVa=)dT9!>M!aa>Yp0ch$d;WrfWXUuf=H{wN6@Bt(%sv1+@$< zQyZ!stsSEc(}rs!w2|5jH?YUgR^ zYwNTNv-XsQ>i6jn>QCrT>QCuU>wEPV^*8i4^|$no^pEvF^}l?a z5Bac<_;{b-6Md3T_UXQMzV^N@zOKGLzP`SGzW%-=eM5XnzVW^ZzKOm`zRA8RzC7Pl z-!xyoufR9cSL8d^SL|ElTkNa!9p|g^9q(K1JI!~d?*iY2zH5Bf`gZy5^xfs#?YrA| zkMCaJeZD=u`+X1i9`QZxd&c*y?MzPEgD``+<=;``L#3}j$~7`!1Eq9GZwp%|)R z7#)m`MmM9o(a-2_9BB+Ol8o`j1Y@Ex$(U?RG4hP5#xx_}C@>0*S;n!(LSvB;HY$zd zj4I;~9`v z4l$F=WHZG)#vEo2H%FMG%?aj2bEY}VoNdlA=bH1(`Q}1%kx9*y%~Q-%&C|@&%`?ok z=9%VM=Go@?=B4IU=GEqAbBlSCd9!)Dd9Qh&`J}nme9_!*eqnxTer0}beq(-XerJAf z9x#6}f3Y}Av?R;4Eb9oXvz2NEtTZd#3R)RfrZv<$+B(J>W{tAOS-IADE60WNo&#SX-@a)^*l)Yln5Cb%(Xfy3@MP+G9Ot zJ#IZ=y6zO%l!4p=`}KUzOoKU=?8zgvI#IY06Xe$B7@eSW{cv%kB) zhrhSKkAH|i$)D^`@u&I&{tW+c{|Ns`|9Jld|3v>J|78CZf4;xOU+NF}7y1|Z7yHZn z%lwu8bN%c57x^#sulHZ&zt&&p-|XM!-{HT(f3yEK|1SS-|GobE{SWyc^*`Z%+W(w? zum5HLtNu6q@A^OVf9gNr|H1#G|0n;?{@>$J9F9}tv^YJ^7w3=b6n8{i=eXp!l(^Km zKwMf}dR#CrBQ7&;Xx!0p$HWbb8y+_zZe-l3xU9IzaZ}>*;-v4lDO))nz)s5Yvaz0J1g$&xO3vpjk_T3;3vJeizAUb&djHOqKrURS}-Ron2?^5k(LlhN(m-pW@lw3q-2ZzL=a*G1Di6V(B5OcHN^Tp9Cg)EJMXJM9#ZcU_Y_f~1i;JwDP;^vD zHJC=Rp=jJRt8+coaJYOyaaFEIwa7Z6{+`pK2Ddt_UY#^JK55P1_|?gQ0Q{Mml(c4z zH@pFEI5+4zE{#j)f?Nid$qnU>=8oZp*@kV}mhHFW>~?m0yMx{FIvCuM+$b)K8_i{N zIq+>PjPDWl{q_U)Q})yLv+(T&JE_RBpe^}}!z(5iFE3kE3_W!(#lDWJ3PFGUP^z%H zth}tcEEJhhR$9H-EtXpmsRWBKTvcBz_M}s6?)0+IitNyWnnjCX!mM_aLd(KctHxFp zS1zu<>a`(8VIGjnDJ_fEt9acn;Ev@6?cfTz>D&x%CO33C9(GSV-tJ}hw)^bhin#?`30KO6xP{yzZZTKJE#a2heeGm>xIMw1XwR}k_6qw- zd#AmN4M*3RCE?OgBG8{uR-G8@OX9@vqDYZ7D0VkLTvJsNit=J%ZiAAe7Z+D73PIuS zvBHh3%3rl?LAV^oG(S`hV;3roQ2~>BY*o0X(!Bu&IMi}fE45_7yezE@msM0p+~DiPW$*b!(+IXD(Xr{TNt~MOJ((566~3>lGBhBJyT&6=!pUws6ODtGN@nHQb5Z zNp?TGzkQ@Vz#eGBjegw8@ae~$#+?oVVK97-vJ>nfY#Y;iWM#~JmkRZazcn%sjYLBKU7(=N2Kvbdr&RGM1~cgq%* zfyV@7V+jbR;>t*)%Q9TAU)3pT!NKvt04(agj;y|byKsY@xR<+_yM()xyKJ^AqANi3 z&2;|^MdnY=pHx%LB+#g;s^V1}q1@%%dXVqV*O`;^r#NmIx4tVI)OQVcEiAd%)7fPp zvBDL_RZzt>+y-v_+{yX%*SzVeZ4sIuDPj65FB}2s8LpTYi7xwGcqXzTb=1R?KO6aU&INU{TBj&| zxafa%n%-yRaqgEsBiFirY>@q36NgQhSU7V|>7vS2?nQ*6j~LP4-ml}`5qpGt6qI1j z%F1$AjZLYkE-$MHF~RJ5?pSA|qrZ`RjC-67ZX3%NSqq8^s>hC=o}8XNy`Y{3NW7Hv z`mYU07ObiaMS@XsMbq<(Qj_b;IYXEany6w?{kkgh=JQGJMQ+eG?kVnR?iub`?m6yx z?gehIJ;EMokFvAu(RQ|-V~^Pex^4is4?eGg5P2OSMkn~kwBI-oB)RYb&Si_-mBTS^ zU`jA1$);44gDhcMzJ*fbV6ijDD3oBD3!3jr0ydvTRP}6(TQ@F+h%A>D^)SIRSYapF%X%egP>n7nC&{P!m68}3&IQ@-WCKK4vDVZB?{J&xc`^fYR( zgB6OZxK@;yTal~h`W>tqn5CMM>Y6H$X-6KcTm$`lh}L_$`JgRx@y9`nFdbWDrNtW6 zDnxPn%6J|4ZFIO2AYJRo!5iDw(2UpmzX6S+Y=Yv@5!|57s2ysLI-riIlRev>W6!nc z+4DD}&I|&eZm7FmA@6G=^1G;oR0dV0ib!%k#=z{8fY(Inuk?9 zy|^4u*eIt4Zx9ktA~y)sTatGn8KuUa4cMi2(7O>t8I4OGjmB|pt1Hsdy&1^F0+@|OYL%dnO$Lr?MnN&ohTQLM-$Kl7+?5s1JG3V7n)#K z*%7-M{vG9fI@!yezp7gp_YMt4$sKhVJzyecCd9_dk@Q7YC%EQ`NQMQrZ+zJ3##pUIzyn06G6*|u^VhvqfR$f{a0xb)WtjOx& z(exI3jE$qj8A2FcQw2{{Pb{vfC|R5j`~;&rEwm8&UQxoJuA?l`W$4O{=yJ3kU16VQ zpKhOFuZ1p+0d>DP9&Ewt__8Va$*J-E`o)7UqDM>D11Xt-%=BPNW*PvBrUhKq*??*R ztVgW?;Gm6Y1LGmL0UNmsYtbhAEIV-@+KRTJ>wxdJqaA1`x*k3^qMOjoP_gH#nHVl{ zu_!l&iZ>cXP*O~%k8u6 z%V1_=%Ba!sCg!XRmDDgWoKvy9tSVf=Tu3ezw@0^e`!}K6(H&?Py3;<_zQDfNzQi8? zBDx#h1AV&}-G}zfuBTb(w8lQqKHpw91BRNl*7CUn_Yis*tX`PQdZ_E-Ea#cL;+nw~6`=8tXSJ11jW2(^r)_10{eNu;BV|`(ctTvUO8(g>`y#)MB z85!xY5Sz)ghC1yn^bR+u7QJm>Rg2!WuVxFk^Kmtys#ST#%uxptAyV&}^Q6It=rb@T z(MRZG^a=XZzQ(@R-eA{mf>GIzzCd5XxYXGj?M~%LkVfsC}2sUGb7tTwSu5p}T_6%4+B7 zf`#yHANmpfgnmZ9pkINnenY===fR5k3v;uIVa10T9-rk@SrDpPHftHHWOQ*PG@F^{ zrA{knJGY&t*xT*RGVuO&_Kuf06Jty;j|HgjDJ(%NLSTTEm6TOymqjYei&wc^I1`3# z8Pi4u)zC0|8$7-ROi`?06>GD=a~pAt0()!Win4@-We!hZA2yue3r`$4MK;1^lUono z0Jmnhs2|5Q834EQK(!9HW4ywIZ)|j8H=A6qAGL~bMaZqX6F$Nfqm7?#H28J6Go!(T z?LkUKnFV*n@xUy&8}5#K;GXvN_6_!p_D!2`FWejV!M*I8?OW_y;V0u%7cw})JmxU~ zjXv=(dLHmmcrfR99uDF+@YOWw)wGdAXsIpKINbrn5ex544`#Hr(w}BNasVnFI;`&K zV_K+lwu6yZuzeki-#cRDs5aL7O!&3S9)@~H58Ifn<+M=ooO-1Y**kVzZX4@;_UD@O z?}d6N1nMSEYN6Vhc~#+3FvKH!r{qm-W1Y~}s*`~c3w!)_>(7OC1=H&a3+w%DGiEmQ zx490t+S$;AIe|@cwVZh^Gy*gr*yUvvY=-N*nHX77wy+vv;ry@j2N)4-sQep|{bOpt*hnO%;bbGr5UVaTY{><>7q15Td*ycqKj?Ujb2F+we}j z2R{X|TOZ)>@Na}8gmff5NneP{8bhX#nPd)`PZp6SBtlMr*sD{>T5_f9K*XM3alYqJ zbbpgwp3pl6j|Rg955vRp2s{!@_;&W4_FeXF`))AeXERTJKRgCL<1ll(9cAAGpL^{+ z4s-yOkYBPmv@F!z_;cKDOUo)NL!hoB)sf~UnBDIJ9M~etcigK}7A}m0ss_LtB zRnM4WFxgtGsv+h{1=oB^di{PIo{IB5TO1eI_r+{+JOj_<9IL$*(9~ySdpR^N;tn?_*W`@~9*q6?r75qCD!)2X>)!`WR9b%79ggw4csb_-soH;Fahlv|7 zn#NRxm&MFBuj(`KMX*hZ*WxqrSs(_^!RO-h@cDQhz5rin@3mjFU$S4e_t~%5uiCHK zuiJ0fZ|=Ysqm}qld>OtRuLrqtCB6z@jW4s`0)YOR{kgs0{(|BK6xUFE7R6`773ihk zwXH){`2cLISr=i0)Lnqg8&O<@wOKC*-JU=OC=ES}50)dw9|@Rd!{q~b;3C#fk7&4K}NyU=GO zUED}oJ%*oZM(Jq~ll0E>R=`7=ERV4MGaM%Gk1b+=Z>2M*QP z#*xXXN6lfAFadC|vys^ymRn7EDO+@T5MDDa1jb&Z8kn2;E1-AY#C(T;jEY2QN1aTT$4YS1VIQ#TvR8q1Sytj*aR=)! zZvQsW-H2e&-#ihBNF@7Libhd1nWEVgT}V+aMK@7&uRZ=%q7seh#K)P$ASSVhpTv=N zq&?{Xy1x?vyRCC+G;pVpn_#jNaMNocNMaV|!tBzh0or&GKr186jaI*T3^K362_OMK zFzZ{>^8QA58J#&^3ks)Agr~i4_3AISuTIf$iu@GC*}qXVlA;k5nG_9c-w7#W6~4MW_M%98FA8^+rOFg0i4v2^e0E! ze^SIzgeejzl47nXGRX1o{N?(0I!*$|6AT#e)`D_mpJ!ALBxtO_p~(xmT>LxD^nzzFR?N_q8rp2|8hiFpxPx&^)x0I_*w z>TG7fx}Fb;42pcPh26F$yTl7f;T#~%KnU}C){*Jl`i2)?Br}23EVL8w@)#Ccw*Y!G z2Yy$D%E6twJY)lVSTJmEb@NFPxcY&$>&Sf8_CY1#Wr@X=pvVA^HO6SEiTN>(Nt~IR z6%{IE0a*mz5K=-)Nr)_@s2xS^De6E`$4z80SqO-IDMg*&D@C0t?2~~;?(B&Zh_YG` zs;XB7ptYjWMxblKa#~&n;E?TtXVue=@jsibdTRz8bGccgiz}A1sJVtW++|Y5?XM*f zijJ_y&n{jtEn(5|3E|3#ULRJF;{oK5m1Gq~T`1~WM^EsNsSM332#ir^d8j-( zPuVa(R(5E4836ZU4=K6hdnLDj3%QD1O|Bu=k_`l8e1D1tQgjqW2^0;XC>ewi*#x|~ znQS3jNd^n|tO8KHytthG$-?tsPlTc)DH>2@6|7#JnUa*4l$4yF9Dq-1N=h(eaC{&o zBQZIU6iCiY&PYv3%1lmW0f>QMT4GvidQxgIEs&a&n#8ubG6TWH%;c2R^k8ykT1sYm zMu6>lLGTjUPIkb$a5kUn$aZeM*Q)DTt0)@O3jNfS)F$*(latdkTBDzqk)D{ImJ&!! zPR|Uc2LmZV*maHe|7Mrc;8rL#?rzVjpHpgW^!kkWs`%^vC0FEo;^9H^5a(FYeMUU* zEO5{_16C&|rv(#(>6z)NDVeD$8L1g8U@j#&F_4~~o|=}FnvxvI$VhR+=g8wsO+P`N zBu|m2$ukrIr)5$!l%k_4ItFA?)~wkHsTm2?NmaAQX3b2fn3+(#D1Ua^@|1+dISGNn z1+xpvmL;TSB`ge7%r0M1nlNfyLQMwvu{=A}jRS2evlCs==qaiO5*);36Xg~~0f2<_ zAOZ+HY^Cwcoep6M<)!Y*d6m2dZiE;bZvYYN$m>jdw0N&M%6pT%1^Ve7KzZ+x_sIto zO{8c%(@R+nZkj|M}{*f8W%+r6aVLkB5@^)(q&MhpNkF9d~)*8l#HRtfoAi=6P`yq zd69I0p9&8EYZ^r}S(~T8{IK6MD4Nx1dU&1p)x+9Cit=K()|nl?9k;)ZZ_fiNm`YK8 zY>If|PSG?rMKiz^&W1dS4*Bjbh%8_r(s7eV=ZWv_&eQbhJf;1;dGe^#10}w9bV8;B z^H5+ES5tPGX6P!ytQUE?85=Y#b_T0+s>CPO+5_MZ9S{0M#|57yN@ii#*Y zmZIYN!A*dO3_#)YAs7QtxH$>7b7AgBhsw(nSC%dCKzJh{?_F#N;Jx{n>dw`IR+f`D zJJa3SDUHs~%)d7~4pMI!mp5&Hg9)4-oj?eTIw*o29WDtM7ldm{7B@h!{IPrp5G-HJ zFW^gfX!l}@$|zbw(b7%)LVgjyn1`ir9d`t0}5s&2OKZ1v+7A({{CpYC%ZlW;KAj4Iy_kWb8HRH2!o~V|o|PgrXIc8OYF?<0)EA(Fqi-*~(wWU(T=R zui&rbuVNq>dUZBM=TLMmMdwk7)^WU&|GprZ-wGg^-^O3ZZ|8ULJNfG=I*B4m(J2(2 zM$s7*qL4h0%-`g~9NU9A34kRNGXtrq040OzfCmGE;}eoIlNicP&PWE_>w(0y)YQa` zKrksKEs&WOOi4}71n8EUl*sUEav+$>f+$kz0Tq9nOX*~XQsL^=P-|LZW>Q*mIzZ{v zVR?>m<}XoB)P~pEiEya97sz~3qZL*AUO>%a#~6vfTFaFjO4WRq~we= z7H{YxU;a*))Ts`s>5NobYGP6*Af}9z^NJ<7Y9|#80GaZzlnvs#1 zmXZe4gULy$&_1A*ngK0^76sChf`GO&lIl@5e~(M+^hUIxaB3hqkP^rYCZz*-P6%W| z1<-&%T3QeWF_;-}QkpUYi7DwRnHedmX=%^}W_zThW+Z07z-MGa4H?N90f?jX`gOlc zYi<1yHtJUf5O8TFCnX2LY6+yl1SJDF1nZ@7zk&cNo6<@Gpd2IhuuJN!2BZRs8OdNN z1=3T~Va{1w6EcH|KqM1}HUq4sU`8OVIVpDt8+Xeg)n~+SM=n?n|9eaH3I54u`1i=w zFiV*kV4!7Y29wi+Ny(WooX5@nj;-$du=no@;3iYy>`8tqKlho*N>QX z{h0rR|CIlXA`nQIQFH}GSJrFSmtF08sjFRE-(dCB=ePJ5rj0LWe%5sjcbhH#U|RP# zSLh?p-Ucj9_ zFg_e#=Ay$qd#(1c9zqF$=;ZDEyKol_j&c@U06WAikatrJ7Az3q0{7X6 z4>A0gy2Jlyboe2H@_)QD(7c%q2L96Mz&{$*m%_Eec5cviVS`XB)Cn7fO~Phji?CJL zCR|6+6BIp3(Nh#XP0=$HJxkGZ6g^MT3l#0$F6?0Y>s&wKM&Txs2ET7*Zs->Q*up=G zUZLnMCbi(tw_VqCmwL0)HA@pCPErWC&mkbS`Au+CPb#Z`-D&Uy_iFJrOWYbAhNHB= zRD{g37R%&9G_;eL4*uZgwLs7)YK0=CwGnFtD=;(;jvrVp^)nO-OW0u~fj; zx-_b$8iHVfQ1c!$|I3(gc`3N(A&RkCJ61q~_e7}K4Pg-;0GJ{GzrMth${;O5c!bHA zM}^1OhoYA$+UNeX$6H-2Zwo|tR(Kx5Zv>dgS8D~B$k*7$a~I(2>SA|R+`Z-4ka&FZ zvhXU`u};`0z{I{z(HnK#>%!}HE=6zJ!8xqM&R#1d)|N(hK_`YP7F93yiy!qFX*IH< zg!hCGSyk@~A5ioTMejDOs&F9;K+{S<%(H!-X!J2i?b5PR2s|!}EOyffV8Gb115+xU zu$7?$-SPMWLimL*Df$3XfrW2ifW8&J0~K20CLp+-ZQvKA=tGJ-HxoN-pI7)%_zA?$ zFKnOJ+d2K3qK}x^!EnWFx^*i2A^ce{cD|zMPex7d!gR7mb3+FL0pO5T}mu^9B{_Lw>Q0w%qVM!{l%le zrWcPC2Z#g3K@@#M(YF+RN7472#KGbqF;N^s(E<2M(T^1Uawwm~zh+lWOo#O%1}XXh z{1TI=r6%N!N?4VByw``LMK}ebPCP~&M$u0c{rt~%)x6qr#7W>M5XXpP#c^V;I9{9} zPNe8pihiT$cZ&X?=ue9NqL|w%P8O$#dE!)YnwZb^qZmmIG z1mb+~6Np9Pv0|~fKr9hUDaI7T@h2k1GQ}#zIgct$ndJ3pg-c0m zg;I-s`bS%F;%b+YuN6v%VJoib2AOD!lxw;{c4YGnGPW<91iqcj^mI4_2b>nc)J)ew zAfC>I_Zi|^@l5e7@ob9QQQV&54itB!xYIx0A9Di9oXsooV(}6;S)`GY0&G#Tv`)N~ z?Ow4Aljb);PX)D6c0GK25s#8@P_q6@oNC#;z#1g;wR##;%DOL;(qZ9 z@k{Y5ijSgrFvSTJCsI6w;v|ZbDNdm{mEyp5@f#O}iwDFX&~mPy_%ncToW>wHAa9&W z@o@0@z+WT&i@}| z)K2OE7+eCOF|<|!q2U~(a%c=Lb&gL|FgVQ>ORuqo~)&-59Y z&ME8-NF(c4@kENpG+xEh7&gLVrEyZOG@jzI z6py1Ax-kCmtYT@FyNW0LgHtN2v5ich0> zmbZ%6x~upsSj7;U536{#`x91i2X76plP+Xy_yUUO)=C#qJg;qbv~-ztg=0rc>zN&m z=O1JdHe0~8(k6ESgCiLhaPdK&ZRCiSwo5zQMMcsmuA;akx~RZG<1Xu)Ar@M?MY>hG zO}bsWL)sk4eNnbN8*lLNE!+Sjj z{#Jqj`%Th!()ZE<=?99JQ@ny=0CTH0Nk2(Hqvg`C6dz9^mu3ycYwe_&EZcy&c3t!t zORzYCdrjoRqQ>&XgJe;_f2Q zWNx<4bVzk!yJ${;EQ?uXM{6Pj3tJEW2{y2;v*4{=D@AvZwAalLhH zRK%&B#pQc#^~>$JLA7!m#dfU>N}4ik>xW3@Sf8C#183#PM?lJj+*$5I@yQgQ7R$Mi zyUV?rrhCY}xqdR>&Qlm5JJk-xMzqh!6Y?BY?X_T_oY3syL~ei#iuZJgjlgHv!TKSF zr$;t=I!z9;_NP;PW-VF?gUXr@J7f@66;0z~bL7!FMjpmF_Rx#+NO=^b?3bf*ISZbc zoFB`+aeaBP+8bPRCWGR09A1^PGEJ4l>N0PcXAodIblvx~ickj{|$WnoH$WW*vme!D)4Pn4w>twOGVmL`K zH&S0{I)td_=4Qj00l5(twdf4mn6fH%>|LZX4B6mSFfPvF25xFdr^)&CPd8{Dl*+G$ z46aGVk)=>ctcmU_0|#=~h7T6NzQLHX^74q=RFFBb2Y@c*O^pq~*<{WkC2rftR#iH! zWH~XVE1?rE>B%)L%H2kAz^r5wS+RKq&QB0+?7!c%WyRv`IDh558?APOA^AE9f|dir zMrY?tn3i8KW43!>E_k+6lH!BGcnE%m-qGU~UXo4yTbu;0)4uIFxlU z{9O%ymBGs|^5K;jsa$+~d-y&PUVpI&u2yi<;b#a^hDXDd3Mg9zzsuoY2>wchdRD;w zg&c&@u``Qe^X(3eEB8EMT)*S|Vj8534?Tu4_R<#52CmJtmD;1>OkV$s!$$;1j)KK? z1Wc~OQ|@dQ7UpKV>Jun8zQqzfZ8+oC)?si0>0?HvKukQgAvu_wl8_V_6-a;( zkJOZ4%IGmEfs8o~4!PYs2C~CjIsURC{kn1EV@F=TG;vaJ@{|F2Q(;HN;|jNx4WDpQ z+aVRWafzm^25i{4Km-1EPS=G)H#)6eodRd_27^v83-Ap5&0?rwxa*GtbI84z9o~7en|p+NiF*UyXYvzdjdw=_;Q+AN5Hms1S#So?mGGXCYf&w{XJjMV4DTA* z1}6crGk|V}w~pKf2kP8~o`d&{9Ke2@0a@GY@eS}^k7wY09`E8$@MrKwk1yeE9^c}h zAzN$!8AJxd8$1f(4IK;N-5kf0Gs!vdMviOXeH-tQKj1AI2qId$!`m{3^11M)jH&R3 zjAGY_i)D__ald;%`AUk+IAo((4n%2VZO za=u(37s}J+8S+ed7RBo*20VKq#eiooruY(yFQxc0iZ6$gkL9`YJbAucBp)jm%M0WZ zriRv2;dm;np~Cr8*iMBVRJfiBH!yY6zWxNch;ybhY@PuS0vp#!4t1SV&SqHz4xfUY zp2%GH=w~;79V&3Y!huxiv6EimRAJ|wBzA^SZpFed6!-FdV#SYeGg;g=dzG;!djlGlSAe%) zu9T0HtK^7WE!W5Zrmmp)N{X+d_-cx;q4-*gH*A$x%B$q#<<;^D@*4R>ifbvpo)UwS zK9o$SLRTszvC(UM2x4Qx?9^nh5wXZ?5LRxAb>lRsroq?siAjf`k;jf{b?N?t5U9T& zmC-m;yh(>gL8wMGB-$54=tiu^jpE4L5^L^F)>`>&@L6K1V*6;w= zhF>9H#ZVpa)Ye)Kc3v5y#FEoIj_{0w7;o0f8)Hw&n<&1{PI7T8#CO)p+bG^{kAInE zF3LMdw!Bk@)6KZ^jM z2XB|}U|DX?kdn++@-uK;pZvJ|g#4uZl>9WsH&c8I#kW#? z8^yP8mY?Nbm!FqkkoQu22lKyyar+d7L~xiVy{N_oz%Y1_ei;j|k2cjM>{a@+ z{0G-@ll+VPtNfe%JH-!D{1C+tQ~by#`A_*Tg;QXs7Tgt&QT#Z?PXM8^(z5Wf>7`D_ z;cN(306QNJJPXYUSFv*<-QxivbvLn|aJ>-DauXHvYZg?q{BTyREN?L!3zlA#Tn4A6 z6w z6axo8Q^yS;t3m0bZjOF$5M&?ADTQflaM{T|^=j*+^aK^D9HDepx+qMF=iy{XAx(wga4!y9 zImV?0VLPyM+#)R&%HA@q$F<$*Waa;?b3QX zMk_ND;`t%MACCP@4nmdz%Y#jTX#d1OCd3&V^I#H$ zvL{0f32& zI^_c8LggamVg>B9Unu^K;y)<nm{z@0xl4Lfxm&r15|t7Sc8Vy` zDe<)$bJJoXx+gauQXXaE=V9d$N=!=pb;@JP{DJ*UZtcx zB^@Z~xKVjsc|&=Vf@wuMQ__X03UsA2~zwq84Z+^d4zGq$hM)_9xj*{+_^q{2Y zM(%ax2jxewx=1`Fz1!5oLo~k)L*O>=ch=rNDCre#ugW>?ZQjRVAQQlwJ5wsJ!p>Q( z3L2_!tqK~deC4fkm}&(}hPU;bA zXSE9@11UL%l2Mclr(`r6<~CclhssIz2BxRl2j*9eS9__wDH%k`QIre@V^r;@_GiW@ zNuVV0Fd3uIyT+(9k7@#Ns+vg2kQkIvlhpv&plXVmN=XtW$#rU)nodayC8__|233zy zM}ZBh4pWD#Bh-fz_035 zWtrL;pdcB>&>*l4{(6%-og1Legp_as@oSWfJa|g@Axv6zz6$4svb=7O@&dKQz2MI4 zLN>39D9HkS(kydbU8+Xfh%eP@wMJd8u25I1s{mh;Y)Yn5GL4daN(v|`WcbphxCVfn zdZK!gYO7Q|Sv`dkn9;G6fOMKb$s|gq#DJW7x~sM!9txlcOMPxjk~Ji?LfURhdU|3e zqz5Ob1R>=%9n80bW?8FexunK<2%$}+oI`*9WmpaEuzMVO8F( z-lN{D-ly(S?^hpCA5ycX_OGWJNIvOs{|rjhD54LhQMoL%7?(F zS`qsrad88~L;W&J9yV*29G-qgUo0FMG9y$DCrCN(NUZ0%<^%9uv;_-cukY`*U|P`6I^%Ssz|=%;9Pi;JwhzgJz0$NNOHnwvNK_b8nuMb^5%N5`4Bg5s)0A$GcFbT1SB z8UrCcks<7ELW@ml^-dz3pBZAiRVyKco9%lv7!M6a+gT2;wfo!cWDhi~OpI0rQBKGH z?aCrUMo)yWJ4oJ~SiB%q&U!jzG~2C#UN^eaY_K&rd4Qb^N-B%2^Zo(d!#dcdEOwy9 zp|+x}glMvVbzZmDAxaB&cK)W=Xpy(-7bwg{YiCZ>D+H}el>G7{YxzHzkTyxJa(KyB z`H*sU#%Jk*qB8bgm7-#OzC`fEpO z11MQZ;n-AiJSD3sIf0Tjlz?q<5+ybzl#-KoXoK8Hd@WHMq9s9GYCkO%V(|%tY_flp zoJPr6l$;GgmGI@<|GaSgLu92l&!CSq$c}GQ-g}$<0Efze*RlXYYNIJRH5#|CvD^@d z(RTj947vZjePV5rHihe0t4*fl^ja;C5(uJoB9ab~`K}dcGn|NhZ90XBeXCsW6npuJ$B;$Z0w-u+D`r9aEH{oAEm~3Uj zWV0tsu5-@FSkFYs4gYzf^I@P+OYru;-?04N)tHWm3p0@F#Zt3lSt8_o(#rqjAN&M<22aqp2TeK|leJ)&3ZHI%$X$=j5?15iv~sjqUN z*t?W`dibE2ei9o_utwgCK{5Rl{d8z`gZM`M41Fyn?^E(Yo1mC}j($OFP)xs2zevAW z2ORbxB_B}&`s0&-XDFs$t#1R(r(dIAt8dV2^*Vi{zDeJ#Z_z=Qe@@AMO1_|Qv^s$u zq^~LYhLUe7f!*Klx9itMh067Mh9gpLW+LT)CsKX^k>bjeKmYUO$zc!}hY(4JLSp(J z#@F{#0;eyz+U6k;6Z*sYBk%!b@FOKZIX`~}F`-($tORcXKBGU!LZ9VuY)}0J@SeE9plJP_0ROr z_5J!6`j`4w`q%n5`nQxvl*g1Ol;L4_MM?pq1=Hd7pie^8*;NZ*;DG z9ekaD8GRioZ`S&bpuE*KX7qLQ^#r!^bq6rU`xzMX#e-qM$F*b_=nwW8+1m{_uq2Q0 z0N+s#U;5y9wRb4r5%|&<58Mn@GzD|sBgsC<>)qi?@um6#zBFIDFX+qgW%`EdNxow! z4~_3k`7V_2O8IV-?@sw1le&HRDTEw^9Wy~6fF$W*y zDesXJeDIde79f@HWZx+aQt^qDPl-lI_)ceIa0cb;V{LqA`OXEB4e*ffJm2}0PojKs zoA8kDBH!hI4-YkU2>CYnc7V+H)%xmu8-1I6n|)h+TYcMn*ZH5EK5Z`TVQ4RMNRhEZB__6_P z3*~3EjT?;~2AoJzXY^#;IGb^!(VKDOoEEszdOgaF#sI?w9)=4%<^eMry%{skX^k0; zWPn=8yGLg8?SmI!l zFyq2yj0-E9aiQNR?K3iTlLMeVCXN`8puf?mHfoIJl#fupn({T^#4%PGaKO=S%EQ$a zEjV%hN!n_|NMVDr;W?S|D`Vaq<1}L}bfp1$G0rs3qVOst{`fYb7vntRqSnxhaj|iU zaj5~3YO5)K0_E3G{zMp{f18apZ$7RuY8?${Y;ZK3eURz&9@%O@2FZ3~n{l17-PmF5 zG_E&pFm5z%GH#|k4DczGKb7*QQT}ww16o{5`7Q zQ2v5i1MJKT+bAgBGTvo6?ro;y;Eg(<f#+ zD#~9?`D-YDE#)^*zLxTJJB&YEt~8N}O=9v~KT~9UxzXdxEtKCu`JI%%i>bNY|9QOG zW-au8Z#I}6fQikHl;0F(ViUH?Hkn=UFYH74%>YK+pTNXtMj6EHW%dCUHhWWkYpn^k z`nI;QusOhFh|3(vSQr8XUavC;Gnlr$1(@dVRM2N+j_WJ($flZb_}fM^V5XVr6kglL z-$3~rLD!j?=1@o1-9-62ThMj?Fm}Wo$;Jk(rki6b&dfH)LJu0KICGo{y80H%-`XY> zXHGJwwWi|Ce6zqTG^bPkHp<^l`8z1T>)%Pm#aso}x!#NvnQj1(=>!1rcZ0Sw2Q%=p zy*1%tE;g${xR_<;5_73pZZ0z`%&=K$9%meF0(!ZZ^7m1G59RNtJjkdADGw&?!<2u- zfzXfcFl(a1WtBFB8^C;b=85J>lz+?kbBt&CAU7Ojv;0c(T?6weeINg~c_dgQWJEfTTc3Jbh>+Wo|XW zchv$IHm^5ta0JA&lz$H1ed%R(I6&XLh4trF%0FMf%6Cn|D+G15s`PMq?0_#HSBI{x*h*Xg1|Lg8Mpqk3QehGRlBP9ul^lG7n4$^B92!x)5 zgqAQ$uO{>+7aK@57?2_*fb?P_m`Ddvsv}@`)X`DLvFqrJ-FHKAbjI)h-uK>G@2&Ng zOTlyZ*{AJ&&OYbf^ZNnoKwv!x`~U(QKtKcpL_t6d1jJk6rOU2Wu>m5}f*h+Fax4J8 z>{x)LAZ!u@O@Pe*e@^xPeyWGJ3#9>EzaW4F0g0u5A*a%WuU{E% zKD%_9*=N(%l(AfeQEf@7BHf8Q*EP>|#3!6CtPdhpIAvO_#{`E(IB zE`YHEV*7(`hM|J!!9h^oB~2&+Ov-YSICN7i9t$Dk3m{)1p#T97qyR8+@%hp${SH=H zyNtB~|G4-&gzJs7$2lyciMlUm`MXYPwo$`h9~~ov5vzp0#tcBLL9BxY69G*ks5+QS zR=l7C#FvmVmpcG0z~&a9#S1nRgxJX77`O1KMYMF+AbMmlec3D!VhHhXRU;7)yapQ~ zfsh0NeGo8YBcu?UK)@ITqQ9{ig#5C_7*OGM|2>OYylW`<2eJQ9HeZ z<00_jP{vXj5QxctE&p|8pbIkprIJO{L>NPJ9Rg~;WtQ^=gxM<0Du^`#VUDmsSR$+_ zU*27TfDH&(gMbwXK=(@j&&L`fn7}uyn;d9au|Yco23qYA_6P?A8U$=XzzziL>k(Ll zBf<#;96$g{#boJ`mfBBRYU2vRq~UkE=nDYtf9e9rW0tS+K_2}hJ&2yN)F~c%5??-7ZAW7gLxtX1TUQsG?-^rA_%xb zt8@tnxMw8_EJ*dMq41zX91-;R6an-;I-C&~6_g?XScNLPVkF9ojZ$6~3=f8kWb;=F zzBPz%RH%I=wo=Zb+kY$N0G%}i#X+;yw*g8EO=i%h;hH>|%qA?zLcZw^*yeAvc@w<;mcyW_9$xNf zqQjT+D+M{!zR9uFtB@!fL&7;=s8~B!9G4c)4?^Zg#F1 zs=b{zW<_`FKg989su$5s(BBX!n4On{(_-IyuZVXD#ARU~5N%-)M7l1hKL(3)!+29& zp}xd_QQQ45Ih-5TeF<|6i~C!S`!BgAJ+5{h)UV}w1#(JXm%BW8%jGUMY^9QXfw1)V zgayrCk?I#nZHAGcs0N~|UTllQa+gB7odrl||LEEwK@R0_ax6>8J&!sean=?-{1NWBA@Ooi;q%g*bIwN49!<-QemCEy{OhH&6q zzjCm10zvt21wGu+-c)-c4l)lk?o0V|0?AF^k^I`NF9?KGz9Y2cTvTr_hp)vif2W$> zJ~-^ZM&p`5(EMAyL~jfg!l)xc?nA;*y&WKbCqQH4K_qxXKUNYvoFE5)O!}}83-L4J z#+RuXn&Bg$$?2alMLpss;+6p0e0c`{FU0;M#5v+N;?B2`;XTCtZxen;JQV~|4;MqJ zCm;~B5=+H4Af6$fBVHh0f!S97Si_q6lAhle}Zz8EBOn$>}9xaDP zOCBBkB`T6!TCM(>3|~qXfDbNdURrV93Rd}dAi(%K^!bSRwCYa;6z3#>Ks*S8*7pb~ zSn-}QmpkjR9IPN$At59@HgYw>9t5CO-jg$YAQVJF%&CvkkG~|69jgHKo$sqAdn3Ldq7|>2>ScuO)B{9|#@>LKlG|4fq!|i=$=g8+1{!~%g*5GWHknt;{dTN09GnkngjJy>2(1RQSv%(F~p57BS@>(Mg* z3A7M-Cqzd>(esj3dIyIJLOup@F@h!O8)6~AYxu)Or$ds2nDs~>BpC?>W=BAv8U*UT zAY~%`ku+!*fDAweBB3a)90V#rpt2qrg!~Z+McGv#a1?5zplO1a_TM(`o1#7F;ZXb< z4_ScLe-^ZdLIUsLI0zvh8f<7W`_Ix#Wh{o$YPL&nyM;WJS4Joj386^;tMcn^A$K9^ ziwBl9AOKzJCEt6JDV3{1{0o!!V*at#J9BEuFX3Hpf?b8(HD+DMwW1vbk-`0 zcfyVx!NEI&cP?y{65Avr_Z^CN z5NJva6%_F|4IcDRFrlg0Ze8k8L=GHc{92Q>2{K@v#o)p_1%d*LCgKEI?PH^ME{JJp zYH6dOMSQ8Gzjb}FRoQ<&`Kn1$NQhNzP1ZU=TXYTO>LK#5tn~tBt9m12lPnR49&2Nk z1T+;asSs5BOJ*pLf+*7nf{I{+g9ICbl|9i{A`qq4k_Zt;WI&u z3D`!M4$K(l4)F@cz!;> z9`+ITSy)(jweT9@b;4VPZH4WH(ZV=kf^dLvgmAQQqHvnT>R{^$8iU^M?zA&8+1 z6595kH3@_kNdf<-k`VIslBAmLx}|o{BMXJZkwwU2!7LIFJ%-{dq9XZbDRgAsycpji znaC2zZUlv}kxZfTKtk-!pcG{&jMCRPH#AyWNJ^pTO$Y%^P%F4P$O@!@m`IRThlCc2 z_T`sD$Xe)pVo?%0o)CkIZV(cnGcWxPu@AMb+O+yQvURl~ki2^Rsypj)k=@AS5T6eS zQM&_OAS@V!odsb&APgeNfkxvv2yme?|Hhm`_AVb*c2nW8D+Ep9KcaRBh+X1i6Ly55 zpyOr1iLkk@An<4CMhETCU5VErq&#TW4MPc{MATxGh+0a4fY$_R(2vDbT>%s#Lw6bW z%^^4{N+&t|$FHl=w_FX*|0~2iz^p($o9<|!5|Mi3Okvu?u3* zC#7Q7#C{gLDfWxl9kIJ&@5MffeTKfjTqO>OuN7Y}zCm16TwEL>E+MWj9teFf#T0K4 zpBH}#@wV&2z2I@sd&z^)3&ld{Wg-)P7+wmmhd08T;4Sbrcn7=-dP8*q{uZ$jI>7Zr zgdxJAGc&;%Sw4b=s716Oc!(jyS;Tq7Rm3%D6L}Bu9x03zhqee?klTNu zJd%`@l#@hDwn+9$o|T-GoR*xG{7G_7azXN<dSex>LGanj<|T{YXYaW{ZrajJFI;W`|6$OqfiB zOq5KfOrA`>Oo2?1OqEQHOr1=F%rTi}nI4&5nUgYnnKLrCWNyp+DsxZfH<{mM9?3kB zc_#Bh<`0?IGJna!Ws$OyvQo0rva+)BvWl|GvZ}J1Ww*+z%WBG+$$H8L%kGw~knNG3 zlYK7xSx!PuUCvU@Th3oDK#nRGCKoOjDHku7Dz{q>lq;00lshU{BUdL^FV`s7BzHot zSB@ulO0HjSP;OXmRPKh{U-AffZF#)Bo4lWVhHN~TKYN|s92N{&i6C6W?Z$ydo=DO@R1DOxF3sZ^;(saa`3>5B3yWw`P-Wh3S7 z%4W)z%GS!Z%KpmX%5>#;PUWJ?O_kqN zKC7-)l~*-VHB+@$-Ju$$nyXr>TBBO0TCduu+N9d8%27R`+N;V_J*7IQdQbI}nvB|3 zwQXwZYMN>oH7_-ynva^Vn!j40T8dh>T8&zrTD`itx}!Qloup1y_f_{-4^*eAN2|xG z?^0)|C#WZ>r>Li?m#OpBf7Mv6A*Z3Pp{0S+(9>wGBwy5Z5pRE`ZWeMhBZbtPHUXen9!KgT%~EQ8Le5OIjgln%S6jY3$Nv_<*7x` zB59Ge61Dbd3Oi&b57%Bmk zj7mjipmw7`6bn_2sz)`VnoupMUeo|;2sMHlLrtM(Q0GwRQS+!@P)~G(bbip0&{5Xe zrlX;wrGwHj(lOC7)iKwx)N#}C(fLtlr%sAaw$1^aT%CNKLY+#TW}Q}@cAZY0ZXJ%! z37rw0F`aRp37sjOS)HGB=5&76d9J%gS5jA5*H+hF*Ik#SOV;((_1E2@8>}0u8=)Je z3+f)$J*L~GJFGjZJFYvSJFR<8cTV?$?q%Jpy6^O)^vw0}dJ%e=dI$BI_1g40^^WUt z^?LRAdi{DsdRO$W>)p`%MemN@UA_DI()ud;+WI>B`VfoNc71bwOMRTai@vMAyMCB{ zf_}1os(!kDp?;-)wSJv`y?%>+n?6s!Pk%svNPk}cmi`_6yZZO_-x{njKpMy!C>f|4 zY&JM(P-4(x&}nemVAkM@!F7Y1hHDMshVq6ghA2aGLwiFvLk~l5Ly{rYFxW7{u*|T* zu*0z1kZag$$Tu7{95%E$sSG}ZKgX^v^GX`bm}(;?Fd z(*@H@rdLgWHoawf$Mml0Gt+lwfEnCO&WvalW46aE->lxO*=)${7qef@?wdU@dt~<1 z?1kAYv%k#Y<`U*o<}&7T<_hM@<{IYO=DOzk=GNwR<__iXHjTTY*AuSYSCrEvFNejS)8)yw-~fIYcXT- zlf}Hn1&iAjcP;K)Jg|6f@zGMqQrL2}<$6mgOBqXfOGQhPCYx#qw9n`#R0diCT$UA*^Jr)U38zX;^7n>00SqSzFmzIapz= ze5`g_g<3^eMOmd-rCViMWmy$i6#f!r*4ow->k#W$ zYr1uUb+UDu^f3gXER_kWixFvV{^{tvdvwaKWzTAd292*=CiG^ zEnvIOc9X5Ft%9wxEwtOV)v(pFMcLZeI@|8D&9g1DJ#Ks2cGmWq?G4*sY=5=AZ~MFL zW80^;?`=QX!R*L(!FFMGk#=Kt=j|5kF4^naTiV;$+uK*#H`}+_cRH+bkZ_Q4ka5`M zkm_*2A;%%tAnITDt0q= zD^?w=k2S|yVQsMvSS;2FOT?0~e%JtPGIk#}2b+g2z*b<7Vr#H<*b~?h>}l*7>;(2Y z_5t=0_9^zcqpxGAW4L3KW2|G1Bgb*U@si_J$Lo$a9dA3{b^Oioq0=g-HBRfDM4ZH& z;7&*SI22M6k_D*Ogtdp-(s8fVfv{S58y3=ka&}olTu~Uf?%c;z% z)#;?uDW?IaA)Gu;1E+=4!Rh0iagn$f+%8-^E(w>4%fMyf_TZ{;H8?h|5!Zxk!L{K| z;QDZbxDniG+!@>g?h@__?i%hX?mh04vyii}v$!+TS<+d`S;N`H+05C}+1i=q%yw>Y zZgOsQKIuH;{FC#%^F`+?&exr9I^TA_>-?MZL+8&f!Y->_*0`*5+2A7Pf^d;=k#doC zk#*VbLUKuUsd5>1xsU$=uYq^M2jgS#yYTV&MEq`i4n7ZGh(Clsj4#C>!B^m$@U8d` zd^etp@4?UGZ{hFaf5Sh-Kf}Mkzrz3ND(s4Im2_2b)pXT$HE=a{HFvdiwQ;p`b#x`U z?sqM6WxBFl%Uo++`&kHRcu7A0{bCYnBa+7hBcT;pzc2jlJ zax-x=bF*}_akF>BxH-BJ+78_Soj3>4Eal^RV%-_rQ2K zdANAEd3btwdk{TBJ?I|g9$b$hkEcs}&}%k!P*M=yd`kk?MHP_IF+X|Ho$bKdIS#@?ph7T!$nO7CXx7VlQ?cJChV zTiy@6|M33P`>po}@6QBb!fJvzL6)$EphvJE*b;DrAVLTslTb`JN@yjt6FLdq1PLXnveezNELHk7b6#8`d%=rB7^U~+F&l{h2J%-C4n?10L~*5fP`oK5 z3Yp?d@uvh+Vko;P@suP=DkYtgOUb7cQi>@@DYcY(N+X3s>7ksY@F`~~lay)7Eaex< z6UuYSAC%X=!oHh)WqlQVm3`HGxB6=MYWwQ?8u%LfI{Ui%y8C+idi#=mDZYNb0lqZf zAANWFg1)uBr+x4H{otqPNAP3#G5xyycz%6;gMPz)lYaAl7yYjIUH7}`_lw^hzh{0g z{a*XM@q6$0(O=eoo4>ZduD^l*c7HQ}OMh#BSAUZK4*xL!NdFjrhJS*8vVW?7u0Pwq z(ZAWh&A-FH%b(-l=Rf2BlmEQ`MgJ@Q*Zpt$-}b-jf8YOEfN%g1ur5F%Kt5nwfOf$4 z0NVhE0BnF~fNwxR04*RgAUPl{AR}ORz>$E)faZYKfc5}>K!3ncz(~NkfVqH$fQtcl z0`3L;7Vvw(hd@N2WT0N4VW3H%X`n@*b)aLQM_^L=?xcd$2I>HHiaJX@ zPhFs1qF$jsroN`Wqkg0b(S&K@G%1=iO_nB4Q=@IAsnfJ*D4Ge)hK8qk(}*-58ihuq z?VttI!e|k+cv=SSAgzE_Oe>+WXl1lE8jr@Oouc*ACTTZl&uM?qJ_M}`5)G0GQVr4! zi4RE%$qFe9VTDwMw1o7B426t_jE78wOoyBcnG3lPayjH-$m5V_AumH-hr9`SAMz;_ z7P>lgO{hYsd8lJ(VCbRH`q1If`Oqh!@50uHiG+!VA;UI?Nr%aWDTblK^ui3oOv22< zEW>QV?8DGuF=5SN^Wi|aaX2l!BD^WQJ-jQN6Mi!MRQN#nQ20#vx$wF03lZxhq#~pv zG4*bxm89TD9T+=!ltsfZg9zePNZcpUL0 z;(5d$kwTHHB1Iy%L~2K3BK;!6BBLYYA{mj%k!g{cky()ikwuZrNLJ*>s2`#>MoCA> zMJYz9L~VvJ(hZ`FqP9nwM_EPLM1@7|jXDxF74I@T`MBi1{X6ibQqkEO=`7`rnzBsMvAPi$-K>DcqJ4`V;Z zt%*a#Nycr8lZ{h|Q;t)O(~UETGma~atBk9TtBZTLYwfNdc8Tr^*~QqExGQDX{H|NO z?(Dip7p8BZOVefOvUGX+7P<$WLieXrq3_G0=qdDU`aXINJ&#^UFQZq`kJ4-D_4G#i z2>l}cJwuYAz))tWF}5%a7~2`<3@e5`1I=(`;21OpgOSB3VlWvj#t}v(qnc62Xkc&| zy$n91pE1N3WsEbJv(QbQ5R;I-PVjX)@_j(v_s^ zNjH-%lX1x|$!^J>$#uz{$vw%u)<_q)4V1r&y=hrJz%=DIO`I zDRC)`l*E+e6fh+_WpB!%lp`sXDb*=;Da|RZDIF=@DV&srlvk;nQk7HHQn#k6r|PE~ zq#C8Vq>@wpQUgLMe3{6zf#|&eoR}JwjoU{4Us09 zwkb^}%|2~s+OD+Zw6wI$G%zhEEibJw?NC}t8ar()?NZvUv21 znT&~yg^XV^o@Knuc%AVk<9)`bOjzdXOo>dXOqopiOr=cK%q^MQGBq*{GHo*LGclP? znJ$@bnVy;6nY7FunIV~jnbVo)GUs-y?>63Ty4zxR$?n?S^}CPl{+uNOy=+2eMP?;u zrDbJiUCO$Z^*HNE*3+!#S#QD3APUq24MAhj9t;Myg905;*XTd3O7Ca9wfS16l;LqSK@D6wnd;mTK{{r8FAHdJqu z?t$Fu+`8O`+@{>t+>YGtTyAb}Ez<_YJiYs=EdbP@)Gls^T51=dHH#TdBu6myu*2Qc@23@ zd98UJd0lxkc~|pp=H1S_oA-O(qr9hi&+|U#3+Hdhm(EwnSI$?7^Yi=jhw?}A&*d-VU&_Cle>4Af{@wih1;Pd5 z1=0m_1&ReK1)B>{1$qUB1ttY%1r`O)1@Q&71>*(h3a%GCFZiS2&w{rF9|}Gf3Ks%} z>k2m%iWRCAZY@+V)GX94)Gah9G%nm;XkKVpXkF-6m|9p}I9zzQ=!YVmBG;m*qTC{8 z5v%A(QAJUGQF~EW5vQo9h*xx~sK02iXu9ZJ(Ol7mqRT~Bi~cNLRlKfvL$O$~M6pz{ zbg^u)MzMCWS+RAoT`{^CSL{;kR_swsEsiP%i}w~EC_Y$RP+VMGQe0YGUR+gNQ+%TM zWHG))I{p?GoJ*gA(Hs(-Mmk>k_*XbctU{UG0#juMfXD{QmGq)*6;L z3(4BZl4i-V6j(|uZI&*}fMv`wWtp>lSUXwatSDA2E1s3eN@1n34zdbZrL1~ZGpmi& z$>OqlSUlD#)+Fl^>jvu=)~~GltS7AJtUp+Pvfh-gEtM^`C`Fe#mO7W>ODUy+r9q`T zOT$Z}N@GiRl@^p%l-8FXD{U!lFYPMjmG+emmX4I3En}|6Km4{7r>u1-wF{LaIWh zLcT(&LbYN`g?fcng>8jH1*XEW0#|{raIf&HAXNBNP%8W?k}Jw8`YLWz!Ya2_x>QC~ z=2jl7?5gBc_Ees%9Il+KoT)rlIaj$*d9m_x<=x8PDj!xpseE4fvP!&4zDlKPbJeyg z?JC_W{VKyM`zlP8Ta`yuK-G^`!Bt^Z(N(ck^s4x(Jype3O;xQ`9aY^`+^XIxepP?f zP}OMFc-2JJt*Sd!cdPDKJ*awA^|b0m)gM)_tKL+-tNL(M=BVjW|D%~l*+(ai{#L!A zTC>`*+N0XLnp91$4yul*j;@ZYW>hCsCsn6Zr&Z@v=T#S0AF4iFU0Thp9*cMVu`w5GL&Thm*^uj#KDs+p*nt~pmTS977}Qq8TJ z$F;E9)wOGDf2b9$h1W{dO4Z8L%GWB@8r5#EHLJC#wW_tPb*RPEI@UVZ;%nV%BWn-V zcGjM+eN`u0XI&RimtI$1$F6IvYp!dpV9XhVN0;3*>Y?}wiIJ9Y#KY3oz6bQKFls-SFn$= zYuWYeW9$}oJG+a0nthf%$)0A98~hu>8=@Lw8|V!Q4M`1$8|oU4HMBIeHym#` z(a_t#YdG65*>I`hdc)0z+YR>{9yB~^c+&8paebq5qgvzEMvX@8M%_k(M&m})MvF%4 zM!QCGqhDh{BegN8ac5&_V|Zg!V@%_&#`wm>#*#)(lHv?;17rfF9b zqba*-UsGXIWfQxpv8lPKt%=jr)5L4)YZ_>pX?oHu)V#hK*}Sn?x>>e)TeEhvZnHu2 z_Ga^Dt7e;Kzvi&!UCr^$NzJLv8O{5fbDQ&ZF*zrflpB-;IK6HHUgmtd!gm+4G zN_EO~%6BSuT68*fx^{YWdUujL{W=3Wshu&MyE;=l4|EoG9_l>YS=L$IS=ZUn+0@z6 z$?Kf%eBAlE^G)ab&W~L`bcuH%yEb;ob}4izcd2$+ce!*Cx_r8Py8^msUEy6(U9nyC zu7s|nuKiuzT|aljx_{^v>6YnM>{jXC+^x~A)veR5*KN~{@7~cJ(jDF%)g9YS?@s7W z?oR8@>;}8{c2{;+ch`2ayBoTjx?8*3yF0tPySd%H-MsFL-LH;IA2&Z9czo~iy5r-= z?{ZdgL^$FcBuA2?z}d=C=V)@YIXWCYjupq2~%E{nlarSWza1L_v zIhCAdP8Wy6>EZA=L!430IA?-0#aZC|%(=z6!@0|O!TFQ(mh*uNFs+(d2~H-nqS&E_8BR&%-BUM`>8&mH29a>uz7 z+-dGP?i}|%_jm3i?i21a?n~}#?i=nq?nmzD6R;DCC#+5co!E1t>BQ`b7d`ME-5z`o zv4`B_*Avha(i7W5?@8!M?n&#(=sDO^&{Nz~(o@=Vq^GB6wC8NkRL^YBe9y(6D?QhG ze((9S=Y7woURdv%-u1mAy<)uzy_&stz35)YUguudUXNbyUQ#cm*T0wA`(tlPZ+dTL zZ&q)1@4nug-n`zz-s0YpURG~e?}^@p-oH-DoU}T*<7D>9V<*Q?-Z}Z`<89!H@en)--bUUg-e%r5o+b~))8iTN++?C_)2^Wz7yY*PvHCTefa_W5Pmp6iXY3T^W*s${Db@&KAYdjZ|1l0JNd`?C-^7% zr}zW>dHzNIW&TzEb^cBMZT_$Pd;ACdhy2H<)}K;8g+CQ@ig}86>gQAM`(*pJ_u2M2 z^kMs)`aJu5`vUrCeLMO>`oj7m`l9+$`qKM$_ht9(>pRfb(09DAw~yb~-#5~Cy6;Ti zMBnAUYkj}6K0?>Fw>-f!M-)z9p&>F@66 z_V@Pl`}_Nc`bYc6`zQLZ_W#^}tN%{_z5WONkNThXzv%yCKy*N6KzqP(fH)8~kUEev zaA<%zaCqS8K=nZF!0^E2z@>r916KyF4g5CnaNxBo2}XeFsAa!v~`VV+Xl|!-J!P@Q z_1N06AI3z-;A0YFQe!e>@?%P4s$*Nm)W@{ObjI|@jK;Q)nU7hHVa6QCg2p1oqQ-K@ z4vm$Jb&c`HPL16jdpP#^H1f3EX@%2{r#()4olZTy=k&hQO{cq0b5376ee3k?abR3* z96pX3HyJk_Cyob>)5bH#_mAg{w~lkid&bX?Umd@GM)=HzGooko&X}FCIOBgN_)O@T zk~39js?Q9cnLIOn=Jzu%&%8P-aaR7U;#t$Pc4r;VhMtW(OFvtDw)|}6*(+ynPrxSD zO{h;;Pq<9rCtN4oC;TS@CITmD6VVfi6Dbqv6T2s}C-No=Ck{;` zCTAzlPcBSen!GZ3fAa0rnkl&{#VM7k%~RW^G^bEgdQ*l|CR1ipZd0C9gelS#dCG4p za4KkO=Tzua_*CRn!c_iL*;Mz`*wnSDXVa^v<)@9OU8V!3W2d{PPfia`PflN&zBPSk z`rh<|=||JArvI9LH~n!&XhwKOZpLKBb7t?%!I?udB{Nks^)tt2T4vg3I%oQ3MrX!n zCT6B*=4UR>T$#B(b7OYRtkEoOHhea6HhFgUZ1(KF*__#;S>`Nj_Q-6-Y~5_@T+>|Z z+{wAqb7$wK=4R*4&n?Vdn)`L`{@jDPM{`f-p3l9Udo?dJZ#^G2&z!HEZ`eC=NV literal 58936 zcmeEv2YeLO7WdpTZFgs9Lhl3uQWMe(Adm(`0*NVfh)c4-LdeG5gd(7GMX~qZN$6n1 zh6Q`YieT@(_pZ;U-?=k8n~u@v`@Z+R-xHJU&fK~6l>a^VoHL7Rs{`S>#Kh+WBw&FE zR1gJ8kOkN5AuIi%a3EMSXNWIUxikRZ%7)YhYiAD$E?VZVtP6J$(8f&_hCZWontzSI zDmzl>SwRuh^3pnAo!>+^#E9brx8MKNI7hfj zxLUYI*d#OvjlvFLr?5-dE!-sBCOjZKC_FA45S|qd3NHw+2(JpS32zDS3GWLZ2_Fle z3ttIe3*QSr2tOi%C=!u`WaLH~@}h32JL--4pn)g_rJ^*Hjxtat%0gq&I5ZwjL^&uI z%|Ua~JTxCIKnqa?ItKaBB2&!ZR6i|8fv9{Lo0iM~ZYqMy*u z=$}}{F6_o0tYI(ihP&h5xDOtQN8!;p9w*>boQbpWSbP+oh70j@JOdZuVqA)6;#qh$ zUWhAj058MKaW!6nYj6_#J}O+iA>zYLkto_x|1HHC+SQ2 zkytW_3?swIXp%^hNE#VOCXk6_8Yv{x$qZ6NN=X@+PZp4cq=FnvLL^M;NIh9eR*}_Y zJvotVAREbPAe-wWbf0mGhB_e5(SJEXz zijlfY{iOlYKq*!lEyYU-(ikaGN|KVL6e(3olhUQJ(l{wcnkE%V#ZsA6F3ph^NIuCg zEtcw~Ps&fp2jpkv=j7+*m*kh_ z*W}mbH{^HZcjfowkK~W#ALXCqpXFcVf5^Wok|HaLqAD)MtMpKMD!r86%24G9WtcKt z8KI0+Mk%9}cqK_mR>mshl<~?8rAR4Oj#f&PQl(5OR~9J8C_bf1@heM}fKsijP->N9 zm5{PhS*5I2Oob^YDjSrOlrxocmGhK~l#7*3N`umh!^#uN%gQUtd&>LD$I92rH_C6SOLeOr)lj>sN2p`eWHm)iS2NVH>Ns_RI#JD0 zbJfY}6m_avs7_aBs3mHtx=LNEu2W5wsVA!&)zj58)N|Bx)eF^&)XUV%)vMKO)XnM^ zb%(lBy-vMey-B@UeM)^=eMUW?KC2#752??o&#Nz}FRCx8uc_~BcJ->KiL zzq0MkGh_59dNzode8N~>vy-{MsDmTZt51@l3R8wZq=>1yScl& zd${|#`@4s_k8lrjC%Kc|>Fx>ciSB9cQg@lV+P%VE;|{uO-N(8^?y$SgUGHA$KF-bD zC%QMdPja8`KEr*1`$G3c?yKBayKi&vb>Hs3!+odwF84n7-R^tb_qy+MKjePG{iOS# z`;hxp_iOIg-EX+xbbsjn$b&t^Lp`EL^2i>=qk3E(x5wi#JUuwJ+YqQo)Mmr zo>WhoC(D!V$??qa%=FCi1U z4QoWBny5*dtSOqRxiq)t(KIba>!l6Q25Q5!;o1moq?W3sY3W*qHcrdc^0Z>@Xstvm z)ylMTZGpB>TdA$mR%>gtjy`a6Oy{^5leV~1)eWZP?eXV_?{i^*_`%U}Z zD|o5b;_ek#q??mq;Z?-qzTj(wEmU`!T=X)1> zmw7|pu=fP7={?nZnzzB*=-uqy;@#@q=H2ey;oa%o<=ySQ!F!u`pZ9L>!`?@{PkW#7 ze(e3k`>FRc@8{kxykC01@_z08#`~@JNAGVs)kR&?y?QUbx87eLsvn^z>tpqCdZ}Kf zm+Le2S^8{!jy_kPr_a|H=sta^9?*k&t-e}cqaUZAsBh3u)6de+)*JQB`WAhwzD?h* z@6dPZyY%by8}&WDd;JIf zNBt-LXZ;ubH^Xb_hGE1QU5u_qHzUbNH8PB`#*xM(BiER06c~j@kx^ol8?%jh#zMnq zR2fT*WyT7l)(9IbjWxzP;{;=avC%lgILEla*lcVuwi?@v?Z$57Mq`h0hjFLzfbpR5 zknyPTn6ck@%6Qgz-gwn`&3N7T-uS`z(fG;u+4#lyhw-cNPvbY^_ZT4t#o!ncLu14k zDW*$I*O+cG-D7&h^o;2h(>rEh%!rtgF{5He$Hd1Z#AL=~#f*>(IHoLS zR?O^}`7w)P7RLl)R>m9`vo_|07&GRi@*y?#)zyatP4Ei3U

9ACSK*%?XksY&_S@mcwk zQ{uBy6Vq}MbMo>gr{-4}-3s#ZX9Yvc!?nIje_pV%euclL&S|-iFjyG5UFa+H6Z#7S zgn>e=Fvt{5$&^jSR85!Z-Y&!mLxiEi5m02fFx2#znmLN$BcM!AbCh}1LSB8KrYg8< za>%#BUtvsW-d>q+QEsrNE)=Y;_J=AmQ*+WX@^doc(~~pP;!_ioGvc%Ia&qF6Gbd-{ zWn`ykCFdtq7)L~Fgr{?Sp;^B0%s@D>sMJ!*EV=i0T& ziKAmPGS-idU7M7e$UkRgu3zs=aH=pt7`anO6VinYAydc_#tP$v@xqa&*VIkJj4`{I zUCnN0ceBS%nBGZ3wvZ#_3VA|4e47F@+{?Vzyw7~xe8PMRz8x@+sxS=bP3h9$su{kO zfh9f|t9>c@H9O>o5ywEO^148Epf2DK&k9u4Ewzgk)P!qce-sQg6^lM;6`MaZ;9r&J zUsS(j2`rh>b-I5=Ftlb$$XC0x>8jI*XbTIVx%{d?q+Zn-ewlELFmkt0F3c2W3A2Sc z!dzjVFke_8EEFot-ew=Oui4M+Zw@dAnz7~}bFdk=Tkr{sgi4`G@C%EDCBjl6AS@G> zn?ua$=3H~Jxx}n9PcY9j8_jFYTlsYKn_U^K@+Uz1(*kt~(Xk|0ovkoNMsJq}>qC|P z2sxG)G%K3B)K{~_AFeR^M+>*Ct8~qZMZs#A)KY&nOrF0g+6?S4r-Xv_we}6zk3ub@ zI;bTF7G`;EFi=w$wx0(Y?YPZ?aJZiLsc#3hO$Mf`Fk(Bn8zu9OD<}g->G*D8a7ox% z#WjK{jNB$1C#)6L3G0R9g%ix7<`L#FbGSLegd0PJ6NL>xuqO)}K_rYevw>8nnT33H z`bUVhsHS>NK~0@M1dRd*^Hl&bRAKal`_@X8g?u&P09>=U7RKE(FK0@0nj__>!%Exi z$QgjwSyEq91NG%p2P>C{xh#r^iV|3+NXa^17JW26)p~UA@MsC%3rV z<}f}%O9RzaA%9KenE_7SEeQ|^DAITw6v(X)!4q|bzWSQVrKR?0OZZDgzJSH=GwZe26Vz~`=dWRe@5x_`Z`NA`|CDCsT+koERP5vOu6vXVN`k?<$$@IWeI1@$;S1C>6|VsC4=cI4Xt7gg(>+r#$HLDP zGs~O|ix=g$C=2ryNXTF9udL^t$gf!$2nB1nlC@j0NA!@ee~a+2@QCoJ@R&KyoM`5l zxn}+$;R)eM7~50A)50@zo7yb5dSi|^k2ELDg4N)?H8gu}4++nK(1Yc+OlCp9r7Y3cba&HVv`F z&-oW7)mrIB;WIu$4gfk;-frUy;md_l3bcB%S@?qYWq!uuMd_8Psfn4H>4|pPZ-j3_ z_eD$R1pqt*YkZ+Kn}u(L@8FRcrA^lWWUXBbnm>_)faHv1zyO(P>(?9DkupCC{}e`U z5q=ha5&j|kYR)i=%wqHCEy8cY??@1SGfT`evmAbdbm<0U3S!dY`!RY&mV-UYYZkX#xR+grzpA{TWj&GpAO)#Hk4>A*QhTu9Ax|S8lr1n@v{D)b1OdZ# zp43r{(4zqv=FA4v#hk@)C`U)_K66meQ4iD;^{O!XfR5&rTFlM4E!WbVW6mxzb}Vu% zy$BO3O0qU50DKh@e+G!By6nnIATxgzAUglTa3#l-#lbMh&|uAia6~U#(r{Bs_Cqs1 zp7dn?d5wyzQB~uF$bXG)Pu!$q?JseYPPIR5Qeyfh967D9eD=JmCADkpiwKs*`p+Br z>-;&+nlaQD^#h;^g1g#=nnm?>)qxs6hfYm28=3vhs6QIOC%2R3D~v@IWpz_>XC|fR z%`9tb10YFqdehftO_r^x^@lSe%~i}Stw>2~DrZe$DPTpA5K;M9;jCvY8X=6_fd-+$ zC=LxlL(vgv7#eQQGv}KN%!Ou!d5q~Z7wrHQ&voH&lpqX6i6{xwJlBXl%}V%GW%@bg z4gor_fl`zjxC-Q|8^jk_>$$$Rp?EvRrh?S=fsr0ca9!3;iKsBQ>lxI3sa(Ee@<-b0 z)2z%2F8qPBK&5hN*Rod~trodng-;V{g26B;PCq&_-Q*uTllw?9u3 zZrx-~?F3?TmL?C)fUN_{N0ZSMG!+$~qtG-|h^CuM&49VgTy9pIE6f@*Xx8pTMF6qq z17@C!%7hAGA(~|#3-CG?@bUmNWX1uo4)Y}%9MxVe@U4Yl6YSAc7=sR1D1xdxfSqMQH&LxARn9j;t6$ovPrci{42d&WU+hbv%r-bTe~(N1-^Yp{!RqU3Nb zSPR>%j={V$w;gRToZkP5-HJmdi%~ToShNH!MFF%-INq!`SDLHL)#iw;Xa(@?P*jVK zHP-;2jxyJo$6GoE$Tb(lr>_<$orBl1ke{yvTyC21C==Vtq^JgzPJn|e*mZEIdzg~> zHC)z1IUUM5h?TeD^m#Qpj%$%M=5Y;Zt+|$K5nj}S=HYCsJ5JFP5bQlbRUPGA*nm!s zKD*IeZrB_j>g&I+cbM~y1zKJ%l;^O5-=Eg4DCmcqbJM@&5O*7%}cfj8_?6} z8FT;u?WN{r=HRhIcfE9R`=mE`)u{<(aERb};Zu65h$in+&)>^bgppwt2e6RF&5i(wnp=>9w#fvx0L7Q}x_DtfLx2Xm#x!(mr?!JVdiLscU8y^thMM~H-`v*? z*xzWq&7EmU+OUBS4vZbt*-HENJ9GdljXPrV5ckk_DlO+5im*Wr4j(bHvvu})bmIc3 zbM%YUdk8p8%Xn3SB->6+^%pJdJJ@WC4wHKu1aW@I#Nt+K{8-&)ywtA_E= zkt2`TGQpiNv7Md(adV3kA7fLW62hwji|fEkCk9R>5`-hc|7IrGjE?~$@Cq(Dses*>WfN zvOEYLEboB-%E#ze@L1`F`{P&~2YxDJz(*w;=i;g0pK^@7-NVi`I>|00k*+&&HEeheDeW54})Ms8Y&KP zOKu2ureOY90w*&0tHFZKYCdM} z=ey7J$i{}7;uph#U`{>Qnf)QY9gLm~IV~h)*MUA?RA0y8Xe}rPM$3q`i)HU|tv(9ZBoGUE3LGQ39w2Y>v^V+njRa` zr~0dFqvFt6*$}SdD;qYSY!HUSJ^@y?uLYsGogqR=Toy(!zVp}`yiOR|h>yc-&8N+0 z8acCAOahO0k3L=qCrkb+`xFF3%j}Zq9WGfp-VX&=L=7lT)f@0Ra5{%i!YAX6_!N99 zJ`JCa&%kHmv+&vGv*tnbkolbXy!nFpqWO~fviXYn>TZ0lumPWsFTfY#i}1zx68Ll( zzTA8b;PV^io90{Q+YJ54Fg4#~xF5qqEk1U(J52|Kr2s(dA_i-2sUK;JG=5Cu3kAYK zzS;Cwlmp#ICdPi$x(Ys>_Q|KE>(^BK=Qh6?o9AEbtFNvr=I)_kKJ=F6MxdMSt@>fH zE+_HYP+$evI-T2=TWM9x$H6EJG9c21Wenlxs0*k2RtHu9IXh=OG4??Yh$=o%zN#S3 zBHe_}1#01Rn%^n5TP*ag3D(yg!aMLzK-_l=ui{;>#hOtXouNX1%@XSbx7jsow`{&{ zL126>zHVN#dyV*dVNdf5bBk*IH3cegtUpWAhV+_L(0u^aIf6 zQ7slF#vVGf4(IvSbi+K_*QUZEfi#1QaDcZUGDWcXNhzb|ack~00Ew2|?hhngUtPrs zyBK^YO8l_h3D*I|@S_&MNKT)h#m@^PH{*l&5Pr`5)cnl+d^3IlzlgS&UoeykyK`Wi zE_@!c!;!WvqcPwUhfLw7HSw^s$y)>at3ai5#h#}(g#Fv`oA@pKHhu@ci{HcVn_n^% z&(H*hrZL1AI*Xyp%>0+|NBCp>3I0^j@n`sR{006Je}%us-{5cYcldk!11PGhh(m@= z(qIYTota@dQVd!QB9*%@@J(4{_tlyh^)UBjZhjKcx5i?QNKLKF$F#W1+nML|puD6I z1d{WuNxMY#A44MsT;A}Bg`;aUlDx0E~L2IswAne~t5W$2HN<{Np^Lz70^B42i=-C-jtOKd<>;tJD z)4|jXa|IN&DCi4S#SYJbP4bAy;T6%WvOm~m^;Tt_LS0B#I1>BG{Mnq~;BV(vFEIK% zWBvn(2oAs6Yyq57{jFC1X}8k06d5e&B#sOrLxp|KXMYa2qQH8ts5O6Q2(WI2QOQYQ z?3giQxFigZS>dZ3;~Y?i$5=a%c#fdstuxzr`^wPdM1BqaSXakbTZl1y8WO5&L&0TZ zS`FKhA7lg>2`mZc4Nm>ep=u);#rMta-2&?Xi6;qU%v`>kv-kQ85r#0Fb#$)FcH_w; zWgaxmAp}35Z6v86yqaA&MAD(D3}GM1B15>J)FK!SNVkNLzZ%X1SNctXA<_KZu5COy z5)PGtoEyn_-u01{!4(Ov9Fj}&7*ZHg z8FDe?-a;mmJTjFOFyw)+40#!xgMmot?MM&sms#WwwSbKgw-L}+#i8KJ0N^ct$dS|3 zc9iH_?uEb-RgjbGt69lCpqg)zY~Cmq_BW8D8Pd%Bxn+SB@hLg+i&JZyF_e?pfE&n6 zGK(RdA)}GZ5r#7qV}@Ey!tI-^lZ?3;-7PIcUS4-!;PiMsgfk z%TQm227tsN#{(IjKup3&5ALQH0w}uDSIs|irz&vfV5lEM{VR-_YuCnSrY0sNXJjNL zW~Qd3WTa$eq>PS@Pfbot$VyB}PfATq%g9Vg0kbA|97|42Ovp%1&df?mOHWVENXi@? zo0OE5oY3@mT6)s@^)`W@L{0`Ku+)DeIZ4>#^y?JfFNOwMJ?H~HNKMb;O{S#sHnI}a zN5^I*@;%4Ik9s|lbY^95XHCx}XW2L)ZsGxJu|f0 z&6zVdJ|#20E-^GWZDn%&(){?;@hc#@W*mOi)}JD*fZKd8exA1z^(-*;i|ZiZ00hg-Ft2HJK0LMfsopP zza_iKZgMR{NeqqS!YRShm`5@+mZ9-2G$y&8+~8mYz)Hee!|5>I6_TXqZWnRc9#IUiQzpaQ~d4?51`8%3gt- z4pt!QQFADQFn+L?B0sVeh5!0eB&_DXmK;SiSIIv_rW-i7XOphAiYD-~mMdOln{Q2g z3aCMTwY0vL%ly_0(4tH`IO{NW!#0aU38hq|68;uGsT5Rr5ksI6XERi2tqy#h$&lHC zC#i>OO*~n~(Dar(NxK41(r&an?Lk4?&0wgQAyC96(Y2z)=E)+PC-v#zx#C;m&-GVV zC#()Ea(Jp4)O0Sj|fa%7XQkOPj$gnoh?7%%T}IlV(wnjB^;8%g{WA=5IlX^hi3EPBg0+S^yUqvV2Sq zhq4A1~9ME(t$N|-~ymi~{qAOsSf}Ccst4Y!U**CjxAvC8;GwCc_ zTRRu#QZO0vBl5UO0b6}LcPi)-0BiIZ>Z6NjC9R@>3?0W1K%aFCt!L=?|8%fMR}1^M(KYlqx|Xh^>*?_f)i6}cP>7*A zhE_7PItt(@vw>1D3e}R*QWCP#l2cNXQj=4&G7{4*s0QdKEh{xWH7zY8DJ3x@%Yso! zS*Z!h>B(7{$th`RNtpoRzz&|0nUI;Dl$DtUHDo4brt-6D8!Xb3?Y54!+A0T7#@kAS zYSS~5lTy+%;SNLBlaI>aT6Ec$$6O&TYQ__>uQh8tFvoaE(ku2y!W@2hmMkYYGHce$ErUBMF zOjBpsP1PTM29uJr5@6n7Mv}8KGLrz=T41-G83b&}7a%J&EiofKEjcqWqiI;@*=?D>(tyBpCu$l2Z68X0>h0 zUai(`@o~jX!rO04zGu!U4wqg|!6C)s-{$Z;H7Ow}Ju@Wty7X=MKTf-Qj)Wh z6I0+DME)cvXV~zYZUVGG8yGqPp!T#W%i{wX@kcEKo1DooC<PM>j(o>!Nmc ze*V<97VFR-&PHI-gVxc1do|g<@OCNgh2GJSvg_->kqjDYJ7T`An;fjJ0*fCw>$mC0 zDv16ogqrPxW^oQ^8xfHDjS=5waREpXaiOq*|1h-2g!O}8X1?KZmf9~a0rvtCpy$mE zB0$euxSvuVpy)cEy(0DzSadp^=c>h^(4$dYAp)Aam7&`j#aeCy*=tsrr3)^&8juAhNo20Y=!{TajEw5^g2*4J!&RvZtQLN?ri@j!P`C=G+xK)MLMqE4* zPQ^qR)!pXQgW^U(7f%sSg&k<69c4Z3Vm5T#dj^`Y4@FpkAx5T&k4@1v0^n(2x1VXAY z&LNSH#80?L_?V%W8pKZ-dbyJ#;Y;xw&c`+4*B}oVdWG}xcbt!3Z6gw5v;%RIVq1!V zU&MdfV&GRx47_oe$Bn^}zDiV5;80l-B}tMQfH>2s!Rg8e zoTaT(d#Q)i8wMctl;D)*Lxw(Tl=?`08G?EI1O!@^_ancZJC_}IwfCoQk=!-4VFlo3nLIQaCB|~2^1k?TvG!&=` z1Xs+gvQAFs!tt6Pe6JzSbRM`W!%*yiOgMo|Xll4A)+5J0a4D@{RL9S@d9gt8Qt;=L|Q5Zq-BCGEhlkOwX}jh zEd`}o$ZhtjbgUE-_DLZLma1DAf(h*a@ap;%H8bk@StuHHEH`cvSlo zSz0N<_PHk|SsED-*X2;OL;U}>vtE!uY`cwq7P9qY{5@*^wpt+GxV zL3;IRdDjVq<53de;ndgh@H}n(iUENGs7_r(pHA8gZLO&v#8eL;+ zZic%u+&k*yBwa7vB=p!U-5}j4?P0hZ!`&H%?>7s>rCS+>7)OSCnWYP$)}}N4`TSc` zeh>q`^3hKBErFQ+`YL~P!Qv*Zn`DV|r^|Os_qW&D1JK$-4EN!!^)*YI))^`&Zc)L0 z=?OmO#~JS5AU(=4YjY3=d>@aMPHdmtJnK7q37sUSl|x_hJzAA}aLa zCb6Y0dhxdOetQ*sAPkj0VmJ;!86M(9bvdqZ+)*xWQhlve5%9cC!4;gg%YqhRAC$fT z0rI8v75DL|0?((S7_qcv6oMqj|JBrwZyH?{)#dhRJc6K0*KXax`@eUezWw?S7#JHn zICjX;BZdu+9XV>`=mj%Mn`N|tzLW*(xH6A{>@xO^67bUj4{VTJ{hdpb!6yxTwEg~? zs4G)J9(V?DpEvGS0Fmbf;bw*SSMY0_37#qi1$huFQxN87*C66%luizWc$9RwHV6R{ zA#ilbvoixIA}WiyRJ(a|;(HuFhEO&q&PjWhGTsCR#BleIWVO2*?GS z0l8p9;FEW%a3#c^JSw~(yaD-Izd#7`vJOKj5Tjj%Omqgsl5R#@(RRqH>f}`A8C7qF zY^r-9`eYyEQ@t16j~;?hzqcT|tRKXi6hKbXy^yo?1^fnhi+%;(q2J*jz>o45aC_`W zl1K_D%1t1)kn|?kP);5@_^2zOXxC7!b0Sl z{a08J`5XB|*DyTH2EN}&--57<1n+TI)6LR15+s5Esl>lIO6vz%fJk)dN9iZ&XXzK| zAJVVVKc(L!0H`Av9?39B`_T-?Gn~Ni7={xWPJ(P!GM0%b$;dxIAY8D5fxa0X3E#3?ER*a4y3)GW;;ZA2NCkqqp$cYZ*k} zvf%{qnQ=PtulQCSwvA$**u!r3FPu94S&y97VHm9joDF9vbr8kkgEN)rh+BA-bjI_< zS*!#(5fGOQggvf7PGa~-h(&L*YRl=iRU415Fp^itujZE2cxV^AcGJ?q=`SfeCmwv| z(&JMnXJ^J|rX}XZ=jNxT!`W(nc4B&((@2&Kt`H3}EboK{c|5}t`Km^}9h~KJ_8&H+ zl_!C5K+a}(l9~TJ_~6CKd1SDhFHZ&ub+()?Lk)%<#$+YevOu^UbIHAI8O|{Ug<)tc zI~sXF9>%*OAqDabxrjTUTG3LiJFr|=Nl!<7tIZI^G7ZHAX}hgJ$8B*RmiF69N>5Bp zNJ~x0OwLSB2jA;VD0;ZI4%%%k@3^gw$Mt91dckfByu~6;?^)oqo}LCSJXx^mNKAn( zANQAm0i5*>?zYS5|eHJ8u@)L#XexT9{g((la7k7u8j}QobEL6iToAU7N5$W z$)C$#$X_zNis97^1JFK>;k8@kujOy#FXiuK(0A(?1{>U3hR>H!btf~t@h=~ID1DTHpi7j#N0!5yPO9FJbsnhA(6Ia)z(iu1r>@ zC{vXJ%(-n;}6BLayOPQ_AQRXV3qOW538iqk#Z)SLF zRM994ZNUX6^dKa;3utC42+2gQH`2jDFd0I7KuD%0Cncn(q$GjN1D8`!KwPSU-bqNy zfQ+l)5}KKjlA3A<2Bjq=fs3RaF9d#_Q9Yw9vYXlzmB%~?sad>HIu8P}f{-Bi2vk>E z3RvZmGc5_)*&w8d{!|v*Z8iQ~ZDoKLZ8We59BILW)6t*GGP|uUE!z5 z*;eH^WsI^;S+9Vsy%w03;p-T_p5Yt*TpU$IJ1HkCr*ih*sDNnO!|=_G%4y2!4ByHy zWZ7u8lU2@%?6z*IFy{RYyR9j~AY^JU^@n(DT|BpyB)}O}xUPAV7e<=ArNWs0H#FI- z5&N)QxkLfq+Re(P%4G`3oZA@Q%kb@+l`EC2l&cxOgWK`6W;dufvwbTevLV z%J7|L{+yih8F_{I6$N?rt)0U51_dPFJ~Q3Ea9!KfAyyb4B=`s3hzxO$aw{L=P0G#6 zEezkw@O=#5zZoSedzIVy*7N~}AMDf!|8M}En1p7DaIKzZq-OE3MF&qRUsayLD|pnBhi$9%9F}L3tuTuTL{a>R{-p7h_!aBa!7d&_TyhF zFEacX!%y>31HwAQNBu`pAx`tJDsQ$Ablz6pv49SA>2V0La9p(QF@3-n^FxN8XhJEU zD4(}NDPJhi<0lz@s#CjLL7J69o-Jj1Z!FEjiq!>=>^W>n>>iM9*} zzoW>$|P0vbzXdjNtlHd~T zL?c^JwFpFwTFfwbf;9{Aa5%6`^$R0!FbuU^ok@1nH`F=mTy>s0UtORsR4deDRG(CKh&yF6fS30}{87`{*Jaf$IO53Bf`Fu1+`uTH(k@lzi z$scH5+4e|fkjV9zKV2CFTNQ#A8Mp%$`WE@C`AElDE;BId7I)fC_O+3A|5;(2{TJH( zTPM4UpDDLH)q5hn{Jp|h`4@WGDORqAx2RN)sphFssuop%W08M##R^{y#J7YJDk~j5 zbBlT(`1Px|s<)|o)!WrO)H~I?)P3sR>OJbcj37oZBcNd+#8zZPVnk*{VMJxb#fW>i zdcW=0uRg3k0SD#?S11OJ2?hr2{UBL}8n}6=c$RLj3+lHh3{~Ns1b}Z4* zn!hEor_*PThm9|=@%GCcaJ<3@q!+R;ybf;tux8djSR(shzC#)BsUHYE8r1h0(Hqnc z88JHN&aZx|egXR>u|@@F^V=AS0e^h;E7-x2E^XcU)xKdC=6 z(w%3(Aw9uBt^TTl8})mP^kSs(tiI z731pB(ZQyxr>mE%x2q2${TUg+$UsJ7|C0_jBkSQB_eBW(4Iw~>6$0%E-l(v$1cIxOv%qvl#zZ89 z3o?>zaUJa{;XjNdGLmHfhQOa*#u#V4=eXv9q;Sn;B&ESMpOMtgNeb67u1X*+mk(kA zNg9s@bXB?hjHEM?(NciIHqZau~^FkUkDh z14;gF*GUm#J=JxZt@~VOxz1)}vO}%~jLdL!UlAka|I>Yt+ZlpzAoi6C*ee;C;t=dLHo-Ok!NQgm2zILd8wfVVS@!L&ot#{EFmhCbYZoKaI!UhA zyY_Grt8v|EDYimRVmDhPHoXmr#gN`{_kPuqMDK9j-L6H_b+79_OS2U-a&&8pqzhg& z*Wh}X5i1vw6)@&{%=H9xq}jQt>q*yBjFd7`);YEGtm}opWRY~e?t07SvNtU*n|Zh? zaHjhM*EgKYK6HKL`q=e}>r>ZfuFqXxxV{7~`zZiD|Y z0%8`VHvbJ=7Gv~_EWEp?8{!%p+<@1XG`IohEbSbhxd*rhS$yV>wfHOmMCJx_6o~R= zZTSp8=4au>RbEcSBGu-GefxRE=(Eq5OSV9PzzJnIgUa4OR|oU^}F0Yo3q@0;4Ij=xdR+*@x)Np&TRwdD{J3&>i@8o z^&;ei&TFSX##-)GobX^#Aj6NP%iL=@Q>}Baho2J|F&SajZ}68fT*e?H-dXUI-QaE6 z;NHl{Ne%8(89BL=Y;~sl9Gk7qw%BST0D1R$d|!4-TdpEbo(K2E?#pbFywoDe(+=~L z)4^-pyEsK|ayPge-J9K8+*{q-+}qtd+&dXLgOM{CIg1ehO6M?gE+gkLay}y$FmmB8 z_wEQq-r&B`y$2`~V)huh$f3wf8M%s)t2z9?=6@vlZy?G0IY~ai$i)sxKFmq-5n%)W zVdN4>1Hyj+K@M@&`YHD_oEV>GMkVWUVM)yk``U8|} z2l{&+h?_Ln#!`mtwEUL)U7IlBH1|$MHgQ?`lBFfCY(vk^GatLZ2PoqH#QmxJGxz82 zFWg_czjA-={zm@P{T(BXjBI9P3nN<@*~Z9rMgSrL&B6gb$j{xo-9JRg^A`t-xPSM+ zQOUIqf!^2*irmV`UH^k3e>W8IXh5PKFC*7QNYoPpBFU-wiC)jh4FE+f8a0f* zk#+a<@$>^K^?==GPlKmFBk(pHkkEgatj06Q!)+g)!JJBO=2Yq#%Bl30cBxc+(`jy$ zXH2_D#FOMnwvY&z#rC#FBA#?UGyplbN0EqUtmjB*zZuZ?Oz^;N^bSVu>=Y95{kLNf}cz_D`J3Mtf=cyAsCjVjNaYml7e}mv3ZS-)K`xMVGyAg4zV58(b|A!E;@K#$@=&wl;`iO3iMXAk}x z=&_qaAJ2H6<-SZ#>_60D64PAZMlSqK($#wFE}Mr1l#lzr#VBmZVuI zg$j%+?HshV3H12G6j&A)YngmjvKU2Ce4~xmCc+4sWxmoTY1xcoMoFjejh3$+)zSHy zHcczkrfV}8rHqP1>+KtifyR_xDhSP$!hSS0zO=ypZG@-p6 z4Mzw3_eqlf00F@`E1bw^Pe(wU3<5&iC~V+AjP`*bXcuS~15Ifcf_9_*xOUSnfej3WEl}HSw$bR2)m7Rin-Z_FC~+Wwf9(n4K zhC8WVZAtzFC*LO-jd#fR8BV?j@QeJ1(F8yt_HO`ar#S@jq6R>#L3@eO#0KpZMw2>8 z!f$AAa}s`&lQ8HdAmMiapwX0e09s7Xvbah45kt{gPQ#yQ+<#wOqe1>dkgFM7uD%0m z5~}E6C#!v{{m510ciQ*b4~&A&8q4T7t{Q*Ve&HK@|XLMwZY! zz&jFzi+7+m);q{M*c;~^;`z#Zgm;*CxECbIWJaejI+f7^25Qphg^W&T6tsWQ zZto~txOm5?k9d>#QHM8`tGi-HxPWT|D8`u}a6!1t|DVSD`}cI-98TCkUXV4yk|Ey7 zhl9l4>0USpYw*JIl{R>b8MV%}|JY#XE%VOeyk6s-$ssW<|6>g0UEuY#3xmCt-YSdN zXE8c260+i5!iTYx(b-M>x!haRia&$iT1MwEI=6HDS?68T5r4LiVWS~S4tp@~NtT53 zZm=ZWf=-P3bniug9KC0F&-9+I+O6SgSF8o(i1xOJ9G$iv^*(OXAy{dk zsan8|VlBswJR^JiMq}>*?`vGNKkGf{J>-4P`@HuB?~C4-yf4e2dS7KU#Auk&I!5am zUCHPwMprXPcSa!#1AJb)+xvQi8s8Ql6NdA=;@%IuA2Pbmp~vGPuQ=dFE3G&^k0#biG59KXICTtG#sL4yF9ABcMthEDR?!=zw?3&QYZ<=_;qN8eOsE zJL41v<};wMwzjU&b(0H@c z7=5rF$LK~z;RL-CX^!+^`slxO8l$J^=@w(@;3Wx+by{bJJzk#z5?()2pP*0FC+XRG zj-IRM>G?Xqr85{klTp}Bp3NxiCeLN`JVwuF^a4gN+@(*oc}gz?pMC&KdNG&q&M7>F zQ~0hnQo8DY68`U(@cKedc%XuvLwJ1=aFbrCZR9_UUILZ@`!{T^MmjXUOt0qrw4Bk) z8uS&6cJdfrKUS{;!qP)r%3H_qdOf!fw0{i0ew)+WTK#yN9@ks+cs0E7fn06zetc-zSh`oV4yZ$;SPosX0 zeyK2WhkmYpo_@Z5fqtQWk$$lbQ@WYaEsSnubQ`1F8QsC?PDXd_&@a<3*RRm8)UVR7 z*00ewF}j=4YZ(Ovd_AK#FnS}SH!*rMS1LX2AQpcWPf^{JSvou~Y`vq@N?Z+Da;p4w zzCd+ToFOEGtqu7X`$HjrmHnEQLWnxF-VeASTnTSFg&?SSA7omFXYHEedCrB%B^~kz z*G-1(mOSev6k5RFV6zee7Ondh($;qi+c!lb^!4kl&yeM~Ag3TVl2EZI@<>yk;wDw! z*W6UB->lyvScxzk0@$nH!50%y#hwOqrFkZw0NqYa7?}Y68s@${i#7N6EekI9*USi1 zTS>>K`$Eh8A*ZH$b%;OWIX0XN59*HyBOCRH$UBU}3t}cW>W}J=F}j!0FIrN}QxS@} zt-{Fua};BR)$w1=UVm!){^Eb}ja+HSD={YT(cc(g3^ZcF8*#7^XACih8b=tzjN!%zW27+(d;{W*1Y-=N&oFv`(PtSw z$mk(PfsLML^aVy=Wb`FQfq`CO6u|v!jK0q38;rim=v$1w%_xxDyNtfa==+R*z$gIu zkKiRuf{s2zpBpLWRUl(-U#O)DuXg4htdP&zNv8|C?HtAlHJ zUf*@=3Ls~Dc41*fadug>uB^7jN~aYRS47G>wTE3cC{Lp?v<(Py}zoSPs0uZe8A-!h)QN+@k3)Mv&}<1!Z$8X6BdhR5s2dQ~4tU z+dNWUQo^fmRd^aNJg9YHXCh~0PtUK&$u0#;jy;AMt%?`sRg{#^;PVYRcd|=zr&@Dg z>J&ek7w?0L;cYBFcts-bfBxix8Tq9Z(_t_VXL3PPxmj(>+4W4% zF0N=^ZZ0o3uz99X@v(*Qrye4H*R7k9n;WUSVk!i~=a)E-RrALNmWTbJcu36+aXD4%*5wvvL-o0{ zXIB7Sm1LJhsWr$8_ib5tdRZaRG^AOY-i*OQykNhU1&fRFN-J{83xGWG3Zm`T^O8N= zDcPK@SMx%H+9_o7MMY^zZu8=6+v#TMtb)mHR^xbHaBRzZ%S-bsAj4BRu+Pl=iqc%* z_cBABn^p>3=`fcXD~)TX%bc^^NKsq*4GNx8K)TV8oG%5j=WF3 zH6GY(oMxQPvos&R*kO}38~>-a^A1aEY5TPpNwa|^7O*9D6vc`qDi*K{F^Ro*1(m2V zHUbJki73G+VhaR?VDDIxsOj11z4x8IQ+Kkn)4yd*c73n+JLg>2`A2ZdnwhnRncp)r z>$z(o?7t~42nVw5?*ZE(fR8P)>RCvW>KRBggb!)?rh|aKH*;h-#w!LM*?-S~ODtF$W*pFoYhe~PT5$^)T0|c-M-uy)k zL3$y5i+)pmOjG!crtp>q@>|eAp^tSdQC{CQ5M&rKHZNxZ4YZ(uc0$I1H<%UPQ9sV# zBFMrm`mb2B^p>> z2)RN717|tn09R`BGUEs30`kx2`=i}AA&=!&bVF`IZbR-s?n3TCeumtKJb*leJfeZY zH1J{?cnJ->lm=c#123n66=`548d#YIR_TU3fjkA?!Zd+AhrEEiguH^h239S=sx&YJ zSfxPFz)%`kjRsbyfi-AgO&};ds_>g%4M0BtE-@FrFQCcr#H7OXybYx2tO7q`Rz?;; zP6FJb|20KGK?LAK1#rOuC_Bg>m-z-l$^~!(f4kZb$qJA?7E=CIzx)xnP%<`<nB7 z$QOStY+knk_G0S4D*+g6fV=ZTAVNJWe;&40kVPs2DxbFj<%o0yWbi*i|5J!Z>c+y< zZ$vihf24MGvd8#1_+k94(av_x)(+0Tj@B3#tb?_kqqmQ@kFAT3kBig#O=zbCCx`V5 zu(#-i50sr1>ihGAE`cfm_7rp}bQyFx6nI=(G_W=etV09qc0!e*Do|A@ga(Guz;GJC z%msgAAI*E9|2x6qJFZ9jUlHHuU0|aAS5#PjAuuBY56JdkQQzSaKy-K!i3HdO3%xQt zEn{9V7OeZGt^^UI@PQySQe8kizy zXd*9X_>JfUbzS^247%w3KS@r@|6fT?XO=EoyCE;HkO~@r=qM_wYryr)%#i?BXQi7b zZXRMoShqepZUHZJZUOfM0BgRt%Q$7;um;#Kn8LyhS;<9(X$4eysy1~|RCrNJN?KZK zTIxAXV3S)1_8%BMLT##oP#2&bsRM`2XN1@dafS9zHss)S{$ZsMnyaezbMOqgye^qaQMte@h!V+O+4TznE zlK#BbAAME#pD}-F(h4K)1R+6= zpfC^-lnW{V6@kh@R8S>|4%z}@foef@AP$HN+66iWdH{L~dIov{dIkC&^bzzKpb^Q- zE66XFUn*}Z?4pXUmi1H_DgEv*hdKo8))N_sP%7?+0i_*W~ZY-14fO@IA~5!OLcO4?px#iQZzG@u4QvSvf;2EN z^;(I+{-91M4hsAQmQa8V;(8j`ng+J{v4*npzmH$@od#GH`tOMVyb+Md?0--64XXCP zrd*pfFIE8j+F2+;P8GTa8a_XG6at~ZDi^-_>8Siw8W{Nvx&&PZT@Q4Z`3mfWu9F*z zUz?YjRALB7S(JmTBYI)}m?vz@L4k4U$6LnGIA{W}ggPH4geKC!cHfT}KvMu?;#*2! zu>vqIpc&tssxEv7d|z}!a~Ab1i-G3KzlG*2EK|6-=-ZmQBG<|JPpRzG=39dOiDd)fjNi1?czx#fKY|^1XNf z&|3O~u9KB)osyT52TW!~DVf&5a`^lTwyVv&Syo^}N=mW$VFv+D?0~U8(|W!j>u-jF z^+L!$Yc*es0vqpnPiMsZ4SCr%^C-T*VqyMrL#n>l$Tb0y_y4;_-+jdSq!Ee8O_cC#MsX z3zVtKO~7GJ;7F$OLFMbpH0IH_f%;-x|Y&Xx#OMpW*of>aHF{l`RAit1L?W?)aH4cJc+sP0tlR2>2~ z7sgb9{RGu%)jg^+s<%|%L)3v~#MO{UNE9R;LWUGTiXg?15=a?j3#1yt0_@j1z+~k@ zx*=zwi=k%F5a{~(9}_eQngUIORzN$TL(nPcLFh^7HRxUFBj_vW2k2+$S2d8Du9~%) zyV_c{47DmXh8k0?Ms2GaTdiJgzuIxN3u>3tuBcs8yPXQKgl~jzf|tU};S@L(UJ0kex4^66EVu~X1((33@E&*{d;mTK zAAyg-W$;P(G<*;I4E!UR`bqlP`b7O){e1lm`i1&z{a*bE{S*54 z^`96lGEg?qGB7f*GH^Co_*H}EjT zHo0nY-Q=dpZIfpvFHByU{A%*n9Fav>2A}#riV?BnEqsX z$MlKmJJS!QpG?1+fy@?}nVH#|d75F&e9ZjJaApB!L1rOlVP@54{bqN}VdiVhIp)*m z2h7iypEti~e#QKn`3>`r7E3LZEmSR_7Aq{YEp#p577iBcEmAB>Ey^t@7F3H$3%bP? zi)ss&MXg1h1;;{SA+_kS=(8BG7_u0#7`K?Tn6}t!F=w&g;(?{QrHQ4jWw>RIDt!u68t-02X);#ML z>vn5_wa9w6^;2XTtq)rtwf=}yK&m34NOhzpQVXergdxq5mPjik5{W~uMXpCi zBBPN+WC^kiS%KV)WFVQy?Z_r%GqMHQhnzz0M(#zw-MV6*^JuAY;M~;ws~vw!FI8&x-HDs%+|uz$`)zsY`fal+cwX(+?HWmZM)UB z&UTw^i*38Dz*b}{w%uiW!1l837nByt5VZrcpnkPM}Vs&Y>=%uAr`?ZlZ3ZUZXzS8QXc-1=^+B728qm z76uf5EE z%6^aito?rbL-t4P&)MI!e{BB-AQ0gkk{q%fXbxK(+8y>f%sCuzIOK5D;kd&ohqDeB z9G*M8a(LtL&f&eoM~Bajiyc)R)f_b)wH;xOdXAQk){ZugD8~@TXva9mM8{;uT*rLJ z3dhZkG{-7Oj$?ykqa)9;+fn8?<+#Uj#>vvj*~!Jp-O1BwofE^U!D-Y<<}~HB+iAvW zpVL97BTmPhes+53^u+0z(+j6pPH&t(JIgsQat1rAIcqv=IqNuEIXgOgJNr5NI|n-R zoyE?(oO_)6osXd9(VA#mGy%O99f6KU$DtF^Dd==`7P=D6Kv$!;qS@$r^fq)0T7(v( zrRZMt0D1_$7d?mGk3NXLg#H=*0R0I41pN;E9{myh*=4zlvWuz<)Wz5Z<>KJt?Be3G z-9_jkauK^oT`s!ZbNR*Ph0AM~w=TcCf?OB5E_Pk!s^qHTYUvv6n&?{My2Z8LmFwE* z+U(lu+UY8BmAdx24!91v9&x?p`rb{+O~*~w4d$ljX6c4-vvNbaIlK9~g}beHi*k!~ zOK?keOLNO~D|Rb&t8k;bRk>|(t8v@v#&+A`*6nu2?Wx;4cc{CuyS2Nk`)YSDcOQ4G zdw_eed#HPid%Sy+`;_}(_n+KPtTtI~x7u+vdNpTt`)a{z(dthg%RH1kR6R01iaa)X zlzE)@xZ&}{DfX0l?(;n8 zdBpRW=LyeKo@YF-dfxMV;Q83|7ta@-uROnafxH%ZfxXncG`+OFbiK^HEW8k2)?Th& ztGztEFkWlDlDtyAGQ6_9&UxMTy6bh{>yg(-3>;&CS&1>mm|-k2))-riJti0vhFODI zhl#*MVPY_;7!oEQQ-IlsDZ!LssxezJY)m~ygc-yPV@5IKnEjZ8n8TQ(n2VSzm}{6D zn3tH(-g4fHyused-g(|+??Ufl?`H2-?+$OFcc-_+yW6|Zd(iu+_i^u2-eyxuS>glpG54|bvGPIsxcPYacmeBk>wJ=Z(tI*~vVG=! zPWqhoIp=fH=bq2+J|BI)_=0>De3$qx_f__V_^SJ^@J09{eQka1d>wq9eO-OseLZ|J zzCONwzRA8c-!9+7zEAz2evZHvW`Q5akMGy!x5H29*X=jrH|{s#H|@8_Z^m!V@1)-u zzw>^V{I2?4_j`|Bj8(*{V4>I*SRE`3tB1A1qOopRUn~K;9vg*?#U^1>u<6)LY%aC} zy9HZ=t;N=1dDvm>7SNKf`~k zf1m#u|91f^0$c;40xAP`1ndgv3Fr?P444eq7jQ7(NWigxlL4m#&IX(hxD)Vmz{7wi z0nY+n1S$pU1nLJG1sVrh1R?^FfwqC3f!={Zfsui6fr)`Bfti8Xfuz8^KuRDrkR7-^ zkQdkz*dEv!C<*Ki>rPgN%ZVgDirqf^33NLC!&b zK}kWmLB&C(K@~yNpsJwSp!y(gP-9SYP)m>?ND?$0v^VHP(7WJO!T!O7;KbmpU|R5& z;Ev$I;G@CEgHHvY4L%=yG5B)uo#5xeuY%tMzYG2l{5eD}L_S0{L@h)!L@Pum#5BYr z1QB8#;vEtevLeF>kT^<_9*Oa*zaKBUxVl2JMl97 zEdD6|BK`*cHvS&|0sa~OCH^)3E&d$=L|9JHBIpwI2!@1J1QUV_!JB|11QJ3BVT4#h z3L%}4MIaIi2pb8T2xWu{0+YZYv=cfB5<)kjk1$G*5he+{33~~r30DZu3GWDBBi2Vm zMI=Y$M-)d;BDO|!Ls5q%MZ5hD@f5t9+eBThz~i8vo|DdK9xjfmS3_aYud zJc{@l36Hdh^olHqWJKZ}8l@Jc8KoTsi_(uW ziZYHejlxHriS3T1BH z6&Dy65f>kq6qg#85tkcBjw_5Sjw^|)j%$tE9d|J9NZhfw6LDALZpGb=yC3%??pfT+ zxYzM2@vwN~c(ZuRc_N=Cm<5M6T%YW6Os~A6EYIA6G#d92?Yt235yo!6Hzao?_au)ePbTk9o=M)9d@%WR z^10-T$ybuEC*MlGld?R;G{rR~F{LDBOA0%MlhTmVl+vCeND-xoQ+B1uQZA=FO?i{@ zIaMxoQ7Sl9EmbR3H&rinWvWT4d8%cqZK_9VbZSOweriGL#?+G3@>E7@b?VmCy3}o{ z4XON8L26H`EcH<8%QSczCM_^6Bn_XoCM_;4J1sA5Lt0TuGqY>5yR%PZU(CLe zeLeeT_M_}q*>AGnWxvmn&smfM&VlDxv?baTorq|n8_|R4 zMNB5<5jPS`h~>o1#4W@cVlA1B%UVzLVQn> zCxJ;zNs1&Dk`_sqq(?F&ts_~1T4-$stOTv-xq;S$YQY0yc6h|r~)sb3BZKQV6 z4pJ|vkJL{ZB<&#`C!HdlC0!t0CS4=lB;6ssB>hVIjr5-MiS#vBK35@kajt4EJl7z1 zWv)rCc`hOsnQNQ7I@c@LC$}wEn%kQ@khdgHBTp+&H*Z7U=Df;0M&8Z5r+LrwUgZbo zN90H6$K{Xb&*UG^Kaqbj|8)KpGMKDFhLSbNE67Gr`Ig3mr z=aDy%i^!YEWn>DOM(!j_$lc^V@*sJHJWie@?54x*jq4HaG(%X=uzlZ z=u?O-q!zLZ>kGMsjfIa2-xj_r{80G0h*Q*Fw4-QeQCHE8q9;Ya6ul^Vy>Z>fCbzbXE$`1j%u#h*9HZIa()u*qXn@+SJGU7JpBdRn4df-H$B*;ul2&Gd(*31}N{^NvD}7k{ zru1`}T-la6$a%j0mxmLMuxn8+lxnsF=xl6fQxkovs+_xNC9#9@s9#WoNUQ^yz zeyaS}3Z0786|og%70ngGip~m2g|uS0V!C2)#azXKio+F0D~?s1sJL2jqvCeOy^04F zk0@Y@8bynuOVOjOq?l05DV7u$iaW)Rf~ELV2$XnA3MHMAMaiX*DTS1c6b6M$ky3go z1C(LP7-fPoP1#GCqa2_dru;;?L;0EVfbxj)gz}8?lJc7JhVmQbJ>?VS%VyYS*Uj;p zshc}D|FrobRgr2*4WO=}uA@d$qp2xWA~lb?fm%e}L@lM3Q)_^O$n{h%wUNrBj#B5S zhp0!X$Ejzi=c$*dSE!GuPpNNcAlg!zB29$`rD@Y(G<}*8Z57Rm=14=++-R$5fwVB% z8rnKqG%b#nNK2+sXj^I9X*^mBt(_*INol>b0opKaj3%QUpdFRiCTA(&2OqI+Bi}JJ4O|?sQK&hK{F)(-Y|#^lUnbo=-2Pm(nZfRC*n3>StQBajinATsh88yH25O^h-Ig+XJ`8B7L?v4gRb(a8`qb}@Pw{ft4zFk_4% zV@xtGGTv^{+2Xb(VGCo6bjy(~519%~WhR8F&eUY;GtHQmOlzhs)1K+bbY{9R-I)H& zAZ93&z+B5*&n#e4nG9w%b1Rd>fq|E>gwv=>XX&4 zYqV?JYhr3jYj`z+8c~h7W>?Kn%~Z{vnwgq?H3w=A)f}n0P;_mKV#L6~v5?INsG*$*{Bddzl!fIy;SR$5~C1v%p z23W(aG1dfYnst_Sfpv*>g>{W}lXZu6k9D8*koAQ1jP+ux(pJRQu&v~+ja#R;Uf%kt z7FO$8>r;!Z4X6#OU0WMhn^>Dtn_in)n_Ww+&8;n~rPR`D>9x$-np$z~NbN-JbnV{S z{k4Z`kJcWmy;^&t_DSul+BdcDYCo_+Yz6ib_HwooTa&HNHewsIP1*KrG~12s!S-Qe z*#Ybzb_TnUUBRZZtJquEHEb@sk=@L0Wp}Uz>^}A|dyGB7-ou_{?`I!mpJ(4;|HgjL z{>1)TCtnAyTUw`Br&0&4)2Oqkv#LYZ+1A$I z&wM)1GypGFfM@`&rRZ{ax=KuTq3uI+r(| z->A^IxN&LY@f-$p{?`o^fn*v6#Bl*aVN%*Nuz(#EPrP9v|e zrLnzH&?sr_ZtQCuY#eT!Ydqihw((07s7aw|ag%zJb`z{gziCyIX_G}0q6ycuwkfVD zu_>h~y(z0{LsL=HrlztcN)xrIzG<@QK5scsooC21;hFOgJX@X}&ynZM!}7v;nYw3 zi(kuc<+t;@`2+l6{uqCXzlT4|-^V}0zsY~g|DFGl|D^@gqR_IWWqFHo3#3K8Wkrj1 zi*1Wti$jZ3i%W}pi$@El#is?^63`OVlG(y+>1jF9@~Ty<)uA=AwYasZb*A-5>#^38 zt*2YBwBBvK-}9&1s2iuOc9cw$$cD?O$JEUEw zePz2zyLr21yK}pHyJx$1JFY#jJ)}LXJ*RzBJFT7G&TMD3v)h~6`R#4(JKA@)ceanT z-{@G@f$VVWSktktBeEl=BfcZ4Bef%=BfEptk>63!!Rlal)OT#_Xy|C_;CHljbaV(h zL>*lnl8yr%_jWAVVX-4*N5Kx>j`1BAcD&y4amN<{NU%ttB+wLS33LQ7fu6uXU?s2- z*a;j3Xo0IBLXaxR5)cJ>fxa3x))v0-0b^uupJMa76Hv z;F93F;FjR7;Gy7&;F;isP*JEYG!hyM&4iXhYoU|SMd&W{6nYDNg(1RdVS+GOm?q2? z5`}p}vXCld3wH{;gu8@2!hYe9a8xK0P6_u2XN4DpmxWh_*M&EQcZ5F+9|#`_p9-G| zU+h%ciP#yolf1KW=k(57JHLqZM6Mzq5mpo+3KFdq#fcI{$)Yq-hA2z4QB)!-7i|_* zis&Mts9!W98W&B9_KN022SkTN7eseO4@FNz&qS|9Z$-b0K6EbYT+wOWY1?Vv>D1}c z>E7wt>D}qq>E9XD8QPiFnc11$N$kw+BzG2eZtN`SEbF9n(mJa;1)VdU_qxDc7F}Uo z#4b+PK-bBxOI=sHZgk!1derr*>rL0Yt`A+GyS|E*#HwO7v8GsCtSfdF`-%g^!QwFS zT5*IpS{y6R5pNQ27FUWH;%afdm@94+H;Y@uB5|*HKs+oS70-zeiI0kpi_eJ9i!X_< zh~G-&C5jRi2~?sX(UKTSR!K}H77{B7QsO4@lK4olk|0T_gdho*BunxnbO}?!lCUKl zNrR+G!k4s3c1U(gWRfY#ZpmKBtYp9BkmQKuC&>xPDajeh^IgijP`ko+74K@_HMi^b zuCG$K)I@47MM$lsPEt>)x71JSFAb80NW-MD(gbO;G)k-(wovd(tFa^(y!g}-Qez}-HP4H-MZcIZiDWX-NoJX?#Axs z?$+*(Zee$4x1_tfyRUn1_gwdZ?!(e6V)y0l*WF)wpgmSSu00_=2|c8q zjXlLZB|VirRXvQJuAcs$>7Ly^dwOPij`y7EIoorg=Tgs=o~OObdRO#n^=kL(_L}ut z_1g5>^*Z;u_O9;r><#V>?IrZC?QQPu>h13x>K*Ns^-lHf?>*FewD)-Lsopbva(y;^ z34PUloqc_MgMA}?V||DEPWPSbyV!T7?|R?;zSn*4`#$x3?U(Og*00pB+OO8H(GTli z*^lc_=`ZT1^waw3{agAQ`UU->esRCFzqfy&f4G09e_#K>{=@x8`;YaX=s(r}b^tnn z9*7^H42TAL2ks3#7aQUF}AY@Q|aK)g`AbikZ zaOI%Mp!pzT5IKk%v>$XI^cajBOd3oX+&ox4$Ql$64h#+rULL$NcyDOgklK*OkjD^i zC}4;@R60~X)G;I(k`A31x;S)s=+iKGc*(Hwu=TLbaPaWD;fUeF;fmqS!@}Y2;ojlH z!>5PO4!<9fA5j=F8?ha+8wnqY9f==djWmojj>tx4NA``}9(g?SbaeTs`l#lp%_w@* zbu@l7V>D}&Im#L3j-DF5JbG>P=IHIw$D>cjG{^MEJjVRS(#Fchs>f=^SYx$g{IQm? z*0J`n?lIZe)YzV}*|Gg&hsKVMT^zeIc75#D*xj-FV~@t3jHAbs$7{xi$EU~lj?azn zA3r~SY5eN=jq%&#kH>!-|2Y0d29hn7Et4tAlx2o8Ynh$QQHGYSmU+p1WPY+#*%n#7 zj3eX9nq*ShxJ)LSkWI-B%Z|v7%8tn{%dW_-%C5^E%YKo)kiC|@mA#t)PiRk=Ot?<0 zp75IRnZQm2OaxDaO{|$%HxW5On#i9hm?)Yko+zEDn4nHnO>CK{o?uOEpXiwwpExyf zcjEn|%H*m^x5>4W*^}jyb(5ziFHYW=d^GuX^2-!xN?~fr)bc6ysTET?Q}8K+DWfUZ zsdZENQ=%#9)ZoeIBzbolh< z>FR0LG;g|NS~%S~Et&409-1DVmQ7Di&rTnmIW%*0=Hkq~nFlkEXMUM^G4p!n?X3JP zcy`I`@>%6s)miAQ`Yd`jZk9PaG&?oBZ}!;i$=OS@H)rq7zMlO!`(;jUPJT{xPHj$O zPHRqg4nAixXFg{+XEo Bool { FirebaseApp.configure() - let db = Firestore.firestore() + IQKeyboardManager.shared.enable = true + IQKeyboardManager.shared.enableAutoToolbar = false + IQKeyboardManager.shared.shouldResignOnTouchOutside = true print(db) + + return true } diff --git a/Flash Chat iOS13/Controllers/LoginViewController.swift b/Flash Chat iOS13/Controllers/LoginViewController.swift index ebecd3a27..2891d65c9 100644 --- a/Flash Chat iOS13/Controllers/LoginViewController.swift +++ b/Flash Chat iOS13/Controllers/LoginViewController.swift @@ -12,6 +12,12 @@ import FirebaseCore class LoginViewController: UIViewController { + @IBAction func accountSwith(_ sender: UISegmentedControl) { + emailTextfield.text = "2@23g.com" + passwordTextfield.text = "werwer123" + print(sender) + } + @IBOutlet weak var emailTextfield: UITextField! @IBOutlet weak var passwordTextfield: UITextField! diff --git a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard index dc56d978c..263a94496 100644 --- a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard +++ b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard @@ -248,6 +248,17 @@ + + + + + + + + + + + diff --git a/Flash Chat iOS13/Views/MessageCell.xib b/Flash Chat iOS13/Views/MessageCell.xib index 9a037ec57..4eb243f83 100644 --- a/Flash Chat iOS13/Views/MessageCell.xib +++ b/Flash Chat iOS13/Views/MessageCell.xib @@ -11,7 +11,7 @@ - + diff --git a/Podfile b/Podfile index 48e24ec01..6740a3165 100644 --- a/Podfile +++ b/Podfile @@ -6,4 +6,5 @@ target 'Flash Chat iOS13' do pod 'CLTypingLabel', '~> 0.4.0' pod 'FirebaseAuth' pod 'FirebaseFirestore' + pod 'IQKeyboardManagerSwift', '6.3.0' end diff --git a/Podfile.lock b/Podfile.lock index abd209387..a9e4b7c4e 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -603,24 +603,24 @@ PODS: - BoringSSL-GRPC/Interface (= 0.0.24) - BoringSSL-GRPC/Interface (0.0.24) - CLTypingLabel (0.4.0) - - FirebaseAuth (9.1.0): + - FirebaseAuth (9.4.0): - FirebaseCore (~> 9.0) - GoogleUtilities/AppDelegateSwizzler (~> 7.7) - GoogleUtilities/Environment (~> 7.7) - GTMSessionFetcher/Core (< 3.0, >= 1.7) - - FirebaseCore (9.1.0): + - FirebaseCore (9.4.0): - FirebaseCoreDiagnostics (~> 9.0) - FirebaseCoreInternal (~> 9.0) - GoogleUtilities/Environment (~> 7.7) - GoogleUtilities/Logger (~> 7.7) - - FirebaseCoreDiagnostics (9.1.0): + - FirebaseCoreDiagnostics (9.4.0): - GoogleDataTransport (< 10.0.0, >= 9.1.4) - GoogleUtilities/Environment (~> 7.7) - GoogleUtilities/Logger (~> 7.7) - nanopb (< 2.30910.0, >= 2.30908.0) - - FirebaseCoreInternal (9.1.0): + - FirebaseCoreInternal (9.4.0): - "GoogleUtilities/NSData+zlib (~> 7.7)" - - FirebaseFirestore (9.1.0): + - FirebaseFirestore (9.4.0): - abseil/algorithm (~> 1.20211102.0) - abseil/base (~> 1.20211102.0) - abseil/container/flat_hash_map (~> 1.20211102.0) @@ -633,7 +633,7 @@ PODS: - "gRPC-C++ (~> 1.44.0)" - leveldb-library (~> 1.22) - nanopb (< 2.30910.0, >= 2.30908.0) - - GoogleDataTransport (9.1.4): + - GoogleDataTransport (9.2.0): - GoogleUtilities/Environment (~> 7.7) - nanopb (< 2.30910.0, >= 2.30908.0) - PromisesObjC (< 3.0, >= 1.2) @@ -704,6 +704,7 @@ PODS: - Libuv-gRPC (= 0.0.10) - gRPC-Core/Interface (1.44.0) - GTMSessionFetcher/Core (2.0.0) + - IQKeyboardManagerSwift (6.3.0) - leveldb-library (1.22.1) - Libuv-gRPC (0.0.10): - Libuv-gRPC/Implementation (= 0.0.10) @@ -716,12 +717,13 @@ PODS: - nanopb/encode (= 2.30909.0) - nanopb/decode (2.30909.0) - nanopb/encode (2.30909.0) - - PromisesObjC (2.1.0) + - PromisesObjC (2.1.1) DEPENDENCIES: - CLTypingLabel (~> 0.4.0) - FirebaseAuth - FirebaseFirestore + - IQKeyboardManagerSwift (= 6.3.0) SPEC REPOS: trunk: @@ -738,6 +740,7 @@ SPEC REPOS: - "gRPC-C++" - gRPC-Core - GTMSessionFetcher + - IQKeyboardManagerSwift - leveldb-library - Libuv-gRPC - nanopb @@ -747,21 +750,22 @@ SPEC CHECKSUMS: abseil: ebe5b5529fb05d93a8bdb7951607be08b7fa71bc BoringSSL-GRPC: 3175b25143e648463a56daeaaa499c6cb86dad33 CLTypingLabel: 95a7d1faf7e3d1d952cd11cb0491d17d80c50934 - FirebaseAuth: 77247e07732ec5cdb20cc58ef40ad84d2fcce847 - FirebaseCore: b7bfc258e996eada23b3666bd6b9a22ca092acb8 - FirebaseCoreDiagnostics: 2dabba3412b23b524823325739f45e520f67d1e7 - FirebaseCoreInternal: f3c838ae0b41cd840bbf34f90debfede78d352e5 - FirebaseFirestore: 20b1df7d65058b038745ecebb60f741a10e40a6f - GoogleDataTransport: 5fffe35792f8b96ec8d6775f5eccd83c998d5a3b + FirebaseAuth: ae5d4402e1516497357d909162b091b3ca2a2e9c + FirebaseCore: 9a2b10270a854731c4d4d8a97d0aa8380ec3458d + FirebaseCoreDiagnostics: aaa87098082c4d4bdd1a9557b1186d18ca85ce8c + FirebaseCoreInternal: a13302b0088fbf5f38b79b6ece49c2af7d3e05d6 + FirebaseFirestore: 945196dd78f4e92de6fc47b38569a1e7088af81f + GoogleDataTransport: 1c8145da7117bd68bbbed00cf304edb6a24de00f GoogleUtilities: e0913149f6b0625b553d70dae12b49fc62914fd1 "gRPC-C++": 9675f953ace2b3de7c506039d77be1f2e77a8db2 gRPC-Core: 943e491cb0d45598b0b0eb9e910c88080369290b GTMSessionFetcher: 681175626052e03fdde7952f7e9c7a9785719506 + IQKeyboardManagerSwift: a8228c257614af98743b4cd8584637025f36358f leveldb-library: 50c7b45cbd7bf543c81a468fe557a16ae3db8729 Libuv-gRPC: 55e51798e14ef436ad9bc45d12d43b77b49df378 nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431 - PromisesObjC: 99b6f43f9e1044bd87a95a60beff28c2c44ddb72 + PromisesObjC: ab77feca74fa2823e7af4249b8326368e61014cb -PODFILE CHECKSUM: 9ffb4dad6dd89ddb327e426270ccd5042b9b6c10 +PODFILE CHECKSUM: 7ce4e818cc1a1e4904d5c015b4f9093bf9c9e9e4 COCOAPODS: 1.11.3 diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index abd209387..a9e4b7c4e 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -603,24 +603,24 @@ PODS: - BoringSSL-GRPC/Interface (= 0.0.24) - BoringSSL-GRPC/Interface (0.0.24) - CLTypingLabel (0.4.0) - - FirebaseAuth (9.1.0): + - FirebaseAuth (9.4.0): - FirebaseCore (~> 9.0) - GoogleUtilities/AppDelegateSwizzler (~> 7.7) - GoogleUtilities/Environment (~> 7.7) - GTMSessionFetcher/Core (< 3.0, >= 1.7) - - FirebaseCore (9.1.0): + - FirebaseCore (9.4.0): - FirebaseCoreDiagnostics (~> 9.0) - FirebaseCoreInternal (~> 9.0) - GoogleUtilities/Environment (~> 7.7) - GoogleUtilities/Logger (~> 7.7) - - FirebaseCoreDiagnostics (9.1.0): + - FirebaseCoreDiagnostics (9.4.0): - GoogleDataTransport (< 10.0.0, >= 9.1.4) - GoogleUtilities/Environment (~> 7.7) - GoogleUtilities/Logger (~> 7.7) - nanopb (< 2.30910.0, >= 2.30908.0) - - FirebaseCoreInternal (9.1.0): + - FirebaseCoreInternal (9.4.0): - "GoogleUtilities/NSData+zlib (~> 7.7)" - - FirebaseFirestore (9.1.0): + - FirebaseFirestore (9.4.0): - abseil/algorithm (~> 1.20211102.0) - abseil/base (~> 1.20211102.0) - abseil/container/flat_hash_map (~> 1.20211102.0) @@ -633,7 +633,7 @@ PODS: - "gRPC-C++ (~> 1.44.0)" - leveldb-library (~> 1.22) - nanopb (< 2.30910.0, >= 2.30908.0) - - GoogleDataTransport (9.1.4): + - GoogleDataTransport (9.2.0): - GoogleUtilities/Environment (~> 7.7) - nanopb (< 2.30910.0, >= 2.30908.0) - PromisesObjC (< 3.0, >= 1.2) @@ -704,6 +704,7 @@ PODS: - Libuv-gRPC (= 0.0.10) - gRPC-Core/Interface (1.44.0) - GTMSessionFetcher/Core (2.0.0) + - IQKeyboardManagerSwift (6.3.0) - leveldb-library (1.22.1) - Libuv-gRPC (0.0.10): - Libuv-gRPC/Implementation (= 0.0.10) @@ -716,12 +717,13 @@ PODS: - nanopb/encode (= 2.30909.0) - nanopb/decode (2.30909.0) - nanopb/encode (2.30909.0) - - PromisesObjC (2.1.0) + - PromisesObjC (2.1.1) DEPENDENCIES: - CLTypingLabel (~> 0.4.0) - FirebaseAuth - FirebaseFirestore + - IQKeyboardManagerSwift (= 6.3.0) SPEC REPOS: trunk: @@ -738,6 +740,7 @@ SPEC REPOS: - "gRPC-C++" - gRPC-Core - GTMSessionFetcher + - IQKeyboardManagerSwift - leveldb-library - Libuv-gRPC - nanopb @@ -747,21 +750,22 @@ SPEC CHECKSUMS: abseil: ebe5b5529fb05d93a8bdb7951607be08b7fa71bc BoringSSL-GRPC: 3175b25143e648463a56daeaaa499c6cb86dad33 CLTypingLabel: 95a7d1faf7e3d1d952cd11cb0491d17d80c50934 - FirebaseAuth: 77247e07732ec5cdb20cc58ef40ad84d2fcce847 - FirebaseCore: b7bfc258e996eada23b3666bd6b9a22ca092acb8 - FirebaseCoreDiagnostics: 2dabba3412b23b524823325739f45e520f67d1e7 - FirebaseCoreInternal: f3c838ae0b41cd840bbf34f90debfede78d352e5 - FirebaseFirestore: 20b1df7d65058b038745ecebb60f741a10e40a6f - GoogleDataTransport: 5fffe35792f8b96ec8d6775f5eccd83c998d5a3b + FirebaseAuth: ae5d4402e1516497357d909162b091b3ca2a2e9c + FirebaseCore: 9a2b10270a854731c4d4d8a97d0aa8380ec3458d + FirebaseCoreDiagnostics: aaa87098082c4d4bdd1a9557b1186d18ca85ce8c + FirebaseCoreInternal: a13302b0088fbf5f38b79b6ece49c2af7d3e05d6 + FirebaseFirestore: 945196dd78f4e92de6fc47b38569a1e7088af81f + GoogleDataTransport: 1c8145da7117bd68bbbed00cf304edb6a24de00f GoogleUtilities: e0913149f6b0625b553d70dae12b49fc62914fd1 "gRPC-C++": 9675f953ace2b3de7c506039d77be1f2e77a8db2 gRPC-Core: 943e491cb0d45598b0b0eb9e910c88080369290b GTMSessionFetcher: 681175626052e03fdde7952f7e9c7a9785719506 + IQKeyboardManagerSwift: a8228c257614af98743b4cd8584637025f36358f leveldb-library: 50c7b45cbd7bf543c81a468fe557a16ae3db8729 Libuv-gRPC: 55e51798e14ef436ad9bc45d12d43b77b49df378 nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431 - PromisesObjC: 99b6f43f9e1044bd87a95a60beff28c2c44ddb72 + PromisesObjC: ab77feca74fa2823e7af4249b8326368e61014cb -PODFILE CHECKSUM: 9ffb4dad6dd89ddb327e426270ccd5042b9b6c10 +PODFILE CHECKSUM: 7ce4e818cc1a1e4904d5c015b4f9093bf9c9e9e4 COCOAPODS: 1.11.3 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 7ec83a246..0321daa14 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -7,6656 +7,6667 @@ objects = { /* Begin PBXBuildFile section */ - 0004D6E729B6F6BB23A1FC6D57998827 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B73A52E907D3A6B150B21444BBDF190 /* descriptor.upb.h */; }; - 002E779779346CAF8C94517B0AD147CE /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = A55767199B2674BA39980F45AB17A379 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 003D2A27B2D79F87B26E81C1D9B814E1 /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = C88EA6C7101BBD747B97A0B7481DAC4A /* deprecation.upb.h */; }; - 0040B411757701E31361795C677DFCF0 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 008B402552EA81359C03A2F1A123C46A /* fault.upbdefs.h */; }; - 0046A22CACA3F3FA4D98946C9D86644C /* int128.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B0867D9044F28DE7A8D0F3752F15364 /* int128.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 00783C0E657F9CB87D88356B3B1FD113 /* resize_uninitialized.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F67364A0B636B3915967F77B4404605B /* resize_uninitialized.h */; }; - 007CDDFB32A8785EF498CF669A81ED9A /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73925BBE3792C59A94A629CF7E49A834 /* timer_manager.h */; }; - 007D479DC405A14BBC2CCC302CBDE09A /* v3_pcia.c in Sources */ = {isa = PBXBuildFile; fileRef = E5327910D0BDF08F4B39E825521C1512 /* v3_pcia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 007E11C58329AA19E8E06977FD9C4DF0 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C32B7A8822FC8375E6AF4ACD507022B /* idle_filter_state.h */; }; - 007FA9DC910BD26935A58992B4E62C1B /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E2490F9EFDCD38D0882590687B9960EA /* xds.h */; }; - 007FDFA2AEC04CB4CAEFABC4848E949E /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF67AD7C6FBE64CCC3B527BC1ACC9CC /* seq.h */; }; - 008AF439874C941D6E17F92ED5F2046C /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8629F5CB910A9307E786B85BF9539263 /* percent.upbdefs.h */; }; - 0091F107396449DE7B03257928038EF5 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = A32A614EDB59E1810E5D358C3DE001C3 /* sync_custom.h */; }; - 00A277B1A1CE40312B6B81C78815FA85 /* builtins.cc in Sources */ = {isa = PBXBuildFile; fileRef = 475BED9E80993D7BB3C1F31E3FF57207 /* builtins.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 00A30F09F7319AB4083BD89EB43D6A04 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1B7E7C9CAE9C3D76E36D07FA5850A9 /* udp_listener_config.upbdefs.h */; }; - 00A3707FA7C87CC67F93EBF6D18A16EB /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E2687499390ECE5053BC5731A5DE7131 /* slice_internal.h */; }; - 00AE4D7FE385E77D0090B0DCA68F717B /* x_name.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D472872B5C24DFD93CCA5D8229AE8EA /* x_name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 00B20E557FB4C8C5FC0BDBAC1E09668F /* cpu-arm.c in Sources */ = {isa = PBXBuildFile; fileRef = B68DAC0B178D1225D56403D595003F83 /* cpu-arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 00BAF681F541DBF93EB784DFF64FDAFB /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3D27ED8FAF5D29E321B635DC5CCEA8C7 /* retry_throttle.h */; }; - 00CAD21F81DAD6BDF4800CCEEAAD5A86 /* poly1305.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E840D06A13004DA5F9D2848A1199EA15 /* poly1305.h */; }; - 00CCD8E464CB6DF25EC835C4FC140B53 /* method_handler_impl.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2F261C77E4E04DE5A3675B7EAD8EA528 /* method_handler_impl.h */; }; - 00DDDCE4C2E8BB0968F5C7849464D18D /* internal.h in Copy crypto/fipsmodule/des Private Headers */ = {isa = PBXBuildFile; fileRef = 93236C3E3F4C8B59F9D23B90083E88ED /* internal.h */; }; - 00DDEA9BA68C6773BBD46E7B5D6BE9CB /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 771EBCC52883059ACE8C0E47ABF3BBE0 /* resolver.upb.h */; }; - 01001B79F7CB517DFFC3024EA81CFD6C /* mpscq.cc in Sources */ = {isa = PBXBuildFile; fileRef = 07E5EF2CFF5AE29412E5C52C1C300013 /* mpscq.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0104AB885F87E833B1ECCF6597CF8AA4 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 68090B8120A1CE8ECA411D4A0029B6DC /* semantic_version.upb.h */; }; - 012A3E9900979BF62A1D3087550C0BA4 /* load_balancer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B11E5D7BB0C1C65418D24E4509F26585 /* load_balancer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 013D772A418C47A62E8B4C0A50B8FA8C /* pmbtoken.c in Sources */ = {isa = PBXBuildFile; fileRef = 9DB399ABB45D98928AE439A4EAD697EB /* pmbtoken.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0142254483E247C4764E1A9D64E2FAD8 /* ecdsa.c in Sources */ = {isa = PBXBuildFile; fileRef = BE2D74B683D68FBA5BDFFD070850F111 /* ecdsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0152024DA8A26C3208BAB4CA2C3AE44C /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7FB991C75FBD4B12C3473928DD556C8F /* stats.upbdefs.h */; }; - 0160151F244D87A5BEC84722B472BEBC /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7906A37970F74FF088FEFC41D3688768 /* lrs.upbdefs.h */; }; - 016C9913B63FF48F4BAD06AD925B78E8 /* common.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F7102986CCAAD8488D026CDA6A6B5C4 /* common.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0174DA901001CC6B09EB96C13151679C /* async_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = CFA4F84ADDE9D42E8A533CA19310F62D /* async_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 017E7CB078761AF7914E82198AC72D9B /* FIRResetPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = DB955FFBD28F186FDA952864D12C7582 /* FIRResetPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 018DD5546A554466CD4762EA1F663C31 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = FA6807FCF63A1D43B0E71A56AB378C49 /* socket_factory_posix.h */; }; - 01A2B183BF1180B29CFD22A6DC006979 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 108BB5CD4241C0B32A859E2013DB7D69 /* tcp_posix.h */; }; - 01A953CB1107011938F0172F578D0FA1 /* c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5669B37980A2C27B347C88D24A5245A6 /* c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 01BF73D1CB9F0157194C747719262EF6 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C61FE6CD94AEC48833C25BFA1E014AD5 /* FIRBundleUtil.m */; }; - 01CCC66FB0BBC30600D6C975D08A39AC /* server_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = B7564503FA87A0C717B9C8A8631A32B5 /* server_credentials.h */; }; - 01D1CFDFA71C03854D8E9978384016BA /* route_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C8C751CB698DA970855E6D515D81C9BE /* route_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 01DD34ADDB1E1C03A4A64E2A47B398B5 /* create_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB4A184445C605B0B79BD1A6B8611BF8 /* create_channel.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 01EFF5428A416EBB3F5FA8CA05AB95B7 /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = D37875305F6A495BA1F49510058F5E64 /* core_configuration.h */; }; - 01F7FE2B118FFF74DE914D5CAFCA2843 /* server_builder_plugin.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = B3A3FCB84793B382ECB528EF6C51A92C /* server_builder_plugin.h */; }; - 020281D73F69A09CCBC603DD438F2AEB /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 7BE01FC6063EB5F7F464F39C61924201 /* ssl_transport_security.h */; }; - 0213D2FDADA107F3672599CC776F8955 /* v3_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 294CD7B9276C69405498746C2F4D395E /* v3_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 022AB366C1802CAB3A25C160929DC242 /* wire_reader_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9A604D130EC6035AF7272F56B6B509 /* wire_reader_impl.h */; }; - 022C564A9AF5533825C0C57F4DE248FD /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E05770E71F657FB048D0F7D4FAC44CDD /* struct.upbdefs.h */; }; - 0231FE87233328BDB77819507E5CB9A8 /* channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8793B3EB2A5FF8636FE624671A5600C6 /* channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0235163CFE88FDCEA01F0456C0E810CE /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F0381DD468E37FB75F272704D445806 /* resolved_address.h */; }; - 024282D789305F80259125A49F308182 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 925C014D54BB986A19735A906FE4E969 /* ssl_credentials.h */; }; - 024BF2FAC16FB5721ABC1A6E41785E7E /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD40BAC0C7B4B7D167A059CD8364CDB /* FIRAuthProtoStartMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 024D778E1693734620529C6D8FB8ADB2 /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 79C3CFDF38FDFA63226560FBD6A6A8FC /* global_config_generic.h */; }; - 0251D38BB1B78DB52DDFA25DBB1767B8 /* uniform_real_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = D672F3F3F312F2306B924BEC11F7DC20 /* uniform_real_distribution.h */; }; - 025664469751718945A0F8248243D9AD /* secure_channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 285A0A08A325E8E833899F82592A8BBB /* secure_channel_create.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0263F3B8DD0C90551FF48A46DA7E5A1F /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3D49089E8EB06F2A253519BB7EB28D96 /* string.upbdefs.h */; }; - 0274658DAFE463DA51B7910F2C1D1891 /* pem.h in Headers */ = {isa = PBXBuildFile; fileRef = 06AC0FAC7618637C3953ED6E44B0C385 /* pem.h */; }; - 02798DA776B83B0CC2464CEB9C74180C /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = 4051854AD41ABC7EB6239401ABA9230A /* avl.h */; }; - 027E5F1B3B995073F568A836078FD13D /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B738AE910C8B12BD51B9DEC8D9EAAFEF /* buffer_list.h */; }; - 0283276A9D1AF44A1992A01BF8C4BF52 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 06E8C0DF14FF51DF74FF293B35FF204A /* client_callback.h */; }; - 028F790CE84E50ED9036DB64D6197DDD /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACDD6D7F925875C5D0B3F4C4C345AB3 /* grpclb_client_stats.h */; }; - 02945DCEB4003A4E54D87097266D625A /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 395811DC5AA530C99EF2FD78EC043A8C /* xds_resolver.h */; }; - 02AE8B4207C5AD02C92F7ECEE3E8D0E6 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 817A25A1858B0BC5B123C4EA1B50F85F /* protocol.upbdefs.h */; }; - 02C12F6BE9606FA735F2BF600FB6AD71 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CABD9C6B4B12971819F0BB5FE75CE838 /* overload.upbdefs.h */; }; - 02C1DDCC89B6BBEB39B075A538B4B3F1 /* interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C7629139556F5591A69225C1C4A4E5F9 /* interceptor.h */; }; - 02D1EEADE6B5AFAF41576FF7D7A513F8 /* stl_type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = D63E35D73C8758A1BFE4882CB13519CE /* stl_type_traits.h */; }; - 02DE7072E7BAB2150FFDF9D1C8218873 /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 03A7283B85028846B7E4135773D656AE /* client_load_reporting_filter.h */; }; - 02E5FADF23B9B5C3EC9E73BCD0B6A49E /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 54568FD644571921487F46147E154CF8 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02EBD35A93ED0F5790190917A22F13F4 /* GDTCORUploadBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = A48341CBEE573F9AE064E0CC037833B8 /* GDTCORUploadBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02F6C0079CC1DB2094B4D5540DA0251B /* spinlock_posix.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3CF39C684DB827D8F5843149231EDF5F /* spinlock_posix.inc */; }; - 02FE3E549A30689ADC18494B9EE21217 /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 5CF67AD7C6FBE64CCC3B527BC1ACC9CC /* seq.h */; }; - 033061AC89EF6F94E02274538956F7A6 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = A31FFB39CA5C2873483DFD64F1E75356 /* server_config_selector.h */; }; - 03530F1E7060E7EC92B1247F6FD66D60 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B5B5E212867EF230C87ECF050446B8 /* endpoint_cfstream.h */; }; - 0364DE5CED923105CC8BF9BF91F248B3 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 28F67E9DEFE42E74DEF2154F9947DB82 /* proxy_protocol.upbdefs.h */; }; - 0366036ADBCCBC0C301606EEFF1ECBC5 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = C225D98BEC5D807A2CA9653D0623D835 /* trace.h */; }; - 036DCC9DB505165E2C4CEA0BECA6F140 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = DFAEF6561E267CBD51ECA0CB30CE1C7F /* tmpfile.h */; }; - 037D152EF09C040007AEF62D84155E90 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DBCA29C23EC9E70C6CF70FBF6D445F /* ev_epoll1_linux.h */; }; - 0390B8391157197B1D243D342AD17E8C /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9302647F77DB9B0C47A2E75BA59730 /* transport_security.h */; }; - 0395B1C24D2D8C8CB6E62EADA06EF4FD /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E807A42D134D52C54CC6F2A3641297A8 /* authority.upb.h */; }; - 039F93BFC775E73A24D6A5FA26F991ED /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 13EA44A2BB6451D6C319F7A782688203 /* status.upbdefs.h */; }; - 03AD48B47C726ECBA7E15FA66843835C /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 27D3E3E005C028D8C54EF2B9AEDBD7C5 /* exec_ctx_wakeup_scheduler.h */; }; - 03B09644FAFB8D34EC40DCDF7031457B /* resource_locator.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 79F77340050550C9D5F35B7FAB1483B9 /* resource_locator.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 03CC489B61A10EB540AA560F061472AE /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9124B20595A514A26E0E3DA0D809FA75 /* quic_config.upb.h */; }; - 03D0248CB3A7BA040DB48A291EAF97FE /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FE50E931BADD624421DE40023EEA781E /* router.upbdefs.h */; }; - 03F59A11B949959E31B3E4550D338DCC /* quic_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F324F90A3E58BB250B2027A6494539D5 /* 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"; }; }; - 03FAC220EC4092866EB0A69CCC1BC2D2 /* service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED61FCFCBC151356785B88227EDE6C86 /* 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"; }; }; - 03FB75EB23C87FBFF55D3EBF9B357E5D /* v3_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 0ACCE5A9C30AC47F61D3D672E8987859 /* v3_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 03FEE7E7E5A88F96DE7593AAC1115C51 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = CCAA24BD543FAD45679BB35E20E75EF2 /* socket.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 040B94D12037EB176048273F260B335C /* exponential_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = DEAF412D0CFFB39E1BFFDB1E64048FE9 /* exponential_distribution.h */; }; - 040BAD349D66D4584D9D6686928207CD /* algorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 027585817CA4B742EB65A933E9F49051 /* algorithm.h */; }; - 040EA8A6E2A2057943767869877E5128 /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4EB1DD57F7FE82E39EAD20F2B74F0CDA /* xds_client.h */; }; - 041EF3CA60F5CC237F610FB87D862ED0 /* decode_fast.c in Sources */ = {isa = PBXBuildFile; fileRef = 01A73D0F5DB33ABBF6E4AC874879FC13 /* 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"; }; }; - 0430621FF85DC8D38006240618B3CC17 /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 60DF5A86AFCAF4C686591D657333B86D /* external_account_credentials.h */; }; - 0436450C606E999F811868C5F19E9C4F /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6EAD9546F1FA9B59F362A87BBA9D14E4 /* endpoint_components.upb.h */; }; - 043715931239F9A0C67EE1DBC4E7DEA9 /* generic_stub.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = 968DE242C1A9C9C4A61776D3BFE06487 /* generic_stub.h */; }; - 044369F335E865EBA1309CE4E9D5CDF6 /* google_c2p_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D1B18550D6F805BD7DC779F15784C34 /* 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"; }; }; - 0448FE8B6C651B9A02C1320657737C27 /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = C19801C5C5306C528B28DA52BD5E10AE /* syntax.upb.h */; }; - 0449E337E7E35E115F1D7D38CCDE71B4 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 786F175B02526C091DF5E32111D951FA /* channelz.h */; }; - 04548EC4217572E34EA4FD246A5D9BFF /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = BA765361E698A45CBC71C7A420B671DB /* ring_hash.h */; }; - 045EB1EBD97D7A7C4F6C225399ED170E /* check_gcp_environment_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B20EB3E0A60999DCDAAF55B3E053B74 /* 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"; }; }; - 04690071C3AC02149B2A882E1F975B0B /* a_utctm.c in Sources */ = {isa = PBXBuildFile; fileRef = 69251AC89D2B10C14A16B0821DB6B957 /* a_utctm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0473E0A7F68D1C5C688D92460C0B7533 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = A39434E78E6418F535A5C51C30D60571 /* auth_context.h */; }; - 04782FC1F2A1B76A73E6FE4C39656748 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CBDFA6628F937717EC9AB0E3DF6D750 /* GULHeartbeatDateStorage.m */; }; - 04925CECD5189A3E60B6FEF7EB8E144D /* traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1531EAFD9B94BF49DE0811872AE81E53 /* traits.h */; }; - 049D7C84CDE102D945659203675ABD8A /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 76D316A7E42F6ACCE9F12FD0B422FB29 /* circuit_breaker.upbdefs.h */; }; - 04B1E4C61B9C3D6B2173199E8023880A /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4176D58D7F4745AA544A4FD9812706C2 /* xds_http_rbac_filter.h */; }; - 04B8B4BE66FBAC22B67AAE24870900FA /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2B41542185814F8B2E458C30ED2F92 /* socket_windows.h */; }; - 04E035207FA956FAA0CE50925104437F /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = A0154A101698E589E1B1B631EB736812 /* jwt_credentials.h */; }; - 04FE92165CBDEA25BA2B92B0A9A7C0F6 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EFBD16C412F0BFC36EC99FC51068230 /* percent.upb.h */; }; - 0506838246CF0F302F60B3BAC3D98646 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 8B27C1DBE793B0CB0A66541CE2706306 /* struct.upbdefs.h */; }; - 05191F2D0E475A87CA0AEECD699B0207 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 28A678D600E6B93AA271B7F611DC318B /* alts_tsi_utils.h */; }; - 05289EB07AE5201FE43CB1969C2B008F /* p256_table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 55A9350584631285065A0B7A19044102 /* p256_table.h */; }; - 052C6057C535CBD1FDB602577A416223 /* fixed_array.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 0228BFD2D8F7A219960F55844927159E /* fixed_array.h */; }; - 0542315780A1E608B9283D71DF98BFAC /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 38CCC93525E024F10865F0FA8C041B7B /* activity.h */; }; - 054B43AB53BAFCF00CE930FCD5BF66E6 /* FIRGetProjectConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A01E1671B3BB46D43523807EAB98B2 /* FIRGetProjectConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 054FFDD34CD638A136A06F1A22DDB196 /* explain.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 89408EFD5BBDE9305EA1CF534689D874 /* explain.upb.h */; }; - 0562103B70C1A94351202430A00DFE32 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB1461DAD8F5C423349C319FCDCB58F /* aws_request_signer.h */; }; - 0563546F6F48912D6C11AD5DACA14638 /* tasn_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 72FF79FD68F7FA479F1A649295F18AC7 /* tasn_enc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 056709E54CA3CE8285C069DBAA649C3E /* time_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB938770B5ABB3CEA25FBA2D8B86A356 /* time_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 056CF73B5256D78F0D71A294357B619C /* prefilter_tree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 803A26BEC92C06FEA4714F80D68CD846 /* 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"; }; }; - 0574DA285B689A91E36041C8CA784A33 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = B73CD2EF881EEFFD3B2755144FCA37C8 /* url_external_account_credentials.h */; }; - 057D6D4FD1F0FBC78576A996A3EE284D /* dbformat.h in Headers */ = {isa = PBXBuildFile; fileRef = 849A1AC8CEA272691DEB327D46B88ECC /* dbformat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0585694F91981165F385F6A612E86879 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 799A6BA38BA72F02C43FA66FAC4E03C3 /* handshaker.h */; }; - 05885FC7F49CD7AA4D770EC9BB19C994 /* lb_policy_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = E65D9AB517F0E6F16A3526448CF1BF30 /* lb_policy_factory.h */; }; - 058E4827A707D27CDF09DF4B71FC582C /* snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = E83840BAED426BA06FE7371113DC90ED /* snapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05A13010DB0153D5327863CEE05809AB /* slice_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C05B927A002AB8ACAF7BF2224C480E60 /* slice_utils.h */; }; - 05B38AA5A6C7AF34F3E8D78359046A49 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A03AE8D2FB86CD4A35C49826D7782B8 /* ssl_session_cache.h */; }; - 05C44E6EF519E4C41D958FFD25F10650 /* tcp_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE149CD2442E49160ABF54AF40FD99E1 /* tcp_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 05DB334E544FEBD52404634426794A10 /* grpclb_channel_secure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22E0EF64C357445231796C90CDDB2DC3 /* grpclb_channel_secure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 05DD3085DFD79BBDD15B0BD937250455 /* FIRFinalizeMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D45033A5D40A36FE64F1E831E32F47E /* FIRFinalizeMFASignInRequest.m */; }; - 05E1216F3AD2929A37541FFB2C225E71 /* grpcpp.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBC1F3E107D759242A1C3955BC6AC49 /* grpcpp.h */; }; - 05E3AF10E3976CEDEC7984329784EB26 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C779E900CA57D44C2F9D63A7B6A6A88 /* checked.upbdefs.h */; }; - 05E77184E45B01C851DC3F7105E0B80A /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = DD47E50FD816BCA648E6A62FB33EF373 /* time_util.h */; }; - 05F5B3B13DCBC6935079997DDBAAB1A6 /* cds.upb.h in Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9764EE514981202FA1A4B0A4D1D7C3F3 /* cds.upb.h */; }; - 05FF7BC88C3B8B1868930621B1BA9509 /* propagation_bits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D8A6510FEAF022F1A7D52FAB5DF8E970 /* propagation_bits.h */; }; - 060298B32CD43512842D941D50A20DE4 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = B9A7227AAB7C29CA7F1A7E03D3C1FA1D /* grpc_tls_certificate_provider.h */; }; - 060AFDE542FF737DA9B9FE4EA5BEFCB2 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 5CDFAF2E35260024A1BE63BD60A6A486 /* slice_refcount_base.h */; }; - 06103B5328AE354D37D32495863DEBC1 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F6EC22B391B6C38EE4CB9B5758C43F /* semantic_version.upb.h */; }; - 061C7F7525CC1B6FB9F4484E461962AA /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = B52102069F00E34703FE84F3AE7022BF /* deprecation.upbdefs.h */; }; - 062BE89E11891936155F4D5C81D6BC7F /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF332F2DDD31827838523295C7C02A6 /* atomic_utils.h */; }; - 06361C72D0D50CD2B46896B373A6AE9E /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CBD774048CF5B1198B6641A7BD58BA6 /* api.h */; }; - 06480BFA155440663B78E40B722AD6B5 /* hrss.h in Headers */ = {isa = PBXBuildFile; fileRef = 9574B180021F11527759A92483EEEAF7 /* hrss.h */; }; - 064ECE278EA23354E959737EC4CB7239 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D283A08685D59D0445348AAF1EF5B5 /* value.upbdefs.h */; }; - 06527A1E6D6D2E1990FF4B8EB32E490A /* server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 4592725643DE1ADCFCE8F803BDA0A417 /* server_builder_option.h */; }; - 0658A1B16A79709084380F28A94B8C2C /* gpr_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E8C736684F4696714E6AEC832225730C /* gpr_types.h */; }; - 065B916939453B545A2BD8A76D3E62F1 /* tls1.h in Headers */ = {isa = PBXBuildFile; fileRef = FD8F6EEE135322871F125D0C7D51B718 /* tls1.h */; }; - 065CAFBAE3F0F13DA862A83E7952325C /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACDABAD6D0A30541241E684EE23EDA1D /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0682AACED13C6EE75BF4EF8033700CC3 /* merger.h in Headers */ = {isa = PBXBuildFile; fileRef = 17BCED408F6BD628CEEC4DA6BAD202B5 /* merger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06840A38F705A1D393F1DB09C79B2E87 /* time_zone_fixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2092D66C4B88A11CF1BD9D12226F21 /* time_zone_fixed.h */; }; - 0686E49BEB7B662748A59E70DC354FA9 /* layout.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 10E00607DDE6722CFFD71796198FD0C1 /* layout.h */; }; - 06B9927BD6DB7A46B5307A6CB6B5B1A0 /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0D1F365029B9CABA2F3F6E843CE8148A /* transport.h */; }; - 06BED7A714C61EA69E67F5B85E9CC8D0 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CF5959E52A9BCD943DD4A2513ECD71 /* url_external_account_credentials.h */; }; - 06C45797EFB095CDB25990B80DC6D591 /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = 153B0A74C9969A6DC4C81676C52EFBEA /* engine.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 06C620FAE53C5DBE69A747A5B5D2B3FB /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4514AD0A7F3CF10391B711522C92E1AD /* frame_settings.h */; }; - 06C80FD17802C5407522322E4A26B87C /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = ADAF088419ED98FE6E8A89C24FB71413 /* xds_http_rbac_filter.h */; }; - 06DD1C5C2F951A74ADA46D5C76C2CE2C /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = CAAAC1CE10834B003C03FB067F27CACC /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 06E39983DBAFEA542BEDF36AE875C4C5 /* evp_ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A6F99F62FA9BA661DFD44BE2E3BB7D2 /* evp_ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 06E8B57B451EAC676642AE4C163DD8B8 /* FIRGoogleAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 366B7A05A66F656E0F1A68137EE718FC /* FIRGoogleAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 06FC7E8758AE22C90DEE50FFA9243044 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = A7C83086694C96D041164D8E6885D927 /* slice_string_helpers.h */; }; - 07107742EC68BDF0995BFBDAF7A45EF9 /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7DF76BAA4C32D0A75873EEFAB878AC13 /* event_service_config.upb.h */; }; - 0715B29F2BA356AFEDE56D85BF76DF8A /* ex_data.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DE0321B044440171F6DE03BAC7F46A6B /* ex_data.h */; }; - 07183354803FB5D03083EC4D51FD387F /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 06FF34CB5D2A71F22620F073FC69B8F0 /* address_filtering.h */; }; - 07540B269D25B83C5678A7132BA59957 /* FIRUserInfoImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 5644112402B53656046A5C2E62B210CB /* FIRUserInfoImpl.m */; }; - 075CC6902F4424185EEE49BD9073097A /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 36EA0F59F5ED9E0B2462C4D22414A774 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 076CEB913BF5A82612FB332F0BC0A00D /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 12429A113E4A88203438C07F04B7E0CE /* ads.upb.h */; }; - 077A49F49687D815EDDA704388F530B0 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1599917140E7483D292ACA488797E8F1 /* python_util.h */; }; - 077F52437B76FBF68EE68D2ED6FD502A /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = B2520369B3CE7512D4B94CC515F5884B /* executor.h */; }; - 0780E875F179B9BFF000C30F39A11AB4 /* port.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = DB5D2488D6272B40E8D8FF936E5BBADF /* port.h */; }; - 0786E64E9A7038E55DC54EA59DDE56AE /* FIRAuthAPNSToken.m in Sources */ = {isa = PBXBuildFile; fileRef = FF3DAF6EA55447CA1D19DC60B88962D6 /* FIRAuthAPNSToken.m */; }; - 079327763D9B55632F9B114ECD79FB76 /* stack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B99A03E51536BF873FAF6362BC129688 /* stack.h */; }; - 07BD1C0BB95C0B0ED771DBFD4B41B2CD /* span.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 98D605D86226A52F8A71732FAF42DEF3 /* span.h */; }; - 07BD459C89A4A9723460B3465547B922 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FA91580EE93856FD88ED75C260987E44 /* table_internal.h */; }; - 07CE743282BFCF94B73B8D90FC7DC7E7 /* channel_create_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA7A8C84EDBBCD0CF47112A1D84CA90 /* channel_create_impl.h */; }; - 07CE9F7BA12EBC5321630EF136F6DC77 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 23EBE03537519CE6BB7C75F49EBA93C7 /* context_params.upbdefs.h */; }; - 07D004369E04959A85C74DD21E478692 /* atomic_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 0944E9991EEBB1536BFF771198D50168 /* atomic_hook.h */; }; - 07D00818EA42DB465673EED7913AF0A0 /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = 3E51D4ECA1A8BA98D9E1D8F80983F128 /* dns_resolver_selection.h */; }; - 07DA4239E18ABDBE543E027A26C72BFD /* padding.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B34E0F018EC128E411D87A1E801DAA0 /* padding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 07E8F173AD18519410113B03D56161F9 /* cord_rep_btree_navigator.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB4995C236C3160F2405E7443D18A1AF /* cord_rep_btree_navigator.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 07F722569198E147AD8EA97144B78271 /* comparator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 013A3C96BE818C952C2F61253C4447B7 /* comparator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 07FE06361522B402DA33C3649A5BD7FE /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B0D8B99945B0B084C6C02232E8361C9D /* xds_channel_args.h */; }; - 080DB31CEF831B1AEE89E9880778C7C2 /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D516315A2C543ECE05B528CE3EC67DE5 /* annotations.upb.h */; }; - 0812C0CD94AD02650C7FD35DEAE15CAC /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B80E822D54F8ACB4C46012E8FB7E6B /* percent_encoding.h */; }; - 0814A931611886828767B4A7C7E2CCCE /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 1D7F91ABBB27B2B6603C4A42C6795236 /* load_balancer_api.h */; }; - 082263CF509DBC9A027640166B97B9DD /* asn1_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DEE01B8736E272BF2B3BAFCECD78B2 /* asn1_mac.h */; }; - 0823BD485466CD4F60EA3CAD5DBD1504 /* v3_ia5.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F6FC346A052F9DB23C8B2447686F55A /* v3_ia5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0827AF631BEEB0BA05E84FBD35712BD2 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F261C77E4E04DE5A3675B7EAD8EA528 /* method_handler_impl.h */; }; - 082B9F1D0428B5A43C2CC149D8833653 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1C31AC9CEE840BF57B39B2D7E2026AD0 /* status_helper.h */; }; - 082E8D8EA11D5021C67A620C257E7A1B /* unix_sockets_posix_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D8427AD34E3BD97B10C729A03F31357 /* 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"; }; }; - 083AC9146D365707557866045E371752 /* FIRAuthProto.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C7ADAD18A55A4DF52919C1BC4BBCD42 /* FIRAuthProto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08477F117B4F4E9E9F4F95A5F8E2B120 /* cpu-arm-linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 575DD436391DC3BA9D4CED488AE2F6CC /* cpu-arm-linux.h */; }; - 086C3A5F58CBED238C347AFB717E80D2 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBCD24DC3549995F4AFF9F0732601CA /* port.h */; }; - 08704FC5BD26F64C8F4970B1858A432F /* FIRFederatedAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D33C8BBC3875CADB64091D8130C98D5 /* FIRFederatedAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 087EAAA6412C1D8E830A6A0D18EB7289 /* handshaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 74918BCE829F544BBC95587ECAB7AF67 /* handshaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0888B6E06EFE129CF06A87B155E57E34 /* FIRAuthWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB9354E8802B92EE62BAFBF065D4710 /* FIRAuthWebView.m */; }; - 0890925EB7673DA4629D889AE9A08509 /* table.c in Sources */ = {isa = PBXBuildFile; fileRef = 515A8039F086F2C6B49BAC0CB5580503 /* table.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0896C0BA895FF9AABF7BA33227E3621C /* explain.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 651B3EABCB682CF0D00F0EE27B208D9B /* explain.upbdefs.h */; }; - 0896EC3A2E4C07382641917A0DCFA04F /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 46E77518A5A98B05D0F1CFC87F3060F1 /* transport_security_common_api.h */; }; - 08A53DB2C4058543D6FA55F325AB99D4 /* cordz_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = 281DC0E90357AE176BFE2AD6D80A47C4 /* cordz_functions.h */; }; - 08A57877BC21C6D95694074DBB19BE0C /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = C25D306CBA095F95137A49734A38A4AE /* endpoint.h */; }; - 08A88B578595F7B73050DF40A7FABCE4 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B88F781463BF5BE39A8E9E8A7DAFEF9D /* ev_poll_posix.h */; }; - 08AF3BFE453DBECCFEB6BCBDF4845E6E /* FIRAdditionalUserInfo_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B105DF984AFC8E0B4DC9069FAA1CAF /* FIRAdditionalUserInfo_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08B3FC46E930B50AF2A7F12DC246F6EC /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 297258A7C1F4FAE009597544F8343745 /* spinlock.h */; }; - 08C113A13D319FCA7ADF3770FA1E7CDB /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B44DAC196971F034F3867F3EE421F42 /* health.upb.h */; }; - 08CB7BE8972EC1D5FAF5DCF250958AA1 /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 22A246B9CD6287F1683AD66E6FE13A18 /* global_config_custom.h */; }; - 08E8DF501B638FA23E997257BE088FC5 /* time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 2DCF8F8EA5F27C10634FB81A368742EA /* time.h */; }; - 08F3094563D2D302DE73BDCC352D127D /* type_check.h in Headers */ = {isa = PBXBuildFile; fileRef = B748240AA518D9D87AB8B900C2E689D7 /* type_check.h */; }; - 08FD2DA985C0FC6FF4D09F31DA74DC3E /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05EA13824C8A5CD55A0A214BC6BF4D41 /* protocol.upbdefs.h */; }; - 09018BFE34D2A4029AAD43EEE7B62F8A /* dh_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = FAFA58FB10054832862CEE0482F24D2D /* dh_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 090D1641FEA0F63C0E90426D7B96B08A /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AD9A09242687CD13126EE381377D5B6F /* descriptor.upb.h */; }; - 0915BE0655C4AAD927558F7A8E8E94CD /* status_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D4811168E4A7A39B2BC5B601D65B9A4 /* 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"; }; }; - 091B2425E2A92F1DB0ABF4BAE0DCAFE9 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 645DAB0A7138E785398918876DDAC4A6 /* event_service_config.upb.h */; }; - 091E21B54966DF2B2E038A2CF505F7FB /* spinlock_akaros.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1245EA7C4914BC48F3409224DF7FF30F /* spinlock_akaros.inc */; }; - 0923C84F204A14F405E85E6C4A2F1CCE /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 93916BDF32BE21A9CED7B77D6DFB980B /* pollset_windows.h */; }; - 094423BBB9565580F3D35D2D0B5B61EA /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2D112D05844BAE85A9D5F277C4600E /* config.h */; }; - 0952C576F3F4D374224B9E5F453953CF /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 39DD3E5B16720861D303CAF81013C359 /* backoff.upbdefs.h */; }; - 0961F7138BD9D4DC04A8359ECAABA06A /* asn1_gen.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BB45A6DDE7C6F47DD54F7FEBE6E9432 /* asn1_gen.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 096FDF741B7FCC605D390AAD53F5CD20 /* array_contains_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34DB73A41B0B3D3E2D58654BF92182FE /* array_contains_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 098693B85FB53C3B0425A5D039C30D2A /* uri_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = B66B93D5000DA5C21FF15A6A0F3C8BC2 /* 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"; }; }; - 098E07F8CC4203C042330BBF127348E3 /* notification.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = B84F41C1783AAC6BE49E27B856763A76 /* notification.h */; }; - 0994B7669CB1D452EC77665A77000E61 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA9A4A88BB49FEE871D1EBCB60188E51 /* fault.upbdefs.h */; }; - 09B4F78B0A5BF4ABEA46D1EAC23484FA /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = 6E7872D75148C0436CD08E2F285534E6 /* matchers.h */; }; - 09B5F097A9FC5C48AFEFB37FD8C63902 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D4A083B309091D9258E0D4C82F1D3CC /* internal.h */; }; - 09CEBC6FD3181270C1D647154977F99A /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = C5E124B89D667ED1449BE4C47509B52A /* context.h */; }; - 09DF937FA931AD6D44AB59332E868420 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A493829C65E21C07D91AF4F87EA6C2CB /* syntax.upbdefs.h */; }; - 09F5C9E377BC0D86DDBE3149BD10B4AE /* FIRGameCenterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE81A8EC18A0B5B1E43DB60ADFF2EDC /* FIRGameCenterAuthCredential.m */; }; - 09F8121C62B00B116C320B4180BA986A /* upb.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = D4EEBEB7898F2FE1A175505C29D11F80 /* upb.h */; }; - 0A0AEB0EA2BDF1E21FC5484FC0B22880 /* is_boringssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 71CEA7AFF8F7FF6501D68F03E9D31B63 /* is_boringssl.h */; }; - 0A0ED5D16EF87F876DEBF0D17ED255B8 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEE2EDA66AEC36646307BFF0AC34628 /* sync_windows.h */; }; - 0A27828E304123EA557C8CFB7543B206 /* endian.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A665B245C04D150D30C2A30625B2656 /* endian.h */; }; - 0A4AF019362EC217959672254ECE7615 /* prefilter_tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF43D78A918D7940A31B8373CDDB1CC /* prefilter_tree.h */; }; - 0A54BBFD5BB148D2E88F47407B689FEA /* leveldb_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6EAEA415A64F8DB6CEDDD4A59B706A06 /* leveldb_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0A7608CE56667DB0F2EDB4F46AD0F1AB /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B7768AEE98D9AEACB1068789A9E7553E /* protocol.upb.h */; }; - 0A7687AAA773B703F1826672683AC2C4 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B8179009EE4DD7ECDA95B6EFF5C52D3 /* alts_zero_copy_grpc_protector.h */; }; - 0A7FF6C9A60B964167115D73C51C3C7F /* demangle.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7EDCBBB8E734CC48BD9A3F3398235842 /* demangle.h */; }; - 0A851825E709895EE1A092B6318DD3B6 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = B40847EB83546152901CB2DEEC4DCA4E /* basic_seq.h */; }; - 0A9CE16ABFEE00B00A77C18408C62CB4 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = DE0D449B2F65E2ABB08DF305B4B650C9 /* async_generic_service.h */; }; - 0A9FFB2C3F28CE9BBD37D8987A8A242E /* x_pubkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F672F0F888388AF3B470D815231A394 /* x_pubkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0AA1DE119E6D5BC75C5BA9FC323A53BE /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E64D68F5D8E7D028DE843A09A9015B2 /* metadata_map.h */; }; - 0AAFC6EDB6F9FC11FB35CBF7A2E6CE29 /* discovery.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 72A655216ABE7DC9CBB40C33A77F095C /* discovery.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0AB76EBC2F2252D735140D13274F2D65 /* FIRGetProjectConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8753297205A15687AAC62143DFB8A370 /* FIRGetProjectConfigRequest.m */; }; - 0AB859020E75DA56B5E5697A0A97CD0D /* FIROAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B86D006209A2606308FB2EFB58A22C2 /* FIROAuthProvider.m */; }; - 0AC3D6DDCFD43B87D9706A355DF37D1A /* obj_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7C0C751870C4A9442DA503730D2D98 /* obj_mac.h */; }; - 0AE1134201A3CB13CB24005B8D9B0CCA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 0AE47D40FECD509BC2C6277D2E0DC0F4 /* low_level_alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 991A355D55796AB7BB69E454A4B6E48F /* low_level_alloc.h */; }; - 0AE6B538DE6FD0715D273649BF9C8003 /* def.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 55BEB17780C7EC816508770FC262F1DF /* def.hpp */; }; - 0B1D2D5C21BE0603735F6C6F21A33D04 /* resource_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0EA8D24AA9C1CD7267BCFB6DB564487 /* 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"; }; }; - 0B27ADAD66371E5123C3EA18749AEA2F /* health_check_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = A598D61B75F14E1FB7BDED718B610719 /* 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"; }; }; - 0B34AEBE8F5EF851CCDA90AD6A6EB49F /* GDTCORFlatFileStorage+Promises.m in Sources */ = {isa = PBXBuildFile; fileRef = E303A4B867C0A073E43D2705A20FDD53 /* GDTCORFlatFileStorage+Promises.m */; }; - 0B3622E8D9C007A1E38344793681006A /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = D1A4740E2C1BF014B7C22B066D82FCD0 /* arena.h */; }; - 0B43C5D962E8086DF7403404842E9666 /* async_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9EBEF183D1561CEC4392816F0B6B7C13 /* async_unary_call.h */; }; - 0B4F882FC0682446C619DED832783A94 /* event_engine_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9821E5906EADA510A7B428FF76438DC8 /* 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"; }; }; - 0B500CD11BBBDB03295A7A71DF3522BB /* auth_property_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4AFB5D8CE16F365954298D32489F2638 /* auth_property_iterator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B56DE881F69CF665CFEAAF0719BEA15 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 18BE2E6F39B4A8181A5196C60C54BE48 /* empty.upbdefs.h */; }; - 0B6D07679E83F71425425B37B5884116 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A4632EECCDDBC00FF8A89DB23C7D800E /* 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"; }; }; - 0B8178BA1AE5FB6D97BB7A7352C74C1F /* float_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5B2F976074655FA3C46ECC6383AE45A /* float_conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0B8923A469BC009E72BBF07DB059E63B /* dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 9EE0EB330B5F4A1F324D863C3AF5B592 /* dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0B8C74227EBAD075196F527FED4F3F24 /* lrs.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 52F16022C649ACB97E6AA6764CD9EECA /* lrs.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B9AFC3323ADBDD2B13C249A661B1669 /* duration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3DEB0765CA6612B20935BDE6214A3B76 /* duration.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0BA17FEC2FAA0CBE5F9E2158E5E03AD4 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC00C7BC8E5010AB1C694A593AEB2C8 /* route.upb.h */; }; - 0BB0694069C56D20CD7FBF075FDC7BB2 /* leveldb_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71E8FFB0BADBB1ACC9E9503EB6B6A4AB /* leveldb_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0BBB3DA2BFF2522EEAABE432D673A900 /* gaussian_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3434DB42D580FF9206FCA5DC1B7285 /* gaussian_distribution.h */; }; - 0BC6F432D1E89CA3D4ED365CD82E7572 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 727C1911DFCF06D6C803047156E83F1E /* grpc_if_nametoindex.h */; }; - 0BDC374DFC13616B361CC74C955F954E /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F297625EFD545077312FD10FF822EF /* cpp_impl_of.h */; }; - 0BE9DE618EA28903BA7F4C138AAA8DA0 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D63C480DD386525C1E4B52028D8688 /* resolve_address.h */; }; - 0BEC9FAB35755B0C7C79A92352DBB982 /* transport_impl.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BB08AF5701C2D462EBDBFCB35EDA6FC7 /* transport_impl.h */; }; - 0BEE19BF90920C1389334C44803B5B79 /* charconv_parse.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EDC309F641F64D59235FC2D1EABF756D /* charconv_parse.h */; }; - 0BFA6F30E94A5122314A4D758174676B /* node.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D4A1FFF4985DB9C0BFA07DC78CD5C22 /* node.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0C030D197B8C71D01D0F1DC2D90ABEB1 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DE68FFC8358FA04D5889EF2C3E394D68 /* config_source.upb.h */; }; - 0C05D5D9B5BD308C6EDB4D8D99240B30 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = E19B3D43D11D5638D68E4CCD659D416A /* proxy_mapper.h */; }; - 0C1EF8B6DE4EECD74576FF214BB047D7 /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = C225D98BEC5D807A2CA9653D0623D835 /* trace.h */; }; - 0C26FF79F867291FA786226AC4680D2A /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFC81D8FD83A9D46AE01A23BE7468447 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0C2A412C549EB24D396FF85DC8CFB12E /* closure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43733C341BEB1BFC9FFD78C36E397DCC /* closure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0C2AE0DFEF8361DAD80FE8ADC307496A /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 048D1F5340C8D142942B39088DF3692B /* FBLPromise+Timeout.m */; }; - 0C34AF25BD5EC2D18540C9FAF4A0987B /* FIRGetOOBConfirmationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 379BBF8B6B02A03A6FF782BEE0703C5B /* FIRGetOOBConfirmationCodeRequest.m */; }; - 0C36B9A3D25C7D0DFF5136F64F481835 /* t_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 186841B5446847B2D2442BE32E6BFEE1 /* t_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0C380E48487D9A925824BCD3564BBBAC /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE63F8FF12D5AF60D207502A5E686588 /* grpc_tls_certificate_distributor.h */; }; - 0C485F73106F98E7219DC02208C55565 /* resolver_result_parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0A33EA6D08F5B6D726F20B3FEBCD8FD /* resolver_result_parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0C525BC3FC2493D90BF60EE65ED7E196 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8BAE0E68120AB138691AA34E6652C3 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0C5538D4861F6175D5D1E1A970F0D6C3 /* checker.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 8CEEF3B6D7A39DD59099C171ACDF08DA /* checker.h */; }; - 0C5C0C41D0B431D2BCFDD55F2F79B130 /* stringpiece.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = C07E225FC776C11EA0F84C20D4E00D68 /* stringpiece.h */; }; - 0C62E66BC2802A4E4396E94A52E587BA /* gcm_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 4AA6E32CE176EAA4A511A77FCF3C8D0C /* gcm_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0C803C3315EF9112A1BD633C41FD2260 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E5B439F90A941226BD2EF48024DF759 /* promise_factory.h */; }; - 0C881ADC7B8FF1E44F5C619798BAEED4 /* atm.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 85467C630EA8DE88330CB36D54EF3198 /* atm.h */; }; - 0C8CBB8F9DC11CBE0640A0071092CA05 /* channel_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 344E025219EFF315DC636FCB840F7266 /* 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"; }; }; - 0C9670FD5EAC0511E169C3327F7CE178 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BCBD362A14615B5389CE7DFBD4D8006 /* status_conversion.h */; }; - 0CA84BD4D1FDCC6C2C2B5A26E93DE9DF /* global_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = CFD081566DFEC6AC03DDE5B3C7256851 /* 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"; }; }; - 0CA87E3D8C8C41CAFB9E10D7BC83BB58 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8A21B052C956C294EDFBECB5232750 /* tls.upbdefs.h */; }; - 0CB536A09658B801D45155F4E9C78EF6 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63ABAA30B4B26D75FADB481A2A636B6B /* env.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 0CB99F160D417D160C85BDFF21522529 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = 3CB3512BB1D7A64A38FBA25A1B84D423 /* message_size_filter.h */; }; - 0CC01C6BEE2099E6E4B57FD44BD7A916 /* hpke.c in Sources */ = {isa = PBXBuildFile; fileRef = 35866E00BBAA2DE6F52A7E7BCB54D059 /* hpke.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0CD4B35FB3A1939E913FB6A0451E631F /* secret.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A09EDCC235649B6FFA8B11DC8A18C86 /* 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"; }; }; - 0CDB8B9428CACAA498AEEA594F4DC5EC /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = C1AE2E24967046C26451A573AE94D85A /* json_util.h */; }; - 0CECC6FA29D19663FF69A9902A4A3054 /* tcp_client_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29BBFB150446397511913BAF16FEF106 /* 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"; }; }; - 0CF17AEA0DB1080326CCAB7A1935ADA7 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B7EEF5256573EE04339179405CAD3C /* backoff.upb.h */; }; - 0D0E04992162B88665C49C01B902BEE1 /* trust_token.c in Sources */ = {isa = PBXBuildFile; fileRef = 849A1163BE198D6657617FC151F0FFAD /* trust_token.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0D0E19208DA982E86C6009B292C39369 /* resolver.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 026CF909AE1FC9038429B4C1362CC194 /* resolver.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0D14A89B8BBF39ABA42A6E72949EC3A9 /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = D7810A76693B06E29CF3126FEF8A7D1A /* transport_stream_receiver.h */; }; - 0D1EE56817D9E4CA4391C8630A0A1379 /* spinlock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3196A6973F0A0600A4A185932D3B0832 /* spinlock.h */; }; - 0D20719B43504B538A82903392AAF11B /* perl_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = A569E416AEB5DE37366B255AB8FD8EA7 /* 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"; }; }; - 0D209296D2D63A9ABE38587E19502C3A /* FIRSignUpNewUserRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F1EB8B4CAEAB2701BEB14E7F75FB028 /* FIRSignUpNewUserRequest.m */; }; - 0D218E3DFFC9E7BC180D6F900FCF8375 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3F1837D7B34E7A0B9C4B4DB4AE1721A7 /* upb.hpp */; }; - 0D33680676E16C9915F3C769C4F6AE7C /* FIRSignUpNewUserResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 90AB132D549C5212035D94596705C0EC /* FIRSignUpNewUserResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D38BCF7F8E9591857FA569AA669A81C /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 51E7F2038A0FFD81F4DA08919B2465F1 /* event_service_config.upbdefs.h */; }; - 0D39F21BA9DE428AF4965CEB0F70A800 /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 740F77311CF0732E5C9A39BD5781AECF /* completion_queue_tag.h */; }; - 0D41C91CD1F1479985333078BA857E36 /* bad_optional_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 8260A36825F444D43C8FA8ED5D178CB6 /* bad_optional_access.h */; }; - 0D507B13D15E56402555EE89B26498CF /* FIRVerifyAssertionResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = CACC8B25D9AC22712B4DC3749F6CDEF5 /* FIRVerifyAssertionResponse.m */; }; - 0D5BA495F7CD203CF562405CB48D0402 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2119AC896E16E18FF0B4C0F4DD01D5C7 /* iomgr.h */; }; - 0D62666C8FF047437A9A865E529AA7F1 /* core_codegen_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = F507942283D65C20EE7AADED44DC257E /* core_codegen_interface.h */; }; - 0D654F4B7D3B1660147B28B8F06C2D32 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7583D15669BBCABA12533DDAEA5A9EB8 /* mpscq.h */; }; - 0D678B265C0CB3B68A5C559F40BD0083 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 33467055A1131134E290ED6BA1AFCC00 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D690D587E2BC6C277B3CB5AF4089389 /* iomgr_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CC9D9002A2F38A3892043EC9E0BF3891 /* iomgr_custom.h */; }; - 0D783E6897DAA3A1DCD8943436A13769 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3FB7A62D0468C3221CB74747070AAA /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D907BD308ED5661D82C66074BC071D4 /* grpc_if_nametoindex_unsupported.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9139E951B16A769D99336B2EF472CAC /* 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"; }; }; - 0D976A78670714C9A160F1E90349A401 /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = E1217BD05EA599124A79A8E31CA778DE /* security_policy_setting.h */; }; - 0D9948FBAAA520C6CF048D77559896CB /* dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 117D757718A4B70AB2CC66799941DE34 /* 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"; }; }; - 0DA15A78B67CD81D52A9F51DED1B2C60 /* fs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E5E8D5A2E417044141E107B704A2AFC /* fs.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 0DA629D042CDE36E8095073F180F45DF /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 473F4BECB31AE3F460DE823AFA12826C /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0DBB0DA5B2EE4FDBC370EB05FF67EED9 /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 4E0BC17D35593EF35461F93FC3E2EC0B /* grpclb.h */; }; - 0DCB789EE3F1216D15B8638BAB3489C1 /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 29DC2ADCA18C838ACC4D893D940E986C /* map.h */; }; - 0DD7EF8DA7CED8CB0E1C7A763370DBC7 /* tls.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 16E16CC3956A82204A9FA94DCB43F459 /* 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"; }; }; - 0DDAFAF14265130AC359D2B71F99BCEC /* circuit_breaker.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FF061B73082F8F2022C4100C6C7E6E2 /* 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"; }; }; - 0DE3C6FD93D793E278D50BE22A76BED4 /* hpack_parser_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 07A4D675C662616BC90B0903CE156B19 /* 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"; }; }; - 0E02CF68D4973D15AB3951D13F94206E /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9CB347B060AEE9899E9C7B094FEA5BCD /* http_uri.upb.h */; }; - 0E154ECAA9052AD08B7C6E63B7444D7C /* status.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1B52374E6CA0B8B8C0C64FCEEF01811 /* status.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0E1E4B206B6B40BCE2B91F0B72103D33 /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AE01C797A96D6234B067C8A84EB931EB /* frame.h */; }; - 0E1FA5266E443922D888CB492876E256 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E93F49FA1B936E265C8DEA583A74DB54 /* versioning.upbdefs.h */; }; - 0E22D207DDB7098C12CDDEA64543689F /* ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 51F7BBC9E6B6BFF79BF1321A3AF0DD44 /* ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0E260357FFC92C64B25CBBB91AE98F4C /* atomic_hook.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0944E9991EEBB1536BFF771198D50168 /* atomic_hook.h */; }; - 0E2B590B147A9DC2AF470CAE0D6A7F70 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = C318166DEC74F9FDC1958B12F6A22CB4 /* resolve_address_posix.h */; }; - 0E30CEDC7C2E41E9B4DDA534A3F32026 /* exponential_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAF412D0CFFB39E1BFFDB1E64048FE9 /* exponential_distribution.h */; }; - 0E3E28B2122656D04183276E47D57AD5 /* cordz_update_scope.h in Headers */ = {isa = PBXBuildFile; fileRef = 587F6CD8D7DB682D57FDFE9C5C5E59DF /* cordz_update_scope.h */; }; - 0E4033B64A06A3ED7657DBA22E5D9C02 /* stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6278C8ADAD75508AF874C23117B78181 /* 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"; }; }; - 0E4580EBA0A1F919FB1C7BFBC5899BE2 /* deprecation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = ACFC339F608B0702502060B8FFBC8B72 /* 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"; }; }; - 0E45B9B38A3DE4B33A824E443E5D755E /* sockaddr.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F61603C41D94BA4F96FC0771D64F232D /* sockaddr.h */; }; - 0E5E658110729B8B1D3E425F0290978C /* prime.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D1D9B7FF9B113BD0D08F70177D4C792 /* prime.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0E6645EB83A2A8725BFD5D1A8FF0796F /* srds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6085D4800EDDEA533DB3814CA92DF0AC /* srds.upb.h */; }; - 0E812C754C27449DFDA150983C6F1A13 /* ev_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2F68E55D20F0EB8F288CBDF8CB4BA9AE /* 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"; }; }; - 0E82019D91C4C875394D787B7B75DCA0 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3357F12C6D535E9D39B0257434E716F3 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E93E760EC0E935E9DC5152A5B5C9B7B /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF5D76A3CA3083DD4BE85649E7DD57D /* timer_manager.h */; }; - 0E97F956FDD3F49914706F66FB2552AB /* FIRGitHubAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 39215536261C68C18E489F54AE7533EA /* FIRGitHubAuthCredential.m */; }; - 0EA119999EC983BCF6078859F8D7FEB7 /* FIRAuthWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D2299334CC90B4B12520DC15F16FC1F8 /* FIRAuthWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EA2BA26256CC2670973C36DCD8EE1A3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A1F02DAC8F20ECD50F07FB6A5DFA18 /* internal.h */; }; - 0EA8B96F6EDB5673C5A3292B6A702662 /* x509_vfy.c in Sources */ = {isa = PBXBuildFile; fileRef = 051E0706CD1594CB9D0E0EEC0FEF443E /* x509_vfy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0EAECF5D3BF18161E624A2141896523A /* time_zone_lookup.cc in Sources */ = {isa = PBXBuildFile; fileRef = 38B8E02B0D17EF431AC21F08FCA42544 /* time_zone_lookup.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0EB56A821E38826F7139A67C6C7EC652 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B6D451E9D28AD5B6DA5684BA3427B10 /* handshaker_registry.h */; }; - 0ED25B5D67E61A025F2A8F13E8C277A3 /* compressed_tuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 764766F27DF531CBB6300370021F1667 /* compressed_tuple.h */; }; - 0EDB3C9A2F0A9C1444C1A1133BF30FE8 /* buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E42C7053CD3F40C7B1AF6F78A0D5F3A /* buf.h */; }; - 0EDF90BFE0428B831E01E9584C5A54C0 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DEF7F7016C87683E118732A218CE324 /* local_transport_security.h */; }; - 0EE5AF79CF1AB128FEFE906B93F9922D /* FIRAuthSerialTaskQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2D72FB05727E906682E7C4A9C2C7DE /* FIRAuthSerialTaskQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EE8884AC9B166E0DEF49065A3994B21 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BD02C45CEC656C881CDDFD5DDBAA2E /* examine_stack.h */; }; - 0EF8CF6BC1349B7AF9737001BCB81AED /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 7A3DE77817594D44F6C217357EC78C72 /* status.upbdefs.h */; }; - 0EFE8E77F323D2289E2343DCA6174FB9 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 95823E1ED04B0D9FE33CECFFD1DCDA55 /* status.h */; }; - 0F0CA6CBF763BB87E97D19BF22EFD8F6 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D31156CA5F808041CACA74DBC166803 /* combiner.h */; }; - 0F0D3A1E8281B6290FE494491A5046D3 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 13274DA87457F27BAA718528E39BE269 /* FBLPromise.m */; }; - 0F100569E5CCEC4A38D36F2572D43EE8 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A473E17BCA02A26F2CBEE82B4FB074A /* node.upb.h */; }; - 0F11BFC5A97E34B511A65E212AE84068 /* FIRGitHubAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 10545D77D9C1A01F70E4CF99E617B359 /* FIRGitHubAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F2CE6CA3ACF9ABE892E57A6E90E09DE /* ec_key.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 965F7CB033AB2E3BADDF45577EE78429 /* ec_key.h */; }; - 0F32911F7E4437E6BC5E7299150DDB74 /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 80175968A0F7C9E05B272E4D1A300475 /* stats_data.h */; }; - 0F407346A13653B68EA54FFE5C50A9D8 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 46D8DEF4E450DE3F1C8C4C92BCD68576 /* frame_handler.h */; }; - 0F472D5AE60A0176C6BB3402B61BB096 /* testharness.cc in Sources */ = {isa = PBXBuildFile; fileRef = E93F17885C817A781D7FEA8C61ED67D9 /* testharness.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 0F5F082BE59961CA847573B72C803F7D /* dtls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10FEF88193B0994E2CA1AAEBBDA1E5BE /* dtls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0F5F94465383A19F442F1C4C28D1DC36 /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 842F3CA63637C9471D572D962F41C20A /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0F74CFE8E0AA5FAA9D4EB56F19EFB9E9 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 727C1911DFCF06D6C803047156E83F1E /* grpc_if_nametoindex.h */; }; - 0F89BCE53F2FE370800735A86356463F /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0724A62328D18B5FF33F489B2E8AF32B /* memory.h */; }; - 0FBBDC34DED48A3EA2227255444EE627 /* x_sig.c in Sources */ = {isa = PBXBuildFile; fileRef = 18BE6DD368D580B5F84D88AB5E966528 /* x_sig.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0FC4FBE57B13540F0ED0274207816139 /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C997D04DC51A54D4B2318DB1F5AEA7D9 /* endpoint.upbdefs.h */; }; - 0FCD2137DA945E761F6992DDEA804853 /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E4841A36EA67FEB52E6D60914F58BBD /* 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"; }; }; - 0FE340E7C9A2DCDBC67861EEE0EF8A2C /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 49C7E66F1CC266330DE34F06433B94CF /* alts_frame_protector.h */; }; - 0FF6DF373B7FCD24D60348AC5F943112 /* byte_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 47402177CE5A3DE11A053DD3CEF70050 /* byte_stream.h */; }; - 10032F82731E65389E2C78CA10192C95 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 31CFD08288EAA99304CA81EF453B57DC /* 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"; }; }; - 1004DC2454B328FBC8C0A063C173BB7A /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 89EF1F94D9B6A76129355ED7CC85C80C /* endpoint_pair.h */; }; - 100FD43E0C8BFB954FAA4EE3B9582D9D /* ex_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CD343035A33161B83D3029139BDC01E /* ex_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 10106D3E02E3EF613397D77FFD8B28B8 /* upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D79A4F5BB76F6BF5BD9A1968A3F80295 /* upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 101197C0A6FCEABC735B12CF900D3246 /* key_field_not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF2FE446350A1E047C2367CD87369454 /* key_field_not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 102F66F70EEFD73EDBAD621DC2745475 /* leveldb_transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3203273057655BF14A87E80BB9B001F8 /* leveldb_transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1031BFACD0B24BE28CB16B547821EB45 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F9E6ECD0031EF129A9FC62746415E60A /* iomgr_internal.h */; }; - 103729B75D804343E7B8869379A3791B /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 204A7CA3893FC0E86FC7AF6E7DC09EB3 /* socket_utils_posix.h */; }; - 1038F78D706926CD5491965295E50607 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 29B6A5C8B82E5BB8F65103C56D6EC7D5 /* alpn.h */; }; - 104AE8E54CD009ECAF65F73CCC1F4B3B /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 745DC281566A5D1F63B9AE8F192A6547 /* alts_counter.h */; }; - 1061F91B1901DAA4586BEBEA28CD9AC3 /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 59B6C8A3E2B9043D0619CFF8C04B9E4E /* context.h */; }; - 106D6A3CF36CE5EC10ECFE992DB00CDF /* dbformat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EB847EA7567E480A69A6C979104B841 /* dbformat.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 107B1E4D302ABA6F53DEAA875114C1AC /* FIRResetPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E79C807B8417BF0363160E2A52C5B9C7 /* FIRResetPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 108976C4234BB6B74BF240CCA89CB153 /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = CCD8D9D7DC02DD36502C40878046E492 /* bitset.h */; }; - 1091EEAF0DF235D0DCDB8B817717F3D9 /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AEC015FE1445352B9747AD1ED24B6F /* seq.h */; }; - 109437DF78E660D4218A02F562B591E4 /* gRPC-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 73FB054B2D12613885915961EA060358 /* gRPC-Core-dummy.m */; }; - 10A1E04D2B4AFA015973F97CD550D49C /* bytestring.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD67F62D3A37E89988A0DDC70EA3827 /* bytestring.h */; }; - 10AC96D14024DB0300B7E3C44B968AD5 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 248A796EBE99A412DC59BE302B43CA0C /* channel_stack_builder.h */; }; - 10BC64AF8608AB013DE0FF97516C0108 /* load_system_roots_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 90015403677A1F4E07DF13546F73521F /* load_system_roots_linux.h */; }; - 10CE66E68C33DF46C72CA9A7ADBE2504 /* alts_grpc_record_protocol_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 864EA35C8E28017343BC673750F71958 /* 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"; }; }; - 10E985BF5DA98086BB5AB04C25D0D56C /* inlined_vector.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 660E6521D0B46DBFE7868052386A018B /* inlined_vector.h */; }; - 1104CED56D7845FEC736B804110F61E1 /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = B5BA4FE9B899AE7D9B702720917B5102 /* compression_internal.h */; }; - 1106C508633054EF940B397F805318A2 /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 44B3BEC899FC6061C55B49912B75671B /* delegating_channel.h */; }; - 11082BB596E4273ED910C25C8DDC0201 /* internal.h in Copy crypto/fipsmodule/rsa Private Headers */ = {isa = PBXBuildFile; fileRef = 85A1F02DAC8F20ECD50F07FB6A5DFA18 /* internal.h */; }; - 110A548CF5E9D316C7259FA71467ACCB /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7BDB673E3DC250F32BEE1887018D2DF5 /* outlier_detection.upb.h */; }; - 111476764AF56128AEF7EE137B9C83BF /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E8937448E2B68BD01C5C0C401607418 /* 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"; }; }; - 1119D23579AD1AEB7A3DCF4DACD7C435 /* vdso_support.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5706A32E275C03E7E6636938B7384037 /* vdso_support.h */; }; - 111E9718B9A329FF4BDDF79F6479175B /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A4F8B5D211E97177EA812FF6901D9E /* endpoint_cfstream.h */; }; - 112F29770C6A697CA57E75DACB20B383 /* str_split_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBC9522495EEC9154681570104F395C /* str_split_internal.h */; }; - 113267A86E61A4269C6737C7979482AB /* FIRAuthRequestConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = BC1139405CD94C77CF048C1E27CF1293 /* FIRAuthRequestConfiguration.m */; }; - 1135280FAAA7668BAA3E166ED6F82E45 /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 80175968A0F7C9E05B272E4D1A300475 /* stats_data.h */; }; - 113800ED0F04C2DBFCE51F954AE32718 /* timers.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D23DBF05EC7616586E3128C524322A /* timers.h */; }; - 113EC070CC061253AEAF49DA5D3533BA /* darwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6ACC066566EEC8E49BC3D5EBD90F7791 /* darwin.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 11423FA93BAAF54072A802CE85CD68FB /* security_policy_setting.h in Headers */ = {isa = PBXBuildFile; fileRef = E1217BD05EA599124A79A8E31CA778DE /* security_policy_setting.h */; }; - 114D0758D985609B672EC23EE920A2EB /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7F91ABBB27B2B6603C4A42C6795236 /* load_balancer_api.h */; }; - 11502998E8140CAA6228CE55507B8B6E /* error.cc in Sources */ = {isa = PBXBuildFile; fileRef = FFC4ADCB64730E3C3E758C157EEC9A00 /* error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1152A45976DFC79CD6EFDE9BDB481DB4 /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BCAAD5971AD4DC59DD30BFCD0F7B2FB /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 117E5E196AA0C299A6A0DAC189C100FA /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D83DC3A83153B97A813CDFCBE6D1C45 /* composite_credentials.h */; }; - 11B12D61D6D125151D2C99C85FA140B8 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 447FDB694B22D633833151F2E5B3317A /* certificate_provider_factory.h */; }; - 11BD658941E567CB6C4245CAD58D7651 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1E732EBE215352395DC3DC9D2CD120 /* host_port.h */; }; - 11D93C5F5ECB3F62D3CC8D8225936DFF /* tsan_mutex_interface.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 27594DD949E1F1AF56837B70C828F270 /* tsan_mutex_interface.h */; }; - 11ECED71F2D7A5DD82AE26BDD68662C3 /* e_aesccm.c in Sources */ = {isa = PBXBuildFile; fileRef = B6E2BA0DB94840B41C6E1BE69DE86BFD /* e_aesccm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 11EDF9E34B6F1DD05C747426B6F97C73 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEDFE2D9923BBF6E4912316E851F60B1 /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 11F37EA1EA3EABC8237985E70DA04C62 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF3507125003FC6BB7CDD91111DD98EB /* route.upb.h */; }; - 121E72DC276DE3614EC877058E1CD8DB /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 43D63C480DD386525C1E4B52028D8688 /* resolve_address.h */; }; - 121F7CD775827AEAD7EDCAC4E234DF3D /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 58CBA3F290BEECE48CB118CA5B45C07C /* basic_seq.h */; }; - 122082CDD7BA4048A21BED21D4A5A143 /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = 544EDA90AB94329937EC7A44A714E704 /* dh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 122C015102A39DE70D4A25919142B59D /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 93CAE6005958CC133C4263A5AA707DAF /* grpc_ares_ev_driver.h */; }; - 122CAEC8EB05A9799B7AF070B8C473E4 /* FirebaseAuth-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ED40FBFF36D5236F836E60AD9233617 /* FirebaseAuth-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 122CF27A4707AAB50E9BB34B24F72082 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EF4D8A0006A4598309ADE1047F01D6F /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 122D37B38B08D4DE237F98CA7A1850B5 /* ssl_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B41D444990669E3462B974E545950B /* ssl_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 12349A5C45EFFC99CA8A83FC2BB6FB28 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = ED3709609F8752D5A98EFBE135A01FB6 /* xds_common_types.h */; }; - 12562D97180E9D7EDCB8FC8670352196 /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6F6C50611EB192ADF0EA7F709939DE50 /* fork.h */; }; - 125868A0707A8D4DC9EE0819E5D564A2 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F9514C0821DE3D9512A12B6846090A1E /* internal.h */; }; - 126A2752DC36E4FA814F3B78D060951E /* FIRAuthBackend.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F6A34A6CD3CA88236F65719A3C7134D /* FIRAuthBackend.m */; }; - 1273933DC44275F886E09D296AB39352 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DE13C4E349D8FB18F0F3CB3193965C /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1275584DF4D9062B93ABD66FFDCD10D6 /* string_windows.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = A792C080FAE56896BE34A50BD173F601 /* string_windows.h */; }; - 1278BC65A7BF7BC27428487891B773CC /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0490F09EFFEB632ED4629FE5DFB41C /* custom_tag.upb.h */; }; - 127E8D1D00F08BC1BE82DD93685433D0 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF97FCF21560E17B42AB9A924396382 /* reflection.h */; }; - 12872C836FFE893CBE1BE4B4359D4851 /* testharness.h in Headers */ = {isa = PBXBuildFile; fileRef = 389EFCA755EB4F8668D8F889C277C70E /* testharness.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1299814C96AB203EB335DBD0E0CA83FF /* srds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EA03399A7B468623B9679F0EECD5B912 /* srds.upb.h */; }; - 129C0907EFB869C3433B16B6224B0CFA /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3C8FEEC10682E55A9D6201EF28275D7 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 129EAEBD84A59F516B78AB241D4D4657 /* chacha.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A8902AAE8256B1B28A69B8B8D0C6518 /* chacha.h */; }; - 12A37513CACCA0902895C3935FD427CE /* message_allocator.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C44C4FD3A6FA9FCC87B572A73B7BCF58 /* message_allocator.h */; }; - 12A3F85937AC232374455ADD3AAAFCF1 /* civil_time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 09A090612BA2D7BFA79EFEDE37B18C92 /* civil_time.h */; }; - 12A42C1F16E69A95BDA6F94270168CAA /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = A45F54B0F7C8C5870CF72806CC6C37E1 /* matchers.h */; }; - 12B8B0825634AD11563B4819D23401B6 /* create_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B0BB9F9D829E3114AB84B6957EF89110 /* create_channel_internal.h */; }; - 12BCCADC093D6A8B3FDA8F908CD505F5 /* snapshot_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DB98B4A4B93C6E39540C9E8C9592547 /* snapshot_metadata.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 12C9C0ABABADE5D2910468AC68022461 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0BC17D35593EF35461F93FC3E2EC0B /* grpclb.h */; }; - 12CAEB26688F5CAE7F2BA62CDCC788CE /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BB127BE875449F53FF031679E0AD3E /* GDTCORPlatform.m */; }; - 12F199E651D127087E5B8D74668283EE /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = E7D2C044AEDDEA9CBF48C3FA49A909AE /* status.upbdefs.h */; }; - 12F2C0B59592C17D7F658568AD42EA97 /* pcre.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC06ADACEB1AD6CC264389DC5E29D7A /* pcre.h */; }; - 13087ABD23306E38FD2CF429861BFBB9 /* cpu.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 296B9FB2DB614DAD2BA84C5A83834DE0 /* cpu.h */; }; - 132A03E4A827F215693E29BB782F13AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 1330A62F97D637BF9560BD32B6C88749 /* firebase_metadata_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 87D14E6E9EC2BC22A4D7C68274C25BA6 /* firebase_metadata_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 1331BDF4188A7144426BD9420E11CE54 /* uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C040CC9AD6FD805F69679AB74A6023 /* uniform_int_distribution.h */; }; - 135736FBB8674812C7A074E2A84DB6AD /* channelz_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E3D851D11D6B61DD65016960CECCCD0 /* 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"; }; }; - 13579779509A9D773B696C25A9A8564E /* database_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = E08BD7600DB08ACCACAFB35E3B0D58E7 /* database_info.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 135A7C05FFEE39DB91EC56D1FD9A1191 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F503D6A45B2099D96A857507AAFD6D7 /* syntax.upbdefs.h */; }; - 13766CB1F0F6480BDACA555A8CF538FE /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = E6196DBAF2CA9416A88ADB40066B3C3C /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 137CBD7EA2C5AE6F058426B4E134390E /* memory_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46B947F779A6111861D50A97B81A9F89 /* memory_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1383FEB16447A4335A8054D9D8D10BEE /* asn1t.h in Headers */ = {isa = PBXBuildFile; fileRef = 454BC6F09893DB98D038BF08842DDF8F /* asn1t.h */; }; - 1395738F5AEBBC9B2599B74A35C45567 /* obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 403AD6E4A0A1B734B555ABA203AAF905 /* obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 13A48F3DA0F232C2F8568266F28D6341 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 4C899FE818FE07B81B0033853E8C5360 /* annotations.upbdefs.h */; }; - 13A71514498AAB31CE8B0119B833184F /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B02460F5E73D23ED6FD5521C6F407E82 /* internal_errqueue.h */; }; - 13BA3D70A45B82993EFA00C072050BD3 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7673737FC609A1373ED10CCED84DC1A6 /* grpc_service.upbdefs.h */; }; - 13C8CB891860A57A665CEB352D4863A7 /* FIRSecureTokenService.m in Sources */ = {isa = PBXBuildFile; fileRef = F9D89DA5B5D6A1C5AAFD95C0B26C03F6 /* FIRSecureTokenService.m */; }; - 13CF6D02F668ADF1DD37DF7C446533A6 /* fs-poll.c in Sources */ = {isa = PBXBuildFile; fileRef = C765437E421FAC1FFC95D9BC8EB9A1DD /* fs-poll.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 13D29E4B31E564C02C7926F5F442558D /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = C5812F8E628993B351C6066BFE35E56A /* GULMutableDictionary.m */; }; - 13D79345ED0976653D39BCE79D89AE21 /* table_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 68718C4CB3EF9D93888DAA3784EFFBBE /* table_internal.h */; }; - 13DBBC428F73FCA8F916AF45E0907984 /* memutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5441A34E201EDA4BD82DD79DF4FD031A /* memutil.h */; }; - 13E1DCDFA037C164419C4C082BFAD50A /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 46A15753A6F5B949E66C26594B35CCDC /* http2_settings.h */; }; - 13ECC6987245555D5F19E4B1761FAE69 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B137F26F3880BE1C08B667F84F176BEB /* socket_utils_posix.h */; }; - 13EED0948B84F55567A9EAD6791F41C8 /* stacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 16ED6AC448078AE5BC8D36393271F233 /* stacktrace.h */; }; - 140FC7A6DC87ADEB907F6F12133FE3E2 /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 601E0FEF257129E25CA4A57BB1856853 /* backoff.h */; }; - 142CE90CB93797188D9F4A3C6DB5B1CD /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5161171B05A0D32C18A67810CCBA11F6 /* metadata_batch.h */; }; - 143C59F6D7EA60CFBDB3D8B4349CC719 /* log_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7A78EC8A546A7F77990F67141891918 /* log_android.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 14448C588B1A04662791F2AD3CD0768B /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 430F4518F77FD77BD3C0FDA487E3FE49 /* 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"; }; }; - 14795D096D8B84AF0BD95405B15799AB /* alarm.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B2D4E1C23A7D4BD6F6F6BFEC49D8504 /* alarm.h */; }; - 147B4E6C517B0D83C357651CD01C5376 /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = B96243AE067B5959A749503F23EF3E72 /* global_config.h */; }; - 147F75179C46462C2A4967D602674888 /* FIRSignInWithGameCenterRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B7A95FC90C43CE5CEB2E7EF6999506 /* FIRSignInWithGameCenterRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1492475F0AAFC6E745A00549F73D08A0 /* curve25519_tables.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 40DFB51FDED20D07155B0DC85FF4FFEA /* curve25519_tables.h */; }; - 14976B67130BEFF9C6D9C1F14F2F8DE3 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = C98EFC6D454E6CDF5D7C99C1E1FEFA5D /* rbac_policy.h */; }; - 14C28FF84603779C9357084CDFBEBB5A /* tcp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2A7444BC97F1D298FB1712842043CBC8 /* 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"; }; }; - 14DBCDE47459BE7932E810600CF07EE5 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 24BB071A53AE872ABC3A9D5797A66109 /* credentials.h */; }; - 14DC9C3B9D8B8085E23E8C3EF594C1E2 /* options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13EB72C9B72C5613092F38C7C7222FF2 /* options.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 14DE8B38906E4F881C1E690D7D9DA13C /* evp_errors.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3377F11FB830CB2910DC9922CF675B8A /* evp_errors.h */; }; - 14E64BDF9086F1F49813916905D4E303 /* str_split_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = ECBC9522495EEC9154681570104F395C /* str_split_internal.h */; }; - 150FC48FA8B9714B00F9D7C6EBFDA5D4 /* mpmcqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3F173689A0C2FE9591AD9013ACD0B0 /* mpmcqueue.h */; }; - 151087B14D3AC73EC5D28C2A218F4A90 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 47E93296EC1FD5F93DED76D85AFA1881 /* GDTCORTransformer.m */; }; - 15192E441EE4A7C24CB61F42A14EAE57 /* aead.h in Headers */ = {isa = PBXBuildFile; fileRef = 2073042D8FC0B43DEF5AA93400752DD5 /* aead.h */; }; - 1535A955042B18BA8644E8F1627C383A /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D54CC4A988C6BF58A89322CADB3D7F53 /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1537C0F27677D230E37137285AD4BA7A /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BAC9D0A1AA7CD328C15013960C88D3 /* discovery.upb.h */; }; - 15495E903D4D57C360B8283CEA6AF482 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 2CB024760AADDA5047FAE3B20A5C4C83 /* promise_like.h */; }; - 154B1A7101AE1F2C0B85CF8997978A47 /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8768919247D8ABCB2FEF928EFC96F826 /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15635B3CAA21B527F04AA66E6920BB39 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0C17AC04718859D77F9EC3118D7215 /* fork.h */; }; - 156A65B1FE69BE194AA1C7441CB93BCC /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F72629B5E3E85846E45AEE242FA15545 /* xds_http_filters.h */; }; - 156D2E44540CA30086A4FAE351466650 /* autoid.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3E780272BAD67304665F2C021A720BB /* autoid.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 156DB932B5463057B041A7A6F14DE0B8 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6EEA7A98913CF8835D7D79FADC7D1D /* resource.upbdefs.h */; }; - 15764B33D7FDF810BE7DF185189DA8CE /* wire_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0D2A6741B6AC3467AD675BC85B73759 /* wire_writer.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 157F815D5C1F76A9996E1FFC75B813CE /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 90EE474DB361EA6A5BC977E3C6AE8ECD /* mpscq.h */; }; - 1581FB33A625FB66223F4CB3CED46EF4 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E2962D8352B9D73AD74FBC94939A39 /* status.h */; }; - 1583084827207B73CADA25F138D8FF86 /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 851A72E7FAE45B9C9A9C917210006951 /* xds.h */; }; - 15852A726A7053087D18D02B60F04EC4 /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = C92CE0EACD0FC38840D6952A90BE5F5F /* json_util.h */; }; - 1591CB107A11D612487B7874F69F13EE /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 532DA9FCB6AAB8630152D8CEA7CD8EE5 /* authority.upb.h */; }; - 1592C45486297FF71F62304C17EA401C /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CEE92F69E76D3A4C9CEAA12B91A26695 /* pollset.h */; }; - 15962A788D06ABAFFAF85353970758BB /* substitute.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B34697920BDD3E002E685D02B9B736A /* substitute.h */; }; - 1596AAD6C0186E459937816F1F81F356 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A88CBFC83E1A48C857043DFA10E2653E /* internal.h */; }; - 15A0104779931CB1D3B4AF792E120C2F /* db_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = F929D05607622872F8B4AF7A7E916917 /* db_impl.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 15A0C697CB00FF3F62ACA3E67867C449 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 39CA457A5A01157C2B91E819DDCC4322 /* evaluate_args.h */; }; - 15B914A4FD66310CFEA430CEBDA3B7FE /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2F2A3AFEA0D5D4CE3E81BE0F27E0E0 /* internal.h */; }; - 15BD96C10AEA6B0C9905F0E3DDCE36E5 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = AF15D34E5EF4A11A603648484E73A016 /* ssl_session.h */; }; - 15C91E9398756BFD34A12B0A33F43E9F /* hash_function_defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6AECE6FE9DF2E2AB2E4B8AF3B9F4D2 /* hash_function_defaults.h */; }; - 15DE04DB5FBB4ABEBFD0C665323916E4 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = B2F1E54F59F5091F8178837BD3D5BECF /* google_default_credentials.h */; }; - 15FAE5EBADD40C46DB38FF899F161C75 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1AC602E91A9265BD8C92854BE65FBDAA /* frame_settings.h */; }; - 15FBC53D5F47782A13C203CF9AC6CF6F /* cordz_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D6D17DF99D5EE2E2A39F06166EE31F /* cordz_handle.h */; }; - 160B9DA4B6182C696012900AB356E2C3 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C672BF1FEBDD57C63F7CDC1885E5132 /* any.upbdefs.h */; }; - 1621A7CFFBABCFB910D2D983884D78D8 /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = D7D50A83BA802440535A19E241DE58AA /* message_compress.h */; }; - 1630B1FC1C9051F677231AB99C896407 /* log_severity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 023E7A4FD949DD5A05E54771B81175EE /* log_severity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 163427664A4F62EDF55691020700EB2D /* firestore_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CAC45ABAEAEF192E6290FDD3286F4ED /* firestore_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 16367AF88FFBAE953F8E3AD1AA745B77 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 191F3DCAC92B9D78ABAC07E8A5CB5FE4 /* FBLPromise+Retry.m */; }; - 163A752ED428F7A1655C118A4172027E /* ec_derive.c in Sources */ = {isa = PBXBuildFile; fileRef = BD15625037E9471300A002C478F59397 /* ec_derive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 163EC9684ACF5982AF424EDC0977CD00 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = C2456C9738A89EFA5B8A071C2B2732C6 /* polling_entity.h */; }; - 1641A60BA254F8EF2DECF9EA40F1492F /* stack.h in Headers */ = {isa = PBXBuildFile; fileRef = B99A03E51536BF873FAF6362BC129688 /* stack.h */; }; - 165038579A96EAA5CCDAC9E22DD5C472 /* FIRVerifyPhoneNumberResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 489EB4EA70CC5221481BF03B7197BFB4 /* FIRVerifyPhoneNumberResponse.m */; }; - 16568D22491997EB5930F81B65A72C54 /* a_i2d_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 23E70C2685EECF559FD8D1A5B98E6E42 /* a_i2d_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 166039CAD09D6FCAE4A8CA5361BF9511 /* filter.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A054577C50CFE5E8610F768511DA469 /* 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"; }; }; - 16917D8EF717CB9AF4F1F9BA8F61A2E5 /* port_undef.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 9278345F85F2E616B43C10F4D8D79E22 /* port_undef.inc */; }; - 16A16C902B7E3BF0B0A12417E7802A23 /* fast_type_id.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FC0413FB7D016F2CA26B29C8FF107925 /* fast_type_id.h */; }; - 16D6D8257FCB279D08AC611BE9A5E8B8 /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3BD55324EBEF7B214149B1324FE3B018 /* local_subchannel_pool.h */; }; - 16E8308B9694B0935E9112E44A920FBD /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D8DE670129A60E52265947F84F2B39A8 /* collection_entry.upbdefs.h */; }; - 16ED53218E42E4F5C2CEA4231C920D47 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 311249B28A37ADB26D2F8496EBE1606E /* percent_encoding.h */; }; - 170A2DD99A27F4D9C16DCF8C3B0F5C7A /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = CE325CF2B3B0AB572793CC4925DD03E2 /* plugin_credentials.h */; }; - 170A70BE60B6E77406CB1AECB8F149FF /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A5690602DE554031B6F660D4731ED42 /* health_check.upbdefs.h */; }; - 17111D92717FC075739524CC46EF9163 /* tcp_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 186278B4B3E5C34D3C237CB0FBC9B477 /* tcp_custom.h */; }; - 1715AA0BE1E3D826211688E96121607A /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 40012589098D7D4EA2D89C5B597D61CB /* GULReachabilityChecker.m */; }; - 1721632419189D890E47E2FA4EDC5DDC /* bundle.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = B73CAE13E3638576F3A52306BC74F26A /* bundle.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 173BF10ECA8400F00AB97547363F539F /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = AC56D82519B5C156EEE1D93D2A771B3E /* print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 174121289EA0A1CAAD16B658E0D718B2 /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 652D316F848D030738302B4E03E0812B /* xds_bootstrap.h */; }; - 1756349B33C63E1056B8D5939C6DC620 /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E36560640A07A2A61D6BB28D985EE0A /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 175899EC8E0299D483CDC9417C87B271 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 431E3E1E1B3E81C65E6542E4CBBBC796 /* hpack_parser.h */; }; - 1762F62D5D10D5AC27F00930CB0CC2C8 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC6F4188AEDBDD96CBF8092C5A0ABB3 /* cfstream_handle.h */; }; - 176FD1B5BFD0CDD15388D905375FF6D3 /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 1C37AB794E353DD50C86E9F36B53870B /* deprecation.upb.h */; }; - 1772488734BAAE11034C4D4C76BD73BB /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE8C0E638ACDF3599AB17E05D1D57FC /* slice.h */; }; - 1776CC8AD218A37AF9E788A0A8E909CC /* cpu-arm-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 96015440687E795360D3B0316D01F281 /* cpu-arm-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1792A31CF1CF947B592ACD8503ECEE3D /* FIRAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DBE458F32F3C34DEE6D0B3E4F858AA /* FIRAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 17C07140B7D8085190D187B0AD91F7F1 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = C61C6E21E370D90A0AF9C13AD012973F /* json_token.h */; }; - 17C6F75B0E04636C73660EA604762719 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EA13824C8A5CD55A0A214BC6BF4D41 /* protocol.upbdefs.h */; }; - 17CB9A0E6AB32F0A2C49C5C41A0AD87D /* document_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0797522F0757818688768EF3E2DDCAF7 /* document_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 17D5CE14DC89AF7F6F6E014CF0701944 /* asn_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = EE63AC1FD47F00F6B061F81485AD4DB0 /* asn_pack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 17DD16B110B458BB23E11CD9704AD7BC /* FIRSetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = D11F8528FCA68FD9E9D3DB4A443E448E /* FIRSetAccountInfoResponse.m */; }; - 17DFC3B49B7FCB28508C1C1C0C564EAB /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 3A351E0FD4E085ECD644A596488A38EB /* exec_ctx_wakeup_scheduler.h */; }; - 17FC96ADA902E04835E083D5A5B00FA5 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DDC87770B5482CDB35C42F1DDF578D42 /* manual_constructor.h */; }; - 17FF621FFB9E9E084EA018EEAF31249D /* FIRGameCenterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB0BB5E25F9A4E8A7A014ACF9A4963F /* FIRGameCenterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1803501F21FC02F09230C1C2C3EFB06C /* http_connect_handshaker.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 86923368E9A5ADF0DDAB0080F478DF15 /* http_connect_handshaker.h */; }; - 1808B194CFFAEC369BF30F7CBB5770CD /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 165AF293299953E36888270D3420C4FF /* certificate_provider_factory.h */; }; - 1809E4EC3C96BC9212A3027878D84C12 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = C264B61845741E4F457B9EDCF2981396 /* status.h */; }; - 181084BF5E54EADD3EB87156267BB7C7 /* pick_first.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46C163AA895CED2B35401CB704316C16 /* 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"; }; }; - 181BF56643459CD95F18B7EE34017DBA /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2D3EDBEC2D4BF48FB40811BF9228C9 /* load_balancer.upb.h */; }; - 181F970334E2BFFB5814D8116997AC2B /* leveldb_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98C9ED461B398EC3B0DC4D473566E8B1 /* leveldb_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 18207968DC0A309752237C4D919F4424 /* grpc_if_nametoindex_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69A3A3909341E4214E30E4F0FAE601A4 /* 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"; }; }; - 1825304AF530A8E795B725DD54D3E185 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B03E6D535171A4A06590C4066009F2A /* event_string.h */; }; - 1825D47D21EB737C9208E71FD9087F8B /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 0CBD774048CF5B1198B6641A7BD58BA6 /* api.h */; }; - 182917711E966554150ADCE48C99C921 /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 79E0F27F37F7CB6B638A794C270C5FDF /* transport_security_common.upb.h */; }; - 18356AFC3136B9DFC0F1E6C19B965F14 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9240624901210D4C21AFB04C54534C7B /* any.upb.h */; }; - 18538B6F70ACA8D8F578AF5896D85BA0 /* raw_hash_map.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 49A752E8F3D274B1F36474049315EF94 /* raw_hash_map.h */; }; - 186200AC12202EFBAFB089C02A3462EE /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F960930908E8DB8DBD6B435D9BEA20 /* resolve_address.h */; }; - 186F8E2217A9C39475FCD7807FCAA094 /* x_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 42D62DC109DA630D1DF0CFA43490597E /* x_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1870BD3A0E688D1F337E0CB8C0D8D6D2 /* backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC7A402F407A94D0DB2197EC732C8805 /* backoff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1876BE18B8483C2A4D4417D015404737 /* channel_args_endpoint_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BFD8FDEFD9D04376216A771C75FD9C7 /* 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"; }; }; - 1887A4802AC1AF38672ABD9B38B951B2 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F7A57196AD9F95EE44B2819AA1DC7E2 /* server_config_selector_filter.h */; }; - 1888D17DA34BFCED3F90313AAC7307D7 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D46D7A1A5F88080AB5F54DE174971E /* http_connection_manager.upb.h */; }; - 1888D4C3363FF47CDB25D1F1517844B2 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D620E45BD3B627CFB5EFB06408CF0A /* xds_http_fault_filter.h */; }; - 189A6CAE7828507A99CDD96214B5DE8D /* ec.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9A3A1282A2E933B905C7D1C5054F0D08 /* ec.h */; }; - 18A60DCE11C42CE24045428EF2EF6B9E /* channel_filter.h in Copy src/cpp/common Private Headers */ = {isa = PBXBuildFile; fileRef = EACF1A8D502BC2BF2C5DE7ABC793A0B3 /* channel_filter.h */; }; - 18A9770DE1BD620805F0C1F9B643D675 /* internal.h in Copy crypto/ec_extra Private Headers */ = {isa = PBXBuildFile; fileRef = 128BC5B34F91B957F31D73633B525055 /* internal.h */; }; - 18AA9C87CF7B6C86DC14469375F01C2E /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 15BB6E7E26F87757A2EB4F37788D9228 /* insecure_security_connector.h */; }; - 18AC8C5ABF9599EFD53275E00FEFB9FE /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0C2095D264506F6C53E5E27B74BCD841 /* quic_config.upb.h */; }; - 18B624F63668D2BCAA0AA935E2691661 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 5A939795E3519A5887007458869F871E /* channel_args_preconditioning.h */; }; - 18BEC3BA8D1E8BD4D9DF2ED34721F03E /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C997D04DC51A54D4B2318DB1F5AEA7D9 /* endpoint.upbdefs.h */; }; - 18BFFA66CAA634E39FFA79903FF85FD0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AE66776D4A64507FBCBD86A561DCD6A6 /* internal.h */; }; - 18D08D96C65E6B917768C91A31A5C4BB /* string_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68AB35173A33BA8AF7A1A16103FF7ACF /* string_apple.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 18D1F3DE4AF35285FF15D9B7C582E461 /* grpc_alts_credentials_client_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6312472BA3F98D5BADB2AE51A14D38B3 /* 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"; }; }; - 18F3C358462446C7BA56934DC29CF448 /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A88CBFC83E1A48C857043DFA10E2653E /* internal.h */; }; - 18FBCB5B87EAF94BAC8E8AF542A0C3FE /* des.h in Headers */ = {isa = PBXBuildFile; fileRef = 439DC80A01D31D0DA565A05B973F8FB5 /* des.h */; }; - 190AB024C575E42D7FE1F2A7B9DC1D56 /* cord_rep_btree.h in Headers */ = {isa = PBXBuildFile; fileRef = 755713338B82495EAAE3EA194A5670CB /* cord_rep_btree.h */; }; - 191718181DBBBCF50BFB3470EF9634BF /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = C54E9148FEA94098F4CC3629623CBF7A /* resource_quota.h */; }; - 1918A8F2CC8BCDF0DA86737B37B5631A /* internal.h in Copy crypto/fipsmodule/sha Private Headers */ = {isa = PBXBuildFile; fileRef = 27B83CCB6B3B7094AA5781C0E039A723 /* internal.h */; }; - 191CE04932C8C4AAC9DC6AA6C9696AF5 /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2F8FE67065265A16B1610AC79E7F42F /* 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"; }; }; - 192433FC2E8E706EDFDD7DA1DFF8526C /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C0B21E3B7E429887BF70F8E1014DC5 /* http_tracer.upbdefs.h */; }; - 193BFE7E1E63FEDA3D50F3BA592C51E7 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4F6D54E934FA1E9E2820BF7A14052CD6 /* config_source.upbdefs.h */; }; - 195BBB45A3AA60AC8A28B28BA0650264 /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = E264E033AD2FFC131B3D21D214DE1329 /* b64.h */; }; - 195CD409B98301020160D17D5256F7F9 /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = E39F865726404450820E00BAFB232434 /* child_policy_handler.h */; }; - 196B2047464E9E8CE2F1C301CBE26491 /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = AAAAC8BDC3C4A01BA8BB78D86F0E41DE /* api.h */; }; - 1972F8A53B4BCDE0FD0086A286D09F9E /* sha.h in Headers */ = {isa = PBXBuildFile; fileRef = ABB514FAA54C3281A8E801B225061E5D /* sha.h */; }; - 197B64A8519AF7DAC853D2E1B85E3789 /* handshaker_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = D9CA3B79A51828D14120773EDA89C3C0 /* handshaker_registry.h */; }; - 197EA778397540ED7C725DE1C75766DB /* FIRSignUpNewUserRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D56EE2C10C9213AD3996334DF7ED268 /* FIRSignUpNewUserRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1984B053696355F9684BD313EE43EEB7 /* charconv_bigint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46D0D328706447157D50228B9F5CD475 /* charconv_bigint.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 19A5E4B2BDF5C7B48415FC32B9A96919 /* tasn_fre.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D2B48E16EEC1144F53F98D6DF73E99 /* tasn_fre.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 19C55AD418A401B0AF65412243BE5DA5 /* version_edit.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F4ED41D435D163928AFE2FFB17FF36C /* version_edit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19D5166F283A0D442BE59681B47E8F48 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2AC6F4188AEDBDD96CBF8092C5A0ABB3 /* cfstream_handle.h */; }; - 19D667A8B2A796693A762E42C235001F /* circuit_breaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EFA7D76D3BB268FC03E410CB6541E819 /* circuit_breaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 19DFEBA02E810857F3E52A2964884BA0 /* load_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = C36DEB3E1303FC9907F60D9A13C16113 /* 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"; }; }; - 19E2AEB3F61B8301C9B2D4CFB880FA32 /* FIRMultiFactorSession+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B990F482D91B469D396DBF9C358702 /* FIRMultiFactorSession+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19F160262CD5FFDFE5E16679D5817F42 /* random.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = CCABC239B4A170829EF83176891AFCC8 /* random.h */; }; - 19FC8718E966DE73EAA893D97220C20C /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4DB39031B2F9441E734C5161E5FA96 /* channel.h */; }; - 1A0629FEE82914D4CEC3CDC7E468A19E /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F84C8B471ED03E868C3C3F1135141693 /* path.upbdefs.h */; }; - 1A1E53062F7F35B09DC30DB627136198 /* time_zone_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 00AAD56CAED7DA6A268CE5099AD23829 /* time_zone_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1A238D81771E9476F30723056FC83BFE /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */ = {isa = PBXBuildFile; fileRef = E788A415E25EB920A6EB265B3185EDEB /* binder_server.h */; }; - 1A2C152263E294735874AF7CAFBD1467 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF741DBBAF3D551A3DDC41183993E16 /* backoff.h */; }; - 1A33B5C335B4527D472F350E794111A8 /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BFF89B8F40635722A0E211E8D2AC34C /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A36384DD4113B20C20D5C0E99609484 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 38CCC93525E024F10865F0FA8C041B7B /* activity.h */; }; - 1A4CD1B25C3259258F2B610E3062A64B /* document_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E27BC682ACD3CEF13F6C23E2283D152 /* document_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1A6C5112E7EE4C9F5B191769A697FE53 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 754702E20515DD719781A8F60A6C2285 /* rbac.upbdefs.h */; }; - 1A75983CABCE6A63D431C20E1E4AD534 /* low_level_alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49213FF9A5BE564C95F0B6A2061AF8A8 /* low_level_alloc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1A77BF593555926456FB041B3DA60686 /* memutil.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5441A34E201EDA4BD82DD79DF4FD031A /* memutil.h */; }; - 1A8301F742553E955A52CCA1E9E52173 /* hashtablez_sampler.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EFF1CDC13F7412C1746C666002D610E3 /* hashtablez_sampler.h */; }; - 1A98E09ED64475340CDD4E6A8F64CA4E /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 738262579719C3A86B6310A3C464C738 /* value.upbdefs.h */; }; - 1A9E0883C222FE3D2E2DA4D07A1E5E24 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F0186B61EF4267F27EFB04F25BABC067 /* config_dump.upb.h */; }; - 1ABB7A040DCA70480ADA1270E4C09634 /* load_system_roots_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79A4B04EC5A7C06D99B6CCB2A86DCA24 /* load_system_roots_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1ACA6207D4EB6C5EEE0BE827B15BEBD9 /* method_handler.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 92CF45BA77F86CCD6819B0D98F0C0BAD /* method_handler.h */; }; - 1ACCC930A838AA1CE8B386B017933DB7 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0AAEA5BD6F309E1297C47444FDF40F85 /* bdp_estimator.h */; }; - 1ADD5718A309E4C0442EF2FE6AA34719 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B8EEB34934317FC62E45B56F0DABEA /* node.upbdefs.h */; }; - 1AF0EA4785486B18F50FA67833636A40 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 930637C627FE0278A59ED9A4B6804A00 /* health_check.upbdefs.h */; }; - 1B1FD5DAFCA3FED28DD855D428895310 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = D7B80E822D54F8ACB4C46012E8FB7E6B /* percent_encoding.h */; }; - 1B2524061B105501D8054BDC97E658C2 /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3E0314AB7EE2ED65DE4C224C8FE62B44 /* nameser.h */; }; - 1B2F961779BF8AB00E65D64C0F30B098 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 90DD8408E8AA3022043E97E9984359C9 /* slice_internal.h */; }; - 1B3D46A77C4C4DEC9022841AB7BB05C4 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 18698A808976E119CF4B0AE4CD22F90E /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B4052CE7395B0E4DD2F03C553D2BCAF /* call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 64092E5672D484FB049C66D8FE31415A /* call.h */; }; - 1B4A81C58D23275C44E145F6B671E4ED /* numbers.h in Headers */ = {isa = PBXBuildFile; fileRef = 069431580008CFFAF0D9587C310BBE0D /* numbers.h */; }; - 1B56CD9AA81501BD450EEA3B8C053E66 /* scoped_route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F02965C5796544EDFF3A08F7ED61F859 /* 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"; }; }; - 1B57B8BA0F7BACF9015F84C8D8E4E1BF /* sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = 588A030CF215733900465F808EDA6BE5 /* sha1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1B5BB755E1146377BA9215A3114FD1F5 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 0910BB72DBDAB252986ABE9082C84128 /* subchannel.h */; }; - 1B5C25D5D4CB83384F8CBD7EB04689C9 /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 49227DD1593D1911AB2C7D0809DFB7AB /* timestamp.upbdefs.h */; }; - 1B5D42872846D8DA443D33B4081C827B /* number.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8877D7B9D41A73338304318D2795F633 /* 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"; }; }; - 1B7F451757829C6DD7FA94AC55497758 /* cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 65052151644EE762B6E4E04DA0AB26BE /* cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1B909E963BB1AE5CC1296F224CCBEDA1 /* FIRVerifyCustomTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C0842CE55EAEDE841060BAA8A1FA6C1 /* FIRVerifyCustomTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B9487B5F8D48B7567E40EDA8BA2E7C6 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BCB8C2ABCAD8DA94966E4B5E657A0E3 /* 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"; }; }; - 1B962F4ADA3C3D59983A9D029E87728E /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = CB97F2AEDDD7B018E84CECF9EA3CA927 /* iocp_windows.h */; }; - 1BA34658A6E4F62AEE66A46F024A5BDE /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE0B36B9BDC1CBC2C718224824657AC /* ssl_utils_config.h */; }; - 1BA416B3E26FF177DE91C9B340E09C89 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = D080EA6F461026ECFFBE2225B832311E /* hmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1BA85B719418ECB40D37C7771A5AEA2F /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB48F0EF1186F007742AE75AE55357F /* bootstrap.upb.h */; }; - 1BB6B2519441E6784704908A445AB760 /* chttp2_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 83331FBE99339EE695C88DA833274ECD /* 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"; }; }; - 1BC4897707F243D62EAE99832A290618 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C95978BDFFF773913E34C5ED2DB9488F /* cert.upbdefs.h */; }; - 1BCBF0BDA5E8B8E766E15849F3A26C94 /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 08E13ECFF2261B5D89C0EE63092ECCAC /* time_zone.h */; }; - 1BD2C43510F7237A45CCC31D97349D83 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B848F98AC8E5B6380E17439DE224151 /* udp_socket_config.upbdefs.h */; }; - 1BE3B391C14FBD0477B8EC5C48769BB1 /* pollset_set_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 34DC42CCEA2E96DE368DF549B28BCC6A /* pollset_set_custom.h */; }; - 1BF6252EE5FB9D82A16555B6B41D3D3F /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A96B86EE5F4532C937C73D91B261CBB6 /* ev_poll_posix.h */; }; - 1C00F9B22CDEF0264C0F18C377CF48E8 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 05A808793AA18FCA269DAA9351AD071B /* outlier_detection.upbdefs.h */; }; - 1C208963DDB8EEC001F64AC0978778BA /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0203E352DB193475DC72FD6DB884C32 /* crc32c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 1C2A5E9234EFE503100D840FBD991441 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = C56B22C77FA201B137512AAEE747F26C /* varint.h */; }; - 1C4747CB77184757594DCB9E73E404FE /* FIRUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F082EB7C70AA62FE666DD1D372858B /* FIRUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C51E8D5A5751066EF121E5CDE216DFA /* time_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = B771955A4CF01CC7A51B204023248969 /* time_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1C535B250464EFF2C4C7F88754BFEE71 /* cds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9764EE514981202FA1A4B0A4D1D7C3F3 /* cds.upb.h */; }; - 1C5958F887E1F5795F392DABEC172B51 /* handshaker.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 516ED07CA5ADD6BC0D6E047F1416AD7F /* handshaker.h */; }; - 1C81F06733A036FEBEF8E79B74AFC8F4 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 63D10555A6CCE00AD2AC9CA7250A7EA0 /* metadata.upb.h */; }; - 1CA18272D76CF5F10679E7138DC53A5B /* metadata_map.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5E64D68F5D8E7D028DE843A09A9015B2 /* metadata_map.h */; }; - 1CA9623CE76FFCEF5042B63D3CBC77CF /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 26636377EF83406F8696B60416119593 /* frame_window_update.h */; }; - 1CBDC2AFBA5FD159FD00D6A11E22EB58 /* dsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6FCAC420BD70D8C784331997B03988 /* dsa.h */; }; - 1CBDEA5E4221C18AD2B71467011CC336 /* span.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = CCB304597FED9277C05362D1BC6433A1 /* span.h */; }; - 1CBE4E1EC5BA9E4E049A3780F78B7CBD /* pem_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 520993DD615B962BCA83B87043F6B5C1 /* pem_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1CC1251E4F19DF198F5F03DDD23BBF83 /* beta_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 12135DF65E1F0C38D520F5E15E5F19D4 /* beta_distribution.h */; }; - 1CC924ABD55A453338EA6AFF17AA2887 /* FIRAuthExceptionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 03B4748FCF138B7F32F0D3DFEE60261E /* FIRAuthExceptionUtils.m */; }; - 1CD3D097D58D4CAD4AA9DBFC161EA544 /* dns_resolver_ares.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F497E5FFDFF8821B3417D2ADA45C726 /* 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"; }; }; - 1CD677994D351A34B18428C258B7EBB7 /* alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F77EEB1F31D4AE20B3422EAE116B8F27 /* alloc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1CD73F3F589BF29FEC08B25F2632BBA2 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F67E9DEFE42E74DEF2154F9947DB82 /* proxy_protocol.upbdefs.h */; }; - 1CFC64EE216CD09C85A441734994F125 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = C98EFC6D454E6CDF5D7C99C1E1FEFA5D /* rbac_policy.h */; }; - 1CFF2A7F9FDF287A21A533BB24E23848 /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 5308BA4B92B51B01985457197C540C9A /* poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1D093475B6C96245042BB39E0765980D /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = E4665355206BF6E344BFA82DC965B5A2 /* health_check_client.h */; }; - 1D09CF962A5566ABA49EAE0B1835F784 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB178BF359DB0F4B6B9B290983B7E82 /* base.upbdefs.h */; }; - 1D10C6535F93016C1D4441E312A6CD5F /* FIRFirestoreVersion.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4FF241228E1D7A5D8F3D14681DC4ECC6 /* FIRFirestoreVersion.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 1D36CC27033C50EF4EE09D5AD90CF117 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BE9F03D7DEE7284D1A168D66B5E9729 /* subchannel_pool_interface.h */; }; - 1D37E4233FD2EF3055C7A480F752BD7F /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE7A83080E48FDA75B4EACB16B8D1C3 /* grpc_tls_certificate_verifier.h */; }; - 1D3FD1668E5029B4B44324A1836B0A1D /* throw_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 519111FE31AF9C33771556A6A7CFF355 /* throw_delegate.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1D4A6E9C37D4DDD9871E2F9741067E66 /* upb.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = F87DE3ED40247E87F65E4242C07E580A /* upb.hpp */; }; - 1D4C826BC387230CC53B89CDA875DCBD /* call_op_set_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4C7E475A835489D536032B2126BB7F46 /* call_op_set_interface.h */; }; - 1D5F6B0181523767E50DDA531F79817E /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B9B61A0A883C527CC5C0C6C971E7AC3C /* common.upbdefs.h */; }; - 1D6836C4DEC8C4FE676598A7F220324B /* tls_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 486B2A05F8690A41848B07F503F37C85 /* 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"; }; }; - 1D8DF1A2771FEFDECB6D0AC811743B4A /* reflection.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = CADBE25E9532EE62AC80186E0C392EFC /* reflection.h */; }; - 1D930C588FB22AEB478C27C40B0AF6F6 /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 95E810A34AFED77E56C2233E4B2FDDFE /* checked.upb.h */; }; - 1D9337C78583D5ED7B078815563FD0AE /* pipe.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E43D3DA570D5CFFDB99A9610AB9CB35 /* pipe.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 1D94333C96B3BE6B0A4AF07DAE8412DB /* byte_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = BEE7451B0DF47427A671DA88BB59CC83 /* byte_stream.h */; }; - 1DAC20C4D620079751A7E5F867A41CDE /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 18BE2E6F39B4A8181A5196C60C54BE48 /* empty.upbdefs.h */; }; - 1DEB74353AFE8F17A009938E202FC704 /* ctrdrbg.c in Sources */ = {isa = PBXBuildFile; fileRef = 7CC01C94C1B4D012E0C86982C368B583 /* ctrdrbg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1DF50D697DA2D0556C89948F914632D3 /* connected_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0ECD12E084BC15CD3104BFA48CC9DE0 /* 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"; }; }; - 1E03AEE7303CAF7FBBED16BFD95D9A0B /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = D1BF1B629F0D9837451E1439695FA3A2 /* transport_impl.h */; }; - 1E1224FFCFF26F183869E78580E42A41 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B42C1109B2541422EAFA3594E8E83C60 /* credentials.h */; }; - 1E2300DC82191294A621AF4CD1580E31 /* FIRSignUpNewUserResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 505FD4E7742B62F8703900FF50585766 /* FIRSignUpNewUserResponse.m */; }; - 1E25DEB4A9D141489F7D0D7D653569F1 /* compression.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99CA1A6009A9DCE15FA186C735E652D9 /* compression.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1E4430EB4632C9463EEE5D5E67824AD1 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = 67F83FE6CCCA340F3A90FD5F07D208FB /* plugin_credentials.h */; }; - 1E541522F0F24364110BE65F636DBC79 /* document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1C937C3027E078D1518FD5A761B5503 /* document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1E5C33034EAE1B7FFB603B91BFC219FF /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F424B0036782D65A3C3042296B847DDF /* tcp_client_posix.h */; }; - 1E5C6961BCF71F63B993B62B2EDA4AAD /* server_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 61F9135CC68D8C62B3AB5225653B7597 /* server_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1E5E876423B32321347DA17B58F99BEB /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 34B5523EBCFB7AD3B0A50EE4F710AF9E /* status.upb.h */; }; - 1E61767BD763252C026885EF08F2A18A /* descriptor.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B55D6A085CDC8D4E64B07CF2C6F48223 /* 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"; }; }; - 1E6C189FD69F76E48531D298B722CA2F /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E0513206EB05495F91596B0BD900F18C /* xds_cluster.h */; }; - 1E6CF745A538204F8A680D5DEABFF568 /* grpc_ares_ev_driver_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = F386BE668E88666BA052FB9B36FDD17B /* 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"; }; }; - 1E75558BE4F31AE3FCEAAFFE0E0AE9AC /* socket_factory_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BEDD253E20BA09C7983444152C002AF /* 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"; }; }; - 1E7B41A627A42FB51AE554252C17EDCA /* str_split.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = D336A7ACE4B95A3B5F8A8D1E3EAF3099 /* str_split.h */; }; - 1E7E89BB4E861F880C36F71CDD035A49 /* load_system_roots_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78693431167DC8F6BE8B700193296E81 /* 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"; }; }; - 1E8467F8C6C3587513506B3E7EE13A1F /* x509_att.c in Sources */ = {isa = PBXBuildFile; fileRef = E007083C7EC0E69EEC5D3781AE86F704 /* x509_att.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1E92996B87D554CB5B8CCB67C05ED2E9 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 4514AD0A7F3CF10391B711522C92E1AD /* frame_settings.h */; }; - 1E95B9757CB8514488CEFF390FD856C8 /* bind_front.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = CF7FC3F5BBA14AB71E73986111C0C5BE /* bind_front.h */; }; - 1E99205335B2767EF7E1D5195FC11691 /* FIRFinalizeMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = C87A121731B0E72BA0E8122F4BCE45FC /* FIRFinalizeMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E996295F957C6FE72509894A3C9B1A6 /* internal.h in Copy crypto/fipsmodule/md5 Private Headers */ = {isa = PBXBuildFile; fileRef = 738E49FCC1C6A280494F479A639A4A46 /* internal.h */; }; - 1E9B82508B7C087B8F825AD2D57CDED2 /* closure.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 33F6EC1DF8D438D5408BDD437ABB19C2 /* closure.h */; }; - 1EBEC42444D86272DEE0332E1C0CEF1D /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A7283B85028846B7E4135773D656AE /* client_load_reporting_filter.h */; }; - 1ECD97D4C156D0CC9E9303DA04837D46 /* eval.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 316FC845923E5D3310C933ADD1C6D738 /* eval.upb.h */; }; - 1ED146D9807208607437B42F55837CCE /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 540F2B2E80B217D044C50B4B3024578E /* client_channel.h */; }; - 1ED813DDEB20A2C8C2297ADE6B7F351B /* mutex.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 93E48864D26805719298E22359DEEE0A /* mutex.h */; }; - 1EF2C48E64172E7E3EB6C362CA195F77 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2134484353B50F8458CA0604E5FD1AC0 /* bdp_estimator.h */; }; - 1EFDB31C933CD466FC8C3C40DFC90B96 /* blocking_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 00196DB86F777EE3545D422DE44E59DC /* blocking_counter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1EFDB4DC6B6B9DC52C3F56E8705CF309 /* charmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 171F490AD49757C7C83F7B0E22ACB1AC /* charmap.h */; }; - 1F00A97CAA65B09D81425F9CC5879B02 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C941E45990F09473D99E998FF8A7D2B /* exec_ctx.h */; }; - 1F0421A41674A7ADD9280D4E67DA612D /* census.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3E9C70FCB53E4F64BA9683873770CDC3 /* census.h */; }; - 1F1553F8F9402DAC2AE79BD23AE4D816 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F3C9AB9BAB9E5902D368EA28EC9D91 /* status.upb.h */; }; - 1F17079990F848A9226EA6C5C763AB76 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D27ED8FAF5D29E321B635DC5CCEA8C7 /* retry_throttle.h */; }; - 1F1AA2BCB53F515D3F13141717FDAA67 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = F612E893C7C7ED1FCB6396D763AD329E /* rbac_service_config_parser.h */; }; - 1F1E6B9E05A590EB21CD5DE79EE9E974 /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 07FF581D6BB3B05C9AF491F90CF4D209 /* trace.h */; }; - 1F32242A3B51D58F492F713C39A73FB4 /* socket_utils_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2BCBF59C495AE53E708AAD10DC35B022 /* 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"; }; }; - 1F3E3AEDF3BD08F0878FB83B06121805 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 093F493F9F1708A9BFC9D9CC9BC36975 /* transport_security_interface.h */; }; - 1F45F4B88532AE3B4DF0CF23AE5EA4F4 /* error_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D89D1CE8725C18039755580DB45ACA4 /* error_internal.h */; }; - 1F53997C5957F63762A0479883F2ED3B /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B52C63C7192772F7B0BEAE11C9E97AA /* GTMSessionUploadFetcher.m */; }; - 1F5F50D582B01FB621B5856E0D710C2D /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = E2490F9EFDCD38D0882590687B9960EA /* xds.h */; }; - 1F692E7849A5C1F011DD20CF7FA5F883 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7673737FC609A1373ED10CCED84DC1A6 /* grpc_service.upbdefs.h */; }; - 1F6C25FA1BF58E988ADB9FA06E8CABCF /* transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D73C62F74C60A0038816BE380CCFB1C /* transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F7ACF98CABAF24EA782D76511D11FFF /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28BEDF6F585B966C2A9B48BB898EB706 /* statusor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1F7C8249656889CAE3263020AA33D9B6 /* grpc_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0898967AE05308D359F3516E496E156 /* grpc_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1F85F53D04390A3F94023075DD174F2A /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 68972317BB82871141C5B4B16D8D7DBF /* annotations.upbdefs.h */; }; - 1FA3E7A2B14CB06BED2C0E00F4305731 /* httpcli_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EC5C54A6994BCDB5029DFB45D66AEDE /* 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"; }; }; - 1FAF877DAEBCE5261A77FA46316F6DAE /* syntax.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 98E19F5DDBD7553791BE7FBB55EAAF19 /* 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"; }; }; - 1FC1AB7B2E84303C5B2262944FA28DBC /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 51E3E996372F9596593B3594C5F3792D /* resource.upbdefs.h */; }; - 1FC48CFAFC2FFCA969C7B55F0A3C4DBA /* distributions.h in Headers */ = {isa = PBXBuildFile; fileRef = 07382E56313C06E32A5F9E349763D60E /* distributions.h */; }; - 1FD7325746C7543A8A54036232110A29 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C95978BDFFF773913E34C5ED2DB9488F /* cert.upbdefs.h */; }; - 1FE487CB90023B3FF839F77EE9D19EB7 /* sparse_set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = EA8A415FD529DD061B3E1E52B489E778 /* sparse_set.h */; }; - 1FE84DEDA6A3EEA968F2F6084579B87B /* internal.h in Copy crypto/x509 Private Headers */ = {isa = PBXBuildFile; fileRef = 7EB189B09A053244B12686A0DD331D66 /* internal.h */; }; - 1FE87333377B8F132C21270FC9283643 /* explain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89408EFD5BBDE9305EA1CF534689D874 /* explain.upb.h */; }; - 1FF1B164765BADC3B961D3628A86377D /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 910995BA774B1A6E8989A8FAEB7D4CEB /* bin_decoder.h */; }; - 200A44B9244021C95F5388B911F8FF29 /* FIRGoogleAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 787355FBC8B91E008ABF5DD157CE7FE6 /* FIRGoogleAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 201FB32B419CFA4A6293A507E423EE52 /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4D1B3173B704482EA24D9558A28E8B /* grpc_tls_certificate_verifier.h */; }; - 2023815B4E75684BE9AA3D0221F2C132 /* orca_load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F1F679A621E1A792F46EA9E04B40CF35 /* orca_load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2023944858590D4197E7F9A14CE617C8 /* deprecation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C619C5FDC8C2239E0C41D44C8CC2C8E /* deprecation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 202679E9800D1CAF08861EB8A7F3E01C /* udp_socket_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 739D4FF66BEB47E0F6269CCDE0CE4A11 /* udp_socket_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 202E0DB6062959815E943A44DC691AF2 /* scheduling_mode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20655B60247AFCFFA77E32454DB87EAF /* scheduling_mode.h */; }; - 20378404337BC5476BDF10E93298E7A1 /* ripemd.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 63DCB79C7DF7F13F26253ACA6599A4DA /* ripemd.h */; }; - 20501C829B0C5AA3B8176854800CF750 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4176D58D7F4745AA544A4FD9812706C2 /* xds_http_rbac_filter.h */; }; - 2069B2B2793B76C9F8C406CBEF26B682 /* channel_argument_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = C465A378E915E97B7FE609DDC0D28B3C /* channel_argument_option.h */; }; - 20909109F489F83FA2C7CF14B208E9E5 /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CC0A5D90843E279269F9A66DA5AD1C87 /* stacktrace_emscripten-inl.inc */; }; - 2098479D0553AAB69A265003144F96D9 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BAC34A20E46843D5D450731D82A01217 /* hpack_constants.h */; }; - 209E81EE89C386497C45B3383E691E53 /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 31CFD654A9B427BD7D1F2A1B4C52BF1E /* init.h */; }; - 20A2C080CF69EA521EF1380856D725C3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3B8A3B521B2D672486E73D221BB385 /* internal.h */; }; - 20B301313868A414EC94FF5D1C243C60 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9C4869AB3A39CC22A47E4160BAC0CB15 /* listener.upbdefs.h */; }; - 20C0831415895F4757305A4184B118F7 /* bitmap256.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = B3FCF85413C8149E93213E18CEE7EED6 /* bitmap256.h */; }; - 20C0EE4D7267F3426BE9B2BB1FE1AE1C /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = ED93ECD107BADD0ADC249CD6139437FB /* interceptor_common.h */; }; - 20C215087F916CD0FA7323818B518A4F /* FIRCreateAuthURIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 221B4E95EBE3473FCFEA9C187412B2DB /* FIRCreateAuthURIRequest.m */; }; - 20C31318E3B83FB91C1DCEEC6B78778E /* number.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 56AD1C946FE54FCFEFB46C426675FAC4 /* number.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 20D86B64529E718A25BE046530561A0C /* vdso_support.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C0C9AE08A070FC5514190C63DFA6258 /* vdso_support.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 20EAA6A21FDC4220CC6AB0BEF8C15353 /* FIRCreateAuthURIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 55FC2064FC20D690EBA7B427A819CDB7 /* FIRCreateAuthURIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20F8D04C33818A2B1FF909BE0795D322 /* bio.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9EA4C37FFC9BB6F490FF72042F5965DA /* bio.h */; }; - 20FBC790E0D05B59AF5E6417DD279BC6 /* proxy_protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E265193DCCE9BD9FFD5DB1CA1F821870 /* proxy_protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 213424BFD541770C4A0ED50422C711A3 /* local_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0090069E44E1463B0D85EDA9F28EFDC /* local_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 213DE200D121D71562642C1210748A29 /* tasn_new.c in Sources */ = {isa = PBXBuildFile; fileRef = 484F6034FC172EDB0E0A8EA1FCEAC697 /* tasn_new.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 214A70725A097DEE11021CF2C06F6AEA /* httpcli.cc in Sources */ = {isa = PBXBuildFile; fileRef = 220976223099B776CFEE5AEF80B7B732 /* httpcli.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2150DC2B6172CFCB143C021F3627170B /* grpc_root_certificates_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAD55419D7EC5B103AE513F2F4EF9CDA /* grpc_root_certificates_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2158A5B4B0F056CF2C0D6C63D9A0FD5C /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F7391DE403FB21A53277E5EE16782E6C /* http.upb.h */; }; - 215D1525172AEA38453B9276EABF53BC /* memory_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD10693D79C4585EB7768E62B52B9822 /* memory_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2167DB5720273D06D769F5010F310CE5 /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FF6CCAF64B4F5CEDF52B7EB62B9E963E /* atm_gcc_atomic.h */; }; - 216CFE591133430C9B5F7AC6C51C34C1 /* mimics_pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3BA59DBE2075E2D9E66626F98883560 /* 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"; }; }; - 2170EB069FC379A6871BCA00CBF12E35 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3704F22BF62630024FD265BDE8BC9F /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2175DE1EBA20452AD7082ABD1173EADB /* charconv_parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6170F6B8B3C4F10900FAF44A41BB2731 /* charconv_parse.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 217935C9040C1CFA2E0596D4DF793F3C /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3545A69FD8DBB9F1BF5937E8A99D07 /* status.upb.h */; }; - 21846496CFE3CE2588090E5B2EA1E9E5 /* x_val.c in Sources */ = {isa = PBXBuildFile; fileRef = B5155D03FDC418BAA79EA193BD56B51F /* x_val.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2191D22B111E3040D1A87A54DF6A61C1 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 7451A4279638DD3D6B8057DACAA6E0BB /* rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 21A72B0FB7A8BF9DCD322D3E4DF054EC /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FB871EBA96139E497887203510BD0075 /* cluster.upbdefs.h */; }; - 21B064316D1A80ED205694EF7B4B6FBA /* eds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EEB052A50906220DD857C7AAFA1FBE4A /* eds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 21CFCFF9F39CA43F0B2D9689C7702B90 /* ev_epollex_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = E2EBBE7064951DC0E72B9D6A5B1FEFD6 /* ev_epollex_linux.h */; }; - 21DBA0145A5630E876112D1B13038CA5 /* GoogleDataTransport-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 034BCB0F41D9A8B27B9EBCF60671A30A /* GoogleDataTransport-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 21EA8E6B3A3491C7827E686F6E033A3C /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 0A9302647F77DB9B0C47A2E75BA59730 /* transport_security.h */; }; - 21EC259DF6AC9AF9FDECCBBF29534E4B /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED4E1B1FA31185EF5FED7A8115E01BD /* path.upb.h */; }; - 2204EE0894AACE999722F8DF9AD8C0B4 /* str_cat.h in Headers */ = {isa = PBXBuildFile; fileRef = 205B82C2AE7FB26CE9CC8CABF4CA119C /* str_cat.h */; }; - 22067BE5680F9468CB286A82BCA33538 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8585BAC73F56B2FF65C8BB3C7A5C5E /* completion_queue.h */; }; - 2208108A43D5CA80D47D287BBB248A3D /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8D24F2197A3CAB3D035C336389193070 /* dynamic_filters.h */; }; - 220BBC8BDB55932CD0696BDEB0007805 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 1139487F571F09B49842A7C5D226CF35 /* grpc_alts_credentials_options.h */; }; - 220CE08B9A243768392773FBA38030C3 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = E23B9ABF6D6C4F37041C82AB78050532 /* grpc_tls_credentials_options.h */; }; - 2222A6FA99286A3876DAD32D4F4782D9 /* secure_channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = B935C96B194450D0E2081B217CB68D42 /* secure_channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 222C60DFE7B213D8BD5F0850E9E92E06 /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = ED28175BE8D554A752CCD22E4BE652CA /* channelz.h */; }; - 222F40007F844A2B63A5F36200316F92 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6C06250C657E62352B87D002B5152C /* backoff.upb.h */; }; - 22343A699B5A4A9EBA7E682CA7CA8C8C /* Libuv-gRPC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D31D663533283246BA26F6E695B978 /* Libuv-gRPC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 22357C68CF2E62412E776E6D86EE6122 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D93BA2E1EAFFA2E2E92C9EAA934DE96B /* resource.upb.h */; }; - 22378BCD48B0B4A53A0621ABFEF11420 /* async_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 4201631D453E8A4896B50ABEAFF06D13 /* async_stream.h */; }; - 224249C11FD39388385E276B853E1111 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C6DE9B717DC0FEA593046F3A90FDB8AF /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 224460620E8A1FA039DC40CC5D6EEF01 /* uv-common.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9603979BD46FE61BDE7CEB10C6AD4DCE /* uv-common.h */; }; - 224A475CEFA911C8327DFBACB9C014AF /* cordz_handle.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 95D6D17DF99D5EE2E2A39F06166EE31F /* cordz_handle.h */; }; - 224EE7893EA2928238C8C940E15679C7 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D8CF18C9D9D17FD06BFF9E3C01EBC9B /* channel_stack_builder.h */; }; - 2263E92FDEFAC1F9743CE8C53CD59ABF /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 26E13DD99206CFC900786253FACA018A /* jni_utils.h */; }; - 226CAE441091A856B409B7BBD9C8E6AF /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 31CD1B87BECA28E0D1476AA7FFF433E3 /* lockfree_event.h */; }; - 227F09BB8D4AD90B3273FEEA243BC17C /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BEF1C798DECA77BBE0F70C5D42BF8C /* overload.upb.h */; }; - 22A1F32F280E854B1A01D2D075D3E02F /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 93CAE6005958CC133C4263A5AA707DAF /* grpc_ares_ev_driver.h */; }; - 22A225BF09C82BBC9B12FFA8DBF489D6 /* v3_alt.c in Sources */ = {isa = PBXBuildFile; fileRef = B12193B39AB9C9AD0B1D620F66457FE3 /* v3_alt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 22A52C2FD7CB3181F4B665FB7CF7DE40 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = F87DE3ED40247E87F65E4242C07E580A /* upb.hpp */; }; - 22B693FC722BAA25E7FD77FE37EC6FE7 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3BA76983ACBBCBA404FCE5F0C36FBE /* local_credentials.h */; }; - 22C11A96A7E6AE074B189183BE6236FA /* internal.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = 5388D55251110326A062F6A5A4FE54A6 /* internal.h */; }; - 22C20028CB9374FD9341F738FACE3082 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = B2800F81891250A61C71F852B7E69924 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C417771ADB28976C102D5826607837 /* randen_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = F005F70494ED628BB86D4C7FBF979460 /* randen_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 22C4EDBF6E3CC30DD47BE9ECA8160438 /* a_digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 251C9D15ECB381146A595D0AE61D8549 /* a_digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 22C51C1B084B561B67AE184E3A3AFDC7 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 757DF5613183737FB611AF88A607CFB6 /* wrappers.upbdefs.h */; }; - 22C88D569889E0BE4561A72B8248C220 /* log_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = B64CFE40FE5A39557FA57AA845062583 /* log_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 22D47830E99F3475DEA0C3A0C061AA01 /* reference_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81F35E616D7A24D8E2DD72A96E7F1047 /* reference_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 22D88C46005208F5990440AD368BE150 /* slice_string_helpers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 849051CE414BC29F7A237A39EBCD55F7 /* 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"; }; }; - 22DD0AB35E1451344465628BDA084A56 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B52EFCB10325914C42FD4CE7C2EEB6 /* FIRVersion.m */; }; - 22DF469AF9BAA129BF3684071C888DB2 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8169A1A883278213BAE6489152180CC1 /* internal.h */; }; - 22F7D8AD9EBFEDB7645EECA414DAF968 /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 629946C6BD3C66B3D8F2B92BEEE509DE /* compression_types.h */; }; - 22FAC31E89B35BD8253212C477B9ABDA /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = 851A72E7FAE45B9C9A9C917210006951 /* xds.h */; }; - 2316E1BF174DF5D5FB18288D6E1AE548 /* pollset_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 53D0AA6AE75C3C240E84BC6339E5DAFB /* pollset_custom.h */; }; - 23256CEBBE6CF3A066FD511FBED33230 /* msg.c in Sources */ = {isa = PBXBuildFile; fileRef = 2788C5C4A897FAEC338FEA9DED0482A7 /* msg.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 232DCAF7CCB11256F7F74405B8202082 /* FIRGetOOBConfirmationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 0277278048B10C5B447C256BB4AC9539 /* FIRGetOOBConfirmationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 233806BC76972D1FACE5CDD3B4DA370E /* alts_zero_copy_grpc_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBD806A3ABA3D64B269E18BE83711909 /* 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"; }; }; - 233D595433841FFD7933E6B207919FFB /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FB20948313E52E2A54C81FE6694CD207 /* bootstrap.upbdefs.h */; }; - 233FA1F128390FA94A64686943BD139E /* alts_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = D1AA625C021C4761EAC2FD5B2FA5366F /* 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"; }; }; - 234F4E3EACEC8D7E7DA5DEC01BC31002 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A3DC25092FF62F5600E56A662F43DC /* server.h */; }; - 235118F6085A6E9429EE4ADCA38F4766 /* ssl_session_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = F96007A87BF3248224B01BF4AB37B1C6 /* 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"; }; }; - 2352E2AEBC7C7D5782C3CF2CA489937D /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = BE3078062B091F0752096479B2C7E1ED /* alts_counter.h */; }; - 236A133D8A0227DE946BF79AC1FA2C58 /* default_health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = CFBF0C6B12A6980CE9C1AB6441B71051 /* default_health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 236E110908E94602D0A8FF2C9EEFEFBF /* FIRAuthBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = 657ADD2FE6B1590B50E001526DC51AD2 /* FIRAuthBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2375B42494C7DDF012F650EFD52B4AA4 /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F71296438012632256D049B9544C1A20 /* lrs.upb.h */; }; - 237DA81805E873D8132CD8D019CFA8AD /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB0FEB99427CEDF311876D733252FD3 /* semantic_version.upbdefs.h */; }; - 237F0B27E6C549F459082793E4690157 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = 25E4A7E6BBFBF0EA50EEEE38D563D632 /* chttp2_server.h */; }; - 2381F1499EC8812266C19FA651EC9EAB /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3078062B091F0752096479B2C7E1ED /* alts_counter.h */; }; - 2384821CD92FDD7EF78CF02F073C230E /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 07FF581D6BB3B05C9AF491F90CF4D209 /* trace.h */; }; - 23852202E509E8776012859589DDF2B0 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ADF5062370B339DB0986D23451D2F61 /* struct.upbdefs.h */; }; - 23886AFE8EC4A64C2A257935ABCCB813 /* float_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E486D36F2AE99C0A115C39B41F6D75C /* float_conversion.h */; }; - 23925BC438AC5056922F37F2F98C52CE /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05618ED55E3E7779BEAA558D074CE80B /* route_components.upb.h */; }; - 2395D02FB2105F86C8A876D8A4442458 /* time_zone_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 51C01A0A42203BF3A2AEBC597A235616 /* time_zone_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 239E77FA35B12E2AFFD491BC4C2B83C3 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8945C5C7F9E2F863D8819348D0F453E /* http_client_filter.h */; }; - 239F7B206E310A374614A82EAF3D1033 /* string_util.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 7F7B28EE0F74B9AD0BB0A3DF09BC5A61 /* string_util.h */; }; - 23BC133A42350F7974F59F11F3A1120A /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = DC8552EF2CAB93C5141DBBD292FFE15B /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 23DF611490D0C1E27C37F3A891C2E6C7 /* ostringstream.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F56838B6870AC5CF4883318A61922AB2 /* ostringstream.h */; }; - 23FEDD023F63EEA71330A969F6F263C5 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 882FCB0DEF4E1541895FE27775FB4E05 /* resource_quota.h */; }; - 240A3E26E441BCDC6C585D1FD7940931 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9B49254C141180AB74FCDA7F84AF04 /* slice.h */; }; - 2418E9C682C8C2DBD8B51AC54E31BED4 /* internal.h in Copy crypto/fipsmodule/ecdsa Private Headers */ = {isa = PBXBuildFile; fileRef = C430DE4B2EA74D3BA63BE58F917EA493 /* internal.h */; }; - 241C6FE8BE9FBE6BC4BBA26EBB8CAEE7 /* unscaledcycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 580385EA62D5F2B7AE7A7FA62157691C /* unscaledcycleclock.h */; }; - 241D71E14F2EC6E0175BF5C5E5A61E0E /* sha1-altivec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F6E41B7326949C6F5E48863E5798E38 /* sha1-altivec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 241FB6649284A8B91AB526B46E46E3DB /* ssl_utils_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF5501B7CE09FE9C7876F3801A3A7F8 /* ssl_utils_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2428AA2C86015084A662663E9B90B7C0 /* pool_urbg.cc in Sources */ = {isa = PBXBuildFile; fileRef = BEE10044734B3238201A3C676591E4A9 /* pool_urbg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2429C2967F88062C423C742B521003A0 /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = A3A05BF3541B60D0B0B9BBE0469DC51B /* global_subchannel_pool.h */; }; - 24322671F4F7618428AA9DED38269B72 /* srtp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8C10ED87C02DADCDA8F7C6BC35FB31CA /* srtp.h */; }; - 243E38980A538CFC6E50871C055BDD13 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F57A0E11DE528394AA16EC7F0E6A1247 /* resolve_address_windows.h */; }; - 2449BA184A44B2B1C56713DFCDC44FD8 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A74F99F5B2B3F4DA94821916777061D4 /* resource_name.upbdefs.h */; }; - 245697D10E5A9AADF4AF58EE6185AED5 /* FIRMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 42CF32CD743B55BBCC6BDDCE7C8A802E /* FIRMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2477E06757B202BA418324BDCFBB0F84 /* status_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D730797E39DF8B969E19E57AAFF8FEE6 /* status_internal.h */; }; - 247D986A529D6803EB0738F24DC57D48 /* v3_conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 91403BCF3BEB47BAB571115894508A85 /* v3_conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2483C39A4BFF7BCF7B6CA112367135CE /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 71069D0E4B6D7BB8F75C58778D839907 /* parsed_metadata.h */; }; - 24A8DAB16C79AAF5F4596248AD77F262 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 804EBECD19957CB235E9415F60286B92 /* quic_config.upbdefs.h */; }; - 24B066D83EE68806CA4F4484F09490C0 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 68C2F2ED49A02598CF47272D3EA5EF36 /* xds_client_stats.h */; }; - 24B6FAE4876DE52320459AEAC2E54E92 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = E2A467762A7C41D8C3DE86CC6E2BE3B6 /* huffsyms.h */; }; - 24BA081DCA20D61A1A5A20CAFB16A80B /* path.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F9B982D25E697F8CBC0C37D13FB4562A /* path.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 24C6F6FC103989C274C48DECD6C88482 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C3CFDF38FDFA63226560FBD6A6A8FC /* global_config_generic.h */; }; - 24D5244AD29424B05E5BD200B357F8D7 /* curve25519_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC4CA131A02B29CEF60507DB1FB7CA0 /* curve25519_32.h */; }; - 24D973CCCAE85F7EB29402402FB06E7A /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 50026C6E0C9602DB8FF5797E20E827C0 /* xds_credentials.h */; }; - 24E2D935C694BFA314919E87F923F8CB /* queue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6291E4CE586417037130E076746A1DC4 /* queue.h */; }; - 24E30AB419973D32D13926C3227DB440 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5BE9B172CBA2D6DB99D3CD2D96C5D90A /* resolver.upb.h */; }; - 24E561B0C76618292383D9731295DF82 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B8BAAD8DC1B8F6E696C82AB47F3634A2 /* ads.upbdefs.h */; }; - 24EEA2D1B38364C20379A094EB3D3234 /* http_connection_manager.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 906C7238D6A8B1A8D4803481347A4160 /* 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"; }; }; - 24EFB1A2055BB3B4759502EC0DEE2751 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 851DB4108E572EFE5F11384675ACE17A /* filter.upbdefs.h */; }; - 2501BDAE9D16B10B48393444B8A4350C /* xds_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A7A8C4E3175798BFBEAE05928BF686E /* xds_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2505600C6235C08CAC9370B313EB072A /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = D32EEB7FA859C547483EFC63973D03DB /* crc32c.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 250BABE91DA01966E3A938B2024EF213 /* create_channel_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0BE8D08025C9530A7003EBB8368559B /* create_channel_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 250D1D453A1623E3F8FC3A867A177BB2 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 09FC723A640A7C6E406509A5D7C99137 /* slice.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 251000F0D046355BBD2A1DB1172645A4 /* ssl_privkey.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AB3814B23C67744B7CECFC49B590473 /* ssl_privkey.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 251D6C7ACEC7CAAF7DAA77977D261F50 /* tcp_server_utils_posix_ifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8FE937010042E5CD11DC4C146355C53E /* 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"; }; }; - 25263443450670127FCEE9AA3F7F683E /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AAEA5BD6F309E1297C47444FDF40F85 /* bdp_estimator.h */; }; - 252E754C06E00B6EB8DDDF75FE811F57 /* cord_rep_btree_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 93B49580A9E0B5869DBBD970105CF082 /* cord_rep_btree_reader.h */; }; - 2535D895015BD67CB0D61E9DADCD7F1B /* atm_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 14551A96E7B02E8A89F4E0A37FE0DC54 /* atm_windows.h */; }; - 253C17F4A426FF3212F792DACEB8F629 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A72859B749BE05E10B9A733448830F3 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 253C732B309744031DF6B4D77428A8E7 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 803EE5BFD0498CB7975A108834085F97 /* chunked_vector.h */; }; - 254828A45A685B3A88D8596DB9080F15 /* tls_certificate_verifier.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = FEA01C9D6CF7CF60C94967B2E89B02D5 /* tls_certificate_verifier.h */; }; - 254DE8DA21B5707C75E1638980EC913E /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = DC82D6E91B4E76AF1EF3C92F3AEA9A14 /* dynamic_filters.h */; }; - 254E7F28A8C6A00080A032F98BB8712B /* protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BCD98D145DC8703C436C52D1817B837 /* 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"; }; }; - 255549BB481C7F9A39A781CE48615367 /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B2EDC81F15CDAEFA824833F44EFCA60F /* resource.upb.h */; }; - 2558196BAA852E3B0E26B60F5D1ABA45 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 50D283A08685D59D0445348AAF1EF5B5 /* value.upbdefs.h */; }; - 255CC9D3AE6115A39B2A9B0090B0C34B /* xds_route_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C4AA539E9FCA0404B32736D54E2329B /* 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"; }; }; - 257D105C723F074C01397F22D43723D5 /* document_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC45D0BB316586D6D853CCF62185FADB /* document_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2592D208D78C2FF3F846E120C62D83B4 /* timers.h in Headers */ = {isa = PBXBuildFile; fileRef = B2009767EC2AB43C81A67E16B43E0DC0 /* timers.h */; }; - 25A0C11BB995E1BD3C1E72E7A23ADBD6 /* exponential_backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45A8734345F07709480D7823C549FED8 /* exponential_backoff.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 25ABB4F040D95DECF9AA7F4F0FA08FB3 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = E732719E9F47BC742EDA62113AD8D11E /* http_client_filter.h */; }; - 25B2895E11B6201FF05598BFF5FCA7B2 /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = AB2EF2AC113FE66E4FB3FD3391F5E241 /* security.upb.h */; }; - 25BE22A2AAB74518207B55427F8A6A29 /* ossl_typ.h in Headers */ = {isa = PBXBuildFile; fileRef = 11D542BDE4D613A4E0F0C144F1E103AD /* ossl_typ.h */; }; - 25C8F8417C5B708BF924DEFB742EA75D /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = C07B7906FDE9FDCEE614599B22B4C281 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25CACF2008B191A6EB4C23BF8DFC3676 /* thread_identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 63E8F197A90763ADEAF913245931A07F /* thread_identity.h */; }; - 25CE102CBBBC86DBEB24E74492C182BD /* proxy_mapper_registry.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = DD72F7E5E08707846370D7D0F991BCC6 /* proxy_mapper_registry.h */; }; - 25D14F19B62E1AA9182E6ED6C5376A10 /* rand.h in Headers */ = {isa = PBXBuildFile; fileRef = 213FAC7B282298253E9DE2551076FE8B /* rand.h */; }; - 25DD5704BD5FD0352AE13092DE521BE7 /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = BA765361E698A45CBC71C7A420B671DB /* ring_hash.h */; }; - 25DF3C76A1FCCC21A7C9C1238B88DC59 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BDC6E666DC47C867D5776A20B0F742 /* xds_listener.h */; }; - 25E4B6F5CA3D96314FB46F0502899861 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = FECB7D91E22F4D2504A111623A6A6ED9 /* reflection.hpp */; }; - 25E6388013F2956DF8488FC434FE9F10 /* grpc_security.h in Headers */ = {isa = PBXBuildFile; fileRef = EA58CE37525AB947BF6101C7E0E176CD /* grpc_security.h */; }; - 25ECF461C5C82C714540913A8504B23C /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 21DCCDDEFBD25A66AC91F8FCF8ADDC6E /* fake_transport_security.h */; }; - 25F494E42A300B483EAA0A06FCD930E4 /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E260591847D6BC81E6A8BD445C5C9E1A /* FIRHeartbeatInfo.m */; }; - 260540DA8EA0075F1B31C0E8B73567AF /* rbac_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A36A494775EB023FD732D2B6A27E117 /* 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"; }; }; - 2610B832E80A5070FD6DB7D59226B2BB /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = 3A5CF7FCC3A671D9CFC2BF9433FDC736 /* xxhash.h */; }; - 261782F6533180B0A571A3A0E48BB5CF /* queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6291E4CE586417037130E076746A1DC4 /* queue.h */; }; - 262B21A262D3D00B9D007BE953A5EC99 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 921A45EC6E7685EE8DEF303A9074BF72 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 262F80871565D2F606CEDC5893D46F84 /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B44DAC196971F034F3867F3EE421F42 /* health.upb.h */; }; - 2653B15F43CB0879F985FE23C7B684BD /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 3682895FACDF0D37E958708E547839C0 /* tls_security_connector.h */; }; - 2658A6BB3081A9939EBDC5C6B25B8AC9 /* futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 53212C870257E407514D0B7EBBC7CAE3 /* futex.h */; }; - 266B9431AD0CF3F5833E26402D89D5C9 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 8C3ED1EDFC37613EDB539E2BF7DEAC51 /* xds_channel_args.h */; }; - 268CF1F1E32605E90E07B1AD9CC3EE81 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CCF5110D48217F6AC727BE7DF28C9F /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 269BE54300FAB03C2722F847146E4808 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2F89D8C7938A637AA1A669F498A3845A /* resolved_address.h */; }; - 26DB81082FDA3B4E9C3BD01D62C461AB /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF14B3D35E555BD070ABD8E3F6AC264 /* alpn.h */; }; - 26E1398CE81F728A6D682196C2183700 /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 1CE7A83080E48FDA75B4EACB16B8D1C3 /* grpc_tls_certificate_verifier.h */; }; - 26F4393804F46670D27735D67AF43ADD /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DD47E50FD816BCA648E6A62FB33EF373 /* time_util.h */; }; - 26F9F5DBF76A82604503D0A71C02F211 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DF5A86AFCAF4C686591D657333B86D /* external_account_credentials.h */; }; - 26F9F99B2F274539E0FE3C3744C72C08 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9D365C16CAA0B8C6282A3774A4E36C38 /* xds_http_fault_filter.h */; }; - 26FE9D9063762DE0056DDF36BD75F5A0 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 28FD653AF6EE2E8E0101B0B496730D20 /* timer_generic.h */; }; - 27009679EA9B4F70747891A34DC3FCD4 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 9E7A22249F18452FC677E82BFA9F8256 /* validate.upb.h */; }; - 271997C66EEC8BC966FC3BC7A5BD6D77 /* FIRSendVerificationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = C96CFA094D08F6CA77B07E8EBBC2CC98 /* FIRSendVerificationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2748B2A8786D43F4C6BAF8FABE571160 /* handoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89137C271D9AE7D2F71EE1A95A351912 /* handoff.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2755E51BECDE7BE9DDAEA860763B99FE /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ED14E173B56E9601D4D0462A4EFACFB5 /* secret.upb.h */; }; - 276BB4DA6A4FB1EC129297548B373636 /* bio_ssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFAD82D80D202F12003E17BFE2F36495 /* bio_ssl.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2778B56D8760614C1211D47FEA8FD116 /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 54D2E0296904A01121472F6025702E25 /* time_precise.h */; }; - 277FB2C276E6075190F8BD5F93EA01CA /* auth_metadata_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A0049FDBD6B133C6A7CA37A895F911 /* auth_metadata_processor.h */; }; - 2780C543B21248ACF27C945D5BFDC9CF /* boringssl_prefix_symbols.h in Headers */ = {isa = PBXBuildFile; fileRef = 803EDF75568F55113E38FF23D1F613DA /* boringssl_prefix_symbols.h */; }; - 27859D51FD5D64EE8691581D967787D3 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4359F7F3150EE9F87188C87CFE87FBCA /* cert.upb.h */; }; - 27907ADDF445A979FA2CDCE18EFFF939 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A511B16F2FB557F764FEF88CA4007B1 /* status.upb.h */; }; - 279225982115AF6A186DDEA6D2EE89FA /* xds_channel_creds.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5F31A1F83903D5B2B2BB71333CD9BED3 /* xds_channel_creds.h */; }; - 279AA4BBFAE7A7A1A1BEA6937DF90F63 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FF46A9A7423D03217525584FB0EB958F /* http_connection_manager.upbdefs.h */; }; - 27AD6043AE30664D6EC92497D0C5AE23 /* validate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D242905080C9B8F4F29CE9A29007048 /* validate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 27AE495C81069E36DDB1FDD60B773E58 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 738E49FCC1C6A280494F479A639A4A46 /* internal.h */; }; - 27B628D609E4FE9B5E97244D67DCEADD /* timer_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4346B0DFD149A2399F33D6770A67B990 /* 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"; }; }; - 27BAB5EF6DE66AEF77AAA4FAEF135F64 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = A717D22B8ABA4AA45090C343CCF71B65 /* pool.h */; }; - 27C447E61EEC94C6709D98BCE69132F1 /* client_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62C9039CA3722F6D91171D7881B1BED1 /* client_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 27CC543D4DBB22830E70A6D3204510A1 /* symbolize_elf.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = E03193938D6B2092668107D6C262DD29 /* symbolize_elf.inc */; }; - 27D13D73130981DF4752AE54A45CA47F /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 28F5EAD524F4BBF3F2865235F5FD5927 /* 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"; }; }; - 27D17847F4A35DF821C219DC283A7525 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF483FE30166C6F9C092B78F1DA9732 /* xds_resource_type.h */; }; - 27D95D8BA104417A7E9ABCBD68289763 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A4E17436AFD5BB6F11D2BE7382D1EC24 /* endpoint_components.upbdefs.h */; }; - 27EC6DAB91CFDA40BAD1A7ECCE78C6D7 /* accesslog.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4462AE185F80EE00EE01D49339A5BEC9 /* accesslog.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 27F8C524F455914F7F2F600C1A791B08 /* validate_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86C089F9BCD9B36830F63A147C686068 /* validate_service_config.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 27F9637A893777D85A47D160AA4B53CE /* symbolize_unimplemented.inc in Headers */ = {isa = PBXBuildFile; fileRef = FCF0B6D2ABA038FFFEA9BAC95BB318AE /* symbolize_unimplemented.inc */; }; - 27FCB19055855DA571D67B7F43EF4A0C /* atm_gcc_sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = ADE7945AC9854C300F67AD6CFFA4BC35 /* atm_gcc_sync.h */; }; - 27FD5D03FEA5F8E5E513A83DC4940F1C /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = B88F781463BF5BE39A8E9E8A7DAFEF9D /* ev_poll_posix.h */; }; - 2803DC6FE128E3AEAF7AC84B7092EA91 /* core_codegen.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A048F6F5A158C9E6ABC79AE89F2232E /* core_codegen.h */; }; - 2811E3962449CF8C1B67578C2E431E82 /* message_compress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E51B30EDF4ED3DE4FE989BB8F808ABDA /* message_compress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 281EE591AE66AA98F8FB69CED0D2F9EC /* a_bitstr.c in Sources */ = {isa = PBXBuildFile; fileRef = FE75190669FC3181BD3F33A236258758 /* a_bitstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 28212C3E9653A24588AC43A537FBD5F1 /* aes.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1C4E3D4CC02E345C5BD0D5E5FD013CD9 /* aes.h */; }; - 2832313CAD365848B0203B5D72534263 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = F8F1D4906E47871EB1E4F74A6363EED4 /* grpclb_balancer_addresses.h */; }; - 2838B32CD20DED75A74A46117F1692FE /* FIRPhoneMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = E3BE049556DEE07E98DCD21FF9ACFB00 /* FIRPhoneMultiFactorGenerator.m */; }; - 283E02C273B79A1BFF54968C1379A4A2 /* uniform_helper.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 22ACE164D2C00A15FE6817EE0DF044DC /* uniform_helper.h */; }; - 284133F660AD491CF310C2F477D07BC4 /* bin_decoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBF329FC08B1C7ED5CA09A4920080461 /* 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"; }; }; - 284646318DA278D70802F928495FB514 /* key_field_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F885CE4DB729CCDCBEBF5F515800D4D /* key_field_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 284861819E16DC1FC134D1C05E0804D5 /* backup_poller.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0C69BFBFCA5CD5C18A86F75037AF1DF /* 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"; }; }; - 284A3B2762BE035E8B79939FEF0A3F16 /* transport_security_common_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2BE9CF2096C3004AA4744BD750E3AFEA /* 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"; }; }; - 284AE57A56E60FB1D5F3B2E8B97749A0 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7C8764CCB1D81C3267CA651EBB7030 /* env.h */; }; - 284F2511C61559F30D4A0AB2ABD7EB14 /* FIRAuthWebUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 693515DF5F490BDCDBC5AAACCF7D26E6 /* FIRAuthWebUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 284FD7D93C9E223D2B0F4B0340F0A84A /* write_batch_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C76FA5CDBBAE22AAB9DBFBE95E3B330F /* write_batch_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28647D3DBA713E891E664E5BE120552B /* endpoint_pair_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43E9E567C990AA1967FF1BDE5F12269A /* 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"; }; }; - 286553151595FF0230A09DDF5F38B5F6 /* evp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3906597C467D6690628F0B6330797BFC /* evp.h */; }; - 286891174ACD22737905E2664D8150BA /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 2575528806B23DD6726B5F4B9FFBB8F9 /* timer.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 286EB755569CB591B4C0196BEC59B6E4 /* writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = EE0D76860924C5B664B07C8F94ADA018 /* writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 287AF1378BCFEED397E22B7923F6AB3C /* str_split.h in Headers */ = {isa = PBXBuildFile; fileRef = D336A7ACE4B95A3B5F8A8D1E3EAF3099 /* str_split.h */; }; - 288891ED9218DEFD672A6FE91C84E49F /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F4CF16F8909913BF91E0D6289B56BE /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 288B7A91EC465304B6DC80783A45280A /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 54C0603450EC2B6A1B7F48C52B8955D1 /* slice_refcount.h */; }; - 28B61607AD36985F17529C3C43467F8E /* exec_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = E311060DD11CA125094EE84B5A3793E2 /* 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"; }; }; - 28BA97134D12CA6E7CADA39C220D8A93 /* GDTCORFlatFileStorage+Promises.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C5F1C21EE4F9D8ABD9A08D695571AB /* GDTCORFlatFileStorage+Promises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28BB7FB0F56CFFFCC3ED44C891D5594D /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F0490F09EFFEB632ED4629FE5DFB41C /* custom_tag.upb.h */; }; - 28C51D05FF5DF54675B3861174666EDF /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A0E0BC8A2E3A70F65E0772F6862AE16 /* message_compress_filter.h */; }; - 28CC6FEE482E8B18FECD98DA80460A20 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 937A60F9F763A70371066B2C21760323 /* iomgr_internal.h */; }; - 28CF7831FBB992F75711FFF69C7EE4A5 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 008B402552EA81359C03A2F1A123C46A /* fault.upbdefs.h */; }; - 28D79D67D3D23F627DAB7F8EE21DE631 /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 0146E1CD2F2087892BF302BEF9ED10D1 /* global_config_env.h */; }; - 28DD5A180E583F82F7E56732FEAB1E79 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8CA55F955A8FE8947084FA9608D6EF /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28E32B3B791BDBEC86364A66A7F797CF /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B3591DAABD127666506E210FB2D0D5A4 /* xds_endpoint.h */; }; - 28E7106345B9C1379FA509FDF49AEF86 /* posix_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 35A187026BEB48CC183F2B53F9FD0FB0 /* posix_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28F696F6D49396CF8602763EC8A48670 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE9E31F364445B9B1803AC0FEC39BE1 /* gethostname.h */; }; - 28FD216413BE649CBCCCC9E9147AE7D7 /* resolver.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6BF07ED97737A40E9B1E40C77C03A718 /* resolver.h */; }; - 28FD872881B5C5F4AA722607B0B11067 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D15FB3B94278C883D217A51158C8F9A /* threadpool.h */; }; - 29076AD5BB3F125071DC23685ECA2D58 /* bernoulli_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = FE66F2484E35FB0A463C35AEF2D4B8F8 /* bernoulli_distribution.h */; }; - 290F4341E4C549B194E58C740EED5583 /* hashtablez_sampler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6219973BABA63D9B7FEA3DDC39F4C76B /* hashtablez_sampler.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2910824F9A35756F9D049C1911E306A0 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 19986ED50EFBCBF49E698A69657018CE /* ads.upbdefs.h */; }; - 2916EE905CF5C868F16B31411657D563 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 22C62FCFCF0BCD4614045187C1B27BFD /* time_zone_impl.h */; }; - 2920145DCF1AB5A32CD08D8F391D7106 /* inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2B95705859DA0C47A4F47C74AA021174 /* 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"; }; }; - 292B3E3A3E971BDED21AFB9D2C667605 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = B316CAC1D290248CFAFD4D6EF23B2DF1 /* message_size_filter.h */; }; - 292D9343A68E4D75418413FB75A5D611 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6FEE3CA9F96F7CA61E9412C792D92F /* grpc_alts_credentials_options.h */; }; - 2957A1740FA63D710E03281246713D80 /* FIRVerifyCustomTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C9EADE8BEF8BE5F34E1E7E31A8D1E9 /* FIRVerifyCustomTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 296A025AE1D19088023BADE56AAD3A78 /* stl_type_traits.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D63E35D73C8758A1BFE4882CB13519CE /* stl_type_traits.h */; }; - 297278B486991279FB1FC7690764E0F9 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3F5292B9062A1DA121D0F62ED11552C9 /* frame_rst_stream.h */; }; - 297B2326685AADD1066E660039C3AD8E /* socket_option.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 257F33CF7173065407120D50A63780C2 /* socket_option.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 298DA9E987EF6D2FBA74A6C77378BF3D /* sync_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = DC78B1A132A43E5B8AFE780965E476AB /* sync_stream.h */; }; - 29A2FA3FCEC288D6E4FA5ADD1EB29101 /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 5B792610F189EF2F180F4F1EF110DDAC /* map.h */; }; - 29ABB0EDAD5BB1F88A6341FC05DF14CB /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CABD9C6B4B12971819F0BB5FE75CE838 /* overload.upbdefs.h */; }; - 29C12B7545078A7003ED0250AA7E69B6 /* FIRAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = CE455BCF094DE1095B8D3E4C98E662D0 /* FIRAuthProvider.m */; }; - 29C343D7DAC74365A43A8C112D6C6CE8 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 315EA5002D682DA429221872CCA3E771 /* resolver_registry.h */; }; - 29C9F860294E9262272D5573EF39B5E3 /* status_payload_printer.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 80A2F96EA0BE65CE1AC28E09E53B5222 /* status_payload_printer.h */; }; - 29DD314479EF2BF81034011264F234EF /* round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 61104922BC555E34C04B2C080A9FD978 /* 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"; }; }; - 29DE95D6EF3A8C52C27B455210D611E7 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 146753AD1D969149BF2CBEC9CE315452 /* xds_endpoint.h */; }; - 2A02BD1EDEB3FA1B2901A0139C3CDCDF /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 091FB50E071D7F52B2E598CBE4CB007C /* FIRCoreDiagnostics.m */; }; - 2A1BEBC6A71D6D8EE6D36E0BDD9D30AD /* d1_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 890230CF2B8236EA6EF05EC09ECFEFEC /* d1_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2A29E812FED1D4F5A10E1AEFEA055463 /* span.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D5308B145BF7938146E0E27F9F531C95 /* span.h */; }; - 2A497D9F4DCA650EA046F91C6E0BD021 /* thread_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = D71D6E7417FA89D1FCB946E368E0ED5A /* thread_annotations.h */; }; - 2A536D5F5A6D40031B561304D84EA881 /* handshaker_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1B6D451E9D28AD5B6DA5684BA3427B10 /* handshaker_registry.h */; }; - 2A5A3F6CA3A241E652BB0DA836D5B9CB /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 64092E5672D484FB049C66D8FE31415A /* call.h */; }; - 2A5ABD8475EE919E9ECEB193F10AF515 /* firestore.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93BBC3402C79F0310D07B56F0E79E803 /* firestore.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2A8932B7D585484DC305892C4D65065F /* client_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B832731D92AE66792B5A68300DE0FACC /* client_unary_call.h */; }; - 2A8C5AEC1B64F670F59BAD514FAC91CE /* bn_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 966E52D69FD3F5346CCCCA92BF9380C3 /* bn_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2A996B98BD400F63161C19B4BD38667C /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1703CCAA0723A71572E930CB0369F2A0 /* proxy_mapper.h */; }; - 2A9F46D64077B8690B200FDF4499C6B5 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = A7ECF7A3A3C5B540F77DEE2086FDC9C5 /* fake_security_connector.h */; }; - 2AA0CCA054B72F974004BD5985942AD4 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EF0E90A52894A9FDE65FE9F01D4DD1 /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2AACD874B2930CCB2F3307BF692A5AF3 /* error_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4F95FF3A843AA8C313482EFBFEBEF81 /* 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"; }; }; - 2AAD97CEBCA42522451366E766C71613 /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 0AFFEBCF57F8E8D177A9585FBF21FD22 /* status.h */; }; - 2AB54C12008FF0ED6AC595E1B7A7F21B /* local_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = E900281EAABAE1D29ADE22362A955E51 /* 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"; }; }; - 2AD4A9A72B7AF095E36CC5EADC66DAAE /* pretty_printing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99D793024EDD5BB6A78FF667AB3516AC /* pretty_printing.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2AE000A8628597305B41E8C1492E4E3F /* ev_epollex_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B1B1E1D580E9FA66354D0A8C7E5AC7 /* ev_epollex_linux.h */; }; - 2AFC80D434FCA9A91B29C70E68634FE2 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = B13EBBC179E790092217B7A4731EACC6 /* http2_errors.h */; }; - 2B01F73B71C3497D147125C5B6F72E6C /* base.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B07AAB01B8090BD561A3C0213041F205 /* 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"; }; }; - 2B020271127B59769482F37FB6666D54 /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E51D4ECA1A8BA98D9E1D8F80983F128 /* dns_resolver_selection.h */; }; - 2B092E54101F285198E196A84DD902BC /* sdk_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 83BC52BDCE224833A93A71638D8819FD /* sdk_server_authz_filter.h */; }; - 2B224EC90DF450ACBD7B1CAC802236C1 /* hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3CE590B9AAA81BD046A8434120A69D /* hmac.h */; }; - 2B2ADA56EDE58AFC65B07CB0948348D7 /* generate_real.h in Headers */ = {isa = PBXBuildFile; fileRef = 16EEE417B9EE9219567DCAE5CDAC7A6A /* generate_real.h */; }; - 2B4B77CEE8DA9A66788356F2E573F8D9 /* tls13_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3484B2187B50937B04F33D472FC3A18D /* tls13_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2B7EE2EBB7CF7AB35FB5732B2431BC6E /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C174AA07C3256E1DA497927FF6962A9D /* wrappers.upb.h */; }; - 2B7F8A71B4D70890A9811C0E48A29DC6 /* FIRResetPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 383C0F8BFC5DB8E70916CD8D5DA858AC /* FIRResetPasswordResponse.m */; }; - 2B82AA4521D400A100436DCF20C646E1 /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA5BA0F46B851E957F968A90C435EBA /* FIRAuthProtoStartMFAPhoneResponseInfo.m */; }; - 2B8737C75DDB04EBB2A90E023B8AB204 /* config_source.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 26937D15CDA7807683604E02EF6A1847 /* 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"; }; }; - 2B94A72FA64BD0C301D0E95EE7C1DFEA /* server_initializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 32585DA0E531CAE90EFE97D49B826F56 /* server_initializer.h */; }; - 2B9FD9B31E4B170695AD75FE3CFE0B02 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = E48D36F8EF0BD5B1226A31B16C558557 /* dynamic_annotations.h */; }; - 2BB1B3003F0DDECEA55FD16F44250DCD /* udp.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C3BDBC50FBA7DF6C99C6F031A342A14 /* udp.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 2BB960B1FA87DEF1C9A441E2F1FCDD89 /* rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = FFD3EA5B5B99831F4F9144944A1B4ABA /* rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2BBFD782A1ED47F43E9D11D64F011B44 /* FirebaseCoreDiagnostics-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 08DDE828A858C6E4F07FFE0412B333FC /* FirebaseCoreDiagnostics-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2BC940B2FBD9A1D368906E20692AAEDF /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 76C5A2094580D570E896A866C22C7915 /* parser.h */; }; - 2BC947FF5D375FF24CD0117548D73356 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 686EB5C5CA7E45A4C7F792AA5CCEF0F3 /* resolver_result_parsing.h */; }; - 2BD237BF4B1ECAFFB96FC485D2DF02E3 /* fork_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = DA49D325838E71B66BCCEE312008835E /* fork_detect.h */; }; - 2BE0254D86AB8300CE5E574F0EF664E8 /* http_connect_handshaker.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = DC37F2C6B67598116FD1520F1EF960EB /* http_connect_handshaker.h */; }; - 2BEBF63730B09D5B62B734501EE89C7E /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = B9595CB87A6A7D9B9ADB477A24A1D960 /* xds_http_filters.h */; }; - 2C28AB7B45C711547F0AC95B9E447468 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB807AF59CEBBFEAD5D068C2AF0C15B /* httpcli.h */; }; - 2C4BCAB974C6C5314CFF2B939E250C61 /* string_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7B28EE0F74B9AD0BB0A3DF09BC5A61 /* string_util.h */; }; - 2C59009AAC6C303E178F2C28D50E3B6F /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A550B61F9A6CE6ACE773AA5F2734EF0 /* grpc_library.h */; }; - 2C5AFB28D8FA8B3CFB0D4CD3640B9F16 /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 7D92C9A74272B6812313FAAA4491CD59 /* resolver_factory.h */; }; - 2C5B54D6FB9B9E75819AE1B29D7353E1 /* pcg_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CC0BD5618599DE64D5433E71949B4D /* pcg_engine.h */; }; - 2C601302F68A9368F4A2FBA9EBFE9E09 /* hpack_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9BEEEEDD134FD7A4B7EE339EB8085D4A /* 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"; }; }; - 2C722C6783F49D0383D4760E63DC4C89 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C6503482F2C79CAE53AD5EC298F4F62 /* metadata.upb.h */; }; - 2C775EB392FBB7CB4AC8BF371D22591F /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5DF9144218CD230FCDE9F2B69D01587B /* metadata.upbdefs.h */; }; - 2C7A4588EB55A5C8D34E5644C62A6331 /* log_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 6934C7AE4DFE5FE0423641593EC7D0A8 /* log_windows.h */; }; - 2C8218CC375A2ED7F3B3381911E7C328 /* a_strnid.c in Sources */ = {isa = PBXBuildFile; fileRef = BA1258603851C250209F3A04E1F98819 /* a_strnid.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2C83728025EBA1F66A4034E36F2F7824 /* client_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 103FEFFB2EC36F91DEB028C07461AC3C /* client_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2C85814EB214F1A2C5BE230EDFCDEB43 /* FirebaseFirestore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B9193B02337E4C6399361E55D876F8 /* FirebaseFirestore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2CA1537B1974023FF937E5640497C0E0 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 976C5F9FD1C0DE156064DEEE69394B2B /* ssl_security_connector.h */; }; - 2CAE468A415DFDBEAC67552985EB286F /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 708130ACF964A8D33BF1C90ADC381495 /* status.h */; }; - 2CB687D171625626175DCD13CBA14181 /* srds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E7EFB82A20A4AE926CBC13C1F37A689A /* srds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2CB8A17B16E27D38A0B5FD6B5AE8ECED /* xds_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A688A2D2E641068B51C641ABE7E28A3 /* 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"; }; }; - 2CC3FCAF03581EAB3299991CE205C922 /* client_channel_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6042C751468C19CD9E6F28714C6C383 /* 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"; }; }; - 2CC4E2F689057C4B280A841384D5C0CC /* lrs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7442F7EF9EA5A5B5F4C694A4D4D90EB9 /* 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"; }; }; - 2CD13EBF1E75F22C1FCF45338653A66F /* ssl_session_openssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 769B35410097BA9D4221360F33FF5BC8 /* 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"; }; }; - 2CD777C9DB50590DF0E3869D403EEC3C /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = 727F581CFE04F74BE5DB606AF581DD54 /* client_authority_filter.h */; }; - 2CDD7E8234782D7704E42342AD30E593 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 8FA0DE379CA2CE743AD2677FB09A2FAE /* rls.upb.h */; }; - 2CE07C776ECBC56ADA21F5CD51539B11 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 45A160ECD03432F448182A72378495AF /* port.h */; }; - 2CED2572C7A4589141EED2F10AAC94F6 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EBA67254B9EC025EEA8C09284C6C855 /* pollset.h */; }; - 2CF249DA6A2DC11FDF51898652A83A8D /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A9F6EC22B391B6C38EE4CB9B5758C43F /* semantic_version.upb.h */; }; - 2CFCEE198F212E4353FE6846515610EB /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 6CC93CBE5474FA282C8C18A49F029B47 /* security_connector.h */; }; - 2D07132630155F415A5CFFBDC47785CF /* callback_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 537964F0ACE37B6A892730099609A883 /* callback_common.h */; }; - 2D12206C4229915532CE4137789ADD76 /* srds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F59D0A701AC559D06CD851A4EF0701F /* srds.upbdefs.h */; }; - 2D16A98B4D7854F76995B5A2F9DF5388 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AAC288D8B06F235F9538819D512760 /* resolver.h */; }; - 2D1F3D0D0702C7A1200AFAB4D5F6AAE4 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 131FF3949C22D0E3E07D35ACAC8B2A95 /* poll.h */; }; - 2D3145C4D1E68F1CF6BD9C94A20A66BD /* x_req.c in Sources */ = {isa = PBXBuildFile; fileRef = E6B8E7E067A2BA1EBD9CB451591FF59C /* x_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2D334531D776D0824684BD424B38E072 /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E9E7BC9B124BBAEF0FF9F056080C648 /* filter.upb.h */; }; - 2D346BD4529791D0546D458D799EFAAB /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC2F8AC21E20AE51FFE111ABB972A7BD /* event_service_config.upbdefs.h */; }; - 2D4AC873D62E9635E0EDA1A8797914FA /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 40E5DC90843A442FE01FFBA6497092FD /* frame_handler.h */; }; - 2D7DFF8A2FD8762364D1B389A8E6E48C /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D3EEF546AA4F79705AC98DACDE3A51E5 /* extension.upb.h */; }; - 2D7E1F68E4CB1DE89B0F3946867F6F13 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FA535764C50D67EFBF9B6F306B1CFFD4 /* deprecation.upbdefs.h */; }; - 2D93AB920297E853694F1473B94C958A /* city.h in Headers */ = {isa = PBXBuildFile; fileRef = BEE479A9ED41540EF83A6C10E34FBA50 /* city.h */; }; - 2DA7A8B11AF5131B58E5449118C04551 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 165DD603E57F15999F1C1F665D769035 /* alts_grpc_integrity_only_record_protocol.h */; }; - 2DAD60B27ED93C270806F5F5E8056755 /* murmur_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B03DD138741DE953FF1480D4440815A /* murmur_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2DBAFC2D9529E0713A4BB4DDA4CDF4BD /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 93340BEC2EE5028AE4D77EB7A5353190 /* byte_buffer.h */; }; - 2DC06BF5161FD044FA0C82D1020957D3 /* err_data.c in Sources */ = {isa = PBXBuildFile; fileRef = D4AF8E54559D6984DFC27D03A680EAD6 /* err_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2DC86BF8AD31A33E27DFEB88DD11A75E /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EFDB94C4488339479A5FBB96F4A77AB2 /* struct.upb.h */; }; - 2DD6DC642ECBBA8E7CCA3CF8F1280289 /* tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = FDCD87115AC50E6A80713C963485A6DF /* tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2DDA382111850294A63B7B4B772C35D5 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = A2BDA11FC910B0DCCB97474CF682D327 /* duration.upbdefs.h */; }; - 2DDD8F63FF5D8AC1741B4C5B568F6883 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 2965F18933BA8826E8718D022CC72933 /* xds_api.h */; }; - 2DE9C7A969A9E2665CB1798D5961BA53 /* log_format.h in Headers */ = {isa = PBXBuildFile; fileRef = D201AE938325688A6F184084D68B7B36 /* log_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DEA4D196AE68D705A0B6877AEE3D2FD /* resolved_address_internal.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 715827E927F450E8F75BCDDDFE144DB8 /* resolved_address_internal.h */; }; - 2DED06F5C3E71B1C24FD24529D436CEF /* raw_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9B3771AD49B4115D29B2442FBD608B /* raw_hash_set.h */; }; - 2DF50F23C12F28F06D97F4B677F7189C /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6C9312774575FDF80F1289CC775A360A /* upb_utils.h */; }; - 2E022702FB29DD17D7417210FEDD4DD6 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = A92F05FA3D1F52F2A55730AA24F82136 /* frame_window_update.h */; }; - 2E06EEA2B6FABB4F2EFEABB5FB362DF6 /* collection_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 691441895B3EB5739F8E21306168AFA4 /* collection_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2E0A2ADDCA31D2F94CFFA2CEA593EC2C /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AA6A39F4AE049F21C047511BC5A8081C /* tcp_server_utils_posix.h */; }; - 2E0FD6715D566FCE8F81220FA5CDC9C3 /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 2CE893101F2901BF8553CA56AC9EAB06 /* server.h */; }; - 2E1FEE5502FA52901C28A0F03DE609AD /* scrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 79E9B6BF8F213DCB21DB892917ADF5DC /* scrypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2E21E1261D98665ED4827E4E2168A147 /* encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = ADE5E734449379D20E08E13749DCAE3F /* encode.h */; }; - 2E2E80E5FA511CD649E95E47BC19CE51 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 2F7A57196AD9F95EE44B2819AA1DC7E2 /* server_config_selector_filter.h */; }; - 2E3CBDD70824D90BA04D3E7B575A4913 /* xds_server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4A2DE0F3F1C5EB3D90EFB27BB328A22B /* xds_server_builder.h */; }; - 2E537C0F70354E7A427EE5E077CFA569 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1ADAB5732A0C083A127FF5BFBE807394 /* base.upbdefs.h */; }; - 2E54871836485D9113AAF7EC1BED76C1 /* malloc_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1305C0B1E6A416895C6478B37E56FEA2 /* malloc_counter.h */; }; - 2E559DD42CC56B03D7DF13E5B622CCE2 /* service_config_channel_arg_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 043C52BD169975B49DE0110B63349929 /* 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"; }; }; - 2E5904081FA45A6D9C0B78AA64EA23F3 /* tasn_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 31CB79105C6E07611318E0573FE4D179 /* tasn_dec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2E602E1ECBB4B6F77EAD8BBD6C022D73 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7872D75148C0436CD08E2F285534E6 /* matchers.h */; }; - 2E6B29ACEE161D242BA5941DA35285F2 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8A9152B5AB331998D27BC332BCFF8F /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2E6DE24DED03C4E7E922F06C40F6D1E0 /* per_thread_sem.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEFA22796A64CE2A3C7F2975BEE267F8 /* per_thread_sem.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2E714EED30B8484FBD26DE4856BB2E20 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6C09F723A5CB27AA07BCA67668904220 /* resource.upb.h */; }; - 2E747DE97FFEDF3DDB34251985AA8B89 /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DC59AAE557C5D8876B7CAA3FBF631DF /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2E755D79CC04947E1B1DFF5F16D0CE97 /* aws_request_signer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF5B9C98F68CE8090916EBEEEAA1499A /* 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"; }; }; - 2E7F4C78F621FAEAB52F87C9768FCB7C /* urandom.c in Sources */ = {isa = PBXBuildFile; fileRef = D937FAE2336CFED96D2E760413BD2C52 /* urandom.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2E7F5F4DDA1A14EA3A8E8B5B53C0F02D /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6513770E658A6C321E028E0E393E28 /* FIRPhoneMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E8481CA6029CABCB4E60DE0B1647E6A /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9D5E89E17E28F4CA4D712B3BE50E63D5 /* listener_components.upbdefs.h */; }; - 2E85EDAA361CF793C20B30D6F51DD4A3 /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 21A5B9C7E61545B76E4EA0DF8218CB77 /* port.h */; }; - 2E97EB87C47EBB8ED7A1ACC923EE4982 /* fastmath.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B823338B9E4C56DFF2807FBD0210A7C /* fastmath.h */; }; - 2EAE378C4149DDD299788BB1B4D37CCA /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89BFE9384FC50E4B4557762346397B7C /* api_listener.upb.h */; }; - 2EB4EECBB7B9B2A5684E673DCE226D14 /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8462D45307158B54E7DE571C0CCC59AE /* string.upbdefs.h */; }; - 2EBF6F25DA15F7B13FE845241118B833 /* FIRAuthUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 019E255684CF5E4E67BB030E7BA79D47 /* FIRAuthUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ECEE91F0841433348DA30122A59DC0E /* lb_policy_registry.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B189D9B7452AE798D3FC3017FDE61DF9 /* lb_policy_registry.h */; }; - 2ECF466AC5B083BD04E15AA3C3A39B75 /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00B301FF6B0D0904B8E79378F6BA801C /* context_params.upb.h */; }; - 2EDEEFC6FDA435945AC662A2E028DC30 /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3ECBD299F5CB35CCCA5E181F73C0A80A /* udp_listener_config.upb.h */; }; - 2EE1A5AFE5879AEE547E309B66F7C00A /* health_check_service_server_builder_option.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = B275B83B87E96B5234513538FC683415 /* health_check_service_server_builder_option.h */; }; - 2EE9B8D88664D590A60544721EF71E4E /* fork_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43EFCE7070AAA6A176A01BCA9AB3FEF2 /* 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"; }; }; - 2EEFA1B2F2F67535B3C9560E7667C911 /* mix.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 56693F7593922AF3CEBA0E29564AF012 /* mix.h */; }; - 2EFBFE2388CCB4DC71C4201DA702F4C7 /* ssl_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2410EB361482A60F6EB96C7995A9D9A8 /* ssl_session.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2F0DA689017A03A3ACDDE15F0531A3A3 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F5292B9062A1DA121D0F62ED11552C9 /* frame_rst_stream.h */; }; - 2F125F8768017A4D4713774DA469E850 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 30AC3A8E167308D1D7240D3DE5D834AF /* xds_route_config.h */; }; - 2F1D28D685FF1934D28326336EEF899E /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B9595CB87A6A7D9B9ADB477A24A1D960 /* xds_http_filters.h */; }; - 2F20C49D3E28A854CCE233C376E280F4 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE9EF9D777E71CFE2C59A9655253213 /* bin_encoder.h */; }; - 2F2BB8FAFB29279B5EBE7746E42FD9E1 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = D4C81AAE6F95E9DC58CD6BB8014B1A3E /* deadline_filter.h */; }; - 2F3A5A9388C6F820361FFF997518B77F /* ssl_versions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BB83BF4747E3E2DC80C6A3D27F17062 /* ssl_versions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2F4836510CA9779C73D79DCB8FAB2900 /* error_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3C74FB6699569A51F2AB5B01D0470FC /* error_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 2F490287F553DCE1577014DEA431BEE8 /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = DDD45AF9835B6BDB1FDEE9D1B4389C76 /* external_connection_acceptor_impl.h */; }; - 2F4F5CF12F2800F245B145749C4CD85F /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E2D327B3862D4AFA0F0F250F058C4BD9 /* udp_socket_config.upb.h */; }; - 2F50AE1C4D8E97875A57733C8781C04A /* syntax.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 18FABB9F395C08BEAB2D3BB7826E8115 /* syntax.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2F5E1C23555173D797EBC93C20A8F112 /* log_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 388B364F57743F942647BC5FB98CCA27 /* log_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2F64C947236AAC9884A928A6C698788C /* atomic-ops.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5A8BAB2E25201187BB80B51865699A /* atomic-ops.h */; }; - 2F67E79515D5D37525A9D6FC5819BB3C /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2C6F632ECF7BDA73193731720C29D133 /* 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"; }; }; - 2F69F9F158422BF84D07A5C1EC07866B /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC8E47E23AA85979785614D578B42412 /* http_tracer.upb.h */; }; - 2F6FFFF790BFF11B68421F863B9449CD /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = D2D3E59A8DD760ADE17730F3FA6553BB /* child_policy_handler.h */; }; - 2F74A2CA7080118A65F68630C29D6FCF /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = BD1CC498F0F3AD4EB47FD2C2A09BEB57 /* alts_grpc_record_protocol_common.h */; }; - 2F75677AEC3947A95F8F5FB564D0D308 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 932C4CE365D2907D95A111EA2F0CB107 /* base.upb.h */; }; - 2F7677D1A4FE701F5F71F8C14CF67052 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3507125003FC6BB7CDD91111DD98EB /* route.upb.h */; }; - 2F776840516D900FAC3E0F55066388D1 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 73E593D3FCFCEE0F929E4AF2A12D2DD9 /* FirebaseCoreDiagnostics-dummy.m */; }; - 2F7C8976811B9BFACA56AF15A47E3A39 /* frame_window_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = B34BDA9AA0E38F8C1AF5B9CCC50B4537 /* 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"; }; }; - 2F7F9FA8B185EB721D66EC8277CD0AF0 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A9C05F900A594BDEBF20B2BBDF9D97 /* json.h */; }; - 2F89451F38B5DE88E21E8BC43F9CB559 /* p256-x86_64-table.h in Headers */ = {isa = PBXBuildFile; fileRef = 190D8C358B73CFC381C6F594D00A22FE /* p256-x86_64-table.h */; }; - 2F89D18A947E4BC26D805FD984F44393 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 33B7EEF5256573EE04339179405CAD3C /* backoff.upb.h */; }; - 2F8E0CE2CEBB8FCD64C33AD09A48ED7C /* FIREmailLinkSignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BBEBFE33DAFDA452902344CF828AB0A /* FIREmailLinkSignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F9A1F78EE9565E6B7F7581BADBB3F62 /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 75B075366C40130FB358E1F8AE509FF9 /* binder_android.h */; }; - 2FB54975BFF664B859BD0B9EFFCD3BB1 /* filesystem_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BC194407DF61191096C06CF542587B1 /* filesystem_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 2FB6DEFD2963D777639F82B68ECDD5C0 /* eds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B201214C661C3A8FD1F30C55195002E /* eds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2FC433817E0C6A41727F70DE1C1679E6 /* secure_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 42AA348F4D249921F504E4AD6864C962 /* 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"; }; }; - 2FC4940798834665BDC16B3B8841BA9A /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BE7424704490822F4A39D8365399F223 /* frame_rst_stream.h */; }; - 2FC849AAC4DA212B94513CBCB5501F5D /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EE1FBF4FFC89B38701D1AC33FB70946B /* timer_heap.h */; }; - 2FDAA4880E029DBFFF1D84082DC9CE2D /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1089C2A3EEDC66C119FFFEFE90A42246 /* table.h */; }; - 2FDBA700A7B63B477D8127495BAB2013 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B954F2A8229A780BC39577C5817474A /* grpc_authorization_engine.h */; }; - 2FDED504EB1C70E3F5F7B889386B01CA /* sys_epoll_wrapper.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9EF2476AB649C02AB753751214A96043 /* sys_epoll_wrapper.h */; }; - 2FFD180D1D4B0EF049B670D34F66DD2F /* FIRDeleteAccountResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB438BD3219AEECDF6FD1E4A82E83B0 /* FIRDeleteAccountResponse.m */; }; - 3002EB6B7B35EB69629D1223AD527D4D /* server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EB69F46ABEB0B6AD59483A6A99CE5E3 /* server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 30050E1ADBB6A7BA2067CD227E3AA9FB /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = A47C09FE9C6851B0C41A5DEF0AE11EC2 /* metadata_batch.h */; }; - 3009A570631D4CBD95764BD244040FEF /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 82889AE2BBF9643D34B161B9220FA9F0 /* versioning.upb.h */; }; - 304BADF895854E9BF5AE338896D90DA8 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FE643B03358BF78DFBC8DC6A52D5CA7 /* load_balancer.upb.h */; }; - 30592A5EB9B54A507DEEE6E91BA2E215 /* ssl.h in Headers */ = {isa = PBXBuildFile; fileRef = E0C232F842638FF1D1B46F350B0E2B89 /* ssl.h */; }; - 305A3AF809F73796047D02FE74862C16 /* grpc_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D97CA3AEF43D21B8BF128FB1F7782F5C /* grpc_posix.h */; }; - 305C0CB92EFCB8539610AA8CF5BBCA2D /* tsan_mutex_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 27594DD949E1F1AF56837B70C828F270 /* tsan_mutex_interface.h */; }; - 3062731089F8227222302D015895FB79 /* eval.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 829605E36EDA6B0E8845C26075B1EC53 /* eval.upb.h */; }; - 30645CC9BB8EC8782FDBC11A8060BD49 /* endpoint_binder_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = B53BAB3FA71F0EA8FD602751F8799634 /* endpoint_binder_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3064B01798D31D04A2E8DCE420085408 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = D543BC6FB6E3DB0066CC5AC3C589CEE5 /* slice_string_helpers.h */; }; - 3068190B03EA3264A2870D071B33DD20 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D558E5CC8F8FF9A279E6FCB823F78E3 /* socket_windows.h */; }; - 308F2E86D042DE61F4528A78FE8013BC /* pcg_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 34CC0BD5618599DE64D5433E71949B4D /* pcg_engine.h */; }; - 3091D71D37CF3576D1ED6CBADD3AC729 /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E46E1F47CB726BCAD4F834D3C073CA7D /* nameser.h */; }; - 309337D96C54354485D71878672DA459 /* cast.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BFB6E1805E7B3DFB71AE091FCE70E7A7 /* cast.h */; }; - 3094242B6B9633FB93A684E34D0A7CF6 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A2BDA11FC910B0DCCB97474CF682D327 /* duration.upbdefs.h */; }; - 3095DAD45FA572E2579D5FFA62F1D9BF /* FIRDocumentSnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77F634E5FC9C8843C5E7D717581C76A2 /* FIRDocumentSnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 30A0060F8B8BBAECB029B446129CF03E /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B9E632ADB408AA9CCF417432865BA8E /* random.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 30B55CCFDD79798246A54820D5C143CA /* FIRSnapshotMetadata.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5EF5B116F4455A1595B671345AD15A87 /* FIRSnapshotMetadata.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 30BA4346C75FC9517BA531C02F05B58C /* srds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6085D4800EDDEA533DB3814CA92DF0AC /* srds.upb.h */; }; - 30BB3A98D5F9BC0A14096B3D07341C60 /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = F0279C2FB3DEAE77649A5360F9E3A262 /* trace.h */; }; - 30CC356F6204461411BFAC5BCDF2D0B6 /* v3_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = B4F2982B337149EF34F636899118D04D /* v3_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 30F02204CC830939205AB4DD49159490 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C09F723A5CB27AA07BCA67668904220 /* resource.upb.h */; }; - 3102174C796DCF25A738EF3DF9602A83 /* bio.c in Sources */ = {isa = PBXBuildFile; fileRef = 34651B372889054CA1EF487B86F7754E /* bio.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 310F9830AEEFC83B91952E495124BC3D /* arg.h in Headers */ = {isa = PBXBuildFile; fileRef = 34EB3707EDF7F049D8480DCB263651A9 /* arg.h */; }; - 31299BAB079D17744557FDBE3EC27D48 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 061468C930A9406C41997EBF42AFBFFA /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3129DD4B08A5BC27442B2C5B87FF982C /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 63E41FB55A6D9DD6F01BE04E3226029F /* stat.h */; }; - 3134BA25C3BF8C3629169D0822073150 /* config_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E9C076EE4562F169398AB1E094ECAC /* 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"; }; }; - 31414D12F1A1F229625892C0E5BB239A /* resize_uninitialized.h in Headers */ = {isa = PBXBuildFile; fileRef = F67364A0B636B3915967F77B4404605B /* resize_uninitialized.h */; }; - 31483DE6A17D994C08990FF165C3E154 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 462805E562D5F862B285CDEF040DCB0A /* transport_security_grpc.h */; }; - 314B1836F7B935DF2709B493DE6F51C8 /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 397CA41A1D921FC5669816B7D4B7C988 /* xds_routing.h */; }; - 314CB8CF7B9C42DDAF0847517286303D /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5076FA3CE1D5975DC29A378E65C75CBC /* endpoint.h */; }; - 31564C2CB21AE93FA906495573B51FC0 /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 03BB18A312AA070D83984098067EF81C /* stats_data.h */; }; - 315BBABE1BD4CD5BA4A4BA22137B46B0 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D508A85648BBFD2090CE02F1272B214 /* frame_data.h */; }; - 31628E3AA7AB7F09270A58385C47BDB6 /* loop-watcher.c in Sources */ = {isa = PBXBuildFile; fileRef = 6107ED9DF040806A97C0E7147B35C005 /* loop-watcher.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 3164CCAB4865BC8A89607CA53BB03BAB /* byte_stream.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BEE7451B0DF47427A671DA88BB59CC83 /* byte_stream.h */; }; - 31672999A44486CB769B9BC861CFA23C /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD1265C686F1661E68C612FA3E6317A2 /* socket_option.upbdefs.h */; }; - 3168102B60AB7F974199AE624176C6FD /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 0C7C8DE9C3148DC7DC53B3FC43D7D64B /* http.upb.h */; }; - 316D25CAA92C0D04608A3059FF73880C /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECE464BF00D647D8E8BF568F0CFEBCB /* block_annotate.h */; }; - 3171BF417B4B604AF51C9785AAA3B7D4 /* executor_libdispatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8F6621CA44D8B72E9E90EEDDC58FC8C0 /* executor_libdispatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 317256B68965AFBD2372134317C9F4A1 /* comparator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0405A327F66A55E127C175A635EA75EF /* comparator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 31758C685C8BE462540F76956BB95ADA /* tcp_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 186278B4B3E5C34D3C237CB0FBC9B477 /* tcp_custom.h */; }; - 3177E2CF2695B6498FBE6499CA8BD1C0 /* p_ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 27EED20F777EDB7606ACB8393D53F6EA /* p_ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3195A41FC006AB94B5980EBC0E5906C1 /* alts_shared_resource.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1707012F867F69FFC65F10497BFCEC4 /* 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"; }; }; - 3195A7F673AD1EE12086600496947B6D /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 8CD4010AEA140A8338AF644585089540 /* wire_writer.h */; }; - 31978B1791653CA5E3DED8C9CD5CAB52 /* alarm.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3D6F222923616FCD2E92FC8F0A9E835 /* alarm.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 319A57C1E9C99117FE5CB31356ABAF54 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = D97D1568AF51BD1FCBC9CA817FB74DB2 /* bits.h */; }; - 319BA455C76682070EFCA1DD6840BEF0 /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 4873DE47782D39C26B46D0A1D2C29BE0 /* context_list.h */; }; - 31A735B826BE4A2E849B33748C3998E3 /* FIRFacebookAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D4D290E2C339574F8276D54D461A34 /* FIRFacebookAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31AEC1370209D06838A2693A729B98C6 /* zone_info_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF9DEF0109F3CF6416E2EC1779559E08 /* zone_info_source.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 31B0267B46C32EFDA9779A5051C4A225 /* FIROAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D1E1F5BD74F47BC088CF0EE7695EF0A /* FIROAuthCredential.m */; }; - 31C1A1694D64039270617D2AEB429F30 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = FB3F7C722862A72BA6197A56886703C4 /* xds_routing.h */; }; - 31C5AE04E9DF9235E23436D8FBB8130D /* FIRVerifyPhoneNumberRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E107805DA7D7B89CBF0FA4E981BF1949 /* FIRVerifyPhoneNumberRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31D409D0590D8CC560C2E9BC3A7483DA /* compile.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF2BDCB3DCE8AA66A08BE3492F9E85B8 /* compile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 31D71D5102ECA531B34A27283D33CF0A /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5663C982E680F48717C1421DE15D6F /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31DBD80FE50AD5C739C986C7E0EDB65B /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB00C3343089AE1ACEDBEE4E901DD69 /* lb_policy_factory.h */; }; - 31E566B119C2A41BD9BC1AC7D9B02E80 /* poly1305.h in Headers */ = {isa = PBXBuildFile; fileRef = E840D06A13004DA5F9D2848A1199EA15 /* poly1305.h */; }; - 31E7EB06F03A66BFF1776C795C7481DD /* channel_argument_option.h in Headers */ = {isa = PBXBuildFile; fileRef = C465A378E915E97B7FE609DDC0D28B3C /* channel_argument_option.h */; }; - 31EAE46C611908F1F4C85AC19D441D15 /* tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62713C46785517FFB47B56F2226956AC /* tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 31F726F4E3BD21E2E997ACCB89271E43 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 01D620E45BD3B627CFB5EFB06408CF0A /* xds_http_fault_filter.h */; }; - 3216FCB0694A79C8B6030C9798889F91 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 35381D5F445307A4BCBD97FDC475B3C2 /* 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"; }; }; - 3228D5CC6814E7EC8DB313D08E489260 /* e_null.c in Sources */ = {isa = PBXBuildFile; fileRef = 5ED101EBE79DF646C3062C490E14A567 /* e_null.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 323564425BAAB785C6DFCF192066052A /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CF4CCCE0933285D444F1B3FCD018A42C /* 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"; }; }; - 324B9C012818D0C7744872CEAD622ABD /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA40620D11149B143346DF983137CD2 /* error_cfstream.h */; }; - 324D2BEFC7024FBF4D0E495B810DA201 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAC136197FF32241C217A185AE9D3EC /* string.upb.h */; }; - 325164136731E72E77B41569CEF35952 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AE6417212A9C1AE8A5B704BE8BE7FA6 /* strerror.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 325605C45BA26F78E045D2BEC6950941 /* v3_prn.c in Sources */ = {isa = PBXBuildFile; fileRef = 6676A792A9EB52E749ECD4C348E14EEB /* v3_prn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 325CACB8B675C52FF0238CBD00212FC4 /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = DB7BDE5FDADF95A04A3D4250F5B92A00 /* stats.h */; }; - 32637B63F018459780FF95E08DF31CF2 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 516ED07CA5ADD6BC0D6E047F1416AD7F /* handshaker.h */; }; - 326479A367B310D6367BD100BB3607FF /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3AF0C86B29D67C1A28FFB6043385D4A3 /* SystemConfiguration.framework */; }; - 326780B4AAC2E75559BDC208D1C7CDB6 /* transport_security_common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 422AFB3BFD9E3B15F6863171275A548C /* transport_security_common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3270A3C430D6FB70C032E074F7BD28EB /* frame_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 38B368D8B91E7D953A57ABA58FFF99D1 /* 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"; }; }; - 32762D9E8B5AC74CDF48D2C9A9BA85B7 /* core_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1B6C5F8DBAC200371CF3B2610CA4650 /* 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"; }; }; - 3278D81AA0AD35F541938ED9F55E8357 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 462EF9D57B7F9C4BAB83EC879D142E8E /* thread_quota.h */; }; - 32A241E35C50DFB5287BD6A97A0F0832 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C6503482F2C79CAE53AD5EC298F4F62 /* metadata.upb.h */; }; - 32A9C25FF18CCD0DDBDF8EDBE7BAB000 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = B76D8BFE88D7CF0160716F1CCD743470 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32AE4AB6B9B78DD9F6EF407A0C1FF79E /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BA1E732EBE215352395DC3DC9D2CD120 /* host_port.h */; }; - 32AEB99AAF2374C0357DBEA35C10D0C4 /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = CAB992E9093B80F86021A07E2067C487 /* alts_handshaker_client.h */; }; - 32CE24E94D00516F12F15F51ED00152D /* leveldb_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58D272EA215EECAE8DC278AE15D91714 /* leveldb_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 32DF577632B5E490567BE66A836CC7ED /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B941A22C04C8C6DF1143C81758C0D0 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32F2313BD0A3C8F62A6928EDAC5B53C3 /* hpack_encoder_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = D678AA0C66CD6BE034B10A87C4F259D0 /* 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"; }; }; - 32F399E2792802A2ADAEFCF7C40070BF /* p256-x86_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A17E56634F88242B97A2500C7BCD957 /* p256-x86_64.h */; }; - 32FA5F35300384466115BDFAAB61E358 /* poisson_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 065A175D13E9F5A503FB946D1E6E7577 /* poisson_distribution.h */; }; - 330807FA13658C41DE47BBFC150A8D20 /* time_precise.cc in Sources */ = {isa = PBXBuildFile; fileRef = 032B23396516DD7A1D65EA615F8B3100 /* 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"; }; }; - 331C9E99324F21F618ABF61FF26042A8 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 910995BA774B1A6E8989A8FAEB7D4CEB /* bin_decoder.h */; }; - 3320A626E446B7A9FFB81BA85A9E6430 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 831D024AFACC9C4176CDC6EEBF791F28 /* FBLPromise+Testing.m */; }; - 332533560EBB47E747CA976F4F136349 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 22D345E76B9E1F74CAB790D4F3760C79 /* aws_external_account_credentials.h */; }; - 3336F1C3232ECD8257C7F8CAD1E6CC76 /* table_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = FA91580EE93856FD88ED75C260987E44 /* table_internal.h */; }; - 334C144799ECA1D680C6488628670F3A /* socket_utils_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D8E98012D224137DE647D294723AC15 /* 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"; }; }; - 334EF0FA40CE2BA8E78C3EB8440FB0B0 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 910B9E157C56A0513EB5A2E521E2432B /* python_util.h */; }; - 3352C627AEB95BD0940284A1AA422C98 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0BAFAE40DB8443E0742EAE7D49932F70 /* grpc_if_nametoindex.h */; }; - 3355C49E3D31E5D6CB93CBC99F8D458D /* FIRSecureTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AFBA70A38970E5D8229E7B07CD9658A /* FIRSecureTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 336392975D9EFE564761E5D7C9F273EC /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 801DB2F445C95D9AA81B40844F3203D7 /* http_tracer.upb.h */; }; - 336F08DC36A9CDE8F156FDFE9C295A62 /* log_uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = A1C0E9DD7973D516B834F0D05357E4E6 /* log_uniform_int_distribution.h */; }; - 3372E9B857145F0870B417EEBB11ECAD /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEF49E540505AA014B17FEC5135D836 /* retry_service_config.h */; }; - 339A08A124EB995565163A9331EFAEE9 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 5C659DABC9D85BE329800DB9D46C639B /* fake_resolver.h */; }; - 33A200D8648FE197BAA4F1E11FBB9A9C /* cord_rep_ring.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2417058DD5CEBAC8310A2F6C7DC5F6 /* cord_rep_ring.h */; }; - 33A872D2F1EFCBC5AC502FA9686E76E9 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA3FB9DBFA3D42EA939C6DDDB126768 /* authorization_policy_provider.h */; }; - 33B422247C19C584876C6C5031171BF8 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 493CB65C90A34FE875D76FCA4D7E81F2 /* FIRDiagnosticsData.m */; }; - 33B73443968DB864B3DB33E430AB5D6A /* FIREmailLinkSignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C4990273A131F327C2A6DA911B32D46B /* FIREmailLinkSignInRequest.m */; }; - 33B91E9895EAB3D4D75178FB05D30AE7 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3261546B3FF64262DFE3888B391CD023 /* cluster.upb.h */; }; - 33C0E8F7882FE0C56EC757AF3E77DDC3 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5754AAF412D8D2FF369643708F23553E /* frame_ping.h */; }; - 33C7E59E29CD2AE24D0B103751BAED7F /* internal.h in Copy crypto/fipsmodule/aes Private Headers */ = {isa = PBXBuildFile; fileRef = 395189B957C79ED0720D3385CC82A700 /* internal.h */; }; - 33CF07F1D42D9B50B78C01C9631BA35E /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4488E92A02FBE9F1AE88BC95A1225C95 /* manual_constructor.h */; }; - 33D14AC3AA299A6A4726414D7E934C2D /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 842C6DD85798D71FFE0F6A3978064B29 /* thd.h */; }; - 33D4A6755604805767EFEFB5315FD0B2 /* filename.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0EC397F569D7D2B5DF68B5054B7260C3 /* filename.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 33EF2C27938B95B8615D3B7FFC50BB42 /* charconv_bigint.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DCE4B2DDA68818DC0F0051E95A3BC73E /* charconv_bigint.h */; }; - 3405EC26F45B6758B283C1D5B90FA7BB /* grpclb_channel.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 4301AC34F2619CA037570179A9916F9D /* grpclb_channel.h */; }; - 340EC15A3C2820AA56661E8F896121C1 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CB97F2AEDDD7B018E84CECF9EA3CA927 /* iocp_windows.h */; }; - 340EECC58B342BE7062700332F0AE559 /* aes_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CD1185D1C535BF4DA84F99F1ED091F8 /* aes_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 34129BCB516F758DEAFED2E31193F825 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8B33DF1B3D916AD1E131CB9E5F76A057 /* stacktrace_win32-inl.inc */; }; - 341353F5F27C0EACAA8666C7EE1BA8EF /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A7F3BB78291C139F060A61186E21170 /* socket_option.upb.h */; }; - 3417610773CC0A07BBCE2D6FF80EB9AF /* unix.h in Headers */ = {isa = PBXBuildFile; fileRef = 232E972A47C285CFFEBE1576DDBCB1DD /* unix.h */; }; - 34253E01D530AF4EEEB34048B7EE030D /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = F8F1D4906E47871EB1E4F74A6363EED4 /* grpclb_balancer_addresses.h */; }; - 343C50D58EFE36AEA0A3AC27882CED36 /* thread_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB12FE3D2DB278EC95BA232B873626CB /* 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"; }; }; - 344F3486E628BA8FC3B13C33E12E5D1A /* xds_bootstrap.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0CC3090F23B3576D934D51450358FF2 /* 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"; }; }; - 345110F22920B5B75A4AD664838C1888 /* rds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 90222205E434BDAB81FCA3BEF6115232 /* rds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3469F3126EA5EAC0B85EE10E1724E263 /* rds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2E8B06225A868EA146B961E725D102 /* rds.upbdefs.h */; }; - 347FEAA4ADC2F60062AC9240FFDF5FDB /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E886BAAAD0217251B889F27BBF6E6AEB /* extension.upb.h */; }; - 348722C6FADABC41ADF3D6BE68AE7E76 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 256CE2BBC3FD4CFC24A11F0AF4E63EF6 /* local_subchannel_pool.h */; }; - 348FFA2E12B5AE87381873B54233B1C2 /* empty.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EEA4FDB6F17DAE059FF724EC9F5F896F /* 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"; }; }; - 34959423788E0F1C821FE44E96BB5C1C /* atm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FE2327D3ABB7E533C6F89E6F421DC8D /* atm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 349C5DA9E68EC4338D5427DD0B070D74 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 351C2030094A0B30ED06BA4FB171AD64 /* ssl_session_cache.h */; }; - 34AA520D7BD6C5E217D46D28D49008F2 /* server_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5EF1073619ADC568CC5135D837E09048 /* server_interface.h */; }; - 34B271C07861D72DE8218F95B6BA86F1 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B060AFD6C415714E4C53B721E30D201A /* cluster.upbdefs.h */; }; - 34CA14B382AA6E33AD9AD682D9A994D6 /* server_chttp2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 603070AE0F113799A7C404D161CA89EA /* server_chttp2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 34D3D8B77BD783AE1F1417DDFAE293AA /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A14C379D092139FDCA1B28FC4240E5E1 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 34E3F7E7D206A045F63D58BF5F1EDB85 /* mpmcqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = D17BA513E45AD12BA2ADFFCAD7C1CACC /* mpmcqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 34E42EF4CD43DA10BB3CCDCCD8D66265 /* workaround_list.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 1B239BBF54E94500FE09868C3FA904EE /* workaround_list.h */; }; - 3508B78C627D385B2ABAFE98F4BCBC1A /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF8B743BA5FA6FCD61DCF9EBCA2178D /* endpoint.upb.h */; }; - 350E982E6A058267244444BE224F124C /* walker-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 62481F32653432C7A1D0E8F8A6445054 /* walker-inl.h */; }; - 351B6EEBDA18122A09A73FE9156C92D8 /* pkcs8.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A39F583D65D9ECFC003B2D66C2E7CC3B /* pkcs8.h */; }; - 351E039C861CCBC8BE5B3FF481FF3078 /* internal.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 149F71522D39AD65C4611C373A772AE7 /* internal.h */; }; - 351E92984B4FCECE03B8F274A7FDA6D9 /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 786F175B02526C091DF5E32111D951FA /* channelz.h */; }; - 35295D0C9164919EDA75182277F7B119 /* macros.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7CC535C54B4C290FC6574D455BBC01 /* macros.h */; }; - 352C8365E78D6EED638ADF418571EA4F /* ndk_binder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 42FEBA5898FF456F652F06687A007078 /* ndk_binder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 35473E1F608285419C89E3910DF666ED /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B41A9D4DE4D3CFD54498E4EBE058082 /* cluster.upb.h */; }; - 3549D2CB72FDA49A503CE2C6FE8F4B15 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CAA40620D11149B143346DF983137CD2 /* error_cfstream.h */; }; - 354D2029BD382B6B22AFE13521C7AA8F /* aes_gcm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1BC93782BDCC796123A9A98BCDEB70D5 /* 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"; }; }; - 354E2375B02439D2E01D837DC6CA31BE /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = DFF073FFC72C100A9B8AA5298287D6A5 /* intercepted_channel.h */; }; - 355167B859D86D46B178EB806B9CACC4 /* regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B024046359A066F10122E255FB19398 /* regexp.h */; }; - 355FF7D035202C242C5F549DF277DA0D /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 05618ED55E3E7779BEAA558D074CE80B /* route_components.upb.h */; }; - 35650D60B757EFE36C1FC2AC402B98FD /* ex_data.h in Headers */ = {isa = PBXBuildFile; fileRef = DE0321B044440171F6DE03BAC7F46A6B /* ex_data.h */; }; - 357D5F0FA372025F12082290F5BFD072 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4C3CBF9A2AEEFF612EA6090F5C5849DA /* iomgr.h */; }; - 3598A694C786BE91E30306E6DFE0DABC /* event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 80E2B9C80C1D2401825B16CF52C16D75 /* event_engine_factory.h */; }; - 35A3F65FFE5315001FA9DFB248881FAA /* obj_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = DC8FD461109F4BFD28EB78275FC9DE30 /* obj_dat.h */; }; - 35ADF351930DFEFA8C11EC1ACCE1B68B /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAF088419ED98FE6E8A89C24FB71413 /* xds_http_rbac_filter.h */; }; - 35C11B43A3933C4A64D2B2B7046DC209 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 067F7C4805B5D6AB5D84D50A8C75A24A /* thread_annotations.h */; }; - 35C3AFE4F44A7348330D0F8057F0B3E1 /* dns_resolver_selection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 999BC742BE34501113ADB53F17174735 /* dns_resolver_selection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 35CF5E30FD5588E049501F1C9307C45A /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 268E8B0F9C65AFCF0500BCA88D7A6407 /* 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"; }; }; - 35D034C4377A51F5A0B685A664E9F700 /* security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C9C3A7DA98E3A9B773F318A2675CB31 /* 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"; }; }; - 35D1AFC00B34FF380D8B7C179D635A2B /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = B316CAC1D290248CFAFD4D6EF23B2DF1 /* message_size_filter.h */; }; - 35D5D734FE76518A61A9F6073D7DE602 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DF9144218CD230FCDE9F2B69D01587B /* metadata.upbdefs.h */; }; - 35E25163B181B38196C1FC026330FA38 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = F26B9C2F2E2DA58209865C39C0E53E0C /* block_annotate.h */; }; - 35EDAF76F9C76FF1FE069F130169B7DD /* darwin.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 28C218425C921A293F8EC141469AB738 /* darwin.h */; }; - 35F70231FA8923A1A6CAC58B6742D331 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC4C4C93886B9E9326D162E2DD4C7C5 /* useful.h */; }; - 3600150E4DA6C317ED9A5470C3C5DAC8 /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = DD150F5546A5585D6469457EC7E81C69 /* GTMSessionFetcher.m */; }; - 36090F1946E4E1A6672BE42EF8E0C507 /* hard_assert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65FF07469E3E003F22E6DC2F69A5E9CC /* hard_assert.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3614D72121B6C76988011BC2222AED74 /* spinlock_linux.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5DF7949BB7626FE5F124F8620005582B /* spinlock_linux.inc */; }; - 3629E7E83AB4A6EC2573C4B06737847E /* GDTCOREndpoints.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFB70412FE861E520AFACE9517AF9DE /* GDTCOREndpoints.m */; }; - 362C4391683691CA7B7410C27B03BD2F /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 731C9CD88DBDACDDDEC4E2D6712C1BAD /* transaction.h */; }; - 362EFA264EA980FAD15E36EC94D49CDE /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6110000C637C734612869D8720E11740 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 364FE5E8E8A3C4FD826E00E09CA1852F /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C3ED1EDFC37613EDB539E2BF7DEAC51 /* xds_channel_args.h */; }; - 3651A0B51534ECAFE44A3A76DF38F4DA /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E124B89D667ED1449BE4C47509B52A /* context.h */; }; - 365993C1CFC9DCE6503ED73B08025479 /* add.c in Sources */ = {isa = PBXBuildFile; fileRef = 19171CACBB3AEE462136219C2747D233 /* add.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3664C400545365D4616FDEDE4D1B1157 /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A9E2991785F4124A0E3EDBC1221B5AD /* thread.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 366AF83790CCD5537EB3AA3334870858 /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = FD2626A7C8244BC1830F80CAB64788D9 /* time_util.h */; }; - 367D8547D8DCDB4BC0471E96888F1CEB /* FIRListenerRegistration.mm in Sources */ = {isa = PBXBuildFile; fileRef = E06E0ACBC7AD67018F9414C5C3CC5036 /* FIRListenerRegistration.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 367FFABE49BFDEF24054D3733A21D815 /* p256_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D03D337B47AC826656C9CD58DF6A277 /* p256_32.h */; }; - 368856C3CBFA44E471C0D699EE285218 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3F6C0E851B9F6B7DDCB7052DB7869ECB /* retry_filter.h */; }; - 36AAA0BA68E987A3C1C9CDF0FD95E174 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D1DADAB4E7A60BCF4A6299B8C14315BC /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B000F74F10A91834DE85A07E1FBAC3 /* client_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 9DC5941767E8FD037EE9D502A9F3EF80 /* client_interceptor.h */; }; - 36B154FD8C7534C03BF119CADAD061DD /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C47BF3E59C60249A248FE3D0EE2AF50 /* GDTCOREvent+GDTCCTSupport.m */; }; - 36B1CA9F75182E02B3B16B23DA4B3EAB /* algorithm.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = 027585817CA4B742EB65A933E9F49051 /* algorithm.h */; }; - 36B2A49859ACC0F6CE643B93F0B88422 /* ssl_cipher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 492A21B3320D00AED3907D59249ECB03 /* ssl_cipher.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 36B6A5EB6D42A40CF5CA0B3065EC5055 /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0D0BF6EEBE006543AB748051BC0E4836 /* range.upb.h */; }; - 36BB880377A1A0A577E8F877A2C7906F /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C510F2DEFE792F7E0D8D71249619EB3 /* config_source.upbdefs.h */; }; - 36BBC74FD62A6F1319431D82C9453AC1 /* blowfish.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AA230DB59574DCC959E3FF257A83DC /* blowfish.h */; }; - 36C1B5A328A4A2183CEACE5BF9DE3D06 /* internal.h in Copy crypto/fipsmodule/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 7D4A083B309091D9258E0D4C82F1D3CC /* internal.h */; }; - 36CBC515B39C51462B79EC0A677FE658 /* time_zone_if.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4CA1D2355D777A33E37CB19E837A67 /* time_zone_if.h */; }; - 36E93D87DBE3BDCBFD043C15D557E1CF /* FIRPhoneMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 007E478F711A95978A982971A9CE62C1 /* FIRPhoneMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 36EE0896C40E860A824C0B60C359896B /* channel_create_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFF4C2DC688DA522447E4ADF6FF52B56 /* channel_create_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36FF725FD7C6951640D2292038E5BBD4 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = F400C3DD7DBFE9DEE16915515FA6F927 /* endpoint.h */; }; - 3701235A6D53BA48ED54B7713CA425E5 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF6DF5864028E3C2AD14E09D21E240F /* lb_policy_registry.h */; }; - 37104A65B68231FB13F382CB89E4222B /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 1439354E8BD02F0DCBF6F1E3843F824F /* gsec.h */; }; - 3713330582E68AACAC841E58681AF39D /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 1FF0051089C60C7E7165197BD3E5A3CA /* tls_credentials.h */; }; - 37361387E291C401F14ED52C8866FF5A /* get_current_time_chrono.inc in Headers */ = {isa = PBXBuildFile; fileRef = C309F76B736E422845A3DDF683DFD0EC /* get_current_time_chrono.inc */; }; - 3736F0706459D81FD4B3DFA13FBC75C9 /* errno_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4C3B5107632E3D71E08E88B47F9C28 /* errno_saver.h */; }; - 3740716015E69D301E0CF1673A0B5376 /* FIRIdentityToolkitRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 48388DE98C2EC1620B66D911004DB48C /* FIRIdentityToolkitRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 374390ECDC611B8DDC652A46CB839708 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 4DA709FA365A48B6CE11B651FA023E19 /* file_external_account_credentials.h */; }; - 3746A07D6767FBF4EB53B55DF884517F /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 323E902A459BDBDC083ADB54C910C097 /* external_account_credentials.h */; }; - 375394821024D371BECB4E24A75C0513 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 3047FB83474EAFCB097933548DB42C08 /* tls_utils.h */; }; - 3759297D462A222AE42B046D94002CBE /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 64A7A1D31F84665CDE468E26569F5E54 /* ssl_types.h */; }; - 375C1D91B6AE343A1E7D33B183117739 /* def.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 6943DEED378A2F4915E7B9E730F39614 /* def.hpp */; }; - 375C70A0997A0F37B3A2D3753A914E88 /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 439C188D35D5C60571AEF9E9CAB07ACA /* sensitive.upb.h */; }; - 37614F999DE6FD0FE6BBAB44D10A3494 /* eds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 889C4559B52459471A44A392B83B1D2F /* eds.upbdefs.h */; }; - 3761842EBBF86E33E63066E8B06955CB /* mode_wrappers.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CA261CBF415CADD6F1C0A78F1D53B0E /* mode_wrappers.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3763FE6F9098D58D8135C10A885DA69C /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC9630113A9804C2DDB6863BFB961A3 /* http2_errors.h */; }; - 377761D2DCEFA94C10912BDD7179581A /* status_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = C869A9447A230E6F32C9AEB80C606443 /* status_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3780570A5B7ACCD4C7517A8E48564637 /* call_details.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EAB187A812125CAB25053C6485756D8 /* 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"; }; }; - 379B359C915C8D067E94F8A064138BF6 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 772C7BD84E3DA84CCA800FDA58C9B0C3 /* matchers.h */; }; - 379B95ED27BEA56C00F09DA351C40B81 /* srds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 21654CCB6253D06B1D4BDDF55434D26B /* srds.upbdefs.h */; }; - 37A5E580D5500BB84791993C39F5BAAB /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6FC3C0AAE4B7ADAEA82189879E4AB7BC /* xds_credentials.h */; }; - 37A809F3AF1D138827374E6A533F0B35 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = A1D22D6731CA71E045964FABEF3BEFAB /* timeout_encoding.h */; }; - 37A917DA12FE871D23C12915B6492E10 /* substitute.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 0B34697920BDD3E002E685D02B9B736A /* substitute.h */; }; - 37B1F19450D60D35C6962FED4C8BC722 /* FIRMultiFactorResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 99EBB25D785FCBCCE4D4D9F97E432A25 /* FIRMultiFactorResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 37B65ECC76B123F3E4C751968D4E6B69 /* max_age_filter.h in Copy src/core/ext/filters/max_age Private Headers */ = {isa = PBXBuildFile; fileRef = AF2D82AC3822F81EF63755626F2293BB /* max_age_filter.h */; }; - 37B9905ECB51FD905E9ECC243F99B3B1 /* pbkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 878926A72A3EAFAA9A53CE7282E98E4C /* pbkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 37D8738F06CAA4D5FA6FB16261FED8B7 /* strip.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = A51DA9A47C221DE2090EF57FA1A16CCE /* strip.h */; }; - 37F0527B0FF39B2B15C68F9CEC7C34BC /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = EEA7A8C84EDBBCD0CF47112A1D84CA90 /* channel_create_impl.h */; }; - 37F81EEA16C9F69C637ECEC40B287217 /* pid_controller.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AFBDD484888DDC549AB8CA1124B35A18 /* pid_controller.h */; }; - 380B41CF0DF20D2E8E2FD1DE0E5E35A7 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCD01606BE101721D72F2AB17CB1F2D /* api_listener.upbdefs.h */; }; - 380CDA5803520981D1269D6F4F7A4465 /* FIRSecureTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DC94A1BD26897C1BD28D3106022C00BA /* FIRSecureTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38122C9FC1CC8A2ED23F6AB3DE16209D /* crypto.c in Sources */ = {isa = PBXBuildFile; fileRef = DEE9080859018223B5C219AEA15FF95F /* crypto.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3813994766F3F04E882E64AF11C0D2CC /* cordz_info.h in Headers */ = {isa = PBXBuildFile; fileRef = D67C77147745C4A24D1AF5072FEDA0CC /* cordz_info.h */; }; - 381A60EC54B70C74A42FF78A5FCA9825 /* api.cc in Sources */ = {isa = PBXBuildFile; fileRef = C754FD76ABD2B110D8118F685362AA51 /* api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3835007BE9A3BCD1CA50AD469C6AB3EB /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6B35F248E874B3A76BC25335F41458 /* grpc_service.upb.h */; }; - 3842615A81C4BFB45B9F5A390BCBB8B0 /* low_level_alloc.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 991A355D55796AB7BB69E454A4B6E48F /* low_level_alloc.h */; }; - 384BAC66F63E4A80E438CB7510E161DD /* serialization_traits.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 3C1D249510EBA504A9223F7F6DFD0FAA /* serialization_traits.h */; }; - 384D4F310DF0948E157041C5AA451F02 /* lb_policy_registry.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = BEF6DF5864028E3C2AD14E09D21E240F /* lb_policy_registry.h */; }; - 384FE324917094696C2B22289D51F83D /* sqrt.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D1D46CAAD98F49D19E437BF915C6B4C /* sqrt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 386189F52C9DCA84D6EFC42F47B93FE2 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B02460F5E73D23ED6FD5521C6F407E82 /* internal_errqueue.h */; }; - 386DEBEA7467EB0D1AECE11E94EC833F /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C81AAE6F95E9DC58CD6BB8014B1A3E /* deadline_filter.h */; }; - 38701836214FC9D0E3CF07EEBECB7213 /* endpoint_binder_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5F9EF7C35287AF0D4B1B7DC5333DFF /* endpoint_binder_pool.h */; }; - 38823D751723C05F2434247FC5EF2742 /* proxy_mapper.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = E19B3D43D11D5638D68E4CCD659D416A /* proxy_mapper.h */; }; - 388DB6CA8A7342201596944ABE81BDC2 /* workaround_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B239BBF54E94500FE09868C3FA904EE /* workaround_list.h */; }; - 3892290C87A2B50853F36B998DE088AD /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FD1DF123C4D2DCC3447FE82DB494FD2 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38953D5DF075C1CCC3E6652B020F1ACB /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 08C312EBBA1FDC1A9251678212F6CDD3 /* slice.h */; }; - 389B56796F3F9AEE939DC626189EC506 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 492D2DC2280346F2F0164538187158A4 /* listener_components.upbdefs.h */; }; - 389D2E5EE1BEEA3F54CBAB3627D13115 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB25817ED74FEAB86AD0696FCF1FF893 /* grpc_service.upbdefs.h */; }; - 38BD585259DBDD0B00E1B0EC6B850094 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = CC0BD34C39553239FE70DFB4FA7F6483 /* spinlock.h */; }; - 38C0A66B35C2A99D9D963C684FDED44B /* rpc_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = F9CF7FF71520172A54AA51AA42DDEB02 /* rpc_method.h */; }; - 38C8791C7D84FA07074879CF3FBD1CA8 /* bin_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A3C04A89FA9AF99E398FDE3D7CF9AD0 /* 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"; }; }; - 38CADB311923097255DE3C24C3739414 /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 526F3F794218C208C7F18690F8E54E02 /* RingBuffer.swift */; }; - 38CF238C55224F613B049EE717DF11AC /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6739EE4F39EBFEA3F019DCB59BE3689E /* socket_utils.h */; }; - 38D59BFF5E95B124C8AA320D28EBC3EC /* xds_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1D289E4B6273605034E98499C47A590 /* 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"; }; }; - 38DCFECE3A85F7203165C963F19C12F2 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 38B950BD01813F0536A3D34594491EEE /* alts_tsi_handshaker_private.h */; }; - 38F8BA89E11D76B578633864AAF3BC88 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 601E0FEF257129E25CA4A57BB1856853 /* backoff.h */; }; - 39013DB3E10029FA653CFA7AC77C3B56 /* slice_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 515F6C8B63220BF7C8868F8699C2ED1F /* slice_split.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3913A88037E926EC1FCE7CCD1FBFD0FF /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FB20948313E52E2A54C81FE6694CD207 /* bootstrap.upbdefs.h */; }; - 391D8EFC19C41120EFFBD2C43F53E69F /* binder_server.h in Headers */ = {isa = PBXBuildFile; fileRef = E788A415E25EB920A6EB265B3185EDEB /* binder_server.h */; }; - 394AA4082A2EC3CD7F70C2630980565A /* internal.h in Copy crypto/bytestring Private Headers */ = {isa = PBXBuildFile; fileRef = B4EA72EFDFDE1E7FBB8C29A3AFC16093 /* internal.h */; }; - 394DB5081EFFC5BEA6188BD18A8B4022 /* FIRVerifyPhoneNumberRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = AB8E2D4C439A02A15B365386BCAC509E /* FIRVerifyPhoneNumberRequest.m */; }; - 3953096E003B4D7D294F03933A657962 /* spinlock_win32.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9616CD6E320D3063B973DFE071020991 /* spinlock_win32.inc */; }; - 395485F51F8B73BEA6B070DF670CBCDD /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = E595D21180F46EC1D31980433C2CDE28 /* unix_sockets_posix.h */; }; - 3955F27DD4BCD283AD614776FCCCD716 /* FIRPhoneMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D2FA6C3EBD0F779B1CF4D67B70802E2 /* FIRPhoneMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 395AD92FBD69B09459461E93AE76F19B /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1CF483FE30166C6F9C092B78F1DA9732 /* xds_resource_type.h */; }; - 395DAC4C9C1D67F0AE9E9A1639B918C4 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 35F9879CE34CA6270EFDABCFFDC56A87 /* construct_destruct.h */; }; - 395E9A75C9DD2D8CA6366FFF720FF6AB /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 4EB4857181698949BC3012F44F99E4C7 /* compression_internal.h */; }; - 39719A162A81897C508459B0098E29BE /* CLTypingLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EC32066E9E3661CC345DB644256EB42 /* CLTypingLabel-dummy.m */; }; - 3974947B8E72BCCDABFE3E88B7676B46 /* default_health_check_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 1398368D2FCC28ACF4105DAE1E07AD10 /* default_health_check_service.h */; }; - 39773EF44D60AC2769DEBD11CF2A9D94 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 34491EBAE4F913D87F311FE88219C475 /* auth_context.h */; }; - 3980D8C66F06838DD686CF367B971342 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD6A6F72A851683BA2728B540EAFC96 /* GDTCORClock.m */; }; - 3988A6F7BB74E06AC79D4C6BB17350F5 /* string_ref.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = DFECF25E986CF23DED9CE2C28C5C3D12 /* string_ref.h */; }; - 399C81F454E892F4624525C5C8341F9F /* create_default_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE8D49725F8042E90BFFA332841389AD /* create_default_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 39DA782DCED398D378A84930E7B8C22A /* charmap.h in Copy crypto/asn1 Private Headers */ = {isa = PBXBuildFile; fileRef = 171F490AD49757C7C83F7B0E22ACB1AC /* charmap.h */; }; - 39E069CF7F6F202DFFB4AC63C31C5A5A /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 724A5BAF656370E9A9C5B1E9FDD91D4A /* dual_ref_counted.h */; }; - 39E40E4461802E601E56FD2D01D78C6B /* tls_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 72EEBA3EAD4BEC7B279F66AF4A9BD5B0 /* 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"; }; }; - 39F152801BDFB84CBCD57FCD73A4C63A /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F030BA8B204A84375448D691BFF035D /* health_check.upb.h */; }; - 3A0A869A6C015D2850DD642A99BCF986 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3983670B229BF8C8B83F57F6309D14DB /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A1437B7F333EEAE14BC7310A9E7A214 /* eval.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D2165AD6802C93FB32098129B45A30 /* eval.upbdefs.h */; }; - 3A2705ED2222EDB5E150899EFF8020AE /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 3F9A2324EFE1A9094AB146BD55BE5FF2 /* port_def.inc */; }; - 3A2A7B66F06DF51011432290A7EB5964 /* v3_cpols.c in Sources */ = {isa = PBXBuildFile; fileRef = 71FB8186443BF2952B72DB1B90382FB9 /* v3_cpols.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3A345FCC23C929D9E55205DA642EABA9 /* FIROAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CD49DBCE5F26C030D3026C20CC3B4633 /* FIROAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A36D2223CC5061FF9F1D6A200FFA895 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E74012D0138C064621AA13083FC17AE /* resource.upbdefs.h */; }; - 3A3A850E75E2DFE4C0252A916CA5BE33 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CFCBF557B450C28C62115DA5A09D5BA5 /* config_dump.upb.h */; }; - 3A3A9651334855223D373ACC0F7AF9B2 /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 732FD2E501BA15B3643B5E75FFE01703 /* builtins.h */; }; - 3A3E006962CB5E597F2411CEA6D5D0EC /* representation.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 61A706224965F379548D81D1EB652B78 /* representation.h */; }; - 3A3E9ABECF8DE983BE7AFC03A4F428A2 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = E1459E43783B982C187E00129DD89CC8 /* grpc_library.h */; }; - 3A46FE3944A13DAF1C125437BAFF8B5C /* conf_def.h in Headers */ = {isa = PBXBuildFile; fileRef = B00D53290AAB3FCF0EAC9166914E3837 /* conf_def.h */; }; - 3A5D0876D74F8272E3004E00AC528166 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB304597FED9277C05362D1BC6433A1 /* span.h */; }; - 3A5DAEB25E40D576662AEE4CAE15E232 /* FIRCoreDiagnostics.h in Headers */ = {isa = PBXBuildFile; fileRef = C6FA280F4CB294DDADC936C906E8E172 /* FIRCoreDiagnostics.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3A5E7BE6A231A06CAC422E0E239E43A4 /* ssl_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81A5FA94A9CC5868125C6303E957DE48 /* 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"; }; }; - 3A70E47EBCBD20406EB657D9BD8E53D5 /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 77F9C8511B95518FA2CA0C524B274D56 /* status_util.h */; }; - 3A70EF8B45FB375690CCB8F9962D2B70 /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = 58CA1261190A47476BFFD6E6D5769A99 /* x509v3.h */; }; - 3A88771C736106B6BAC3CB323BA81DD1 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7BACA8BD1F55CB592E9D37E4AC694E /* context_params.upbdefs.h */; }; - 3A9C9BAD61CCF02672E8A016F92B2A71 /* byte_stream_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = D8693045961A4F90EB797D43A606E523 /* byte_stream_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 3AA74C28FCF2FFB06A7FD8AF7015380D /* FIRAuthWebUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 74E34A4C6DBCA5F911A58F405A3DCE33 /* FIRAuthWebUtils.m */; }; - 3AB4A95230838659AC9A1EE3B20C9138 /* FIRAuthAppCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B50B1686E684451FDB2B656393A1974 /* FIRAuthAppCredential.m */; }; - 3ABFD382D3BBC4C514D55AC04A1D5480 /* NSData+FIRBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = B55EBC5013E331D0CBAE3B934574111C /* NSData+FIRBase64.m */; }; - 3AD1DAA02C6D93FA7754EAE7D9D27AF6 /* strscpy.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ADC6A7477E4FA6256FCF730818E74E40 /* strscpy.h */; }; - 3AE7FAF194DAEBFCFC3F7ABE22D4CA72 /* deadline_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 465262F247160F3B86CC14880CCA471A /* 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"; }; }; - 3AEE68AE1DE48218555DABA31E58A707 /* cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 49AE3FB8C15125F66DEC967D521E2B9D /* cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3AF37779A3A95BA9533A681000D65313 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4568144909C2F6D106A7ACD175791C /* secret.upbdefs.h */; }; - 3AF57FB01B5DBE1DD92D1680CAFA045C /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5D31156CA5F808041CACA74DBC166803 /* combiner.h */; }; - 3B1FC660B94A1749C45294A348EFCABA /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA236348EC6D78D789EE5B5434CF7D1 /* FBLPromise+Wrap.m */; }; - 3B37AB009784A6416995255644ECD7EC /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 408B71D3E0267F149E463A0837B624E1 /* checked.upb.h */; }; - 3B4A4B5D7C4B412CE6BDAE0C9A00DE23 /* idna.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F18835E43AAE743B6DCA77EB490B186 /* idna.h */; }; - 3B70610E067B91C900341071834A5C92 /* cds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 667BAC6C2BDB2110CC30BBF9610FF171 /* cds.upbdefs.h */; }; - 3B74FF2363CC833BEF25B4E3F4F0F3B3 /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 01AEC015FE1445352B9747AD1ED24B6F /* seq.h */; }; - 3B7C5E12580F80ECDF722BE4F6932A08 /* grpc_ares_ev_driver_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 24ACF7FDBEFE569BE1788D2B3CC96992 /* grpc_ares_ev_driver_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"; }; }; - 3B7F682886A4EED1AB76F8795346EDEC /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA12178C1547ECC33770020AF8B1C2F /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B854D546BC73E7C4D778D854F50FEF4 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = C59534164E63CD30114D4065A8CBD5DE /* oauth2_credentials.h */; }; - 3B8CB99BE4327E396AD3A707B2C0DB10 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = E62307E7B559EDCC9BAA7D7D24E57C72 /* context.h */; }; - 3B8E7D10BBF455EE3F6B4501F42E2AFC /* forkunsafe.c in Sources */ = {isa = PBXBuildFile; fileRef = C46576BB3125EA5A63BBE2F24564C6F6 /* forkunsafe.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3B8ED9EE53EFC2FA8BF6A93F6589A57D /* online_state_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 557AF053195E4E1535624B1F30AEE6AE /* online_state_tracker.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3B9805CDFC7CEC91F6BAA44FC2997736 /* tls_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79E75A2A64ADC6B112F117C024ECBB58 /* 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"; }; }; - 3BB264E4B1AA9EA4C1E43F01024519A2 /* resolve_address_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5A84DAAB797057EEAC2BBECBD1D3A800 /* resolve_address_custom.h */; }; - 3BB3E2671A5599A1A48A608F891F601A /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = E264E033AD2FFC131B3D21D214DE1329 /* b64.h */; }; - 3BB66D277B9E52EFE92E2ABD3C0F32BC /* polyval.c in Sources */ = {isa = PBXBuildFile; fileRef = 7783292392AC373A65539E922FD7FE09 /* polyval.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3BB8781D8D146F6D9C372912B9E2F361 /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 665079E50D1F9DE8778E2E894AABADC6 /* text_encode.h */; }; - 3BCF8F256DA24774E1751119DBF7ACC9 /* randen_hwaes.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 20A0CE992004A9426ABBC87C8A9F6DC1 /* randen_hwaes.h */; }; - 3BDBAE301AC9CB7992C6F90067B0BAF8 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8037E1306A59555C81260D3FD37729A4 /* tcp_server.h */; }; - 3BF815317F91D9530F839FB5D2E7D880 /* felem.c in Sources */ = {isa = PBXBuildFile; fileRef = 2711A0841A9A031734E61B68B49B1E33 /* felem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3BF9CC358613BEB79B032EF25DA0D4E8 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = C863B9815B90F21CFBD4CD5E2CA640D6 /* load_system_roots.h */; }; - 3C1BA9631F7744A90CEA1D00A8D2C834 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 01EE093E08022F490ED57BBA14ED7A2C /* file_external_account_credentials.h */; }; - 3C32A9AC71FF647B7D6E16EB700D3680 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 18D5C614881B5B957AC21C397F05C4A8 /* symbolize.h */; }; - 3C383AAB58F2E8F752B661DF026E5910 /* binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 13718E78D781CAC908AD69A4AB91F365 /* binder.h */; }; - 3C48E72505211AA3CC2AA38DC163316E /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DA45B8BA1834AD8D49573C31C09F6F /* client_channel.h */; }; - 3C4C0F2155EFF7C04C1BB5F29CDFEEA6 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 3867EC36B10F71588E86C3C566262914 /* ev_apple.h */; }; - 3C5BFE0C00A1CC0AC7F441A74FEDFA65 /* dynamic_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F18D863A904F7D9A7D3DCEF0753001 /* dynamic_thread_pool.h */; }; - 3C6093F63D62CDA812A7A2EDAB7A932B /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = C408EC37BAA293E7155C7D1648D2FD10 /* 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"; }; }; - 3C700E51BD9999B74C17DD8F72A9B88D /* async_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 577369043FA5FA8FDAF630730C417706 /* async_stream.h */; }; - 3C7CCDA0E0C7C38B8E0A1CFADA7FA44E /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = DE31F621CAD4A75C21F0F9B1769442D7 /* internal_errqueue.h */; }; - 3C8054E6A7B1FDF711AD89FEA2A3DCD6 /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6FC3CBF51C0704C33A30858817A0B6F /* view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3C9308B074A008712B3A5E641156C821 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4088D74A22F2C8BA9604AAD6BBEA807E /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CADA8269D51D07B1A94C6E47D70367C /* async_generic_service.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = FFD52C1D89BE68534B3058B5C01D5E70 /* async_generic_service.h */; }; - 3CCB7ED20FEBE1359055A0C67E5BCDDE /* unicode_groups.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B73653A6E77DBE5B4C4D0CAE6EFFD7 /* unicode_groups.h */; }; - 3CCC64BC0CE26A1B9B1C09544426D85F /* evp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3906597C467D6690628F0B6330797BFC /* evp.h */; }; - 3CD13B45E1A8C2B78D1123937968D6C2 /* time_zone_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 22C62FCFCF0BCD4614045187C1B27BFD /* time_zone_impl.h */; }; - 3CDAB04CFCF1BF1615740ADB0FF57AED /* json_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = D71A76C212C2678D75A263CE58A8AD06 /* 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"; }; }; - 3CE4CEF462A93B1F82D94541B913858B /* tostring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30CCB2159D5C999162A39AB66BBBEBD6 /* tostring.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3CE76375AF5F380BE7C6A79DC6871154 /* field_transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A745238172ED92D4CEFF0C0CF78092B /* field_transform.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3CE854F00B0A1585BA25872CF962292C /* binder_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 254F524B944A594C50A83B4875F42C2E /* binder_connector.h */; }; - 3CEBB3B4C412FE1CBA231EB06793825E /* text_encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = FE30B0B96ED39FB5F73754230A57BD76 /* text_encode.h */; }; - 3D014ED0F82A8B03BF0539ECD7BBE58C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 3D01F1AB39AF32D37A9B60584004E073 /* connectivity_state.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 433314235FA7FB503210A48A7B8C3553 /* connectivity_state.h */; }; - 3D0234E605F46B93C425A262B3DF06A1 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE60A7BA6E0A8E04D66350CD9DB972D /* sockaddr_posix.h */; }; - 3D141DEDA7432EB0DF61C55DA7DBAD44 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ED526BE498618C869237B2280C4B7296 /* semantic_version.upbdefs.h */; }; - 3D154DF65A0E6EB1CCD21FED9833471F /* attributes.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 6846867D83FA317565DCBBD309E8E075 /* attributes.h */; }; - 3D370298477FAE87585864E545D0E528 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B515EEBDBB4AFBDC0AB59659D3B8CFB2 /* load_report.upbdefs.h */; }; - 3D38C41E5CC9E4D359BA3EB4B5D39B7D /* str_cat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E343720A4CE8C235BFBCB0C0A437D97 /* str_cat.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3D545DB9A1C90C953DD0AA49776E2E0A /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 3FC4C4C93886B9E9326D162E2DD4C7C5 /* useful.h */; }; - 3D5DD3DD3714EE3AFA5ABA508E58AE15 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F6812B437C1B185EF3A69575A2372FB4 /* sockaddr_utils.h */; }; - 3D5E643008DEF9004143B948E9A63D6D /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 62582003A5DC7A58FB6C3BCC1BB0C99E /* struct.upbdefs.h */; }; - 3D675715FB684536BA9E54677A57D3CF /* ext_dat.h in Copy crypto/x509v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 86C24E9D2FB1CEE0ADFEEB298B87A8E6 /* ext_dat.h */; }; - 3D6806029926E09AEA22F33DA554E55F /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 71DB43E21179D2027ABF07979D1D220E /* 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"; }; }; - 3D700C3ECB56A7FEEB003CD819336B64 /* sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = D7A1BCC1BD351D2E82C4A73CDAD1E3B1 /* sync.h */; }; - 3D70972C6EDC4B3920121C28F4FAF992 /* demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EDCBBB8E734CC48BD9A3F3398235842 /* demangle.h */; }; - 3D71A3C64FF23894A02E2078757839CA /* pcy_cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BE0C3B364EC5024E1030B3114141A52 /* pcy_cache.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3D72332395233BD560B8547184273DA2 /* getrandom_fillin.h in Headers */ = {isa = PBXBuildFile; fileRef = D212BAB6F36CDA459758DC064DBF0801 /* getrandom_fillin.h */; }; - 3D747EBFC79B390B80B386CFF0C77556 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 65042337FCD51B1287EB16CB9B696645 /* grpc_tls_certificate_provider.h */; }; - 3DA0AC8F2530040F118B98F92AA47562 /* mutation_batch_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9832B887B590C7F41D9F8D0E438773D /* mutation_batch_result.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3DAB7FCE5439AFFC5AD45D8774E2B2F5 /* byte_stream.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 47402177CE5A3DE11A053DD3CEF70050 /* byte_stream.h */; }; - 3DB984BFF06A7EACAD866F96F9DDAE44 /* FIRVerifyAssertionResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 513939EF797A0D3FFC253412CE4699F7 /* FIRVerifyAssertionResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DE64D17D791EE6D26D1587C9238A082 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F7FCD73D7043163D3436BE5E6A9B86 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DEE361322209684959F44605D230268 /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 492C1AEDF0F2473348AAD01F9857FCD8 /* status_util.h */; }; - 3DF280B623EB04D821C7ABEFDFFAA33A /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F021F07F2BB1EA0B57EBDCB932408C98 /* http_uri.upbdefs.h */; }; - 3DF62F455D5661045DEC06C4733A3E56 /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9124B20595A514A26E0E3DA0D809FA75 /* quic_config.upb.h */; }; - 3E0AF461B9C4B4ABF27728D4DE10F428 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 35DC211A1B169631A2AAF447ED18AF9E /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3E1E51BF41E99E05CAB351CFB91A6330 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 5892894960C914E174B043795089BF47 /* pollset_set_windows.h */; }; - 3E2BAF46ED852E0728F4E3ECD57F2042 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A806E667BE778D74815FCA1EC42366C /* fault.upb.h */; }; - 3E337DB3D31A685F72AC2E1C5E356049 /* windows_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = EA6C9BD4AD61CFF187F7EE76821C1BA4 /* windows_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E47134CA07DD8B2B3CA6F5B48CEE10A /* digestsign.c in Sources */ = {isa = PBXBuildFile; fileRef = 039EC92088632A500B7C3599B617F460 /* digestsign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3E51B67FA7FA78F68AB7BFE41038EECD /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DEADFADE249FA65EDDB9B9EC3554ABD /* channel_interface.h */; }; - 3E6E9864C433E560F0ABBC7CD2E1C93C /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE7945AC9854C300F67AD6CFFA4BC35 /* atm_gcc_sync.h */; }; - 3E6F6ABFC40F2CB9D16B4508F6F8ADAB /* idle_filter_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 866E034609AFF2AB1DF5E2A47DBCB64F /* 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"; }; }; - 3E7B9317522F4A97E692A0687E96C7C5 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 315EA5002D682DA429221872CCA3E771 /* resolver_registry.h */; }; - 3E7FC34D529C854113C395A4FB0C30F2 /* dumpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0E6D8157E71211666EBDF7C5B8A585C /* dumpfile.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3E907E583682AFF00CE5B66E0C54323C /* config_source.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 40AFCF9EB59D9CDAD4CC7EBBCBDEC219 /* config_source.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E92C336AB3CEFD1B8BA3BA42C568B2B /* sys_epoll_wrapper.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 18F8F6DB7AC44C59BF6198BA77DA9ABE /* sys_epoll_wrapper.h */; }; - 3E986522F5B27D88F128C33A7108A2DA /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 4932837CAF53E06EF71B43412AFA8D78 /* evaluate_args.h */; }; - 3EB01084F7C7A3CA9665B488E81A7172 /* a_print.c in Sources */ = {isa = PBXBuildFile; fileRef = DB6539463074E567351285C084FA86C5 /* a_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3EB6C12D72B20360604636D82D09321F /* seed_sequences.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = B866F5896D32013665BD2C89504836AB /* seed_sequences.h */; }; - 3EBBDC87F6BBF223EC6DC9BD6EDB1E7E /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = A45F54B0F7C8C5870CF72806CC6C37E1 /* matchers.h */; }; - 3EC82066B92192C6DB634818117B24FE /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = FE30B0B96ED39FB5F73754230A57BD76 /* text_encode.h */; }; - 3ECEA3120272B343576591B10051F4B3 /* srds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EA03399A7B468623B9679F0EECD5B912 /* srds.upb.h */; }; - 3ECF49D1695C1CA8CF55877DB1DAC6A7 /* table_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C3A4A8AA200F17F3AECD5A88285A09D /* table_builder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3ED8FD7F6500FA769DE38BBE1515C476 /* serialization_traits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 03CFAE30300C2CB9B8F90D95DF297431 /* serialization_traits.h */; }; - 3EDC22968C134A19F05BA35F8316B2E5 /* zipf_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 8DA346353DD8B04B3A8A1F8B6725A0E9 /* zipf_distribution.h */; }; - 3EE26B4456554061ED3AD6082B6445E0 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = D288EF42924243D421A2DF302D696E7E /* transport_security_common_api.h */; }; - 3EF8C1B4D5D7B84071F9989EE7E1BADF /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 2511ACDEA600A7860F4479462B373DE2 /* grpc_ares_wrapper.h */; }; - 3F05A82420871E42B456764FA5DE4350 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A7F0AFBC6A66D32632BCEB9EC41490 /* resource_name.upb.h */; }; - 3F147D621F60A38C2934177DF04DFDAA /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2DF5EBEED0D89EDDEADAC0D721A079 /* collection_entry.upb.h */; }; - 3F1A86CF60BBBC2961A483325867D4CB /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C368D6A71A3C78EED135868B46878AB4 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F20E946377BBFBA786E14D4AA3BC764 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = C6ED1D2DD590E86D9F22C0BAD48C6BB6 /* socket_mutator.h */; }; - 3F25FE34AC89FB8E7B636337D617C9B5 /* work_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1C1BFAAB2C8A5FB9112D556774EA352 /* 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"; }; }; - 3F26DC0EEA9FA5CE9798970F6DFC97B3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7AA62AE0F3FFB59513C0F688C50545 /* internal.h */; }; - 3F2897AF49B3176A3B59A150C0B1B6A2 /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C805321F397B4B00FAAFD18D1288C36E /* sync.h */; }; - 3F31A7025E183B150735CF8DF6985451 /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = CABC20E5064D11C863B55866F6D74AD3 /* timestamp.upb.h */; }; - 3F38A6E34D5D01C44721556E75F9B0CA /* resolve_address_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60828112F37F6D0FC95FDADBCEDB3837 /* 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"; }; }; - 3F40E7C94DE01EB4DF7ED3FA2FC8F60B /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C2F2ED49A02598CF47272D3EA5EF36 /* xds_client_stats.h */; }; - 3F4292C0B1DE6612D733A7C97BE8264C /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 295EB74E5378050D141386E004672B8D /* api_listener.upb.h */; }; - 3F44C7F9A69934A6816569322BAD4831 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C1D249510EBA504A9223F7F6DFD0FAA /* serialization_traits.h */; }; - 3F586A5D02C739DAD68B9BC0DD879B00 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = C08F143799202F9EA4BBD8C7E164FBA8 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3F68B4EAA888267C9FA39A4EBED65DE4 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = B18882219F9B11BFA89439644B1C5CD3 /* tsi_error.h */; }; - 3F6DE0A76E7021CA05441372241163AC /* slice_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BB46D2645FF96E502A1BD97E9687DEC /* slice_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3F6E06B55C45A8278C5AB7203CC1CDBB /* create_auth_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 11F203843CE6C7F85506A846373E8668 /* create_auth_context.h */; }; - 3F7045C38F6CEB76A1EEEF3DC8E4E877 /* t_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = B19A3739C63962C5F9250B750515A462 /* t_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3F76D61AFB496336D45DBFD05BAA8A11 /* fake_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7A4A7FDBFB29EDE523370E23DF2693EC /* 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"; }; }; - 3F791B06C88525AB05BD71F6007188DE /* database_id.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F089400446FF39AEE585E9EB90DCC06 /* database_id.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3F7E4CDB1E777025E03345762774C099 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = C23376E4170712F175AE36145E20BA78 /* log_severity.h */; }; - 3F811898F85F4BC5EF06BDCA291C102D /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F3E7E7FEA136401A4F0A999AB6E35A19 /* udp_listener_config.upb.h */; }; - 3F83C80EBBB891C77D4AAB8E3D03952B /* event_service_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C5BE69C5A2C904956ED2F634D6E20987 /* event_service_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3F86F9C6D704DE23646999AD94F25EDA /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 29E839E2409C4DEBF613483BB190B433 /* load_balancer_api.h */; }; - 3F89324946B36ABC33DBAA96B0FD0714 /* v3_genn.c in Sources */ = {isa = PBXBuildFile; fileRef = 9174CF0C5EF191C21D645C89DC9A15F4 /* v3_genn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3F94D7980AD5F6350AD4C82FDE14191E /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE92F69E76D3A4C9CEAA12B91A26695 /* pollset.h */; }; - 3F9746E529DF02451F0EC0F1B9DFFD53 /* time_zone_fixed.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DEBFE4A61DCBA5995E99136EBB60381 /* time_zone_fixed.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3F9D86C67D94EFFFB06489D819254C9F /* FIRGitHubAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = F2978EC0CE5A13374B10982A42E1848C /* FIRGitHubAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3F9DD52843896B9EE918A54EA5F4BB25 /* sparse_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 7ABD10E2B1E588523AD9FBD3940CE282 /* sparse_array.h */; }; - 3FAA1AF169F208F909C544CB0B94C086 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 46E77518A5A98B05D0F1CFC87F3060F1 /* transport_security_common_api.h */; }; - 3FBA0ACE2187334C54C8DB2181285DE3 /* path_transformation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D5F933BD1F3A33D9F5834CA43667298 /* path_transformation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3FC886160A486A28B4B9EE5026B1FA66 /* pkcs7.h in Headers */ = {isa = PBXBuildFile; fileRef = C22D0766A636764E0563915F251CA9BB /* pkcs7.h */; }; - 3FC900461C58554575E7A21AEA677F03 /* byte_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA8A5FB349D280095EDE58AB34326E4F /* 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"; }; }; - 3FEA8868D7EFD5D3027B8CDCE8DBD3B5 /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = C6D86630663F758EA2D3029744C730C4 /* FIRTimestamp.m */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 3FFDBD506DCEBA6D37B4A7AD9904596D /* core_codegen_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F507942283D65C20EE7AADED44DC257E /* core_codegen_interface.h */; }; - 4015DA8225901D241809C139F5BABF35 /* block.cc in Sources */ = {isa = PBXBuildFile; fileRef = E7B379A0E11B63FEAEE4C1740322F28C /* block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 401FEB2C12C965AAD4D9D58545D04500 /* codegen_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = B73B66243871E53D2CE0D389DDD20DBB /* codegen_init.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 40206797CD49D471BF0306A22CC5DBFC /* patch_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A32E86A187F522D01C7A8D7BC727210 /* patch_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4020824A00442FCD2A0E21EC2E469630 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7C3EDEC56FAC05820A497B6E4829A4A1 /* retry_filter.h */; }; - 4021A772AF402EAD33DB79C4A354F86C /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A7227AAB7C29CA7F1A7E03D3C1FA1D /* grpc_tls_certificate_provider.h */; }; - 402871F776DAFA2B55F157A7E7AEFE98 /* digest.c in Sources */ = {isa = PBXBuildFile; fileRef = BD960606F502C6BF27146661CB9F3505 /* digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4031E5D2AE82D3E7E7A1181324F6D64E /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EA5C1B46421FEEA8749ED536BEEF1E /* retry_throttle.h */; }; - 4048DAE87CAFF2682CC40626D8389068 /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3E8357A1ECFAF908250B25DCBB8D91D9 /* xds_certificate_provider.h */; }; - 40626883A0EBD7ABBEE8EEB7F46A1E4E /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7E86AC2F60004477CA101FB037F81D /* optional.h */; }; - 40633367C07C99B39A62A249D581634F /* re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 194D9E902B5032863A3872DFA38643E3 /* re2.h */; }; - 40664DD8915322A7E442BA16534470AF /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E0824CE197191EA4748AED5AB0F409 /* wrappers.upb.h */; }; - 407106BFE176F7CA3C351370D3A777AF /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E84782180234D80DDAA46771D10D223 /* xds_certificate_provider.h */; }; - 40732E52A7C82E10CFEF53451DC85B54 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 941DA661277F79EA7FD300E4F9DB6ACE /* channel_stack_type.h */; }; - 4077FCD0004D5AA9A160A6FF139A4A59 /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1B8757EE11A45905CD3C789A32FD30A4 /* string.upb.h */; }; - 407C7673F14E251D7E7BD02E976F68D3 /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 695B2647A3F36EB5EB43FE6D55E7B604 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4098D467E1AFE06181F0C2A4A62C5244 /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = EF84631B1BD863A89DFD6F285BF43554 /* poll.h */; }; - 40A74B5E93FD823CE6147E6AB84E67B3 /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 731C9CD88DBDACDDDEC4E2D6712C1BAD /* transaction.h */; }; - 40B35D561F9C57077A843645B3F2F30A /* cert.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F01A7FAC7EB6BCF690CF54EF48A7DA7 /* cert.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 40B639E690622F804FE86359086C4111 /* spinlock_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 9616CD6E320D3063B973DFE071020991 /* spinlock_win32.inc */; }; - 40BA7FD6E3EFEF2F92BC9C562FCE0D43 /* tzfile.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 42355E783CB4889255904EB91487EF96 /* tzfile.h */; }; - 40C062039B065050627CDA526027C062 /* comparison.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE3B5D68080F146728C8997C4A33236E /* comparison.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 40CAE1404DD86C866DC7F3568A8C1649 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 804EBECD19957CB235E9415F60286B92 /* quic_config.upbdefs.h */; }; - 40D626E293053E96E2FDA5BA855C59A8 /* ripemd.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DCB79C7DF7F13F26253ACA6599A4DA /* ripemd.h */; }; - 40F03274D028259D1E29FC22676D24A1 /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C982BD56A0CA1D5B756A336180642C /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 40F0D6780E51604D067BBB9D4D772734 /* upb_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EABF70D8A882EE12AF939E7386C8B8C7 /* upb_internal.h */; }; - 40F2BB30E367545120CE5F667D492184 /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 476C6CBD7983889EEADE7A40DBF578A9 /* grpclb_balancer_addresses.h */; }; - 40FBBCA1AC84F3F764E469EE1A37B474 /* iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD70ACA3F6A313E808CA86A0A53A0203 /* iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 41078018A6CB5FFD3D855D7D0FB50541 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B49BDB0B122F7A383A21639753D0255 /* udp_listener_config.upbdefs.h */; }; - 41080B7EEE47A04A414974B9B694BECE /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BE27CD6D539A21E10BB1F379FF67E61 /* FIRFirebaseUserAgent.m */; }; - 412DA26AC8F2A56C765944D8EE735DBE /* channel_connectivity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 873687AEFA557524CD837B9CAB380039 /* 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"; }; }; - 412DBA037BAEED1F67BA52515CC6F91E /* delocate.h in Copy crypto/fipsmodule Private Headers */ = {isa = PBXBuildFile; fileRef = 04F5AED04D774AFB1CDCBB0DBAF1EF04 /* delocate.h */; }; - 41352191B7B75EB8FBBD157385429E81 /* p256_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A9350584631285065A0B7A19044102 /* p256_table.h */; }; - 4157F7821432BEA34373237B07F7553A /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4949754FF74ED2EA97CF481173C0F132 /* 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"; }; }; - 41604B001EFFD1CA32927F5E6BFE7034 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = DE46969394F93E30E45B318EE4D104E0 /* xds_channel_args.h */; }; - 41703A397BE198DA6D1DDA0DB237BF61 /* cds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 164E08AB20A64EFAA7F2A8B2D5DEE2B6 /* cds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 417F2FCCF9066317992C78A1ADE7853C /* FIRDeleteAccountRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A075502B0971B7CA755D892DF582AB78 /* FIRDeleteAccountRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41899F8F35A3EF683E60E88BB8E4DD26 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CF7FF71520172A54AA51AA42DDEB02 /* rpc_method.h */; }; - 41A3875B60C38572469C5C8AA85FD0B2 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = 105F6F2140CC8863CCF1D3A3E2F88F44 /* deadline_filter.h */; }; - 41C75A51E79C092BF59F4768D155403B /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1360D9522A38AFAB3B1B9BC5E8F4E907 /* altscontext.upb.h */; }; - 41C9752599B5C5E56751547A11C13B02 /* params.c in Sources */ = {isa = PBXBuildFile; fileRef = 682FFBD320EF46754D9D88D64EE0FE45 /* params.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 41CAFC01644F984952DFC1702F651A58 /* md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 6132F3A5BA54BFB1D488321C522B589A /* md32_common.h */; }; - 41D5D0E9DA40DEE821376BA53E8816BE /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C1A734BF9CAFB89DFA61BC0BA6A7DB06 /* context_list.h */; }; - 41E24F6106F8CA36068FD0CD14A32239 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A3572014B13719B064E0C0820F1B40D7 /* node.upb.h */; }; - 41EF8A49D41E9986C8490358AD4D1989 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 68972317BB82871141C5B4B16D8D7DBF /* annotations.upbdefs.h */; }; - 41FBF0B349E339DCE2768938E69EB6C2 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BAAD8DC1B8F6E696C82AB47F3634A2 /* ads.upbdefs.h */; }; - 4206E0541E351FCC0C70A59019D6A752 /* FSTUserDataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = FEB604D15FE98D324F07E7D3AD9C746A /* FSTUserDataReader.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 422D78D059602514F9412A20C3842C75 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = AC6008769FBFD150D014895EDDB149D7 /* channel_args_endpoint_config.h */; }; - 4234E8ED4B3D2D14DC0D5AEFA3656ECD /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A1D22D6731CA71E045964FABEF3BEFAB /* timeout_encoding.h */; }; - 4237E29AD3D60628BB0C740A8B841382 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 567DE34A17B6351564C1B1B156942529 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 423D879B89CB9EDDB5A5F433DB4BCCAB /* timer_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 26783FFD06BDFB3076708698B2BEE932 /* timer_custom.h */; }; - 426AFA913769EA9463E393F82B4BA591 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = F2EEA44DDFFE109C6FF944EF696AB884 /* flow_control.h */; }; - 4270ADDE6712DAC8853BABE8AC6483B3 /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 99529AFB53A046FB2DB3E3A5967BA79F /* transport_security.h */; }; - 427D8401885874B6CAC412375F856277 /* not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = DDF341C1AC91DFF46EFC5323EE23D3FA /* not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 427F106D99EC33C4F291FB0A25B069BF /* fake_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79D05D52E31B4094E284232985324159 /* 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"; }; }; - 427F238BAC01C4DF6F0021360BEDCE77 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = C998A8231621FB295F4B4010E042AE41 /* GULAppDelegateSwizzler.m */; }; - 4291A2853F5A0CCF50328C87A64A4CE3 /* resource_quota_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4892F676797FE9694FB3CC0FAD5227C4 /* resource_quota_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4294D7F3C76E4B6C2D12E3F7353443A8 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C5F42D556C26DB296C6B68AF657A8EC /* versioning.upbdefs.h */; }; - 42A75F168A329E4EAE35E2D2629613FC /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5453F7B4FAD6BB59D01E772773491110 /* outlier_detection.upb.h */; }; - 42B033900DF2AB35B87BD89CFEE05174 /* byte_buffer_reader.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E1792A159A644096F31504A3F4CE6B43 /* byte_buffer_reader.h */; }; - 42B4A37BE660EC1B3ECC885C4B9DAD14 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40C2FD00BB842A41577CAF6F3813640B /* Storage.swift */; }; - 42CC3D74C1C51EA00E7F8022A535D669 /* decode_fast.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 768F949B40301D207E873B6E6E266E00 /* decode_fast.h */; }; - 42CEF7F44F24563109EC420AFF21F629 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F284BCC7EABFB22CBB8C7AB7736E3B /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 42E32C8B9C98A37A946CF04FCBE7E988 /* env_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78B9A6E0D9415CEA91BBE749CA784FBF /* env_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 42F134087A7ED0B9397A9EBFEB0C7288 /* rune.cc in Sources */ = {isa = PBXBuildFile; fileRef = C725D72881475EB1E4C44CAABCFDE942 /* rune.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 42F40EBDF9F7B57E31D791820D6BF7A5 /* cfstream_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 67454EC80B766A49853CF4628723875E /* 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"; }; }; - 42FA722953FB4D5C873A6B6279245CE7 /* resolver.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 9C88097B53DBFC74DE522D3A6631CAED /* resolver.h */; }; - 4302EDBCFF58754576919CEC625E00AB /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 1B03E6D535171A4A06590C4066009F2A /* event_string.h */; }; - 430491F7DCD0F6E37524470473C1B7CC /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = ABDA16D605B2CDE3BDC3C7046A243A15 /* xxhash.h */; }; - 4307285EFB52A82F2268ADE5A3B8E04B /* elf_mem_image.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 008F4B3C6F0E06E4FD9D7DA2C275B58B /* elf_mem_image.h */; }; - 430F802FB07494863D831C39E76C4C34 /* server_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = A99088ED062AB2C27087B746077C76B1 /* server_interceptor.h */; }; - 4311CD573D9DEC67097888B96D76CC86 /* optimization.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C217BBE0010EA2018747A49C2E09B16 /* optimization.h */; }; - 43122452034655610BE7746AA1A1AC92 /* watch_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 514443CE44B5457F38360560E21CB2B7 /* watch_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 43123D0ED81849355617845A2C0AE0AE /* front_binder.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 684D16A44C9949E522F0782808B9BFA4 /* front_binder.h */; }; - 431ABFE60BBFBD77186A08B2687B53DC /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 38960C23A5CDEF5518BA2D029DD0B7B8 /* validate_metadata.h */; }; - 432634059A45E87C271E5AF5DF803132 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F1E54F59F5091F8178837BD3D5BECF /* google_default_credentials.h */; }; - 4327B696201AB741C4E69287032F1095 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A74F99F5B2B3F4DA94821916777061D4 /* resource_name.upbdefs.h */; }; - 433FE1EE717CEB646B426E84CEB78D91 /* cbb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7043E454584F0054D86E8711B5867952 /* cbb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 43598B9F63377D4BA667DE2161E7696E /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 6187F081F340EC2B3E66DF800D9E5AB5 /* sync_abseil.h */; }; - 435AA1ACE80A2545E5F1BF12A88F02C4 /* grpc_service.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 958D65B217E5EC5E56405E2A89A567E0 /* grpc_service.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 435E9127CEC953AE14C4C82A4CC99C41 /* rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DCEA46D88606CCB5D800F62EC370C36 /* rsa.h */; }; - 436826E5EE954774FE11A2241A9CF17B /* optional.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = C8A770B7AABB4322CF784037E10DAC70 /* optional.h */; }; - 436B081E8BBCE39634EBDC6847FDDE51 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 850FB736D8A70EC850956A82CD5849D9 /* 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"; }; }; - 436D7EB9844246EFA9EB162188C1EA28 /* e_aesgcmsiv.c in Sources */ = {isa = PBXBuildFile; fileRef = 2553B6B0242BB468D7301153F95211CD /* e_aesgcmsiv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 437D677D1833835755E45070BDE20E96 /* timestamp.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0053C09A789A18B70B272E4C7999B5C2 /* 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"; }; }; - 4388293DA6A0F492A1BBEAE99EB6A917 /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7CC3B7274B204C5BEF266656A274CBAD /* closure.h */; }; - 439713749418B25AFAFDBBB04CD42D90 /* container_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADCA58369C9314BEF7FFB6A8CEB21CA /* container_memory.h */; }; - 43981D2DB0D557DDA54A279FD9BE2877 /* FIRAuthUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3900532E6EEAAA1FBA1F9E37322FC946 /* FIRAuthUIDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 439FBCB414759B65A1F6A0C8278FF3EF /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 32027744A97394A95DC5724E3F25AEE1 /* FirebaseCoreInternal-dummy.m */; }; - 43C1D21B1FA6271862E0F3E743EAA1ED /* sync_abseil.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 16879689F72DC8AF3940C9F3C8B7CC01 /* sync_abseil.h */; }; - 43C69A60968AE118F606BA170993367E /* escaping.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 30641BF0C9A6C56579616B86B9CBEDC0 /* escaping.h */; }; - 43C8C05A36002F3F4EBE557998467E4C /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE5E734449379D20E08E13749DCAE3F /* encode.h */; }; - 43D8037E5C1776782B0CCE78B1DFC52A /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = E92B7E2A01A1A84C351E4515E391885B /* service_config_call_data.h */; }; - 43DB686AFA70DD418428BDEC4EDC315D /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 860D5BADE72B0C37EC664BB2F54A06A2 /* rbac_service_config_parser.h */; }; - 43DFE22FE7DEB95E89812495F9BC4BA5 /* stacktrace_emscripten-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = CC0A5D90843E279269F9A66DA5AD1C87 /* stacktrace_emscripten-inl.inc */; }; - 43E8983C4BBF845093C8C315D9092C8F /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A15DF5B35AFB3F9630D58CB4EA2893AB /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43FA87F6B50C2DD54237105B2E5A53BD /* port_platform.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C0EFB6B2E865C9C1C5F304337A94CC15 /* port_platform.h */; }; - 43FAE57F1E32DAFB8352695CB9742AC4 /* time_zone_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = F14F0DE50B4CB633FAE83E281885F8D9 /* time_zone_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 43FB4C48F7B9D319C092BA6718322426 /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 79C3A7D7CA612068B66154CFA2106C0D /* alts_credentials.h */; }; - 440232125B18190BF3D07D61C830FF13 /* client_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA5D1E61EF8C0592D12C1A2B4A893AF9 /* 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"; }; }; - 4405837D9CE761FF12AFA50E2BE6256C /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA4882F4984BEFDC9C47DF4E1CBDCEC /* sensitive.upbdefs.h */; }; - 44074425FE45DE1DB6B63A3C382DF4EF /* alts_seal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9DACB60866DE5EC67581EE57AAA2414 /* 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"; }; }; - 440D71C88E495CDB027053046CAF4BC9 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 381D7A72344929717C0D4200914EC9FA /* alts_security_connector.h */; }; - 441189BF8F1D7095C9466461DC2E17C2 /* rand_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = CF3F3AA21887C68B6B22D4563A4E23D9 /* rand_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4431A8B4472FA4E61B6591D90AF254E8 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F08BE196034109B697180D78D809E347 /* PromisesObjC-dummy.m */; }; - 4438EC08FFB3357E57B24DA5590BCD4B /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BDAA77E4D4E97DF2602DA099F5A30B8 /* checked.upbdefs.h */; }; - 443AA914457B7D433BC71AC580120721 /* connection_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6ABEB4983A534AADCC7FAFFAC2B48A54 /* connection_id_generator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 444021B2B84F931342F3E996E56F9097 /* annotations.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DCB722C5580C3374611E817F413456F /* 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"; }; }; - 445CAA09D3BB99FDBBD32A48C961EB03 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 06EC2F2CF14E9C040A2BD2941944B9AB /* substitution_format_string.upbdefs.h */; }; - 4469413DCB236B9943BC790E8B5E85F9 /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E43F67AEE07741EE4D2F439CB32A4D82 /* common.upb.h */; }; - 4476215307C0A494D811B6C864FFACAB /* ads.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E3B766557559F5FD34F3189EDD5DDEF0 /* ads.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4479C845043CC747BE7FA8771D4C9F3B /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 2B8A4984270A3A0094AD8696AF5CFEC7 /* empty.upbdefs.h */; }; - 4494262F7E1130D12D0256CD5A33D072 /* client_channel_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9988F94F0496F3AD8CB87A58EF807E8D /* 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"; }; }; - 44974BCAF615B143C07E5D97A3708F34 /* settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 162E2896B50B3D18BC8864E30E9E6311 /* settings.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 44A5360ADC52A5FE4FA0E722B5BD1061 /* client_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E7C3B971E061CAA4118317470F26C80 /* client_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"; }; }; - 44B24F8A0A057864AB3FA2B1F46AE052 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6739EE4F39EBFEA3F019DCB59BE3689E /* socket_utils.h */; }; - 44B5937CFE8A4E2A179230BFF71DECA4 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEE076E65297226B99003203899237E /* common.upbdefs.h */; }; - 44BAAF6C743525F9B880FDBDF83273D1 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6C50611EB192ADF0EA7F709939DE50 /* fork.h */; }; - 44C6748DDD8F2646D0707D2B51908990 /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = CE3EDB15AA47F928FC042E2FFAC93322 /* slice_refcount_base.h */; }; - 44C71803DBFA3DF4B0443C1FA8630862 /* channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = C6A614687D8D96084D0809B9DBC13200 /* channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 44CD1A6315F844618A191583D7F1F109 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1960D9067D5E66F3BF55125055D12786 /* status_conversion.h */; }; - 44F70DBBB12FC3A4072295BC09265CDC /* xds_routing.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3C6C6A84FDD092305F1808E82E13B45 /* 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"; }; }; - 45037BA06C8C89E338E942F9B472A6E9 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 03EC09431A21733C761853523EB8F447 /* server_config_selector_filter.h */; }; - 4508E65D8BF3CB6B29F5B5F311A9231C /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D8AE15FFFB887131033ADAA1AD8CD9 /* config_dump.upbdefs.h */; }; - 45217357ED1645EE34121619A1577AE0 /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = B4DC05570B01D1BCE88CEB55DCAEA10D /* syntax.upb.h */; }; - 453A522CF3A29BBE9A0A908CE9DDBC89 /* curve25519_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = D4A48F0FC2B5B383E5549A55EC186092 /* curve25519_64.h */; }; - 45492B4F0C4F764EB2FF4F790C4AF567 /* status_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89E86D9D5C91216F784927BE854E964B /* status_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 456D38D0F89AD4D57C1679DEBB243ED5 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4659196B4EC3C5F86E39E5406F56C8A0 /* executor.h */; }; - 4572989304EF775BE954148D17950E4A /* external_connection_acceptor_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BBBC0E5EA92566A613D71638D51EF53 /* external_connection_acceptor_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 458503394BFB32B41C12893E0FBBFC41 /* binder_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13F35B7C63EC49466E0CB66EC7EAF51C /* binder_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45A08D8385810340285D8B4DCFB0767C /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 50026C6E0C9602DB8FF5797E20E827C0 /* xds_credentials.h */; }; - 45A64A09821C9931479E463C2D804CF8 /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = E92B7E2A01A1A84C351E4515E391885B /* service_config_call_data.h */; }; - 45AC907E6436FDBAFA3A43F1CBDDF21F /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CC3B7274B204C5BEF266656A274CBAD /* closure.h */; }; - 45ACDFCB08CCE5F068E9FD878615A0EB /* des.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 439DC80A01D31D0DA565A05B973F8FB5 /* des.h */; }; - 45AD9BE5F298F03D4195BB67DAC500DA /* loop.c in Sources */ = {isa = PBXBuildFile; fileRef = C9B5D395F4C7395880FEC38279818836 /* loop.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 45C668BE2AF8480078A2BBF721ACDD65 /* secure_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7155081FDB6782E49C7B2676E50BAC6C /* secure_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45DC5F9069948F5212E01A51BD490528 /* handshaker_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A60B45FCB497485D236AA563671464C /* 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"; }; }; - 45ED29270A006ABD2293ED5A321EB277 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD3FC72340EF81CF403FE3EB25A9BFDD /* statusor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 45F46C57A2175CCB25F7C710FCE70787 /* nanopb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1347E56BC088529A1E10AB3717C8D528 /* nanopb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 45FD39559635B25C7F4EE0D1C7FC7347 /* cpu-aarch64-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 72395D28CCE51076629E53B7EC8E0E91 /* cpu-aarch64-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 46240CEA7218C8F0A5CDF28D7EA0D3E3 /* idna.c in Sources */ = {isa = PBXBuildFile; fileRef = 74EF4AEDECE802843357099594532B26 /* idna.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 462A605447731943CEAC3899CF57513E /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 64A7A1D31F84665CDE468E26569F5E54 /* ssl_types.h */; }; - 4650E54F5675CDEF8F437D44DB62DB35 /* err.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 66B2001F35E3D8A9F964D9463FE34364 /* err.h */; }; - 46516425321AF5ACE75893A84F3EF1DE /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D2DC228CAF707CB39D12A2F8494002 /* sockaddr_windows.h */; }; - 46702A48B6D1EFA14909BDA85EDAF5D8 /* byte_buffer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C0181A546BC885270BF0ABB42116D71B /* byte_buffer.h */; }; - 4672BC34C1C808F9D5362309270DDAE8 /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = ABDA16D605B2CDE3BDC3C7046A243A15 /* xxhash.h */; }; - 467AE565B01E146BB5BECE3CC44BC454 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 309C3640AADEE30CED9436741796BD75 /* http2_settings.h */; }; - 4687650683FEEB8DEF9D670BA952976E /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = E4EF9A96A73109D86F43AC6D681D8A62 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46A15BDF5A8BA5F2B3345A6B55511C31 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 051CFB6A3B8577E17C6BA543DE60655B /* authority.upbdefs.h */; }; - 46A23867DC9310B9913279236F22BB1D /* grpc_tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84239BCC5B81A8DEFD7602C353FD75BC /* 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"; }; }; - 46C69B0634B30E137583CA0D0361C37C /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4F96768A3D8951D7AA42A0BA458EF7C0 /* timer_heap.h */; }; - 46DB7B8B7E6959E53C2D65FBBFFB4690 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A4740E2C1BF014B7C22B066D82FCD0 /* arena.h */; }; - 46DE7348EA58FAB99D5CA67D70658331 /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = C09630187431D682F28B9EF86B91E3FC /* trace.h */; }; - 46E1DD28852B2A180D83A210F617BA3D /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B73CD2EF881EEFFD3B2755144FCA37C8 /* url_external_account_credentials.h */; }; - 46E386E776F5E199BED358399FFA072A /* pollset_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 05B52CECB19A59ADE013965B3CF4E76C /* pollset_custom.h */; }; - 470AF9D33A0215CD776813F9931EC4C1 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = E93F49FA1B936E265C8DEA583A74DB54 /* versioning.upbdefs.h */; }; - 470CEBAB48829F8F8571FC7843275A9F /* p256-x86_64-table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 190D8C358B73CFC381C6F594D00A22FE /* p256-x86_64-table.h */; }; - 47104062386AECBE7ADA8A2DCDB8DCE1 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = AA659B0CEC53DE47C207E9E946C54998 /* bitset.h */; }; - 4712D9B7DF41988BC12939A076D739D2 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 152C94B565CDFA1CA88FB0B2EA1A4669 /* api_listener.upbdefs.h */; }; - 471A957EA39CAF909472E3D6B72D668B /* curve25519_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = 40DFB51FDED20D07155B0DC85FF4FFEA /* curve25519_tables.h */; }; - 471F1B602D34A8F931CA7720DA3E7A73 /* NSData+FIRBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A1AC7F30C8EB64FE27E72D5AE4658AF /* NSData+FIRBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 472FF0D076DEB03DAC42B4436EA58618 /* randen_hwaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A0CE992004A9426ABBC87C8A9F6DC1 /* randen_hwaes.h */; }; - 473098B9197F919F21F045CB92220DEA /* cpu-arm-linux.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = 575DD436391DC3BA9D4CED488AE2F6CC /* cpu-arm-linux.h */; }; - 47358087C7F9F144A6B6F933829EBD89 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = BA742090B0070F9E5FDB352E494586E9 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47371260BDC216C39D962DF474DA7029 /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2A70FB5288867A5EAA0C1F5743344615 /* port_def.inc */; }; - 473B15FE4E093E91D46E841481F9160B /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = C3CD6488F7C19732C0D5ADE3B731F6DB /* config_selector.h */; }; - 4749B67A44E6E8D1195BA70864C60F52 /* FIRAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = DCBE62C0B163E9CE657447A8139A5807 /* FIRAuthTokenResult.m */; }; - 474EA13520B6E37D64BD9F5431D75025 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 645634BF7DADAA8AEB083791543CDE1C /* http_server_filter.h */; }; - 47505411F026366C329A20AEC1457265 /* Pods-Flash Chat iOS13-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F843F9EA4341AC59B7F6DED6D8067F7F /* Pods-Flash Chat iOS13-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4753D089B0D16C9139B1257BF104A82B /* match.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE012EFDCB5F347565AF1BA8EFE4D954 /* match.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 47674DA93A1236BF16F8CD1A0DDDEF1F /* transport_stream_receiver_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = C380B43CE839010FBBC62AF26CBCFA10 /* transport_stream_receiver_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 479535EF9A2BD7FF1163D8FB6390FECD /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = C59534164E63CD30114D4065A8CBD5DE /* oauth2_credentials.h */; }; - 479D1E936EF82C71D9CBC07A9302AF53 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4BF3AD27D17E8D39FEBAA125959DB952 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 47A179130CFE54A71C3A7379A1983D59 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE18E936DE3AEF0D077965B343DF523 /* http_server_filter.h */; }; - 47A69C8E296FC62B38BF5DB653B03FDE /* resolve_address_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 58D5D7A847B5BA00D7E5289BAC10EC22 /* resolve_address_custom.h */; }; - 47A8C235F04DCEEAF91D90EAEA4E192D /* grpc_library.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2A550B61F9A6CE6ACE773AA5F2734EF0 /* grpc_library.h */; }; - 47A9839017A63D7EBF353C704B93AACF /* FIRMultiFactorConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C2D79FD11B6F243423DFA89100E4DEA2 /* FIRMultiFactorConstants.m */; }; - 47AAA4A1FCC0BBA8E9F45E40CDE5616F /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 173E5A4C450048B6C6C6B302691C1974 /* value.upb.h */; }; - 47B49CE99D6071782DABDD4C674D7093 /* layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E00607DDE6722CFFD71796198FD0C1 /* layout.h */; }; - 47B8BEF36EC512AF7163AEE831049ADC /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F203843CE6C7F85506A846373E8668 /* create_auth_context.h */; }; - 47BE7DB2643FA965E22A7A25B00AAFC8 /* http_proxy.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5302244D099757754F2D0B45FB759BE /* http_proxy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 47C73673D4BA95A5914F7888DE9676C6 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0DB4086DE19DF3D4B5EA8E42A0AE451D /* call_combiner.h */; }; - 47CA479EC2913C3D9FA3C9A468D52923 /* version.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = E9309C3628B3BB6CC05595DB7C4490B7 /* version.h */; }; - 47E73A7D955C384AC2F88E5E4AAC2E51 /* rls.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90BADB2D9732E8472FE44DA83861CEEE /* rls.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 47F6F464A0FFA81A04C1B67332673B70 /* e_rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 7714CADF8EED370782F432BCC600112D /* e_rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 47F9168594135C8764ABB29ACF1C856B /* health_check_service_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C57EEA26AD6BBA77AE13C7A4D4FFFC3 /* health_check_service_interface.h */; }; - 47FE6B59FB827C9564B94CBB9B08838A /* auth_metadata_processor.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 65A0049FDBD6B133C6A7CA37A895F911 /* auth_metadata_processor.h */; }; - 4803D72174751203474949B3A83644C4 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B15B6F16FCCDEE6466911D1CC6AEB0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4818BB265C7ABFE18AC02A9CC7825E77 /* xds_resource_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 39D1C24B205845449C3DD36C7733E568 /* xds_resource_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4825E70456D77A17A80E16C290DC55C4 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 45AC354AB6889EBA1ED0CD2C528B6311 /* sensitive.upb.h */; }; - 48265414DEFC757565190EA17EDE29A3 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4AD9FB96555D3275666B4151B20CFC /* ssl_session.h */; }; - 482A13D9A63038B75B98D32E96D1A921 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 85CF5959E52A9BCD943DD4A2513ECD71 /* url_external_account_credentials.h */; }; - 48456D353A3B20345423DB25A9C94050 /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 93D3CA6CD5CD08D0835E1A62BA8E4A01 /* resource_locator.upb.h */; }; - 484D6B48971EDF8CB52579E8AEF7E6A8 /* digest.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E8EC9429436F9734233822710E79603A /* digest.h */; }; - 485AFE775D69E95844004AD3D48BAEE8 /* internal.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = CD215B139F99764ECFB4ABE97A34FCE1 /* internal.h */; }; - 487B4338B7CCA5C1257FB4B09D2298EB /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 09E7A06DB41077318FAA5DD03E533C32 /* stacktrace_x86-inl.inc */; }; - 487D0E0DDAAE40D7A2DDA402A0B17241 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = E6FE6F7D69C20EDF333264214F637C5B /* iam_credentials.h */; }; - 4880B318D72F7CFB075B70F58381AF2D /* div_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = DD81BFD2D733C61E88BCDC297E49A022 /* div_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 488E3E7120357D0720DCED407FFAFFC2 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D02212315D8427A4561D868E99354EF /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 489166F36865878AE3EAE8E26222D272 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = A0372D9E5AC53789D06A86098177EEED /* subchannel_interface.h */; }; - 489ACDAD8592DD0B0F0B3014D2139D27 /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5DD9F73745779FDEC3A122752A8A2E96 /* lrs.upb.h */; }; - 48D4F2DFA23A0CCFDC103F3BF040FB83 /* wire_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD4010AEA140A8338AF644585089540 /* wire_writer.h */; }; - 48DB67AB86768973DEE0BF7637C222C4 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB7AC6D0022C4E8E5D8A87CB7A4D419D /* listener.upb.h */; }; - 48DB6908ECA6A8ADAB52631F73B32C20 /* x_algor.c in Sources */ = {isa = PBXBuildFile; fileRef = CE0237899554CBB5F63DDAA329A2E06F /* x_algor.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 48EFAB4151FFD5B1A2F9C0B9E921424A /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = FD8E5782C1B2822D458B8F72E0AA219D /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48F06160CC2F823BE827D2208D212652 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 17F11C58B1B9088856035B4F5B4CB2E9 /* tcp_posix.h */; }; - 48F20FC5A13E89F03B5A026C19AE6E24 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A609003157E264550C579338BDECEB6 /* typed_struct.upb.h */; }; - 49028A63B01EB3EAD612CC2C1C4F0085 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 85CE76757D158AE389D0EA2BE5A34086 /* filter.upbdefs.h */; }; - 491714C99FC6F02D3D29524FB797FFDB /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = DFECF25E986CF23DED9CE2C28C5C3D12 /* string_ref.h */; }; - 4923451C2888B3A32EBF97C16E55CE78 /* credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 09219B6965124D7CC583F7CAC19DFB79 /* credentials.h */; }; - 4924C0C27167F7864B930D4C8749C03B /* FIRVerifyPhoneNumberResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C38DC3C3143523A4E2AEBF9222C627 /* FIRVerifyPhoneNumberResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49293B7E37D1693808772AA115F1640A /* log_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 6934C7AE4DFE5FE0423641593EC7D0A8 /* log_windows.h */; }; - 4935B51FD9EEF82391734DDFA0CABD09 /* FIRMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FB225E62EF172357B3E0DA86D4AECB84 /* FIRMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 495391DDC16803C6838774A5E53E5354 /* FIRWithdrawMFAResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C084BC6B112233FFF6F45D47996A083 /* FIRWithdrawMFAResponse.m */; }; - 49692AB75398C9BE15351BD214D0F34E /* encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = E2FC9010A499AC6F06F9233BA1D72B18 /* encode.h */; }; - 496AB22D61C596349406BD430F91B883 /* internal.h in Copy crypto/bio Private Headers */ = {isa = PBXBuildFile; fileRef = E40D05F40778528A6D07508416613D8E /* internal.h */; }; - 4977033297BEE2C4AB5175399BE1EB49 /* explain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 651B3EABCB682CF0D00F0EE27B208D9B /* explain.upbdefs.h */; }; - 4986F72A08EC535967553C97FAC8B8BC /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E9C813306FE4637E3A1F3F671AE68B1 /* tls.upb.h */; }; - 498D38DD62824CEEA022081AE83639E2 /* atm.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B52F2B0AB87360DB9AC86BA63FE8E5C2 /* atm.h */; }; - 498F3745F1ABB9C84E9D1C7800161CB5 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B932235E4F3FAD4839BE79EC00B2B1F /* GULSecureCoding.m */; }; - 49906D92327C87C166D20FB6E23BAC15 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 4D6FEE3CA9F96F7CA61E9412C792D92F /* grpc_alts_credentials_options.h */; }; - 499257A3D84E6A49115D344ACDDF1797 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2A944A1ECC8689E7A9DDDB9023F511 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 499BA8B2B50FDEA72C2557F601B9B1F0 /* generic.c in Sources */ = {isa = PBXBuildFile; fileRef = B795D9A40FA2C0A605AC3A6E1EED4509 /* generic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 49A02131F7601C77C8BA03D64143DA45 /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = B2DCCC73DC8B3EF36A2FC3C2AFF689CF /* json_token.h */; }; - 49A3388C9523F385C4CB62EE23787AFC /* tzfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 42355E783CB4889255904EB91487EF96 /* tzfile.h */; }; - 49D0E8BEF718E228181AE8454C62867E /* cord_rep_ring.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FB2417058DD5CEBAC8310A2F6C7DC5F6 /* cord_rep_ring.h */; }; - 49D9B5F35EA0D0829AC7774DC34FA2D7 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 39CA457A5A01157C2B91E819DDCC4322 /* evaluate_args.h */; }; - 49D9E995394439CC5937C06F3D4F95EA /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 4932837CAF53E06EF71B43412AFA8D78 /* evaluate_args.h */; }; - 49EECF49AB01418E9E65EE8FD738519C /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2596B068E37E2DA464F89021B3C799 /* ssl_types.h */; }; - 49F53F98364D58C29ED83069C319EBBE /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BF8D2A37975F69B29D91B636352945 /* client_context.h */; }; - 4A24873A451B57F5C8713102EAFF95B4 /* stats.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CCB7B9E539043AC58010754DCF25C64F /* stats.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4A2C1370FAFD2E81934BEA86EEAABAF5 /* decode_fast.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 346711871383A162527FCAD76FE81CC7 /* decode_fast.h */; }; - 4A342E4E8F59C7F6460A25AFCD033AF0 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 1758E1C18988D684BE111C96BDA7C639 /* call_test_only.h */; }; - 4A37C7269EE86E3CAB6FD4809A85C7E2 /* thread.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 519CFAE5E80E0858F22B1207F772371D /* thread.h */; }; - 4A3ADA08DDD850CBEC7D3F37308003F2 /* config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = BBB309C9AF6FDD552127343789B6BE13 /* 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"; }; }; - 4A68C5858132DC016F6A975643ABF430 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3EFBD16C412F0BFC36EC99FC51068230 /* percent.upb.h */; }; - 4A6DDBEC34E1AA3ED1DD8B3FE9DF1DD0 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 27D3E3E005C028D8C54EF2B9AEDBD7C5 /* exec_ctx_wakeup_scheduler.h */; }; - 4A7F99D9707F0446108FA6667F008726 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8A4984270A3A0094AD8696AF5CFEC7 /* empty.upbdefs.h */; }; - 4A8B317639EFC483BE85D72BFB2230A3 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 724A5BAF656370E9A9C5B1E9FDD91D4A /* dual_ref_counted.h */; }; - 4A98AC01583661FEE404579B7FF70874 /* arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = CC063C2A7B8CB16DF2DFD45FBBD5CA20 /* arm_arch.h */; }; - 4A9E21C0B742AB49DB5248820C979B0E /* x509name.c in Sources */ = {isa = PBXBuildFile; fileRef = D47048AB6CBE069988DF05B1D60FFC5E /* x509name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4A9EEBE0D403FE35730C06C4D5AD799B /* abseil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBA1410D0DE6F9F93C6C8430C26C3D84 /* abseil-dummy.m */; }; - 4AA2B084DC91E671A5ACB990C9038F0B /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = AFD18D432E2332B5C75BCB6B5BD47F65 /* extension.h */; }; - 4AA9D9485E0FC20251D76D1E756AC3FD /* credentials_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D95EF273DCCBBB93D71AE2E4B074E65 /* credentials_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4AB6922545620556E75D2BE13F3C75D1 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF21D0EFD59FEE50F44DAA3937253DCB /* transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4AB6EAE89B02D059978C940AEA1156D5 /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 851DEDC9DCA1CDA1721AF7FC32D0077B /* thread_quota.h */; }; - 4AC304051D8E7134DDB224F3AA7C32D8 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 5825553765E09FFBA84EC6D34FA6EC0D /* jwt_credentials.h */; }; - 4AD4B58C45CC62B2E935181A16CF4FBB /* chttp2_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 51714DDCB074E204B6F3BE9E3EB66986 /* 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"; }; }; - 4ADE3FDA8E8F1CBEF42327C0811020F1 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 024230598FD5AE93CFD3BB4682695DDC /* number.upbdefs.h */; }; - 4AE83955776FDC7BC8CE70FB031850AE /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D2BC235A12F6C796B35D7371BA1AA852 /* path.upb.h */; }; - 4AEFA49CF5D025F38A23AFE577DF0B76 /* memory_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 02BA4924C1398B9F2F4BA5A3721B3520 /* memory_allocator.h */; }; - 4AF745D3B1905954F1A4B7E5E3918172 /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 7EAE5FB266127D499A978EB17A9D62DA /* chttp2_connector.h */; }; - 4AFEEC1143CFC62B922D824D01C4E5A0 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D4F58B23B78A48C12D4370FFE84800B /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B071F3AB20FF3FCF1EBBC34FAE69593 /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = 212E4E04C972A790054A66B6563CD0FF /* server_callback_handlers.h */; }; - 4B09B2DB777F32F5475961DF5F0B425F /* gethostname_host_name_max.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84CE4D473CB4B1B2A08A99F858424D05 /* 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"; }; }; - 4B0FAF6A8FFED74A31609D7BB04594A8 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9C72197B6BC403850AEF928454F46B /* connected_channel.h */; }; - 4B35EAA233286312AB0E91F858A661D8 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = D77538918830180FEB3FC2011A25CD4E /* FBLPromise+Race.m */; }; - 4B46C2315C1E417DFC0C474B73B0B738 /* rds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8473F989FCE12F29EC1D5981DAAA5216 /* rds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4B474BCE09A8953CCD936115567E7757 /* barrier.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = C1401BBCBC6B2957DDA7FD27DBEEF71F /* barrier.h */; }; - 4B4E3AE230E3BA57C8541CD2C87BFA73 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B51234E02E93F77D820FA91638307D1 /* bootstrap.upb.h */; }; - 4B5EA9BC5457508A0CC6149C7D5A9B9D /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6C0E851B9F6B7DDCB7052DB7869ECB /* retry_filter.h */; }; - 4B6268A1C831A0F90F9666E5F7D920C4 /* FIRMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FD599A7D2B8816BEF600F4E42B4AA145 /* FIRMultiFactorInfo.m */; }; - 4B73DEC84939FECD34CA48ED7920409A /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A330A6AF6E4DE3A27FD916DAC0AF18C0 /* regex.upb.h */; }; - 4B798BF785C0645DB47EFFC8E448579A /* server_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B77A855DC916D0B4BECCA939B00687A9 /* server_posix.h */; }; - 4B7C489E4DDAD8DCDD79406482116311 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F4037BAD085E86E22627E24B18A6EB /* symbolize.h */; }; - 4B843EA4C44E89DF68442EFA3CEACEBE /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B3FB2498E704230EE92C863837CC22 /* tls.upbdefs.h */; }; - 4B93F2FF4EE6F667973EDC79BEBC7D08 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2579B86C049C5FFA3434D76F294DECFF /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4BA25539E6E21F7A6BD1D21143AADCEE /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F030BA8B204A84375448D691BFF035D /* health_check.upb.h */; }; - 4BC5EFD24AF6652CC27375557A33E717 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 732A82738B815AFB1B4180DA23BC0773 /* typed_struct.upbdefs.h */; }; - 4BCA2E9FF2F7545871A39FF4C581CF32 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DEC5DCB722723A5C567A8DD9E3ED1F89 /* http.upb.h */; }; - 4BD55D92EA2B71AAB76FBD0C6EEE0162 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B61A0A883C527CC5C0C6C971E7AC3C /* common.upbdefs.h */; }; - 4BD9EEDB43A6ADFE7FB3A33A1117C5D0 /* sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 292127B5970DD256EB9B4D227EC52820 /* sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4BE9AE71079EEC057494A9E413A75162 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8BF5D76A3CA3083DD4BE85649E7DD57D /* timer_manager.h */; }; - 4BF303CFB33348124EADB60DDA14E817 /* strscpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EFD965A64C04FF63F73B842343678BC /* strscpy.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 4C086C2E958A3C3BD8222740CD0710D1 /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 98A39C6B3C8330782B999C80DFA9DF9B /* core_configuration.h */; }; - 4C0C3FFC6FB29864F86C2DBEEDC9CEE9 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9F0381DD468E37FB75F272704D445806 /* resolved_address.h */; }; - 4C0F4AEB89206AA2EF06665974075533 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F42F8A9459FA648D94BDFBB529A123F2 /* xds_cluster.h */; }; - 4C1FB105A695DCBD3DC0E99520949B97 /* server_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A943B7EA46BDD4487B2819B30DE43230 /* server_context.h */; }; - 4C20AAFC5FFE2214921CBB4C8845DC12 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F018035A19CFC543F3B5AE22068BBB8 /* xds_channel_stack_modifier.h */; }; - 4C3699493A93F29FC981CAA5629EF46B /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ED526BE498618C869237B2280C4B7296 /* semantic_version.upbdefs.h */; }; - 4C3AFDC53F38B4A532491E1F62168A22 /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 63B89EC784BA917D65E4143918F626B0 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4C523E3088C97D622FFFA2BCA9A352EE /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A843A33D35776B086BE103F200DB87 /* error_cfstream.h */; }; - 4C58C29D30C9346DA264A541A3A05F5B /* bio.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA4C37FFC9BB6F490FF72042F5965DA /* bio.h */; }; - 4C7ED5FF5F51428D2DAD8A4B7B61D564 /* FIRAuthRPCRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 080BF6BA304EA321ACCB99762F26AAE6 /* FIRAuthRPCRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C8FBBB9B71222EED603984260A014E4 /* custom_tag.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F76E4AFB78F50DDE9A7713280841D684 /* 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"; }; }; - 4C9078D8D8DF63DF1CE487D694F71CA1 /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8AAA6C1D939B1D52C82F2543E812E223 /* circuit_breaker.upb.h */; }; - 4C92A65EA3B61D7C123DDA2B92BC5A85 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F7B1FAF653D85B0735308B88B25ABF /* endpoint_pair.h */; }; - 4C93B2DD26E7133DD03E4E99EEC48597 /* FIRUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFAF1562947C29EB39F3F46749E7784 /* FIRUser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CAB631CAC5CAE549E133A5D313B7F96 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = C8B8E272838902ADC69770B38F458226 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CB4292DD5740F54F6889327989CB226 /* certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 165AF293299953E36888270D3420C4FF /* certificate_provider_factory.h */; }; - 4CC55E8E5696186BE8DF882BB1C4C103 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E48864D26805719298E22359DEEE0A /* mutex.h */; }; - 4CCC48E5C40CDAC2A1F0FF238F35CD00 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F11C58B1B9088856035B4F5B4CB2E9 /* tcp_posix.h */; }; - 4CE00043BD23B10A10B60BF8815B4EF4 /* t1_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58F5126CB35CFB3CB89D34370E0F55E3 /* t1_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4CE0D13CCE3E685AEB8419E8024FEAF1 /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5A80D2FD12EB9BF337108FB83801DA /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CE65670565330A2668D7E2B4D03617A /* server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B4949DE576DB5D0512953BEB5ED70F /* server_builder.h */; }; - 4CF49DA0E48373B5DCA0B12E47DD485E /* opensslv.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7AADD034B3C585D0C5C8539243228CF7 /* opensslv.h */; }; - 4D095D3485A0C437590DD7AC2E171B40 /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E7D2DC228CAF707CB39D12A2F8494002 /* sockaddr_windows.h */; }; - 4D1CB9ECC540976AE2CF78EF3D810DCC /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = CE325CF2B3B0AB572793CC4925DD03E2 /* plugin_credentials.h */; }; - 4D2400B7FA4B094441C98EA2162F0352 /* mutation_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44605840B9B334BDDB4C7FCBE5FD834E /* mutation_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4D2578F7EFDEF3AA22058CB313D7B3E1 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 46A15753A6F5B949E66C26594B35CCDC /* http2_settings.h */; }; - 4D2585158831E9B4A88AE84AC10FFF92 /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C42C603585AF08237A177C3F4EBDF0 /* GULHeartbeatDateStorageUserDefaults.m */; }; - 4D2C91E9870DE115CE356CBB70717297 /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B901BC05BCB1833AAB7767F5E40870A /* 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"; }; }; - 4D2FC53B4837E9FED51200C321D9420C /* CLTypingLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F85B1285B8139AED8F758256483FE150 /* CLTypingLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4D329A8B90A21204E84A000F82D5322E /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B52102069F00E34703FE84F3AE7022BF /* deprecation.upbdefs.h */; }; - 4D3C7CF3B23F994012EC60023BE45F6D /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E086E6A087051487FC30ECA133659F06 /* xds_listener.h */; }; - 4D42EAA76EA695DBD88EDD56A0D1F4A9 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D5E89E17E28F4CA4D712B3BE50E63D5 /* listener_components.upbdefs.h */; }; - 4D55F4CD173C057BE8B6D58AB833AA97 /* objects.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B24F3DA903BD8100E8D425CD745B55A7 /* objects.h */; }; - 4D5719EC7058C4E9EA45EF9CB16755CB /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D169A2922435604B1E58316FF17DC28 /* grpc_types.h */; }; - 4D58F906144B1265A0BF8B84ED9EF36F /* router.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F885E11DD802A4EC67111CDD2CFE9638 /* router.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4D609F95BDD9B6AF1895CE5928BB247A /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = A423E8F5F0EDF4D36CA45D77AFBDFCD6 /* string_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4D696411C3EF8D0313CB91178331FAC8 /* p_rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = FA24B90275506B2AFF2CC4E35D9AADB2 /* p_rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4D6F20C7EF939B099601B9707F43023F /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F9C8511B95518FA2CA0C524B274D56 /* status_util.h */; }; - 4D71C2DA66FA7EC2292568805D6F775B /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D838FE157D63BD8E610C1FF83B8DDDE /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4D71CDB22B20A3EF6F1BEA45B62DC855 /* exponential_biased.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AE0460F042D36393F55774BE28F3D8 /* exponential_biased.h */; }; - 4D73E71D69AD920E8BE3094C7904EED3 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7A1598AA01C5003E6C88928A771D6724 /* accesslog.upbdefs.h */; }; - 4D7B5E031B5069A2A55E89C7052F5517 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9403116104444C696EE6FB86563BFE32 /* fault.upb.h */; }; - 4D92F8DC1F56F196BC80CD823F0B6D67 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC3C0AAE4B7ADAEA82189879E4AB7BC /* xds_credentials.h */; }; - 4D99BB896FFF20C81E5421B3F201086A /* invoke.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9BDA870F6A997E924EC4374F49264977 /* invoke.h */; }; - 4D9A9CC488ECAD0936527A116CF973FE /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = BAC34A20E46843D5D450731D82A01217 /* hpack_constants.h */; }; - 4D9E68956202972D88DE9E6AE420A378 /* v3_extku.c in Sources */ = {isa = PBXBuildFile; fileRef = 778BD763D34B93A6562A062315E4E0EE /* v3_extku.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4DA2E5AE393A78D15134341209945323 /* memutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93E51131E89E282662C4268F2360825A /* memutil.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 4DB7F4550DC4E0487B69E850A3773C12 /* rls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 558B59B0974DAC57D0A823C464CFB9A6 /* rls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4DB8F814724B77A2032E5BD05DE35F13 /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = DB99C7B8E5CBE52253764CB16C0A2B9D /* GTMSessionFetcherService.m */; }; - 4DBD7429F06FE1044B77D51D63CDAD52 /* uv-common.h in Headers */ = {isa = PBXBuildFile; fileRef = 9603979BD46FE61BDE7CEB10C6AD4DCE /* uv-common.h */; }; - 4DC21786D1EEEE726F0035210C6350AB /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FDCF62811B45F39F2F50B6BF289981C /* FIRApp.m */; }; - 4DC74A2D5B391A778C0495580BEC8A85 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = B84F41C1783AAC6BE49E27B856763A76 /* notification.h */; }; - 4DC90A831986D02F34E9C36C601A1239 /* a_object.c in Sources */ = {isa = PBXBuildFile; fileRef = FD1B5F391FD32940B0A27533F8EC0203 /* a_object.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4DCE33139B8EF06D463AA32B96E6C072 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 47346890DB8CADEFB681BBA5D928462A /* sha256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4DCF1C30819197E4D7FEF241C3077D1C /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC8A1B8E3C61F31956CED47E1CCB5BED /* fault.upb.h */; }; - 4DD869388EC38025B828D1C323343FB7 /* v3_crld.c in Sources */ = {isa = PBXBuildFile; fileRef = 58AF641AC2B1113B880F899C1B65E8E9 /* v3_crld.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4DE77C90E1BE1DB726161FB1B1BDE3A6 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4D811938FE470F6F794D4F17C60FF7BA /* polling_entity.h */; }; - 4DFCB3D066C89883837DB9B342B0E6E8 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 5161171B05A0D32C18A67810CCBA11F6 /* metadata_batch.h */; }; - 4DFD38E0B796FC901364E9492788BF92 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C0603450EC2B6A1B7F48C52B8955D1 /* slice_refcount.h */; }; - 4E19C4D9A28C9D327E498D00522A49FC /* ssl_transcript.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC1F569971BB63A727BCC88CA83A0FD4 /* ssl_transcript.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4E27DE24D1250F80C88A8F7E09B697F7 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6810CC57234BDEE2EC15C865BA9FC065 /* sockaddr.h */; }; - 4E294F2124B170F5670B28FF6DECC371 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B9C0B21E3B7E429887BF70F8E1014DC5 /* http_tracer.upbdefs.h */; }; - 4E37507C08BF1BAE8231370CFC220575 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = DC971175DE82493CF24B7F675C52309B /* oauth2_credentials.h */; }; - 4E592F2F95BE448DC92A78486E4CC5ED /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 711A3BE5499C4C42FE3B5B309EC31F25 /* spinlock.h */; }; - 4E5B066C3BBC0F4B31392A0B3990816E /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A9B338A2651664FA7B64850744F91A5 /* substitution_format_string.upb.h */; }; - 4E657885A2DC63EDDBF05E635C22B029 /* strerror.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2239C4362DD148908BD031839107AB18 /* strerror.h */; }; - 4E8179618B2EA19AF4C5D8105E4A7817 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = A11FCF074AAB713B048A641C6C88975F /* channel.h */; }; - 4E85D207BBA3B1D7F02FF8B044849826 /* remote_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5AE5875EFB2BA3FAADE1A0F36FA79D0 /* remote_event.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4E877A25EBF5A1BAA91431FA4EB80A03 /* cast.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB6E1805E7B3DFB71AE091FCE70E7A7 /* cast.h */; }; - 4E90E3F0C3B216D2F14D62B441B1722F /* write_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0B54C1A94EF671BCA40735DC923B743 /* write_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4E99BFA56DA3F2F9998A04E9C14C7B81 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 276275BCEAEF50D5205E620B2405F40F /* stats.upb.h */; }; - 4EA8CB1CE6D90BAB1DB166C460BE73F0 /* FIRGetOOBConfirmationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB352F07A72645702A6D215603714DA /* FIRGetOOBConfirmationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EBFC79C72E18D61310F0CEA1BBDAAFC /* grpc_ares_wrapper_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EFB92FE6ADD9FA33092D20A95C2E9CA /* 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"; }; }; - 4ECAACC9C02698CD5337D61449FF13B3 /* typed_struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 076E8422B2457B1D1A05CF6DEB52DBED /* typed_struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4ECBFC82BC2F2D238A5B8E5293C7DAEB /* symbolize_elf.inc in Headers */ = {isa = PBXBuildFile; fileRef = E03193938D6B2092668107D6C262DD29 /* symbolize_elf.inc */; }; - 4EE9DAB62DDD614A1D19A7F740D7F9A0 /* flags.h in Headers */ = {isa = PBXBuildFile; fileRef = 397E69A1BF13B0B9D1B1B6EB7AB9EC2E /* flags.h */; }; - 4EF88F7427A42940FD54A7B6266A97D5 /* randen_detect.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 40DFE258C35DC934C0E722347EE71772 /* randen_detect.h */; }; - 4F032C6AE9D7FEE839C288C48179BF27 /* alts_tsi_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = E668578DAFC72287B12587A5773FB725 /* 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"; }; }; - 4F040382A6428957D5D1A9496DD58FF4 /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BE2DF5EBEED0D89EDDEADAC0D721A079 /* collection_entry.upb.h */; }; - 4F0656B190ADA51E31E31A027F7737B1 /* waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9E6BFFA9D269D9E1F76D8E3EB80AA2AD /* waiter.h */; }; - 4F19E33A057A18D8686453B72DD7D039 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6316EF1919C08B570B0D90E1127139 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F1F4E7575DE0EA081EDC85B74B7C50A /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1245C30E3BBB5BA0EBD6EEF7E7995ADA /* sockaddr.h */; }; - 4F207C755EB20A1406EA26D0A3F9BBAF /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = D516315A2C543ECE05B528CE3EC67DE5 /* annotations.upb.h */; }; - 4F218663475982A9423EC5C01AA23605 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = F61603C41D94BA4F96FC0771D64F232D /* sockaddr.h */; }; - 4F401B4259D869554E3ED767168EA658 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = E2687499390ECE5053BC5731A5DE7131 /* slice_internal.h */; }; - 4F43AAEEA419DBC68ED2F2008480363F /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 59FA3D0E52D47A2DDDEF7023D073F101 /* resolver.upbdefs.h */; }; - 4F569F55168365284EEF95124EF6FC01 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CE76757D158AE389D0EA2BE5A34086 /* filter.upbdefs.h */; }; - 4F5CD7FF06EB4C2910122633649B08AA /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 26A2410A18AF6C751163F4313DB7FB33 /* channel_args.h */; }; - 4F6598A2E96FF39353E028A88BEAC839 /* FIRMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DEA7A9E2B2A73D4BC2A0E2670F1570F /* FIRMultiFactorAssertion.m */; }; - 4F6716E0FC0BBE573B08646C19F09538 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C430DE4B2EA74D3BA63BE58F917EA493 /* internal.h */; }; - 4F6CE1ADC7CFB2538B0A506F59B048CE /* reflection.c in Sources */ = {isa = PBXBuildFile; fileRef = 34FBC651550B80DE130C4659DB76FBF9 /* reflection.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F780BF28BC6F1824FF007532A091703 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 19DD9438E0B2C19378670964B332C600 /* rbac.upbdefs.h */; }; - 4F7C7F7BF970868C31D50D20C2A20B45 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 30B5D24B68DD6839E1EA306C4838C3A2 /* fake_credentials.h */; }; - 4F7CEAD731D7EAEF2F01EBF285863D76 /* wire_reader_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F4D3C79A1EFD71DAFA06D15113FD93A /* wire_reader_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F7F3E993AD51AFA6CED5F29C0A5B514 /* firebase_app_check_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = EFCDBABFCFCDD85E1D659C09448A7BA7 /* firebase_app_check_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 4F822EE81B26D2250B48F0214217670B /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = BE63F8FF12D5AF60D207502A5E686588 /* grpc_tls_certificate_distributor.h */; }; - 4F8DF7A407CA985897DFF6BE920861D5 /* secure_server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F90DE3DB25220666D1233C3E7D2FFD03 /* secure_server_credentials.h */; }; - 4F91219515DB7617445FB8A11F4FF074 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1531EAFD9B94BF49DE0811872AE81E53 /* traits.h */; }; - 4F92C624EEC7F193C8BBA2F012BC0B40 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 23EEE0EE5AEC1D97BCB9966C6C910AD2 /* sync_windows.h */; }; - 4F95A792EAA86C94FE47DB2344A31466 /* local_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B1F43074F22A077884B27BBAD53F797 /* 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"; }; }; - 4FA0D5E5CAA64E00DAC47583AF91940A /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 715827E927F450E8F75BCDDDFE144DB8 /* resolved_address_internal.h */; }; - 4FB4A35FCE52E681200D2BE37409B37D /* cmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 843DA236A67DEDF7C48D0607833BCE52 /* cmac.h */; }; - 4FCCCB1BA24ED0EA0EC84964EBA37191 /* stringpiece.h in Headers */ = {isa = PBXBuildFile; fileRef = C07E225FC776C11EA0F84C20D4E00D68 /* stringpiece.h */; }; - 4FD1E9DF5D301B30D183FEF517F242B2 /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FA920E1981646315519E7CA578F46E94 /* http_connection_manager.upb.h */; }; - 4FD742D74A25F59A922CC0D8FC78E282 /* memory_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = E81FDB3722FFACFB579184408B8B40DD /* memory_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4FDDA415F3C2355CA5D181FD11C35225 /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = 9F8955684B1A4A09A1A5E59199EF40E9 /* uri_parser.h */; }; - 4FDE820BC9CAAFCA5B425DEC9A15BDD1 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = B9345989AF5D41C7AA7DFBFD2228A33D /* timer_generic.h */; }; - 4FDFBB138C32CAB14B065582AC99429A /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 21585847B6ACE5D8A04B10A86825DD22 /* status.upbdefs.h */; }; - 4FE6CABE9307150626F4AB087D1D787F /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 78336347EE982FA32B1624A1D5F4E7F8 /* msg_internal.h */; }; - 4FF8972BB9FE8882BA922AE502D5AE45 /* eval.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E71E7A3D5C56D23CF026879467561E29 /* eval.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 50088F76CC804B158D84AC071E07CD02 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 860D5BADE72B0C37EC664BB2F54A06A2 /* rbac_service_config_parser.h */; }; - 50422F3954B51D20CB93B8105281A776 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7008B54F0DA9A4E3C3D37A9789B93F /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50495824DE43B5AD3E5B5F38BC81839A /* conf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E52A76C25EF128EC971D9F68027D59FD /* conf.h */; }; - 504DF9D7439019E7F6F7949AA01E4B4B /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C83086694C96D041164D8E6885D927 /* slice_string_helpers.h */; }; - 5064D8A3EE18D907AE459C35B3A5B853 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = A943B7EA46BDD4487B2819B30DE43230 /* server_context.h */; }; - 5064FE4E8A527BF045A6E00505D45D22 /* ev_epollex_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20F372708514C259F15778DEF50A5681 /* ev_epollex_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 50712ED9F8E5438013319C2E20BA7422 /* randen_slow.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD0A01392CCA1F02BB228D0F2797B114 /* randen_slow.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 507B04DE0686C562219276D51BD67763 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F66012B53DADA982C07E04F86E2CBD2 /* byte_buffer_reader.h */; }; - 50853F9738F69F4367A29335649F33A9 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D4EEBEB7898F2FE1A175505C29D11F80 /* upb.h */; }; - 5094C1A620B9225CDA8F77ED93D3BF52 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C50351F88C76CEDFFED2073AC0B442F /* parse_address.h */; }; - 50B68BF86B8E717BA7317EA3EAE1B0B9 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C3026A74C8A47C9916019DC5612A832A /* value.upbdefs.h */; }; - 50CCA860AE8D5C3E4F48662D55095E16 /* db_iter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F11D4EAFD46F076444507B6BBA949EE /* db_iter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50CE612CE741715246E87F40185122FC /* md5.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 804D74B24C099F007E82385C074E358F /* md5.h */; }; - 50D8E7E19B19029E8AD91949780ADECE /* threadpool.h in Copy src/core/lib/iomgr/executor Private Headers */ = {isa = PBXBuildFile; fileRef = 1D15FB3B94278C883D217A51158C8F9A /* threadpool.h */; }; - 50D92F6FA5ECF7D96B1173977086967E /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F7391DE403FB21A53277E5EE16782E6C /* http.upb.h */; }; - 50D95A9AADCBFBE72C9F7E7EC604A3F5 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 1B07DEBFBDA24D1D3F2412DF0F81656B /* authorization_engine.h */; }; - 50E1C4E2CF18FCEB6D7CC14ECC8A714D /* roots.pem in Resources */ = {isa = PBXBuildFile; fileRef = C7092725CD6866BAD043B6BBB2434107 /* roots.pem */; }; - 50E5D82DEBB0B8863B9D03685E278DF2 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 240A7D21E041DA464BC39040DA88FCF0 /* alts_tsi_utils.h */; }; - 50EAD4A9F33AD73A568C403D1D52FACF /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 484C096A02D4D9A27933DD68418A93BA /* alts_grpc_record_protocol.h */; }; - 51029199C279B94C09998DBFA218CEA8 /* channel_stack_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DC4E75E5DDF106E57A9722F56804C51 /* 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"; }; }; - 510BD8C1D399714AD82F44383C3B5CBF /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F8CB86F939FA26E850A98B58CC6F5B84 /* resource.upb.h */; }; - 5114D1C27D161EA0237C9D0DECA737A7 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A9B48197CEDBD7C46BC341423D7DB74E /* metadata.upb.h */; }; - 511BE82C5DCE8427AB02E1FD032A4918 /* SafariServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75025A8A27096CDB6E8AE8E4BC9FFA5C /* SafariServices.framework */; }; - 51228270BF3F73BD13A6B699A8032B0A /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 537783505D0EDCAD67C308673B6B2BD3 /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 512305F1029711A9BA9E44707E8D2274 /* tcp_server_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 241F7BD662A57FAD921F7E51E7A17B80 /* 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"; }; }; - 513D50D45A4EF8DE21B404F97E54F027 /* call_once.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = E3EC7C431BEDA3CC8F8D81F339D9B5B5 /* call_once.h */; }; - 515B352FB2645F8CC92BE1527FA87422 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 515CC697A85D09C9730607F96B3325F9 /* lds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D396619CDC2A3F891AE60AFDE0FD8F0D /* lds.upbdefs.h */; }; - 516F50CBBA23AB911EA40886EB0397E5 /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CDB37A77A9F84910B17B9F14844F5A59 /* number.upb.h */; }; - 517451FEBB6B93E1F820144D9BD33ACF /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 083EF7D483AD0F08BCFBDC447AC45C24 /* global_config_custom.h */; }; - 5177C1F9006C74BCBABD979C0B57AD0E /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 705F25D27A2748D63FEA1E2ABCE6C90F /* hpack_parser_table.h */; }; - 5179A187E7B8C5D7E8C9C0473E0A0387 /* load_report.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FF58CDC1AB166052E72D0CEAF53AA68 /* 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"; }; }; - 517B7D494988B1056529A996CF1A3D90 /* table_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46533F3DADD032DF1BF49BD402476FA2 /* table_cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 51930BF7A87E7665321A728CA0FD017E /* url_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D2367412FDBD2B02BCC9F3F95E2137E /* 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"; }; }; - 51A7728BF6F6C62164DB019497917EE3 /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6040DB7AF6F89D51334BFA729DC30EDF /* WeakContainer.swift */; }; - 51A7EDBFBAD2D49165C206AC74EC47DE /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = F33B22EFACD93B2FEF53E71050B22243 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B1B260F42FAB2AB6E57A9AC6AD0ABB /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = A3D549AA9B0BBF50367D92ECF430330F /* alts_handshaker_client.h */; }; - 51B39D8474146A6DD42E7A66A86CA183 /* curve25519_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 0BC4CA131A02B29CEF60507DB1FB7CA0 /* curve25519_32.h */; }; - 51D2450CC200F95754DE8E500E7AEFCB /* sync_generic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E4F7B2DB581CD295CBB5CEA8D69212C8 /* sync_generic.h */; }; - 51DF83DCFB7B53A65F27A4E852545ACB /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DA0F50CCF3ED2684A872EC348D3A902 /* version.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 51E8A1A565AE72727C751BE433981C5D /* empty.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9DA0548A6EB21AC934BE34C725B61F00 /* empty.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 520BAAF5CA9865F335383839B4ABBA5F /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 19986ED50EFBCBF49E698A69657018CE /* ads.upbdefs.h */; }; - 521971A3AE28E4E3020BD34675CA702F /* v3_skey.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A33FE4C521E1833DF1A4B2BE96DE21A /* v3_skey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 521BB7E1BA2EEE9CB0111FDB96B886E4 /* text_encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 665079E50D1F9DE8778E2E894AABADC6 /* text_encode.h */; }; - 5224714A7FA5E0141B0B0A551673C78C /* poly1305_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 4111BC5322C8CBCDE833BCD63559BC15 /* poly1305_arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 522C1B6F4A6C4D136B0AF4D1E7E580CA /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E168C2D1F463B1E816DACA078EDE1AF4 /* address.upbdefs.h */; }; - 5237EE364D82DA624A33450313BF50D8 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FB991C75FBD4B12C3473928DD556C8F /* stats.upbdefs.h */; }; - 526C479F54861858BF704F9991267959 /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0709B52C49A88C084216A76A6F816228 /* 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"; }; }; - 52739F80B5A4848292D482C5BD6C77CF /* core_codegen.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA468256CE134AB5B72DB058D43DF44C /* core_codegen.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5273B406A5303267B707DC49E86316B3 /* digest.h in Headers */ = {isa = PBXBuildFile; fileRef = E8EC9429436F9734233822710E79603A /* digest.h */; }; - 5279102C7402FC703C4F4D52923436B5 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = C7629139556F5591A69225C1C4A4E5F9 /* interceptor.h */; }; - 5279B9F9ED8BF2DC71D1A786CDD2E6ED /* max_age_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = E4528AB5A3133E3F42FFDA529B0B572D /* max_age_filter.h */; }; - 527B249E6E77C4F6BE0C82E44C36F15A /* str_replace.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = F82EBB8CB2C5F61673E11E0F567ECE9A /* str_replace.h */; }; - 52A33705C1577EB2838A4EF5B1D57B26 /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 236FDF54EC7750B0F5EF5EEF15485592 /* global_config_generic.h */; }; - 52BA1FB0E6604CB9F6FA1AA723417B10 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED361DE47D86700B694C6A182A3A372 /* security_connector.h */; }; - 52CAA7AAC7EB0569205D8B04CE623EA1 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3CF867A681925FB1B8E1F5D78D5D35BE /* hpack_encoder_table.h */; }; - 52CC7D22EA29D187D7DE070F4FA58620 /* tls13_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79BB29CCDA18A39BF0778946D15438FB /* tls13_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 52D4F74E33AA0477B0C6F8522B0E72CD /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B40B1F51FF6B7F02B55E11CB5B8B7F1 /* file_watcher_certificate_provider_factory.h */; }; - 52D6410FB0A5D05DE9E43C4105BECB86 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B7487E1643CE26881ABE43E4784145 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52DB4D49FC668600765E0039691B198D /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 299CDEE2553897BACBD94BFE14463D22 /* construct_destruct.h */; }; - 52DB759595E52436954D3723A2087507 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = E65D9AB517F0E6F16A3526448CF1BF30 /* lb_policy_factory.h */; }; - 52DD7320865251E407E2C395D8635537 /* gethostname_sysconf.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22AC2D28592341FF9F2FCB5D9E63E64E /* 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"; }; }; - 52E334E191752A24F70AA85442752B41 /* rc4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CCD3458F0E0060AE7CAC7A5C21933035 /* rc4.h */; }; - 5301EE34587AE8BE4409AD17B51B0C14 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 75E9383DA3E778B9D79F739FB202FA1E /* udp_socket_config.upb.h */; }; - 53033F0E3E3DD9239059FC300AECDF91 /* slice.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 230853402A57B29BFE6552B7D2B51FCC /* slice.h */; }; - 5319841A436F39AE73E7BB2C58FB3A4B /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E58DC922865B2EE4CE984D5564B038 /* FBLPromise+Do.m */; }; - 5325F82117DC0BDDE3D1FAA62DAC483F /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 297258A7C1F4FAE009597544F8343745 /* spinlock.h */; }; - 53364EAD701D357D3D744B88AB176507 /* stream.c in Sources */ = {isa = PBXBuildFile; fileRef = CB4D14A531525F369307B4D8D5300CF9 /* stream.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 533FD1FB5369C194DF130791956AEAB2 /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 3DEAD1104A9AC86FE223A9055633EE29 /* kdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 53423211EEC8E805B8B8660D3C8082C1 /* ssl_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CC81E13AD0EA063C5581E4EBA665ADB /* 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"; }; }; - 5346D60970BCCE423A325112E4030251 /* cbs.c in Sources */ = {isa = PBXBuildFile; fileRef = 67C1F9C2B5791C770EDE2921B42CA920 /* cbs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 534E647E05B2FD8CEBBE82EB98BBA369 /* log_severity.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = C23376E4170712F175AE36145E20BA78 /* log_severity.h */; }; - 534FD87C80E0D727978DB8B95CAA159E /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D5033FC242F72DA36AC50CA4FDA61274 /* node.upbdefs.h */; }; - 5350CAE9298533E5C2A78E6CAFA0F0DA /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E08512D6CB73FDF31801361045DFC10 /* alts_record_protocol_crypter_common.h */; }; - 5352E4788B1C1499A2DE7D92DD9129FD /* bsd-ifaddrs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE287BB040CA3F221AE9267FD8E4FF /* bsd-ifaddrs.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 536605E13B631888E5A2B508E7E4A93C /* csds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C24D078D0AA495C15B5466E120AAFB0E /* 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"; }; }; - 536D9BCB09D86BEE0ADDEA08DDCB865D /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 578C04481D513F9AE055EBCA062B77F7 /* ssl_security_connector.h */; }; - 5379B3416AD6FC6B07936B564C02D753 /* FIRGeoPoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = A292C6FFC9286CA78ED588E91CB94A07 /* FIRGeoPoint.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 537A86D56B6157B48351045A3D3CD850 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E8C20555D426115DE04AB28B27D69D /* pollset_set_windows.h */; }; - 53A56CC4FB231ABB770E686311CAE620 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 96F270D4CF013B47C1BF78D821D60FA1 /* listener_components.upb.h */; }; - 53A6EE69537FCEBC86194A62D170D921 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F6D54E934FA1E9E2820BF7A14052CD6 /* config_source.upbdefs.h */; }; - 53B6F6377CCBAC15754B75E2E3FCED74 /* hrss.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9574B180021F11527759A92483EEEAF7 /* hrss.h */; }; - 53B802E2C760498F29FCC1FE1184F2D2 /* rsaz_exp.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C8BE7FC0C0D8C3D4E18CDE3BEA5AFB0 /* rsaz_exp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 53D2C3CC863A9EE8ED067662F3C9CF50 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4E0E06C5D4EA976E046F997190A76DCC /* tcp_server.h */; }; - 53D80DB30A2F63FD06E8683C9DFAAEF8 /* p_x25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 82903A1639B3CB3E512E6527CB87B7C2 /* p_x25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 53D904ED43C9D0D948617580B6111378 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 69913553AA2AA69C3F93358AAE7609DC /* resolver_registry.h */; }; - 53DA2A8D74D7507FC4519677A5D341C1 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CAEEE1E8159A80E76B9C605AA98BCD /* service_config.h */; }; - 53DB49A157DE0C06A5D57F3FB5073FB7 /* binder_auto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C5FAAA7556C6DA30CE973C8CEF0C7EED /* binder_auto_utils.h */; }; - 53E24EB5FAF25CB67B5C55B75B7B125C /* filtered_re2.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2E1EAFC399537BCAFBE133BC2B1004 /* filtered_re2.h */; }; - 54133A06BB8150D98F877EA704D8C87B /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = AC15C14ACB2B3450BD84A52512E34452 /* backend_metric.h */; }; - 5414BC3325559626630D2ED8ABFADD6B /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 315BA1F94307C1F97FD43D2C8B36831E /* 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"; }; }; - 542908C154D5C33BE2713DFA081039CE /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E0116AA1827518C6BA3EA94F423BDD /* config.h */; }; - 54305936E87DD7D3FB7CC1548A2923AE /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 73EAC86445CCAA8B70E31635F665A599 /* cluster.upbdefs.h */; }; - 543B013A8F116A5E0431E547AF1CA3AB /* FIRPhoneAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E809B84C33ED7692831ED08EF62149A /* FIRPhoneAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 54408204A69DE0F8FDA5FB3A6738E6A7 /* max_age_filter.h in Copy src/core/ext/filters/max_age Private Headers */ = {isa = PBXBuildFile; fileRef = E4528AB5A3133E3F42FFDA529B0B572D /* max_age_filter.h */; }; - 545F87980479C1825B882A08A403F104 /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 4D53CE77152F94AA6B5FB8C17D891F6B /* grpclb.h */; }; - 5484D2EC7B21EBACC88121B88EE88A43 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB3B826478FB3221A7CE8D09EAD6319 /* authorization_engine.h */; }; - 548B8906DEB00B41A816DC3D8F252053 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = A319E2848167F302D33704B54E9C1BB9 /* alts_tsi_handshaker.h */; }; - 548C1F521843F7CF4D2791735015D25C /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7A237ECCFA8B96B54BBA8C415640B0EA /* route_components.upb.h */; }; - 5491DBA80FBF68D32D7E87C89129C081 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA58BB75490621BF68FE5B54FF306C0 /* router.upbdefs.h */; }; - 5498A231D7999744F4DD1FF5FC7CCB58 /* FIREmailPasswordAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 6676A4E053E5FAAC048CDB22FC05A195 /* FIREmailPasswordAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A3A5CACD7B0B035D78E0920B837EE8 /* symbolize_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 64D5D8B4689A4459A9513880B7C0B3F8 /* symbolize_win32.inc */; }; - 54B14F7CD9E683608E154B973D5410EA /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 76E489E853597BF2D6F33EF918DF4ED9 /* versioning.upb.h */; }; - 54C48565086DC09C162448AA354B3925 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B03CDE5AAA98BDEC3F7E232BD652E69 /* subchannel.h */; }; - 54CCCF78C0671ABF7D58552038371413 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 67CEB26B33A88C6DDC93A6A9D6C26247 /* stacktrace_powerpc-inl.inc */; }; - 54DC46C0341392FFDCD3B67E58993C9C /* binder_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D919EFA463CBC77F2DFA8AE1343A8D2 /* binder_server.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 54DE3F2D4B69C0A1F30DA31B902BC980 /* FIRAuthDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CF6EF7DAF219862B03229693893DC9B /* FIRAuthDataResult.m */; }; - 54DE959E0CBFC548118C0566225CC5F4 /* e_des.c in Sources */ = {isa = PBXBuildFile; fileRef = E586021E930683DC5C528A2D8B64D3D5 /* e_des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 54FBEB32D54F39FF654A8724405A6391 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D1419752C0DCD92DAC4A5D71D54E846 /* time.h */; }; - 5502886EA91F3CA433F5B2C25CF1C9E4 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 29DC2ADCA18C838ACC4D893D940E986C /* map.h */; }; - 550B9F4DE0DE736CCF61387C93AD2223 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D0366A98ADDD50070B9F9A40359225F7 /* overload.upb.h */; }; - 551BC6A54DCD621B3CBEA2E49C74CECE /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 847F94B62BC4C08B64A8B1A285CDC65B /* wrappers.upbdefs.h */; }; - 5523C4F22D8C0181DEA311DB28689DF7 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 903A97B774EE927AEF7320B91CA5A2A0 /* xds_bootstrap.h */; }; - 55284B14C1D3904E1C48B3E20FFF8626 /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D788FC8C9E1701C7F8FA6661BDAED9 /* atm_gcc_atomic.h */; }; - 552E8387E50B1815746E33B001A8285B /* ndk_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B8C57D4739031520C5CCA6CF873A4F /* ndk_binder.h */; }; - 55432C5443EE36C1DEDD02FDACECD7A8 /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = F553422E6D75F130739156018E7932AE /* backend_metric.h */; }; - 5563F278CFE43C80B4CDC7DF88447B26 /* port_stdcxx.h in Headers */ = {isa = PBXBuildFile; fileRef = 835794F36BDFBDD5B31837218FC86943 /* port_stdcxx.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5565767F4776914DBEEA1F4F89F0A859 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 2A4DB39031B2F9441E734C5161E5FA96 /* channel.h */; }; - 556947E9E650AD2A19452658E440000A /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = D62734CBF3A3CF169A326C3AA4874874 /* api_trace.h */; }; - 557083C7B5CC0F39765A86B622300A64 /* compare.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = CDF6EA864689F2CC9D215984D6B411D0 /* compare.h */; }; - 5578086A628D7DA9F67E42FCE01CD004 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = F680A8909E35847D60E83EC28C0AAC77 /* jwt_verifier.h */; }; - 557BDCF0C663F00214E1B3CD2BEB0012 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEC713274B5BA795D30601AFA25180F /* tls_security_connector.h */; }; - 558BBA92FB0891E91F9B1E7B70B33869 /* set.h in Headers */ = {isa = PBXBuildFile; fileRef = B654291838E7D415925BC88E230F0EC8 /* set.h */; }; - 559073E95E26A9CC8B3E9D9E6FA238A8 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B6BBC2793907037432260D0054EF8C2 /* load_report.upb.h */; }; - 55988040A0CC0D4A4829DC57A2D1B0A3 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8462D45307158B54E7DE571C0CCC59AE /* string.upbdefs.h */; }; - 559AE00131EE91CAF688C3263180CF51 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BA4FE9B899AE7D9B702720917B5102 /* compression_internal.h */; }; - 559E1AE512D395A9D30137236DE47F40 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0880E5E502915CE446F292A316BD0F99 /* tcp_windows.h */; }; - 559EE3A92BCB582CAA460F6F8AD39E19 /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5822F78F5E1490E66C1B4E5CBDAFE96D /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 55A3A4EE0F598D90E8C7F7EBB908693C /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 01EE093E08022F490ED57BBA14ED7A2C /* file_external_account_credentials.h */; }; - 55AC91720A5DEA02662D4E6AA349701E /* checked.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 65440612011E1BD83B6365E703F597DB /* checked.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 55BDF5CF35774590D7EE12A13E05B816 /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 462EF9D57B7F9C4BAB83EC879D142E8E /* thread_quota.h */; }; - 55BEA3D4CFE68EC06F205CE0D0A87924 /* client_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7CE0A4D62BC222B2960459D7DD3FCC3A /* client_context.h */; }; - 55C958C3237728FDCABC31EDBDB303D8 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = BEB1461DAD8F5C423349C319FCDCB58F /* aws_request_signer.h */; }; - 55CFBAB8775304D4A6EB0BB94B3BA5D8 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 36A66EC84DD34F10911E5EC0A70B1675 /* cluster.upb.h */; }; - 55D0B03D3F424AAE01860146A6387B19 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB6110A19686169BD41F4305AD5F411A /* substitution_format_string.upbdefs.h */; }; - 55DEF40642DB328ACAB63B3325003346 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B4DD9A9938072A07CF259F4C5F30E0 /* status_code_enum.h */; }; - 55EFE8DD333C93AD88BECDB8D1942EA2 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F9879CE34CA6270EFDABCFFDC56A87 /* construct_destruct.h */; }; - 55FE2FB7133EF83215E753B3E8A737BE /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 716DE36C7E2FF2578E9DBCE01E4F825F /* resource_name.upbdefs.h */; }; - 5601439B1D04712040CFC03BC645ED18 /* task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A7B4C59C93E9A050D590A8FE2178153 /* task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 560426D3D40FA17F2D276FBB8AE7F2C6 /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B72E44E24DD163410789E57AD9C4CE /* util.h */; }; - 5604E0813421E1DE32D86193A8DDD4CA /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 645DAB0A7138E785398918876DDAC4A6 /* event_service_config.upb.h */; }; - 56109D4D4E21C4910B90663D6420726D /* fast_uniform_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC6E86F97EB3A0A9244A0E6A3DBC8F6 /* fast_uniform_bits.h */; }; - 5613B2758FCAE6182E8423298D34BAC5 /* FIRAuthGlobalWorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5D2D56A0F193DFEAD2D94346235DC2 /* FIRAuthGlobalWorkQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 563E22CBA60BA0D9823BD42DD1D1D2BE /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = F15C801A0DA65B1D98130F7A0EA0A48D /* service_config_parser.h */; }; - 5657E044C20491AE3FF3FA035D428962 /* utility.h in Headers */ = {isa = PBXBuildFile; fileRef = FF602C6B56AC57B500B8C62ABC8828EC /* utility.h */; }; - 565BA296546814298F0B362CE7AEA392 /* symbolize_darwin.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 1016B6533B6334EFBB41E2B0CE9C6394 /* symbolize_darwin.inc */; }; - 56629D62258DBC46EE85FD21B089A023 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = E6FE6F7D69C20EDF333264214F637C5B /* iam_credentials.h */; }; - 5669A713DFE57D72B6118C1233AB38D5 /* grpc_security.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EA58CE37525AB947BF6101C7E0E176CD /* grpc_security.h */; }; - 566AB4E21BE4057D394126F82D5F9049 /* dynamic_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = ABA290EC2591C516C56D719B1852CDA5 /* dynamic_annotations.h */; }; - 566B3DDE38D10F7556F3E9D41F7785BA /* iomgr_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 042663A38D86B562E4534551771A4C7C /* 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"; }; }; - 5673B443E0FE3169196FF9FEC1F0F93B /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2C162A8765788186600371216F98F67D /* xds_client_stats.h */; }; - 567B8F3B77BA4F2001310234EB15456E /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E17436AFD5BB6F11D2BE7382D1EC24 /* endpoint_components.upbdefs.h */; }; - 567E3EBB0DB7E8721AFAACD5C80520AE /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D0EF8BC014BAA93E07834E11BC30DC /* murmur_hash.h */; }; - 5682CA7EDB3E0552D39F610853E0AE76 /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37BEF1C798DECA77BBE0F70C5D42BF8C /* overload.upb.h */; }; - 5682CD19B29061ADEAC7E4162DE17C9E /* sorted_container.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C48F4AEA8295429A5420D9D9DD1142C /* sorted_container.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 569A50890B8E0BCFE7A603DC42AC931D /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = C54E9148FEA94098F4CC3629623CBF7A /* resource_quota.h */; }; - 569D343B3E8EC2D74A45BCBA1C47D4DC /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 165DD603E57F15999F1C1F665D769035 /* alts_grpc_integrity_only_record_protocol.h */; }; - 56AC14455A809541B0D732A077CF8656 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 44039DF72B4BF0B25C130FB6CB5D4EB5 /* variant.h */; }; - 56AE51D2589D25A9CE778ED39BB5F912 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = D37875305F6A495BA1F49510058F5E64 /* core_configuration.h */; }; - 56AF3BAF3A2C7DBD2435606DF4B5921F /* FIRMultiFactorSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E49949DF85BAAA58610162F286B233C /* FIRMultiFactorSession.m */; }; - 56C2EE490895E8D08D306C79A94C2F60 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 32277E5B585B3472A2C9782C3E7147E3 /* sockaddr_utils.h */; }; - 56DA8A943C0A543F9FEADA598A055EF2 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2EB0FEB99427CEDF311876D733252FD3 /* semantic_version.upbdefs.h */; }; - 57092DDAE4D24975B39AE5B61B9E94BA /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE0A4D62BC222B2960459D7DD3FCC3A /* client_context.h */; }; - 5710508511214F5048958C1653F2B334 /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39285212A4A8CF35EA699896DF026AEE /* HeartbeatsBundle.swift */; }; - 5735E09968B4E27B4E3ADB4CA4931D41 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C31AC9CEE840BF57B39B2D7E2026AD0 /* status_helper.h */; }; - 575F6C0402E1F0C6CC11C9079D3B352F /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 5150B0D594A45DBBA0E0E810AA855123 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 5766DF23AAEF40E6ECAD8AF7167CDE9F /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1245C30E3BBB5BA0EBD6EEF7E7995ADA /* sockaddr.h */; }; - 5768001E9420ACA527ABBD38F910042B /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 26636377EF83406F8696B60416119593 /* frame_window_update.h */; }; - 5770667ACE786EE77C9866992B80AEB0 /* timer_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 26783FFD06BDFB3076708698B2BEE932 /* timer_custom.h */; }; - 5770F15F6A90D9A6FE40F852456FB3FE /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = ED28175BE8D554A752CCD22E4BE652CA /* channelz.h */; }; - 5781970BC13965744F75B593ED797534 /* stream_map.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6337B3FB5A0440102AF76A3F6D5F8F45 /* stream_map.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 578DC39C2EA21100E47424423B684F50 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F7849998A15CCC4FE82E1E692A7440C6 /* server_interceptor.h */; }; - 5798D0931D06B06DF3644CAE858250E9 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D3D20598A55161711B9B6E509BF708 /* local_security_connector.h */; }; - 57ABE661519BEC77E582BF211DD22870 /* x_attrib.c in Sources */ = {isa = PBXBuildFile; fileRef = F9C2700FD1B3D06EF98074306A411168 /* x_attrib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 57AD8D34CD86446CD5AED43DA4385ED3 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 517B97015B3FC5EA2B07A71FDE8D1FFA /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 57B0612978AADCD14A2FEC7373CE2C0A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9400B2FE3A8884771EA2BAF46AFB2B41 /* internal.h */; }; - 57CD6C780FD06DC90D7D5E772B7242D8 /* str_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 590AE90506EFCE06B4EDCD9CD77DED30 /* str_format.h */; }; - 57E7DE6416AED8EEAA844854C716EC5F /* cord_rep_ring_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A42DA666AADED2E2544A554A7B7AFEB /* cord_rep_ring_reader.h */; }; - 57EB946ACEB4AC6C91C9F6C0C14A70EB /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 660E6521D0B46DBFE7868052386A018B /* inlined_vector.h */; }; - 57EEEE3C410126022A45886E07BB26A2 /* asn1_par.c in Sources */ = {isa = PBXBuildFile; fileRef = EF2575DA89A6EB446485DF147818F554 /* asn1_par.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 57FD1D64E580E05C3F194724429B2C45 /* completion_queue.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0A712F3423A4271693EE4062740620EC /* completion_queue.h */; }; - 580286134C8A0F2B000C9AA936EE5E99 /* p_ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 4756B5CFD2C831C8628FE8C262AE8617 /* p_ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 581B57536C413357B1CA93091BCF7A51 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 870D8EB45AEF8BB328D6CF7239FDC52D /* regex.upbdefs.h */; }; - 582C6D186E58BDBC64368952BFE6FD6D /* per_thread_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 76AA200E816C2A98A8605CB6261B9CB9 /* per_thread_tls.h */; }; - 5830E3CACB9FAB2C521F7286FB94DE71 /* FIRAuthAppCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D9852020646367A2F232171EE79850 /* FIRAuthAppCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58336BC94F3DEC8057C14BC457366F04 /* FIRAuthSerialTaskQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = DC641807268E1AC1DD2C9AC572CCC1BB /* FIRAuthSerialTaskQueue.m */; }; - 58418267E90BF2903D2F7B2A2CFD58E8 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 886F2C2B3EF92B2D3B0943E0880EA5A3 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 584A988C01807B31D0E4249B856AD89B /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E2FD611083FB1271F8149585390B4F /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 584EF3A085A924D33FE5D03A5D623D01 /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A7D1E1EBC55384C3ABA51B3A3FAF830 /* csds.upb.h */; }; - 58603F2852CC8A027643811DBF3D9FCF /* sysinfo.cc in Sources */ = {isa = PBXBuildFile; fileRef = 85A9907A769CC29511FC6CEF4A8F6A69 /* sysinfo.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5865EA7C58E27CE84D91A8F2A68349B9 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 272EAB0B07CEF88D86A697C7A8E149ED /* migrate.upbdefs.h */; }; - 586A93458E9A3425016B9010E4C0336F /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 06926B472FFC0205E8282A2D7A31D8F2 /* http_uri.upbdefs.h */; }; - 587BAA7929E6FC594F7C044BD09CCA8D /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E81199DFCC42FBE07DE7CE783259513E /* address.upb.h */; }; - 587CE2174396022DDE1A22E76AD7CA9B /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C09E600218F805ADBA20C8D9B7EBE83 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 588701F16E71382545D1DC66E588BF07 /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 96723ED02F57A6A85C05000131EB5BBC /* accesslog.upb.h */; }; - 589448FF7B9B1AE4CF975588ED3A70E3 /* exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9BCFD6C0C19E74A5FAEB69E748A33728 /* exception.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 58B9AA0C17DC4CD1209C63E46003FCBD /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 024230598FD5AE93CFD3BB4682695DDC /* number.upbdefs.h */; }; - 58C01AD95A4B09AED6C25E2A3C237703 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = F3041B8C822A72DAE8A333D61EB79A31 /* local_credentials.h */; }; - 58E210C40D563974930675991CD0B7CF /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AA1E77257DD61E97BF6D0946527B39D4 /* accesslog.upbdefs.h */; }; - 58F634D37FCC0631644258D68C07E5C1 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAE5FB266127D499A978EB17A9D62DA /* chttp2_connector.h */; }; - 59018C417E57C6BF236990C5BC277C24 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A92F05FA3D1F52F2A55730AA24F82136 /* frame_window_update.h */; }; - 5905F131B88C64C9E3ACCC1C6ABCED90 /* strutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A4B3AEBC039061423903FF3DF79250 /* strutil.h */; }; - 590DACC2138B129012874C56607417DA /* string_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEE0985A810CBB33E3600CDF51198CA0 /* string_format.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 591AF794B2E1EE5A04A6FF44CBBDD94F /* log_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = D61FCF06A99C152C877D668205EAE127 /* log_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 591FF0720F8471AEB7E5820C4CE8DA0B /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F5B0FD512FD44EABE41B08E05BE36689 /* binder_transport.h */; }; - 593A8BA6B106539DAD0314079E684B6E /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2C8B42A4461C643D2A8C3C9A65650A /* rbac.upb.h */; }; - 5942B2FA46C783DDDBB12AF8CD378F58 /* regexp.cc in Sources */ = {isa = PBXBuildFile; fileRef = A95F72F61CE015ACAA3EE1209D90D042 /* regexp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 594B0770904557F6145BC839BE65AF69 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F58040F8DAD60DB9E92C3636B08166B /* xds_api.h */; }; - 596806DEB4EF093D619E8BEE502CBBA9 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = A6750FB37B2CCF78031E3D09A2A05F51 /* timeout_encoding.h */; }; - 59823950EF247B94DC0D3B29E2093829 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 79F093F8BE761F244B6DB67078B233B0 /* subchannel_list.h */; }; - 59850160C9718594779EA3B00A4E64B1 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DE475E04E958BAE243E82AACEB54C9 /* path.upbdefs.h */; }; - 598784B1E6FD9DED0D172B8BFCEC26DB /* GDTCORStorageEventSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5763BCC22760EB5D5B366C4D7D794273 /* GDTCORStorageEventSelector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59896AC0B0E2E24EDBF6B78FF9CACE1A /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 250A209FA4A1DACD384D3BB6584B2D67 /* fake_credentials.h */; }; - 599CFAA961525E125FFC6F8B8ED5DE17 /* c.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5AACE58DB36475DB519B19FE32A6F6 /* c.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 59A45D7E7655B3527BB0143F9C3C47C1 /* server_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5F9C32276C53E6A913ED1701941C5D90 /* server_context.h */; }; - 59A4E378610D0CD93C0B8AAFE59425AF /* distribution_caller.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C60E3941E66348B76800E5F9E3F5FF /* distribution_caller.h */; }; - 59A729BDBCA7879C63172676553B5A78 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = F20DC61653D07A5218B80C88EDBF46CA /* 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"; }; }; - 59B85073218E18F9E5489A6B7718C776 /* unicode_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = 737B6661AD0760D4D5414485B0660AC2 /* 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"; }; }; - 59C5C37DA44DE0DAEAD6137A4CBEFF0E /* pollset_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E656B5E025CF677BA2290063704AF31 /* 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"; }; }; - 59D0CE2D3C0C37FBB85F5E21B8119633 /* v3_bcons.c in Sources */ = {isa = PBXBuildFile; fileRef = F55F6CD510B964675BE20024CF1921EA /* v3_bcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 59D2B977B598DB71327F3C041336EC76 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0664AB84AF0389F95F3FC70A01619934 /* http.upbdefs.h */; }; - 59DD3FE52D13F735F60643AFF0AD7691 /* socket_option.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7797727CCC804F0D262A0D1AB926340E /* 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"; }; }; - 59E9B7577618E261AA34BD4569B7B2D2 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F331E697A629AF29DF3B809C5CBD5131 /* extension.upbdefs.h */; }; - 59FA45DA884DCF5F057A1CC902485BEA /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 1A7B226E2860EE4A4C2039C99B8C1A95 /* b64.h */; }; - 59FA9908020D6EC76D12FC283E72CB27 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 4EA10F768A51A4AB656C10E6B7141961 /* http.upbdefs.h */; }; - 5A0060E218B0202639400498380ED0D8 /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4659196B4EC3C5F86E39E5406F56C8A0 /* executor.h */; }; - 5A108577553583316A6FE47BA167C836 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 9A7A7D37537D94D33A37B443D4732AA9 /* cpp_impl_of.h */; }; - 5A182A78AC99E78DC721F24B377EB1D4 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = D5D3D20598A55161711B9B6E509BF708 /* local_security_connector.h */; }; - 5A1B85A6625018ADFB620105F19E77F1 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F1C751E0CE7DED158C474DA45E6235C /* gethostname.h */; }; - 5A2E75955FDF4046F6FA0AC8045D3AEC /* x_all.c in Sources */ = {isa = PBXBuildFile; fileRef = DB1E94CE7108438A6FD3DAEB224C426A /* x_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5A3628D720898ACADD60A0E598C2D99B /* remote_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD330175DAADA9ABC12A31910A009140 /* remote_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5A3B3916C8DA9500C00B43B000611B0C /* channel_arguments.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C071FFFE6BFD5876239513081F41DEA3 /* channel_arguments.h */; }; - 5A3FCFD9286E26ABF9127A38D634CF09 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = AFFF590FAD835730FDABC04CC51CEAB9 /* transport_security_grpc.h */; }; - 5A40D5781960428438784E51F4F46C91 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F6FDEA4A5F1E357BF4010C8A5BAD9F7 /* bits.h */; }; - 5A43EE551B4BE05DCBDCE47A28257FA0 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 79E0F27F37F7CB6B638A794C270C5FDF /* transport_security_common.upb.h */; }; - 5A5D047B376FB23258DD15B4E117FA60 /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = C84F92D72E05064A11C297612A80AA00 /* stub_options.h */; }; - 5A646D6C6D5E0F13C5CFFA9FB6CE7B01 /* simple.c in Sources */ = {isa = PBXBuildFile; fileRef = 782C8B1210DD99790B729C9A51E5F835 /* simple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5A74C50685581EB6F5FC7CE5670A65CE /* FIRDeleteAccountRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = CE03DE28E455BF7EA43BA2D1DAC48B55 /* FIRDeleteAccountRequest.m */; }; - 5A7B90AB60530A6D272CF70FE95A84D6 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AB278426E730FA69DD5BC8703BE4ABCF /* udp_socket_config.upbdefs.h */; }; - 5A9AB33FE3C740747875143A3EFB9F11 /* xds_channel_creds.h in Headers */ = {isa = PBXBuildFile; fileRef = DD70D9CD6B0432AEB93E02E1FB8489E2 /* xds_channel_creds.h */; }; - 5A9E2D8945A67C89620DC33A9F8AE0FC /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 645FFB47B73CD219F91F74C132F32953 /* idle_filter_state.h */; }; - 5AC9664C206C17D40E247BE4044FC7BB /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AE2E24967046C26451A573AE94D85A /* json_util.h */; }; - 5ACD8FFA0508E6036C7B8FC5683C06F3 /* sync_custom.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A32A614EDB59E1810E5D358C3DE001C3 /* sync_custom.h */; }; - 5AD5BD230441C61FDCEFD4F2FD8CC1E8 /* auth_context.h in Copy impl/codegen/security Public Headers */ = {isa = PBXBuildFile; fileRef = A39434E78E6418F535A5C51C30D60571 /* auth_context.h */; }; - 5ADF67F07004A372940063DE50F3F7FF /* FIRAuthAPNSTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C75D296438925FC92ABFA90B90F9BFC8 /* FIRAuthAPNSTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AE8344F44E41E1B8018374411403E2F /* graphcycles.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B4BCADE378832EA19B9002EDBA7FC4B /* graphcycles.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5AFF29A9210816FF473D3BC6F27B5381 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 96F270D4CF013B47C1BF78D821D60FA1 /* listener_components.upb.h */; }; - 5B0F973C83F7D5ED280FCE54AA997017 /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 3FE643B03358BF78DFBC8DC6A52D5CA7 /* load_balancer.upb.h */; }; - 5B16EA4200D08DC160F4ACADB849222F /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B5E9E753B619848AD0DFAC04C71D36B /* transaction.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5B223B097A47938D79149CFEF15179F5 /* FIRFilter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0534BDFCB05C211DF3E7EE6BAFA4C0DE /* FIRFilter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 5B382F3FD7319048BC5A28230C679A64 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4201631D453E8A4896B50ABEAFF06D13 /* async_stream.h */; }; - 5B4DF8D71C5F3AF68D9CF1BEEAAD8FEF /* bn.h in Headers */ = {isa = PBXBuildFile; fileRef = E651DB79FC5ADC9A7D0ACA4E8496A1DB /* bn.h */; }; - 5B51C9DF818AA6B695CAF6A925F7726F /* FIRUserMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = D84906327689C0432C441F86D5E92F54 /* FIRUserMetadata.m */; }; - 5B55D3E3D1E7845C6FC13486B5E02564 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EDAC646F9CB4D8FB7544DB9E4B3170 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B5820ECEEE080579A9596FFD4CEBB5E /* FIRPhoneAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5970A2BD89CC425DC336C86C012215F0 /* FIRPhoneAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B652622ACA1B149967975BBEB1ACF2F /* raw_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A752E8F3D274B1F36474049315EF94 /* raw_hash_map.h */; }; - 5B92D2D8406B50E0B6D69377C422FA4E /* sync_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = CEEE2EDA66AEC36646307BFF0AC34628 /* sync_windows.h */; }; - 5B9940A8F5116036D24FC235981B253C /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4488E92A02FBE9F1AE88BC95A1225C95 /* manual_constructor.h */; }; - 5B9C2FFE9721B9BD2BA7F54CED18BD92 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = AD2745458FBCC3CEF88D590EEFD15E78 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 5B9E3FF4D2FC0EB1E4ABE69E58279CD2 /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */ = {isa = PBXBuildFile; fileRef = 1398368D2FCC28ACF4105DAE1E07AD10 /* default_health_check_service.h */; }; - 5BA50CA0421929E732783BB5BC2B5156 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0F73F97959AF9D69E929C6E5757BE61B /* auth_filters.h */; }; - 5BA65917D5044E60CC22475EE3B5D946 /* oauth2_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA03A788EE692C767890B8599E7DDD82 /* 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"; }; }; - 5BA94000813ADCE2ADB6F516ED818722 /* lds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDEE9E5B1C61B8C1AACCE38D96A6160 /* lds.upb.h */; }; - 5BB3A35B7CCA4B60B6A2DC0CF7CFC729 /* channel_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD56926ACD15BAA46120D5F9A461E2C9 /* 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"; }; }; - 5BB5DBC7C6D51A79A0F258C264CC1AB6 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 63E41FB55A6D9DD6F01BE04E3226029F /* stat.h */; }; - 5BB6956F9E8A2DABEE6AC8B779CA6282 /* e_aesctrhmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 0273057575C7E444F4111D593C90F269 /* e_aesctrhmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5BBC2DE65664E04F3FEC85709021D298 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 21EB6379863FC4D3BA6BD07B6E5036BC /* frame_goaway.h */; }; - 5BD70F7F5612BB430E6B63454AF47C31 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F021F07F2BB1EA0B57EBDCB932408C98 /* http_uri.upbdefs.h */; }; - 5BDD599129EDF067483508CCA5965CFF /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 2ACDD6D7F925875C5D0B3F4C4C345AB3 /* grpclb_client_stats.h */; }; - 5BE22309E56F73D26FE4395B2B621D31 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = A9CC64BCEB57A6B464B6A3B79D4A5C23 /* FBLPromise+Await.m */; }; - 5BE3A90405545953196C2F891955A33D /* strscpy.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC6A7477E4FA6256FCF730818E74E40 /* strscpy.h */; }; - 5BF66A6657478400AF6231ACD46C06F0 /* umbrella.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A90769AEF2AC0A5F00D058E4C00F878C /* umbrella.h */; }; - 5C0AF927D4FD726A39831A5556D89D44 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D92C9A74272B6812313FAAA4491CD59 /* resolver_factory.h */; }; - 5C1F98398DE44F545DBB0A32230DC328 /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = A7C6FB1722A8E76B4749596C35FEBD15 /* timestamp.upb.h */; }; - 5C2ABE12A25BE5D807E94FAB7E62B315 /* global_config.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = EB67F319D5A6DBD6F3DFC7872D41DAFB /* global_config.h */; }; - 5C2BD5601B221311FFA7C691F7FFAFDB /* query.cc in Sources */ = {isa = PBXBuildFile; fileRef = CACBC4FBE9681958C6A8F52CD5B1DF40 /* query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5C4306960DC0ADDBE2F0F2C56AC50868 /* x509_vfy.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A6868B58A5965A5AC8A6307D6B06D0A2 /* x509_vfy.h */; }; - 5C4502B847ED4F8D7F963F2CE3A75513 /* FIRWithdrawMFARequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D13134B34AC6EC7100DC5153B9F095A /* FIRWithdrawMFARequest.m */; }; - 5C47708FE77A6B85CE4AD062B658E217 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = B185F37F8856671E8CB87C39AC2E7261 /* security_context.h */; }; - 5C4C47E73D51919640F56FBD0B0BE71F /* call_combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40D7BDFCAEBC2D27A1490492E9B46142 /* 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"; }; }; - 5C51F64A671BD825C31B73F8D5CDFA62 /* FIROAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 120ABBD46E407F53EDDB9B34A20925BB /* FIROAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5C53D79EB87A19E8905324957A4A85DE /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = D6084F302AF7DE26462CE35B96D689D1 /* wakeup_fd_posix.h */; }; - 5C54C5B543E68C62A74E7507E9B70C06 /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A413DD6F6C84C13CB8EED25FD2255E2 /* endpoint.upbdefs.h */; }; - 5C5C03D3D8217CABFEA7B854A5D03AAE /* wrap_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4ED571A34E3B677C5F7AEA3F2FBB929B /* 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"; }; }; - 5C60CAEC33ACBB7F4C145B8C37783179 /* tcp.c in Sources */ = {isa = PBXBuildFile; fileRef = 28FF6F3483284C0EC671060F3A0F499F /* tcp.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 5C6F7137163293B442D145EA11DF8D67 /* channel_args_preconditioning.cc in Sources */ = {isa = PBXBuildFile; fileRef = 160FF1B64A68C3D8B86C39F366D491E0 /* 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"; }; }; - 5C91DF4B328E4E4981AA9257933A156E /* query_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A8E4912054D86CE62D7131A5ED68EE9 /* query_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5CAB67E000C85DA1436186AF337FB285 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = EA8FB6449FDFDFF8C9E2213EBB0AD778 /* alts_security_connector.h */; }; - 5CB5ECC04C4D9F919AAADB341A27A5B6 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C23DDAC09916FA1C2F317B501B5A9C4 /* metadata.upb.h */; }; - 5CCC3C74069801DB479292E5197349D9 /* channel_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8CD8F9BFEE54C15B4D49EA1371C33EB /* channel_filter.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5CD2C3EC089093ED72424DF03460B6B4 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7987C9EDCB7BA1803E4D1C4E46FBC3 /* path_transformation.upbdefs.h */; }; - 5CD90D5DE8CB08CBC925A0243BE82719 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = E2A467762A7C41D8C3DE86CC6E2BE3B6 /* huffsyms.h */; }; - 5D0659D86B5F620757704698C845027A /* check.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FB4960543A440EF3011186E7332F7CC /* check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5D0BB69A4617EFDA7CAA3CD7BD01DE94 /* GDTCOREndpoints.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E735432382820CF72572A48951A0C40 /* GDTCOREndpoints.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5D0DA1E5A8C39A15629CE8ABBB8D6C35 /* grpc_plugin_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03CF886D35E03504769A922450BA26E2 /* 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"; }; }; - 5D166775B3915C99826E9E440476FDED /* server_address.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = A86B7F7718E3856DCCC9FA5AD5626FEC /* server_address.h */; }; - 5D17B82AC2BC8C6EDAD5372F8B6CCAFB /* thd_id.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 139DD96B689C090DA3A1D2413E0C3867 /* thd_id.h */; }; - 5D1E21C6D2764A22845F9D8C74FEB45F /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1201AC5472C2B4881F5AC493870EB983 /* proxy_protocol.upb.h */; }; - 5D1F1390AD45C0B17815CDAACAA872B8 /* http_tracer.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DB4C7ECB33E87C6E974F7975A09D9176 /* 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"; }; }; - 5D1FF6F2E4EFA4FE6C963C2F07559AAD /* local_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCF50DD9E1F68DB063FE2AFCA2BAC23E /* 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"; }; }; - 5D24BB3A0587472A3D49B2DC4172328A /* x509.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E9D2894C386C06DD677DDB65D31CB243 /* x509.h */; }; - 5D255495D5061FDEBD6BBC0EF95339B8 /* pem_pk8.c in Sources */ = {isa = PBXBuildFile; fileRef = C065202260D03BDA9AAA9C3FC89C4A2D /* pem_pk8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5D4FA83E8C215DD14B89BB75182C4945 /* status.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 95823E1ED04B0D9FE33CECFFD1DCDA55 /* status.h */; }; - 5D64F96839740CB5D450591F0B3049CD /* interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 15D0A302434364C99AF37CD09B4CC84E /* interceptor.h */; }; - 5DA11397529D6A93DC11EC4CB3BC2D4E /* optional.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EC7E86AC2F60004477CA101FB037F81D /* optional.h */; }; - 5DAC4EB559C5CA0502E26646AF33E7F1 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = A68EA86884D69D502BFE4170135DC461 /* slice.h */; }; - 5DCA9FC6FD9623E4D2FD1A9E5E8F429E /* collection_entry.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B02499D441682B0266E4EBCE4CC8D1F1 /* collection_entry.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5DD06379AB6FA874A32841B782388FE1 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C31D0750EBFDE96E619288FCAE5CB988 /* collection_entry.upbdefs.h */; }; - 5DE92A3186FCF5A72CED9E415420EBB7 /* FIRFinalizeMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E33EC5D4DBABE8940D18D69C54D9D1EE /* FIRFinalizeMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DF4514DEA196A2E223DEFE86DF7E95D /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D802CEE2442557DBEBBB89B9D745CB /* dns_resolver_selection.h */; }; - 5E00FD59D9C164E7DEACE2AD27CF426B /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C5AB5AA044F03D2ED736480E3549B6C /* route.upbdefs.h */; }; - 5E106D362F0E398B765695C420ED4849 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CFD654A9B427BD7D1F2A1B4C52BF1E /* init.h */; }; - 5E1E8A9309D63A50656E565851FE9D59 /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 194A4A4DA190C984B4CB804B9DAA877E /* resolver_factory.h */; }; - 5E23C242AD6072523E017EEB4CF70B47 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DD7BACA8BD1F55CB592E9D37E4AC694E /* context_params.upbdefs.h */; }; - 5E34AD220BD8B0D8C359FBB8013A4BA5 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E489E853597BF2D6F33EF918DF4ED9 /* versioning.upb.h */; }; - 5E3E8D9EA84B5937B7206C3E76EFCA44 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 5E46B08D9171EDEB11274A11C75E4D37 /* asn1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 80A49061F055B7D233D2FF64AA86922D /* asn1.h */; }; - 5E576D7B91DF1613578E0A75E7B9EA5F /* cds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EA6C84B01B4B3F4253B9620219390EFA /* cds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5E7284B23E1EF889E47F35C734A2ACF6 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 07CB71535C746BAF1620AA034BBDE774 /* endpoint_components.upb.h */; }; - 5E75A1001E2C53613255C20ACBD8362C /* conf_def.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = B00D53290AAB3FCF0EAC9166914E3837 /* conf_def.h */; }; - 5E7A0858CA090C2D680683007CEB4A26 /* int128.h in Headers */ = {isa = PBXBuildFile; fileRef = 70971CF4DE9C361E7B00EEDB67B2CA31 /* int128.h */; }; - 5E7CB868EBDA16B5B4812875D505260F /* prog.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = BBD80B793F358EA6A9BF500CE7CED2F2 /* prog.h */; }; - 5E7F041059944D8625C1B5205A467F4F /* value.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = BD89197787961B81A6DB15F600E03C3C /* value.upb.h */; }; - 5EDC5D729AACC80891F47F4BAC966EBF /* call_log_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98442E5BC3671841C2AB4BA613701840 /* 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"; }; }; - 5EEE15189C710265CD4447972369D02B /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B51234E02E93F77D820FA91638307D1 /* bootstrap.upb.h */; }; - 5EEE94AD88AE6C2DA931A3D5C7A36DBC /* lds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 49F0BB19841D136A33CDBFA501957671 /* lds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5EF7149F29B9E4E036F9AAB80E0ECC19 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 49A4F8B5D211E97177EA812FF6901D9E /* endpoint_cfstream.h */; }; - 5F0150E70C3312E00762F49BF752C6AF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B4EA72EFDFDE1E7FBB8C29A3AFC16093 /* internal.h */; }; - 5F0524374F8E4BB40069DB5BAAD81302 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A19A4DBBB48441280DD05AF5A59904BF /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5F2036030CD4FFF1F49F0A35C7FE1ECF /* rsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0DCEA46D88606CCB5D800F62EC370C36 /* rsa.h */; }; - 5F20A56E298BC83594BE7535B1F856F8 /* client_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69B1D299E13969370D04ED9A9C32BC76 /* client_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5F20C30F7D3E7BAFE32545865A50CD0A /* ev_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F3BADBB781CD5803D97720792F617B5 /* 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"; }; }; - 5F2AFBAFE01FE9B52CA73C85308F9C97 /* v3_bitst.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E2D695C2736C5F6227401C45D9405DC /* v3_bitst.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5F42F8B0DB5BAE0E224FFBE1A332F417 /* front_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 684D16A44C9949E522F0782808B9BFA4 /* front_binder.h */; }; - 5F4662279938911B9B913EF22C7C0C71 /* alarm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6B2D4E1C23A7D4BD6F6F6BFEC49D8504 /* alarm.h */; }; - 5F49A998D5AF096021B2670FB360E148 /* compare.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF6EA864689F2CC9D215984D6B411D0 /* compare.h */; }; - 5F4A124400D883467156D63E88D6AFAB /* charconv.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 0BA6652B31A30D9100EAF433066BAB5C /* charconv.h */; }; - 5F7A83F8C412D2C279413851273406DC /* FIRGoogleAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C18F8BAB40B71BCFA65A6DB85571109 /* FIRGoogleAuthProvider.m */; }; - 5F9AC5811972B4FB570D9B8C6B55A981 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 400B92186A836269136B82034DD5B23B /* buffer_list.h */; }; - 5FA820F203E8D9F09D1EC41F3F76D2B8 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BAA1FACA74D6AB50362A5ED659F87C4 /* number.upbdefs.h */; }; - 5FBCE56EF98CE915FCE07F69EEA748FD /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AFFEBCF57F8E8D177A9585FBF21FD22 /* status.h */; }; - 5FCF703FA5FC10B015407BB6C76DB90E /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A413DD6F6C84C13CB8EED25FD2255E2 /* endpoint.upbdefs.h */; }; - 5FD4892E0D2FB4901A67F7AC0E4CE3E4 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = E1792A159A644096F31504A3F4CE6B43 /* byte_buffer_reader.h */; }; - 5FD714FFD906830E149DC15A639D6EDF /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 409F28C9A0116E758506B28846AF151C /* arena.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5FD8FB2370ABCCB358B8FA19A89827E1 /* charconv.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA6652B31A30D9100EAF433066BAB5C /* charconv.h */; }; - 5FD986ECE1C7934FDE891E6837290F12 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 95A754F02FF7A7672AC0B2EB718D939A /* completion_queue_factory.h */; }; - 5FDEA6D6A78A21C22064F8025C24FF0C /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 76D3D6778B042F5E5557F3971629DD15 /* resolve_address_posix.h */; }; - 5FDF6AFF091DD7C40D1EC5A16805EE3E /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 58801E32C4A42A16557BA21E4B98364C /* alts_crypter.h */; }; - 5FE62F2515BB4124200DEAA9BA533112 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C60B7A7C032805CF2ADE7B597C33DBA /* loop.h */; }; - 5FE7E1973A551C3545A4EDA7D6ACFBB2 /* evaluate_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = E421476D80888AFE7A0647615D36D8DB /* 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"; }; }; - 6001176B94C4F8270A8633AD73AD99C8 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 3ADDAF8AD6A5384E779E32B918916FA1 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 6004034FDDAD6F58FDF2FAB22D1DF99F /* grpc_alts_credentials_server_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F0918A9481279281090CA6C38F60206 /* 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"; }; }; - 6013F01EB3175A3F04A23721B91BEC44 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 346711871383A162527FCAD76FE81CC7 /* decode_fast.h */; }; - 6025AB1C3CF41F2F53CAD62EA3F4908E /* binder_android.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B075366C40130FB358E1F8AE509FF9 /* binder_android.h */; }; - 602D2C55E3B999631C5264237029DB22 /* dynamic_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC1C6762A400F6798B0B37360C37A926 /* dynamic_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6039D5B453C81A3B16C0B34E8FBB21D4 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 15D0A302434364C99AF37CD09B4CC84E /* interceptor.h */; }; - 603B46CE09CC8B804D1A4DA725FB66C5 /* iostream_state_saver.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F8BCD3ACC3A9537DB76A1799829D4C5B /* iostream_state_saver.h */; }; - 603DF9732772151B3B97D416F8083014 /* address.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 34632AF358CE4E6CEBFF021A951862A8 /* address.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 60576A17090F3C0131CECDFF1FEA3ED6 /* x509_lu.c in Sources */ = {isa = PBXBuildFile; fileRef = 7683E2F4EAF3627096B3860DE992A8F2 /* x509_lu.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 60726C80764CADDD05F1DF5109AD741C /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 191F6F794486933834A6A920B289F428 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 607DE8E73F2648FE97562E2CC4AE0DB2 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = B4938879DA38CDFB6B4644E9E0600C6E /* port_platform.h */; }; - 60940918293C9ABF3C4A57EB0507EC5A /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 577369043FA5FA8FDAF630730C417706 /* async_stream.h */; }; - 6094DEC218F1BD53CFD40A58570F6A15 /* internal.h in Copy crypto/err Private Headers */ = {isa = PBXBuildFile; fileRef = 81EB19368A1498215B0CA970BDF9707C /* internal.h */; }; - 609581DAAE8BADC0DB2983E1B896BF5F /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F6232FDED7D78A155E56486C1DCFD29E /* custom_tag.upb.h */; }; - 6099BB3984C835F7329BDB3E16E21134 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D08A2638176BCEEA41B0DAF7016F25A7 /* internal.h */; }; - 60A22BD2D896AB1F4E8E2E953AE56E5A /* target.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 644662E714272EBD09A89D7E82F6F076 /* target.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 60AE782B28432A9C1F5A7C1561C6313D /* cds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14FB791CFD1D50E67A6DEBBA1157911D /* cds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 60B270B904BF2FE1A8B7A24D7AAF88DF /* int128.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 70971CF4DE9C361E7B00EEDB67B2CA31 /* int128.h */; }; - 60C354754208BDE52F1BC7821ED50BFF /* symbolize.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 18D5C614881B5B957AC21C397F05C4A8 /* symbolize.h */; }; - 60CFB3F5DE468304322A5B560ACCE0A7 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 355A3A4870ECB7DFE003AF192D259D78 /* security.upbdefs.h */; }; - 60D266119C1CE6C62FB4A905E35E5249 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = BB85668B872EAE26D4C8F2C12E3645FB /* channel_args_preconditioning.h */; }; - 60DE83681530388BDD74377A6A5A3CF0 /* secure_random_arc4random.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DCD2DC78A51F2AD295CDE68DE7FD054 /* secure_random_arc4random.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 60FA7007B4634577D9465491BB8CEBD9 /* macros.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 7E7CC535C54B4C290FC6574D455BBC01 /* macros.h */; }; - 6100224C90B63153F3B5C2706C7E9356 /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D28577CD5265D4152156278437C81F4 /* FIRQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 610A0B10EBC00D639263DEE219A20837 /* status_errno.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0D56F15F9934C53F709C44216DB31FA /* status_errno.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 611F11D4E8489C453B3A9BEC00407EE5 /* platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 30A54D8F04C5CC171F121955E24AB69E /* platform.h */; }; - 611FE060F12062159FD1390F48B7FAAC /* create_channel_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BA8631E8E3418C7877A784E5394DD9 /* create_channel_binder.h */; }; - 61296125C20DEC8FD87E8A759705947A /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6ED4E1B1FA31185EF5FED7A8115E01BD /* path.upb.h */; }; - 6141686D4CABFB8007FFB97F44F2197C /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 27B83CCB6B3B7094AA5781C0E039A723 /* internal.h */; }; - 61427ECC97FB27F50D65817D4C8EEB63 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C7C8DE9C3148DC7DC53B3FC43D7D64B /* http.upb.h */; }; - 614B0DE0E76AD6FE1CDCDB860A284863 /* channel_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D6973E9FD4602D0EB5B6674ED6FC4A1 /* channel_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 614CD39B05AB4FDBA8BF89705181B7CA /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 03F12C9E238CE872C4E5AD15A6C3E880 /* huffsyms.h */; }; - 6166D51A9B17FA2B7DEFF7044D6AA94B /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = C863B9815B90F21CFBD4CD5E2CA640D6 /* load_system_roots.h */; }; - 616C4E7EEB725028A00B9A93A77DD08B /* elf_mem_image.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5FC4119F20B28824DC1F434BBC1607D /* elf_mem_image.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 617CE6679BE305BF340997A46E890382 /* fork_detect.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = DA49D325838E71B66BCCEE312008835E /* fork_detect.h */; }; - 617E4E829EC99DD1F65C03E00E038B7C /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 376F71550B79518E43168F2BFFB5DD9A /* log.h */; }; - 618EC3D7BDECF11A38798DF18DC60DCE /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A1598AA01C5003E6C88928A771D6724 /* accesslog.upbdefs.h */; }; - 6199E6CA0FC99A5F3A64561ED7BF5849 /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 320B54A3BA2F1AA334EA800DA62CF99B /* table.h */; }; - 619B296F52CA20FACCEDE442C5AB740B /* memtable.h in Headers */ = {isa = PBXBuildFile; fileRef = A1107E5BF01847F78DA2700745DA4621 /* memtable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61A545D6FD27A4744B2D77F26D7AE4B3 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5838A843FA8C91F40226C6CF88A6C235 /* path_transformation.upbdefs.h */; }; - 61C3097B9780B4AA6610FFD7017B03B8 /* target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 80CE9C3AC50A854AF113402C03D22840 /* target.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 61CDBEB7FE41100594BE1E32EB2B1F51 /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 90751A8815D0D548A9093FE5AFC0C3B1 /* stats.upbdefs.h */; }; - 61D27579BACB0DE6270B68F3220D7C4E /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E5CDAC6B19E41A3101370687183966B /* metadata.upbdefs.h */; }; - 61E7EC262D91469C2D1482845754737A /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA303DBCD0B07FAEF7DD0E176A042EA /* iocp_windows.h */; }; - 61FC2D08089CEBFEA535D5E765464459 /* annotations.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A114BCE9571AA2D9ECAE71024A349E9 /* annotations.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 62042B86F45568429E60D22AB7F695DF /* FIRActionCodeSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C858F819921D5FD0F665E90B34271D /* FIRActionCodeSettings.m */; }; - 6207A468A8A11D01A989A7E91B7F79E5 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D6DB6DF4AA4B150207E77864495927 /* race.h */; }; - 620D90A387727807780758C61AAD92DD /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1D152EEF95A1B79151411BC6D91C8806 /* tsi_error.h */; }; - 62142D1A10C5BC2E3D877E93E32AA848 /* unaligned_access.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9DED17414A8AF61586F76653428F39B8 /* unaligned_access.h */; }; - 621C3931FEF3EAD9ECD69C24FB13C4C9 /* FIRMultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB8A5EF7795FC6028C4CC6AA5C56E06 /* FIRMultiFactor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6226D7455ECB2E09381317737E801B05 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDD770CE4C3ADCF3BE8F8901FD0BD11 /* struct.upb.h */; }; - 622C56A50BBA8FBA654B73652E8D3430 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = BF735140546D90B9FCCE110DAE6474EA /* loop.h */; }; - 623161C2447B7031D4AFF09A8DF2FDF2 /* FIRAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DA8107F067C6979ADF3814FD6C4DF40 /* FIRAuth.m */; }; - 62390C3AD10391225D6D6233390E2D88 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D345E76B9E1F74CAB790D4F3760C79 /* aws_external_account_credentials.h */; }; - 623A6565FF2AA223CAE72C50712CE9EB /* cert.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 773E3F9A2FEDB8A6657BEDFB3204550E /* 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"; }; }; - 624450A81AF3DD076C3BA680FFC5367E /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 41A3E8ACFA912A9AF76F6483F37B9328 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6253D657CBE1FD50FCC0D076058C6216 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3682895FACDF0D37E958708E547839C0 /* tls_security_connector.h */; }; - 6253FE3B48D00CB01A68864770B9415A /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = AA5F3366FEB3E1119249D08C76C36FF0 /* backup_poller.h */; }; - 625AA667556D6AA44BB4D8B52F817DAE /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 66D0A8DF30AAFD1FEC949DB1D6F4CB66 /* path_transformation.upb.h */; }; - 626BE144F1D0539AC1C6185EFF7C71D1 /* bn.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E651DB79FC5ADC9A7D0ACA4E8496A1DB /* bn.h */; }; - 628A62CEA77DA8C7E15C0B8F3AE119B6 /* montgomery_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = 02B122C13233EF7357BDD2C2048ADBF8 /* montgomery_inv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6291C3A742EA8A59E72C88812C62A328 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5892480F0D782668E0F1E57DB4B5516B /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 629B1D737E1526801390DCB0D97AED1E /* str_join_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 65317CF0A859C74DB9311356E180086F /* str_join_internal.h */; }; - 62A1B16D498ED101BAA28F92E963B723 /* pollset_set_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAD6A11B21495CF049CDE05CAB35A774 /* 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"; }; }; - 62AFD8FAC3A8FF7E2ABEEA9D3F72D69E /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F181B431456C24E0CFCE7C42D099FCB /* connect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 62BB8A0ED1A6C78E4A9ACA51F2873D2D /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9E441B0346B45C4472AD4CA8211B60 /* migrate.upb.h */; }; - 62BC30C51A86D619875765D75E2E905F /* mpmcqueue.h in Copy src/core/lib/iomgr/executor Private Headers */ = {isa = PBXBuildFile; fileRef = EA3F173689A0C2FE9591AD9013ACD0B0 /* mpmcqueue.h */; }; - 62BFA6D355DA75DDF33FEDFF9AD49C80 /* stat_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB10E3BFDA47A548969E1E40B54ECA6D /* stat_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 62C8AF218CE70F68A310ADA8E54B64B6 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C4C728DE09CE2A2A6159631A1E8D7B19 /* rbac.upb.h */; }; - 62CA63D5BC42479E556409F37CCBF3CD /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D271BC81566FE43E6A30021BDF1FF2E3 /* client_channel_channelz.h */; }; - 62CC016D0E94EA715FBBDA25C365E4B0 /* csds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E760D29944F24E42412686AC46A044C9 /* csds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 62CC65AB71F1A05B9EF1B343BBA59BD8 /* db_iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E0BD66856E6AF55D5C343CBCD359A9C /* db_iter.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 62CE42F3130BFFAEBB4FB7C70E5F8995 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3DCB25CC4DD1BA3BEE60D51CF3DCED63 /* resolve_address_windows.h */; }; - 62D0F844BBC1387995572C0D250E8E2E /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE2BFD957CE7C38FE4A7FDCDF71D2AE /* altscontext.upb.h */; }; - 62E654840B005D566AF4A1D1163D9611 /* cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C9DF06BCF4E83237FE65A93FB3B4884 /* cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 63013B1B080E8B502E49D9BE7D226D3B /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = DD8FC2845807DC1F93E2AA11FBFD2A6B /* GULKeychainStorage.m */; }; - 63028F5EFE2DE1ABB93B2A73F21E829F /* FIRUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC0107F0C9D63E698485CE5E573541E /* FIRUser.m */; }; - 630E3BF21E08D8F6694E974ABA964C38 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B2EDC81F15CDAEFA824833F44EFCA60F /* resource.upb.h */; }; - 63182A325D95759963B192CE7A8FB45A /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 7C50351F88C76CEDFFED2073AC0B442F /* parse_address.h */; }; - 631E44BD5A3C7516C26406430CF5B8F9 /* pid_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1205F2889A96427D02569CA6D5C6EBBC /* pid_controller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 632052EC10ACE21F446303EEAEEB7EED /* FIRFieldPath.mm in Sources */ = {isa = PBXBuildFile; fileRef = E253167A05AC66A4F9B0084C15177D55 /* FIRFieldPath.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 6329B19FE3AEB56D3CFF2AD682D9E5C8 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F23BAB6E574A3A2E4ECE03B2DCA2FE /* scoped_route.upbdefs.h */; }; - 633254FAAF8B9492F80CF9DC8A67C532 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0722CA38178D3469D4A31A4E2D184724 /* cluster.upb.h */; }; - 63473547158814FF7AE7722BB9793754 /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = 1439354E8BD02F0DCBF6F1E3843F824F /* gsec.h */; }; - 6347FE4126A514CEACD87EFB7FE7CDB6 /* create_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C6FB56F78EB56A627DADA006124E0C /* create_channel.h */; }; - 634EBAC3FC586B6C237889F02113481A /* grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B40A5FB78E381513B04D30F0F3DF49E /* grpc.h */; }; - 635CD065BE3AD12D15B111060D2AB753 /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0A511B16F2FB557F764FEF88CA4007B1 /* status.upb.h */; }; - 635E84035FD82E27D3A1188B9E0B22DA /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 5A8CCD4CF85DA2D2CF5927AB48A8D078 /* alts_iovec_record_protocol.h */; }; - 6377FF455A1E664C1B65D6F55FA8E234 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5EBACE88C2B991171319B4FF23125C45 /* tcp_client.h */; }; - 637899CC2AF111A3EC61A26A85339E21 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E46C379ED94A55A89F6F983FD07B2087 /* 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"; }; }; - 6378F6CFA73CBA72BF76766E017A97B5 /* getaddrinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CB04F54C9B2F140BB565119A014EE30 /* getaddrinfo.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 637AF74444488551F44110249880A4D5 /* FIRUser_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 068DD85788D07843FF3FE2DCC0A0345B /* FIRUser_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63888BBAA7A88DDD257DDA0D2F954EC7 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9403116104444C696EE6FB86563BFE32 /* fault.upb.h */; }; - 638E5275EFA08A4FCA36563A6D9E85D9 /* iomgr_posix_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54160E37AF4805883EE529E53FE80C53 /* 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"; }; }; - 63AC75AB5B4C15DAEB845CC5EB9361C7 /* resolver.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 42E19A0322478BF04B55DFC7F64BB28D /* 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"; }; }; - 63B66E930E1038736F441D74BCD5E8C5 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8C000874FD38C4F18E56DA495B7814F4 /* stacktrace_unimplemented-inl.inc */; }; - 63D373DACFF30025FDAA76D6D65596DF /* connectivity_monitor_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = D1278476EEAF9DCBA841C37F3109080A /* connectivity_monitor_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 63DC2A839FE84E88EC1C898D4AAE2BC3 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A818395C8B5BDAA1D9592F204FD2B038 /* binder_stream.h */; }; - 63E9C8DEA0F1F0B19A0D5B73E157DF2F /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 5934436C32E7BA87C0B6BB29A4BD77FB /* address_filtering.h */; }; - 63EC081AB5E4B8AA03F7AB73EDBA99E2 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C88097B53DBFC74DE522D3A6631CAED /* resolver.h */; }; - 63ECA6BDCFADF3F6AF1B833AF67F5336 /* priority.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0FA88EF49B79651198EE74047D6AFED /* priority.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 63F83471783AEB7C6ABA413D8F4FEE27 /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4F7B89AD70178C95E83274ED63BD29F6 /* stream_map.h */; }; - 6401DC3B44C2FD7A1CA861EA355A1A02 /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = E3D79E31FC5357C1A031B15D2AF7998F /* arena.h */; }; - 641B43275B11A7DCD3A00BD667B6D9F0 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 5A21B5A9674571E25435EAEF9834CCFE /* ssl_utils_config.h */; }; - 6420E693153583FE9A49D7B9A6E45559 /* error_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 53CF68FC9387B7C4FCC322FAFB715A17 /* error_internal.h */; }; - 6423DB8CAA905534D4FFEEC3812F2B23 /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9A5993E01767ACEE9738FF31F4AA2AA1 /* connector.h */; }; - 642671953C414321A30EB17F0F5DBD43 /* remote_objc_bridge.cc in Sources */ = {isa = PBXBuildFile; fileRef = 930BD135D5F2536283B699A4A89B3642 /* remote_objc_bridge.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6435388839A9C4191EBC5B84185C319B /* grpc_security_constants.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7475970E1198DE8F552DE4D96C8774DE /* grpc_security_constants.h */; }; - 64629EF452378DACD27FC3676F85230A /* tls_cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 731AC8A2D407FA7020DFBFF5B56D8DDC /* tls_cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6474E670F5B5A9E9682969DE399051C3 /* a_mbstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 8640AF57CE7046398BB5BF4BDA9D834B /* a_mbstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 647F4CD29C3028B027F7E8EE48B07402 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D67BDCE3A36359AC4F1B678B390EC8 /* internal.h */; }; - 6492D076960F2D848F56F3A8768D6A93 /* document_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46B584C459823DF83ABC276F03C171E9 /* document_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 64BAB70560E1A1560749C9F93B047F7C /* upb_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 9EE984C6FFA08D78838F9D8AB59D43F1 /* upb_internal.h */; }; - 64BBFC955C8E9071C91A98A600FF2C75 /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 2633CB8F25B0870D37571A671A3D11B5 /* call_hook.h */; }; - 64C5425CCEB0C18FE1CE5FD183877173 /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 1BDAA77E4D4E97DF2602DA099F5A30B8 /* checked.upbdefs.h */; }; - 64E20D0E5A3AB1A4C2FC9A355A13525C /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = D52B171A495DB04AFFCAFB7A28E8570D /* ssl_transport_security.h */; }; - 64FAEB46A2F0C56820F5566178CC6B61 /* eval.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 829605E36EDA6B0E8845C26075B1EC53 /* eval.upb.h */; }; - 64FD5FB12E2970F405C3EF3DADE5C6A1 /* sysinfo.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 31C40B607709910E6F746EEE5AF5ABDB /* sysinfo.h */; }; - 6500674927119CEF288B6F721427A59A /* subchannel.cc in Sources */ = {isa = PBXBuildFile; fileRef = C6EA938BA2D74D97E81DD55F0F7C3E43 /* subchannel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 65073952D8AE40EB0DDCD2E116901728 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA709FA365A48B6CE11B651FA023E19 /* file_external_account_credentials.h */; }; - 650D67F045C415E988E6A666B09CEC7F /* p256_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 2D03D337B47AC826656C9CD58DF6A277 /* p256_32.h */; }; - 65120B8272C73D94217189924799655B /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 24BB071A53AE872ABC3A9D5797A66109 /* credentials.h */; }; - 651AFA2475387E8CBA7CF6583FCEFBA3 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 950D283A1E1DB9EEEBEF9281504677CB /* composite_credentials.h */; }; - 651BA2C83F3ABE05DD11C43BF05D2F15 /* pool_urbg.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B8BD14A626C65D8B2EFE971E319CBF1D /* pool_urbg.h */; }; - 654D873B00DE326E619FF7B13F3618C1 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 846BB8B1516FFB4ACEB09BA01E3213CE /* status.upbdefs.h */; }; - 655AA65DE819DB8F2C0496B11E7088F0 /* pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0CCC667FD79B757B4B75C1B064DCA254 /* pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6563120D5F6D0322EE2036E85FA11B37 /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 587BF25E347F3F5B394DC39E2EF64039 /* route.upbdefs.h */; }; - 656330FFA7E5497EA9503F85F110A259 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = B5592154D74A2E3E3DA27A305B0BEFBD /* parse_address.h */; }; - 657DA39B6E389053DE3E1B451462EE1E /* by_file.c in Sources */ = {isa = PBXBuildFile; fileRef = 11182830AC95751FBC2D7BAB97A3C855 /* by_file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 65ACEDD634B85412F30C02B677724D43 /* tls_credentials_options.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = DD6BCBB3FC57E054A0EEBB19DE632159 /* tls_credentials_options.h */; }; - 65C523E19812723857DBF5124DEE8892 /* clock.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 0ABE47976C44914C32EDB89690E04A02 /* clock.h */; }; - 65C568A69FF576CDAFD4BDE3CD34A8EE /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = A33EE0C16F7BBE321ACAEEA656D09EE2 /* FBLPromise+Validate.m */; }; - 65CFCAFF525B85B66D7BA50920FD3627 /* grpc_root_certificate_finder_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4228D7609B06D2AD530873B28AA28D8 /* grpc_root_certificate_finder_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 65D7F20AF0ABE388A4283192E373E805 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC8B112047398545277E4DF5497BEAF /* local_security_connector.h */; }; - 65DB14D7EB45CE3C181E887E524CD4C7 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA99C6D40B031E5F2A776580E03145B /* secure_endpoint.h */; }; - 65EEA0D5AF8C07C9BB03E09DFCC6F4F6 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = B05DBC6E4E6F2CAABE5B0E9AA646EDB8 /* status.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 65F13E65AB876B49809519C672BDB0F4 /* FIRVerifyAssertionRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3228A2741A4C6E799D0B11D846CE6B63 /* FIRVerifyAssertionRequest.m */; }; - 65F87290F45320238AD38FF6710300F3 /* eds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 889C4559B52459471A44A392B83B1D2F /* eds.upbdefs.h */; }; - 66032BBA1DC075B73DD513DB4AD9E465 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = DC37F2C6B67598116FD1520F1EF960EB /* http_connect_handshaker.h */; }; - 6617492CA36517A0FBE76422066F4672 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = E3C030AD5C975B2D61A9775FDC1D6630 /* port_undef.inc */; }; - 661BE20DFD6540774D1B79D38160ADC5 /* backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = EFE7EE4B2EF0BB0A05FA4334345FA0CA /* 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"; }; }; - 6625767A2D809BBBF2DD119FF16A8FB7 /* casts.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 189058C32983FBBDF09FD677C6F662ED /* casts.h */; }; - 662999CCB0349389A4F5714D7CD38106 /* http_uri.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DC5825CA05529EBCC409BCFD67DAACE3 /* 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"; }; }; - 662B486BFD09A3E8868848DF83F20AD4 /* tcp_server_utils_posix_noifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BC5E432E01D2FA1A51A2A43783CFADB /* 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"; }; }; - 66416C5284BB9A2EDBFD86D9DA3AFD89 /* int128_have_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 6D61EC7FD66A8CB74562DAEFC173E0C7 /* int128_have_intrinsic.inc */; }; - 6665769A1BCBB23DB38ABA345BFD86A8 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 152C94B565CDFA1CA88FB0B2EA1A4669 /* api_listener.upbdefs.h */; }; - 667BD55400549A4A374692A544D7B0F9 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 11D3F44C7D05DC20BBFDA01D021730AD /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 668097101035B99213565779234DACA3 /* firestore_index_value_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4E237C549EB7530084E39A5BD628FA8 /* firestore_index_value_writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 668317B9E73EF2472B5DB3D6C79D2848 /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 0910BB72DBDAB252986ABE9082C84128 /* subchannel.h */; }; - 668F93CBA5E58008B07DD9F10AD6B4EC /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = AA659B0CEC53DE47C207E9E946C54998 /* bitset.h */; }; - 669A15CB9A6FD684E8EAE07BE01E3CF3 /* sync_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 23EEE0EE5AEC1D97BCB9966C6C910AD2 /* sync_windows.h */; }; - 66A0FE404478B743FC01CB19389F482E /* leveldb-library-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B78D77EEB3DF4256C73F29E5FB7B3497 /* leveldb-library-dummy.m */; }; - 66A9C75647A229465FB83DD6055BF917 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 456F64DF049000E597A82DD48D788DC7 /* endpoint.upb.h */; }; - 66BF2E01D854443C1CC7847C33E35E49 /* time_zone.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E13ECFF2261B5D89C0EE63092ECCAC /* time_zone.h */; }; - 66CB41EDF30C6EA869DB3E918F8AFEF5 /* string_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F97B8898465846AB44BB5D78E704921 /* string_windows.h */; }; - 66CBF0FD375B02D4CC084099902B3FD2 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 15BF773627AFF8CA45BA4352D0262F77 /* CoreTelephony.framework */; }; - 66CCF21034573F52009153D98B820130 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 990EAF86A1B5E6B39C833E81ED66F645 /* http_connection_manager.upbdefs.h */; }; - 66EEE75ACD30B3684B3B4BD802F4B1A3 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D31D0B14057F3C93CA1E68111B6050 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 66F5D36BACAB8699981D887656493CB6 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 1718D18788DABDA40F35E9DBA31BC622 /* channel_args_endpoint_config.h */; }; - 66F7E54B1A5D9E87FDD3F24E658BF8AF /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CD7F32C915CC6D9E5092E802ACB02B /* resolve_address_impl.h */; }; - 66F9C04646B7B1176882EB1E3C3BE4A6 /* binder_constants.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9BBADFFFFD158986AED8859EA96B6EE3 /* binder_constants.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 67001F5D34B86147385C97F2B8F843E8 /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 254F524B944A594C50A83B4875F42C2E /* binder_connector.h */; }; - 670C84F1E37CB086BD4C4F90A5FA44AD /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D3E59A8DD760ADE17730F3FA6553BB /* child_policy_handler.h */; }; - 671E73E2CB36C5462293344715AD73E2 /* ber.c in Sources */ = {isa = PBXBuildFile; fileRef = 81DA078477DBCCB0C1972DA80C4812BF /* ber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6730A6C49A7D52E339F06853A8BD96F2 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F6232FDED7D78A155E56486C1DCFD29E /* custom_tag.upb.h */; }; - 6742EB48367E810678C515502E92BAD7 /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 57154B976BBF46B3B191F57066FBB2B6 /* time_zone_posix.h */; }; - 674CECAF0DECD6AD9BE41E4C97FC61F0 /* ssl_asn1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 953A8091CE0C592123D1B5B837034795 /* ssl_asn1.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 675E791E8001398BB4972C836D0E5559 /* server_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C2E904B299A912A882B296AE204105D /* server_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 675EDC9D151F9C8440A03F3A1F307B78 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 323E902A459BDBDC083ADB54C910C097 /* external_account_credentials.h */; }; - 676A23819C99841282A2F78545599756 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD7E04B247A048A8B2E9C43B804FDBB /* slice_buffer.h */; }; - 676D11386FDB3EFD55116606593A11E2 /* cds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 667BAC6C2BDB2110CC30BBF9610FF171 /* cds.upbdefs.h */; }; - 679B6040087C60D30D4E2EA3FB6EE3F6 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F71296438012632256D049B9544C1A20 /* lrs.upb.h */; }; - 67C15C31484756B3E18B254CDBAEC6D9 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DB40011121B0F1C6A39BC69784C72DD /* def.h */; }; - 67C4FB4DDCAD3A61FAAAFC309E0B7E2D /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = F680A8909E35847D60E83EC28C0AAC77 /* jwt_verifier.h */; }; - 67D2C989AF85B5F74254F22845814FC8 /* grpc_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 61B54FA6ADCE920BE0ABBDF87B9B4F5C /* 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"; }; }; - 67E48491F40DE444EAEB99EF7EE7C594 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E41D4B5CEA53B9599AEAEF856A2193A /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 67F72A5E5E572C98BEB4DEF80AAF1055 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 19DD9438E0B2C19378670964B332C600 /* rbac.upbdefs.h */; }; - 67FA83D3AD43BC5BB149BECDF4CFC1E3 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 4BA56DEEB00B9AC6D043C190A8347AA8 /* fake_security_connector.h */; }; - 67FD7C744D94C4FBADF2C8D05502DC28 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DA0628D3DC2B1B1EC1E2B622F1B0B97 /* HeartbeatsPayload.swift */; }; - 6806F9ED15C194C44FDEA694C36EFDE9 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DFAD14B32EA7BF53E160C42E43D50DE2 /* ads.upb.h */; }; - 6808A85C5B6FE2A9539F901EAD5F634D /* xds_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DF09409695F4FDF672633C9D5849BFE /* 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"; }; }; - 680DD904AB5E23B0F51263A737C25CD1 /* randen_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 40DFE258C35DC934C0E722347EE71772 /* randen_detect.h */; }; - 681F97A3593FFC0B1874D439B7DEDE0E /* city.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BEE479A9ED41540EF83A6C10E34FBA50 /* city.h */; }; - 68329EC1F31A63749070B5307C206463 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BFF848B98DE459D79C6FEB43146143 /* promise_like.h */; }; - 68348F165A22CF08F915D8158F9524D0 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FF46A9A7423D03217525584FB0EB958F /* http_connection_manager.upbdefs.h */; }; - 6837311B86FB6A99E41D9D0C3793992D /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 796E3F4399D74C1F67462E63B58D3AF2 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 6839E2BA2B243DA12A49AA0A495D15AB /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BB7FFE964FE1203DCCFBE549276EE0 /* channel_init.h */; }; - 68415C911E443DE981DD19E80CE81542 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F7B2DB581CD295CBB5CEA8D69212C8 /* sync_generic.h */; }; - 6842F0BEAF5A99A3B50FC6BC9B2C3362 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 72350D6A51CDE93C4DF9CA2C4CDB176C /* GULNetwork.m */; }; - 68455E1F2CD95B3C90B6EDAA9BA5D7FA /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = E96E38C373753DA20564A46C665249EF /* struct.upb.h */; }; - 6859006F7551378AE5014588CF897F75 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A6D28A600B0ABBA17A5C9202636BB73B /* custom_tag.upbdefs.h */; }; - 68613B77AFDB10389B4049721F433B41 /* key_field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4EA4FE0EB23C0EC7AC83EA50EBFE7212 /* key_field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 686D02C284800BE5616191C38BBE2053 /* fips.c in Sources */ = {isa = PBXBuildFile; fileRef = 8AAD56369A9309A51A1E810C19CBFC3A /* fips.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6870C477B30C6E016AABDD9A8CEFD3A6 /* pod_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 531F41E910FA8C57321514F25F119A01 /* pod_array.h */; }; - 687457D54710962B303D488AB127DC91 /* flow_control.cc in Sources */ = {isa = PBXBuildFile; fileRef = F6578E4C29BCEDCB97CA7D2598188115 /* 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"; }; }; - 68860D1E4239BF8A0D12846B5F44538F /* darwin-proctitle.c in Sources */ = {isa = PBXBuildFile; fileRef = 6CCB348D7553450087F289308D1EDED0 /* darwin-proctitle.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 6886525C490C009BD0F489D6E08EC588 /* tls13_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3FBE8F2B818881C05811BD975B4C16B /* tls13_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 688917FBA0799F8CE0AD2F4ABBF83BF2 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCBF557B450C28C62115DA5A09D5BA5 /* config_dump.upb.h */; }; - 689D1E4CD1E977A38C5897CB711A14E6 /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 576983C2474543614C202AE55F53F737 /* alts_tsi_handshaker.h */; }; - 68A0460DF16E47FD6FA557B80FF2D545 /* hpack_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5ACDC0CFC469F0C6CF83000833DD0625 /* 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"; }; }; - 68A6527B413D4AE175F28FBECB2E5357 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 2167347ADE2E4333838FEEC3311BA218 /* time_zone_info.h */; }; - 68AF1D655F45B2BA3C07D9B07EAA4D47 /* curve25519.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 50B468FC41F6FACFB7107DD6DDB1A625 /* curve25519.h */; }; - 68BEC44CE4466376403E3A398579150C /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 68090B8120A1CE8ECA411D4A0029B6DC /* semantic_version.upb.h */; }; - 68C342EF3DA53AFF8BD1F28406E5B9B3 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD8D9D7DC02DD36502C40878046E492 /* bitset.h */; }; - 68D0D10720E8536A10ABE93CD4A4CFC0 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 91C05435E731F294186DBDF9A1C86D2B /* socket_mutator.h */; }; - 68DBE33915888768831249B41AE55CEE /* def.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C25D6A2BE37006EE65C81CC8D71A26A /* def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68F23DF802766B688B55E9EE4DEF13C0 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 34961D4577F6699640DCBE1FE90D3889 /* orphanable.h */; }; - 68F9F53580F2C8E06EB3026816E0AABB /* stack.c in Sources */ = {isa = PBXBuildFile; fileRef = 721F9D482BA10B75BDB5049CB8A83D57 /* stack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 68FC54467EB8C017235BBBCB0998B86C /* completion_queue_tag.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 740F77311CF0732E5C9A39BD5781AECF /* completion_queue_tag.h */; }; - 6920BFEC683B43F7BC5C8E918CE5F20C /* randen.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA6D061555D83FF6B468E3F4FEA90C1 /* randen.h */; }; - 692752C142CDC0D3EA794E978A7C55D7 /* rsaz_exp.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = AEAB44A52ACC36D38CC3CF28AF0B2E5E /* rsaz_exp.h */; }; - 69312140D87F6C939CC6E6F567F6E983 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F320CAD1AAAB5139D3D07236FD50A61D /* scoped_route.upbdefs.h */; }; - 69395100B12F00A4A7E661EC14752654 /* internal.h in Copy ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 6E4A108B2F782A780221F6949D9A1757 /* internal.h */; }; - 693ACB20A78C93DBABB7D4DDC63223A0 /* checked.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7846833EB999FD2711E68ADA15782793 /* 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"; }; }; - 694024A263D4ABB93782C46EAC9D4DE2 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 0880E5E502915CE446F292A316BD0F99 /* tcp_windows.h */; }; - 69429AE5C42708505D1977EB3025B891 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 2AAAC20468B4EA1FF4A649B57A5A3FA8 /* ssl_utils.h */; }; - 695148D2A7494C027C31EC010F384E8C /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E93FFB691C4C2349B8A0794CA0D9F4C /* FIRAuthProtoStartMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 695164CB44F9561742498E2963C3EB0F /* base.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D1AE94F64AB48AA3BA2E6A823B375E5D /* base.h */; }; - 695EF407C635168E51F64129BAC757AE /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A803D5151E2BAE1312FCFA725C61FD /* csds.upb.h */; }; - 695F3D44915615AE67AF8E062B6AA9A8 /* slice_refcount.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49622E3E5F58C83A87A039F6458A2A02 /* 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"; }; }; - 6962DBB31DAB366F682F73A8ECDFB8F7 /* thd_id.h in Headers */ = {isa = PBXBuildFile; fileRef = 139DD96B689C090DA3A1D2413E0C3867 /* thd_id.h */; }; - 6973583BA3ED5EA6BA6C6152459C83D6 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 771EBCC52883059ACE8C0E47ABF3BBE0 /* resolver.upb.h */; }; - 69738FE20D6CA788FD2B26A2557DB4F7 /* x509spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 0AB212895931C1B830B838DED31B7217 /* x509spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 697591AD6189C6CB683AB7C66966C774 /* upb_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = EABF70D8A882EE12AF939E7386C8B8C7 /* upb_internal.h */; }; - 697796B2D16A1B28426C06F5F09F1DD2 /* cpu-aarch64-fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = C24BB8BBC14D491017C07EAB5AF616A0 /* cpu-aarch64-fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6983905BE2976B7535DE7BFAABD62C50 /* tls13_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23D7E87599070B56E740C1C2545B0E72 /* tls13_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 69856489677D29243240309BD823E44A /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7A22249F18452FC677E82BFA9F8256 /* validate.upb.h */; }; - 6989859E32D2719B6102D6F74C817389 /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 76080F0588F5B9893CAFD758CD88D968 /* channel_stack.h */; }; - 6999E0863B65A1CCB669AB28B0453139 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 68718C4CB3EF9D93888DAA3784EFFBBE /* table_internal.h */; }; - 69A68B6BEEB626662BA4655B0BC39853 /* subchannel_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = A0372D9E5AC53789D06A86098177EEED /* subchannel_interface.h */; }; - 69A76D694673E3DF4EF841E3E4BC5AAC /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2CCC76EC22DFFA7A0E43DF3A79F512 /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69B208F56C09021CE1DF4767E4087876 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B1BACB56D2CD9F872B1C6755A7E0496 /* 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"; }; }; - 69CFBBDA531609DA5F7799012DBED110 /* stacktrace_aarch64-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 42090D55DF53D66BCF53836855CA9799 /* stacktrace_aarch64-inl.inc */; }; - 69DB5E5A9417C694D8889098EB131E6F /* server_callback_handlers.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 212E4E04C972A790054A66B6563CD0FF /* server_callback_handlers.h */; }; - 69EAC9F9ED47845F9D6CB0AD24BCC96C /* channel_arguments.h in Headers */ = {isa = PBXBuildFile; fileRef = C071FFFE6BFD5876239513081F41DEA3 /* channel_arguments.h */; }; - 69F0A88143074917AFCDD215075B1B08 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 806F8CF669D69EB3EEC00B4605AF3231 /* resolve_address_impl.h */; }; - 69FE649816625DB4150F913CEDD01F92 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 34961D4577F6699640DCBE1FE90D3889 /* orphanable.h */; }; - 6A3523871743B9C2226E7347A4DA2491 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8E3A4D669EB97BC1F5525004F1B0F5 /* cpu.h */; }; - 6A3DFA0817F23968E2E849951EAABAC1 /* re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A1A0D08D2628871FED2065BA20D2836 /* re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A45FFDF2582729A75CA800241BFEC22 /* sparse_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ABD10E2B1E588523AD9FBD3940CE282 /* sparse_array.h */; }; - 6A5F6DC35A7C75046327E176588F852E /* grpc_ares_wrapper_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C9E7768547EF72E76EED5720442DFBD /* 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"; }; }; - 6A6D7292647CC9FFCE64F27A2D3BFCBC /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CABC20E5064D11C863B55866F6D74AD3 /* timestamp.upb.h */; }; - 6A7CC8FDBD5C2ECFEFB4592E16374E5F /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA0185F83ACA006EC727DBDF59D27AD /* proxy_protocol.upbdefs.h */; }; - 6A8AE5B7F386D99D0FA8DABB2023B0E1 /* switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B108932F308EF62DB064CBBAA1EEAD7 /* switch.h */; }; - 6A907E4E2F8F7A5863CF57E2B4307E57 /* cord_rep_ring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0844B64D32D2C69136CAA33112FE2A5C /* cord_rep_ring.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6A92144795AA4C5DC4AEFD335C15A900 /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = E237E1ACC8358970594371C3DACBE19D /* sockaddr_windows.h */; }; - 6A96CBA4941078CE2AFFDCF676177BC4 /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 43862307DEC25588167313C147983B33 /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6A993DEB03037E59F0CE9B12DAA51B1B /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5F3366FEB3E1119249D08C76C36FF0 /* backup_poller.h */; }; - 6A9B9C634CD4D094687CCB664493B1F7 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2119AC896E16E18FF0B4C0F4DD01D5C7 /* iomgr.h */; }; - 6AA4D5981F795FED683754119FC04F67 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E4A691EE109ED2C12573E958F94A57 /* alts_frame_protector.h */; }; - 6AAE595E300FC0A365870E8489636333 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB0A3E584BEF0F85A6C342E357C3BD2 /* channelz_registry.h */; }; - 6AB5A57CA302470E45C47F6AD2E11BFC /* cord_rep_btree_navigator.h in Headers */ = {isa = PBXBuildFile; fileRef = E15D9432149ABFD448857B24887A93DF /* cord_rep_btree_navigator.h */; }; - 6AC466B0C23C72AAAE96675B911709D9 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FE50E931BADD624421DE40023EEA781E /* router.upbdefs.h */; }; - 6ACB909A3D21BAB8DFE5DA3F12F828BA /* work_serializer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2A90AF16F929756ABD2D82DA0C0D638C /* work_serializer.h */; }; - 6ACC95BB715951A14D00161AA46E1B8D /* resource.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2964F8AF13523FA15B09EDE310B8B483 /* resource.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6ACFBADD55BAAABC453E077598241938 /* v3_pcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 572CC7E63EBE5612809F5A345639FF5C /* v3_pcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6AE82FD976705ECF95B5304E6FC4341F /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5993E01767ACEE9738FF31F4AA2AA1 /* connector.h */; }; - 6AE9A34CDEE29F242D9FCA7076952E26 /* curve25519_64.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A48F0FC2B5B383E5549A55EC186092 /* curve25519_64.h */; }; - 6AE9DF22A5ABA1803E74B8F985C57171 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 657F6655E90FCDCADE0FAB5DCEBA9EB2 /* parser.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6B108F2BF46D1E261678C7343F6A56B0 /* stacktrace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EC7C9CDF520CEEBB66F272EEF7CB07E /* stacktrace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6B2C0FA3B6C581E5BBC10EF615B1046A /* resolve_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D15C235D1CCACB2377AC3B9C0DDE55C /* 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"; }; }; - 6B3A52F725D061261DC2947D0FEF366E /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E8514D03C47A03032FFE5FCAFCAFF2 /* time.h */; }; - 6B43F93F5C79E7DE905D586F2F225FB9 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F5F8034D114007F023291DE206802F /* hpack_constants.h */; }; - 6B5100506C00FF02CF9CB45A29746C7D /* cpu_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9AF1C503AD3D4A904AA918CF09D40A9F /* cpu_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6B619C2EB770A407EAF9DB1A7161F4AC /* route_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C90F6CF45AD2EEE90F41347E67511EF8 /* 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"; }; }; - 6B66D8B85FA57F9F42F8E1FBEE7826EC /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB064FE18187EB3C731BEF2215C2048 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B6C87BBEDD4251D79BEBBD17212B8D7 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 817A25A1858B0BC5B123C4EA1B50F85F /* protocol.upbdefs.h */; }; - 6B719246BC14E53A6BAC71B7FCFAA853 /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 44F3C9AB9BAB9E5902D368EA28EC9D91 /* status.upb.h */; }; - 6B7E5C60CD00122E224B6A719F2D5FCF /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 620416995AE0343ECE6E6346F774F1FE /* channel_stack_type.h */; }; - 6B7F9EDE4D82168029DC22D8DBDF09B8 /* f_string.c in Sources */ = {isa = PBXBuildFile; fileRef = B5D0D14AC60503E73AB89888CFDF995E /* f_string.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6B88BFFE9B2868DC60EE28D1CC5FD2D3 /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 083EF7D483AD0F08BCFBDC447AC45C24 /* global_config_custom.h */; }; - 6B8DF61179093B58A1D52C79B855162A /* check_gcp_environment_no_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6218BEC49AB8CF32D9AF9EF618C404B5 /* 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"; }; }; - 6B971F3346B15A0C23DFD6F4D59DD6A8 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 572E01E608361DD0DF7B1AB2C7BE8447 /* pid_controller.h */; }; - 6BA091A1C47C7DA7185378A63C86D73C /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D31088DAB37DE2293502AB4C2C235526 /* cluster.upbdefs.h */; }; - 6BA10C4BC5DFBCD812E0CB560F945F3E /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = A36629E6950ED349411C0194B70BEB88 /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6BA273AA367485EE9B55F7CB49BAD9AA /* tls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4207773A082DFEE41152DF199C6E7BE0 /* tls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6BA28C3BA0605CFBD63E6C9E2C19BA8F /* str_format.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 590AE90506EFCE06B4EDCD9CD77DED30 /* str_format.h */; }; - 6BA35414E7C0C2CC56CDF4F271F5DC27 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C6ED1D2DD590E86D9F22C0BAD48C6BB6 /* socket_mutator.h */; }; - 6BB75986074BE76CEAA2D04AF94D42BA /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 7583D15669BBCABA12533DDAEA5A9EB8 /* mpscq.h */; }; - 6BC195A691D22CA76A348A96F1BEDFBB /* handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = D55B6488075C9D963E44ACCC5D36E521 /* handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6BC55263B1EC567D14B5E7FC10C3E885 /* thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 519CFAE5E80E0858F22B1207F772371D /* thread.h */; }; - 6BD85583B558FEC72448BEF1E2B65D46 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C510F2DEFE792F7E0D8D71249619EB3 /* config_source.upbdefs.h */; }; - 6BE20A244B4CB8769B1E572332F82945 /* randen_traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 572C085368F67605A3C1B0315F611E38 /* randen_traits.h */; }; - 6BE5523E0157CE1AA433595D7BAC95C1 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 41D97CEA6CF023D662FDCA100E717093 /* tcp_server_utils_posix.h */; }; - 6BED144FB0D32228CF628FDF70D1D017 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C071269F35009281C67BF56ED000E7 /* proxy_mapper_registry.h */; }; - 6BF411EB6307ADE76B38FBFF616E3037 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = B128A2D8AE332941F77E6F017A320001 /* grpc_tls_credentials_options.h */; }; - 6C031877F0672BBA917BCE395C358F61 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 6C032B834B57627861CC3F61FBC87844 /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5AA069650C7EAC552FD5DD0AB2CADC6A /* 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"; }; }; - 6C04BDD0277328C6E142BDD65A72EB1C /* xds_channel_creds.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = DD70D9CD6B0432AEB93E02E1FB8489E2 /* xds_channel_creds.h */; }; - 6C1AE618484A6A0FEEDA7EBD49E06A23 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = FC5B3005DDD30B2745CCB8DD7D6C5A10 /* channel.h */; }; - 6C2B0D852AAF8641F254CEDD05A80970 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = C44C4FD3A6FA9FCC87B572A73B7BCF58 /* message_allocator.h */; }; - 6C31F4D688651AC81FAD7BFEDE48724F /* unscaledcycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3180921B80BB71E5BD48E14F2730DC53 /* unscaledcycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6C34CC768BF3412046F683DFDCA49E0F /* backoff.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A9AEFBCC5FE630F7B74682D889D19331 /* backoff.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6C4E539205A25EE932074C75C3F3207D /* executor_std.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46EC2848BF69F0FCD2CF694ECED54685 /* executor_std.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6C5DE6AD5E25D86052524B37FDD6A654 /* randen_hwaes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 006370D3AB38F7A18323959A5B124EBC /* randen_hwaes.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6C5F93CC3D357611BEE1B2F5F501E9D0 /* seed_sequences.h in Headers */ = {isa = PBXBuildFile; fileRef = B866F5896D32013665BD2C89504836AB /* seed_sequences.h */; }; - 6C6C8259D5D2D9CA6CD1763C38EFD9A7 /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9A7F3BB78291C139F060A61186E21170 /* socket_option.upb.h */; }; - 6C70A456E327799B4D3D745889D694C0 /* fips_shared_support.c in Sources */ = {isa = PBXBuildFile; fileRef = FE5646D09597315455D96DEB01EBF2AA /* fips_shared_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6C98617F7E47AC442F6EC61583D3B2C0 /* sys_epoll_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F8F6DB7AC44C59BF6198BA77DA9ABE /* sys_epoll_wrapper.h */; }; - 6C9A002E914D2829711822F69C52957F /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F3A4B256D7B81123C933D00EEB5FA81F /* tcp_client_posix.h */; }; - 6CB34C661DE31A711954E56FC33E046B /* resolver.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 424A4650FD0F4CDB844B98D3AF750136 /* resolver.h */; }; - 6CC4EAE9D6EF651EB7E41AC97C0DB7E7 /* tls.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = F8259370A64043B3DCAA9E5824148E1F /* tls.h */; }; - 6CED1519B897A098A12CBEE5F9536A9B /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3998BB66C64F6FB6F2C28162B2E8AF50 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6CF4ABC0DB4E5AFA5710F89A2030ADCC /* siphash.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E64C988A06069008CBE7404176446EC /* siphash.h */; }; - 6D0899ABA05FBF1BBBC8AC0836184B39 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B104BE6B4F17949616FD4316E82ED18 /* client_load_reporting_filter.h */; }; - 6D139E3BE248CF9BCFE3A4ABFA700912 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C80B9D1D22E6DFB41051C9CA6E49F7 /* router.upb.h */; }; - 6D1C4647B7435D231F6AE2D04D6E5D11 /* dl.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F7C12CE21BB724195A589B8F46ABD86 /* dl.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 6D38B3BEB90C46D1855514377BCAC89C /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 540F2B2E80B217D044C50B4B3024578E /* client_channel.h */; }; - 6D54269D6A0977B8303D7D6BA4F61862 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 02B2BB94E5E99839ADAD523E880D5433 /* value.upb.h */; }; - 6D58004FBF61D1134912D6AE53E19304 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = B189D9B7452AE798D3FC3017FDE61DF9 /* lb_policy_registry.h */; }; - 6D5C3BFD0734FE96A63D8E201E21FF7C /* secure_credentials.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 47BE6CABFBD6DD2F81016393589470C4 /* secure_credentials.h */; }; - 6D5F62E13F45E01421C2D8191A9FB3DE /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BB18A312AA070D83984098067EF81C /* stats_data.h */; }; - 6D6223F352647C4A4EB5002EB64622BF /* server_initializer.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 32585DA0E531CAE90EFE97D49B826F56 /* server_initializer.h */; }; - 6D7623C1CD47E833074AACE557F5DE04 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 6D8A5F8BA1F66F49FE5A01E33A60F736 /* config.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = CD8FB3756F6658B26C1416C73BC4E6DA /* config.h */; }; - 6D99AD5ED201DE863308BE6BE837897D /* health_check_service_interface.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2C57EEA26AD6BBA77AE13C7A4D4FFFC3 /* health_check_service_interface.h */; }; - 6D9C8C792BC2FAF3A03CCE3A473662DF /* sync_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A9FC5BC956B95C077D810572ADB1096 /* sync_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6D9FD4A25F7DC8886E1BB427669392FD /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 55932A25182FDD770F09E6659F107218 /* memory_quota.h */; }; - 6DB4436E3AD5126F576F6F597DDA56B8 /* statusor.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 8DBB0F936EAD9C1CE62BBCE41D4C38A7 /* statusor.h */; }; - 6DBEA72946087E137005A0AF3FC4CACE /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C6109CFE5F5C0D455544CAC1F2CE1120 /* discovery.upbdefs.h */; }; - 6DD19819EC434E21985C0F6E1204717B /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 62097D92B72E809967C8D0989A77FCDC /* debug_location.h */; }; - 6DE2B091B8D2DBAE4A200F39625ABA13 /* strutil.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 98A4B3AEBC039061423903FF3DF79250 /* strutil.h */; }; - 6E0E4DA3C0DCD79C709833E234963392 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F725D38876C56067106AFBAFA14666 /* descriptor.upbdefs.h */; }; - 6E131B5778616DFA8E4A520AEE304B82 /* upb.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = BBA022C989B90B74C20524FC656EA6FC /* upb.h */; }; - 6E2739F14C5AF8098D518F95F4400307 /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A360C4E0E8DFA7C76B2BF59DB3D65E4 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E374E3E4B40056961638BF09A4EFFA1 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C3EDEC56FAC05820A497B6E4829A4A1 /* retry_filter.h */; }; - 6E46189289F3D08D50BB8D01EA753210 /* cpu-aarch64-win.c in Sources */ = {isa = PBXBuildFile; fileRef = BCED264BBCFE204D2BD0C8D3B6BE4EE5 /* cpu-aarch64-win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6E47DBF37555BDCF994F0A1185CBC485 /* sdk_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BC52BDCE224833A93A71638D8819FD /* sdk_server_authz_filter.h */; }; - 6E4B12620B10BCD184692EBCA688AE0A /* load_bundle_task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9177571BE7454B91753C83EB97D2EE57 /* load_bundle_task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6E4E35577ED4C957CE0D9AC6C4106F67 /* address_is_readable.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4B0F1D207BEC3C04E7AA502B953EE645 /* address_is_readable.h */; }; - 6E57D407A74E5B751CF975E59E45B1AC /* message_compress.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3991A41E8862EA047524A7B5353D4C08 /* 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"; }; }; - 6E61B3E83B7AC2B8096B76BAB6698349 /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 2D4CA1D2355D777A33E37CB19E837A67 /* time_zone_if.h */; }; - 6E6295098E24107E26695985AFB19457 /* grpc_alts_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6E68F38EF3C14DCBF89FEE9BCA464476 /* 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"; }; }; - 6E647736C8143398DA7001C91914BD3C /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 474616FBF04AF1BCBEB7714A4421854A /* gsec.h */; }; - 6E64E7CC0903DCF702CD77BD20947703 /* cordz_update_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C1009E1760E792A6FCB70388FF52E70 /* cordz_update_tracker.h */; }; - 6E715BD2BFA458790B780633BBBB3B3C /* config_dump.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 30C3B201B17396A9C773F2DF111BC999 /* config_dump.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6E91060A004C9204D0EB706477E69A72 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 476C6CBD7983889EEADE7A40DBF578A9 /* grpclb_balancer_addresses.h */; }; - 6EA172B84A5ECA5F7465CDE847E6914C /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5F932B48A2E2D0D659F06F52FB0ED281 /* route_components.upbdefs.h */; }; - 6EA7E3BF095FF1ABC0FB4647A3CFF860 /* p256.c in Sources */ = {isa = PBXBuildFile; fileRef = 993D19EAC26F3C8A5D486CBD92C5192D /* p256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6EAAD62D2628C8307DB4E128624B8B56 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C9B66061FF666FD862D90913825CED03 /* bin_decoder.h */; }; - 6EB3D0E0569E670D82FF18E92BC9DA7E /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 230853402A57B29BFE6552B7D2B51FCC /* slice.h */; }; - 6EC2FA176A33CD93418BBD49C3D69A98 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EB19368A1498215B0CA970BDF9707C /* internal.h */; }; - 6ECC3E3C88679C8CC96ECC176187B965 /* seed_gen_exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D0572F39352BC74B95DE020DB3036D /* seed_gen_exception.h */; }; - 6ECD52133E420A8DC63F9F4AC1ED163D /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 738E9262168C9608155C0F2377846039 /* load_report.upbdefs.h */; }; - 6ED3ADF4B25E7A9B8C155B19F583C954 /* grpclb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6FD82FCC4566255B10DBBD0362C8C0E6 /* grpclb.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6EE33D067A5FA7CD339137BA4CA88D88 /* strutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2FA57F253AE2D3A72E3A68B54CD2933 /* strutil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6F065652CCBCE03A97F8B9F88AA9FD0D /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 26B8B4EBA6ACD25E2AB454FBDBDAC6BC /* resource_locator.upbdefs.h */; }; - 6F083758156B63680252F177E639FC49 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6992F760957F3C24EA06E6662CBE66D8 /* frame_goaway.h */; }; - 6F2FCBD6AADE7A07E308BA0F08B1F459 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FA920E1981646315519E7CA578F46E94 /* http_connection_manager.upb.h */; }; - 6F335BD6C3D9F5111ABF5B03FA4AE1DF /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 925C014D54BB986A19735A906FE4E969 /* ssl_credentials.h */; }; - 6F47736A5873E0DD6CDB65CBF509E297 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6368CD1DD42541FEC7E30B7745F86C2C /* typed_struct.upb.h */; }; - 6F4A211E1D31384AFB08E75275AE6204 /* ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = B76D89A02E1DF3B51B10F9C24E717326 /* ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6F4ACF713352ECE2A9D5BFC25A5B3C49 /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = A9AB819DDB8EF30BC4642833C78C4FEA /* conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6F59A4E46700AC74304DC0C7B39DBD50 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DE31F621CAD4A75C21F0F9B1769442D7 /* internal_errqueue.h */; }; - 6F5D141CFB37C2091D45649F96C6FAA2 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B8A21B052C956C294EDFBECB5232750 /* tls.upbdefs.h */; }; - 6F80E32790E835A112EDA3FF1628268E /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 485A32429AF2B8C89A550B4AAE685E71 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6F8ED9DF6F8FF8E1BC930D7FE37C50C1 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A939795E3519A5887007458869F871E /* channel_args_preconditioning.h */; }; - 6F9493476FF6952F54B50979C0111555 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D0712B9A9B768261FC354452CE49365 /* init.h */; }; - 6F96BF5B71A93C366124E1883ED568BB /* tasn_typ.c in Sources */ = {isa = PBXBuildFile; fileRef = 372B2854CA1112609CD54E7C2AB696D9 /* tasn_typ.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6FB205F4054D90F00E0A78ED24B4067D /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C0FD7E8CDCE2D3AC3E45F2022FB15C89 /* circuit_breaker.upb.h */; }; - 6FC111F07C8DC76BCC95E1B8EFA90B8C /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B1F4ADC2A1AE05945D9DD5887D8C3A /* GULNetworkURLSession.m */; }; - 6FC1CA684D951ADE5BA6EFE5EA98B154 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 6A7D939EC7DEFF245D25E3C17ABEF97B /* fake_resolver.h */; }; - 6FCA62302DB3D610A7AFEC9FB6941803 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D10555A6CCE00AD2AC9CA7250A7EA0 /* metadata.upb.h */; }; - 6FD777D9381E31A5C7368BC7E56705D0 /* err.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B2001F35E3D8A9F964D9463FE34364 /* err.h */; }; - 6FD98C0E5FF2760CAE16C620946889AB /* low_level_hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CFFF274942974D8426972695EE62AA5A /* low_level_hash.h */; }; - 6FE29D3BA40FBE26752F4E3CB7F8E4F8 /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = 29C34BBE3DDDE111AD578FC8259C3D89 /* NSURLSession+GULPromises.m */; }; - 6FE5B5238BE40202B95C5519A7078391 /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6AF997449AB6C9E406D9576E3CF119 /* no_destructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7003A99C9D1314C3837CAD220846931B /* hashtable_debug_hooks.h in Headers */ = {isa = PBXBuildFile; fileRef = C38798F9AF84AE7241A2F6AC2632E204 /* hashtable_debug_hooks.h */; }; - 70090D6F00A46BB1EF68C1AF665346A8 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8FB6449FDFDFF8C9E2213EBB0AD778 /* alts_security_connector.h */; }; - 701BF7744BBE29ACE8A4D4EA78593C69 /* lds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D396619CDC2A3F891AE60AFDE0FD8F0D /* lds.upbdefs.h */; }; - 70327838A302F16E8936FD0F37478B66 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B4DC05570B01D1BCE88CEB55DCAEA10D /* syntax.upb.h */; }; - 7042631D9FC892C4180359B73FBE1140 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C7269CBBBB056E18A8989C8BA49561DC /* call_combiner.h */; }; - 705A3C619465C6402FD947DFEDD53238 /* FIRMultiFactorResolver+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 402AA420871B41EA30B847C4067C9005 /* FIRMultiFactorResolver+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7062198E71DDC23B5107DB6266A47DA4 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 716DE36C7E2FF2578E9DBCE01E4F825F /* resource_name.upbdefs.h */; }; - 70749FC1B99F78EA4E8E2D6BA9DD14B2 /* conf.h in Headers */ = {isa = PBXBuildFile; fileRef = E52A76C25EF128EC971D9F68027D59FD /* conf.h */; }; - 70A7C106C7CB2C688C870C819D986C1B /* tcp_server_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4B67B7D07D09B82A59B5CCA57C16C6D /* tcp_server_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 70AF67CD2347EC54E99DB5D8C9C5F979 /* grpc_connection.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9E146F70D02B8CC0A7E50612484142F /* grpc_connection.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 70C798CAF5CFC1341ACBAAE3706FD281 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 70C8FB86F1B7EB5B8303FB8A990D31ED /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = 5D9363E6577190A2B9F0486708525D44 /* json_util.h */; }; - 70DAB3CA16CEF4D9E1F809D298C936A5 /* jni_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E13DD99206CFC900786253FACA018A /* jni_utils.h */; }; - 70DEA2D440220942E4D1851C056D0341 /* maybe_document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D8668150FFE78F4E1915CD4AE4BA246 /* maybe_document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 70F50F7E2F9561A8752108793C9EBF5B /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = F65CF751FDCEDBDBA60DD9E94F92D1BF /* tmpfile.h */; }; - 70F7D0017F243A3F2FA83FE28C55E2DB /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF0E9618951890E5D02ADFF1F7E3577D /* secret.upb.h */; }; - 70F9A2AD115AA5D34859543A19C751AC /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FE49622F05665B444EB1EF40E26AB9 /* any.upbdefs.h */; }; - 70F9DAA331B2412278740F1D25BBDF17 /* hashtablez_sampler_force_weak_definition.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0AA05314B8E7F9D079E203C6A26FCAF /* hashtablez_sampler_force_weak_definition.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 70FC673C722349F4E9E0D3D0FBDA1A48 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ADB178BF359DB0F4B6B9B290983B7E82 /* base.upbdefs.h */; }; - 7105A947613ACEBF217851752CC1F722 /* civil_time_detail.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6AE7A334E057ACCE60193479DD98EE /* civil_time_detail.h */; }; - 710D107DBF011E7F84016ADA2200E3A3 /* stub_options.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = EF975D81A087BA3F429817DFB625AB49 /* stub_options.h */; }; - 710EF480627A46F43FE19A2515C96B73 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4051854AD41ABC7EB6239401ABA9230A /* avl.h */; }; - 712C496E4A535E572514219DD96BD960 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 736A67595CF6FB95B409D4FC91B5E30B /* GDTCORUploadCoordinator.m */; }; - 712D89B60741C8A6730A0C98D1FBD02A /* t_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = DF4B715D2D3CD1E93A5E116190319997 /* t_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7130B993E2C95DF73D73623F53E095A7 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C37AB794E353DD50C86E9F36B53870B /* deprecation.upb.h */; }; - 713F7FA33E1D76059BB951FAE4B59F42 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CE893101F2901BF8553CA56AC9EAB06 /* server.h */; }; - 71427D7191BA6CD34BA16FE059332467 /* FIRAuthBackend+MultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = C367CD8F105C4739554637A876574A44 /* FIRAuthBackend+MultiFactor.m */; }; - 7155B87F7BD2A3EEF6BE4D693539785F /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C13AED8D03B4ACC81C7729DFB9C812A /* buffer.h */; }; - 7156C3DB2EC540B5B8957BC3B650EFB6 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 36EB534BE9F9A3E573FCF52106032E45 /* pollset.h */; }; - 716812314D795C8637BD998113B694B9 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 251BE7664DFB6CFCDED2BEDC9448B275 /* alts_zero_copy_grpc_protector.h */; }; - 718CB6D2473D2B48F450E8BA9BD684D0 /* cord_rep_flat.h in Headers */ = {isa = PBXBuildFile; fileRef = 6745690495A83AF162F72A6DBE1940D4 /* cord_rep_flat.h */; }; - 718F4F5FC921408C302E43F7CF568325 /* path_transformation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 704829E59C868FF2AE2FA253816AE828 /* 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"; }; }; - 71984AA35294067538FD2A96442E5356 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DEF4D15E45040D73F213FCB8E3E80D1 /* GULLogger.m */; }; - 719C23184846479DA5692CDAFB1B4EFF /* endpoint_config.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = AA0DD1FAB8621882656D150DFE901068 /* endpoint_config.h */; }; - 719C576642849DD3609704AC5F2EA4A5 /* int128_no_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 00B97DC0B4F0A9A2781B471DD61B80C6 /* int128_no_intrinsic.inc */; }; - 71A31B15D17A110607B1A39685D0AE80 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = D52B171A495DB04AFFCAFB7A28E8570D /* ssl_transport_security.h */; }; - 71ABA9C475D7BA9FB4CFB6058E02CB08 /* view_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 241985D60215FEF6DE94B3F95DE0AFEE /* view_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 71AE57D1BCD858C6541D3C0C10185FE4 /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 3D0712B9A9B768261FC354452CE49365 /* init.h */; }; - 71AFDB6A8007CC80D2A423FF8FDDB0A5 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2048D275758EBDF2820CBC23D261F4 /* FIRFinalizeMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71C234D131537E89211D3DF7D253D33B /* utf8.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB502533DB2A8389BBCAC2AE2C212BBB /* utf8.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 71C5797863785D8C1E9E0D4D2CB0DD23 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6473C00A114F36597B1C0E29FD0D37 /* internal.h */; }; - 71C917EE9E9937744D00CA87558899A4 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CB25817ED74FEAB86AD0696FCF1FF893 /* grpc_service.upbdefs.h */; }; - 71D44D53D46728899036D03524A3624E /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FD653AF6EE2E8E0101B0B496730D20 /* timer_generic.h */; }; - 71D585D62EF810D780FB2AB05945AB84 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C2456C9738A89EFA5B8A071C2B2732C6 /* polling_entity.h */; }; - 71FEF0FE414DE7EC461ECEE07EE3DDDE /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 306E4A2A6123F1EE9F9EE17D5D64081C /* resource_name.upb.h */; }; - 72003D148CBCA6CB0B9E25C6527336D1 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 42198CDFAADDC4FBEAE9CD731EBD7B86 /* listener.upb.h */; }; - 7209AF974221013EC30D52659D11AFBE /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9554181735D19BFA24015081EDB0CE4D /* cache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 721F021106D37CFD81840EADE4E95166 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 4011999713AC069C531D4FE0CBD5366D /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7232B5433A4130A4DF36AE982078E4A6 /* filter.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B88B1173F2207725E6C40B5C06013EF9 /* filter.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 726F23A0C0DE4CBA7219D88C78D68BA5 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 705F25D27A2748D63FEA1E2ABCE6C90F /* hpack_parser_table.h */; }; - 728261157794CCA78DDE5767748C0FB7 /* ssl_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5593CF7B0CAFD576AD24EE8A30CBBC6 /* 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"; }; }; - 72878874E6D89779E8CFFB27253F503E /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9C813306FE4637E3A1F3F671AE68B1 /* tls.upb.h */; }; - 72941D2522D826C1DF1028250094A8E9 /* grpcpp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DCBC1F3E107D759242A1C3955BC6AC49 /* grpcpp.h */; }; - 7295115F65F45463A9D9E7B0F1668115 /* tmpfile_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4AA8E7D424EF8D56A1B62571FE186717 /* tmpfile_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 72961E71F056CBD0BBB4B29086B383E0 /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 9FF43D78A918D7940A31B8373CDDB1CC /* prefilter_tree.h */; }; - 729ED6243EC6A6830D9BB6462DD0FCC5 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = E49801020AFE5E2E8E61195F0AF783EE /* call.h */; }; - 72A6FBB70BD7C6DE1651B08752131F8D /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 65042337FCD51B1287EB16CB9B696645 /* grpc_tls_certificate_provider.h */; }; - 72A773BBC9F82F2E9466254E088E0BD5 /* watch_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F0B1B0E7A1D412E162549929B57CB3A /* watch_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 72B335A33ECF37E005F0A4CC1E2BF6B9 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = D271BC81566FE43E6A30021BDF1FF2E3 /* client_channel_channelz.h */; }; - 72C0D6AE925FFDE9346A4B8468C68341 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 576983C2474543614C202AE55F53F737 /* alts_tsi_handshaker.h */; }; - 72C3CB2B7D245DD7486594163CDE9E9C /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B89BF58B0C0A2CFFCA992DEFDFED189 /* service_type.h */; }; - 72CC814BED0DAC89E4E380B4E05B1844 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FCC2155119C04BAC7B6DC58CE331B31C /* http.upbdefs.h */; }; - 72DD41597062BC43288CAA10FFEAB5EB /* altscontext.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 63C023C1EF54E20A4BAF35581645B0FD /* altscontext.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 72E3D0F900D4FEC2D51BDC955CB79142 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F85DB4CC446BCB5E866C9F9494CFB717 /* UIKit.framework */; }; - 72ED261F4398C9C989498017ECFF6DE5 /* transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = A637D97158BCCDA36190D250E7E0D300 /* 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"; }; }; - 72F35B80CC0C36BBAE6B1BE08D8A7B3F /* a_time.c in Sources */ = {isa = PBXBuildFile; fileRef = CC7E2A7F82347F1D0D3DCD64E95B64B8 /* a_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 72F48901F6C036ECF954093EB8554ADB /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B062227C71E1663D64363AAD4793DE57 /* fault.upbdefs.h */; }; - 730058CC14DCCCD386B2A33FB36A0F5B /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 38960C23A5CDEF5518BA2D029DD0B7B8 /* validate_metadata.h */; }; - 730DD8DA9C131C47B7E8855EDED3E550 /* pollset_set_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 09CA4E7C19F69D3FE6A6BF7440C67970 /* pollset_set_custom.h */; }; - 730E050A35900F01EDF035F1867F3C4A /* a_bool.c in Sources */ = {isa = PBXBuildFile; fileRef = C3878639BF87EEB27B1B1A16FD452E87 /* a_bool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 731131434786A0DFF1FF88ED7D6D1592 /* load_reporting.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB77A157E055FBB99BE17E6FB5EC206 /* load_reporting.h */; }; - 731778A354E55BA56C165DE782ED814A /* dh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E9FA2AAD6655170A9A03B73C111477A2 /* dh.h */; }; - 7318D5BD2529B18D5687D66A3C40FBE4 /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FB3F7C722862A72BA6197A56886703C4 /* xds_routing.h */; }; - 731E79941A8FD5CE2B44897868DD2B89 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = A814B69D1F85F802438ED668CFDBE5DF /* variant.h */; }; - 73241C99CA8EF311E501C0757818A681 /* pcy_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 12F4B140B7C4D81DC3382CF6BA78EA92 /* pcy_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7355DFAF39A094F7AA4DA60558F54540 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 76DD4EA6CACBF3D5EE51596430225743 /* dual_ref_counted.h */; }; - 736F4F4B2D6A8F2D7B407E0CF039DE1D /* health_check.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DB80BD156C6ED11C149487F60C7C1F1 /* health_check.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 73759AE31D880A5125DFDCCCAFEF04D1 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 27B0120BD8156120D5B01B0A9DED1493 /* validate.upbdefs.h */; }; - 737E57752664699B89527E9DA2520902 /* dtls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8B8BF6AC21340963544E8EDB827FF15F /* dtls1.h */; }; - 73834A23F7640B71229AC07A66D3222E /* array_contains_any_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 082DF87FA64B8555F0A22DA75AA9F2FB /* array_contains_any_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 739861009B79D9C18C0BB25C5A7139DE /* channel_argument_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 08D11470660AEEBB1A2B43742F4981AC /* channel_argument_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 73ADC786E4788A41CF579D68D3266878 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 83A178747E2BB665ED54072C495D013A /* hpack_encoder_table.h */; }; - 73B7DDEF83AA8825907D7763F616ADAD /* tcp_client_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 681BC9F8EB6118CCAA35162AFABE34A1 /* 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"; }; }; - 73D033875178E906ECE368DE07D0445C /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B6718A703B00EB14A073DCFB26491B3 /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 73D93A5DCC151F3BC43BF55959CB1976 /* tls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FD8F6EEE135322871F125D0C7D51B718 /* tls1.h */; }; - 73F29457928172183DBF7F2B268189B5 /* server_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E6E380CAF586F48321C4B88645489180 /* server_callback.h */; }; - 73F4EFAD79C1FBAA3E9FD1CD5327D8AF /* a_verify.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E2CC987BD0D69D5B588FA66E42CE33C /* a_verify.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 73FB7ED37D6C0E226D1E6B5DA4410720 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B32195B4FAA7B9B65B5287679EE3068F /* quic_config.upbdefs.h */; }; - 7403E644A2B30354AE1C962A5FE1B6A4 /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 882449BEAD5E24C274937CD60DC230DA /* HeartbeatController.swift */; }; - 740C6868F5E8AA7FD21AD5A5C71DDC02 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = 56693F7593922AF3CEBA0E29564AF012 /* mix.h */; }; - 74140407DDDCDAA0FDF48EED012A4D27 /* xds_server_config_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DFA71A50289FC31A750032EB1A1E902 /* 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"; }; }; - 741B3B22AA758C50FF63DD4717E54CAE /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 806D804C7A2051238803DFCA7E54FCFE /* base.upb.h */; }; - 742099E2C39F2D4C0CA9D08693A32DB7 /* core_codegen.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9A048F6F5A158C9E6ABC79AE89F2232E /* core_codegen.h */; }; - 742502D88D942F691FD22DE3118EA8E4 /* bytestring.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BCD67F62D3A37E89988A0DDC70EA3827 /* bytestring.h */; }; - 744576FD2139BF4049960DA0A5C97BE8 /* http_filters_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AAAB9DCCEA56127320FB14C51D3BE7F /* 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"; }; }; - 74467673EA499B03495E93E3880E6793 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E56F9C2783CB4AD0BCAC21122DB2F4D8 /* lrs.upbdefs.h */; }; - 744717B443BA06808DFCD9BC8EB8B5FD /* slice.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 08C312EBBA1FDC1A9251678212F6CDD3 /* slice.h */; }; - 7451FFA212D9D8F0AF585C8E44DF0599 /* stacktrace_x86-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 09E7A06DB41077318FAA5DD03E533C32 /* stacktrace_x86-inl.inc */; }; - 74540C0D2C414146D0044C35178AA5D9 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = C462C711E99A867BDC0A5126C46C710A /* call_tracer.h */; }; - 746232386C5868A5F40235DB3B8DF66E /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = F51C9F9C01AF60DEF26C5303CF8C3E26 /* call_tracer.h */; }; - 74723143C78328CD51003E8D1B3468A6 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 9DB47FE0D474930DF72A68D3B6F6E9EB /* channel_init.h */; }; - 7473A380BA9A6B9F4D3ABF10F52666CC /* FIRAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 35CDFD297A319020F3F9A2DE24F7A104 /* FIRAuthCredential.m */; }; - 747B651D6891195A48EB69905CD45846 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D53CE77152F94AA6B5FB8C17D891F6B /* grpclb.h */; }; - 7483C90B1EDA0D697C6C9FFE7F097111 /* a_gentm.c in Sources */ = {isa = PBXBuildFile; fileRef = 22C4EE5E8A8FDDBD29545F1E50629978 /* a_gentm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 748DB33DC92756BC6776707F43571FC7 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 71069D0E4B6D7BB8F75C58778D839907 /* parsed_metadata.h */; }; - 749356DAF78E68EF8CEF1A8BD2A50C9E /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DB6308303A943EF7C14532AAC3E0B29 /* thread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 749376F5059199BE3A7361728E3245C7 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = AFEE3918AC5C9AD34DCFD2ABAF7A3BB1 /* stats.h */; }; - 749C2AF9379151E4DF26F9B671BACA47 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CD215B139F99764ECFB4ABE97A34FCE1 /* internal.h */; }; - 74AF69099E60CB7E725BA8EAA28455F5 /* engine.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B06D6B84B14FF60295313EF657430D24 /* engine.h */; }; - 74CC5E1509D09FEE2BBD920DF83D0451 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F0FE9CBBE3D5C6C2E72EFC98F311B32 /* service_config_parser.h */; }; - 74D12DAD24EF50118594063A13897FD5 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CB66DD72E8C1A2D3A12051569026F198 /* 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"; }; }; - 74D7F8F664BCD47113ED7BB98A40BED2 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C31D0750EBFDE96E619288FCAE5CB988 /* collection_entry.upbdefs.h */; }; - 74D81EDFFF9D3FB16D67BA8320463CB7 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D28A600B0ABBA17A5C9202636BB73B /* custom_tag.upbdefs.h */; }; - 74D852B9C2EAD5FEFFF310D7AF006976 /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 1B104BE6B4F17949616FD4316E82ED18 /* client_load_reporting_filter.h */; }; - 74E4B99746BF9252918100562F21BD90 /* FIRGetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 423513AA1A70B126235C93E3323B6A1E /* FIRGetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74F19A3D79BA63E32C9CB6EF25EC9F74 /* poisson_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 065A175D13E9F5A503FB946D1E6E7577 /* poisson_distribution.h */; }; - 74FB2C5FA64092E4DE340B6C1CE1C0B0 /* blowfish.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 80AA230DB59574DCC959E3FF257A83DC /* blowfish.h */; }; - 75042CDE5F25493671136B6AA37E7CA4 /* ssl_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = E695C5A78EA0B2F78681E3C1E6415550 /* ssl_file.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 75250BA014EB51BC104432CEDEADD6E2 /* GDTCORDirectorySizeTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E4A86F5754EB2CF5721F8EE31369243 /* GDTCORDirectorySizeTracker.m */; }; - 75270434D4C8EEAFD524F607556A73B4 /* cpu-ppc64le.c in Sources */ = {isa = PBXBuildFile; fileRef = A358635C800C1314106163F2032B1D1C /* cpu-ppc64le.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 752C85BEA20FBAFD8DDA53346145072B /* transport_stream_receiver.h in Headers */ = {isa = PBXBuildFile; fileRef = D7810A76693B06E29CF3126FEF8A7D1A /* transport_stream_receiver.h */; }; - 752CBC047F3DC81D067767391F81EEB6 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 250A209FA4A1DACD384D3BB6584B2D67 /* fake_credentials.h */; }; - 753EF3A0FE14C2FEECF26F949E2033CC /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E56F9C2783CB4AD0BCAC21122DB2F4D8 /* lrs.upbdefs.h */; }; - 75498D86FA49548B9AB70B907872EB62 /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BB9D6AA420B85C89C745776993E58CF /* StorageFactory.swift */; }; - 754A3EED3FFE422CEC69A1B1CA0344EC /* eval.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 465B01AC4FBD4F077901D79CB83AEDBB /* eval.upbdefs.h */; }; - 7556D69C8D6C5434646E0FFD7D779F46 /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6D080175DA2DD01E385F9AE766F924 /* validate_metadata.h */; }; - 756229E761FB819B9213EBA87F7A8ACF /* leveldb_opener.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF36737EF3290BF92212CEB76D0F1111 /* leveldb_opener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 757B52325E7E217BC63883206CAC8E0D /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 768F949B40301D207E873B6E6E266E00 /* decode_fast.h */; }; - 757B527D20FCE22326AE7E381752B30C /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CF2C3151D883C28CD63E7386697F4B5D /* regex.upbdefs.h */; }; - 758C2A0AE6082DACD242516ABDD70605 /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 255697C72A715B47AB9A661A94CBA082 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 758CA14031BB743F0473BD9BC5CFD64B /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 85D2EC4A893F19F738E391FCF01CB18C /* security.upbdefs.h */; }; - 75A70EB01A9ADDB98C4BA4DE57217CFA /* server_secure_chttp2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 479EB203FBBEB87197336466B7CB6653 /* server_secure_chttp2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 75A87835A91A796440F3FDAFBCF23587 /* is_epollexclusive_available.h in Headers */ = {isa = PBXBuildFile; fileRef = 223CBC3027704C73021CD6046B599261 /* is_epollexclusive_available.h */; }; - 75AF2BE0FABEA23C6DF998865702BD96 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 320B54A3BA2F1AA334EA800DA62CF99B /* table.h */; }; - 75B773CD9AC494206BEB1AA1BB47B915 /* grpc_ares_wrapper_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6C5D6968181A44C5AE9A6F0811EAA82 /* grpc_ares_wrapper_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"; }; }; - 75DC870DEFEA79CC413C860D5D726060 /* a_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 13CB3D02B8DAA0AF8C9CD37D36DA7E73 /* a_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 75EFD0BDB3941B09B6484708C656A058 /* GDTCORStorageEventSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = FE88D7FE642F4D3126B18590216A958F /* GDTCORStorageEventSelector.m */; }; - 75FE84EE49C5EDE3B3E80606EBDBF563 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8720A2514F3AA488CA36988AB1BFF7A4 /* FIRFinalizeMFAEnrollmentRequest.m */; }; - 760589A4D91CADD2CB2949C617EF0117 /* FIRSetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 74FBE83E302340F1AF0E9527E57F9E36 /* FIRSetAccountInfoRequest.m */; }; - 7611472FC5BA1C877B8A64FA2D3FF014 /* lb_policy_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 4DB00C3343089AE1ACEDBEE4E901DD69 /* lb_policy_factory.h */; }; - 76126D10510261F355BA4727771032FE /* alts_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF9E51701BA237D68C21BB5A16E65A85 /* 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"; }; }; - 7621F1AFD9A2D53A97F5E6B2A8F27035 /* tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6BCBB3FC57E054A0EEBB19DE632159 /* tls_credentials_options.h */; }; - 7622AE114EEC0E229C516FC7CEB72D68 /* uniform_real_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = D672F3F3F312F2306B924BEC11F7DC20 /* uniform_real_distribution.h */; }; - 7623B5AA81199F40486FDBC731E181F0 /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = FA9C72197B6BC403850AEF928454F46B /* connected_channel.h */; }; - 7626F664FFA62394C14D579AD38E9F0F /* v3_ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = DC6E7037F102DEF924EC45B262BE86D8 /* v3_ocsp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 762A342C61666909ED7123C9BA1BF43E /* md4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1D4084D4193630FD21926688D6848A62 /* md4.h */; }; - 762D85AA23AC78C27C90C7D641750EF4 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 284DA824411F4BCFABD60A0C33573BFF /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 763AC2F09B2BDEFA2F51CF17A19C128D /* simple_mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A9428B14F787924821F5CF6A803F297 /* simple_mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 765A14994B9390B3E3ED382AF6FD3BD4 /* context_params.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B9CCB0C2169275C37E096261EFBF36C7 /* context_params.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 765A772FA8F5B9DCCF134E702C7F7835 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = C31858E4515A83E1F4971BB4EFB1ADA4 /* value.upbdefs.h */; }; - 765A86A90CAF0708640E191E3EAC681B /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A3C0ACE1DE0499AB65D2648A3D2764 /* string.h */; }; - 76662F8D6131DEB5A1D728FAECB504C0 /* resolve_address_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A84DAAB797057EEAC2BBECBD1D3A800 /* resolve_address_custom.h */; }; - 7667955E5F6F6C7DA3584B0C98702BB2 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A8399A14109D216FDED870DAF751F428 /* cert.upb.h */; }; - 7685A31A61347A7EEA6631EAB0003B8A /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D2C044AEDDEA9CBF48C3FA49A909AE /* status.upbdefs.h */; }; - 769828A3AD1127BBE74CEA465F36F0F3 /* pkcs8.h in Headers */ = {isa = PBXBuildFile; fileRef = A39F583D65D9ECFC003B2D66C2E7CC3B /* pkcs8.h */; }; - 76AC3CF63F23CFAA15FE7AC8EC9982ED /* ecdsa.h in Headers */ = {isa = PBXBuildFile; fileRef = B9577714B976A0958049FC26BED592CC /* ecdsa.h */; }; - 76B2742FA4EEE5E3227B838DDDD149F5 /* srds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8909F43A7103E527828F577EF6B571D5 /* srds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 76B4A6F2884F4910397895FB20C2E882 /* FIRGetOOBConfirmationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = CC0CBDAFB6698BA7CC2DAAC93ED2FFE6 /* FIRGetOOBConfirmationCodeResponse.m */; }; - 76B7A487B93A57D8EADDE8ED8EB4B9CA /* ev_epollex_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E2EBBE7064951DC0E72B9D6A5B1FEFD6 /* ev_epollex_linux.h */; }; - 76BD1166EDABF74D630F38B84BF0CB94 /* path.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9954561F37DDF67338EC19E63424575 /* path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 76D1C51C390847EC99E4291688E1F496 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B99AF27C2D6137A74F0735CA1DEE096 /* socket_utils.h */; }; - 76DBB268A375777277EEAC3C69B99B80 /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C2E8514D03C47A03032FFE5FCAFCAFF2 /* time.h */; }; - 76EFE1FC6BFFA7220AE3E8A18E1D6B09 /* socket_helper.c in Sources */ = {isa = PBXBuildFile; fileRef = 46A25C63BB58461F1ED4B77AAC130AE7 /* socket_helper.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 76FEA5AB8D272C1C4BFCEC0458B4FB24 /* cpu-intel.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A77FF1E67E9A96C8E729CB4935B56F1 /* cpu-intel.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 771623BA6D0FF82C6E850285FAC5E6CE /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D49089E8EB06F2A253519BB7EB28D96 /* string.upbdefs.h */; }; - 771C38A7A16E4E77628B577B17C7F75F /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECBD299F5CB35CCCA5E181F73C0A80A /* udp_listener_config.upb.h */; }; - 774575C1D4A8CE6515B8E2B0C3642FE6 /* lame_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA44046E15985EC93ECEEC85F0FDF855 /* 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"; }; }; - 775D2E33935B863E3F5606F2A5D15808 /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A21B5A9674571E25435EAEF9834CCFE /* ssl_utils_config.h */; }; - 77816D5644EF1E18BF67A88F4B363EE1 /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = D94E3A1CB3C6DCD6DCF73B5FEBAF55A9 /* wire_reader.h */; }; - 77A318E27B1C59A4E43E28A7D933D13D /* resolve_address_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 58D5D7A847B5BA00D7E5289BAC10EC22 /* resolve_address_custom.h */; }; - 77A9C8A0E7F9892896AC6C553DA63967 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 357D8DA16FD8A238CA43A10F5357676B /* _ObjC_HeartbeatController.swift */; }; - 77AFE352C25F75ECB23E959390AB20DA /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C9C6D9EBF5A41B773C37EC958353DC /* context.h */; }; - 77B620A52150D5DAC78851AB09006B97 /* slice_split.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 00BCD1AAA6A80ED84AED36F68B1A2BC3 /* slice_split.h */; }; - 77B72E4D522C7AEC40C2ACD1E4F1373F /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 79EBAB0589A529CD029D4516380260F2 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 77B8F79841FB3F855B1434B3D8198B6F /* service_config.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 42A3036A3EB3F2CAB574A190EEF2227B /* service_config.h */; }; - 77C311D15287A6228776ED91EC5E5FB0 /* wrappers.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37E4386D74668883C28C4EE80EB8EBD1 /* wrappers.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 77CFBC6E7DA10AA5A25DF8570C5F0204 /* set_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A6F30CCF75DFB0083A0F777243BF9F7 /* set_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 77D28B4E99F6B47745A58F34E8B92A51 /* e_os2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 99196ECA0D094F3B960C9D145B4A096F /* e_os2.h */; }; - 77E031B1549B39B8B399CA4B7C70CCD1 /* channel_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1DEADFADE249FA65EDDB9B9EC3554ABD /* channel_interface.h */; }; - 77E5926D13BC9D0970D00F9D79F54700 /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DECFA26782E608905AB20B2BA23DCE3 /* pkcs7.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 77EA5E5E601BC13ADC5513DA55BD369D /* cord.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C29945C319D2BB6C311C66D89A40D88 /* cord.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 77EB8F8102D644B3EB49D4DED768F2C5 /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CCB58DF526AD4589CB46243E1739BCB4 /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 77F3404FA0E3C7D84E5C1DFECADAD59E /* FIRVerifyClientRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1441803C9A9B4E9C8B17DFA2EE420B4D /* FIRVerifyClientRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77F441BB5D3D06DC3D0D0B687687FB6F /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5822CFBA3FA27C58E263CB725A6FDC1E /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 78008FEC7C53A989394973F56270BDEA /* FIRQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = 681149C34A4F645D6CBEBC911ABAF9C1 /* FIRQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 7815764430E9B22038190F143160D883 /* prog.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5654679A04C2B3B66EFF7DC0BB2B6001 /* prog.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 781F18DF8BA2E5E6424D6A59ACF735F5 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B66296B5A828844EBE63423D4CCFEBA6 /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 782367BEF088F7E4F6D6FC5219834045 /* printf.c in Sources */ = {isa = PBXBuildFile; fileRef = A4A529CED747C68F5DF2F2655FD30CA6 /* printf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7823F700827026A02090E92D81BDC334 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3F0F41918E1B54D5852E73828BAFE1C4 /* xds_resource_type_impl.h */; }; - 783DBA1CA173FC97C59EE64CD3BFB1D6 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = B8CEC288DB255133814B49990155B678 /* builtins.h */; }; - 784479BD0527128B005A5C7CCABF48B3 /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C25D306CBA095F95137A49734A38A4AE /* endpoint.h */; }; - 785173B473108B16693273A56ECD679C /* call_hook.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2633CB8F25B0870D37571A671A3D11B5 /* call_hook.h */; }; - 785B50089DC25AFAAA322561F43A390A /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D79E31FC5357C1A031B15D2AF7998F /* arena.h */; }; - 7866C01032A5BFFB1D1FBFE56B950E11 /* inline_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = 47AAB4EAA21F13C8410B01D184CD9981 /* inline_variable.h */; }; - 78790A517F3B8B2021C3983BF8123139 /* pcy_tree.c in Sources */ = {isa = PBXBuildFile; fileRef = BA30102B225E3E37D31C1AD65F3155AA /* pcy_tree.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 788A1949B5811388C743A64C8D4323D8 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 03EC09431A21733C761853523EB8F447 /* server_config_selector_filter.h */; }; - 7891B2ADCD5118724DF0B69D365DDE16 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 32F61F17A57202CF69FADE3454DF795A /* hash.h */; }; - 78986EE5674F4F5EDA65FC17D77ED80C /* credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64D26241A3BD73C0AE191FD0FC1B2B6A /* credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 78ABBA09BB31413CE5628991E2914EA1 /* mpmcqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D96FBC9D0A6E1C99462DA2C4012D29 /* mpmcqueue.h */; }; - 78B1B457BAF0A456B96D0F0311856503 /* sys_epoll_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF2476AB649C02AB753751214A96043 /* sys_epoll_wrapper.h */; }; - 78B22FA1B8D677CA7D680B4222E102EB /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = C9752E1EBD2815BC2CD3D61E95571CBA /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78B3A08C83E747B402EB04D2A47D6A3E /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 209719DEF4DC58AD4FBCD23512B758EC /* function_ref.h */; }; - 78BB9DBC3F9FA94AE7FB08C771E8DA17 /* FIRAuthProtoMFAEnrollment.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E85C6EED65C44F5B979A374A81034E /* FIRAuthProtoMFAEnrollment.m */; }; - 78BFC2213781A1A5FC1FCE55A7A9C89F /* ssl_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C3269DF933A36AD67E3F2C509E627EF /* ssl_buffer.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 78C226B9488238F657032F3A42700D83 /* port_def.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 2A70FB5288867A5EAA0C1F5743344615 /* port_def.inc */; }; - 78D61FE6B41E4D1AE0E7F450EC42118C /* iterator_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E0B38D5A88BF6FA2B3D59BFB020BEE6 /* iterator_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78E0B409564FB698F21B5FACF6F1CCF9 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 778B7A0BF342480EC6F96B9D0D5F5333 /* tls_credentials.h */; }; - 790467E3852F53745D4A603FB813E7FE /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F002DD35698729F7C777D90AAEE8B8E /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7922ADE5867DD38F44CF9895ABB11637 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 105F6F2140CC8863CCF1D3A3E2F88F44 /* deadline_filter.h */; }; - 7925432589B7F0398B13D4DB5220AA79 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EFB6B2E865C9C1C5F304337A94CC15 /* port_platform.h */; }; - 792B5D91C11B9C748185CE67CBF5865D /* time_averaged_stats.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FDF122BF4B038C3DAE23472B7EC2006F /* time_averaged_stats.h */; }; - 7931DEDF914EAE0831EE9EAB6BEC3A1A /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1E690ECFEBBD45033DD971BDBF22EB /* alloc.h */; }; - 7937C2A81B52E20317EF3767AB2F0275 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 433314235FA7FB503210A48A7B8C3553 /* connectivity_state.h */; }; - 79436229FF9F04F1C28E7218F6B3C0E7 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = CA3D0ADFC3A26CA2391392CBA33D0C59 /* sensitive.upbdefs.h */; }; - 7955F4818234C443D588C2F9EB70B6C8 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 20223C01D2404ED06B88642B8B6A8511 /* resource_quota.h */; }; - 795BC47E5914FDF71DBDA611DE23A0F6 /* FIRCollectionReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E0E42B27A0C562BD52063883A093B81 /* FIRCollectionReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 796F4E5C06C962EA4041883652C8A4B0 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 146753AD1D969149BF2CBEC9CE315452 /* xds_endpoint.h */; }; - 797AC89FBF2977E05F4AE77B4E16C662 /* cordz_update_scope.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 587F6CD8D7DB682D57FDFE9C5C5E59DF /* cordz_update_scope.h */; }; - 7983A5748ED1E21C0754E16A4D67222E /* version_edit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01F6F82C661D7152709701740551DACD /* version_edit.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 7986EEECE6CCB48212456DCD69065373 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = E7F562839B8733B44E6DE53F84BB97F3 /* config_selector.h */; }; - 798E91A0EFA566F239D95AB085DF10AB /* security_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B8AEE8AE63ABFE1AE73E6465E11F9E0 /* 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"; }; }; - 7997FE22ADFC69155FA161B2503B740A /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = FDC85BEF7CA0C253027CAB59CCE39D5C /* cct.nanopb.c */; }; - 79A70757BFDD5C79A31A13A81F37124E /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 10BD02C45CEC656C881CDDFD5DDBAA2E /* examine_stack.h */; }; - 79A733B29183007FEF6FAF666E36ADFA /* cpu_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70DDE73A07F0F639D868A2C7010A32F1 /* cpu_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 79BF189CE1289A9FC7FF777CDA03D7B7 /* stub_options.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C84F92D72E05064A11C297612A80AA00 /* stub_options.h */; }; - 79C1E2DEC3DADE417C5024F0966180FF /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8632B1A27EDFD373FF377527EE149645 /* raw_logging.h */; }; - 79D176FA4D31FDA08EBA20840053F52B /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = D56F948E9047188CE4C2B2366B8E71DB /* service_config_call_data.h */; }; - 79E0760EBB16244118F542D1EC9DA542 /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = A6868B58A5965A5AC8A6307D6B06D0A2 /* x509_vfy.h */; }; - 79F5487F3ED8509ADF2AA5D09BDC5691 /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = E65254C7F4A2A475753D63DC57C94241 /* tls.h */; }; - 79FB4818EE2A72F8AA8BD44A55225E17 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F1561B81C70A802F7EA85B888BE9DE /* listener_components.upb.h */; }; - 7A000B58A9FE1EFEB0079372468B412C /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A2963FBCDFA65FAB78F53F2975F33E8 /* stream_map.h */; }; - 7A13DAA3B1EED3368AD3A297F49B3162 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E5E22965A8E2CB5BC99C33E43BE01C61 /* xds_resource_type_impl.h */; }; - 7A4CE7B3A11F59F2788F09A4C92C3DF8 /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7EF8B743BA5FA6FCD61DCF9EBCA2178D /* endpoint.upb.h */; }; - 7A5FD81B7955E18735DE50D077D24004 /* zone_info_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 558FEB78138F8D6E914C3226741CBFE6 /* zone_info_source.h */; }; - 7A6054BA11E1235DDA541291598489A0 /* udp_listener_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0AFE4AF6BADEF74CD5AB394132C86502 /* 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"; }; }; - 7A8AF9603D00022AEF41C8DEE0B30474 /* sockaddr.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8DB0B72E5DFCB96209DC7048E35F641 /* sockaddr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7A9A5CAEFEC22BC22E056A74A46193DE /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 72E7ED9B89F137804E723E6D8C7FDBDD /* ev_apple.h */; }; - 7AA28FB0D20A89A0454154DA4729D991 /* log_uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = A1C0E9DD7973D516B834F0D05357E4E6 /* log_uniform_int_distribution.h */; }; - 7AA5CDE12EBFAE48CF7C8A67B27FD4AD /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2F1E94508EB4E03B4A7860CCBC54B098 /* error_utils.h */; }; - 7AA900A2B734840B1B5781B813187044 /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 8EBBC3300281DF8820FFD0B2517BA714 /* status.h */; }; - 7AB06DC69691D12AD785963478750E48 /* FIRSignInWithGameCenterResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 783E4592B9F93EF4B78080B20DA9DCE2 /* FIRSignInWithGameCenterResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ABF69D30304FCE7574446CF0735F34B /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1265C686F1661E68C612FA3E6317A2 /* socket_option.upbdefs.h */; }; - 7AD8804508BE5B88704ABDB6CFB5DED1 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE0594724CADA3C6E8F44A890B0A3CF /* connectivity_state.h */; }; - 7AD89B187E898FC88CFCCDCEDBA7E3CD /* aead.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2073042D8FC0B43DEF5AA93400752DD5 /* aead.h */; }; - 7ADD42A5BC391F73AE911998E39D392A /* text_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DE593DAF8F85BA6D4B4D6CDCE8D272F /* text_encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7AE408B6239F3BC37E96C62534272359 /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 64CB5BF62892C0E010318D1AD688A34A /* xds_resource_type.h */; }; - 7AEB5CF66827FA51DACB999714D09C14 /* leveldb_migrations.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91D00B671669A00EB739F6894916C79B /* leveldb_migrations.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7AF3B05E62A333057887ED1C8DB10EC6 /* thread_pool_interface.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = AEBAB0C93706FEA7F5302559519A1B1B /* thread_pool_interface.h */; }; - 7B06CDDF22207C2BD589251CF94B536C /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 814867F6F30BF5DBC233EBFB76375055 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B1662A2A3D28FABE367C14EAC2193A5 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 194A4A4DA190C984B4CB804B9DAA877E /* resolver_factory.h */; }; - 7B1721A0C4E2926D2C0A465BB2A2D16E /* stacktrace.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 16ED6AC448078AE5BC8D36393271F233 /* stacktrace.h */; }; - 7B1E18828992E8BF686F3FFCA68D7F5C /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C8C1060B2E162C905C627700F8894361 /* channel_trace.h */; }; - 7B1FFC6AE7B062C765960692C1610F73 /* eds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F08A0465E472D1FDBAC50E174D8EEE82 /* eds.upbdefs.h */; }; - 7B27ED987E670462017C47179AFF7360 /* stap_timers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7032DC72FF3E68D589B453895CA48C61 /* stap_timers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7B47BA3388362DEEAE0B94D1FD9536EB /* json_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B105965769545C5B0B9E99C26DC589A /* 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"; }; }; - 7B504B6D3F1557FFAC1B4FF453A57A89 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7BEE68BA6F625E44541785565BC948DC /* examine_stack.h */; }; - 7B51E68ECA786E04EFA21A229B162717 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = 2239C4362DD148908BD031839107AB18 /* strerror.h */; }; - 7B52EC37C3EEDFF25EBED52082771DFC /* memory_allocator.cc in Sources */ = {isa = PBXBuildFile; fileRef = F6E40EDCCB76C1E818797E5DF4BE37D0 /* memory_allocator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7B649ACCA3DD1AF55644AF8FEFF966D6 /* load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 63FC3BB05A9706FAE0BE209E9D4BD017 /* load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7B6578786874E31F22F7C3E8B6DEBA3C /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4458F0D1F10EE69E8665971EC6085E38 /* endpoint.h */; }; - 7B741A8FBA6022975524B8D187F6117F /* server.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EC1AB1800A8ACA9451B945397CA7931C /* server.h */; }; - 7B7677123CAB2C1F187A7434EE46C97F /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5D2488D6272B40E8D8FF936E5BBADF /* port.h */; }; - 7B7EB98DD811122397F68E11559BFBF2 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 6ED361DE47D86700B694C6A182A3A372 /* security_connector.h */; }; - 7B8336D9C2248A0C2F11771BF9BC042B /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 375812A905BE95F82BD50E548C00BDE8 /* FBLPromise+Reduce.m */; }; - 7BAA10CD5E855A4C698A51B182D3911A /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = CE40B2D54E116F757C325DB401E6A7ED /* subchannel_list.h */; }; - 7BB97DD828534B75EEDBBB1D080728D1 /* escaping.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FB431DE016E0C15DED146DFD83946FDD /* escaping.h */; }; - 7BBE95A59868CB3AFA4290CA13C22694 /* outlier_detection.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A5486BE9CC1F388E324C9C7EABD8B15 /* 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"; }; }; - 7BC9C3DC9C214CEFA8634C9780FFC458 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8E47E23AA85979785614D578B42412 /* http_tracer.upb.h */; }; - 7BD15FFD69772578D6CA95FBCE2C963F /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4597EECA664D32D9B171C97CB20990C5 /* value.upb.h */; }; - 7BD44AED3397B12235E46E2EB507D51F /* tls_certificate_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 2C37C2024A74B505A1B63B1BE5BEC548 /* tls_certificate_provider.h */; }; - 7BD9496C0A7006EBCA007107EB5AC2C5 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BAFAE40DB8443E0742EAE7D49932F70 /* grpc_if_nametoindex.h */; }; - 7BE030FC47D38432991A3E92CF24390F /* stacktrace_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 756E5FEE42F22FA5F6A346ED037D2DCD /* stacktrace_config.h */; }; - 7BE509DB68A97903C77DF97C5423BA46 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A806E667BE778D74815FCA1EC42366C /* fault.upb.h */; }; - 7BE5105CD66F5199955052B105B2FA9A /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 846272CE906ECA1A80A02B7AEB41BAD5 /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7BECA7657F1DD4366254A357A9334EA6 /* FIRUserMetadata_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A784040043ADC2DD236E835E5674A71D /* FIRUserMetadata_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BFE26EE1821AEAF9CF476742EFC1955 /* outlier_detection.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D74C0DBAC3C74BF1DF99DDE17F9B8FB1 /* outlier_detection.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7C01935046D4D21DE76DADFEA9769096 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3F7947C8FF937D06BF74A57189163EA0 /* extension.upbdefs.h */; }; - 7C098CDCF0A68A7471E3DB1949E5B3F1 /* typed_struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 791E99B7A60C6BBD3F48D9044F46B429 /* 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"; }; }; - 7C12C070A37C3B1B006F55FE4B8170D6 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 620416995AE0343ECE6E6346F774F1FE /* channel_stack_type.h */; }; - 7C1AF0488D3C4161359640D6BD563A86 /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 38C40DA56BB662124BFBC6878106A8B1 /* transport_stream_receiver_impl.h */; }; - 7C1BC1B1EDA3AD69E9A06DBB7E551BFB /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7B226E2860EE4A4C2039C99B8C1A95 /* b64.h */; }; - 7C1EE2CBB11156E3ACFD053C0451C22C /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 59FA3D0E52D47A2DDDEF7023D073F101 /* resolver.upbdefs.h */; }; - 7C2485FA43EB6D6499FFED3F4E27BA73 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 43573CD239787D73DF3CB946F948C1A0 /* xds_common_types.h */; }; - 7C30FB6681CF6801E8675EEB5BE06E34 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 397CA41A1D921FC5669816B7D4B7C988 /* xds_routing.h */; }; - 7C3D4E80D2D3E1327876245591939AC7 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E1C7031109AF63AFA8568C092D4108D /* decode.h */; }; - 7C4BFF076C62E339A90D3440585CAC2E /* combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 129BAE49CC1DFD58DA05B51BD7686FCB /* combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7C50C7A13DC5B8C0E6A644BBD6C933AD /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = A71E7264BCC67FB63EDBC52A55CA956D /* client_channel_channelz.h */; }; - 7C67BBE0A14B499CF302501B08A55004 /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE351CD4D924458B9CEA52AE415FA4A /* handshaker.upb.h */; }; - 7C70B37C596BD48564371C13E15D337A /* any.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 08784A562EE7D4FC1393492470FA3740 /* any.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7C76EE93DD92D8987DDA4971D678884E /* buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7C13AED8D03B4ACC81C7729DFB9C812A /* buffer.h */; }; - 7C773DB302D76B7824BAB084CCBB4825 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2095D264506F6C53E5E27B74BCD841 /* quic_config.upb.h */; }; - 7C77707D4B39FCABEA757E73C723C4A6 /* bind.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 111E5827F6D4C420280AFC436891B7C8 /* bind.h */; }; - 7C84A6888DD8133AF566B2FD66C6C0FF /* async.c in Sources */ = {isa = PBXBuildFile; fileRef = 78EAAA073E8BB7481AD3F7027C08AA08 /* async.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 7C8CDD9924C3BC62EB4EC7385BCE1CE6 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 58CBA3F290BEECE48CB118CA5B45C07C /* basic_seq.h */; }; - 7C8D9D82692B04F6B05F56B198FC0D33 /* insecure_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2B25468BDC04AEF0C0643FBC675902B4 /* 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"; }; }; - 7C905410BA31D6EF613A3F8BFF0CF0B7 /* type_traits.h in Copy meta Public Headers */ = {isa = PBXBuildFile; fileRef = C20B0DF63F30BCB3C59D4F1804F4110C /* type_traits.h */; }; - 7CDF3077023D79C87A2DBA88C111F0D3 /* charconv_parse.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC309F641F64D59235FC2D1EABF756D /* charconv_parse.h */; }; - 7CF112F47E72932AA01B0518401D80D9 /* FIRAuthGlobalWorkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = A1AFF2F47D853E17885D2F382D5B391F /* FIRAuthGlobalWorkQueue.m */; }; - 7CF76D21A1994D548B32A7A4E38034DF /* darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = 28C218425C921A293F8EC141469AB738 /* darwin.h */; }; - 7CFE34A7CC9879C7757C051F9323603D /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E3615D76DA8B5E946AB2F0F10B647D4 /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7D03EBE3892146C715CE1C9BA8AE99BE /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = ACE0594724CADA3C6E8F44A890B0A3CF /* connectivity_state.h */; }; - 7D0FFAF55057CD672A022394296ED0F4 /* md4.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4084D4193630FD21926688D6848A62 /* md4.h */; }; - 7D27D977CD959E54F35DFAC41368825A /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C9B66061FF666FD862D90913825CED03 /* bin_decoder.h */; }; - 7D3B6BD1AD39411BAF826D99618C0CE1 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = D543BC6FB6E3DB0066CC5AC3C589CEE5 /* slice_string_helpers.h */; }; - 7D3D2896D945C154DF44BD5829AABE46 /* FIRMultiFactorResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B18B60FDC4329B766B328DCF9868221 /* FIRMultiFactorResolver.m */; }; - 7D43D6D1CEB6B06D6B936AAF9F155055 /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3C646D57A34E390E5AD2E5E427DFBE04 /* stacktrace_riscv-inl.inc */; }; - 7D4681B25DF4F8A0E2E614731E44D1A1 /* errno.h in Headers */ = {isa = PBXBuildFile; fileRef = 08940229C89D7950A341B63D6AB7CC4A /* errno.h */; }; - 7D53475EB9A3610D1590186B54F749A3 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5838A843FA8C91F40226C6CF88A6C235 /* path_transformation.upbdefs.h */; }; - 7D5789022EE9E83E8658838C3F81410B /* xds_http_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA49C069162FFC8D8C567CAA398552CC /* 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"; }; }; - 7D62DB05F2480EAA450F539427BF5BE9 /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = EA2596B068E37E2DA464F89021B3C799 /* ssl_types.h */; }; - 7D6538561E5E91B2F37143482E32F7CF /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46C779AB4B47750DC30EE09E7090DC7A /* status.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7D70F1393413C9AC000313EB8199EB2A /* casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 189058C32983FBBDF09FD677C6F662ED /* casts.h */; }; - 7D715A117F559A653BE19C7CCA174F41 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D3096982B7D3EAE32758EAF2C0F23E9 /* debug_location.h */; }; - 7D7EB2B08994DFF587F7082C45298C8C /* authority.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E5110634BE96839141BF5E440B99114 /* authority.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7D8902F3F2D6EC953439125D634F7224 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = F57A0E11DE528394AA16EC7F0E6A1247 /* resolve_address_windows.h */; }; - 7D8C286F8A4808A0386DE9AF044C2E3D /* binder_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59BFE7FAC516ECD49F76881AC7F57008 /* binder_android.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7D99E5E442DC66E3574BE51E299CEDC7 /* extension.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = AFD18D432E2332B5C75BCB6B5BD47F65 /* extension.h */; }; - 7D9BE6DF830548D1254B22DF07A32C14 /* FIRFirestoreSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = A72880DF767EA1F6BEB0EF23FDE047E3 /* FIRFirestoreSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 7D9C7F2DE6B55D60A5DD1F19C9A86B60 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9835A1F845D7E36E879422D7FAA7CCC3 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D9F3A9355E6E8D0FDCFB2C81B019D9D /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 113E06EC08373C0D0F5E4A4199783EA7 /* http.upbdefs.h */; }; - 7DAF78D483FAC9218A57B0C06CF42CD7 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 20223C01D2404ED06B88642B8B6A8511 /* resource_quota.h */; }; - 7DB08627239FCC36BDCD5BD48B2F390B /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3B99AF27C2D6137A74F0735CA1DEE096 /* socket_utils.h */; }; - 7DB4B6658BF0C7DFD8269DCA11D6C50C /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F9CD7F32C915CC6D9E5092E802ACB02B /* resolve_address_impl.h */; }; - 7DB578B2299810579BE1D2FBE139E665 /* FIRAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = B302D325B6A31BB4DEAB926BFFDD3014 /* FIRAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7DB73F2D435785B045C0858729C3D36E /* ordered_code.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1CBC7A784CB8D56FD8185B16AEB663FA /* ordered_code.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7DB8169D518CEF91A5F039697C5FF77C /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = BD49302C45F7A5BB6E788EF11B82B834 /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7DC04AADF54DE8BA4477FB658C2E4F1C /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 233028B39C6DBA8BBC89EDB37D2B0A41 /* rpc_method.h */; }; - 7DC8F79340108C5835F325A6373C274F /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 36EB534BE9F9A3E573FCF52106032E45 /* pollset.h */; }; - 7DDF0079DF368A492BFB71DC23C385F1 /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = BBF31B6CC200EEC3B0FD6307A2C7C63B /* http_proxy.h */; }; - 7E13A79CD4231A7BA5F2CCAC2877BDB6 /* iostream_state_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = F8BCD3ACC3A9537DB76A1799829D4C5B /* iostream_state_saver.h */; }; - 7E29F7BBAF7C3E975FEE4F8E1EEA3685 /* byte_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = BED43F18EDA973069665FC5F582F01FD /* byte_string.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7E32B919E67676717BF4D74DB0F6DCF2 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D31088DAB37DE2293502AB4C2C235526 /* cluster.upbdefs.h */; }; - 7E3661E9F3031F435E14F00E6B6F80E2 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 244335E45C8683CDD25A3A32BE814CC4 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E3990772193408313781C10CD031FDE /* node.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 79F6FEF2BC6EFF376E1BAD23A3CA6CFC /* 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"; }; }; - 7E3F4CCC67F5BFFA63B0AB4934B5D12D /* oct.c in Sources */ = {isa = PBXBuildFile; fileRef = C9509D87C0A4DDAD090B3C9631D46A12 /* oct.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7E533D3B1B2CEA64D83D4B15DD5C0B47 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = CE3EDB15AA47F928FC042E2FFAC93322 /* slice_refcount_base.h */; }; - 7E5E65167A14C376074588E49339222C /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = C805321F397B4B00FAAFD18D1288C36E /* sync.h */; }; - 7E64A429E1EA6C47C37C05B12FCA8E24 /* threadpool.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E7B6BB468DDEAFC93A24A78361E0DB2 /* threadpool.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 7E7EC0ED79909D892154A7751E966C41 /* FIRSendVerificationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = B6C9D3967C9E8A1EA197C9D497FC4C1F /* FIRSendVerificationCodeResponse.m */; }; - 7E8048CBEE8316D3383DC0DE59E729B5 /* pollset_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B52CECB19A59ADE013965B3CF4E76C /* pollset_custom.h */; }; - 7E839BF5726E236637814F106C37A885 /* sockaddr_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9560E302186CDFDDE1DB54E444160ED3 /* 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"; }; }; - 7EA13C9CE03EAC417E7163A393F8F5DA /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = B9562B6E77B62B0AB48D5E6B4E698AAA /* connectivity_state.h */; }; - 7EA728AD5D1F89752B46A7A04B053D48 /* FIRVerifyPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D10EA9EED3A818D297A55364817B99B /* FIRVerifyPasswordRequest.m */; }; - 7EAE48607C6BDD69DC00CF2D67DA20E8 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A58A77CC5470E569424CC3B67BD68A /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7EBED56778F6EC0A6093B8C2B2CC0A29 /* index.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C6DFD5E1EFE0699F1666D90AB5D9D8E /* index.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7EC5305EAAA6E6A5BF0827D968F988CD /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 03609EE23B2A58FDA5D12A5ACF25C22C /* GULNSData+zlib.m */; }; - 7EC6F8C8D3FDAAFC562C6EB94A2BB82D /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = C92CE0EACD0FC38840D6952A90BE5F5F /* json_util.h */; }; - 7ECF9B32BEF95D702C79F4B1BE5F3030 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = F8CB86F939FA26E850A98B58CC6F5B84 /* resource.upb.h */; }; - 7ED26C7D37A1BC72479E8D8B81F13D9F /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 13B7D7297C71BB30F9F2F238C429AB7F /* common.upb.h */; }; - 7ED3084E57AD9412949A351DDAB4A897 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B2EC2870CC90FB892D1544E3724FBD /* activity.h */; }; - 7ED7E8CC9CB8B32BCA50F46709839A6A /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = C2907F9DE65F15117C89FF5CE675D045 /* sync_generic.h */; }; - 7ED92393E522B688F45F48720E6AE101 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 21A5B9C7E61545B76E4EA0DF8218CB77 /* port.h */; }; - 7EDAEAB4B8FBDA046284E4F630CA5FDA /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F382F4DCC010C3268AD3E4B54E0C010 /* health.upb.h */; }; - 7EF7180EAA2DA3BEC6135AD61AA0B416 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E4771F2C7E5533F2EB5C0B2B1BE64B /* sync_stream.h */; }; - 7EFACF444648D0A19A01F419C0DA051B /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 31FB8D5B4FC165FEABA997D168908CBE /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7F0CBC90DA8AB07FEB98693AC2DF7FC4 /* background_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 030219229BE5BA4A5D3AE7087D1EA6FA /* background_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7F1659DC5BBE2A48A5235D24BB23B203 /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4D6DBAB58F5643BDE8B88A4CF90F2368 /* closure.h */; }; - 7F1EFAE0C8A9848E1DD9DFA11D1D521F /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 54A803D5151E2BAE1312FCFA725C61FD /* csds.upb.h */; }; - 7F2AD0EBE52351B3132C64B534D9EDE3 /* eds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F08A0465E472D1FDBAC50E174D8EEE82 /* eds.upbdefs.h */; }; - 7F3367BFBFFBEDEC9976AD7DBBB3CED6 /* common.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 936BA4CAF22250B9C86D349C8466FBF3 /* common.h */; }; - 7F3371D1E9512C12B72B807C9AC39D54 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = B738AE910C8B12BD51B9DEC8D9EAAFEF /* buffer_list.h */; }; - 7F43049C3787606BCA4C55DAEC4C503D /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FDC55221D6E3CC0851C06AEBF1B6C8E /* alts_iovec_record_protocol.h */; }; - 7F59D759F61D804F074256D8E8141E76 /* http_server_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37045676FB2CEDFE2136BC4ECED519A7 /* 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"; }; }; - 7F5A6F0914B96B938472EF8ACEB072A2 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4676A21D65A47A9442C431317B31984C /* frame_data.h */; }; - 7F6059105C8DF2AC36BE3CA1570096F6 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 51E7F2038A0FFD81F4DA08919B2465F1 /* event_service_config.upbdefs.h */; }; - 7F6C8CC03CFEF353D5FDF3DE9C5E6670 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 727F581CFE04F74BE5DB606AF581DD54 /* client_authority_filter.h */; }; - 7F7819BF1FE68220C9D3AD5B820FACAD /* FirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A7DF1FCB624BA88A4A1A63AA7C8518 /* FirebaseAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7F8C79A4B6552E97641856DEE1F10982 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F62C3B8A444B71E0A3B4BF1B03D155 /* wakeup_fd_pipe.h */; }; - 7F8F0317AAF78E19640B4EBF5A37AD22 /* getrandom_fillin.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = D212BAB6F36CDA459758DC064DBF0801 /* getrandom_fillin.h */; }; - 7FA1CE48A5E9E159C974A74077EA5BBB /* timestamp_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8C560804BBFFB22FDAB00E46EB12B05 /* timestamp_internal.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7FA8EE0D7C7ED71ADE4154ED0DD96C99 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B04BB6DEED1E3A806BB4A8871E6093D2 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7FB25F14E090F17FBB1FD9510A0D89A9 /* internal.h in Copy crypto/fipsmodule/cipher Private Headers */ = {isa = PBXBuildFile; fileRef = C5035EAE6156F66A833FA2CC97DDFBE3 /* internal.h */; }; - 7FDEF3338FED11AEE0D7121CBD071167 /* arm_arch.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CC063C2A7B8CB16DF2DFD45FBBD5CA20 /* arm_arch.h */; }; - 7FE058C5306717E31E764EC6587EF1BA /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD55324EBEF7B214149B1324FE3B018 /* local_subchannel_pool.h */; }; - 7FFAB155F73C4F4B09B15A5532062860 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B87166C717DD3DA0B19DEDF7E4907D64 /* circuit_breaker.upbdefs.h */; }; - 7FFEF98A672BF9DD16F7571D9B052D93 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 390BDC63537D7CDD7BA077745F6253B9 /* resolver.upbdefs.h */; }; - 80055716AE2BE8371D1E342AE6233CB7 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 3C1475707A7E54804EEDDC26C78F1881 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 800CFD1DE65FEA1F71836269463CAC22 /* decode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 014FC73DC3798CBA3556EF64137339AD /* decode.h */; }; - 80346F1B70091CBB733BF5A0DAC2A982 /* FSTUserDataWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90870DE07B32AF11702B9B7186D45229 /* FSTUserDataWriter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 80374AD1C63821F24C455A216AF2DA9B /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = 936BA4CAF22250B9C86D349C8466FBF3 /* common.h */; }; - 803B3972EA9D739B6A22D038585706E4 /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 36E890972A8A84EF7401755010A2EEE5 /* error.h */; }; - 80418E455BECA30D6C1ACCA40D321823 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1DA91C1E42CF58CF833BAA4F552ECE /* chttp2_connector.h */; }; - 80469DD22D129126CA2413DCE559F526 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 0C672BF1FEBDD57C63F7CDC1885E5132 /* any.upbdefs.h */; }; - 804E66A3F8C3522D03E4245C8B26B6C0 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = F43D6F8F97EFC9ADB30BE1BFA495ED8F /* client_channel_factory.h */; }; - 805EE67E741E89FC643FE942CC8AF3EA /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 10641A04E2D53ADED2BF610738EF0077 /* rbac_filter.h */; }; - 8060768931AC6B86B5634E2187ED6084 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D3CA6CD5CD08D0835E1A62BA8E4A01 /* resource_locator.upb.h */; }; - 806FBED66DCDF5364B13F23714F6F8DA /* idna.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7F18835E43AAE743B6DCA77EB490B186 /* idna.h */; }; - 8078D89C1E04401E9BC79A37705B75BC /* alts_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 481784854F1A018C2CB4C1DC76669268 /* 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"; }; }; - 8079094019052976EE13C9E219E006F5 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = D97C24A3A1EA7413ED97C014D2C7D1FF /* strerror.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 807C840264AC379F8EF0839C04C30FA2 /* FIRAuthAppCredentialManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D20D8C5C8621068047E76E3C4D7884 /* FIRAuthAppCredentialManager.m */; }; - 80901BE4A6B99ABFB743C0976E127867 /* compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 82013083E21F9C4C42AB2F17800F12AE /* compression.h */; }; - 809AFFC884851B74D840BF3B62EFDB4D /* string_windows.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 4F97B8898465846AB44BB5D78E704921 /* string_windows.h */; }; - 809F45F1FF83D592CAB19D30FD28FCCB /* x509.c in Sources */ = {isa = PBXBuildFile; fileRef = A87D2959BC118BB2B56C983CECC7A4A0 /* x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 80AE71BC81BEF84818C8B887719B92FB /* xds_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22A644ECF56754B4B4DF74E6A40ACAC5 /* 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"; }; }; - 80DC3910E66B97F61649F15903642FC9 /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = 419A2F5E500E7EBB744EB470E5EE7A83 /* core.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 80DF401BEC8E202EA7C91D83111CDC13 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = DF6D080175DA2DD01E385F9AE766F924 /* validate_metadata.h */; }; - 80E5A1C5C0EEF10894F7A39699B1E848 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 609B04049D55BFE2C3B432EC0355856E /* FIRAuthProtoStartMFAPhoneRequestInfo.m */; }; - 80F783ED1B849D6D3072B930FC348A1B /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 20D46D7A1A5F88080AB5F54DE174971E /* http_connection_manager.upb.h */; }; - 81061EB41EE17D679B59AEDD938D4A36 /* bootstrap.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9972D2B84D50B5AC97D2A5CDB225F53A /* bootstrap.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8107E0AC5477B9983CA11B315106E0F5 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9312774575FDF80F1289CC775A360A /* upb_utils.h */; }; - 811896FF4A50C195B3ED566C2C1C8A77 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 990EAF86A1B5E6B39C833E81ED66F645 /* http_connection_manager.upbdefs.h */; }; - 813BF7DEE893F03B91C9392C89BFB000 /* civil_time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89274D0E80CA9AE9EC08FE08AEAF401B /* civil_time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 813EBAC668940D75702DEE553219C4EC /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = E32695E7994B6A021A79F8905B13D7CE /* channel_create.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 815B4C27156D443E0E988043A8765B40 /* internal.h in Copy crypto/pkcs8 Private Headers */ = {isa = PBXBuildFile; fileRef = EB6473C00A114F36597B1C0E29FD0D37 /* internal.h */; }; - 81655F26BF9C5A2A599531B4C740C972 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 28A678D600E6B93AA271B7F611DC318B /* alts_tsi_utils.h */; }; - 81780FE9530B5AA85F0B887D894F65C5 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ADED8F1E6190B3D423AE2A96A2BB920 /* matchers.h */; }; - 817E701F2E6DF9E26435FD8835A52585 /* fsevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 43B970854EEA5E76968918991FA1B328 /* fsevents.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 818136909286AC982DDE707A77008355 /* is_boringssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 71CEA7AFF8F7FF6501D68F03E9D31B63 /* is_boringssl.h */; }; - 818D04C01BB2BC945D3CEAB03DF0B0AA /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADD56DECB0C96FC080968073B241E02 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 818D4E24D5F967E57F86805D6710F292 /* compression_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E23C7BB6473142E7DEC19539D93EE45 /* 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"; }; }; - 8190E0BE66ADBE4A3464C51A3D20D041 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58C4316390D07AD0C9474A71B0DE7AEA /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 819C87408DA96F0C1F7318F765E013E9 /* have_sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 339451B1E530FE7CBDA9C45BD6ADD87B /* have_sse.h */; }; - 81A8E611A5D87E6DB5735EE22A34272A /* FIRAuthKeychainServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 280F12DE9BC85D65A9BE1CD815E0F008 /* FIRAuthKeychainServices.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81C581D177A8DB7C6317253764C89E21 /* msg_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 78336347EE982FA32B1624A1D5F4E7F8 /* msg_internal.h */; }; - 81D945352345CAFAAFD56A96A007E599 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 309C3640AADEE30CED9436741796BD75 /* http2_settings.h */; }; - 81E6EA4C923267754FD4E54271FD75DD /* evp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3119C9E31E7411A07B4708EF92B43450 /* evp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8205B162CBC838F86C83445B479BB77C /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7A9A6AE481C213A802D349EAA9F4C45A /* host_port.h */; }; - 821182CB7B36D7A3B8934C75BDB9256C /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B32195B4FAA7B9B65B5287679EE3068F /* quic_config.upbdefs.h */; }; - 8211D1AEF7EAC1B64C5A1A0DF845002E /* geo_point.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0694CC8E77BC7242BAA35ABFFC770A96 /* geo_point.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 821C936DC80E0FD41297DECBB9495436 /* route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F7A100EE1ADAF19FCC191974945A2BD3 /* route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8226CFCD503B4BAB69B33760860CE1B3 /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = E188EC24E7F2369ECC6533CFF6B204E7 /* base64.h */; }; - 8229D31EA041A9E97086C65F9DDCDCDC /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 78AA8F8957017331CC7D32A3E0BDB059 /* message_decompress_filter.h */; }; - 822E9EFCD141552AAB04C749A6E424CC /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 817AB778B3E5601BB11379797A86C8AE /* env.h */; }; - 8231C98897FB019B5F2DD7A04A9FFCB0 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 5825553765E09FFBA84EC6D34FA6EC0D /* jwt_credentials.h */; }; - 8236809F324BA01D2F056DB522BB5FBE /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD79C45A43DBD53D96E4584895F586DD /* histogram.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 82384A3DE967D2662C1583BC20450CAA /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC87770B5482CDB35C42F1DDF578D42 /* manual_constructor.h */; }; - 823B55995082AF9296527577CF660A73 /* external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90D58D3D2C3225AFA9FAE7A5741010DA /* 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"; }; }; - 824ADC60B6AEF71058AB9D8C247FCCCB /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = AE2CE103B38BC976DA045BA966B95FA2 /* memory.h */; }; - 8252FCBC0401026DA8A172FB8B92DEC1 /* rsa_print.c in Sources */ = {isa = PBXBuildFile; fileRef = BD32FB5A07861CDE58BA4E26DC7496F0 /* rsa_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 826537C44E3BFEACEAECB63DEF54E43E /* gaussian_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = CB3434DB42D580FF9206FCA5DC1B7285 /* gaussian_distribution.h */; }; - 827A89C41155BDD09AD4B7AC328CCAA2 /* platform.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 30A54D8F04C5CC171F121955E24AB69E /* platform.h */; }; - 82822A254FF7853CCA7B65C3B7D49BA4 /* i2d_pr.c in Sources */ = {isa = PBXBuildFile; fileRef = 06FFACA6173CC50666E4F1FBB01CEE73 /* i2d_pr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 82841CF969A1118723DE0684C7BE3658 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4FFA452DD4DD483849260352468A085B /* ev_epoll1_linux.h */; }; - 8286E5882A446EAC280927F75E6415FB /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BA0956FF8B0CC3BDF5FBF1BC6561514 /* config_source.upb.h */; }; - 82A3D9A0E2530869A517FA6110AB718D /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA39FE04431B095DEF305EA3E5F4949 /* promise_factory.h */; }; - 82A45F3A5835E4306E1A7B3F2DC1AD1D /* parser.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 175C317BF8EFE3C4D8C373956A73D82B /* parser.h */; }; - 82ACF11C9FEA4C612C9A256FAFC1B6F1 /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D94C17DF99BBF14FD287F41375DF2721 /* grpc_service.upb.h */; }; - 82C10CDB1F5D1E4B5DEB0B1812F2341B /* binder_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B0FD512FD44EABE41B08E05BE36689 /* binder_transport.h */; }; - 82C1AE383BA5422F9562F38E1702F3AA /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05A808793AA18FCA269DAA9351AD071B /* outlier_detection.upbdefs.h */; }; - 82DA20FB24833C11763382CD5BF33DBF /* objects.h in Headers */ = {isa = PBXBuildFile; fileRef = B24F3DA903BD8100E8D425CD745B55A7 /* objects.h */; }; - 82EB7E405F03A9BCC9F97EB7786B200E /* frame_goaway.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6DAACA52181FF6C4675EF2F7A9A5D16E /* 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"; }; }; - 82EC03A03394BAEF118A5F002B899C2D /* health_check_service_server_builder_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE10C968F0E26A0B9EDCB5D10260C40D /* health_check_service_server_builder_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8314694B29359BEEE6987C75CC33662D /* health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 364FE1668A9870E8FB906BF8A0E29D4D /* health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8315D6CCCCC91C9D3B9BFF58634D3083 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6008769FBFD150D014895EDDB149D7 /* channel_args_endpoint_config.h */; }; - 832A7692F20985DC7B09B7E58A22E65D /* x_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = FDFDBD984846E1D8C8DDE6D4AAB1301D /* x_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8339B5472DD45F2D9AC5A64EED308D2B /* internal.h in Copy crypto/dsa Private Headers */ = {isa = PBXBuildFile; fileRef = 9400B2FE3A8884771EA2BAF46AFB2B41 /* internal.h */; }; - 8339F798A77C80E684D4FDE99E5C92CD /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B90957A6D6006C1C1D3FFCEA5391A00 /* server_address.h */; }; - 833C20809B2D0870A9B55253B50F1750 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA56DEEB00B9AC6D043C190A8347AA8 /* fake_security_connector.h */; }; - 833FE396294B0C9031D198CCA820BD58 /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 42090D55DF53D66BCF53836855CA9799 /* stacktrace_aarch64-inl.inc */; }; - 834B729BE09360DC3A9C71D239EAA15A /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 50C2F3FAC412F3F87B88FBBB69FB45EB /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 835145442A1188B43EE3664AA282CEF0 /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 1C55468D656DA68A0FEBB52B02448A1D /* message_compress.h */; }; - 837458A68F04A72DB9334E8AA7349CBE /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD13DC0CA3448437E698AEF12BCEC82 /* chttp2_transport.h */; }; - 837587CC2058B0F3AD2EC0D5315B4F76 /* salted_seed_seq.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AE02BD5FF7FD18F98A8A00A695F4E7EF /* salted_seed_seq.h */; }; - 838511A06776F4E44679D132B46AA28D /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8A2963FBCDFA65FAB78F53F2975F33E8 /* stream_map.h */; }; - 83923EDBBC60F965188D5C3F9EF664AE /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BD89197787961B81A6DB15F600E03C3C /* value.upb.h */; }; - 8396524927BE33C6639F2EECE7F8AD3E /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = B48CC10D75584ED685E40B257421B760 /* format_request.h */; }; - 83A8FF6EF1B123869CC242E83AABE446 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = AAFE7E183443DBFE7338AC383B6100F6 /* curve25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 83CFCF17CEBB76AC332AE424A0982B6F /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 446BE777A8F458662FB9871F3C5CF874 /* 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"; }; }; - 83D2BA45E168CA50539868AED5D20C15 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 84877799626941D050865D6B8237B558 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83D3274152394F8F00812B781B66BCD1 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A6750FB37B2CCF78031E3D09A2A05F51 /* timeout_encoding.h */; }; - 83E0D44E3DE32FB3BA171B7F61135704 /* fork.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EF0C17AC04718859D77F9EC3118D7215 /* fork.h */; }; - 83EEE427BEF26C7BAFF3B35F7790B04F /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 16879689F72DC8AF3940C9F3C8B7CC01 /* sync_abseil.h */; }; - 8405807ED4E82B15E7A40CED0A5E9A90 /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 8E3E41FFE5E35BF2A37E4E9BEF010F8F /* alloc.h */; }; - 8406F6332F59CB852D12CA64C7D06098 /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = A135513E6914703307777A672262B80F /* format_request.h */; }; - 841071B1087474E7E7F7D29149476300 /* FirebaseAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F27183A113D1803C275050826C9FE06C /* FirebaseAuth-dummy.m */; }; - 8419B0840837D9F2A25BD66929304695 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = 5EC8B112047398545277E4DF5497BEAF /* local_security_connector.h */; }; - 84269793ABDCB0F96FEB7DB5465D36CF /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D93FF8F756E2DF0E4D0F70786B780E /* descriptor.upbdefs.h */; }; - 8428E9A27008AC3726F21BDEAC7C97A4 /* a_utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = D0E34BEAE195F627DC431779EE2B11B2 /* a_utf8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8429E4203D054C5F1C41F96A7F5E8C04 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3E2C8B42A4461C643D2A8C3C9A65650A /* rbac.upb.h */; }; - 84479AA266ADD313E6129A031D7046C1 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE01FC6063EB5F7F464F39C61924201 /* ssl_transport_security.h */; }; - 8478747EBDCE3FA5E095F365B7BE8391 /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2275BF8153B0D1D464CAE45994B5BD5B /* tls.upb.h */; }; - 847D29D2B09ED40D8DA6CB4D2EB03AE7 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 078EBFF284ED55CA70999B58346EE0E4 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 84813DBD78D24091C661FAE88B5B5043 /* x509.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D2894C386C06DD677DDB65D31CB243 /* x509.h */; }; - 8483B987EA1CDF7456066C2FD3869548 /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = F51C9F9C01AF60DEF26C5303CF8C3E26 /* call_tracer.h */; }; - 84930F1F073BAF76D422FA30DB3A058A /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DAEE076E65297226B99003203899237E /* common.upbdefs.h */; }; - 8494A8B6187CA20A3B5356FCDA8885C2 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 167230493EAB5869464F695EFD915F34 /* migrate.upb.h */; }; - 84B2D494FF6521B2962A8EC3B846DADB /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05C92F39C7289C2EAC486EF107DDABC2 /* Security.framework */; }; - 84B58B422BA67CCEA7900D072290514A /* inlined_vector.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 727ECEA09438D03DFDA5CB0E852D8207 /* inlined_vector.h */; }; - 84C8A1734B1CDDE019E454A4BFAE3F57 /* spinlock_wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 398A37D7EE85D3506F8C02E6A7795390 /* spinlock_wait.h */; }; - 84C957A004BAEFEEDDB3F6B54D2F9E41 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB992E9093B80F86021A07E2067C487 /* alts_handshaker_client.h */; }; - 84DC7C55E08EBA5A998971ABE542804F /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0EC00C7BC8E5010AB1C694A593AEB2C8 /* route.upb.h */; }; - 84F45986ACC307C53908CFAE733D60BD /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8EE29E7D1062BC6577A4D494107952A2 /* write_batch.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 84F8A812D3DBB48897C46089E8134218 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5453F7B4FAD6BB59D01E772773491110 /* outlier_detection.upb.h */; }; - 84F9E8A6DB4ED05266C07A6F74D5F278 /* socket_utils_common_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C4603547437175244E4036F2FC1D763 /* 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"; }; }; - 850F89C3A40F8BA6DE30FB246847108E /* a_sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E276779D90404FACCC5FE5D75C05700 /* a_sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8512E07A745D3F7DD596DBC794EC30C9 /* uv-data-getter-setters.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FB52414EBBC4DA5816C50E7F604E478 /* uv-data-getter-setters.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 852FC3539C06061F49B84CCEB0B56865 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 27B0120BD8156120D5B01B0A9DED1493 /* validate.upbdefs.h */; }; - 85320EEEEFEEA8B3BFD97326F96F2930 /* byte_buffer_reader.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1F66012B53DADA982C07E04F86E2CBD2 /* byte_buffer_reader.h */; }; - 8548DB8A507F94AA26DF6E7484F2B021 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = FF23BFB1C6FB85C06C093E0EBAFC9624 /* def.h */; }; - 8550CDAB9F59A5CB803C422E0C873401 /* unicode_casefold.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E756628518B41DDE180232871CCD954 /* unicode_casefold.h */; }; - 856C9F407CA51FFBC2EB9342F1DDABDB /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4FCFAECC0B9457C5990B27906BE2E680 /* outlier_detection.upbdefs.h */; }; - 856CDCFA3B2647A4E80746A08CB9A2DB /* sdk_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 8E65C5AAB84E9D9577DCF7C80DEF1CD5 /* sdk_server_authz_filter.h */; }; - 8572DAA23E4AE714A1808C07D2CEB46B /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6A943E7E1569DD2A06C682C436A15E61 /* listener.upbdefs.h */; }; - 8585A1CA32BE8F9C3E966EDB0896E29B /* grpc_completion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A183A96D23C6A3969C3121A9FF9905A /* grpc_completion.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8587AA6A74BD3C4D179A3322CAF67169 /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 79F093F8BE761F244B6DB67078B233B0 /* subchannel_list.h */; }; - 858DDBED878AF9931168CF4D49BF8A8A /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FA78CE6B038EF8067EE0A0E99CE92620 /* collection_entry.upb.h */; }; - 85ACBAEEFCEB1AA6FBB658AAC8453EFA /* kernel_timeout.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EEB1E143C62286D67ACCFD1C4AA1D928 /* kernel_timeout.h */; }; - 85AE6D5E415858C84BD4968FABE55264 /* FIRStartMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E97BF1A61EDA6EE0C6161ACC6C91271 /* FIRStartMFAEnrollmentRequest.m */; }; - 85AEE8BF8D0FEA826D904C88B93F4ABA /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B07088A0727FFC2066081EE02A8EC01 /* connector.h */; }; - 85B451AC527E417B98E06FF9357DA305 /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = DF133F2683B39795BBB6F7B19E6D29E4 /* inproc_transport.h */; }; - 85C18DCFA59B22D96B910A2E168EAC96 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C8AC3660DECA55EDD75182491BE0E02E /* alts_grpc_integrity_only_record_protocol.h */; }; - 85CEE3FDF79B91B01C1BED0B7240D517 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 902C59F262D45C1D61EFC1DB32949C5B /* FBLPromise+Then.m */; }; - 85D2ABB1193844067592191183065E71 /* is_epollexclusive_available.h in Headers */ = {isa = PBXBuildFile; fileRef = 74F65B120DDCF4943829A077989BC940 /* is_epollexclusive_available.h */; }; - 85E0CA83B46FF6D02CDA6601C29448D6 /* proto_buffer_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = C2479404D5324CCA7B5194BA770E6A62 /* proto_buffer_writer.h */; }; - 85E2E3288F7EC8C5553FB6BF383B8A5A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 85E4782C7E864847F1D6DBD3FB63CB0C /* local_documents_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9429E0E6D8F7BF91DC68FF398D7ED89 /* local_documents_view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 85F55E188DD19A1C8C64066A88E344F7 /* FIRFirestoreSource.mm in Sources */ = {isa = PBXBuildFile; fileRef = E6A4871BDC1F28C1FD965F1685D3BB02 /* FIRFirestoreSource.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 85F567C232BD1D075902B7397D465511 /* frame_rst_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A537E6AEB37B00D25E6A1396917BE5A /* 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"; }; }; - 85F981CD34F601345EE6F3FE33296AEE /* f_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AD14038C725088873BF6D46BB06583F /* f_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8600AD02246FF3F67081FAFFB1937227 /* route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 676F110A1AEFEFA2BA40EE451C96B67A /* 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"; }; }; - 86122CA5645A2100F3E64CDC393F10C0 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = A96B86EE5F4532C937C73D91B261CBB6 /* ev_poll_posix.h */; }; - 861B362D29671048B6A9BABFBBB3F254 /* range.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 96C66E47752B8C1238D754CF11A9F93B /* range.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 861F25D7ED84625DC1560F18BBEA0F48 /* gRPC-C++-gRPCCertificates-Cpp in Resources */ = {isa = PBXBuildFile; fileRef = 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */; }; - 8631E619E7E32B4703CAF8E1E2FD7BF3 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7947C8FF937D06BF74A57189163EA0 /* extension.upbdefs.h */; }; - 8659DE88B20A569B0A8DA109A4E84C2F /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = E1EE6A492364C823126EED0463057D97 /* call.h */; }; - 867DB1528B612B6D0D92F95CE9DEC9D4 /* FIRCreateAuthURIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = F184372EF0DD7867E4C7A15532681777 /* FIRCreateAuthURIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8684145FB6468AD5B70F9397C53F1B44 /* order_by.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5BE83B8E9DF939E3C5AE171BFA0D044B /* order_by.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 868625C87C13EBA22B2FAA2EBFD3359A /* substitution_format_string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CF8EDF4A7DD376AC2749424763FABB28 /* substitution_format_string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 86A364384E964656429BB0DAC46A1F9B /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4D508A85648BBFD2090CE02F1272B214 /* frame_data.h */; }; - 86B2BB4023E997DB742C8ECC3D589988 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 915C738A6579A3F2F59625F24ED5A04E /* http_uri.upb.h */; }; - 86CFCBF487B126D9DC27436C19696527 /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAAC8BDC3C4A01BA8BB78D86F0E41DE /* api.h */; }; - 86CFEF11A1857B473FEB517D11BBC0FC /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 50EB175CD8D55263964AA3FCC78A6EAB /* ssl_credentials.h */; }; - 86D598C8A7F5A0AF643864DB1753008E /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD19B658F379932BE01372F570E5D64 /* lame_client.h */; }; - 86EEAA998A1E3B9D0FC99E2A28AD6B8A /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EC0CAF8725E41FF2AB537CCC9C681811 /* filter.upb.h */; }; - 8702F2F836417B626AA4CCFF92419672 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = C91B02EEFA3E664251FDF793BCAA4794 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 870A40917429116CD9C4FED7E41667A2 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8F19F9E1481749C185D71E041EE600 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 870B8490029E2B54F47B01A63808B8D4 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = A305B8EC7BE1B6DFB330B3DA7B058344 /* backup_poller.h */; }; - 870CABA0ABE74DF3293C2EDFE8D8636D /* timestamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 996E652CEC50B42968C0FF94701A3804 /* timestamp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 871A8ABF4441514D55F4E545E6629203 /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD0C48143F23BAE643E60BABDBB7AD0 /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 872D2980036FD507CFD0ACF61DC4CA52 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9872F7FFC3C67688F09B39A94026EE /* GDTCORAssert.m */; }; - 872E33E26CE327783031C295F15A0E35 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC4C9F0C148108AF3970F58AB84F494 /* fault_injection_filter.h */; }; - 873089C55AB2E63E5525A138016A753C /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BBCE318F8243FA9CE289E45A666A4960 /* orca_load_report.upb.h */; }; - 87385A31E5A097697F6642A115508664 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CCAB43DC02E598FC4D40B6F9B118BBE /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8742692A60DB6482F6CBC90E69022E57 /* value_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99E29A909A749D0B0FD23F47A8748436 /* value_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 874B127AC36ABC5C443610745FD8B231 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B79883322CB09A08BAE47FE41DE6C433 /* route_components.upbdefs.h */; }; - 874CB21AFE49617E8A9CC1EF02013AA2 /* asn1_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 4163B365CE1DBF17D040516574BC57D6 /* asn1_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 874F72EAEB063FABEABAF95D89124AF4 /* rds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 03CBEB05F5C2867A917CFACE48EE047E /* rds.upb.h */; }; - 8750F045E73FE48FCE15F01B3435D1D4 /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F84C8B471ED03E868C3C3F1135141693 /* path.upbdefs.h */; }; - 875E5F58BECDBF89F6ED253CFB218081 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = D55736FA019DE944E9BF69ACBB520148 /* closure.h */; }; - 8790DD2BEBE238DCCC192CB20A3EFC6F /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 6F1DA91C1E42CF58CF833BAA4F552ECE /* chttp2_connector.h */; }; - 879BD38F0A49AECD6C08232EC1B1884C /* barrier.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADEFA34F846145BD04F8B7816D476913 /* barrier.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 879E3ECE51C01D6D5792BB2860E4EBB3 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = EB261D2E8DEF8C7F3DEFC6A0E40124B2 /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 87A23FDADAD0A30AFF226DA1029221F7 /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9DAC136197FF32241C217A185AE9D3EC /* string.upb.h */; }; - 87A38D8B91AFD38F138F504978D4F6AB /* validate_service_config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0B93226B0B0A22CD8D9078E645982A33 /* validate_service_config.h */; }; - 87A6CE85AC420E31AC682FE5CA3AE9FF /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 594423FC6BB5CE4613E472B5C0E865A8 /* alts_record_protocol_crypter_common.h */; }; - 87B7EB8D2C342F2A4E1EED579035E2DA /* explain.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AC1101C998BFC206F537191514D7EBEB /* explain.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87C825D9A1B4335EA9E946A6DA3F400E /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = EC44168BAA289E239377CE1F0728929F /* client_authority_filter.h */; }; - 87C8ED6038417B5624813BCC5A23AC99 /* cordz_functions.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 281DC0E90357AE176BFE2AD6D80A47C4 /* cordz_functions.h */; }; - 87CF2DCBEA5E134329A6B509BA6F76DB /* router.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E89013BE4C90A38F93A7C351868777 /* 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"; }; }; - 87DB271DD06A8FC0A69B728863FFC751 /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B38124AE2984531B5838ECBE17A4004C /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 87DF9407A4833F01F9A515C191A65004 /* endpoint.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4458F0D1F10EE69E8665971EC6085E38 /* endpoint.h */; }; - 87EDD15FBFA673BA0BA7A28960B31EF3 /* bind_front.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7FC3F5BBA14AB71E73986111C0C5BE /* bind_front.h */; }; - 87F3B9E9BBE9492E234D2481A8FE0DD7 /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = D8417D60AFAAC26362E49B188B8C5DE5 /* murmur_hash.h */; }; - 87FA41B5C175BCE2B3146E1EB24FBA45 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3867EC36B10F71588E86C3C566262914 /* ev_apple.h */; }; - 881207C0C8BD46A7E7053632EA7FEC5E /* endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0DD1FAB8621882656D150DFE901068 /* endpoint_config.h */; }; - 881441EBB1BF904C6A39842717210825 /* unix.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 232E972A47C285CFFEBE1576DDBCB1DD /* unix.h */; }; - 882379871DF1397714FB2697621E5C9A /* FIRAuthAPNSTokenType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6159D2B884D1B076A43876DDB5E2A991 /* FIRAuthAPNSTokenType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8824D3436E0F14C4BFC7D1D7A0CEE6CF /* upb_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE984C6FFA08D78838F9D8AB59D43F1 /* upb_internal.h */; }; - 883B8B62CF1CE9A7189B4250989A7E4D /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 803EE5BFD0498CB7975A108834085F97 /* chunked_vector.h */; }; - 88408B612F9B1538868A5456D0758FE7 /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 4A0E0BC8A2E3A70F65E0772F6862AE16 /* message_compress_filter.h */; }; - 884AD43B8C5877223BD353D38875206F /* FIRAuthProtoMFAEnrollment.h in Headers */ = {isa = PBXBuildFile; fileRef = 712F2B9399D2FCA0353D1365313F3274 /* FIRAuthProtoMFAEnrollment.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 885BEB6B6BCFEEDAA5F9CD8293C654C4 /* wrappers.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 09B5ED5FF8068FC36343D9D450D40A8C /* 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"; }; }; - 885D655EF5B9778C97D91C213710321B /* wide_multiply.h in Headers */ = {isa = PBXBuildFile; fileRef = DD792B696E54BAD4DB9DFE7BEDAA1CE9 /* wide_multiply.h */; }; - 887CE6E49E5B9589BF17413EC64E0A2F /* inproc_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9D65CAD60522E81DABD5E36486DBCDCC /* 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"; }; }; - 887FC33AA65F062572ACF75AABA91644 /* auth_context.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 34491EBAE4F913D87F311FE88219C475 /* auth_context.h */; }; - 888E7A64A1711F18D611BE40E884DE86 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = A0154A101698E589E1B1B631EB736812 /* jwt_credentials.h */; }; - 8890ABBB1EFA5EAE37B3AFC1E826D1B5 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = C09630187431D682F28B9EF86B91E3FC /* trace.h */; }; - 88A52909A5E62106CE918A4AF2F9887C /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 85EA5C1B46421FEEA8749ED536BEEF1E /* retry_throttle.h */; }; - 88AEC180D5618D5C177665D8465CEA32 /* internal.h in Copy crypto/evp Private Headers */ = {isa = PBXBuildFile; fileRef = E07766BBBDA07E4BC2FB9C6661DA6AA6 /* internal.h */; }; - 88BDCA98D1FA9373EDCAD7DD87BDE993 /* max_age_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2D82AC3822F81EF63755626F2293BB /* max_age_filter.h */; }; - 88C0EB0E3C6D63030962716409741FA1 /* symbolize_darwin.inc in Headers */ = {isa = PBXBuildFile; fileRef = 1016B6533B6334EFBB41E2B0CE9C6394 /* symbolize_darwin.inc */; }; - 88C3697F6E44E3490B2C3F1F984F882F /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 306E4A2A6123F1EE9F9EE17D5D64081C /* resource_name.upb.h */; }; - 88C48AC93C88159B245582BED8CCD955 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = F156CFB7E64F64A271C8B53E40F249B2 /* completion_queue.h */; }; - 88D29ACC27C7BDA3FF1B81E706ED53DA /* executor.cc in Sources */ = {isa = PBXBuildFile; fileRef = CFBD1990DB242CCF51D6F5241BBD8BA4 /* executor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 88D3E92C293AFA821CA54D8DFB88D1A1 /* base64.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E188EC24E7F2369ECC6533CFF6B204E7 /* base64.h */; }; - 88D813A6448FC0E747FADC9E2328D008 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3261546B3FF64262DFE3888B391CD023 /* cluster.upb.h */; }; - 89046A4F334933FB478C172B8D0B9146 /* server_chttp2_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 170F436A7AE394349E0529630C42DA91 /* server_chttp2_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8912EBEAC0787EAD6EB8D2AD02CB22C7 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C88EA6C7101BBD747B97A0B7481DAC4A /* deprecation.upb.h */; }; - 8913B1189D6CE7D19945E4BC450F9D01 /* sockaddr.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6810CC57234BDEE2EC15C865BA9FC065 /* sockaddr.h */; }; - 892EC6195FD5A5495FD694ED1A33798C /* def.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = FF23BFB1C6FB85C06C093E0EBAFC9624 /* def.h */; }; - 894471FE7FCDFD92022EDFDEC16D91F4 /* eds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 088F51DD14C05CBC4BF0EDE08728A569 /* eds.upb.h */; }; - 894B12C9C6A17CA26D7B4C182DF5346A /* authorization_policy_provider_vtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 761E7749E8DAAF445F45115FF371FEC5 /* 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"; }; }; - 895398EC69ECE1458CF663D839F4847D /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 65D3CB1B485FF8F7E058F4C197D06891 /* 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"; }; }; - 895A41CAF468A4E7021C8DCB1F0E4C90 /* discrete_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABFCFEFB639BAAB4AA7406E1B9C8A3E0 /* discrete_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 8961F55A1E172E6D019104481FC2B5D1 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CEA1E95AB3F2E8B15CA2ED5A5DD1569 /* match.h */; }; - 896EB6C1D3DED05B82A7D06D9B72F668 /* cycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65E2CD4426BAF301B65B5FF7BDE99220 /* cycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 896F4FF2B5DED5B75AC40EB7ED0CC398 /* port_platform.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B4938879DA38CDFB6B4644E9E0600C6E /* port_platform.h */; }; - 89758B0A541779DC1BA9AF88266F6ADF /* resolver_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 095F41438DE678236B51E05C4C1BCABE /* 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"; }; }; - 8998BA3238A9A86485E166A10D21526D /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C43412CF783078771C9977A38D5AB68B /* internal.h */; }; - 89A47F8D934AEC444A36B53617148835 /* certificate_provider_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C7F0EED370268E10143DD7516508E404 /* certificate_provider_registry.h */; }; - 89B4BC6064657B771C2817E065DF0ED6 /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D645D2697EDD388B99515B5CD568C59 /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 89C379E9D59794E268A826D36B60A3DA /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1AA58BB75490621BF68FE5B54FF306C0 /* router.upbdefs.h */; }; - 89D46CE018FEA9C12EA5FDE4AFDB2958 /* repair.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE170FC7CA84E6477031C385CC1729A0 /* repair.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 89DEBA1BEAD778AA587945515BC3CD59 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 545266DC416A734DB0D2DA7D63AB8BA3 /* duration.upbdefs.h */; }; - 89E4A8D585DE1B11EAE9348D2864D989 /* direct_mmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D5B46034460DA584B40760F42C4DAA /* direct_mmap.h */; }; - 89EBC95B4A1AF58588D28CE8528B2AB9 /* wire_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = D94E3A1CB3C6DCD6DCF73B5FEBAF55A9 /* wire_reader.h */; }; - 89FFE223CF0ED8AFFE29E185910568DB /* container.h in Headers */ = {isa = PBXBuildFile; fileRef = CF84102C19E84A907B43C8B687D2EC5E /* container.h */; }; - 8A17172D8132B2A72D8B73F82DD6D47F /* utility.h in Copy utility Public Headers */ = {isa = PBXBuildFile; fileRef = FF602C6B56AC57B500B8C62ABC8828EC /* utility.h */; }; - 8A1F3E381033A79525DB780F6B3258D3 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 462805E562D5F862B285CDEF040DCB0A /* transport_security_grpc.h */; }; - 8A242CFADFECD7BB8B969F1A003926C3 /* discrete_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9897228EF3C68866C58B48DDA6C763E8 /* discrete_distribution.h */; }; - 8A2D2E6F6F2299E28C26DA3F35D43EBE /* endpoint_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 197F775A96CBA9FF12D0845FF18C85FB /* endpoint_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8A4F8D315DF39530286DD055925373A8 /* http_connection_manager.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 09EEFC05621D99984DB106D7160A0F6B /* http_connection_manager.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8A5937BCEFEFF9D9E4737B2508DE8A55 /* FIRAuthStoredUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F2D335D665F2A4868D2118D1F02CB604 /* FIRAuthStoredUserManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A63012F95C2C28E3B0095AD2BD4AA06 /* hashtable_debug_hooks.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C38798F9AF84AE7241A2F6AC2632E204 /* hashtable_debug_hooks.h */; }; - 8A65F4CA3B17E27C19A191D993AD64C3 /* cpu_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6FC28FC157D231D4A6F0070E3F51DBD9 /* cpu_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8A6D94CD47D6EA9461E341AD269576C5 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05C92F39C7289C2EAC486EF107DDABC2 /* Security.framework */; }; - 8A7E40FAF0D49791745EEBE0F3469EB1 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 91DBCA29C23EC9E70C6CF70FBF6D445F /* ev_epoll1_linux.h */; }; - 8A8D556B863BC4453E474919A09B8FD8 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 532DA9FCB6AAB8630152D8CEA7CD8EE5 /* authority.upb.h */; }; - 8AA5D09250B2F467DCD0C9D891821D5D /* rpc_service_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0D148EE2BDFF3B88B93A22DB6FC96920 /* rpc_service_method.h */; }; - 8AAB49E3533702D3DE00574C9B47F526 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E66F5CE31CC30B5FC35F11E8037F254F /* FIROptions.m */; }; - 8ADB44B9DBCAC3044D7FD0074E29A370 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B7768AEE98D9AEACB1068789A9E7553E /* protocol.upb.h */; }; - 8ADF415447A920BBA91792D72FA76599 /* parse_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2F7287B6C3806AC1BFF064656453E95A /* 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"; }; }; - 8AE34FD264B1714D99B015B23CFF9B0D /* channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A11FCF074AAB713B048A641C6C88975F /* channel.h */; }; - 8AFC2C1CCDC168D2455D5A15C5186632 /* load_system_roots_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EFC2DC0949691ECF6348F58BF217772 /* load_system_roots_linux.h */; }; - 8B071CB4EBCB843D72543E988E032D06 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 235CC43425366ED60206A650CBDD7AB7 /* grpc_authorization_engine.h */; }; - 8B11EAA3A32F185280DB06E024DCEC04 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F7AB6697F012D5B4C6CAD1527648734 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B165C9139F45A1F9A3FB672887FA0EB /* a_type.c in Sources */ = {isa = PBXBuildFile; fileRef = B9A3B58D793C55394A7A17101387427D /* a_type.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8B2043221D12FA7AC0924A961EDEC15A /* FIRPhoneAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 301F5C96FBCB9D74BE64E69DED8C8DB8 /* FIRPhoneAuthProvider.m */; }; - 8B2DC155CDAE81A9BF027BFDC87B578D /* pem_xaux.c in Sources */ = {isa = PBXBuildFile; fileRef = 884791E9AF39E8C3C863A28EB681D6A3 /* pem_xaux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8B644B7E485D04E6C7D2E1ED2C80DF80 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 76DD4EA6CACBF3D5EE51596430225743 /* dual_ref_counted.h */; }; - 8B7172DE55D4C630D0A2EBD37A4F2489 /* security_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4717E45003D2AF5D00B6E73220748A53 /* 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"; }; }; - 8B830EBDCBCD43A8463BD5385D3E56BA /* completion_queue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F156CFB7E64F64A271C8B53E40F249B2 /* completion_queue.h */; }; - 8BA571DC1135C84FA8AB0E54FE78D651 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 45DADBB766F537F6CFE3D29BEC01A64C /* client_channel_factory.h */; }; - 8BB845E6D4C9F819E73B1095CC991D60 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C3A7D7CA612068B66154CFA2106C0D /* alts_credentials.h */; }; - 8BCC3411D73B4ADA83806D29D2A152A0 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = E7F562839B8733B44E6DE53F84BB97F3 /* config_selector.h */; }; - 8BD4A1ADDA07A5A738489A72E933486F /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = B999C5BBD7419FCA918DA140A294925A /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8BD5FC0197FF5B5CF9D3EABF2FC79442 /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B2520369B3CE7512D4B94CC515F5884B /* executor.h */; }; - 8BDFF30C93C8EE5136038028313540F5 /* process.c in Sources */ = {isa = PBXBuildFile; fileRef = EBC37F490E9C93CF4402A78E798E4295 /* process.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 8BF4DD5A673CF7F2BFC3D39FC15E4ADB /* FIRAuthDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 600986C66218DA16998B8594BE60F5EB /* FIRAuthDispatcher.m */; }; - 8C1F416685DA625A6C53CB7A1AA91ACD /* utf.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 4ABF63F882F4DD9763E0CCDDFFA63080 /* utf.h */; }; - 8C1FDAF0A7D6AC6AF45E3CA7A0D3342E /* FIRFinalizeMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 272D43B1469F028934436B767A61C6D5 /* FIRFinalizeMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3605F6B750171B313F17BD1E04E591 /* benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 068F4F2AD949B3784C2592596099624D /* benchmark.h */; }; - 8C41BCC69B1FEAF4E7989B455E3601C0 /* percent_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A59B322654824183166FA38D78FF95B /* 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"; }; }; - 8C47A023DA5F5BF675E45799A47DE95C /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 85B5B5E212867EF230C87ECF050446B8 /* endpoint_cfstream.h */; }; - 8C5C7124E50B6D0438FC691CF83ABEAE /* charconv_bigint.h in Headers */ = {isa = PBXBuildFile; fileRef = DCE4B2DDA68818DC0F0051E95A3BC73E /* charconv_bigint.h */; }; - 8C637F2C73793647724EF18293C8886C /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B60CBE0EC099335CFEC19ADB8EEC731 /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8C6964EF92D7F5CA59D537A443F2ED6A /* have_sse.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 339451B1E530FE7CBDA9C45BD6ADD87B /* have_sse.h */; }; - 8C723004F88A1EBF7DB7526E0A2A4C9C /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 01781C87CC57C5C88AE2D6A81AC6E2C8 /* health_check_client.h */; }; - 8C7E7111427C45DE1706D6AA76228CDE /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = E62307E7B559EDCC9BAA7D7D24E57C72 /* context.h */; }; - 8C94483FFC9B752F1A2F1E80512E0B00 /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8955684B1A4A09A1A5E59199EF40E9 /* uri_parser.h */; }; - 8CA1E1DC328AAE3EB3B82600DDFE5C6F /* client_channel_channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D0534E332838F7F012B7DA614821326 /* 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"; }; }; - 8CA63960692AB91A0D7D0117079C26C9 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2965F18933BA8826E8718D022CC72933 /* xds_api.h */; }; - 8CB7E491F0D6D61EC057993588344CFC /* rds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E2E8B06225A868EA146B961E725D102 /* rds.upbdefs.h */; }; - 8CD4E14D72DCCC4FD0145B0755AAF874 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 652E141444A00112AEA4C767510F5D5B /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CE81AB02DF9FD64CD1ED05B854D302F /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 390FB7D3156824871D761D76C5B0CF24 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8CF306AF3CC73E14C168230D0E543A5C /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 093F493F9F1708A9BFC9D9CC9BC36975 /* transport_security_interface.h */; }; - 8CF7BD61E42BAB6E7C49C0E25D016091 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = F61E8E74301241F7AF70B31048B66F46 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8CF89DAF63891DB8DA4A9A154A015318 /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58FBA651283CD0BDF6C1AA81F2BDC415 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 8D00FA36373EFF598773CDEBE7D702F6 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 97E8C20555D426115DE04AB28B27D69D /* pollset_set_windows.h */; }; - 8D273D65251978DB378DEEE3F9BF01C9 /* umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A90769AEF2AC0A5F00D058E4C00F878C /* umbrella.h */; }; - 8D2E9D3DD5ED7AC7738B0E852E495C5F /* GDTCORUploadBatch.m in Sources */ = {isa = PBXBuildFile; fileRef = DD98A72A3325D1FA05221010208F85D2 /* GDTCORUploadBatch.m */; }; - 8D30D9F282091AA860A0862A87FFBB2C /* x509_obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D1FCB656FB363AB1952BCBAD1A9F5B3 /* x509_obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8D44244B2E646443716805ECBB6EA4D9 /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 67548E2657F4C9A087F1BABDBC72E3BF /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8D44739252660EFB1CC25849AC076527 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB859AFBDF808CD70C9D89CA6B9B99F /* subchannel_pool_interface.h */; }; - 8D5FCF330DD308AE602885C70AC799C5 /* time_support.c in Sources */ = {isa = PBXBuildFile; fileRef = F5F58EB19671336B06F38DCB8077B470 /* time_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8D67BBE4FE3D1019C54A0A30B2E46436 /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F173E16EF68725331068A2234C23F194 /* address.upb.h */; }; - 8D6C2461EB69E040BCD5119938F5E6DB /* thread_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D72A0B04509794A697C481159197774 /* thread_manager.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8D6E4BF56659ACA92197D0EC8CD1460B /* transport_stream_receiver_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C40DA56BB662124BFBC6878106A8B1 /* transport_stream_receiver_impl.h */; }; - 8D6E8370E61F0A32BCD9480DE3A453CB /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 93930114593B758A0E571CBA2FC5D445 /* security_handshaker.h */; }; - 8D702CE1D6FAFEBA71EA04F530038370 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = D1A6C9AE0E511F6442B4343F210DD8A7 /* file_watcher_certificate_provider_factory.h */; }; - 8D984328A3C938390D8E13352901772B /* timers.h in Copy src/core/lib/profiling Private Headers */ = {isa = PBXBuildFile; fileRef = B1D23DBF05EC7616586E3128C524322A /* timers.h */; }; - 8D98877514A3FEB5DFCE0CADE4C2DFD5 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7D8CF18C9D9D17FD06BFF9E3C01EBC9B /* channel_stack_builder.h */; }; - 8DA104D58491FBE999582DC50584AF11 /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */ = {isa = PBXBuildFile; fileRef = 9343A462382C988ACE502EDBDEF7BD01 /* thread_manager.h */; }; - 8DDD984AD9DBDFF9B50793C96CA666D1 /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = D4D3D25A4EEC86ADFE439BAE0D32F9F1 /* annotations.upb.h */; }; - 8DDDA0A6122D327FA2EFFFA4837577B6 /* dh.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FA2AAD6655170A9A03B73C111477A2 /* dh.h */; }; - 8DE23BE612A85CE153F00FD3CFBA688F /* FIRGoogleAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AC23454BB32F73F9583DB52A0C93FFA /* FIRGoogleAuthCredential.m */; }; - 8DF186EFFABF98F043140BA882A7BF6B /* http_tracer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FD4E78625E8C3DB087988B80CC1F91CF /* http_tracer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8DF4146AD5E54C90A7786A98FA15FC3E /* FIRAuthSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 0531C82DEF32707A12F9BAAD419C0D84 /* FIRAuthSettings.m */; }; - 8E08D94BD92F350071FFA1E86454D046 /* ec_key.h in Headers */ = {isa = PBXBuildFile; fileRef = 965F7CB033AB2E3BADDF45577EE78429 /* ec_key.h */; }; - 8E29A903F3FC5D0D3626FDF37D50DA85 /* delegating_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 44B3BEC899FC6061C55B49912B75671B /* delegating_channel.h */; }; - 8E2A6194063E5B2D838014276716E990 /* string_constant.h in Headers */ = {isa = PBXBuildFile; fileRef = 92AF8E96F7C3EB355BAE1B4CC4875012 /* string_constant.h */; }; - 8E352F67011796DB0022B3C1459A1E31 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = E25600AB4491B7DFB66FFBFDF46DC259 /* status.h */; }; - 8E42060E7B7E8E3197487880410ADA9D /* is_epollexclusive_available.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 223CBC3027704C73021CD6046B599261 /* is_epollexclusive_available.h */; }; - 8E4DF8EB11816CE9EEE9D8EC884CBF81 /* closure.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D55736FA019DE944E9BF69ACBB520148 /* closure.h */; }; - 8E590B666E2BCD81AEB499499052A05F /* internal.h in Copy crypto/trust_token Private Headers */ = {isa = PBXBuildFile; fileRef = 495906018B5E0F8CE64C60C2A6A381E8 /* internal.h */; }; - 8E6E09F209E1C156123FB5F6F3506A77 /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = D8417D60AFAAC26362E49B188B8C5DE5 /* murmur_hash.h */; }; - 8E7DB0A8C957F83362D4B7C964BF4968 /* authority.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 021E812C1CB6B8EED60F900BC62BFBE4 /* 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"; }; }; - 8E7F3D98E667996CC942E8983FED8ED5 /* lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92A1549ADA2260C3ECC7D1153E1892B0 /* 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"; }; }; - 8E8587A01B36CE2B828CFB939850AF7D /* tcp_server_utils_posix_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 857EA4814AF020796AE9D746439F0390 /* 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"; }; }; - 8E86E689DA09EEA0F336B12A1A3569BD /* rand.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 213FAC7B282298253E9DE2551076FE8B /* rand.h */; }; - 8E9774FDB268D96FF5ED95DA932B7FD2 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 31E8BB4CBB6CC716DFCDE95657E0D4A7 /* alts_grpc_record_protocol.h */; }; - 8EA8CD516749B76205C9316D77D8603F /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 475993D0793102301F1F6242EED7CDF4 /* wakeup_fd_posix.h */; }; - 8EAACD1CD41EDC872C2AF510D9FC65C1 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = A3D549AA9B0BBF50367D92ECF430330F /* alts_handshaker_client.h */; }; - 8EAED8105E8E7F43F2C259E96A12B957 /* seed_material.h in Headers */ = {isa = PBXBuildFile; fileRef = 29162625476EED4B899EAA781ED51679 /* seed_material.h */; }; - 8EB48CF7504F1FFCB7AA68181F9B203E /* fork_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26D09F96E4744FBAA1B641E5ADAC5528 /* 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"; }; }; - 8EC149555EA0811D3E5F3F58959412A5 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 496C34846079E9EC78D047FE2E773626 /* metadata.upbdefs.h */; }; - 8EC4293C8619326410DC23AD167AB924 /* slice_intern.cc in Sources */ = {isa = PBXBuildFile; fileRef = A60956DCB23BA71E2EBF485DB58F6EB9 /* slice_intern.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8EC497DD3A9DB3C5B27AA24D51753924 /* field_index.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47A19DBC2BDF461D70C4145E0880B0E3 /* field_index.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8EC68F96DE73009DB02B458806EA5606 /* filtered_re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 264B41E145D441C27ED2ACBCF935E7A3 /* 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"; }; }; - 8ECEBDBFD43D6D6C510851286A841DC1 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E7D05D43D2681FB8A647B71EE5EAFC /* secure_endpoint.h */; }; - 8ED40EA8FC9AFD36D03F0971C28D1AB3 /* refcount_lock.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B68D369102811A3FCBE53E268FE1869 /* refcount_lock.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8EDD6F8A6CE6FB6B93591F57B9F0DF5D /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 7DF7AE67E3BE5A28A3D46D9E468EE3E5 /* duration.upb.h */; }; - 8F2A146898E336CE73134D4A28369D8A /* db_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = FBBEB415CDF581F0D0FEE2A27814EC2F /* db_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F39A3F74C955A81B4D93E1A69F42BF3 /* server_address.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 2B90957A6D6006C1C1D3FFCEA5391A00 /* server_address.h */; }; - 8F4C851BD6DB2DDCE8DF6CA8F54182F8 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 149F71522D39AD65C4611C373A772AE7 /* internal.h */; }; - 8F62F9EDB257C51F14A0DFD062D53926 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D5AF258E4577E6ECFDC07B7D70237A35 /* authority.upbdefs.h */; }; - 8F75B4F1273819F9013C33070D181D5D /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F932B48A2E2D0D659F06F52FB0ED281 /* route_components.upbdefs.h */; }; - 8F76108FBBC0154ADCA4644A0F6E51C5 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7AB6F42194261B05D48A051B0F2C668E /* certificate_provider_store.h */; }; - 8F93DFC972460E33E33879B1A84AC766 /* output.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = FD64371E6762D728A7887F2E44CD1C1D /* output.h */; }; - 8F958BE4E96BDEA594FFC9E53484B04F /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 930637C627FE0278A59ED9A4B6804A00 /* health_check.upbdefs.h */; }; - 8FAFC14AC28261FCB953D84407337F54 /* switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CC9AD7FDB2813620522076911D06528 /* switch.h */; }; - 8FBDC7C044C442F6FDEC2B4948683001 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C58B7F97CDE713ADE08F118160FEA4 /* retry_service_config.h */; }; - 8FC075DBA9171A9186D9CC9D140A78E3 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 289A2528AAF51BACA0EE77CA6C863A58 /* alts_shared_resource.h */; }; - 8FC983B7AD0040047084F69A15AC3BEC /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D73EDA482871B4A469E78259B2138A8D /* GDTCORConsoleLogger.m */; }; - 8FE06230A2E6D20C27DA26FC3D50BCC3 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 8037E1306A59555C81260D3FD37729A4 /* tcp_server.h */; }; - 8FE843D9CD4BC6DB45605469D8E9E8DD /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8629F5CB910A9307E786B85BF9539263 /* percent.upbdefs.h */; }; - 8FFA48565161C3C436339000910EBA79 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 175C317BF8EFE3C4D8C373956A73D82B /* parser.h */; }; - 8FFDDBEFCEDFCCA979C87D70E522AFCF /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D0BCC32ACC07E85423AA18302BB9A54 /* promise.h */; }; - 900A9B3FCE8F0059A750B3D8C203AB43 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C480D3A93BA5EA1C610DF0C1B208B9FD /* config_dump.upbdefs.h */; }; - 9046B4EFB9701CF5DBB534434AD7EA19 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 055EFA98F92611F06DD3C545A984662D /* number.upb.h */; }; - 9048B8503D7CECE3277A5A25714BE920 /* def.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 7DB40011121B0F1C6A39BC69784C72DD /* def.h */; }; - 906626427BBB532A118EB47138CB8D35 /* server_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = C43F0EAB8EDA84B852C3A713CC2689C5 /* server_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 907A8F723D27A60B948ABE4ECF8578D3 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 274BF973A4BDA252715ED0617D4AA568 /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 908AB4C11E9ACF4D614A0B373BB3F6E2 /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5A8664A9376CF43362546ECA70865293 /* upb_utils.h */; }; - 90A2E34CBC527A2BFAF7F2E1D4E6712B /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = AD9A09242687CD13126EE381377D5B6F /* descriptor.upb.h */; }; - 90A6708B421DF3EFA0DC9BF0DFD13F4B /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = C36EC1A4CF3BE368F9605138CD7CB99F /* string.h */; }; - 90A6711A27F26BC5133362E6F7FA0935 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F5FB0A7D8F47A97305C64CC2404AB3 /* alts_tsi_handshaker_private.h */; }; - 90B553AE84A4A0559908C43686367C07 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADAB5732A0C083A127FF5BFBE807394 /* base.upbdefs.h */; }; - 90BB93313C13A5187556DBCF4C489374 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A16C986E58C4D4790A01AD205F1C62D9 /* lame_client.h */; }; - 90C72016A7D64DBC2C3BA26DF428B9FE /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E13DC566F5693D7CB358DD61EBD04F6D /* substitution_format_string.upb.h */; }; - 90DA27F36644D32B30DD63E60F4ED352 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = F72629B5E3E85846E45AEE242FA15545 /* xds_http_filters.h */; }; - 90DCA5165B0AB3167506E708FEC771F1 /* query_core.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0730AE84D2819641162A6300FBCE6EE9 /* query_core.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 90EE9C91FB00F79E2BE859DE6D123288 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = C3CD6488F7C19732C0D5ADE3B731F6DB /* config_selector.h */; }; - 90F984473344F3580DD3C56DF2E99DCE /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB47FE0D474930DF72A68D3B6F6E9EB /* channel_init.h */; }; - 910A5B03ABC7F1578E138078EBE69591 /* sockaddr_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CE9EF99063E82F0C81A8357E0AF4DEC /* 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"; }; }; - 910F306F4E5F48ACADB50B144ABBD838 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 806D804C7A2051238803DFCA7E54FCFE /* base.upb.h */; }; - 91144BDBBCD0DB0DAEEE032CABF10A51 /* cmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 843DA236A67DEDF7C48D0607833BCE52 /* cmac.h */; }; - 9127D2249D6BD3464DCE5A669EA17C14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - 912AEF7AB47BE98F4ACB5497EAA92224 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A5594AC85A4BCCDF3A3BC14AC1F2EE /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 914307172FA90149B0890581F16B87FE /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89ECED4B6E1792842207C72F7101FF9D /* struct.upb.h */; }; - 914411E9D160CDB07B078A824B397F14 /* substitute.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50EB4F883CA772DD7132C582C7324DBF /* substitute.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9153050D9F107A460B5AFAD0279D1213 /* pcy_node.c in Sources */ = {isa = PBXBuildFile; fileRef = 14AF2DEDAF2B5F381E2B74C997BBD786 /* pcy_node.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 916C1BEAF6C4F42BA1F34709F517B2F5 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = CADBE25E9532EE62AC80186E0C392EFC /* reflection.h */; }; - 916EDB3119E3011DC67170BA3B45B766 /* bad_any_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = F36C18E462F395CD7CE249F81FBD0971 /* bad_any_cast.h */; }; - 917F5C92127AF4CF072B6866E7C74E7D /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 32398E89BC47DF807E68FE2F84AEA156 /* context_params.upb.h */; }; - 918207DC4A0F7C85B568B6D8AB824276 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2275BF8153B0D1D464CAE45994B5BD5B /* tls.upb.h */; }; - 918D7C30385FA4768615F234FA4B4AA1 /* duration.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 120F321E499139142877333EE282EFA8 /* duration.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9192BE2158EC823C31516AE4E0C02A31 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C60F67B29A445EDFA19D3D40C7132D24 /* nanopb-dummy.m */; }; - 9192FF9D85605BB373AB3A743E023E5C /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21685A6AAD2642B772F84140E578B0A8 /* 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"; }; }; - 91939EE6D3651DBC5319BE7B9BD4C7B5 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = D01D764F848732762154906CA67EDE28 /* dynamic_annotations.h */; }; - 9198875D102F25230AFEC93637636A6B /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27EB040C9F6623F53A8CEDBC2A07DE6C /* status_helper.h */; }; - 9198A4F194FC3E4CE98E64AF49277FB5 /* regexp.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B024046359A066F10122E255FB19398 /* regexp.h */; }; - 919F6656E2D8A529E93863C23BFB8640 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F503D6A45B2099D96A857507AAFD6D7 /* syntax.upbdefs.h */; }; - 91A3B6823A277FD7EB7F3C4ED15BD95D /* string_ref.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 080DE6EFA8EC19278A62615B0C71678C /* string_ref.h */; }; - 91A3F66B816A43A7C249C94E642C0BB5 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E48E851EDEE80DD2DD3A4244A8882BC /* atm_gcc_sync.h */; }; - 91A6CB6268B031923C90A17E7C58C5C4 /* fork.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FA6F17DE47110BDFEAC55F8AFDB69450 /* fork.h */; }; - 91B133B5D09E4D9523B9787B506AD278 /* server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5334B11BB7A0874C2963E2E78591A20C /* server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 91BA718C141542626FB9F3DD67D2593A /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 902C79C2F988CB00311D588742020FAF /* format.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 91C02613BD3E4598A751B14B453A1C9C /* buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E0CA0615F0100D4812DD20785E2F8FB /* buf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 91C2F9934C534EED1E83A3AB6669CEDC /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 99529AFB53A046FB2DB3E3A5967BA79F /* transport_security.h */; }; - 91E07AD4DD185D12EAFFCC18D7C11251 /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = BF391E4046D3E38846E557EE766872C6 /* local_transport_security.h */; }; - 91E9F7C40B628B2D8EABBF41BD6882BF /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 537E6C959AE50F65BB780F3D99DE18CE /* status.upbdefs.h */; }; - 91F054A8A3BA18FB33BB7842D0517F12 /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 558FEB78138F8D6E914C3226741CBFE6 /* zone_info_source.h */; }; - 9208A3B34ECF5718E55405E3FBD861C3 /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3B03CDE5AAA98BDEC3F7E232BD652E69 /* subchannel.h */; }; - 920EE8E3E69FBC7F81A2C64333939DE2 /* in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65C4F6C9239CE764D0188A0F8B0EF0A5 /* in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 921592DB7BD8125FCE18439896EF8FAE /* spinlock_wait.cc in Sources */ = {isa = PBXBuildFile; fileRef = F233A040D5335CB26AC78328CCCFCC1E /* spinlock_wait.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9229DDC53675F1FDFB0C4C3B7FB56577 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 93236C3E3F4C8B59F9D23B90083E88ED /* internal.h */; }; - 924A70AC0D859C8ABF3374D05DEDE460 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 851DEDC9DCA1CDA1721AF7FC32D0077B /* thread_quota.h */; }; - 924DCD7437C30BB6BD9563FCAFB2A3FF /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = A16C986E58C4D4790A01AD205F1C62D9 /* lame_client.h */; }; - 9256FDD12B5696E00216001552E95011 /* utf8.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 96DE2286415A052344C0F6506BB6EC17 /* utf8.h */; }; - 9257346BDDF329688084B446402E6625 /* client_unary_call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 185ABA0DC179F9A6BCA461B114A1240C /* client_unary_call.h */; }; - 9257C64CC9FFBDB27084E01BDABE8E66 /* pkcs7.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C22D0766A636764E0563915F251CA9BB /* pkcs7.h */; }; - 925AE4457A731C95FC5BCD0456AE3AF8 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C760A7FE09BDFDC990826F5DB964C9 /* channel_stack.h */; }; - 9267ADBFA747D6887D6468CE929FBB63 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 33D878849C7C735A5538DC91CB06B95E /* xds_channel_stack_modifier.h */; }; - 9279E885AA5561BAD0032A8E59F55364 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = CBE18E936DE3AEF0D077965B343DF523 /* http_server_filter.h */; }; - 929702649DEF8A20244D90EA2AAD79BE /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CF2C3151D883C28CD63E7386697F4B5D /* regex.upbdefs.h */; }; - 9297D27B0FEF97C32413014855222DE4 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5CA5EE1DC15353402FEEB104EAAFAE4F /* wakeup_fd_pipe.h */; }; - 92A1E516C5198E5454EB74DF6533697C /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF76BAA4C32D0A75873EEFAB878AC13 /* event_service_config.upb.h */; }; - 92AFD6F2BE59A381654C904F0054F952 /* test.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C293EEBD555F0093D25E9338CAC79F /* test.h */; }; - 92C94959E49B0EB6177A3EB73188E224 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = 5DC02CD35005D5EC01B54A8BE99C10CB /* inproc_transport.h */; }; - 92EC7BDF95106FA4BB22CC8439B8E5DE /* FIRPhoneAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B96B9F8E30E3E523EF8A827500F70E5 /* FIRPhoneAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 92EEAB4AD8AB2FBE2C16315454825969 /* index_entry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 895CEBE178D620DB513F64F9CBF4ED59 /* index_entry.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 92F048825FE266AB8D09790767212215 /* connectivity_monitor.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9831C4DBD2223F1C95190A0D511E27B /* connectivity_monitor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 931861667757DEAFC84E118D144423ED /* bind.cc in Sources */ = {isa = PBXBuildFile; fileRef = C7B775C26829ED5BC91474B6A43CB9CC /* bind.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 932A8682598C9A41F778EBCBC6D832CC /* call_op_set.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 7775282BDFC7F8B4AFF2CABDE7D3EE41 /* call_op_set.h */; }; - 93330066DCA43EA6CDF9F83F65A655B6 /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = F9D802CEE2442557DBEBBB89B9D745CB /* dns_resolver_selection.h */; }; - 933AF84309E83E9D34AC365B68460B1F /* exception_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7D4A427A4270E220B6DB9600522D32E8 /* exception_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 933DD22D9313E4CAFBE0941CE1C2165E /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F89D8C7938A637AA1A669F498A3845A /* resolved_address.h */; }; - 9345046302A1E6267FF9C1F91BF5E120 /* endpoint.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F400C3DD7DBFE9DEE16915515FA6F927 /* endpoint.h */; }; - 934C15756BB502A1E9F53EA2799AC835 /* versioning.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = BA9307C509854FD4A7A28A1873BA97C0 /* versioning.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 937A32F73E3C61AA782448F64B37A17E /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D365C16CAA0B8C6282A3774A4E36C38 /* xds_http_fault_filter.h */; }; - 939D32F268CE14F712078E5077D28282 /* pcy_map.c in Sources */ = {isa = PBXBuildFile; fileRef = E0A85F283FE7D435DADBCF60CD3329AA /* pcy_map.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 93A4A97D7B96F01FF9C7B7C801B769C8 /* string_util_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6700B793E2D1C6EFBA12F4C7C8D5668 /* string_util_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 93A6CBA2A24CE3057613391495DCE7D8 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E3EC9FBC638972A41DEEE83F8B1D59C /* typed_struct.upbdefs.h */; }; - 93B552E183C5DCE7521324851CFD7462 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 128BC5B34F91B957F31D73633B525055 /* internal.h */; }; - 93B5E9E2069365C59C0168FA9B6425B9 /* secure_auth_context.h in Copy src/cpp/common Private Headers */ = {isa = PBXBuildFile; fileRef = 6F2DDC43F322BC51321F4F2FD810D03C /* secure_auth_context.h */; }; - 93C1B92E51BBC8B948FE2F38F657FFCF /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 757DF5613183737FB611AF88A607CFB6 /* wrappers.upbdefs.h */; }; - 93D555FDC3BF5A91302EE3A06DB0BAC0 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 941DA661277F79EA7FD300E4F9DB6ACE /* channel_stack_type.h */; }; - 93DE580241FE0518DA5C7F19A04F9834 /* dynamic_annotations.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7BC94C5B9BAE2B14775EA499DE8D5BFD /* dynamic_annotations.h */; }; - 93E09FECE2A3E38A9382A6FA0FFAF72E /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3D0ADFC3A26CA2391392CBA33D0C59 /* sensitive.upbdefs.h */; }; - 93E9573A9ECC41B988A879B3C840660C /* snapshots_in_sync_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = AC31EC92853B558E1C2883EAE6D73CFC /* snapshots_in_sync_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 93EE757E9C461AD4DA0ED2769D80215A /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AD03B17B162D6269292321BFD27133AD /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 93FB4298FD5B4ADF63F53F24F5F077DB /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 847F94B62BC4C08B64A8B1A285CDC65B /* wrappers.upbdefs.h */; }; - 93FD02942DA5CE22F99EB4F749D66C46 /* xds_common_types.cc in Sources */ = {isa = PBXBuildFile; fileRef = 222D5CD5D1F9F334073952EAF77795A3 /* 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"; }; }; - 9418067FDBA9BA34EC983509985FE2C1 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 59545D091D38858ABA313424F20D5C82 /* rbac_filter.h */; }; - 941A7ED2BBF773B461466251286BF5BF /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 06926B472FFC0205E8282A2D7A31D8F2 /* http_uri.upbdefs.h */; }; - 941DCFB74CC9848A470C3C6F5298AA4E /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B7D7297C71BB30F9F2F238C429AB7F /* common.upb.h */; }; - 9420CB363F3F1727500058CF88B4FBF2 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 738E9262168C9608155C0F2377846039 /* load_report.upbdefs.h */; }; - 9421E3BA65D1E7C3CEC80B731EB2AFB0 /* pretty_function.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CCA0559AD89F4C152AA990E7F686E22B /* pretty_function.h */; }; - 9425127CE04B4E0A0892387A4A5C2975 /* p_rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 00CA251CC67B1A10B62249E6F289493A /* p_rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 942BA098464F2176B8053DDD045BF717 /* numbers.cc in Sources */ = {isa = PBXBuildFile; fileRef = A676A6A1675341F75A6780FF241E92E5 /* numbers.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9434980BC9F1EF53865807AFE5AA8BF8 /* bits.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C31F25B1C421AC8C5E1B06DAF5190D1 /* bits.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9436FE0437DDA78052284234CE0A784E /* sync_generic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C2907F9DE65F15117C89FF5CE675D045 /* sync_generic.h */; }; - 9454C90958F6D142545F146024AFF650 /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CC2B41542185814F8B2E458C30ED2F92 /* socket_windows.h */; }; - 945A73FE87BC9144D02B49C8D39D05B3 /* rpc_service_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 2677578817C44F7EC0A65F90A311093A /* rpc_service_method.h */; }; - 947A026D926E1D5FBBF031C27EF9266E /* cpu.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 5C8E3A4D669EB97BC1F5525004F1B0F5 /* cpu.h */; }; - 948F2647727175ABCC7E835E36A38060 /* service_type.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 9CF6338EB9CC49F5A00F849713258C5E /* service_type.h */; }; - 94B771206CEC938FE6CE6A70224A48AE /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = E49801020AFE5E2E8E61195F0AF783EE /* call.h */; }; - 94BF33D83311CBE3F988A55665225CCC /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 403420FD57F801406BA09CF67AA34299 /* util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 94DC416F2E699C82C5EE9F581B661F5E /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = B185F37F8856671E8CB87C39AC2E7261 /* security_context.h */; }; - 94F0BAEAD7217CC26E7BDB40B42D6F19 /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D0366A98ADDD50070B9F9A40359225F7 /* overload.upb.h */; }; - 94F611C34495A899581C9C0C82E38791 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 66A99DEF9170B961BA2F5F7671D5FA00 /* 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"; }; }; - 94FD4694A70A8FBBD838B036F3E5B462 /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 509E04DC4DD7DC7401200EFB5AF05438 /* FIRHeartbeatLogger.m */; }; - 9513A735DD413DBE4DFE1874EEA8F8D7 /* cord_rep_consume.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0CE331B4A316B5158904BD0AF7046BD1 /* cord_rep_consume.h */; }; - 952E899FAC5AAA65F7E18C1FDA181FA5 /* gethostname_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C99074E38B6B0820675CB8246AEA784 /* 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"; }; }; - 953256E8D3F36D4F6F9E77CEF0D19A29 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 66E7D05D43D2681FB8A647B71EE5EAFC /* secure_endpoint.h */; }; - 953E1C14F766D1AC81908FDCF6526267 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B6A5C8B82E5BB8F65103C56D6EC7D5 /* alpn.h */; }; - 95539361B283A1BC8B01489A726390B4 /* FIRResetPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C1307A7BCACCC3F4A4E9C91FB20801F2 /* FIRResetPasswordRequest.m */; }; - 9553B21217CA4452E77644E1A7507DEF /* decode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 3E1C7031109AF63AFA8568C092D4108D /* decode.h */; }; - 956E70E0178E3C45FF672DDB47B79F32 /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 544621CF0734E8DD6CD34F8DE92591C6 /* json.h */; }; - 956ED52BA8EEF9F353EBE376BC9F298F /* e_rc2.c in Sources */ = {isa = PBXBuildFile; fileRef = CE1D3F5CECF3126959D7FE0D1F812792 /* e_rc2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 957D566B0E40FDB92A3CFF0E084ED6A0 /* FIRStartMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 683B7B019CD25FF573249C768E4DDA5B /* FIRStartMFASignInResponse.m */; }; - 957EE0ED5373189AA63C72B409FD8416 /* malloc_counter.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 1305C0B1E6A416895C6478B37E56FEA2 /* malloc_counter.h */; }; - 959A5DBD5FEA48C0CA40BEFB9FE1A18E /* reflection.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 2AF97FCF21560E17B42AB9A924396382 /* reflection.h */; }; - 95ADA7E0ECB5E83D36904E014127D16D /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FB871EBA96139E497887203510BD0075 /* cluster.upbdefs.h */; }; - 95AF18AECDA1791E2EAD97A30F6C3390 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B8C76488233F9B77C6A3CA062AEB52 /* regex.upb.h */; }; - 95B0D8A05935EA5952D3002555167E60 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9035BC8BCF884010568F764CAC6565 /* sockaddr_posix.h */; }; - 95B78C9FFD2D92301957408326F32058 /* connectivity_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09400F7221E967EAE32529B40064FBBB /* 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"; }; }; - 95B91336468B71E3068958DFC0E47920 /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 842C6DD85798D71FFE0F6A3978064B29 /* thd.h */; }; - 95D86235CC3314AFC7EE581CC0B7F020 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B7B8E3942834457E0C677497D95DD467 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95DF8D0079162858D56EA915C5E64050 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3EC9FBC638972A41DEEE83F8B1D59C /* typed_struct.upbdefs.h */; }; - 95E04387BD82BBA722A9F5BE8E2E1CA8 /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = F8259370A64043B3DCAA9E5824148E1F /* tls.h */; }; - 95E2507AC994AF92FF17AA28BADF2167 /* fast_type_id.h in Headers */ = {isa = PBXBuildFile; fileRef = FC0413FB7D016F2CA26B29C8FF107925 /* fast_type_id.h */; }; - 95ED4D6F8A57C864FE9EA4D4383032B9 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 272EAB0B07CEF88D86A697C7A8E149ED /* migrate.upbdefs.h */; }; - 95ED6C2CC2FD3C689B3E7D653D18B069 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 03CFAE30300C2CB9B8F90D95DF297431 /* serialization_traits.h */; }; - 95F159670267F796679419C84A0BF0C8 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A0E81CE3F628D747868EC97D07285BA /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 95F3974D2EEEB0CDDE8DF51D76B88698 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA022C989B90B74C20524FC656EA6FC /* upb.h */; }; - 95F5C04E40734F3D1DB1DBB84BEA8644 /* sync_posix.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F17342CEFFC42DB864338830958B7006 /* sync_posix.h */; }; - 960F59F8EE7E1901CD48D3AD173EF6D9 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 085C3CC27446B08D4C41619ADA1FFEA8 /* race.h */; }; - 9618AE49D808AE0C7B6F7A971BADCDC8 /* grpc_streaming_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B88E0C25A38850E3616E84F5C36C4EC /* grpc_streaming_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9644D124CAC2ADEAB0A8D626B54EE136 /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 1380CA1378FD02FCA99D6BD6F8090838 /* security.upb.h */; }; - 96476B8212D2F7A18221BF56A303F8D6 /* thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 258B832FB63945A46BE1F8B81F6F4684 /* thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 96587A1A3F8C6CFB4E3BE84B909882C8 /* per_thread_sem.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F68E7432DBC881D4E811C5C30F103151 /* per_thread_sem.h */; }; - 965BDE3F4A4F7635E36EE9DB466C2E4B /* gcm.c in Sources */ = {isa = PBXBuildFile; fileRef = 62406121C08F30D2E7BCFAE7377CA5CE /* gcm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 966450F823BC3FB20DC67B0735115F95 /* leveldb_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD32C21BF3431BF755C1A9D4D9FBB224 /* leveldb_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 967A23D79CC9139EF33B5BD2A5935476 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA290EC2591C516C56D719B1852CDA5 /* dynamic_annotations.h */; }; - 967CD7C0E33324757D87CAB9A108A47C /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 870D8EB45AEF8BB328D6CF7239FDC52D /* regex.upbdefs.h */; }; - 967FD71710C6943B846C722182A66F1D /* transaction_runner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B3B5492C6BD9C894299ED99B20A54CA /* transaction_runner.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 968380A4A5B1CECE557975B35176115E /* create_channel_internal.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = B0BB9F9D829E3114AB84B6957EF89110 /* create_channel_internal.h */; }; - 9683F3E3C40CAE347A944E5258A1507E /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = B3591DAABD127666506E210FB2D0D5A4 /* xds_endpoint.h */; }; - 9698E201EEAC6D1A8DD829B27392BE05 /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = AF9B49254C141180AB74FCDA7F84AF04 /* slice.h */; }; - 96A058DD11A45AEFE68EDE05FD9108C6 /* config.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 42E0116AA1827518C6BA3EA94F423BDD /* config.h */; }; - 96BEFAB79E1689E4108639FC2E4FE1DF /* char_map.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2C6D86BA89D5C38DF0769CD58B4FFA71 /* char_map.h */; }; - 96C7BD3DCFDC7CC53FA2E3800073BB7E /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 1599A6F8C155019451146520A7A94AB9 /* frame_ping.h */; }; - 96CE6CBB59D8AD4D097421306E5B9C6E /* common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D620BCDF1AEB62F6BAC0833653E67E8C /* common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 971371C4B1FFDAEC64C505C29159EA0D /* ring_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9467481F7E2603037ADC577E208A3BC7 /* 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"; }; }; - 97153895728B6C42EAEF0637014C1832 /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A4786DF96C94BEA793A9C5243A9B166 /* health_check.upb.h */; }; - 972C5F331AC510976F90217F1F9A24E0 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 289A2528AAF51BACA0EE77CA6C863A58 /* alts_shared_resource.h */; }; - 973557F5FCFA4C070C8C5F69A5BC97B2 /* deterministic.c in Sources */ = {isa = PBXBuildFile; fileRef = 544F68A089CA6E9F03FF9B22195FA661 /* deterministic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 973F93675357C09FE39BF325DF21B0D0 /* grpc_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = D97CA3AEF43D21B8BF128FB1F7782F5C /* grpc_posix.h */; }; - 975297BE9FD8A573A447A96A0A66BBAB /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 86E2962D8352B9D73AD74FBC94939A39 /* status.h */; }; - 9757BFD2DC479844121239581DBD3E79 /* asn1t.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 454BC6F09893DB98D038BF08842DDF8F /* asn1t.h */; }; - 976340656D80DCFC39BB226DAE69DBF3 /* validate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B6B6FC6C8C36B2AAA03E9D840094C610 /* 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"; }; }; - 976D0782727D82A193D12C0FC2DCB29B /* overlay.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A06A319259E70B5428B5F626BA3B93B /* overlay.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 977568ECD4787671FDB7AABC5C4E7BFE /* grpc_tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = C44DDAF38CF22A343A43031C03BC8850 /* 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"; }; }; - 978A0E2367365AF83B7A564FE5F05AB9 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C3026A74C8A47C9916019DC5612A832A /* value.upbdefs.h */; }; - 979395192A1FB4230351D0CD371AFD1B /* randen_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = B9BC03AA51C46FBEF205B068CEDEEB69 /* randen_engine.h */; }; - 97A458AC021E526E99EAEC2D71E611E4 /* variant.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A814B69D1F85F802438ED668CFDBE5DF /* variant.h */; }; - 97B03F767139AF57EDF00509AA2743E1 /* spinlock_akaros.inc in Headers */ = {isa = PBXBuildFile; fileRef = 1245EA7C4914BC48F3409224DF7FF30F /* spinlock_akaros.inc */; }; - 97B9EEF3AAA390ADED8D18B64D22AAFA /* stacktrace_riscv-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 3C646D57A34E390E5AD2E5E427DFBE04 /* stacktrace_riscv-inl.inc */; }; - 97C740D50E1AB51F036B0B6C5612CBAF /* retry_throttle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B66A91920AEEC73F3627121DD04780B /* 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"; }; }; - 97C92FBDE4ABA8560AA5B4B732C55551 /* grpc_unary_call.cc in Sources */ = {isa = PBXBuildFile; fileRef = B37F5099C45824EEAA04C58C396669E9 /* grpc_unary_call.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 97EE817577C26832FF475E18B56DCD0A /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 58801E32C4A42A16557BA21E4B98364C /* alts_crypter.h */; }; - 97F9B2CD8D3509C4F7478D5EF12C6392 /* cord.h in Headers */ = {isa = PBXBuildFile; fileRef = F715D3FA7D1AA29064C66D1B95A09324 /* cord.h */; }; - 97FA1E703F4234292AF6A9E879E32551 /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 26A2410A18AF6C751163F4313DB7FB33 /* channel_args.h */; }; - 97FAC5EC62BAD55DA8C394A72C43C8B0 /* tcp_client_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = E05A18C9830C52CA3BEDE113EA6A519F /* tcp_client_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 980BD52E03ABD7668027D2C5D3E6774A /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C55468D656DA68A0FEBB52B02448A1D /* message_compress.h */; }; - 981294C52CC03CF03F858B044A8B2C2E /* port_example.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECD7C45BD93FA085A307E6852B8D685 /* port_example.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 981D544AD0894A8BF360C4B94A3B9755 /* bundle_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8128F2E689D384161325885434437A7B /* bundle_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 981DB743455F0BA335FBAA1AEA003F67 /* x509_set.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D8EDCFC2622E277B355AA171FBC0407 /* x509_set.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9822D6F6CACB0987D339E3AA412A64EE /* FSTFirestoreComponent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40A3CB94F9F0A09887BD7D5CF7B2CEC2 /* FSTFirestoreComponent.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 982BEF50638514728330187AC9DE55BB /* method_handler.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 3964536927C75365D692CF7268D5C2C1 /* method_handler.h */; }; - 982D1D96989598271CB76B0A317E4D03 /* time_zone_libc.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B756D9A2C31F832C76F825485E51440 /* time_zone_libc.h */; }; - 982D6D36FA92F72BA679C753812D3568 /* convert.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E03B4CC5DFFBDAF1F4AC00B0D31B6C1 /* convert.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 983A4E7FBDD9D7F672254B83FFAEA349 /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 2EB807AF59CEBBFEAD5D068C2AF0C15B /* httpcli.h */; }; - 983E5EC3CBAF6F54592645B54D29D247 /* create_channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 32C6FB56F78EB56A627DADA006124E0C /* create_channel.h */; }; - 984B490B182541C6806DDD227630B1CE /* handshaker_factory.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 28FBC142C4AA69D45856DEB3ABB67C9C /* handshaker_factory.h */; }; - 9851E64C401906A115A4E7A134817216 /* container_memory.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0ADCA58369C9314BEF7FFB6A8CEB21CA /* container_memory.h */; }; - 98655E772584D7E85FD1499B3365BA26 /* memory_allocator.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 02BA4924C1398B9F2F4BA5A3721B3520 /* memory_allocator.h */; }; - 9866766F1A4BA5CEBD9F970EA5D30F8A /* FIRPhoneMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 01800632BDFA1E468AA8488910C566CC /* FIRPhoneMultiFactorInfo.m */; }; - 986AF91BCCC6E7C53B65FFF3E6A9036C /* lds.upb.h in Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5186766C19ED0E80B260A731B62EAF96 /* lds.upb.h */; }; - 9879B0BEE7A70936CB33F7987FBCCAE8 /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 86E4A691EE109ED2C12573E958F94A57 /* alts_frame_protector.h */; }; - 987EA066020262193F602053033262D6 /* a_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EF78F69FA14F1CEA6270D635445FAD4 /* a_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 989DADD4D53DA77324D892AF89FB4156 /* base.h in Headers */ = {isa = PBXBuildFile; fileRef = D1AE94F64AB48AA3BA2E6A823B375E5D /* base.h */; }; - 98DA50013696A330CC1BFB9F7984AA6E /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3ACF56318EEBE01E1CC84185811B87B7 /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 98DF5C8408C2DE0CDA9C4E6E6BCB6ABA /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = C373C8B4F652E5E072559B5DA58DD6ED /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98E639949FAA5DF932378E63A5F35825 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = AAD0488A3346289766F43E611AC6666E /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 98FC2D623C3902F6163319B9A996B2A7 /* bad_variant_access.h in Headers */ = {isa = PBXBuildFile; fileRef = DCEBE57AA1157990290F48A8B0B75D9D /* bad_variant_access.h */; }; - 99068AE9A4BF8D5D3667E9D252BD7F46 /* FIRAuthDefaultUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B5D05458B59200757E195D54A4C21DC /* FIRAuthDefaultUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 991F7EE38CC63C02E8B2345C4685F3E3 /* reflection.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = D5397304C266A806CDF6150D539B04AD /* reflection.hpp */; }; - 9923C5927072AAE226BC7AD530206556 /* ofb.c in Sources */ = {isa = PBXBuildFile; fileRef = D43B052152B2FCB5579B8AE0F75FFFC6 /* ofb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 992B83428FCFA8BDA996FE03CD89FF68 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 59B6C8A3E2B9043D0619CFF8C04B9E4E /* context.h */; }; - 9930FF9166AABB844C25608F750453ED /* bits.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4F6FDEA4A5F1E357BF4010C8A5BAD9F7 /* bits.h */; }; - 9933C7F1D16994D5BC1277FBA436E360 /* eval.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = D2D2165AD6802C93FB32098129B45A30 /* eval.upbdefs.h */; }; - 993FB13DA90B37E835138949FFD0ADC6 /* sample_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F416956D1C0D99E46922CC4EA6A5184 /* sample_recorder.h */; }; - 994AF0D92CCF092872431226E28E1052 /* thread_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9343A462382C988ACE502EDBDEF7BD01 /* thread_manager.h */; }; - 9958A262BEB6EA9FE6501BE6BD8AB508 /* FIRSetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 11AF86F9EF33BD7DF6343A3B802DCB6A /* FIRSetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99592C16B2270DEB62F894FA7D221DFA /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0A557D90815FEAC898E3BBCAE0D6167 /* mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 995FA7F1A62FE96D70797DD66788B426 /* endpoint.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D7A711902FAFD58B0D51DE512C7F0D9 /* endpoint.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 996642B3A0322A09824DAAE1E6359153 /* FIRVerifyClientResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA284AD4088A4114E393D5BF3E14BA9 /* FIRVerifyClientResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99918E97713ECEBEFF29B4ADDCD7D359 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A63E6C3A44B7F2ECECECAF4C02BE6C0 /* signal.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - 99BB221F8E858B015FC76C82E75370EE /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 47E46DFB995A1607B149A8F97C7AB2A7 /* GULURLSessionDataResponse.m */; }; - 99C6192BAA3C9BAC8CBCED82EA26E91F /* external_connection_acceptor_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD45AF9835B6BDB1FDEE9D1B4389C76 /* external_connection_acceptor_impl.h */; }; - 99CC26987DCCE9A2DE3DDA50BEA74194 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 2E5B439F90A941226BD2EF48024DF759 /* promise_factory.h */; }; - 99D3C05BBFE89244F2E77A1E0D01F057 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = C0181A546BC885270BF0ABB42116D71B /* byte_buffer.h */; }; - 99D904F0C27F231D14427D2096DAD329 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = A86B7F7718E3856DCCC9FA5AD5626FEC /* server_address.h */; }; - 99DA4B5EC19DF79EC213857E35CC9F39 /* div.c in Sources */ = {isa = PBXBuildFile; fileRef = A68DF4B310E5F88FCD5FAE5991D0CB43 /* div.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 99E3B370CE7444982BF29302B21348A3 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 16F960930908E8DB8DBD6B435D9BEA20 /* resolve_address.h */; }; - 99E53AB68A17E18FBB3A66D25C26A6A5 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 46D8DEF4E450DE3F1C8C4C92BCD68576 /* frame_handler.h */; }; - 99FF4CE016FB173F2F424683DE3094E4 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 537E6C959AE50F65BB780F3D99DE18CE /* status.upbdefs.h */; }; - 9A0DC3BBD0585C38AE625896D9DBFFC4 /* bad_any_cast.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = F36C18E462F395CD7CE249F81FBD0971 /* bad_any_cast.h */; }; - 9A1313E00E6D76C8F99B3A0178ACDA3B /* rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64D934788C061DB7268A7225C4E67251 /* 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"; }; }; - 9A189F80E9390435B470990FE6E4EEBC /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 2DF6FABDA9E55396A5A08C2A0A88EEB0 /* completion_queue.h */; }; - 9A24F1FC699ABFB7DA6706210BA9A82B /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9BD5515A5433C313CEFF12AC90FD080A /* transport.h */; }; - 9A37F4F0DA684ECF7E042E4F1D8E6DC0 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BCB6EF77612A02652B40481FC7C0ED3 /* jwt_verifier.h */; }; - 9A48AD2716119337DABD1508C6347AED /* leveldb_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2A09129A84D16BC2141876A2ECF39439 /* leveldb_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9A5AF424E98D4F0DAA274555925D87C3 /* memory.h in Copy memory Public Headers */ = {isa = PBXBuildFile; fileRef = AE2CE103B38BC976DA045BA966B95FA2 /* memory.h */; }; - 9A5DAFC85C26EFD0F890E9E9BBB1BB52 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = C7269CBBBB056E18A8989C8BA49561DC /* call_combiner.h */; }; - 9A71FAC9DBD7223155096DF500E6BE94 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = A4879F426982C95E908B0DC4B0B5EE4A /* fault_injection_filter.h */; }; - 9A75407E78A24CE12CA470CF479A627A /* rpc_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82365BE95D0F61322C410B9222B8342A /* rpc_method.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9A818A09A5AAFC9C8EEFDE0577FCF5CB /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EB189B09A053244B12686A0DD331D66 /* internal.h */; }; - 9A8A7BF5A4A61C8598B282D5C73C7190 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEE68BA6F625E44541785565BC948DC /* examine_stack.h */; }; - 9A9187555656B81F569B56AF648A0F99 /* set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = B654291838E7D415925BC88E230F0EC8 /* set.h */; }; - 9A94A73BD36650C2A6B2E496CA476D7B /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = B385F9E1755D429AAD18C5EA5D3FA9C4 /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9AA3F47BA5FE461B769D5A931CC266EA /* FIRAuthWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277CCD76DA7B067320BA681117836189 /* FIRAuthWebViewController.m */; }; - 9AB0AFD4D64D2B9B6784760C1371F4CE /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 31E8BB4CBB6CC716DFCDE95657E0D4A7 /* alts_grpc_record_protocol.h */; }; - 9ABB3269DDA6680FC892F4384D039934 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 26132B0505FD1F5C6017C3F830906A0E /* ssl_utils.h */; }; - 9ADC047AB3C3A559BC7D9CFE2CAA58C3 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C8645FD664462639F4CC7BAA73B33C /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9AE203AC4337B9C5666EC2132B4B1DD7 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FB242F75F16071761D1F27A801B3E7 /* proxy_protocol.upb.h */; }; - 9AE3EEFDB83111A53FC678235F8CF841 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = AFBDD484888DDC549AB8CA1124B35A18 /* pid_controller.h */; }; - 9AF8609EA6BC81E0C7A2EB7E745D6CE3 /* writing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C47A0B5C04C4EAEAB4E3637CF1386F3 /* writing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9AFA0F9B81564378D12CA9FF4EC27B31 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A6AD12EFCBDC400DF3A8218708542632 /* fault.upb.h */; }; - 9AFA38F20A57E58E9E59391B865DA88A /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 8632A07B4FA18EC716EFF44F1531135E /* check_gcp_environment.h */; }; - 9AFDDAC689B93717D8E37153C9D25C99 /* cycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 351F5AD28BA1065D0765745AE13DBE2F /* cycleclock.h */; }; - 9AFE394FEC76C1A77AADD54CC860B6DA /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = D8F18D863A904F7D9A7D3DCEF0753001 /* dynamic_thread_pool.h */; }; - 9B095A97B807686F9F78BE62DA3CA54B /* msg_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 4B3CF7A5C9AA34CEF648438D6AD11152 /* msg_internal.h */; }; - 9B0AEF8B72D04DEEED2C6301A2681F0B /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB347B060AEE9899E9C7B094FEA5BCD /* http_uri.upb.h */; }; - 9B0C3BFEF47C2994F4FD889704B74B64 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 745DC281566A5D1F63B9AE8F192A6547 /* alts_counter.h */; }; - 9B0C7664604C2AA1F898A2FBB959E8BF /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = CA542F9D5EBAA2648641D0696B7DFAC5 /* avl.h */; }; - 9B0E50C5D3EAF3B84C25C4A04E064FFB /* serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75F0CE0B64C08C2E2FF9B625156052AB /* serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9B1774FC74E240A969E6A138D6CBC59E /* obj.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAD3F5F27AC7B82A341BF9833C8A251 /* obj.h */; }; - 9B28F37A071878C82851758B664336FF /* grpc_authorization_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = F3A67551D5639EB99BC8DE8AC3A031D2 /* 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"; }; }; - 9B31D0CF0EF5DE9BBC8898F772F3DF6F /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 2677578817C44F7EC0A65F90A311093A /* rpc_service_method.h */; }; - 9B3AC8443686B5264DD0BF77FAEC82E7 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 176D3E42413213895429CA7ABF70BE77 /* sync.h */; }; - 9B45CE01A7C4378EE2C1042E1B17BFAD /* leveldb_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9FB4A7CE6B95676BD9DE1C91B045ACBC /* leveldb_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9B5020C29D152991937E88F37480F36E /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A712F3423A4271693EE4062740620EC /* completion_queue.h */; }; - 9B5E00DE35DD1991A44588D3803874A7 /* FIRVerifyAssertionRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 38758B9C60618B24EF16969AB849A353 /* FIRVerifyAssertionRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B80107AB9B906283D6F9D1F94C1D470 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 76947F9133E5DD0EE4AB28A6D56A25B9 /* aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9B8601D63063223C657F7AB09671D691 /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = BB08AF5701C2D462EBDBFCB35EDA6FC7 /* transport_impl.h */; }; - 9B9A02121E7FD67DCBE6403AB368856C /* symbolize.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 18F4037BAD085E86E22627E24B18A6EB /* symbolize.h */; }; - 9BA6607406462B5E6BCFDD47F2F106C4 /* randen_slow.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A74AEEAA35DF022A0436DB697F080F2E /* randen_slow.h */; }; - 9BA78EDEE692D963A0E5819D85953F1F /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 9725AAB7A869B143B3B6D3B3FECD790C /* parsed_metadata.h */; }; - 9BB2AD65E3F5102300FB2B3152E6F3CD /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 97DA45B8BA1834AD8D49573C31C09F6F /* client_channel.h */; }; - 9BB53970BD349845723BA33EA5739D73 /* pkcs12.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBC5FAAD2345D712AF224E2301033E3 /* pkcs12.h */; }; - 9BB9CA15379BAB1AC7898907125DC8F0 /* FIRStartMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 57D4DC1CB570DD9F0991A0C0B936A1BF /* FIRStartMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BC132DB5079556EC51FFD74F1DB9240 /* FIRAuthKeychainServices.m in Sources */ = {isa = PBXBuildFile; fileRef = D85093D2E5A2786BA6F08D51D6B94DC9 /* FIRAuthKeychainServices.m */; }; - 9BC757AEF41CBA8FA4F272FF740790E0 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = F6812B437C1B185EF3A69575A2372FB4 /* sockaddr_utils.h */; }; - 9BCF53CBE0CA7DB9ACFCF6D296F8CEFA /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B2D349EBE125AC26A3E98F058E11448D /* pollset_set.h */; }; - 9BD14D9678FE59FFB94911645E385408 /* memory_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43FA37281A22B19D72F841F269ACCE2C /* memory_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9BD26F28386EC11BBA3A90CE1183FEEF /* reflection.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = FECB7D91E22F4D2504A111623A6A6ED9 /* reflection.hpp */; }; - 9BD9FD4D70615C84A2249BBA1D3D8CE2 /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9E84782180234D80DDAA46771D10D223 /* xds_certificate_provider.h */; }; - 9BDFE02D100320987274F501CD3CFA42 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA7470987765837DAB872FDDA2A62BA /* discovery.upb.h */; }; - 9BE5E8A9EE4A9AE55C2C73CEB5DBF865 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9982753F35141DA7C6C7223EC7AB08BE /* rbac.upb.h */; }; - 9BE8EAA282BA8B2DF208F37BBE100735 /* v3_pci.c in Sources */ = {isa = PBXBuildFile; fileRef = 5944AB752283D98A6EE08F0C1216B66C /* v3_pci.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9BEA7BB5A5A79D836140F65577DA4A85 /* event_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 338DCFDF07BF23D05CF7099E55CD03AD /* 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"; }; }; - 9C00B68D98B3C5CFFEC159005573500C /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DEC5DCB722723A5C567A8DD9E3ED1F89 /* http.upb.h */; }; - 9C09965AE5D811D1CC5BD9998E47E0B2 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 90EE474DB361EA6A5BC977E3C6AE8ECD /* mpscq.h */; }; - 9C0AAE9B2A6ADF514FDA6C0202974FA3 /* ssl_session_boringssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC46D9B27D539E4B26C20500CA66FA09 /* 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"; }; }; - 9C0D1090060FB95BB0A1A23B2BFD6B32 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 37725DEADFA99A97087236A5E26BC783 /* load_report.upb.h */; }; - 9C166964E84CF52989D67E6FFC4C9DE9 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BCA30FABEA5E587D2FABCE7C423BAD /* GDTCCTNanopbHelpers.m */; }; - 9C23C1A3691C83246853C966F9744274 /* eval.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 465B01AC4FBD4F077901D79CB83AEDBB /* eval.upbdefs.h */; }; - 9C5363ED8F52C347BE5D70261376D18E /* cipher.h in Headers */ = {isa = PBXBuildFile; fileRef = 45620454AB15091C96150170C78F36F5 /* cipher.h */; }; - 9C7076BC7B88BD68A3D6ED7DFCAAE12F /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = BC17C8532FFA2E138B5998A99E8AF139 /* socket_factory_posix.h */; }; - 9C752156FC64559DEFCA85EC049726A3 /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 83A7F0AFBC6A66D32632BCEB9EC41490 /* resource_name.upb.h */; }; - 9C8291900D808AA135FC78970287B5A0 /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1E4C15DD4AFED68BE7C12B431F3A3F /* security_handshaker.h */; }; - 9C88CB7F92F65BF0CAAFD00E5DEBE5E4 /* is_epollexclusive_available.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8FAFD4A53F35F90DF0A545F674F55EE /* is_epollexclusive_available.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9C8A24AAD93E0B544380A584837BE48E /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A4879F426982C95E908B0DC4B0B5EE4A /* fault_injection_filter.h */; }; - 9C90DA067DAC812EB523ECFB995CA90C /* grpc_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 483F1BA8EA46A62D62C118AAE3B83C36 /* 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"; }; }; - 9C9799CD9CB39C8C24F8CE309D433934 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 492D2DC2280346F2F0164538187158A4 /* listener_components.upbdefs.h */; }; - 9CA04DCB5433D3CD78D8E65BCC439CEA /* FIRPhoneMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F32C5407C3B2DD0049AE55A06D8AD6F /* FIRPhoneMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA9BCD02E64CB8FC656DC8B8F49FB2A /* pem_oth.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BDED696BE75F68B6825C21F5E27B66D /* pem_oth.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9CBF30013ECB20BE8DEB8B100ED4B672 /* pem_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = F95C628C2A27D30BED6DCC9D38BDF1C5 /* pem_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9CC725A30950A1B123B8DA6DD5D783F8 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A39C6B3C8330782B999C80DFA9DF9B /* core_configuration.h */; }; - 9CD1FD566509D560C9F44924A0CEEAF4 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 9AD19B658F379932BE01372F570E5D64 /* lame_client.h */; }; - 9CE770A5CE88F539D6C13979F7E1F466 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 8632A07B4FA18EC716EFF44F1531135E /* check_gcp_environment.h */; }; - 9CFA0657FCF7E526BA74BD326A0EAE0A /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E2D3EDBEC2D4BF48FB40811BF9228C9 /* load_balancer.upb.h */; }; - 9D016720B34D37BF673707C50E7A93A6 /* extension.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E1076622A68901C6A2041768AD5D700 /* extension.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9D0725EE4A4774A1288A37DCA0FB1ADA /* civil_time_detail.cc in Sources */ = {isa = PBXBuildFile; fileRef = DAD4C2942F03A926CA0F41061B13AC86 /* civil_time_detail.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9D12389F3A8EEA84E5F1659ED2A5ED0C /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BBCE318F8243FA9CE289E45A666A4960 /* orca_load_report.upb.h */; }; - 9D12D6BC317E61F2091A178367773911 /* tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = B635157D0C0769DC5CF4EA1FF3FE6407 /* tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D12FC5CB86E6373656D96D181FC4A85 /* resource_name.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C4A54ADC637409E26CB1E73A461CD23 /* resource_name.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D2FF1E7047752B7B21394756E409A2C /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3964536927C75365D692CF7268D5C2C1 /* method_handler.h */; }; - 9D35FE379EF746A44CF165941F75E9F6 /* mem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5E8F118AC86E9E7EBAAEBFF0ECFA062D /* mem.h */; }; - 9D376070C14AA7AE692D5517AA4CEB5A /* timers.h in Copy src/core/lib/profiling Private Headers */ = {isa = PBXBuildFile; fileRef = B2009767EC2AB43C81A67E16B43E0DC0 /* timers.h */; }; - 9D71CC98DA884922AD0A5060F6E88199 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = DC971175DE82493CF24B7F675C52309B /* oauth2_credentials.h */; }; - 9D7B99F2F661D6EDA0E15D6606D8F7B5 /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0A15CFFABD2B2AD12F72F339A0140B /* load_system_roots.h */; }; - 9D90DB59FE9E588535F8E15AADB041CB /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C7E80206B45ADDCEAB1569064FDA5ACD /* tcp_windows.h */; }; - 9DA5D7445F536C2AC5AADE9AF6966257 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D2EC4A893F19F738E391FCF01CB18C /* security.upbdefs.h */; }; - 9DAD08EF75E5549FEFB162DFF59C8422 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D7DD4C71EE11254080F7DF0717AEE0 /* percent.upb.h */; }; - 9DB69E9124F97E070315FC8F91CBC153 /* d1_srtp.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2265CDD259ECBF9355CD4A223DBD4D3 /* d1_srtp.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9DBA508C7517EB22CEE42471E863C1EC /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = 698C96D39E5B7CA5276758B607E300BC /* ring_hash.h */; }; - 9DD3B03D41258DCBF365CC8339CFEB50 /* thread_pthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 76067A3A72F9B8616CBA331F79721759 /* thread_pthread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9DDD2F4E8F123214A69767FFA5FAB4FD /* decode_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = B41124671B074406DE87DC81428576DF /* decode_internal.h */; }; - 9DEC599E5D36F84D4FA4521785026769 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F424B0036782D65A3C3042296B847DDF /* tcp_client_posix.h */; }; - 9DEF60CCDF71421EF8F0ACD70CABD71F /* duration.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A5F7B06CDBF7E9AF90CF256D49D8043 /* 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"; }; }; - 9DF188CF5FE0C8866EB7102312799799 /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = E6A3DC25092FF62F5600E56A662F43DC /* server.h */; }; - 9DFA3C39B3CC3B938CD1F888967A28B7 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D6084F302AF7DE26462CE35B96D689D1 /* wakeup_fd_posix.h */; }; - 9DFB5B6BAB6BADBC984298AF7EFB0029 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = CB87F14890BC900D8882C824C4365F72 /* firebasecore.nanopb.c */; }; - 9DFC33DD87943B464B073553B320E441 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 778B7A0BF342480EC6F96B9D0D5F5333 /* tls_credentials.h */; }; - 9DFF8C7B9E6E582A986B057E1889333F /* FIREmailPasswordAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 4882020D02BEE009A13FAFEA24653A32 /* FIREmailPasswordAuthCredential.m */; }; - 9E001677D3B5C8DD0F642555CD5D2A12 /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 02B2BB94E5E99839ADAD523E880D5433 /* value.upb.h */; }; - 9E07C4FFE2BC632025D49D03DA862E7B /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E041CE6B4F7947253B18999C4AF56E /* FBLPromise+Always.m */; }; - 9E0AE646FF00655E8A753161189F8B6D /* leveldb-library-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A76F1906C8853A58783E519A67E1174 /* leveldb-library-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E0DFB3985D384C95B85267A89F98FFE /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E566718B81CF266276E026CC37C9BC92 /* validate.upb.h */; }; - 9E1AD752F6A44A77DF30A5384488A319 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF31B6CC200EEC3B0FD6307A2C7C63B /* http_proxy.h */; }; - 9E5FE3574D56B34865481C81AABDE887 /* pcre.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 0CC06ADACEB1AD6CC264389DC5E29D7A /* pcre.h */; }; - 9E6A95C76D3EB1CAFB18A27207B30C48 /* unix_sockets_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E1B174FEECD67B732F4B53E8CAC8B2E /* 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"; }; }; - 9E6DF2E195AC85FD404F23FACD2D1E57 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EBBC3300281DF8820FFD0B2517BA714 /* status.h */; }; - 9E7295C22D640DAF89A3D60859426A83 /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A473E17BCA02A26F2CBEE82B4FB074A /* node.upb.h */; }; - 9E8639AF84AEAC828563CBA4F10C79D4 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 72BE14ADB8E9D63BE83FA5F437EA17D1 /* message_decompress_filter.h */; }; - 9EB27F4F92A74A1325D2E50221F93593 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 32277E5B585B3472A2C9782C3E7147E3 /* sockaddr_utils.h */; }; - 9EC48DD78E3C74584464EB0D8EE5D6A9 /* FIRGetProjectConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C472DEB0BEFDBFBC36D5A4706B6ECF5 /* FIRGetProjectConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EC55EECF94C121CCA69BE87D4960DC5 /* internal.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = 15321B846B04CB1F6A881383F0DB88B1 /* internal.h */; }; - 9EC6F562C9430ED12270259E23AC4889 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 185ABA0DC179F9A6BCA461B114A1240C /* client_unary_call.h */; }; - 9EC8322F61FED76F8E27AF5088864CAB /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = C7C58B7F97CDE713ADE08F118160FEA4 /* retry_service_config.h */; }; - 9ECB976509F0FBE321B595B9A0B8F49E /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = B272B3AC437369888B4BEB0E375077EF /* load_file.h */; }; - 9EE1EB564985AEAE11D3E5E9A8B82052 /* a_d2i_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 5852C08B5630DDB5A5C96AEC96900138 /* a_d2i_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9EE505E49EA80EF3CE8895B6B144E3DE /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = A71E7264BCC67FB63EDBC52A55CA956D /* client_channel_channelz.h */; }; - 9F0F54BFAD7CCE5C2755CA4F687A81D8 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D415C7C36A9A8D7F3F9675703F552E /* csds.upbdefs.h */; }; - 9F16A9D67AE609CEA29B6B9CECF45F44 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 9278345F85F2E616B43C10F4D8D79E22 /* port_undef.inc */; }; - 9F1A4AF38F633E8167F3CD83AE2AB476 /* version_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DAC6D463F38520CDEC390263A93D7E8 /* version_set.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 9F1D4D5C9E1FEFF74B818815F53176FB /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 35B2EC2870CC90FB892D1544E3724FBD /* activity.h */; }; - 9F25CAE3674F2490F1D903CC4F85E657 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F43D0D8F09FCC95BD0EF4D386F8E8F9 /* alts_shared_resource.h */; }; - 9F27DD2BD414BA755B798A536BC7ACF9 /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF34AD69E917276389B10B463DFC4DEA /* 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"; }; }; - 9F3F96B607A583017A01629D8834E0AF /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B5F1B2CD3C7C4A727C96B227BADCAEA /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F403B078E8638BC19EBA579D0340D9C /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EB4857181698949BC3012F44F99E4C7 /* compression_internal.h */; }; - 9F4172DC2B36F16E84092F99FEBC8E29 /* secure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 322D997FA4CDF6864964B05AD7459511 /* secure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9F6608C6E1E51D36AF2413CF84495CC7 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = E086E6A087051487FC30ECA133659F06 /* xds_listener.h */; }; - 9F6E05BB90388FE1484B1EED949F7763 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F383CE603CBCB82B2296FF8F0C9C88 /* alts_credentials.h */; }; - 9F6E1D186F45F375803858887E9BF329 /* FIRGameCenterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5477454A0680070AB8EBB2B5792118 /* FIRGameCenterAuthProvider.m */; }; - 9F7E2EF6FA01AA536EC842366997BE5D /* dtls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8BF6AC21340963544E8EDB827FF15F /* dtls1.h */; }; - 9F7FC6477A6236462015AB10055DFE5E /* FIRAuthOperationType.h in Headers */ = {isa = PBXBuildFile; fileRef = DB090B7C2BDFB39C0463B0C158AD6B11 /* FIRAuthOperationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F9EC98E49E006546FE01DE9BDAC2048 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 787CE6B6D5330420BF853E6E010ACDE2 /* resolver_result_parsing.h */; }; - 9FA35F5756BEA6044656F0B0F4904569 /* listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A3D6BAECA5BE1975F12C7FCA3B0C62E /* listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9FA6B1BA1C74B9C0B6446F81DF810672 /* direction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0491067842479745D9A5CAD7353AAA78 /* direction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9FADB1F46BA374FD4C0E7A939C9B1B45 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C1475707A7E54804EEDDC26C78F1881 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 9FC69CA6BCE02A7EF247BB10A99B5062 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = DFBB19560673ECCA382E404ECF23EA31 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9FC7E891EBC7454714DDCF62F4E8BC90 /* auth_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4BAB95E1B5D560D31ABE95BFB7348DB3 /* auth_token.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9FCC401C766D213591E5815FD298397F /* mutex.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = E8248AC1B424553C75E095E2F0A5A7F3 /* mutex.h */; }; - 9FDB17A180B6FF26F27A75DC0DA1ED93 /* threadpool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E6E5A9884964163F23FB4EF2D037847 /* threadpool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9FDCE99BC084DEDFB80F99B2F37F8A45 /* ecdh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 748535293A4B8357E06D6A89DC8BC041 /* ecdh.h */; }; - 9FF45696BDE2AD3B2C1D8A7536D88EE7 /* timestamp.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34FCD35F76CD3465E5CF8DAE795F964C /* timestamp.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9FFE725920246CBE4E4E7DA8DE02745C /* symbolize_emscripten.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2313BB422A91B3865C047C93A1C13F67 /* symbolize_emscripten.inc */; }; - A00359268A5062606B6D9D038825AB2D /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 70B99A75D8523C9DEEE2B63870A22149 /* thd.h */; }; - A0267F587AE95A1B90CE6EEB723E72C4 /* mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 84C8A845119E06EE804C88BE83FB10E7 /* mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A02F8AE37C4D02FB49261FF9B4166140 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 738262579719C3A86B6310A3C464C738 /* value.upbdefs.h */; }; - A035214B999830D9307817264C133990 /* FIRPhoneMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = B484180B4EBEBFB48A405FCF3FE70C99 /* FIRPhoneMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A0445F8A442C6998D2F562752E3EC17C /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A24B447B954A786A8DA8AF54CA827CAE /* message_compress_filter.h */; }; - A046BAB6F590DF9B572C8AE0E7A78DE7 /* identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4779625A715B73E29A8413C645E64F81 /* identity.h */; }; - A04E80CB2169D16246807737CFD08B7A /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFF590FAD835730FDABC04CC51CEAB9 /* transport_security_grpc.h */; }; - A0576D406DAF57413D3D233F29F4F679 /* decode_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B41124671B074406DE87DC81428576DF /* decode_internal.h */; }; - A06E779E7AAE3C787AA4ECEB7B06A8EE /* verify_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 072500AACD576F7DC05582E9B1DFDBDF /* verify_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A08E2D563FDBD4FB7BF82F01B5C3889D /* port_def.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 3F9A2324EFE1A9094AB146BD55BE5FF2 /* port_def.inc */; }; - A09A1D322E0AEADA9FA348ECA5F2F8CE /* status_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1A9B32250BAC29DB540FB31DEE78F6A /* 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"; }; }; - A0BD3AFEBCA816307E276F05CBAF208D /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 75ED761F119C0CF1FE31AEF10B707E9F /* chunked_vector.h */; }; - A0E7444ACC5A9C4C6BAFC91F0834B1E2 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7B56FD7376EE690838AA923F85B40C /* service_config_parser.h */; }; - A0EAA80499D72ACDCFDFBE778B2FD85E /* msg.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = FD15BA8BB1E9FAA7120F8B11290B2976 /* msg.h */; }; - A0F6CB47B3A3CB8807EA48DCFAEB9AC5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - A0FDFAD5FF9675D636334F4FB06A2E5B /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EC44168BAA289E239377CE1F0728929F /* client_authority_filter.h */; }; - A11FA3601FE099F804BA34AE5A719BC7 /* memory_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = B10BA2A48A4387790E2E8E48FD9575A8 /* memory_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A12B43304EE4E7B2DECDEED7691DBE8D /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A734BF9CAFB89DFA61BC0BA6A7DB06 /* context_list.h */; }; - A1301DCF85382385267336AFDBCF6854 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C3CBF9A2AEEFF612EA6090F5C5849DA /* iomgr.h */; }; - A14125D316F98849901E049C0901BDB2 /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 2E2092D66C4B88A11CF1BD9D12226F21 /* time_zone_fixed.h */; }; - A1444A866270314497FEDF3E34D7EA14 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = D1CCF723D1B26DB04AF16726A65BB223 /* sync.h */; }; - A154CE45A2D9AF0530A5293DA3082156 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E3E41FFE5E35BF2A37E4E9BEF010F8F /* alloc.h */; }; - A16CE54A5813C71EC90FA4DB4E4388E1 /* lhash.c in Sources */ = {isa = PBXBuildFile; fileRef = F29E47AD285743120CB04BFD9F819687 /* lhash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A183E24DC92136AB20DCA79576C02CA4 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 71120AED1D2D58A379F679EA3D7E57C1 /* string_view.h */; }; - A18491E95C7902C03DBED7F4F1881A93 /* throw_delegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F57622D49B27A597B810667D2AB89B01 /* throw_delegate.h */; }; - A18EEA6F4D13B71BB34F3D414976ECF7 /* cipher_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 22539ED4ED6419590B656234F6A85E51 /* cipher_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A1971E641D2E0843D6F806B225E98A6F /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6757A48ECB7053F1A1B5F3E091E57F /* secret.upbdefs.h */; }; - A1B34FB337D83F7261BDC27E36D3088A /* byte_buffer_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 137F0BDD0FBCC30B59A95FBC6AAD5190 /* byte_buffer_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A1C0C5A4EA8A53D40A4D0BCEEDA7D3A1 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = E6810D0196C1EB8D83072918AFC948C3 /* validate.upbdefs.h */; }; - A1C66DEB514B813F6A9C1BB86B1AC27F /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E07766BBBDA07E4BC2FB9C6661DA6AA6 /* internal.h */; }; - A1C6838BF4C88F03CBC277ECD6B563DD /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B07DEBFBDA24D1D3F2412DF0F81656B /* authorization_engine.h */; }; - A1CD41A23E35A6D38C05975E946E67E7 /* FIRAuthDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = D5A8123E62684C3D6ECE4DFDA0832DEB /* FIRAuthDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1E11A80DEE1F24DD198828CFADDFA99 /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 79E05EE534DA72A2C427B0B204D75916 /* binder_constants.h */; }; - A1E2165B35831D77723E938CECA9550E /* address_filtering.cc in Sources */ = {isa = PBXBuildFile; fileRef = CF46505CD318965F101C06DE376A38C7 /* 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"; }; }; - A1F3D4F9099385FDA26FBC1D86F29F9D /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 45A160ECD03432F448182A72378495AF /* port.h */; }; - A1F8EC971331C087995572B875712A7F /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AB7138D6A69866788DF7070E6D9E7A7A /* hpack_encoder.h */; }; - A20A027FDA6B2A9B145E78351E2B4588 /* dynamic_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 801B4E8061868343881352B94F4097CE /* 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"; }; }; - A226ED67BBD7EB93483D4C2BB6D30B24 /* buf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7E42C7053CD3F40C7B1AF6F78A0D5F3A /* buf.h */; }; - A234B09E07CD184A81FD51B853E4A89E /* time_zone_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 2167347ADE2E4333838FEEC3311BA218 /* time_zone_info.h */; }; - A23ECFB9FC31497D2592274124A6D893 /* load_system_roots_linux.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 9EFC2DC0949691ECF6348F58BF217772 /* load_system_roots_linux.h */; }; - A248B0149DD72D33ED6FFA0562E27DD4 /* ssl_key_share.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF53444CA98CB0EEF8C2DE8E7F24355E /* ssl_key_share.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A24B0F2E5C1E20A5AEBDE50508AEE2B6 /* parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = D93C74FF2F3EB52B18FBA4028AF762A7 /* parse.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A25320C74BCF7F64FF15695C34E936E4 /* FIRVerifyPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CBA8D76D22BE12FB8B493C4E990614 /* FIRVerifyPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A25494189E7F4335123925C9040ABCD0 /* FIRAdditionalUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = D13D74CB48A75E26EB2CA5C2B4235795 /* FIRAdditionalUserInfo.m */; }; - A25CFEFB7FE18C98F5D0C1D9FA903F47 /* create_thread_identity.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F0CD28FEFFE9BE1FB6AD4EF9B24FA93D /* create_thread_identity.h */; }; - A25D04CC340B2C4BA4323DCEE0BD6D7E /* file_watcher_certificate_provider_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 76A681E025F34AF7680341E8C5F67977 /* 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"; }; }; - A264B07D9F3B4C1C344EB64DCEF102BC /* explain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D8B10D97F05A7835C085B0EF2B03B3 /* explain.upb.h */; }; - A26B049D27C9274DCEA34BFBED9D9719 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 32F802F6AB37F162D6A36B9BE0562664 /* http_proxy.h */; }; - A279B665CA31790112BF2DB4C6650EF5 /* proxy_protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 925BA70FA70A630DB8F7F22EC2019ACF /* 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"; }; }; - A2915172FFDE363621FC4C1CDB98B62F /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A7D939EC7DEFF245D25E3C17ABEF97B /* fake_resolver.h */; }; - A2949E482050CF68F9867AA83E3EC504 /* atm_gcc_sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5E48E851EDEE80DD2DD3A4244A8882BC /* atm_gcc_sync.h */; }; - A29879AA2E5978460CDBC535CA33A738 /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 24261D04D1AAB92CF8F1244AAFA8313F /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A2A15F3BA3C42A2208FEC1DD79621CA6 /* init_secure.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4CC0C1FF019C419087C5855EBE95A23 /* init_secure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A2AE3DE21ECB026F7122629DF8AB2226 /* poly1305_vec.c in Sources */ = {isa = PBXBuildFile; fileRef = 96EE001538F3FBB6B876119092EF95CC /* poly1305_vec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A2AF96760D615CB0A6E7056D31BC6C4B /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = B781E6357ACE48C7978EAFEE31FE0FC5 /* chttp2_transport.h */; }; - A2B6188A64C72E181617DBE3E860ADB8 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B30887F8A983D0F76ABAA697A90050D0 /* path_transformation.upb.h */; }; - A2C95346F84F598EA9BCA134F849F45C /* p256-x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 164B93CF4BF89AA050D6CF1436CC31F1 /* p256-x86_64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A2D4DA0AF133F41A2D9202026D05FD74 /* memory_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 06214A3F5DE0E5E97C1063F4E5C4CA1E /* memory_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A2D68AD627CC3D959695427188805291 /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = 772C7BD84E3DA84CCA800FDA58C9B0C3 /* matchers.h */; }; - A2D7785DD86FCC372ADA0CDF10613CDD /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1AE9E31F364445B9B1803AC0FEC39BE1 /* gethostname.h */; }; - A2E10F97005CAAB672BFDD9BFAF84D97 /* FIRAdditionalUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 068B3FD6A0B13CF7CCBE5913E3110ADA /* FIRAdditionalUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A2E7E7AF724016DBE5E49EB66F658BDC /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BAA1FACA74D6AB50362A5ED659F87C4 /* number.upbdefs.h */; }; - A3036B82C41B4D1DD49C4999F946008A /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = D56F948E9047188CE4C2B2366B8E71DB /* service_config_call_data.h */; }; - A30FE2E75B55479657A648621917F860 /* FIRQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9455CE2666E6C815644C967E7B1DCEBF /* FIRQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - A322C9CA0FA3C26BD4CF3401BADDB7EF /* secure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BE6CABFBD6DD2F81016393589470C4 /* secure_credentials.h */; }; - A35078CEBA013B459857F9956A51FE66 /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 1A6247254B867F3497DF7993E91C7A6E /* memory_quota.h */; }; - A36232407230BE71A52209B195069943 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC72CB81E12AA31C703F7BB4579F8897 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A38477B47D90E9778859D05E4B9DB2C9 /* authorization_policy_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = DD9291D160844646275766D62CC3BD45 /* authorization_policy_provider.h */; }; - A389565A53B45EDA75CD7A5BEA1FEE64 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = F35BB122C0FDC4A5A66F3E973547181D /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A39B123F737AAC3DAE6BDCB8058EE8B4 /* metadata_array.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B71F3AF31F718C75C12F8DBBC60F4F3 /* 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"; }; }; - A39F67B46489EFA707D541C035B2ABEB /* FIRDeleteAccountResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE350535DA59CACFE56629B0ECDE9DF /* FIRDeleteAccountResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3ADD7789F371BDD8EA5A0A6D71D298A /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 085C3CC27446B08D4C41619ADA1FFEA8 /* race.h */; }; - A3B896A08E9E941E67B20454C5FF5FA0 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C9742D5F12BF35FFE06B12EF359D6A /* channel_trace.h */; }; - A3BE378E72C60F3227F38A5A7F5B1F5B /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = 6D20E187C00FA90B22573DFC7CB5AB48 /* google_default_credentials.h */; }; - A3C1F6F839ABF50D3E80C624774F25D1 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = E23B9ABF6D6C4F37041C82AB78050532 /* grpc_tls_credentials_options.h */; }; - A3DE6E0CD981E6C91BE32183D89B0D36 /* atm_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A4D71A3F7964F4CBD250DE3BC54339B7 /* atm_windows.h */; }; - A3E1519A0A89238F4508A95EE31FA672 /* local_view_changes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98341E91CA9FA8B8C50C0EA6B878F943 /* local_view_changes.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A3F4B1F7466CB36B3F4D75450E7C2878 /* nid.h in Headers */ = {isa = PBXBuildFile; fileRef = 431FF5DDC22FBBF06A0B03B99793FCF1 /* nid.h */; }; - A40E5D5C8767ECD534E748177E115F8D /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4AC3582CABDE28ACD6CF8B538100805F /* 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"; }; }; - A41A84C4EB2EEEA07B1E4E2FC8944DA7 /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DEF0FE1C57D52046F1679B62D82BBC9 /* 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"; }; }; - A4268EA4D8A4FD03FB3CECBBC95B15C6 /* port.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 0DBCD24DC3549995F4AFF9F0732601CA /* port.h */; }; - A43B36781038B2A7A302594B3504C555 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4869AB3A39CC22A47E4160BAC0CB15 /* listener.upbdefs.h */; }; - A43EB3E311BB6C7C03A5C7716C269B01 /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8BCBD362A14615B5389CE7DFBD4D8006 /* status_conversion.h */; }; - A4404DF72CB7146DEF4D5433F92EB66A /* key_wrap.c in Sources */ = {isa = PBXBuildFile; fileRef = 704B4F61A507CFB618CAA54C2943DB8A /* key_wrap.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A44C2C80AF536369B14B5051C97CC153 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FF34CB5D2A71F22620F073FC69B8F0 /* address_filtering.h */; }; - A44C9CF6A99C696AB1C3F2E3206172D2 /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 861297BCB6A32ABD79814726C0A62307 /* empty.upb.h */; }; - A450FE3CD182D33F965E059A2A32E404 /* status.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E25600AB4491B7DFB66FFBFDF46DC259 /* status.h */; }; - A4551D339234E1E960B3580D33B086CC /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC3A0B9BF28899FB9B0139659E71B356 /* GoogleDataTransport-dummy.m */; }; - A45726282F41190A49DFD9833DC1CEEB /* cord_rep_btree.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 755713338B82495EAAE3EA194A5670CB /* cord_rep_btree.h */; }; - A45804E9A10588B8000B21D452F851F2 /* seed_gen_exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DD345AC22042207A48873400E33BA5B /* seed_gen_exception.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A4705793489A5E5CA522DD837458F4B9 /* obj_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EE7C0C751870C4A9442DA503730D2D98 /* obj_mac.h */; }; - A47E4B7BEE551094FBC5F872B96AA61F /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E4A7E6BBFBF0EA50EEEE38D563D632 /* chttp2_server.h */; }; - A4885CC8E2D2F9D95EFA8D352DF99EF2 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 46C8727CA006A6CF451B6EDAAD249B57 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A48FFD1D4D2840BC7811ACC1436B5246 /* FIREmailAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 18CE6C911AA09F7B71282A834834102B /* FIREmailAuthProvider.m */; }; - A496FED18C119CBBAA8D53923DE9353B /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 413F45D9A1C0BF1D6B4AFF9FEF1236AE /* sockaddr.h */; }; - A4A058DCA2D5B7D7EB3633D3889C7AAD /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = C50C5B10DBE4BA6B94C7711AA67F4C39 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4A90CD5C23A0C4C1DD9897B33281CCD /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 445D3A262160D62A827D3907AD6C3454 /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4B663C31EA4BFC066FABEF31757F424 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C09F988BE5F5A2AFB1AE65EA56151CC3 /* hpack_parser.h */; }; - A4C1B204A3CB306B4B255D9C5FD689F0 /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 99A9C05F900A594BDEBF20B2BBDF9D97 /* json.h */; }; - A4C28BEBB6EC2A288475C7991ADB7AA2 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4F58040F8DAD60DB9E92C3636B08166B /* xds_api.h */; }; - A4D5F3C014E359816EC4624916DE5FAC /* randen.cc in Sources */ = {isa = PBXBuildFile; fileRef = 103D92F53A7D5B6EEFCB5EC837F89384 /* randen.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A4DD16AFC9E52DD7D2F848B3B88A85BB /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 65F62C3B8A444B71E0A3B4BF1B03D155 /* wakeup_fd_pipe.h */; }; - A500AF3583680B5718B7EA757905FF7A /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A7F346BF20586EC4872FBDE4276041 /* unicode.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A504D30FC801FCB76867BB934D1F3B81 /* wrappers.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 986D98538B575CF72D63387538891DBB /* wrappers.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A51B37E238A3851340EAD7722899B58F /* FIRFacebookAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 357C0EE43A790060F71C003C23DF0341 /* FIRFacebookAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A5239FBB67F1A6621BE1DB7D6979815D /* eds.upb.h in Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AA36937CC3A8A62A4DEC31C2A8DBD1BA /* eds.upb.h */; }; - A525388D0619346F5C3AA03FF9CD9F8A /* memory_allocator_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4B3F78F1AF4BD460176A1003D94ED1 /* memory_allocator_impl.h */; }; - A52AC84B4E0805281754FC9880677A61 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 3036537CDA0649E0878E8594EB35397F /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A54348D7EA3FB9BA5BFD7472CC6C86B7 /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2847383C53A3F02907B58EBA12C564E6 /* _ObjC_HeartbeatsPayload.swift */; }; - A5475B57FF7216D21F6ED7E77E7A2E3B /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 3B14D60525A22925EDAD0F0C1BC7987F /* grpc_ares_wrapper.h */; }; - A550312E6CA621D60BAFF037BAF8273D /* policy_checks.h in Headers */ = {isa = PBXBuildFile; fileRef = 398C58EA6AFF8D30B83671182AE98735 /* policy_checks.h */; }; - A564F082323C07078057BDC1FC1ABD5A /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DD9F73745779FDEC3A122752A8A2E96 /* lrs.upb.h */; }; - A56DD7EBD09ABA0DCFAB15C243C142C5 /* match.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 7CEA1E95AB3F2E8B15CA2ED5A5DD1569 /* match.h */; }; - A56F0361F8D35E7552B5031DA2670938 /* host_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DD43ABCAA2190CAA602953C834255F6 /* 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"; }; }; - A57D90FEEB0C09DDC2AFDADC98AEE54B /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FBC142C4AA69D45856DEB3ABB67C9C /* handshaker_factory.h */; }; - A57DDF9D1D8B63DB713FBB447F361D37 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = BE7424704490822F4A39D8365399F223 /* frame_rst_stream.h */; }; - A57DEB42F6194E8FA18F6E0A80D7C0D7 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F6172BD84D4D8EC2DCF7845B81CE647 /* 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"; }; }; - A583FBD39C99E02075E361BD64D59EF0 /* GTMSessionFetcher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC4651A74CD9568DB6A23FF3E2889E2 /* GTMSessionFetcher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A5B68C7374EE6F24F00D3B3E5B92040C /* x509_cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = A0612DD7EE2C36175A1AA90AF6F8D4AA /* x509_cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A5BB2E5522971BB22F4E9A5A653329D0 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = A9D096B0C6CBB57931FEC03C35975E78 /* flow_control.h */; }; - A5C39CB100F18A6439789D09A963577F /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6609D3D9D07068384CDE196697A79A1A /* ref_counted_ptr.h */; }; - A5C4A7EF66CD8D75FA00A60E7E1A0B32 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = ED97F5BEB8C729A4F52372DD79B4BBE2 /* call_test_only.h */; }; - A5D2FABC3C36B6D75AB767A6D45DAA2F /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = E732719E9F47BC742EDA62113AD8D11E /* http_client_filter.h */; }; - A5EB3E0AA930D724BBC72888F89278A7 /* per_thread_sem.h in Headers */ = {isa = PBXBuildFile; fileRef = F68E7432DBC881D4E811C5C30F103151 /* per_thread_sem.h */; }; - A5EFCDD49DEB4D409E6DF0A2BC97F322 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B8B4EBA6ACD25E2AB454FBDBDAC6BC /* resource_locator.upbdefs.h */; }; - A5FF3717E0914B1DACE9CCC0B07ED407 /* FIRMultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = 94924A2F675D4906C7761445B7B8CF7D /* FIRMultiFactor.m */; }; - A601C365EAFE3BAD13F9652C04BF3025 /* export.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC5BF75FE215C2E05C25572297F40DB /* export.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A609B4F823FD0872C817FC3FE0CC8885 /* channel_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 804D22677E760A249DDE43EF70328314 /* 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"; }; }; - A61E688CB368B7192721A422D72633B1 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D695078CAC476D795B2CBAB84FA5821 /* poll.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - A6283EB938AE604DF88F083CFDC231B2 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A237ECCFA8B96B54BBA8C415640B0EA /* route_components.upb.h */; }; - A647574A6DC13BF4A8BDC683FD1C2E92 /* status.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 708130ACF964A8D33BF1C90ADC381495 /* status.h */; }; - A654155CAB80C6FA8F28F7A879616C09 /* compression.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 82013083E21F9C4C42AB2F17800F12AE /* compression.h */; }; - A6613FA4962913DB076C8A38921A5AC5 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9EE5CE0162E2CE20771D5FCD674031 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A6640BFCE92BCA9DA27227B775243AEE /* call_once.h in Headers */ = {isa = PBXBuildFile; fileRef = E3EC7C431BEDA3CC8F8D81F339D9B5B5 /* call_once.h */; }; - A668DA1699B67B48D0680C45DF75DFAC /* async_generic_service.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = DE0D449B2F65E2ABB08DF305B4B650C9 /* async_generic_service.h */; }; - A6780CD7B816A798DB76AA6C0B600335 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2310AD88DC074D5CA55FDF1C2208A771 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A6797705AB4622A8B9A2AE1CF731411E /* version_set.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E74D52AD59FBCC6892FA2B9DE91173 /* version_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A67B8874BE73C52DDF0235BC67075E0F /* byte_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACA807973220EAE1B3BB88488899D30A /* byte_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A680C263B3A9807883BE99090F52D702 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 47BB7FFE964FE1203DCCFBE549276EE0 /* channel_init.h */; }; - A6882D3C5A167EB4F7F0AB14A5C02DDF /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 51E3E996372F9596593B3594C5F3792D /* resource.upbdefs.h */; }; - A69C18CDD13CD2C88126910A65D33358 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 1139487F571F09B49842A7C5D226CF35 /* grpc_alts_credentials_options.h */; }; - A6A8C6FA0B245A36F5BB0107D9905DF4 /* ssl_stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4303A2830306E65C9BEA2AB456ECBD04 /* ssl_stat.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A6B5AE02889F831430DBD848BB7BAE15 /* eval.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 316FC845923E5D3310C933ADD1C6D738 /* eval.upb.h */; }; - A6B74A33719995D1B23501DBDDF1DD81 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7906A37970F74FF088FEFC41D3688768 /* lrs.upbdefs.h */; }; - A6B9A5E497FFC8A98E9842A1C14C920F /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = B2EBC1C80C77FD4FC1787C9FA16F2F25 /* empty.upb.h */; }; - A6BFD3082F6D8ED697C326D42E8BBC8B /* lb_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C4BE9962FEB74EDF589C4ADB20AA4BB /* 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"; }; }; - A6CAC099CE524F8207EC3C8669A6FF5D /* health_check_service_server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = B275B83B87E96B5234513538FC683415 /* health_check_service_server_builder_option.h */; }; - A6DCFDAAA02FBCE25B0C26AD5DE09242 /* empty.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE9E6B5A42C82C2BC06FBFE8EABBB5A2 /* empty.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A6DDD19D7B0CF9B38656856D5D78395A /* call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75E01D751EB5E14DE51A53730AEB88EC /* call.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A6E6FD5A8E83B7C227992A58E754C994 /* endpoint_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A988B88B8C81B7439F14B3A81FB90F5 /* 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"; }; }; - A6F853F296470352AB90BC5C104A4250 /* FIREmailLinkSignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C6AB1C491089F8F5FD5FF2F1D09FE2B /* FIREmailLinkSignInResponse.m */; }; - A70F265FE30F6FBE365C6C9F5FED94AA /* spinlock_linux.inc in Headers */ = {isa = PBXBuildFile; fileRef = 5DF7949BB7626FE5F124F8620005582B /* spinlock_linux.inc */; }; - A7110871D8A29002DE4A5460ADA7053E /* randen_round_keys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6AF361982F7AAA0BB626D002AE0E90B4 /* randen_round_keys.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A7191BF3167164F69A6C453F7DC4EF61 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = CC08A282FD10411FBFB14760A5279F1B /* ref_counted.h */; }; - A725110D2A0B8164F7C8198C2BFBDE5D /* snapshot_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8998326D6B9B8AA7EED6F75FEB6F07FF /* snapshot_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A72AF6FFD5D869216EEBFFDC69BB85FF /* resource_quota.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 882FCB0DEF4E1541895FE27775FB4E05 /* resource_quota.h */; }; - A72D8C2ECA56EF144E6F81E59E1DC378 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D152EEF95A1B79151411BC6D91C8806 /* tsi_error.h */; }; - A7341A117379261D8550E03BF3580DCF /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CABDE50BEA39C96AECB3BEEFDA031110 /* overload.upbdefs.h */; }; - A73D97A056614FB5855A0239F5B34D28 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = C7F2144D96047B76445CFC21184EC9A0 /* service_config_parser.h */; }; - A73E256244236ADEDAE75FEBBD20FF50 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 39DD3E5B16720861D303CAF81013C359 /* backoff.upbdefs.h */; }; - A73EFBC394A960C10A6E20C4D47E73E4 /* field_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3338EF7CC0F6A7B5B62EFF92A3FA755F /* field_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A7461A18138653B230B34DCD5C409443 /* v3_ncons.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F74C4B79EF23F4C098059ADF87CBB9B /* v3_ncons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A765C0022A055397505A4316936F1669 /* schedule.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D9E0EE4D598A8F9EE984C18B90E9FA8 /* schedule.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A76D33B15FB504A9BE0CC88C9059C2D1 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = F736C0B3A3BABA4B020D6AC9346D7ECD /* migrate.upbdefs.h */; }; - A776E1D4C92DA3525E5C3122FBF02004 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 4676A21D65A47A9442C431317B31984C /* frame_data.h */; }; - A782BC84B12062E4DC14A2C83E45F822 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C3F5F8034D114007F023291DE206802F /* hpack_constants.h */; }; - A78EE0546ED51F140FEA4E8EB56E8D1B /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9EEF49E540505AA014B17FEC5135D836 /* retry_service_config.h */; }; - A7975169CC474983CE0CB088C4619B8F /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 55932A25182FDD770F09E6659F107218 /* memory_quota.h */; }; - A7A9618C90D66C7B0A05ADD3ACAF77FF /* client_load_reporting_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EA31E7DD758C02D9539090885F535D0 /* 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"; }; }; - A7A9CE903AFD4443C21E06AC83F7D0AF /* bind.h in Headers */ = {isa = PBXBuildFile; fileRef = 111E5827F6D4C420280AFC436891B7C8 /* bind.h */; }; - A7BA498C8BAD90FFD069EE3594C67BCA /* uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 86C040CC9AD6FD805F69679AB74A6023 /* uniform_int_distribution.h */; }; - A7BB4A67A2043152FB6093DE38BE247F /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = E3BAB4CA449A540C0DD9127A10E54745 /* log.h */; }; - A7CAB9F3B8B689B5501CA9AD01A4A4E2 /* user.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E613F3839FCACC24554D0B02C7A7EBA /* user.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A7CE788649E4C84243668B8F2000B732 /* validate_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B93226B0B0A22CD8D9078E645982A33 /* validate_service_config.h */; }; - A7DE0D42FDA94E73EF1538F31AA1B968 /* cord_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 581D4E97B9C153D6581E9FAB58DBE173 /* cord_internal.h */; }; - A81E60001732EBC586D89FF769824E6D /* filesystem_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2368298FB75DBE1B86D762ADFDB8EDE /* filesystem_posix.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A8207FE3BEA0F58F3C2AD2FF3133D8DD /* percent.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FE8C5CBF1F8AD9E6F207D320F127150 /* 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"; }; }; - A82CCC1ECEF723BAA0D596117FC202AC /* upb.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 3F1837D7B34E7A0B9C4B4DB4AE1721A7 /* upb.hpp */; }; - A83991C3D838152C2E1BEF932BE97A94 /* strip.h in Headers */ = {isa = PBXBuildFile; fileRef = A51DA9A47C221DE2090EF57FA1A16CCE /* strip.h */; }; - A83A3E0E9DA5181FB4F7E897C08B572F /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 181B0BFD03F5CD3E793CA4720EA9BF49 /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A842CC92E9B5FB029082350F8CDC235F /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E612E105B962670B1B33D32117257D2 /* civil_time.h */; }; - A843DEB9A68FFE2078A7F2FB85878525 /* bad_variant_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 32A9E9202EEA853D80E2AF093225EBB2 /* bad_variant_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A8471A54C7A5308376ECA08B05A15A75 /* string_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 289CA993EA579980E413B37B337DFB83 /* string_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A861535C564293331787914ABBDD042E /* load_balancer_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86D1B73F3665D1A80C9F693DD31116D9 /* 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"; }; }; - A8727CAD2886A7A7EA62443FD58F9A71 /* format_request.cc in Sources */ = {isa = PBXBuildFile; fileRef = C025D0ACDF630B43FA270B5A85E82439 /* 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"; }; }; - A877AB2435A3877FFF4B2A0A363313AA /* binder_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C9A0176BD5B0D9AE760206CE5326A7A /* binder_transport.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A88A3D7E8DD8FE49CCA91F6D0073FD5E /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = D288EF42924243D421A2DF302D696E7E /* transport_security_common_api.h */; }; - A88B17E6094AE3622C0A579E950676DB /* lds.upb.h in Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EBDEE9E5B1C61B8C1AACCE38D96A6160 /* lds.upb.h */; }; - A89065D49CBAC2616B9335FE699A9B80 /* fork_detect.c in Sources */ = {isa = PBXBuildFile; fileRef = D7FCE6674BA17AF287B0D45E98D523B8 /* fork_detect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A8A365662A78876D64F97E424C35925A /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = C91559F5E07109588C37C0D2D1A46486 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A8A6D8DBFF09C85911A352368F626285 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 96723ED02F57A6A85C05000131EB5BBC /* accesslog.upb.h */; }; - A8AF11712D3CA440027E4AEDA6A10512 /* event_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0BACA7AF1F29511585CA8F32612F946 /* event_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A8B35A690233E3D30F984A0BDF9A7E15 /* rand.c in Sources */ = {isa = PBXBuildFile; fileRef = E5FA3A38FA52055AE790370AE1C7D782 /* rand.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A8C4D2F7809A73C29F1AA5912E3EE7E1 /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B2BAC9D0A1AA7CD328C15013960C88D3 /* discovery.upb.h */; }; - A8E60E7C944D6B778800FDA0BCFFB179 /* wnaf.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E5B7F006D924395AD45CC2BA3703911 /* wnaf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A8EB87BD47C8150AB8F1BBB289324118 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C30E8C02095BE8D5E92A9813AC9D3323 /* cert.upbdefs.h */; }; - A8F5B8076A95E6867DE238FE4E2397AD /* string_view.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 71120AED1D2D58A379F679EA3D7E57C1 /* string_view.h */; }; - A8F6CB3789A6EDE4A74E6C3193F240B0 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BF07ED97737A40E9B1E40C77C03A718 /* resolver.h */; }; - A8F8EEE9922674F4380BB00F41659515 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93F3D52C2DF0FC57942B889E9D3CD7C9 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A900720A4A8D43B89D436D539BBBD45F /* sysinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C40B607709910E6F746EEE5AF5ABDB /* sysinfo.h */; }; - A9103751F6CA65173D623CBB3153D6FF /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 295EB74E5378050D141386E004672B8D /* api_listener.upb.h */; }; - A91559CC98AD921D6D2E3C3D065EC5AB /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5E4B3F78F1AF4BD460176A1003D94ED1 /* memory_allocator_impl.h */; }; - A916D32C80558EFA57A7917EE298AA18 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8A1B8E3C61F31956CED47E1CCB5BED /* fault.upb.h */; }; - A916E3068DC536E82AE2A9232EA5519A /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCCD9A63BC16F8C70552E3B5888B2A4 /* byte_buffer.h */; }; - A9275FFEBC7D7B28B31DA85954954794 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 80B005971F5C75C1E0DDBCB4C334266F /* bin_encoder.h */; }; - A93A280E4B81AAA1F0A0B8554E88051B /* init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C3770DBCF5BCC6E005507C30119B889 /* init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A94A509CD082D9E29B22149C2A14C580 /* grpclb_channel.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 697D22D308D8BE411DD9678A283BB4CC /* grpclb_channel.h */; }; - A95E3D86D273C5DE6C2EF7A717F993D0 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7AC6D0022C4E8E5D8A87CB7A4D419D /* listener.upb.h */; }; - A968966EDDD5C9E68535309171E343B1 /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 903A97B774EE927AEF7320B91CA5A2A0 /* xds_bootstrap.h */; }; - A979AC9A1627DF21D514BCA8ECE5DDDC /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F3E7E7FEA136401A4F0A999AB6E35A19 /* udp_listener_config.upb.h */; }; - A981C99FDCDD83A2F58DC58F753A7877 /* v3_info.c in Sources */ = {isa = PBXBuildFile; fileRef = F9203645BA0FAA60CA2F8F8FE1F5B21E /* v3_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A9A4F5E3FB536E5B2177A8B191D2ABCD /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D349EBE125AC26A3E98F058E11448D /* pollset_set.h */; }; - A9AC25B518F0FE1A34331C7860676EFE /* char_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6D86BA89D5C38DF0769CD58B4FFA71 /* char_map.h */; }; - A9C4C623F3CB6EBF6E3D7AD5FC611C47 /* field_mask.cc in Sources */ = {isa = PBXBuildFile; fileRef = E23C76272ECD4ECB694402E88B794149 /* field_mask.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A9E880297F70D4E6984EEB2897012265 /* memory_eager_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 778A0AA9A13B9870BDB5FFC5D9C08489 /* memory_eager_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AA002A961D042859F1A86D2E05D09BEA /* resolve_address_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 97A2526456E50D10C83586F355E84D0D /* resolve_address_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA021704097EB55126FE0799C389DE75 /* promise.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6D0BCC32ACC07E85423AA18302BB9A54 /* promise.h */; }; - AA0B084A428F70FCF500B5AEEDF1944E /* atm_gcc_atomic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B7D788FC8C9E1701C7F8FA6661BDAED9 /* atm_gcc_atomic.h */; }; - AA11B0F35463209A630BEBBC02F15FE3 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6494D8ED6C32B87FFE753464418D50C9 /* scoped_route.upb.h */; }; - AA1CBE69AA9637E2DE57503A09C9FC19 /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 802D64B40B4B0444252CC7C35097323B /* call.h */; }; - AA404F48187717E7AC80823D27A1669D /* pem_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 66939B5BD35335176BE852BF1F68477D /* pem_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AA4E3BDD33FBA0EE014AE79B087B9645 /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 45DADBB766F537F6CFE3D29BEC01A64C /* client_channel_factory.h */; }; - AA5BF931912AF6DD724C94D3F136FFA7 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB5B22D1EE806E8722D9A8220E2E181 /* completion_queue_factory.h */; }; - AA671F14C945273337B1A89B6F24080C /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A246B9CD6287F1683AD66E6FE13A18 /* global_config_custom.h */; }; - AA7EE0548237602A8AF3949FEF84EADF /* hide_ptr.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 125E7C9EE2431EDDF575C7D0014726E5 /* hide_ptr.h */; }; - AA823AC1BD270243880B00190D3CAA5F /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = CD8FB3756F6658B26C1416C73BC4E6DA /* config.h */; }; - AA98C37FC255136634AE9912088E598B /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 50EB175CD8D55263964AA3FCC78A6EAB /* ssl_credentials.h */; }; - AAA6E29D530278E66A1E907597482E42 /* p256-x86_64.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 3A17E56634F88242B97A2500C7BCD957 /* p256-x86_64.h */; }; - AAA830D5480B20A81503456692DA61A7 /* bytes.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F71C1A9FAC37518FD3EDB1CDC02041A /* bytes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AABED3B523761DB961C277BE200C1EE6 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B24ADA12A72D17B8F16CD5021D839E0D /* http_tracer.upbdefs.h */; }; - AABEE7AE670BC23BE5A5598DB2BEC47F /* cord_rep_btree_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A6F5673FB2F36B1D67FCF0357FDA396 /* cord_rep_btree_reader.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AAC606FB3DFD3EFDA2884D519A67BD3C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - AAC6C38ACEBAEC20A175BAA0238568BE /* bio_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FB4585FDADA76F94A66C13ED420659A /* bio_mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AADCCBA7ACF71475F96EA54ADE2E9C13 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6354B4239EA2CA91A7B1A931849D7460 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AB047A861921DCF1BBE19C9AF7EE8C09 /* tls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1C07E68D4709890E188A735AB158086 /* tls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AB06F61C6755833A1E8CC519CABB7776 /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B3CF7A5C9AA34CEF648438D6AD11152 /* msg_internal.h */; }; - AB09D9439B84A37120480673E5FB80F9 /* get_current_time_posix.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8AD15CC95EFDF231753C086B3E07BB4D /* get_current_time_posix.inc */; }; - AB0B803AE79E4FC454E22D55F5E851F1 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3DA303DBCD0B07FAEF7DD0E176A042EA /* iocp_windows.h */; }; - AB134C42AF2F84659F59AAF574B94A3C /* ecdsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B9577714B976A0958049FC26BED592CC /* ecdsa.h */; }; - AB1DE80C8D06FFC505DE13E5F642D735 /* FIROAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 0408792A4E03A83D5F5BF0199DC0EDA0 /* FIROAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AB4DB5753C994DD73935322B2CFA54EB /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 299CDEE2553897BACBD94BFE14463D22 /* construct_destruct.h */; }; - AB50C798531738CB797A8F3313A6BBB4 /* log.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 376F71550B79518E43168F2BFFB5DD9A /* log.h */; }; - AB56F7A172543252AD85308545B9B900 /* firestore.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7A6E1BD7B1922B011D56859695076BD /* firestore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AB5D3F99DF4D285D3698ECF055CD0847 /* resolved_address_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91B2A42FD20545A1F0402BE218D11D34 /* resolved_address_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AB64C26763AA054E80FF31F9AA4D2526 /* low_level_scheduling.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 14BB0A90551130C509C2157B8D216850 /* low_level_scheduling.h */; }; - AB6AEF0F2E95F9F88FB4BA11AEAF7800 /* mutation.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 51E171201B95E22D24FE86EA60539F2E /* mutation.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AB6EC2AACE7951335E1A64B5DEF7C95E /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 457ECAB0F72D308E112B3CF8F64AEA41 /* status_code_enum.h */; }; - AB71CE2F3777F4FE79A58344E5721D50 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 8F0FE9CBBE3D5C6C2E72EFC98F311B32 /* service_config_parser.h */; }; - AB7299DCB5D7CFAC2C7BDDB01AC08210 /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 408B71D3E0267F149E463A0837B624E1 /* checked.upb.h */; }; - AB80E359D8794A8F91851763342B384C /* xds_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26F520E1CA138A7A296559A144520015 /* 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"; }; }; - AB876C7ADCC70CE9FA8616B846816CD2 /* internal.h in Copy crypto/pkcs7 Private Headers */ = {isa = PBXBuildFile; fileRef = 0C2F2A3AFEA0D5D4CE3E81BE0F27E0E0 /* internal.h */; }; - AB8A95198BBE80A17F711F7C8FB97652 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE77537ED5BC12A0F5E35BAE5EC2613 /* address.upbdefs.h */; }; - AB9E071049F0780EB6EC949E9ECD4AE2 /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 619BACD9A4B2BB39113CC3F2FECD2E97 /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ABA6A046C5E13A65840DC351EA19BDB0 /* ssl3.h in Headers */ = {isa = PBXBuildFile; fileRef = BAFC39741BF200511FC99A6EBFC66312 /* ssl3.h */; }; - ABBCC3B964073BD63BE28D72085C2741 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FA5F2259F1F974EAD2E550059282DF46 /* xds_channel_args.h */; }; - ABCB5E1CF6140395C9EAEBD227FC9C2F /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 653A06BD7CAB74B4A8C25ECCC89A3EBD /* accesslog.upb.h */; }; - ABCCBF62A103B665AE8587A1C98F3046 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = A99088ED062AB2C27087B746077C76B1 /* server_interceptor.h */; }; - ABE5EB050FF5C906B0737C252406C5A4 /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 70B99A75D8523C9DEEE2B63870A22149 /* thd.h */; }; - ABF5B6C6DBCFA31CD6F6D7EEDFDED3D1 /* timer_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D7217B19C5893A4CDDC16F7325559AF /* timer_custom.h */; }; - ABF73A92C5588E1FD57ED1BCC22B18E3 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D327B3862D4AFA0F0F250F058C4BD9 /* udp_socket_config.upb.h */; }; - AC09227D93C9A25799C899F30D3C4051 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0664AB84AF0389F95F3FC70A01619934 /* http.upbdefs.h */; }; - AC18E59AB255501962C20F5A42162B48 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89BFE9384FC50E4B4557762346397B7C /* api_listener.upb.h */; }; - AC279B96ED6A29635E76475B5F23ECC4 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6DBAB58F5643BDE8B88A4CF90F2368 /* closure.h */; }; - AC42FBE9CDE5945A0E4DB2A4685BCB29 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 26EB6670A7BE940E343F862120174E7C /* 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"; }; }; - AC46B0D2BCACDFF90870197AE3BC85C0 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B060AFD6C415714E4C53B721E30D201A /* cluster.upbdefs.h */; }; - AC59F62B9757B5922099AD700556B596 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A5079FA7023F3172142202B0C5412E /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC5D18FFCB6DCF4902F9A945F1EE4124 /* proto_buffer_writer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C2479404D5324CCA7B5194BA770E6A62 /* proto_buffer_writer.h */; }; - AC6675A7DAA9C624F25DD5E5FDE35566 /* pem_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D705894742B7AECE42C642F46A004D0 /* pem_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AC6B56D2A29AA5F887B5F06E5CE8ADB7 /* coding.cc in Sources */ = {isa = PBXBuildFile; fileRef = F230DC6996F5E7002A9B7EA162E28AA6 /* coding.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AC73744A665A100A2C6DBD06967F8C8A /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 42A3036A3EB3F2CAB574A190EEF2227B /* service_config.h */; }; - AC77AC2E540A27DD2D8AE4C68AE1E9FF /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3667DEE2D4A0B610F1194FB28CB05B61 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC7AE4B77B5F11798E13664DFECBF041 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 204A7CA3893FC0E86FC7AF6E7DC09EB3 /* socket_utils_posix.h */; }; - AC7F67DADB1ADEA24BA108DD871C7D05 /* FIRFieldValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = D434BDC04715A1EDA7B91096A897AC44 /* FIRFieldValue.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - AC846102F5345013F1A541C08300ECC4 /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2F8AC21E20AE51FFE111ABB972A7BD /* event_service_config.upbdefs.h */; }; - AC8A89CBA4602C2184B5B217156DE8F2 /* bn.c in Sources */ = {isa = PBXBuildFile; fileRef = F5BE855D21326F8EEDF5368996E2194D /* bn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AC8B9604523DB02D96786889682D27A0 /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A330A6AF6E4DE3A27FD916DAC0AF18C0 /* regex.upb.h */; }; - ACA38112AFD3828A0C4E6AD69E311AA9 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 89EF1F94D9B6A76129355ED7CC85C80C /* endpoint_pair.h */; }; - ACAC8F56F538A25D0E44DC9EA60D77B3 /* certificate_provider_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = E270BEE109637DD62BABF331C4C23A69 /* 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"; }; }; - ACB021B51C826A6364EA0EC24D348BC6 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC840D202BCB192C7D00EC299D38CFC /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACF74852B15C781AB8038073237199A7 /* server_config_selector_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D85CD32021920D135B7882D57E6F139 /* 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"; }; }; - ACFDC9041325C15E5E6ED46F8CB92711 /* iam_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 814EFCD04166FA022143B812E4AE54F4 /* 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"; }; }; - AD1588464F0DAAD3D77584DB811D1306 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 14E9EE3053D8D4EC207AB9CCB6DD5777 /* FIRComponent.m */; }; - AD1A372F44607C2A49B7F3B465CC96AC /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB37A77A9F84910B17B9F14844F5A59 /* number.upb.h */; }; - AD1D5FF5BD06F491FF92770F0ED405FB /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 10214F472CD8AC6AEF85EFE63A53ADAA /* GDTCORClock.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AD29D09D47BC3F890517184E24C68256 /* time.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 3D1419752C0DCD92DAC4A5D71D54E846 /* time.h */; }; - AD2D51873F6A8163867400D8B6CE62F8 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AAA6C1D939B1D52C82F2543E812E223 /* circuit_breaker.upb.h */; }; - AD4698AC4B526F94770B47B9368B08F3 /* util.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 13B72E44E24DD163410789E57AD9C4CE /* util.h */; }; - AD4799CB66527E2EA859FB81E2CFB8E3 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = A135513E6914703307777A672262B80F /* format_request.h */; }; - AD6A49397B1E8FA224D6F6CB0520A916 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E13DC566F5693D7CB358DD61EBD04F6D /* substitution_format_string.upb.h */; }; - AD6E1F3BE0E04D32CB865845585D58B7 /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 281D7CB2C39238AD997A50924356692A /* error_utils.h */; }; - AD722E4D516DFC0A2AA00D660159250A /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 926328329625E95604DF09C0249E122B /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AD73A48EFA73EC6136EAD9C59B6B4B83 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = AFE270738743B940CC0385606BF70507 /* rbac_policy.h */; }; - AD8E4AD6F23EF654C1E94B4830955AD7 /* alts_frame_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 953581EFDC6C8F5FF62438557AF04192 /* 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"; }; }; - ADA5EF5F978E4CB027E52461E212DA44 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5892894960C914E174B043795089BF47 /* pollset_set_windows.h */; }; - ADD122B9E1EFBF68923D1CE542F590A9 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD137A8AC8A1CB486DC69A50603A5EB /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADD5F1AC58B0033D8CACC32BC6A63DDF /* evp_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 8695BB135034FF365003E14EA12AC98F /* evp_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - ADDEA1406721331D23AE3B28260DE217 /* FirebaseFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B88A7560A32E839E0C8EAC3A03AE4A31 /* FirebaseFirestore-dummy.m */; }; - ADE3B23E78E3D9288DD7FACFECBFA92C /* migrate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = AC186EC970ABDA7C3E9CB4256FE06988 /* migrate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ADFEAD438142C78F5B5D308F25AC0DC7 /* certificate_provider_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0DE70107CB844BDFB9383271BF9831B /* 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"; }; }; - AE02B2C46A957C55EB3524AA3216ED17 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = 26044C8A88DBA8070C43339A9D8C66C2 /* security_context.h */; }; - AE110FD38138EB9273FC4140F3A6E0A6 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F0EED370268E10143DD7516508E404 /* certificate_provider_registry.h */; }; - AE15009BAF7A2ABAAB11360BBBEFAC58 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16A5313D7B313F88137F8A59086AAF1D /* time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AE24FAFD2F0BC4441045387A1063BC92 /* stats_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D4935C97E91F885941132A44D5310DD /* 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"; }; }; - AE2C0FC57535C07425E16E5979A6F71E /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CFF16852C2AFC38C831643FC787D0E2 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE3178D32CA8740D672682D7C09FE2B6 /* explain.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = C340DC74BD921676B8BCF0EC7E201DDA /* explain.upbdefs.h */; }; - AE488864C7CCD1ECABD78D92EEBD4406 /* pair.c in Sources */ = {isa = PBXBuildFile; fileRef = EBFC42E958DF0803F6F22DDF7A26A347 /* pair.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AE4D2C762B2DE18F9430137E16912297 /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 53066434EF4AE66D061D6B1DB55A75FC /* api_trace.h */; }; - AE63BC127976FA325C9833A4B189BD82 /* extensions.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7881D3A9F10FC22663BE44A7D6C427D /* extensions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AE67D8858F21CF2E9AB80CABAA884AA9 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 694C41002DCBBB5B3E2502AC20BA5EB2 /* hash.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AE7BC69921F53F969576B147E3B2F88A /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4B551E052F26420522FABCCA7BDAEB /* httpcli.h */; }; - AE819626F600A97569BB57E02C476338 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F71566D09A34EC5C42C27FC4DCD6911 /* threadpool.h */; }; - AE81AB0B3013AD20D565AD67413C22F2 /* alpn.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA6C384225F43B1F3957E13A76557E3D /* alpn.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AEA7635D7DE1B2BF2C532043EEBCEFF2 /* resolver.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A6AAC288D8B06F235F9538819D512760 /* resolver.h */; }; - AEB441F7978B6F5C2A406620E3EBCE6E /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1F365029B9CABA2F3F6E843CE8148A /* transport.h */; }; - AEC80EA96140CC5E1D29D2B012B96A8D /* xds_server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2DE0F3F1C5EB3D90EFB27BB328A22B /* xds_server_builder.h */; }; - AECB860B24ED96BB91A23F98915F49A1 /* symbolize_unimplemented.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = FCF0B6D2ABA038FFFEA9BAC95BB318AE /* symbolize_unimplemented.inc */; }; - AECF5BE150DD16DCA29EB7EB977ACDB8 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B062227C71E1663D64363AAD4793DE57 /* fault.upbdefs.h */; }; - AEDBBE72521F63D8D2EB75A98213E1C6 /* distributions.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 07382E56313C06E32A5F9E349763D60E /* distributions.h */; }; - AEE211146DEE336F940F60A85F2317BD /* grpclb_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 697D22D308D8BE411DD9678A283BB4CC /* grpclb_channel.h */; }; - AEF1A5CAD5345EE49FA5763B3E67B081 /* udp_socket_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 542E2201649FD3BA033B8BA4C225AB0F /* 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"; }; }; - AEF55FE1AB3E32EBA0EF99A6BAECAC1C /* raw_logging.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8632B1A27EDFD373FF377527EE149645 /* raw_logging.h */; }; - AEFC1262A4E8879A6D1307DA279FEFC6 /* fixed_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 0228BFD2D8F7A219960F55844927159E /* fixed_array.h */; }; - AF01C5B483945B19737801D6FC78AC87 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 78AA8F8957017331CC7D32A3E0BDB059 /* message_decompress_filter.h */; }; - AF0696C58C759880E9EE5A11EAE0F7BD /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = BB85668B872EAE26D4C8F2C12E3645FB /* channel_args_preconditioning.h */; }; - AF2FAAAC2C5EDEE73C266C5A602C6269 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C480D3A93BA5EA1C610DF0C1B208B9FD /* config_dump.upbdefs.h */; }; - AF43E939CFFE0CB3A0DD4ECEE33C8A89 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3A609003157E264550C579338BDECEB6 /* typed_struct.upb.h */; }; - AF64FE22CEDFBF96C59CA60FBBE509C9 /* tcp_server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = B24A2C29F88781ECA8C691DE44DE600C /* 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"; }; }; - AF66D87C6454FBA81C6FF99970D47263 /* bits.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = D97D1568AF51BD1FCBC9CA817FB74DB2 /* bits.h */; }; - AF678B1657A4FFBC846C392DF689FB6F /* grpc_ares_ev_driver_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C50941522164CC5B709F5098D927E84 /* 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"; }; }; - AF6B8EA2966676D219B5F21AC2A3B095 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5331B21BF9163E6BEFAB03650F5C2B26 /* rbac.upb.h */; }; - AF6FE4B22A2900B044A232F6EA76DF25 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 76C31F7D30AAD11934DCF28A2F30939B /* xds_resolver.h */; }; - AF7A4AC928F0E9DA09CD46AA8604F2CF /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B950BD01813F0536A3D34594491EEE /* alts_tsi_handshaker_private.h */; }; - AFB6FB235DC1BDABE0B1DBA601F0E17E /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 90751A8815D0D548A9093FE5AFC0C3B1 /* stats.upbdefs.h */; }; - AFC058C517C8E6345DFEEF0F5C695823 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A6C9AE0E511F6442B4343F210DD8A7 /* file_watcher_certificate_provider_factory.h */; }; - AFC719723868DEE9E08AF52ACC6E2E15 /* cord_rep_flat.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6745690495A83AF162F72A6DBE1940D4 /* cord_rep_flat.h */; }; - AFD0A14360875268E08A82FF03D1CBAA /* FIRLoadBundleTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3019D75318370CD3F98D6EC27E1BD637 /* FIRLoadBundleTask.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - AFD37624999016DC151AC6AEB9D236C7 /* raw_hash_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58725D54B32D5B77A2724A66D7ECF9FD /* raw_hash_set.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AFE4FFD52F1FDFD0A881FA5252F7ABEC /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D5F80D3D9518CA8312A8A564F580F3 /* message_allocator.h */; }; - AFE74BE039A52E954CE75EB26601DB14 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1FBF4FFC89B38701D1AC33FB70946B /* timer_heap.h */; }; - B02472AC22FC0B4C22BE5865A04C7061 /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C264B61845741E4F457B9EDCF2981396 /* status.h */; }; - B033B522C1EFE386BDC824F1E03D1D51 /* config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 3A2D112D05844BAE85A9D5F277C4600E /* config.h */; }; - B03AAFAFDE4273B4804C95B1E6D09D80 /* iomgr_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB16C0F892A968FEF894B2D211E63F25 /* 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"; }; }; - B0597BC4C4E109175016B7A181D4FFC5 /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 81EC1C4A9F7749F4A776E8360C14B313 /* dsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B05BE7EA23675766914C3F92CF825F82 /* fake_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B28F283A00DB24FC9776C6CADCBFBD0 /* 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"; }; }; - B06DE43D2075BA71B10DF2C3ED310390 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CB3512BB1D7A64A38FBA25A1B84D423 /* message_size_filter.h */; }; - B0708D1489DFFB98D3B0E271DEB3DC49 /* leveldb_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D3B69AA6B3D6B45583CFBC1B10EB2A7 /* leveldb_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B0789F5525F7CEAC862B474AF21F7544 /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6A39F4AE049F21C047511BC5A8081C /* tcp_server_utils_posix.h */; }; - B081EB34B3E72298B9895EEACB276202 /* statusor_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7A815A83BAA20EB9B7484EAD96F8A859 /* statusor_internal.h */; }; - B083C28ABFF475FBEDBAB145B1BA70E8 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 6992F760957F3C24EA06E6662CBE66D8 /* frame_goaway.h */; }; - B0A409FCE3453AE736A6268366E2A217 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A5690602DE554031B6F660D4731ED42 /* health_check.upbdefs.h */; }; - B0B0D6AE7160F7B6E1B5B7E07EEFBD57 /* env.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 817AB778B3E5601BB11379797A86C8AE /* env.h */; }; - B0B2871EBAB15054001645FF55F11227 /* FIRSecureTokenService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9310962558BBBD83898390BF377C5EA9 /* FIRSecureTokenService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0C96653DD9CA1531CC0482D3535B375 /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6AA7470987765837DAB872FDDA2A62BA /* discovery.upb.h */; }; - B0E001D0DBCC13D3962B7C4DA9FC6ACA /* per_thread_tls.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 76AA200E816C2A98A8605CB6261B9CB9 /* per_thread_tls.h */; }; - B0F28171827CC9FD248869949CE4681C /* hash_function_defaults.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2D6AECE6FE9DF2E2AB2E4B8AF3B9F4D2 /* hash_function_defaults.h */; }; - B10415227D3990D451B282B92CA59C7F /* getnameinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B01BF79872DB72BBE0BFD4EB0527C9D6 /* getnameinfo.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - B10B5B5B02A30D380C03BC2504B41D99 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 806F8CF669D69EB3EEC00B4605AF3231 /* resolve_address_impl.h */; }; - B11FB7D3803A993BACAB57E172B3614C /* statusor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DBB0F936EAD9C1CE62BBCE41D4C38A7 /* statusor.h */; }; - B120E20D7279CF498340E32945AC1ED4 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC1B7E7C9CAE9C3D76E36D07FA5850A9 /* udp_listener_config.upbdefs.h */; }; - B1315CB4CCE343F630984FEFC113AD15 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = A31FFB39CA5C2873483DFD64F1E75356 /* server_config_selector.h */; }; - B13A34CC97DC784ECCA0E138DC28CD2C /* a_dup.c in Sources */ = {isa = PBXBuildFile; fileRef = 590F9DCB1F32514A63FEA3F6982C033A /* a_dup.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B13E9E62CAFB51768A23D4C0236B546D /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 355A3A4870ECB7DFE003AF192D259D78 /* security.upbdefs.h */; }; - B1473FA61A62365510FCDBD74FC84737 /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = DD5F9EF7C35287AF0D4B1B7DC5333DFF /* endpoint_binder_pool.h */; }; - B14DCC40E75C5FC2F4CEE2D8995FC255 /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 72BE14ADB8E9D63BE83FA5F437EA17D1 /* message_decompress_filter.h */; }; - B15E636DD34B1BF9B853E4FA22BC8BF5 /* client_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 16BF8D2A37975F69B29D91B636352945 /* client_context.h */; }; - B175AEC57B0AF7140C579E350C9301AF /* time_zone_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 57154B976BBF46B3B191F57066FBB2B6 /* time_zone_posix.h */; }; - B18FED9A85C4BF90FD73A196214E8B17 /* log_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2AEB9A76A326E3D381622EA7B9D3590 /* log_writer.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - B1AE6B06B07FA48B2534BDC875D2EF75 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = DC82D6E91B4E76AF1EF3C92F3AEA9A14 /* dynamic_filters.h */; }; - B1B64B69EF2F8714EB0126E3104BCBDB /* pollset.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6EBA67254B9EC025EEA8C09284C6C855 /* pollset.h */; }; - B1BBFD49A3A0B7F536D8BBF504FCC868 /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6D3096982B7D3EAE32758EAF2C0F23E9 /* debug_location.h */; }; - B1BF8B0C692E0D3388F92A7FBEEA517B /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = EDFBD28B8B0233E8BD26BDC0EBE44644 /* timer.h */; }; - B1C20120943E79B3AEA3A547F5C60651 /* block_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0C185EB57E244F05E3A0786F995A577 /* block_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - B1C6541F1E7EB46F152DD35BF3C12B99 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 03F12C9E238CE872C4E5AD15A6C3E880 /* huffsyms.h */; }; - B1CC1C699576FC0798B0BB16CE1A63A6 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 390689CA897899BB9C8215FD2C1435D1 /* tcp_client.h */; }; - B1CDE9554B8A445377DD1C08D0981635 /* slice_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BCD1AAA6A80ED84AED36F68B1A2BC3 /* slice_split.h */; }; - B1DC12B5A3A7F1E25954B28C48843D5D /* port_undef.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = E3C030AD5C975B2D61A9775FDC1D6630 /* port_undef.inc */; }; - B1F697990515F1F94EE7C54CC21B048D /* heap-inl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 305CAD5D23F53FEEC4B49E2917B19A8A /* heap-inl.h */; }; - B2013135DE2975E97092B464D49251AB /* string_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05EFEE8FC860BAFA424F582FFF89EA53 /* string_view.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B20A781167338EB51E221F1E35E3ACDE /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = D5308B145BF7938146E0E27F9F531C95 /* span.h */; }; - B20DC7DD79620078E1AACC9B68EAC23C /* plugin_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C64F12EEE81876D57916AC68BD7D1FA /* 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"; }; }; - B2159F74E7DEDC2B7B3D8E9B973F51A6 /* waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 837537285C9BEC5295F81A450E80E355 /* waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B216D5D6D9F356108C8E1544D8C81980 /* handshake_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C0AD87FAD0EF5A2541ED6F75DB2FAB2 /* handshake_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B21807FCFE9FAFA0985D1446B0012DB3 /* x_spki.c in Sources */ = {isa = PBXBuildFile; fileRef = DD49D66BAFBE891DA7AA4111007D11DE /* x_spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2228277C7125FC58F4C6414EA50E2D1 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = F8945C5C7F9E2F863D8819348D0F453E /* http_client_filter.h */; }; - B22348E3A2B380519FE4B3EBE07863E4 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 948215A8233C514A246E79A56982434C /* GULAppEnvironmentUtil.m */; }; - B22C1DC4F948479D6BC76A8409469FE5 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A770B7AABB4322CF784037E10DAC70 /* optional.h */; }; - B2465EE7C5BD8178AF67FC31E58856BA /* server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31F06E334CBB06F34C00DD2B5D2545BF /* server_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B2635763CF0E5DADD5B07D6AEC9C9CD5 /* stacktrace_win32-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8B33DF1B3D916AD1E131CB9E5F76A057 /* stacktrace_win32-inl.inc */; }; - B271A44B29E0827E80BFDFB8E7CEA488 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B5D24B68DD6839E1EA306C4838C3A2 /* fake_credentials.h */; }; - B29B288B1DFBCFD698E92964EB431963 /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 6F1E690ECFEBBD45033DD971BDBF22EB /* alloc.h */; }; - B29BA6CB6A58EEA87C374D96113A7FD6 /* get_current_time_chrono.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C309F76B736E422845A3DDF683DFD0EC /* get_current_time_chrono.inc */; }; - B29CE0760A0B8ECF3F3F5F430AA614A0 /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = A35BF9F813177891C1221FF7B6E1EFA3 /* 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"; }; }; - B2A8A0AEF702A1435531E53D4ADDACBC /* jacobi.c in Sources */ = {isa = PBXBuildFile; fileRef = DB67F5C32EF498043599DE2BFAAA2ABB /* jacobi.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2AC0DFF4CD03A75EF3F1A7E6682ED91 /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CDFAF2E35260024A1BE63BD60A6A486 /* slice_refcount_base.h */; }; - B2B076EC5EEEA329A0124C8C41CC8A18 /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 1360D9522A38AFAB3B1B9BC5E8F4E907 /* altscontext.upb.h */; }; - B2CE065F9C588524834CEAF8D0BA0CFD /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F5FD7486731E0F60433F6C2C15AA07 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2D3C37641244DC658B4FF7CD90108DE /* derive_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C5B625764F5A5455D61EFCF3CE3C7E9 /* derive_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2D79FFF08A47CE8117310AA8D268C73 /* env.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = BA7C8764CCB1D81C3267CA651EBB7030 /* env.h */; }; - B2E1463DFC017D23D17B6F407DCD9DE4 /* pkcs8.c in Sources */ = {isa = PBXBuildFile; fileRef = F12ADB1764B204CD1A020753579C360E /* pkcs8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2E76ADD5B56685D5DAA26510235955F /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0E06C5D4EA976E046F997190A76DCC /* tcp_server.h */; }; - B2EFEE0014E722C784145E705C4DC19A /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = C8AC3660DECA55EDD75182491BE0E02E /* alts_grpc_integrity_only_record_protocol.h */; }; - B30B3110015D4D5052EDE18974B64C57 /* srds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F59D0A701AC559D06CD851A4EF0701F /* srds.upbdefs.h */; }; - B313CED4892002D4D6C8C1024359551A /* graphcycles.h in Headers */ = {isa = PBXBuildFile; fileRef = A80E88F283CE6125A45C3B9CB42BB3B1 /* graphcycles.h */; }; - B31E584530AFEC9F847D494DF96D4106 /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E886BAAAD0217251B889F27BBF6E6AEB /* extension.upb.h */; }; - B3408EE1673490CF4D46D6BDF34695D5 /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D749EFF81E7CD5C75DAA368FB61B1DF /* resolved_address_internal.h */; }; - B348C898DF7DC170D64932A85370FF53 /* internal.h in Copy crypto/chacha Private Headers */ = {isa = PBXBuildFile; fileRef = 3DC9F3AB799D826433E59BBAC00C70D7 /* internal.h */; }; - B36E0AE0D96354A91814D96C9392DB84 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = F612E893C7C7ED1FCB6396D763AD329E /* rbac_service_config_parser.h */; }; - B38D5F68C78FEE85A073C1EAB87C7401 /* load_reporting.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CDB77A157E055FBB99BE17E6FB5EC206 /* load_reporting.h */; }; - B39B9EFC749C3F6F310772BB3C32F938 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AF2183B7FC040CF5BF53E5F0B49803 /* FBLPromise+Delay.m */; }; - B39ED929C61432CA297689972A08CA12 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 82FCA0F0AC99D2ED11719EB48DB90138 /* certificate_provider_store.h */; }; - B3AAB15BCA755B9755D9FF1DF17AA6EB /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 30AC3A8E167308D1D7240D3DE5D834AF /* xds_route_config.h */; }; - B3B618470AE411DAA05FB3426018FF2B /* completion_queue_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6A2580E1C95493E5B4546C6AF57646C /* completion_queue_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B3BD2F627C465774EC10E045C1573DCF /* container.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = CF84102C19E84A907B43C8B687D2EC5E /* container.h */; }; - B3C94AED0D5E64CE23B08EF91AA5A28F /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 055EFA98F92611F06DD3C545A984662D /* number.upb.h */; }; - B3D1BFFF437776879E490FD2393C1ACF /* const_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 625D95E33A7CCAA64F96F303F8DF7849 /* const_init.h */; }; - B3DBB59DF6986E031B8D27501FEDDF58 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A66EC84DD34F10911E5EC0A70B1675 /* cluster.upb.h */; }; - B3DCD3FF1B7075910D0C7C4201ADCA0C /* FIRIdentityToolkitRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DC637756A9F0249C0C1714D9543D98CF /* FIRIdentityToolkitRequest.m */; }; - B3DE40B9843995E2ECB853DA49CBD33E /* global_config_env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 04734AB5AF74C9DE20D6D8802C0D9E18 /* global_config_env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B3DF596D214211BE5D75E38599805AF7 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC8F9E037B1CCC32C489B94082E3E01D /* GoogleUtilities-dummy.m */; }; - B3EB50B7AE7D753A6E9C9E86C78D6C86 /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = E0513206EB05495F91596B0BD900F18C /* xds_cluster.h */; }; - B3EECA8545F8C24F2A9C110585E529E1 /* sparse_set.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8A415FD529DD061B3E1E52B489E778 /* sparse_set.h */; }; - B3EF17B65BE672F52567A84A5A9D32EA /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 17B73653A6E77DBE5B4C4D0CAE6EFFD7 /* unicode_groups.h */; }; - B3FC0ADAD88794727F3F752DAA97B6B0 /* FIRAuthRPCResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 359F4AC1A320E4BE15F76DE391F2AF78 /* FIRAuthRPCResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B409EE6E7610CEA6623C3CDA05EDE6FD /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A1D0E07D29D909DC36EF28E62B54C614 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B40B6AB9FFCFB0EF68F5FB8DBE371BC9 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B8F23BAB6E574A3A2E4ECE03B2DCA2FE /* scoped_route.upbdefs.h */; }; - B4130D56B41E15BAAE51AB8D6B0555E6 /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 1B73A52E907D3A6B150B21444BBDF190 /* descriptor.upb.h */; }; - B425EB71830FBB7A63D146F19BAA628F /* FIRAuthDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 2746AE4958096327AC70E58678BD23B4 /* FIRAuthDataResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B458710CF7C5AA2A52BBDEABEE09F056 /* transport_security_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7A25EF913710F67CCE26F52CB41CD585 /* 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"; }; }; - B462DEEACA8001C6E4F6A57480BBA967 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D7D415C7C36A9A8D7F3F9675703F552E /* csds.upbdefs.h */; }; - B466A7F104C746A95829726C26B4F49E /* fake_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EE4CFF0200FE73D7112F7C9279E1EE8 /* 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"; }; }; - B46C7C3D4827D9201B380B5017662E56 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 221D8A8F051385514616E6519F967FCD /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */; }; - B481B550E6E185D22E389360F1789752 /* frame_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2FAA5C95A4C739C9F9D5C01AEA8E2FE9 /* 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"; }; }; - B4D15A99719EA9BE053B14EB74971FC0 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5DFED1F01FDCD77D59B03B4E2B3AB5 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4D6228356E8301AEFEAF3AE0BA42AFF /* resource_name.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D96D70C8DF3C10C3AA273E260D59BD7A /* 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"; }; }; - B4E459D4C470BA93F6DD4BC4DE1422EB /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF7AE67E3BE5A28A3D46D9E468EE3E5 /* duration.upb.h */; }; - B4EB74864B0B2497BC8DF81943F81164 /* polling_entity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CFEA868DA0718FE2E6F5C21105EDAB3 /* 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"; }; }; - B4F4C34926299A55E65FB76208479666 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6C941E45990F09473D99E998FF8A7D2B /* exec_ctx.h */; }; - B5025F2F5AD5F141B42FE86BE5AB38FB /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E15D9432149ABFD448857B24887A93DF /* cord_rep_btree_navigator.h */; }; - B5043148CB7664C87103E6C01103376B /* lds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5186766C19ED0E80B260A731B62EAF96 /* lds.upb.h */; }; - B504C4184BD81AD10833065903ACA588 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 04B224CEDF61E100299461ECBB4903B8 /* rbac.upbdefs.h */; }; - B50B510B81A089CD5D40FFF7775BAF45 /* sync_abseil.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 6187F081F340EC2B3E66DF800D9E5AB5 /* sync_abseil.h */; }; - B50FE4AE9BDDCB4352EB6255442D4F48 /* nid.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 431FF5DDC22FBBF06A0B03B99793FCF1 /* nid.h */; }; - B51318254504FD66E2683D0A0ED69FB5 /* FIRVerifyClientResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 65BA807BA676D6B509550FAD392E8904 /* FIRVerifyClientResponse.m */; }; - B51A40B7062C860F53142D1710522F16 /* x509_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B1538F88DB716CC834D004C2CBF9B3F /* x509_txt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B51DA2F37110406723E6906E7F9BCF50 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF0051089C60C7E7165197BD3E5A3CA /* tls_credentials.h */; }; - B530F467CBF182608A25F08C42789A25 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C318166DEC74F9FDC1958B12F6A22CB4 /* resolve_address_posix.h */; }; - B54CB0D5DD04BE7E5F27AF73FB12A86E /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4770AD5392F71D42C2FDFF3ED05EEC0A /* cfstream_handle.h */; }; - B557AFC2F881E231708ECE9CA0287816 /* FIRVerifyPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9059B544057592A07E7EE271AB952E /* FIRVerifyPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B56855EDD7E77DF931BF96B71340701D /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A14B53094333DAB228DAD025ED01610 /* parser.h */; }; - B56F7A31201530D5210D735FAA04491D /* udp_listener_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 491C5B9E8DCE4FAD6CF9F43BBBDEB359 /* udp_listener_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B579C7974970B082F1092502470572FE /* FIRAuth_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D10509B00BE01DD3698883859BB908C5 /* FIRAuth_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B580036725B40D9F833D2A5FDFC62396 /* alts_grpc_integrity_only_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0CC2DB07FA7217E9ABC8066A6BCC9DE7 /* 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"; }; }; - B5969898FD0422D49F8562C47D04B23F /* switch.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 8CC9AD7FDB2813620522076911D06528 /* switch.h */; }; - B59ADFA256DA4BFF26735A3E481BA147 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 7A03AE8D2FB86CD4A35C49826D7782B8 /* ssl_session_cache.h */; }; - B5B2E6B28E8A9360313817B82A8F3366 /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1F48A2124CD01860DD254F8F89D30A /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5C0D7FCED16AC5E9D2B0C7E145ED7B5 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FBD13DC0CA3448437E698AEF12BCEC82 /* chttp2_transport.h */; }; - B5C14272A5E07C0E30168078B617170C /* x_info.c in Sources */ = {isa = PBXBuildFile; fileRef = F9D1CC3EE498999B30139AB65F642E84 /* x_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B5CB927B7C437D0ACB550E4ABC40F2D5 /* algorithm.c in Sources */ = {isa = PBXBuildFile; fileRef = D0FE88D8D2512BABB09D84291E98BDED /* algorithm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B5D8E9E6ED5C9FB6DC0D76C88018DD09 /* gpr_slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D7B07C3D9BF4FC3E9BAE8CEDFEF26ABD /* gpr_slice.h */; }; - B5E2D5F99723DF2F485DAB713CDD0BB0 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = E2FC9010A499AC6F06F9233BA1D72B18 /* encode.h */; }; - B5E7F3139C729362C3C7880DD6C3EEA0 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = B20A596BA414E8BA79DCEA94C7207DE0 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B5E99D65EDA63583F3466C5A5091A3CE /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A090612BA2D7BFA79EFEDE37B18C92 /* civil_time.h */; }; - B5EF45343B0ED12E090FE6C4AA2891D2 /* internal.h in Copy crypto/asn1 Private Headers */ = {isa = PBXBuildFile; fileRef = 94D67BDCE3A36359AC4F1B678B390EC8 /* internal.h */; }; - B5EFA365C6EFC2A958945337084D39DD /* env_posix_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D369DC3002DB936D7ABDE484CD4F9E8 /* env_posix_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5F4E60B072526DAEF7B113CE7D755A1 /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E596444A54257E1EFD45894FE8CA034D /* scoped_route.upb.h */; }; - B60F9B206C9DF4A675D70F9F7723CB9A /* rds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B412DAE2C6175672DE35941A3450AE03 /* rds.upbdefs.h */; }; - B617F0C2B48033E73FD32913ECC8649A /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = 474616FBF04AF1BCBEB7714A4421854A /* gsec.h */; }; - B61B380E5E5F5CD5A1CEE07B951D4C0C /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = B128A2D8AE332941F77E6F017A320001 /* grpc_tls_credentials_options.h */; }; - B6246C818BE5AE4AB6F6F57DD87D7985 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D316A7E42F6ACCE9F12FD0B422FB29 /* circuit_breaker.upbdefs.h */; }; - B6383A73F0992D16B65B42F346489092 /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = B137F26F3880BE1C08B667F84F176BEB /* socket_utils_posix.h */; }; - B640E0DF410046C28CF7FC95E4F22BBD /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4B27AE92E921B8A54DBDE52F1E3EBC9 /* metadata.upbdefs.h */; }; - B64BA3AE7C178691900EFA6B662265B2 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A7A7D37537D94D33A37B443D4732AA9 /* cpp_impl_of.h */; }; - B64F3FBD07F062E44BEADBF97109D571 /* lds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C6C32CF6931BAE69159E53D68CAEFA01 /* lds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B65A9E99C378A11ADCE1350F4C345A8F /* create_channel_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 231FE5ED1ECABA37FE98975101A24994 /* create_channel_posix.h */; }; - B68215DC7882274FBC9A7DC16C493452 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = A314D3C228735D9F7CAD586E0E88D1D5 /* FIRDependency.m */; }; - B699DA60F60D122DE7B2F0F4CE6324FB /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E3F352FB05A9C17F11825B91558346E /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6A2553FB145DFA2681E4F8672D1A156 /* type_check.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B748240AA518D9D87AB8B900C2E689D7 /* type_check.h */; }; - B6A7C6F6922D55889D1E866D00C90C1A /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2EF2AC113FE66E4FB3FD3391F5E241 /* security.upb.h */; }; - B6BF6CD7F6481A752F8CE15130C3B139 /* err.c in Sources */ = {isa = PBXBuildFile; fileRef = 048FEF35773E60377A355722C171880E /* err.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B6C7F59AB0ED96798146CB08C5893CB2 /* FIRSendVerificationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A250DDC6597003E290FABCD6A7634020 /* FIRSendVerificationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6CA8FE315CE8B0B703F9DCA594ADE13 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = FA8DD3BE0C57410703E94BA4CA213FB1 /* md5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B6D23F770733ED98966F1B340729397A /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 732FD2E501BA15B3643B5E75FFE01703 /* builtins.h */; }; - B6D88E84E321B6EACE85A9DB62BA99B6 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 4CB3B826478FB3221A7CE8D09EAD6319 /* authorization_engine.h */; }; - B6E2B7FB3A6F1D580D182F511E5DA370 /* pem_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AA2D49E46F308C2B9D7AEFFF440297F /* pem_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B6E6356740348B919C4A739DBBDA6EB4 /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 578C04481D513F9AE055EBCA062B77F7 /* ssl_security_connector.h */; }; - B6F05840C006E66D0E342DC1447FC228 /* FIRVerifyClientRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FD0C845F190D7AD681D8171AF0A6D98 /* FIRVerifyClientRequest.m */; }; - B6F1F20378275F4FBAE84D07948A5484 /* internal.h in Copy crypto/pool Private Headers */ = {isa = PBXBuildFile; fileRef = 51E18CD16C038114D5BD8101417BEE2C /* internal.h */; }; - B6F535F0D927AA4C1C8EE397EF1EF237 /* grpc_tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = A36B4BEDEB17BC89D54D38110051BE8B /* 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"; }; }; - B70818240B99FE1A1C28CDA53CAAED6D /* elf_mem_image.h in Headers */ = {isa = PBXBuildFile; fileRef = 008F4B3C6F0E06E4FD9D7DA2C275B58B /* elf_mem_image.h */; }; - B71EE83FB3383393DA765E5E71642015 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FB5923F6352F0E64B8415389379F5B /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B72122C81FC2CE7897532BD557700D1F /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 09219B6965124D7CC583F7CAC19DFB79 /* credentials.h */; }; - B72228E8DC5AB45B281250B95D3D90F5 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5C53EF60285D55F87F05F004230C53 /* time_precise.h */; }; - B7248644B582566533E91D80BDF7004A /* latlng.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5250D9750970EC72662A4328BC6D34DB /* latlng.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B725BB756F4A533A969A18BB1362AF5D /* str_join.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 122B00E616010981938DF57113539D0F /* str_join.h */; }; - B736E37000FB0AA76CA076D328A6D73C /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = 47D8368B1331F87E64AF3F8F89257749 /* block.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7387A7D94CC8F333E710BDC65D06FB0 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E84B4C0FD222118A07FFDD1F4FEDBDF /* resource_locator.upbdefs.h */; }; - B7455085A27E4D3A3FC2AC5F4767D1DA /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 108BB5CD4241C0B32A859E2013DB7D69 /* tcp_posix.h */; }; - B747EC138F77C62422DF241039CF8510 /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 2C6AE7A334E057ACCE60193479DD98EE /* civil_time_detail.h */; }; - B74D5B3149CF0E6371763EBA98E3AD80 /* is_epollexclusive_available.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 74F65B120DDCF4943829A077989BC940 /* is_epollexclusive_available.h */; }; - B752D88B8EF5BE57C63F044594D4CFBF /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = B48CC10D75584ED685E40B257421B760 /* format_request.h */; }; - B75D705C7F4CC879C85A117362FEE3EB /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = DF133F2683B39795BBB6F7B19E6D29E4 /* inproc_transport.h */; }; - B778DDF1B02E7BF46DCCD11FDEE24A52 /* unicode_casefold.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3514264010C09B881E6399A2067BD9AC /* 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"; }; }; - B782D47F8181943BC912A4BC01EDB5B2 /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4643512161FB87430FB3F009482FF48F /* xds_client.h */; }; - B790A716E6B72EAD0791763E7CA2B08D /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A762BAA1F593DCF2C5508248C2A6CA5 /* transport_security_interface.h */; }; - B79D641193B3E718B5C22B7EB9FF44B7 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FED9539579A679A149C62EEB6E3C094 /* unix_sockets_posix.h */; }; - B7AB1646DB8B423E74C1C9F626C21BBB /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 587BF25E347F3F5B394DC39E2EF64039 /* route.upbdefs.h */; }; - B7B911DDCC9616B8539A25DCDA153FFE /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6E3DBC7CF3EF9831EFBBBC57694DEC /* timer.h */; }; - B7C7E3A33ACC4DD733065DC33BDCF47C /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A972C90C3984F44D9345EA92482D662 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7CBFCD0C625066631B066BBEAF0B890 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E74012D0138C064621AA13083FC17AE /* resource.upbdefs.h */; }; - B7CD056F8CAEA7A04F994A4F1F5BFEC0 /* beta_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 12135DF65E1F0C38D520F5E15E5F19D4 /* beta_distribution.h */; }; - B7E114783EDEF93377987646095C5895 /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 256CE2BBC3FD4CFC24A11F0AF4E63EF6 /* local_subchannel_pool.h */; }; - B7E52E72C920D16B063AB75835C5DC1A /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC2155119C04BAC7B6DC58CE331B31C /* http.upbdefs.h */; }; - B7E95FFCDCC49FB4BA037C9622200DB9 /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = F553422E6D75F130739156018E7932AE /* backend_metric.h */; }; - B80B5CA0BC7B546BD1B1A2962341131B /* server_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 298253A9952C4F4EDE1ACCE265869CFC /* server_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B8262B59E4274DA9F7C3DA39C1386881 /* error_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CF68FC9387B7C4FCC322FAFB715A17 /* error_internal.h */; }; - B827C7494D025728F01EF7225C09F5F7 /* flat_hash_map.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 1140BCB2FCA2D020C4A7274336D89450 /* flat_hash_map.h */; }; - B828458DCC6A43F8CB749C4FFE1421F5 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5F2259F1F974EAD2E550059282DF46 /* xds_channel_args.h */; }; - B8490A274ED15B48FA482265EA5098A9 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C728DE09CE2A2A6159631A1E8D7B19 /* rbac.upb.h */; }; - B8492C92E2FC63BBF7FC406208FC6AC8 /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DE68FFC8358FA04D5889EF2C3E394D68 /* config_source.upb.h */; }; - B84D12D104FB10433070EDC1B4D7E4DC /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = CC72DE90953D843CA4A9CDF23F33366B /* frame.h */; }; - B852DA3A3F5B50CB07E0F1B62BE462E7 /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B6BBC2793907037432260D0054EF8C2 /* load_report.upb.h */; }; - B85367EE6C9307B55C2085B4ECA85BFA /* tls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7723C6D3B664A8FA682151019390F965 /* tls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B86E490CEECBD62EDB06A91937F62100 /* randen.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2FA6D061555D83FF6B468E3F4FEA90C1 /* randen.h */; }; - B87347CDC928C55B991D4D3068D4C9D6 /* float_conversion.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 4E486D36F2AE99C0A115C39B41F6D75C /* float_conversion.h */; }; - B879AC35D191FA85ACB47F144B79D0F3 /* firebase_metadata_provider_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 689BCD4A69BC62B4DE25A7D617450B06 /* firebase_metadata_provider_noop.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B87AC23D3E9250211581E7014568B00E /* target_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2C9BA32B760A37579467B79FCBFDDE3 /* target_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B87EC27915EBE9326308D0F3DE64541B /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C921B1A372B68D80CD4463811A224C /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B894584DBDC5470CBB46500203C1DB36 /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E0AA062F356DE5E81D6DE8A6B65CC870 /* resource_locator.upb.h */; }; - B8A7150D949CF1CEB7F0729BA6405059 /* dsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4D6FCAC420BD70D8C784331997B03988 /* dsa.h */; }; - B8B08D29C48248C0C699884698E4E492 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B6EEA7A98913CF8835D7D79FADC7D1D /* resource.upbdefs.h */; }; - B8D0D6D2322901B6CC85D7402122E1D2 /* status_code_enum.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 48B4DD9A9938072A07CF259F4C5F30E0 /* status_code_enum.h */; }; - B8DAC4711ED02C63B5F34A0F810A9842 /* event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = FFE1B0EDF56982F5B5170DFF3FB711AD /* event_engine_factory.h */; }; - B8F5F7DE093ADC1DFB4A0797D8450458 /* http.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0AB6AE6D2CCC47F08DA0806F70553C6 /* http.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B8FB6F446DF31C7ED50666C35DF7968F /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B07CDF24AFD76CBF7FE99759886C34C /* Heartbeat.swift */; }; - B90595F570D76926A598CBBCF0540598 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 70597DC93E879CB99A5FB9B4486E74B6 /* sync_custom.h */; }; - B90A062D16230B4E4C513B43312E9AC0 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 801DB2F445C95D9AA81B40844F3203D7 /* http_tracer.upb.h */; }; - B90CA9E0D92CE6ED247F0F087733C71C /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 0146E1CD2F2087892BF302BEF9ED10D1 /* global_config_env.h */; }; - B90CCFE82DA5BFDE944E2D4F673D75BE /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6609D3D9D07068384CDE196697A79A1A /* ref_counted_ptr.h */; }; - B90DC09AB8531D2276FE85A527A74691 /* arg.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 34EB3707EDF7F049D8480DCB263651A9 /* arg.h */; }; - B90E9CE680AD0499F47EF7FC1051DAF3 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F6EC1DF8D438D5408BDD437ABB19C2 /* closure.h */; }; - B9179E87FE887C9543AF0AC21CDA2A9F /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F382F4DCC010C3268AD3E4B54E0C010 /* health.upb.h */; }; - B938218CC99A036AD798FBF7F0D946A8 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DCF332F2DDD31827838523295C7C02A6 /* atomic_utils.h */; }; - B93BEA5A7A43343C573FB63A4947859C /* timer_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E25E97677A1F67935E003006B920A24 /* timer_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B93EF7C054B95B63FA614A4276B0678B /* spinlock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3150ED5C74D30FFF0FFD701F245EF0A8 /* spinlock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B9425CC496F95B776905AEB01BA3ACF4 /* FIRDocumentReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38336A03A8D5B55061CD43C2CA7AD1D8 /* FIRDocumentReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - B970AC868A8143A26EAA43D76A8E3F3B /* grpc_tls_certificate_distributor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 998690A270B8FE55E3EC79A3B9FF8641 /* 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"; }; }; - B971A7F51671CF549767FF9839246BB5 /* str_join_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 65317CF0A859C74DB9311356E180086F /* str_join_internal.h */; }; - B97994ADCF71100CB1FF6FFBE1F71A76 /* channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9853E639C92F35434C27D19B4960659 /* channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B9852394FA695EEFDC738BF068DDF972 /* file_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 968FF90945CF7D58958F29673235DBEB /* 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"; }; }; - B99B97CF2CFB6401CBF8042AEC4E14D6 /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = CA2E1EAFC399537BCAFBE133BC2B1004 /* filtered_re2.h */; }; - B99E935268CC073EC0E824B426558993 /* leveldb_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66A6513433CF495099C957118F59AC12 /* leveldb_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B99F53DEF588BF8B68C26A8E16210929 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 236FDF54EC7750B0F5EF5EEF15485592 /* global_config_generic.h */; }; - B9A99A53C50A6F5C5DC341211C8D69F4 /* FIRVerifyCustomTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 02173BFC07D0ACF77EFD0440C35F6ADE /* FIRVerifyCustomTokenRequest.m */; }; - B9D30ADD45F68E8261C9F72BD0ECD1A2 /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D2BC235A12F6C796B35D7371BA1AA852 /* path.upb.h */; }; - B9D38D05DC155B8F7B4BE949BE4444F9 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = F5589CD8DD361E4ACC78FCDBC8EAD70A /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EB29D8E9E17EFCA52636263BFBCE2F /* completion_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 410EE88F2B8901B01E6768AAA8C5A931 /* 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"; }; }; - B9F61E5639F1127307AA76957B5308AC /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BC17C8532FFA2E138B5998A99E8AF139 /* socket_factory_posix.h */; }; - BA005759DD2E152BA78119878F78AFA8 /* builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E643F0A66D9C70133AAC679EAF85B41 /* builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA068C6F90F7D1636F8AF0828156B790 /* query_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = C8485145882155D44FD39FE4D318CBD9 /* query_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BA4539CBC1FF5EF8C48669465ED72A65 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C174AA07C3256E1DA497927FF6962A9D /* wrappers.upb.h */; }; - BA4DC70ABB7D9DA14A77760B789DB5AD /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 63052411865EABC071586B4BA0935098 /* global_config_env.h */; }; - BA4E5103FB7C5605184406931C34816A /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E596444A54257E1EFD45894FE8CA034D /* scoped_route.upb.h */; }; - BA57FF5B8D3CCD06DA9AAB90D6B8FF81 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5880A4129D44D0A02E2246BC3EB7DD79 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BA5C9C7536BFC1A9546EBBA1366E27D7 /* message_allocator.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C1D5F80D3D9518CA8312A8A564F580F3 /* message_allocator.h */; }; - BA65257AEBEB32771531CCDD1EB00C59 /* aead.c in Sources */ = {isa = PBXBuildFile; fileRef = 02BB76AB70FEEB044C2A851E3C5D8D7A /* aead.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BA6D088016728C7CABA55E4E80FCC435 /* FIRGetProjectConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 16A85F6C2100EF7345C885ACD1142D2B /* FIRGetProjectConfigResponse.m */; }; - BA78C669AF5E4A233F62D44446E0253F /* FIRUserInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = DA5049626C841D064ED3EF1E3BAD31B3 /* FIRUserInfoImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA7B784DFFD3D90277CBAD22493FE71E /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6CCAF64B4F5CEDF52B7EB62B9E963E /* atm_gcc_atomic.h */; }; - BA8F187159F642A3E25EE7990A9ACDC2 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C899FE818FE07B81B0033853E8C5360 /* annotations.upbdefs.h */; }; - BA9840A4FA70299ED33C062A761E7573 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 76080F0588F5B9893CAFD758CD88D968 /* channel_stack.h */; }; - BA98F6A6467E08159F10FBAEE926703E /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 861297BCB6A32ABD79814726C0A62307 /* empty.upb.h */; }; - BAAD4195E6F7F241FF76C243508A9AC9 /* tmpfile_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D0CBC24FE3C66CAEBDDE5783D7C683A /* tmpfile_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BAAE6C4AE9EC7452BEE436044D7472C3 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 2677924889F0BAF829EA6C296F2F417F /* time.h */; }; - BAC95E720EC73A440ABBF0322C6022EE /* re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 194D9E902B5032863A3872DFA38643E3 /* re2.h */; }; - BACB16EC05DB58CC1B382AB4EEBA3073 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = E592DAE2079B75A9B744AAA603FF2E0D /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BACEDD2DDC8CD21C29691E154DF50E42 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 55BEB17780C7EC816508770FC262F1DF /* def.hpp */; }; - BADF5A2443CE395A60BD6AA037A7D902 /* address.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F770904C7D178770A2BA31A6AF947AA2 /* 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"; }; }; - BAEC7077E7215CC4019CD76E3F4F5FB9 /* grpc_ares_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF0435CDC5C3BB45A9AF2EE6A467ABA4 /* 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"; }; }; - BAF30714C8799B004E8E8AF8DA07DFD0 /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 17C760A7FE09BDFDC990826F5DB964C9 /* channel_stack.h */; }; - BAF66BC0DCCC85C48CA3815942DAAA5E /* memory_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B0008F4793AB277EB46B1A6D539153 /* memory_request.h */; }; - BB025C910C02CC85E51427AFF05FD31B /* windows.c in Sources */ = {isa = PBXBuildFile; fileRef = EBF78627D85A05E925BCEC8B289D3D03 /* windows.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BB02ABD371E8412125EA1EC3ED818880 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9982753F35141DA7C6C7223EC7AB08BE /* rbac.upb.h */; }; - BB05B63116EFFE2F2EAAFE46C566F8CE /* byte_stream_cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91BB38196304FAAA1B318D6220C17D9F /* byte_stream_cpp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BB111206BD42FCB8A7E5A1F322C3F8BB /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E905C1ED2D4D8850CDF8CD236014367 /* md4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BB11E7B8F89D2DBC94DC24BBED9C7543 /* resource_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2362F1A093F5A0B02C13C48CFCA63057 /* resource_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BB1891F62A416B9888F57A67DA081D96 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D71A3F7964F4CBD250DE3BC54339B7 /* atm_windows.h */; }; - BB2BC14126AD75D0BCFB9781573DFD66 /* FIRMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 693AD50BB3C191C00EDB944DAF718041 /* FIRMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB35203AFA58A218E7E1D20A9E265E25 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 237003C6E93AE690EEAB407C47E3479D /* auth_filters.h */; }; - BB36DA492E97BD47AF985E95D7D0737E /* alts_unseal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9AE172C90D185A9FBDBAAF64606089AA /* 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"; }; }; - BB409EB239A6F54140B94106C77314C2 /* randen_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B9BC03AA51C46FBEF205B068CEDEEB69 /* randen_engine.h */; }; - BB48C4A22087BC1F25A2966C3FAD0863 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 7ADED8F1E6190B3D423AE2A96A2BB920 /* matchers.h */; }; - BB5389067B4DD818E75313C520AE3009 /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = A68EA86884D69D502BFE4170135DC461 /* slice.h */; }; - BB5806CCA4EF1E15CEB997D4718AA394 /* symbolize_win32.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 64D5D8B4689A4459A9513880B7C0B3F8 /* symbolize_win32.inc */; }; - BB7114F66AEBCCBA5A0DA39B97E00F52 /* function_ref.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 209719DEF4DC58AD4FBCD23512B758EC /* function_ref.h */; }; - BB77FF4447DD67B2FFB76E2BB06FB94A /* cord_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86FD8F68F4A6B1F258C6DC6DCF572316 /* cord_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BB7941B769165103C2360F6402D0BC1F /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = 950D283A1E1DB9EEEBEF9281504677CB /* composite_credentials.h */; }; - BB7AB92C30317FC194842B114AD5D9F4 /* e_aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 478D5AF4B55E749ECFA3D66985065523 /* e_aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BB8825B0B45AA1215F9029CBDF952214 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E5CDAC6B19E41A3101370687183966B /* metadata.upbdefs.h */; }; - BB88E58FFAE582F2B34A7A02F8F39473 /* channel_stack_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9DC59AACBC5A355A732AF1B0ADB4FF5 /* 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"; }; }; - BBBA5E74D7A91B469703A02DB9E33203 /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C9DEA443590B430A4E0BA9F624F705B /* 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"; }; }; - BBC3BFB094C2FA6801D627D2F0550DAC /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 70598FDB7508AB320D1A279910567961 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BBD7CF2B54AB682C28CBA37CA191FBF9 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DEE616058B744730B0D59A55A36A813 /* varint.h */; }; - BBDAFD761823E5D4053202E0956B8565 /* internal.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = C43412CF783078771C9977A38D5AB68B /* internal.h */; }; - BBF5936113184162C29C2BB34F47051C /* raw_hash_set.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BE9B3771AD49B4115D29B2442FBD608B /* raw_hash_set.h */; }; - BBF75AD7F7230DE01918CB396F7C47D3 /* nfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8573B22D701832A339D06B71454F1A9 /* nfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BBF8DCE7D0FD090E745112A9636A71C2 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C19801C5C5306C528B28DA52BD5E10AE /* syntax.upb.h */; }; - BC00B9B64EE47FFF24340E27496E066A /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C0FD7E8CDCE2D3AC3E45F2022FB15C89 /* circuit_breaker.upb.h */; }; - BC0114D3A8773025AEE0CA7F54C8770A /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 7BC6F61972B12C5AFE35B95B4E2FEF46 /* aws_external_account_credentials.h */; }; - BC49B132C39E8EBC6499A99E9102CF67 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1201AC5472C2B4881F5AC493870EB983 /* proxy_protocol.upb.h */; }; - BC5AE12356BCB8D2B38BF2147C0516B9 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 12429A113E4A88203438C07F04B7E0CE /* ads.upb.h */; }; - BC7399D6B169CA9A8543AAA025EDD3CA /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 2E4F6A1682FB6A646EAD4A871E104DF0 /* alts_crypter.h */; }; - BC92480F81FBB5472A691C764FE62BBC /* security.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 946ECDA26094B9C25497FB8DC4AD10ED /* security.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BC988A7A3A2A3ECB43AC4920C5183BEF /* invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDA870F6A997E924EC4374F49264977 /* invoke.h */; }; - BCAE95CDF1264E3405205895F85A29C5 /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CE6B35F248E874B3A76BC25335F41458 /* grpc_service.upb.h */; }; - BCBB7888271AB0383564DFB19B9EF5B9 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = A42A68A37270D926C25343AE4E625A95 /* connected_channel.h */; }; - BCBB9E8E963A42DE815D0F4C8447BC39 /* tcp_client_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D6799C40D723F2EA94222DB17A1E4FA /* 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"; }; }; - BCD289E8724BD51FEF6C4265F6DC6D53 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A178747E2BB665ED54072C495D013A /* hpack_encoder_table.h */; }; - BCEC348747528848BCF56A73E2BECDA8 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 95A754F02FF7A7672AC0B2EB718D939A /* completion_queue_factory.h */; }; - BCF006284AC5430A5B8E65EC36BBCC52 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = CB554E4EFAE2152B9F0F887AAA50F612 /* exec_ctx.h */; }; - BCF13AD637134A0405DD3BC952DC876F /* checker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CEEF3B6D7A39DD59099C171ACDF08DA /* checker.h */; }; - BCF9150A48033BBEBF2494A625421F38 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D24F2197A3CAB3D035C336389193070 /* dynamic_filters.h */; }; - BD056E63CB4CAA6ECC333FBA20120DAB /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 445EC53C4499CDE695F3AE222F60EB69 /* protocol.upb.h */; }; - BD14AE4C5ABA7B5773AC233D9EC8A9F0 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 27EB040C9F6623F53A8CEDBC2A07DE6C /* status_helper.h */; }; - BD1DB6B42329BBC3B9114BC1BB754822 /* xds_channel_stack_modifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 08F56A47FD47D730D49C1F0AC250A77B /* 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"; }; }; - BD342C625DE496796C9D3C92FB695CE6 /* FIRStartMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 186AB981471D537A21CF9D1312C54DF1 /* FIRStartMFAEnrollmentResponse.m */; }; - BD3454C1B11EF2A05C7A3D99B9F52BAD /* global_config.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B96243AE067B5959A749503F23EF3E72 /* global_config.h */; }; - BD39FFBEFBF28542191F51B44424759A /* string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9588A547B728A1D2939D655BAD7F0544 /* string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD40C689B48D793906F3A049EA42142D /* refcount_c11.c in Sources */ = {isa = PBXBuildFile; fileRef = 2517A8D97C1C3BFC7DDF2D1CEE2601F1 /* refcount_c11.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BD58C5D932736F0A0605A279B12F0572 /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7E475A835489D536032B2126BB7F46 /* call_op_set_interface.h */; }; - BD5A43C7828C09B870D86160A4E27234 /* FIRAuthExceptionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F444C749369E35D8C929DC01DD41D0 /* FIRAuthExceptionUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD62F54270791B456A75F64015A1B6E7 /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 9240624901210D4C21AFB04C54534C7B /* any.upb.h */; }; - BD68D25744A286032B757C0A801D3A38 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = 30641BF0C9A6C56579616B86B9CBEDC0 /* escaping.h */; }; - BD69EDD3B60F534F0F37B076FEB84742 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 3196A6973F0A0600A4A185932D3B0832 /* spinlock.h */; }; - BD6BEC9012B88F5C949F381F16C6AA75 /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = C3CFED6ADCDF1D2EFF227DB4836B1822 /* useful.h */; }; - BD6DB733900D30A8D71B8AE854F2122C /* mutexlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A6023FCAA29295E143235996A575562 /* mutexlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD7A4CF8EF6DE7EB645E46D286E9812F /* cord_rep_consume.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CE331B4A316B5158904BD0AF7046BD1 /* cord_rep_consume.h */; }; - BD8A086F4BBF13572C0E91D615263A15 /* distribution_caller.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D6C60E3941E66348B76800E5F9E3F5FF /* distribution_caller.h */; }; - BD8BE8EC3013BAD4C3C2C230B3860713 /* bitstate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 685081A1902DCC533A453331A17B3466 /* bitstate.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD9025D2BD96A32FD6DDACA363C4DF87 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CD1B87BECA28E0D1476AA7FFF433E3 /* lockfree_event.h */; }; - BD9214D30BADE61EF4505ABFB114DE77 /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 086A00C6B82047D630270FA8F2293E5E /* GDTCORTransport.m */; }; - BD98D2F9E2B19EF76BFADAE23293167E /* eval.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A9CB1DF3A5F94E00496DDF8FE6BF58C7 /* eval.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD99DAA9C4B9C38D80411136110DDE66 /* spake25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BCBE3146C591FB9B610D094A393F919 /* spake25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BDB53FAAB2839CE6C4602BB6224407E7 /* jwt_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = F76C167FF95D245F602D460422DAFC83 /* 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"; }; }; - BDD0043BCBEB3C0B2280F6B9D6BD8F1E /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC93CBE5474FA282C8C18A49F029B47 /* security_connector.h */; }; - BDD8A9845A4BC1C7578DEF1F98DB7D35 /* x_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 3EDE27C56EE9D0DB6355BD59E4D57CB7 /* x_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BDE26FBA0FF2E0F0E32F0AA0CA3FF267 /* bdp_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = D8DE4E2C9C14967A29E55F97DC61342D /* 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"; }; }; - BDE5AAEFE9D7005BF278668EABBD5D15 /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 3A14B53094333DAB228DAD025ED01610 /* parser.h */; }; - BDEA3E019936C2EFCB3D27D1FB60D4A8 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 351C2030094A0B30ED06BA4FB171AD64 /* ssl_session_cache.h */; }; - BDF72785C2DAA94A8091832B5C00B3BF /* FIRTwitterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF496676802304202D5940F12569C51 /* FIRTwitterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE0C3867364C15CB8ACDFF0595A8E862 /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = EB1743C3DE9AF6A5D7F8459C4F1990F7 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BE40D7E7977FC5A221CF473660FF9DD8 /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 82519058DB16C1508CCC9DB903349F65 /* chacha.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BE556A39AB570ECC0BE161BFC787A59A /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E198F4A7374CF35608E3D56C9A802F60 /* duration.upb.h */; }; - BE6D33C490E8EED5353B99C452035DDD /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ABA4A13C9EAC21C4B7CA8B69309E810F /* orca_load_report.upb.h */; }; - BE71196953BC0EA848C06BAAF68888B3 /* generic_stub.h in Headers */ = {isa = PBXBuildFile; fileRef = 968DE242C1A9C9C4A61776D3BFE06487 /* generic_stub.h */; }; - BE788D21DAA3A292DCBD80401C2D3AF0 /* binder_security_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FE0FDABB311ED38489D45C52777A2DD /* binder_security_policy.h */; }; - BE7F84629C961C8CC28C944F75EF440F /* FIREmailLinkSignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1049A0D6E69B70BEC0AFA43348A93D7B /* FIREmailLinkSignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE88FB76737E8C60190A5DA8DBFF6765 /* cipher.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 45620454AB15091C96150170C78F36F5 /* cipher.h */; }; - BE8CBEA57AC7EC7A84E1F9A3F1A6A5D8 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 21E0824CE197191EA4748AED5AB0F409 /* wrappers.upb.h */; }; - BE93ADD21E5B7DC81ADCDA31F0F8FAC1 /* rds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A4BBBE1B26BB85CE249D843C6DEFC784 /* rds.upb.h */; }; - BE957583F436ED7466673E502EA9784D /* str_join.h in Headers */ = {isa = PBXBuildFile; fileRef = 122B00E616010981938DF57113539D0F /* str_join.h */; }; - BE9FEC5393078F8315E33D063EE4B86D /* gpr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C736684F4696714E6AEC832225730C /* gpr_types.h */; }; - BEBA0E5B1F86229B49F1845C0F4A9E56 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7138D6A69866788DF7070E6D9E7A7A /* hpack_encoder.h */; }; - BECC04E3AC160404EE3DC481FEFA562F /* FIRSetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6B5F2A71E7C74B21DE797E5DE5A864 /* FIRSetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BECD1E67B1032365EABAC5722CCC0F39 /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C0C0E1E847F84B5E23FC49A2629F6B /* msg.h */; }; - BED0AB867F42B23F5164F26DBFFDCEE7 /* GDTCCTUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A113D06AA76DBF4562F41B3781E9C2 /* GDTCCTUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BED19D7DDE2503505746FE94C907D0EC /* chacha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9A8902AAE8256B1B28A69B8B8D0C6518 /* chacha.h */; }; - BEDEBA6E7E4FEBDAA5DFC57F927E509F /* thd_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6499B5E2D93CDB8E5DB72F18F8D4E328 /* thd_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BEDF793A41BD9D94D75703B96B4D1859 /* siphash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2E64C988A06069008CBE7404176446EC /* siphash.h */; }; - BEE694A6776911527E6A354C514BAD66 /* str_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DBC6A7D941C308EA8FF996B1CEE1F16 /* str_split.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BEE92F8AB390E57FCE49A698F65B8131 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 5983163DBF8E6D8A4ADEBD3302183817 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BEEA004315ACDD2B2DF38C5658A2663F /* time_zone_if.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03281A9BADCE0D3F956492525C03536B /* time_zone_if.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BEFEAE1966FB7CB2430F61FDEB2A00BA /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EBEF183D1561CEC4392816F0B6B7C13 /* async_unary_call.h */; }; - BF051C751501A0149A4B986366792C00 /* any.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 64060B2D9AFB12B064F19D77A7627D14 /* 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"; }; }; - BF0EBCD07B7033DD532FF60551900747 /* exponential_biased.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05945181925CD902E93B6CC28DB4AFF4 /* exponential_biased.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BF1138AF228E0A37BF3E0613D66D8ECA /* rbac_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70394CD12CD6E329869CFDEF38DC21B2 /* 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"; }; }; - BF21A42119B4DF34B5C9A4666E58A52B /* x509rset.c in Sources */ = {isa = PBXBuildFile; fileRef = 301F96EF0324E4BB2ABE6AB951938A4A /* x509rset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BF23C801AAE7E65F51A7C3752BD17A43 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B56502FE541E7DD799C011148B62A3 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF301E0D91AF2C37B74111A5E7911744 /* delocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F5AED04D774AFB1CDCBB0DBAF1EF04 /* delocate.h */; }; - BF3BCDA0078876E63912C90E90512CF8 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4359F7F3150EE9F87188C87CFE87FBCA /* cert.upb.h */; }; - BF469652F77CED8FEE30878333177793 /* byte_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7FCCD9A63BC16F8C70552E3B5888B2A4 /* byte_buffer.h */; }; - BF52DF97FAF547621C8FEFCF3F966022 /* gRPC-C++-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E73ACFC00C2148A3968C43975F0CD /* gRPC-C++-dummy.m */; }; - BF5A89001A7D2CEC08EE77DF0BF88336 /* time_averaged_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4D3CB0CE6FAFA4A3EA9A781FFA104CD /* 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"; }; }; - BF5F82F73D72C6A0AF37DC26149FAE04 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 7673C8C82A949E7709FCE60ECC2E03FB /* promise.h */; }; - BF64185CF6003AA2CFA2910A6B00B9FC /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DC02CD35005D5EC01B54A8BE99C10CB /* inproc_transport.h */; }; - BF6DA29C01237DBFC5A70B28AB4EC3A5 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 652D316F848D030738302B4E03E0812B /* xds_bootstrap.h */; }; - BF70D23030D4407F769E44D1B39EB1D6 /* tty.c in Sources */ = {isa = PBXBuildFile; fileRef = DF96EB173C3D3D9BB5CB096769BB2EF3 /* tty.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - BF8B57D7C62220C4779B892B2E9848E3 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E84B4C0FD222118A07FFDD1F4FEDBDF /* resource_locator.upbdefs.h */; }; - BF902C14D02CE7A96C05DBE14BFA89EF /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = DABA334080FF1B8BC3C3702CF0D77E81 /* work_serializer.h */; }; - BF96AA7B65DE41D10A4DF4C183CD60A1 /* any.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6966DEA203904AE91FD20E8881552F78 /* any.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BFB3CF036F15C1C2B51109B383251D06 /* sdk_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E65C5AAB84E9D9577DCF7C80DEF1CD5 /* sdk_server_authz_filter.h */; }; - BFB65183FD99512401FFD902BFF9F219 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 17D6DB6DF4AA4B150207E77864495927 /* race.h */; }; - BFB79F6324591A48BEDF7F2E4AB95E95 /* switch.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 2B108932F308EF62DB064CBBAA1EEAD7 /* switch.h */; }; - BFC19F1B679251E483C898E3FB81B3BB /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 6B954F2A8229A780BC39577C5817474A /* grpc_authorization_engine.h */; }; - BFEDB7CDA8E7BA854CAF135EB09D0236 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 698C96D39E5B7CA5276758B607E300BC /* ring_hash.h */; }; - BFFE815F637B56EE33C41DA02B27D7C5 /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A6510FEAF022F1A7D52FAB5DF8E970 /* propagation_bits.h */; }; - C0018E6C9B8B1999EC479D07AB9FA074 /* ext_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C24E9D2FB1CEE0ADFEEB298B87A8E6 /* ext_dat.h */; }; - C006DA1DE10C2F0F8B25D87810CEADB5 /* server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62F0B786F7913F2A931E90C970F29982 /* server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C00834F87B572A334C04356DEBC93141 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0F41918E1B54D5852E73828BAFE1C4 /* xds_resource_type_impl.h */; }; - C017A3AA4A4FE81482DBF5A905C2F2AF /* nonsecure_base.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1F3F5ABE756FFB0C88CEF34B25192312 /* nonsecure_base.h */; }; - C01A438B2CD9ECD47D556A14BCE309C8 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 9DC4C9F0C148108AF3970F58AB84F494 /* fault_injection_filter.h */; }; - C01CDD230E5F6DA61B71D4016536092D /* binder_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0B9AA38F9ECD62D502E9168A7E7D00B /* binder_connector.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C028F9A39AEFADB9B037143F062ECCB5 /* montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = D341324B667D52FF17BB9DEB60FAEA2D /* montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C02C4C8C2CD105696CD43B39B052C2D9 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7CA0185F83ACA006EC727DBDF59D27AD /* proxy_protocol.upbdefs.h */; }; - C03F1233F9A2C9A9D225718AF7D104CB /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = DC78B1A132A43E5B8AFE780965E476AB /* sync_stream.h */; }; - C03F20BF1A4E9C1CDC3B701E3F2F1395 /* two_level_iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9935419A6C0E6B1EAD44499AB3D4984C /* two_level_iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C045AF761A9073522696BE8541995003 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 6943DEED378A2F4915E7B9E730F39614 /* def.hpp */; }; - C04FA6A28C555A1202A2B9997F7B8C22 /* mpmcqueue.h in Copy src/core/lib/iomgr/executor Private Headers */ = {isa = PBXBuildFile; fileRef = 41D96FBC9D0A6E1C99462DA2C4012D29 /* mpmcqueue.h */; }; - C05CA430885962E2A6DE9A597CAC3257 /* s3_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = DDC90827167DE07186F2C45B18646DBF /* s3_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C07286B6CD16ECEE7FBB09DA7073E171 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8CE1456274AE8409FB524F00E978C0 /* threadpool.h */; }; - C08C3001A41F96BD570C09B4C632F5AF /* cds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A043C3A05AF6ED8594DD9916B685B94D /* cds.upbdefs.h */; }; - C09BFA3D0B4ABFFE20D2021C13A3CAEE /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 527C17EF3B4C69823F04617EC5125736 /* GULNetworkConstants.m */; }; - C0BBF38B68E4920828FF8A98649F5522 /* iomgr_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = CC9D9002A2F38A3892043EC9E0BF3891 /* iomgr_custom.h */; }; - C0CA483C4FAB55BF0D7210F87C829153 /* FIRAuthAppCredentialManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D0B811F017EF432AF6BAF29C425735 /* FIRAuthAppCredentialManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0D1D5776F5835C7B8B144396308232C /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0A4786DF96C94BEA793A9C5243A9B166 /* health_check.upb.h */; }; - C0D3297F16BDD1412513CACCAE2E703C /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = D8D76ECB21C28DC7140E59D0E33290F9 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0DB7C878C05E8C849AE1574E330F9C3 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = BFA3FB9DBFA3D42EA939C6DDDB126768 /* authorization_policy_provider.h */; }; - C0DD218A1B5E1BBDF0D75EED369E0AE3 /* client_authority_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 08C9E81DF8129B2441B49C3B9F58FDB5 /* 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"; }; }; - C0E4A230F91AD50B87F93A05EEEFD737 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B20CC8A728B6D40F4FF620667944D9 /* hpack_encoder.h */; }; - C0E778DCA54119688E044D1BCA36199D /* firebase_metadata_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 41A034203E4D9789F401092AC3308040 /* firebase_metadata_provider.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C0E78EB9ACFFCAC00B56A95E62A4FB15 /* service_type.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 6B89BF58B0C0A2CFFCA992DEFDFED189 /* service_type.h */; }; - C0FA5CEBB4B421CDBB8EFBA4F8A4A3C6 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0BE4A3B06C86885A15365B31733013 /* ref_counted.h */; }; - C10219012E77287EE228A4CD3B8BF477 /* FIRTransaction.mm in Sources */ = {isa = PBXBuildFile; fileRef = C3178AA1C1D7B8AF668B13F35208BB37 /* FIRTransaction.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - C111B86EC1ED31D574ABEDDB9E0DD1E1 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E65AEAD12D47B9D02DFB9657A058EB8 /* fork.h */; }; - C125E3500B5418283525E53FCB325EF6 /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B99997C354F774BF2D6DFBA0C326C38B /* slice.h */; }; - C12B651D89725DEA81B113F4F3F4A43E /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E80206B45ADDCEAB1569064FDA5ACD /* tcp_windows.h */; }; - C13FF350EB7A04F00ABE3CE25F81D226 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 6BCB6EF77612A02652B40481FC7C0ED3 /* jwt_verifier.h */; }; - C1557C89FA58F857A5CDC3C146666435 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 616F9F183EFBE5B98C5791972DD1ABA4 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C159BA973C615BA4E4C28D6BCE2DA41A /* api_listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FD71EC52CB8E6B1C76E04C40B49DECA /* 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"; }; }; - C168BEAC85F0F3D2A190F787C9AA99F6 /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 0724A62328D18B5FF33F489B2E8AF32B /* memory.h */; }; - C1779BF58FD9152C6E85C64C749728CA /* aws_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D65CAD5624BD2F29D6B46EFE7F095817 /* 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"; }; }; - C17D2DFFAE71160671DC7CB49ECEC463 /* tcp_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEB5E7DDCA3FF8B23C041BE45ED60ED0 /* 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"; }; }; - C18F17AE85817DDA2AFA904F6073526B /* FIRAuthDataResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AFA31394D90226A94823122D7537827A /* FIRAuthDataResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C19087712C382BA28EFDA3796E8CFE2E /* version.c in Sources */ = {isa = PBXBuildFile; fileRef = E9CAA198FD151FBEDE21AC4EC956EC2A /* version.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - C1A4C7B3E1D894CA48CFF6515ADA44D0 /* env_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6270D4F2F333A591768623A17DFE9559 /* env_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C1B4C08EDD7960C08B809048959F55F0 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 661BCF903B4D5ADFB3247D7C25075F25 /* ev_posix.h */; }; - C1D27C9B96959A5DBB44350336F0DF38 /* substitution_format_string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FAAF296D8C41C5E6F712A89A98BAA4F /* 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"; }; }; - C1DC6C72054A723FC25C3D4899608AD4 /* FIRAuthErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 407479761867BC51108FDEF5AECCA921 /* FIRAuthErrorUtils.m */; }; - C1E310867BDF031B82EB5D394FA4DC4E /* compression_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 629946C6BD3C66B3D8F2B92BEEE509DE /* compression_types.h */; }; - C1FF762114098B29F58CDD5E19205E68 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A587CE9582409E4F9F8A18CE9770F81 /* server_callback.h */; }; - C1FFCA90C84AE461BEED77B7FF8DE398 /* pollset_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = B17D3765AC63DEDCD4562043E72817FA /* 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"; }; }; - C2088CBD23CCD865187B4C4465977F49 /* retry_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = C080DEC7E66CDD884AA5D181A79249D7 /* 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"; }; }; - C20F21FDB55F2CD3C5B78E656530E0A4 /* message_decompress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C16D69764B5A336CE2E754A80C2D7336 /* message_decompress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C216774670D75AF5B42CDB473E4CDF01 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 92CF45BA77F86CCD6819B0D98F0C0BAD /* method_handler.h */; }; - C21C3B63A0F83381BD6EC403E677C951 /* custom_tag.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CC2AF9358F90E27C92C5EE8088F89502 /* custom_tag.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C222AF7C640DEB7C2D6FDFBB0F2A85E7 /* grpc_security_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 7475970E1198DE8F552DE4D96C8774DE /* grpc_security_constants.h */; }; - C224FA06D1229FF501691C1EE1CF2865 /* binder_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 79E05EE534DA72A2C427B0B204D75916 /* binder_constants.h */; }; - C22CD6B6FC0B130B242BD7A9C5FAB6F7 /* grpc_nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2C8C251885ABD3047EBAF2443F9E18F9 /* grpc_nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C22E3C9F3DC31FC5942802C79E3273FF /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = FDE8C0E638ACDF3599AB17E05D1D57FC /* slice.h */; }; - C23F43268BB2A4776622CEA365C47D4A /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D89E60C69C9D8691D454FB1B145ED0F4 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C24A798DA1DC030FF021C0A487050970 /* seed_material.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 29162625476EED4B899EAA781ED51679 /* seed_material.h */; }; - C258271167E9653691F0D94F2A657328 /* log_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 350BB5B6ED4023073151A810AFA778F0 /* log_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C263E63F851DDC7F3A2998F7F6863B93 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CA55CBAF2E98B57BFFEDABA03F25B38 /* 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"; }; }; - C265385103CA77FE476DDA15AD2DEBD2 /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 4D19F7F151E638E1566A7C053D2C4DFF /* connection_id_generator.h */; }; - C2671141DAE5ED092652F166ED2866CA /* tree.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 7EF49051A0998E8FA2DA3D036CD91262 /* tree.h */; }; - C278E2840FB89822B8F46A3A4BA97518 /* string_constant.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 92AF8E96F7C3EB355BAE1B4CC4875012 /* string_constant.h */; }; - C288434ADD82952344A20A8206BA9C82 /* check_gcp_environment_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 911460E9E1D764F7B156E18A94819507 /* 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"; }; }; - C28F41D317AB4392F83CC8E6842E848F /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C8A983BD476638DE1C216B609CD70D1 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C2AF452269E8F4AA89B260418DFCA80D /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C462C711E99A867BDC0A5126C46C710A /* call_tracer.h */; }; - C2C2677E06B7256EFF7C4885CBCCCDE4 /* s3_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = E155A005DF25CE96972E3AC05FB3A94F /* s3_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C2C800BE5E8E75A895E6759EEE69CB20 /* child_policy_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01EDFCF5D02DCACA3EA8AFE078A56372 /* 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"; }; }; - C2DEE48A3D891F96629CC5B70FDA72D0 /* tcp_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D42394AFD21771B30F21D48CC55A5C8D /* tcp_custom.h */; }; - C2E1827D52B1A67AEA2259AF40A843A1 /* path.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 74D9013913FD7F5373D1E286F0D3E22D /* 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"; }; }; - C2E5D5EDF8D24DC60DA97CDFF7C2893A /* grpclb_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = D25B6C442FF545F49CEFEAF985590F2D /* 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"; }; }; - C2E9D319329543B2ABBAAEEF40A8307D /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = A319E2848167F302D33704B54E9C1BB9 /* alts_tsi_handshaker.h */; }; - C2EE09E379CAEBA3147FF22B4150FC65 /* document_key_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 823307DBB99753D7D63E4240D7AB7532 /* document_key_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C2F02CC49191CED4AD65D20A1D84962C /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D5AF258E4577E6ECFDC07B7D70237A35 /* authority.upbdefs.h */; }; - C30F46A7D901DA6E3D09C06FFA8504F4 /* secure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D0CD146BB23ADA6C8DE4CC62EDD8F601 /* secure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C311BBD527764F054112D37C8ED5B296 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4770AD5392F71D42C2FDFF3ED05EEC0A /* cfstream_handle.h */; }; - C315EC2969B3C49FDF277041234B0E92 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8757EE11A45905CD3C789A32FD30A4 /* string.upb.h */; }; - C321FF7477058E5BE8F727220EA11A2B /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = BBE2BFD957CE7C38FE4A7FDCDF71D2AE /* altscontext.upb.h */; }; - C322CCD47740C5B41DB2B33F2C3A3956 /* pool.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A717D22B8ABA4AA45090C343CCF71B65 /* pool.h */; }; - C3249EBA62BC5D7C5B4C56652818A657 /* ec_montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = FA629B5DBD44D22B5379CA0BE84C472C /* ec_montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C330C979BED78B124F0B8ED725734770 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B2EBC1C80C77FD4FC1787C9FA16F2F25 /* empty.upb.h */; }; - C3570A68EA532B0E9DA668C2D76DE4D5 /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = BF735140546D90B9FCCE110DAE6474EA /* loop.h */; }; - C35800B750319F20BB73E443247DC3AA /* secret.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7782A1146E6A2F48B994E88620F5D44D /* secret.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C35B803212B158920B8660352449CD11 /* FIRAuthStoredUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3775D0CDC52BDD5A7CFD3EE88368628 /* FIRAuthStoredUserManager.m */; }; - C360CB944583F3827518E5222172FF46 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 0123B5EDEF4A14D9CE53785D79866588 /* aws_request_signer.h */; }; - C37B0ED71B735E2783997C0B291F1681 /* ascii.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 278F37A20F9EE3B1A2577D97369A38F9 /* ascii.h */; }; - C37D2CA2C9DAFF450B6763B2AAFDA30D /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 62097D92B72E809967C8D0989A77FCDC /* debug_location.h */; }; - C385927543F9556F05100582AFB9202B /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 76D7DD4C71EE11254080F7DF0717AEE0 /* percent.upb.h */; }; - C395B5F7BE7E0B593CDB22985C31BEA5 /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 2C60B7A7C032805CF2ADE7B597C33DBA /* loop.h */; }; - C39BB61BBA7DFF3413CEBC8605593F72 /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 281D7CB2C39238AD997A50924356692A /* error_utils.h */; }; - C3B5396C023C5BFB9EB5F17F9EA1A3F2 /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1960D9067D5E66F3BF55125055D12786 /* status_conversion.h */; }; - C3B6FEBDCFB1148E17207B87DFD6B713 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D2E0296904A01121472F6025702E25 /* time_precise.h */; }; - C3CF0C9893F2F2D97484F09E9C184F22 /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37B8C76488233F9B77C6A3CA062AEB52 /* regex.upb.h */; }; - C3CFDA62C9039FA5DB4601BB01F63DE0 /* blake2.c in Sources */ = {isa = PBXBuildFile; fileRef = 150445BDBA63DA02F8A9D99400A7FA80 /* blake2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C3DC99638667290AAD42A58A8EDA9F9B /* bad_optional_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 8260A36825F444D43C8FA8ED5D178CB6 /* bad_optional_access.h */; }; - C3DD58ED0AEAD1DB00B7A5E45DB58A2A /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E5B07CD3F0EB4A6A7FF7CC9EF0AF6C4 /* FBLPromiseError.m */; }; - C3E3E0F45265A375AE5235E51BD3B91E /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 56AA12118D3A9F28C995C4618237BFCB /* router.upb.h */; }; - C3E9ED573D814351DAA672D187B170CF /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F17342CEFFC42DB864338830958B7006 /* sync_posix.h */; }; - C3EA23BBC29B95193E7E2E22064D2CF8 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 26044C8A88DBA8070C43339A9D8C66C2 /* security_context.h */; }; - C414AB0FFC10830C563B1B9B6CE0A7CC /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = B5592154D74A2E3E3DA27A305B0BEFBD /* parse_address.h */; }; - C414B9B35308A5E5F20BDC88C90662E5 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B798171AF0544B2942D9ED30CF2C7F0 /* logging.h */; }; - C4190B3185FAD20EDBE7195D900F32FC /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 661BCF903B4D5ADFB3247D7C25075F25 /* ev_posix.h */; }; - C41F7388320E7DC0C82C1325A603A14F /* scalar.c in Sources */ = {isa = PBXBuildFile; fileRef = DBC6321CBE1EADECC1A7375957D40CCD /* scalar.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C42461933FC6F227A5A1495D5A39CB15 /* benchmark.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 068F4F2AD949B3784C2592596099624D /* benchmark.h */; }; - C42DA8BC73D79507A040D2B5949734CC /* opensslv.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AADD034B3C585D0C5C8539243228CF7 /* opensslv.h */; }; - C4308827FFDF1CEEBF24EAAAE9D6E1A3 /* reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44AB9CC0ABD6027D0E570AFA0B38B90A /* reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C443343985C859CE61EDD66DE3A64E46 /* alloc.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 393DA0FC00B49ABF622D54F72B096A0D /* alloc.h */; }; - C44D974A4DBF7D77117DAB1D748349A9 /* xds_channel_creds.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F31A1F83903D5B2B2BB71333CD9BED3 /* xds_channel_creds.h */; }; - C455A565762A1CDA2C9B848B2534FEB4 /* lb_policy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 22828E6A75C6D54E0FCE59C4261CCFEA /* lb_policy.h */; }; - C4570FBB5F02518957B39BBA095C0CB9 /* ecdsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EC6D0B2A934D5E1720D46892D868F10 /* ecdsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C45CADC7E6181DEA88C026A6F0B129C0 /* internal.h in Copy crypto/cipher_extra Private Headers */ = {isa = PBXBuildFile; fileRef = 0376345AF21E938726D4C37516953861 /* internal.h */; }; - C4609A7CF275B99119F7904CC7C89445 /* log.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E3BAB4CA449A540C0DD9127A10E54745 /* log.h */; }; - C469BB6F8D0665A837036909848CDA04 /* alts_record_protocol_crypter_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3ACADB5AE041394DC7A79FB2DBAF6173 /* 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"; }; }; - C47975F7319BC2A90F9A0DF446100577 /* exponential_biased.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 27AE0460F042D36393F55774BE28F3D8 /* exponential_biased.h */; }; - C47A0A8FFB81A6B41E1CA7CC9D0309EB /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FA78CE6B038EF8067EE0A0E99CE92620 /* collection_entry.upb.h */; }; - C49C47BF4BF6914E743F294C9CA4760C /* thd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62F24680A7191E0AFB2AFD85F1CDB863 /* thd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C4A3F3BFAAF8840E037D4742584C5777 /* buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = C15EE8F33D1ACD481736782683F98BC3 /* 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"; }; }; - C4B1A288D9C2EFE6E1DB9913495F331E /* load_system_roots_linux.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 90015403677A1F4E07DF13546F73521F /* load_system_roots_linux.h */; }; - C4B929F18EF196B71461B91C6EE2A035 /* huffsyms.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0C1D8200BF9B7DD0B2571512F931245 /* huffsyms.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C4C43F5D49E46178233EB7D92871711A /* ssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E0C232F842638FF1D1B46F350B0E2B89 /* ssl.h */; }; - C4CA453412235EA674F3B7D30C98F1F5 /* subchannel_pool_interface.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2C0C8C74796BA8C752625895946CF86 /* 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"; }; }; - C4CE40E8F89A43451E9CFA996CF290CA /* rds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B412DAE2C6175672DE35941A3450AE03 /* rds.upbdefs.h */; }; - C4F8F0AB9EF39F182F5E87988CA43C70 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D24F79296A85FC3BC27FF65CE24B49 /* FIRComponentType.m */; }; - C4FB369F70B63F0BD9DEE46DBB65E705 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E7F4AE48EB81AE062C4372FD027BEE /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4FFECC371841CCAF6118B858C53A04B /* check_gcp_environment.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7362292FFBC4989459F130E05D20F022 /* 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"; }; }; - C50240C659A3A1281EC3F8E049937D32 /* bad_optional_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4FC7F46A765F55FCDB801FDDF5E2D44B /* bad_optional_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C5033EAA43CC89130E617E3A97670997 /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE90029584481452022B1912EBEDDE3 /* ref_counted_ptr.h */; }; - C51F6B544C59060ABB483FF65395917F /* lb_policy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 0A9F1467DC185EDC5A308A1DBA464392 /* lb_policy.h */; }; - C52520E1453F880FC2AF3258D4018FA5 /* bloom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3120041D8C193654BC3E2BF7D733CE35 /* bloom.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C52997D172EC084F38246BC91F52AAF9 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E6ECD0031EF129A9FC62746415E60A /* iomgr_internal.h */; }; - C52E5FFD0E20592B55E29953BDECB728 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 69913553AA2AA69C3F93358AAE7609DC /* resolver_registry.h */; }; - C53607689AE5849C3EE4E45965E59BA9 /* ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = F549F5326DAE57963E865B97E61C8817 /* ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C53CE4090ED4AFD1AD67FF107C1EF329 /* trust_token.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 939004C04998985A7719C668EEBF007A /* trust_token.h */; }; - C53CFFA4AC86EEAF149722737F0AD645 /* FIRAuthURLPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 748BD441E5DE6B375A3A71D3551AD5FF /* FIRAuthURLPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5560345588E3B40E425F91247861601 /* FIRWriteBatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C39B82C23E304C4405C33DB91B2EF6A /* FIRWriteBatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - C5843936956336D732E73AFA5EEAB889 /* CLTypingLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E908D78B9685E44ABF94444391558EC8 /* CLTypingLabel.swift */; }; - C593182A00FD5A8B104EBB69F4063BEF /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = FB431DE016E0C15DED146DFD83946FDD /* escaping.h */; }; - C59C37B0627D85B8BD8AF282E060FDDD /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C6109CFE5F5C0D455544CAC1F2CE1120 /* discovery.upbdefs.h */; }; - C59FB30475F4D495D094DD7CAEB2145B /* onepass.cc in Sources */ = {isa = PBXBuildFile; fileRef = C84AF9160F4FD8BA56412517C9DE9414 /* onepass.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C5A1DB7690354BB721E454CB72FEE3B4 /* time_zone_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = C51B5200207C17F77D9517A51B97C6DB /* time_zone_format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C5AA7A140BADCD75D97958C82A360F33 /* promise.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7673C8C82A949E7709FCE60ECC2E03FB /* promise.h */; }; - C5B59DF206D9B80FF1B553F7D1564135 /* function_ref.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = 5DF5B999A7319F583528EBF1C39974AF /* function_ref.h */; }; - C5B7EB0253987BBE52FCA43EFC543D3E /* listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0AE2E7AF105E233173E49B4CACCBD993 /* 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"; }; }; - C5D4C1A7DDBB976CAA4B9279C05B79C8 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 23FE49622F05665B444EB1EF40E26AB9 /* any.upbdefs.h */; }; - C5D8355FEAE8514FE47CBE12C35CA3E4 /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = AFEE3918AC5C9AD34DCFD2ABAF7A3BB1 /* stats.h */; }; - C5E41CF50D29E80465C319A188AA7A13 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = ED97F5BEB8C729A4F52372DD79B4BBE2 /* call_test_only.h */; }; - C5F843509F665B009C303A3F99B41B86 /* dualstack_socket_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = B7AE0C1E4144A0E9DBD24D4668DEFCCA /* 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"; }; }; - C6047AE7246A613DC12669E758AFB7F3 /* string_ref.cc in Sources */ = {isa = PBXBuildFile; fileRef = D56A9D5E4B8D0F2DACB027EEBF47047E /* string_ref.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C60DA430138CE6FC0FAB56A1F332C6BB /* int128_no_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 00B97DC0B4F0A9A2781B471DD61B80C6 /* int128_no_intrinsic.inc */; }; - C61A0E75F516A03A2E559E2CD90650D0 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = B40847EB83546152901CB2DEEC4DCA4E /* basic_seq.h */; }; - C6279D9235191C4E9B7F7D8936CCFBAE /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E5DC90843A442FE01FFBA6497092FD /* frame_handler.h */; }; - C649D5D56B24EDDB1AC6ACA6FE2A5C0A /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D3EEF546AA4F79705AC98DACDE3A51E5 /* extension.upb.h */; }; - C64FCE50C97E886F3B33B7C9A64F0695 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3047FB83474EAFCB097933548DB42C08 /* tls_utils.h */; }; - C6509199D3779F4C1A97F01C0206F784 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 594423FC6BB5CE4613E472B5C0E865A8 /* alts_record_protocol_crypter_common.h */; }; - C67366E83C18F9139D28DAC0945180A5 /* pretty_function.h in Headers */ = {isa = PBXBuildFile; fileRef = CCA0559AD89F4C152AA990E7F686E22B /* pretty_function.h */; }; - C675F147A8D73F655319AA4B76C9A4F7 /* slice_split.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 396DFEBE30AE4E198AAB74002B3C8CBF /* slice_split.h */; }; - C679652095379D15C078C4C002C74647 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9363E6577190A2B9F0486708525D44 /* json_util.h */; }; - C698C0883BC937F0FC47EA15B21907D9 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1BB0A3E584BEF0F85A6C342E357C3BD2 /* channelz_registry.h */; }; - C6A1DB0986942C16C30FDA3C4A37C8B8 /* weighted_target.cc in Sources */ = {isa = PBXBuildFile; fileRef = B46CD8F0885C87FA85231ACFC5552B77 /* 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"; }; }; - C6B339336CD8B69182020A4D0810C7AC /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */ = {isa = PBXBuildFile; fileRef = 01781C87CC57C5C88AE2D6A81AC6E2C8 /* health_check_client.h */; }; - C6BC5148820EA91E1A8278CDE3B10C7E /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 95C9C6D9EBF5A41B773C37EC958353DC /* context.h */; }; - C6BDA680E13AA3D9F758C7C5C6469D23 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E6810D0196C1EB8D83072918AFC948C3 /* validate.upbdefs.h */; }; - C6BF3056814E660D3D313D435870B4D0 /* sync_abseil.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9701281FDA344DBA24DF7E07024D6B4 /* 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"; }; }; - C6BF5C5DF2E026CD63C9C603ECD3ED6E /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = E4A731EED3EED71B455FBE13E8938C09 /* iam_credentials.h */; }; - C6C9C6A2A197CACAD326530A454C344D /* gcd.c in Sources */ = {isa = PBXBuildFile; fileRef = 6475FB5507F63E26986D31F5A256DC4D /* gcd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C6D45D247868AB94F5095DC8F5376879 /* frame_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEAFE4C13D8FF1FDE065A8794EC86245 /* 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"; }; }; - C6D9FFCA679740F50EBD5DB0193D5617 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 395189B957C79ED0720D3385CC82A700 /* internal.h */; }; - C6DE6F2A532765314AF3B5F86D57E5A3 /* dtls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 824F564055990B89D6937834E865A79A /* dtls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C6DF13324C9B0889D81CDCEFE879A0A9 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EDC6706EC9766F8AB498A6387EC5B4E /* file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C6E4B4BE64E5723B88EA7E277E53E1CE /* crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B40FABF7C9DC1A6D565AC76543388F /* crypto.h */; }; - C6F91CA0FB0A34A5662A691886F1C243 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 296B9FB2DB614DAD2BA84C5A83834DE0 /* cpu.h */; }; - C6FD47FF91F4F6F875C32C007DB16985 /* event_service_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 06D1CBF5AA64F18DF7A7F11F8C8BAAA0 /* 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"; }; }; - C6FD7E1155FF7E3F5014A1D045533944 /* lds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC6CC8FEAC7C2A5DF91F812DA05106E /* lds.upbdefs.h */; }; - C70709654934561FA059E760B7A1BD09 /* stacktrace_config.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 756E5FEE42F22FA5F6A346ED037D2DCD /* stacktrace_config.h */; }; - C708D5B2C6884E845F17A303F0DD5FDF /* FIRGetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 6918EA537480CEFB1349C0A2BD0E4231 /* FIRGetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C70F42672727F6F7D428E65415DA159A /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A943E7E1569DD2A06C682C436A15E61 /* listener.upbdefs.h */; }; - C71A7316F26778AC17CF763AC892BFEB /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 3D1CF25D3DC1DA684B7B1C3E37744E49 /* byte_buffer.h */; }; - C71C33B01BE627C213487B53D2301BCE /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 21585847B6ACE5D8A04B10A86825DD22 /* status.upbdefs.h */; }; - C71EEE47CE3531A7DCD806B24D34B0C3 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = FEE0B36B9BDC1CBC2C718224824657AC /* ssl_utils_config.h */; }; - C720514F8EEBAE8A848FA154A8B99635 /* boringssl_prefix_symbols.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 803EDF75568F55113E38FF23D1F613DA /* boringssl_prefix_symbols.h */; }; - C724171FBDCC94A0F4C9E01926E8E735 /* grpclb_balancer_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = 579EEBC70FF37E85F4B04D70864B58AE /* 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"; }; }; - C72A1B02DD018E5AEE01F0DD9397F38C /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F398789DC69B60337CFAAA89F9C2C2C /* combiner.h */; }; - C7356C0098AA549C22B8054D19D8E2D3 /* server_builder_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 4592725643DE1ADCFCE8F803BDA0A417 /* server_builder_option.h */; }; - C73A0811060A497137F32BB825188B36 /* FIRWithdrawMFAResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8673FE441D778EFC8EDEAB4F97ADA7D4 /* FIRWithdrawMFAResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C73FA085F26832EA15193BA7CED33470 /* async_generic_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA0B42D0A09220E148EEC932FC36A409 /* async_generic_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C74947D851E03E5C712E2B0A83BC28FF /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D9F47D97A06BE77A5D159A9B329EED /* event_string.h */; }; - C74CC4460836A1B2AE446764A78FE7FF /* memory_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0267924C8F19F2FEBFEE014398CF5B95 /* memory_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C750003100B17F1EB186A3D16FF50D9F /* ec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3A1282A2E933B905C7D1C5054F0D08 /* ec.h */; }; - C75597E92F194DD8A86FD783818971AA /* event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 80E2B9C80C1D2401825B16CF52C16D75 /* event_engine_factory.h */; }; - C7577D07934A2AA886F769C2680C203D /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB6F42194261B05D48A051B0F2C668E /* certificate_provider_store.h */; }; - C75AD7F187FD08F82BE0510A23E63E98 /* varint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C4396D42440B47D972C429C01F5B858 /* varint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C769E00670780217A020ACCA1FCCD1FC /* table_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C32542114D83D699B0B70FE71665939 /* table_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C76A230CB2D1CFD56C73774CABD37EE5 /* inet.c in Sources */ = {isa = PBXBuildFile; fileRef = BD7E8B028D397147AB01F07D6053B91B /* inet.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - C7744000080E5B1B42341AFAB72BB976 /* ssl_aead_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 355446109EE55B4B00E77AE497275B42 /* ssl_aead_ctx.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C77869043A9F9C616F70C5D65C011808 /* prefilter.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = A091525807673B1231450A472D4B1267 /* prefilter.h */; }; - C784335B663C9FA5B612A7BBB9BDD1F1 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFFFF6D25138BB3DA03E950E6B4E009 /* stats.upb.h */; }; - C785B1C2D9001D4F312FBD43BD0AEF85 /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 7102048A99536A6A568A63A433C2477A /* cmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C7861AE3F47B298EDEE69E46C7C53010 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 475993D0793102301F1F6242EED7CDF4 /* wakeup_fd_posix.h */; }; - C79ADF4D8D1D6C44A6BB4A6E9EF09472 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EC2F2CF14E9C040A2BD2941944B9AB /* substitution_format_string.upbdefs.h */; }; - C7A27ECC9D34E7407D9C8D1320005315 /* resolved_address_internal.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5D749EFF81E7CD5C75DAA368FB61B1DF /* resolved_address_internal.h */; }; - C7AB4610342B00111C146729C9D9F5DB /* jwt_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = F82B58759F2F0B6A915BCBF266D1BBCE /* 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"; }; }; - C7AEE045453AE038FACB7B50803FCC2B /* x509_vpm.c in Sources */ = {isa = PBXBuildFile; fileRef = D0D57CC0DF6920802DFB3317EE2240BB /* x509_vpm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C7B05582D122AEE22CC081A6BBFE7A7D /* a_strex.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F1BC2CC17F532F47E23CF44D9AADF91 /* a_strex.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C7B3BB0B4E099B2933745AB844F4E31D /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = ED35CA2F4C3351265B988D788C7563AD /* atomic_utils.h */; }; - C7C23AA612567CE23ABC9CEB10E60174 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 937A60F9F763A70371066B2C21760323 /* iomgr_internal.h */; }; - C7C3CB084D655DEE9B69EAEA63DC33B4 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = C36EC1A4CF3BE368F9605138CD7CB99F /* string.h */; }; - C7C5903402A0BF5F86BAA89AEAD65163 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F35B322825A95585A34A326BFDFD064 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C7CA9A150A5F36BECBBADA347233B88C /* validate_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9511868A4CEA24D50389DAB2D7BEFC0 /* 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"; }; }; - C7D1EABEFB48CC062C52B377E49D9DD4 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B24575716E87E99C692991FFA1C4F6F /* backoff.upbdefs.h */; }; - C7D2DC5806C61DBC9ED3F85BE8974450 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = FA6F17DE47110BDFEAC55F8AFDB69450 /* fork.h */; }; - C7EB0B87AD814680FC2AA88515429513 /* policy_checks.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 398C58EA6AFF8D30B83671182AE98735 /* policy_checks.h */; }; - C80E271F077717B476B937903811D368 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = EF84631B1BD863A89DFD6F285BF43554 /* poll.h */; }; - C817A85634BB6A4B4D65036A63A1E96F /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D5033FC242F72DA36AC50CA4FDA61274 /* node.upbdefs.h */; }; - C819C4F9B15917EE714CEF0C24E72D74 /* xds_http_rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 017B4D3115AFB76F1624CEE3990915EF /* 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"; }; }; - C8212086127ED980FCD12BBA88EE8259 /* rpc_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 233028B39C6DBA8BBC89EDB37D2B0A41 /* rpc_method.h */; }; - C8376AF2B52D6972FA6A05F128E2780B /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E48D36F8EF0BD5B1226A31B16C558557 /* dynamic_annotations.h */; }; - C83C9A411E19D0B8A862CFD42C3A9A99 /* name_print.c in Sources */ = {isa = PBXBuildFile; fileRef = CD61D5C404275309588C25D934759FF7 /* name_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C8679F3D44031397F56E3A937ED484DD /* pollset_set_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 34DC42CCEA2E96DE368DF549B28BCC6A /* pollset_set_custom.h */; }; - C869D7C2B4D709E49E056FE2DAD3B494 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = ABA39FE04431B095DEF305EA3E5F4949 /* promise_factory.h */; }; - C87605933EF0B22B934C0C895E185EA0 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 88632C13B6ADCC96DB3E842E58AC3691 /* async_unary_call.h */; }; - C878D97094DEBA647C4366DED0203E3A /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9725AAB7A869B143B3B6D3B3FECD790C /* parsed_metadata.h */; }; - C8935EE3A37E3680AABE25185598D9B6 /* channel_create_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A15AED959B11C9E86D8F20E08D6B883 /* channel_create_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C8A51C12480E4485D5A9B117DFE9CA90 /* decode_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9844C2549A22396640A5E55202C218E4 /* decode_internal.h */; }; - C8ACABC73BFB3F50DAC70DB20AB751DA /* heap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 305CAD5D23F53FEEC4B49E2917B19A8A /* heap-inl.h */; }; - C8B1E5665C0DA0E081410A91C80CBD69 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 93AABB1283FC0BF0C130CAAED5CA2E00 /* rbac.upbdefs.h */; }; - C8D0043200EC398E10EF5F04C68E9930 /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B30887F8A983D0F76ABAA697A90050D0 /* path_transformation.upb.h */; }; - C8DE1757E23C6AB0B8801C3B2FD17E42 /* client_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86365DA0FA0891FF1DB367911C01D1CC /* client_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C8E72493602E8C9D2BEEF96DD98FE95D /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 686EB5C5CA7E45A4C7F792AA5CCEF0F3 /* resolver_result_parsing.h */; }; - C8FAEEECE453A396FA203BFCE0E4891F /* encrypted_client_hello.cc in Sources */ = {isa = PBXBuildFile; fileRef = C13BC162567A1BE6DB8C4EECE4EDDF43 /* encrypted_client_hello.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C905B371A3C5DA13811FFC095509E8DA /* Pods-Flash Chat iOS13-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C9338EA578D63C3C7663FD96C2A31C5 /* Pods-Flash Chat iOS13-dummy.m */; }; - C9161E7B29D6FFBDB3AABA813E93CDDB /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = E28A2D63D5BD3D10CC33E262C66AFB6D /* fake_transport_security.h */; }; - C917C514D6F4693E07FA137961484253 /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ADB48F0EF1186F007742AE75AE55357F /* bootstrap.upb.h */; }; - C92CF1341E8B87E3A56D5FFC7AC467E0 /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BD6757A48ECB7053F1A1B5F3E091E57F /* secret.upbdefs.h */; }; - C942BB5C5DFBD7294446E8EBA4A18606 /* obj_dat.h in Copy crypto/obj Private Headers */ = {isa = PBXBuildFile; fileRef = DC8FD461109F4BFD28EB78275FC9DE30 /* obj_dat.h */; }; - C94CF65D920D47450D13C956AF2AD306 /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4F7392040D08FFEA15676381598298 /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C95DFEC6695CA95CB1F53160FD38A7B7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - C9963CC9967BEA67E2FCE28457D97A79 /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 297FC92917D7076EC5381279B860A3BF /* transport_security_common.upb.h */; }; - C99E3C66FFB19621CDFDC95D48653F2D /* blake2.h in Headers */ = {isa = PBXBuildFile; fileRef = 01268477E858E2ABCF1131613B5DA3BA /* blake2.h */; }; - C9B50929DCB61557C81E44717E8452D8 /* low_level_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E50A1D5AA54221A1BBB7FD954562971 /* low_level_hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C9C63C5667278B7F155EEB912EFA96BA /* iomgr_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 6898356BF9B673BC05FE83E21588D19A /* iomgr_custom.h */; }; - C9C66C289B118774ECFFF81A036EDAEA /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9E7BC9B124BBAEF0FF9F056080C648 /* filter.upb.h */; }; - C9DD5A2E0777B42D9C0060964EF8670C /* FIRStartMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B1EE73AF16D4A5AB6FABF5065CBE44 /* FIRStartMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9E06D73298FA69C4D4812461A5F843E /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0722CA38178D3469D4A31A4E2D184724 /* cluster.upb.h */; }; - C9F374BEEE58BEAE6690B0D92371E889 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 93930114593B758A0E571CBA2FC5D445 /* security_handshaker.h */; }; - C9F4DDE12DF2048B465F206F233869F3 /* dfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 39EBD7290309927D11A478C725CFCC20 /* dfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CA01EF622957A1BFB6AABB8D1B24EB23 /* t_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 87437CB2E5BC7E0D3721AE274DC57BCD /* t_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CA14100D6050A733C8ED3C1137A17440 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F56D27A7F0FB1BFEA420D74D40807A /* internal.h */; }; - CA19944183B05E2337DB851DF783F86B /* status_code_enum.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 457ECAB0F72D308E112B3CF8F64AEA41 /* status_code_enum.h */; }; - CA278353F017152CF1640D6442276AB7 /* seed_gen_exception.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 73D0572F39352BC74B95DE020DB3036D /* seed_gen_exception.h */; }; - CA4040E5FC9EFFCD3176B9E22551870F /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6AE77537ED5BC12A0F5E35BAE5EC2613 /* address.upbdefs.h */; }; - CA50E0E5869F4186AC4C0F079498F867 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 0B8179009EE4DD7ECDA95B6EFF5C52D3 /* alts_zero_copy_grpc_protector.h */; }; - CA58328BB03766AFB8ECFE074EDC52ED /* grpc_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0E89286887058C2C817910578913803 /* grpc_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CA5AD4E8F3C7DA35221BA34B05B9F49C /* value.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 4597EECA664D32D9B171C97CB20990C5 /* value.upb.h */; }; - CA7993CD8C9B5B59F7A843789356B75F /* tls.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = E65254C7F4A2A475753D63DC57C94241 /* tls.h */; }; - CA7F5510DE17F8C5600CF62FA02492A8 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 86923368E9A5ADF0DDAB0080F478DF15 /* http_connect_handshaker.h */; }; - CAB3D34405A523FF2689331D110830B5 /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = C61C6E21E370D90A0AF9C13AD012973F /* json_token.h */; }; - CAB9F171FC7D1AF52DBFA95C0D086792 /* explain.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 611247BE1EF371C6C932C6BF3622FF43 /* explain.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CAD4B5B7D061BB7BFCD89976319693EF /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B515EEBDBB4AFBDC0AB59659D3B8CFB2 /* load_report.upbdefs.h */; }; - CAE1850651759AF28F288396C4D26F80 /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */ = {isa = PBXBuildFile; fileRef = E4665355206BF6E344BFA82DC965B5A2 /* health_check_client.h */; }; - CAEA9E870AF3F206C8757AB290F570B9 /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 0A762BAA1F593DCF2C5508248C2A6CA5 /* transport_security_interface.h */; }; - CAEE03BB929F2D0448BA80B359722C25 /* obj_xref.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C04053BA4D1A1EBE044216B5507888E /* obj_xref.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CB0E2D824B3EF72C61A82B2ACA98E721 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D01D764F848732762154906CA67EDE28 /* dynamic_annotations.h */; }; - CB0EFF43A1CC87ACD4212556E83EDC08 /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B485907E37DB770775AC8FD16708587B /* range.upbdefs.h */; }; - CB1124D4A6B352D882D8E28C24A3A87A /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F4AB179872D100B381C405083401D3 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB12E04E116354D1D0D6AE1483C20283 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E4B3FB2498E704230EE92C863837CC22 /* tls.upbdefs.h */; }; - CB1D2548DE0413C0D23E0A273111967A /* filter_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5B6F5FCEDB50DE728724C20810DB6B7 /* filter_policy.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CB2B66D341C0AAC124C176D7A359340C /* FIRFacebookAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E52B729C93F31620E4F86CB92E33AFC /* FIRFacebookAuthProvider.m */; }; - CB35B70BF4034C769AFC771ADB9DF558 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = B57334934DFB7A0B38D71BBAB211B84B /* handshaker_factory.h */; }; - CB4869270BD86601BE1B20987770D0ED /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B781E6357ACE48C7978EAFEE31FE0FC5 /* chttp2_transport.h */; }; - CB4DC609D997879EAC7A9A8AA672BCB3 /* FIRActionCodeSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8884C73DFDFC7B06F018B8496D3382 /* FIRActionCodeSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CB822CA5FACF3F757F37EFA5FB486BAF /* FIRAuthUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A9E28BABFE3A996F00F85950675FA30 /* FIRAuthUserDefaults.m */; }; - CB91603FBD80DAB69F73841D5EFF49AB /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E4878C53A125467996EC828E47CCFE /* resource.upbdefs.h */; }; - CB98760BC219A976877D5A9CCD7446FE /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89ECED4B6E1792842207C72F7101FF9D /* struct.upb.h */; }; - CBA5F3AC046E09C5C2BC11C764C23A08 /* query_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 645D28926BB292C897A77E7D91F4689B /* query_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CBAFD7AF32CF71071C9497729345FD52 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7BDE5FDADF95A04A3D4250F5B92A00 /* stats.h */; }; - CBB59371F2CE33A1C480724FBB9F8F84 /* tcp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A7659B13EAB7C9751A82F8E7EB8896D /* tcp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CBB889971EE7420CA4D0F926413EFD9A /* voprf.c in Sources */ = {isa = PBXBuildFile; fileRef = 15367EA7C9BEA1146813DE3A0264036D /* voprf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CBBB66CD4B1BF570E0D6B6CF67DB9CA1 /* md32_common.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = 6132F3A5BA54BFB1D488321C522B589A /* md32_common.h */; }; - CBBC6961B2BAF684759B61491F3B0FD8 /* status_payload_printer.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A2F96EA0BE65CE1AC28E09E53B5222 /* status_payload_printer.h */; }; - CBC51CABD15E176E29637BCB4C191F2E /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D5D58B5E8527BB18328F77710A33BF /* hpack_parser_table.h */; }; - CBCAD855934899F25B862838561277A1 /* threadpool.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 9D8CE1456274AE8409FB524F00E978C0 /* threadpool.h */; }; - CBCC377112B5730AC497B30C1BAE736A /* FIRGameCenterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 0366B5B04275EA3FB9BFE02F9677EC3B /* FIRGameCenterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBD3ABA55C809A96C554E1735E6E98CC /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEB341F099142FC8448988E75D653662 /* write_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CBDBD7E71C3EF7B175C0EA0C56CBE5A8 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C659DABC9D85BE329800DB9D46C639B /* fake_resolver.h */; }; - CBEC8FA661FF5F3BC7B7A868D8B8CFD0 /* FIRSendVerificationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 619CE7E61B208EE84E3B1E3101D2CD75 /* FIRSendVerificationCodeRequest.m */; }; - CC035EF8ACF0079AA690DBB9C1820103 /* cds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D1E1A02A5F5C0A4633B469BA7A792F /* cds.upb.h */; }; - CC212CB8ADE3891B0127248A4D403973 /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 49227DD1593D1911AB2C7D0809DFB7AB /* timestamp.upbdefs.h */; }; - CC29B9200BBCDCD79A2CBC6EE83FDE3C /* tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF49051A0998E8FA2DA3D036CD91262 /* tree.h */; }; - CC302737A27D5C244D3E9735B2465F28 /* parsed_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF238BFB741F007C0817C2B5DB680F33 /* 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"; }; }; - CC32CDD5B87E717A50F109FCED75DBCC /* FIRStartMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE21EF9D264BCBA0535BE5B4C1B9763 /* FIRStartMFASignInRequest.m */; }; - CC3C8CBC3CB64AFFFB04E14576C6BBD2 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A731EED3EED71B455FBE13E8938C09 /* iam_credentials.h */; }; - CC3EA216C0AF14645A58256944A994BC /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2AA605CFFABB8AFE2AF4D199805E9B53 /* socket_option.upb.h */; }; - CC3F3E0FA31825A57F25E236A0CEA41E /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7E65AEAD12D47B9D02DFB9657A058EB8 /* fork.h */; }; - CC4124F92D815A91A15AB02D7619AC3E /* str_replace.h in Headers */ = {isa = PBXBuildFile; fileRef = F82EBB8CB2C5F61673E11E0F567ECE9A /* str_replace.h */; }; - CC61B03565F3883DB17718E5C75A0870 /* FIRAuthDefaultUIDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B1E528EA4055534B02F72C39638A213 /* FIRAuthDefaultUIDelegate.m */; }; - CC83A4CD8A802F11E5611CA00BE9BEDF /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4F6A1682FB6A646EAD4A871E104DF0 /* alts_crypter.h */; }; - CC8EBD8E44B0C02827BB56717C84B7B9 /* siphash.c in Sources */ = {isa = PBXBuildFile; fileRef = 302A18CCD614B9AD5B368E47920E56A0 /* siphash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CC9D11AA7D89109966869C5B4261520E /* dumpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AA84479919B2FFD980307C3D2922D8 /* dumpfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CCABF6A69C134657884846351B094CB3 /* FIRAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0BBA69D5C9396D599BF177EC2668EC /* FIRAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCB0401A3C52A6DE167C4A17FECED203 /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 727ECEA09438D03DFDA5CB0E852D8207 /* inlined_vector.h */; }; - CCBDD666A0C00EA4407F9F87C8EED74E /* FIRPhoneMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 43A351C64FF7F024EE93ED93530FA1FC /* FIRPhoneMultiFactorAssertion.m */; }; - CCC119EFAB6C0DA66FF767EFA168BC2C /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B8AA83F3EC994CCADAD9294FD100BB /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCCA86AE9CED8F58DC22E365DE2AF982 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = B883A64A540D701D865342BA75CC54EE /* check_gcp_environment.h */; }; - CCD7AC941AD56396A9B9850682305943 /* alts_iovec_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = D86D20653032359E9748E2D481FF13A6 /* 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"; }; }; - CCE16967B02FFB53CB64FF3FA80DAD94 /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9C4568144909C2F6D106A7ACD175791C /* secret.upbdefs.h */; }; - CD0AA890A671B3D3B705A4FE916C3D7F /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = F0C30F1566D0583AB7AE5249E64EB59D /* any.upb.h */; }; - CD0FF42C8289CA02371F3A33FE9789A7 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 1CA4882F4984BEFDC9C47DF4E1CBDCEC /* sensitive.upbdefs.h */; }; - CD1B3C86DEC378A8000199567220CE75 /* v3_pmaps.c in Sources */ = {isa = PBXBuildFile; fileRef = 8AF0CDC6253EC8A2EA0CA4E6F62E4F16 /* v3_pmaps.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CD1B4D6C3FFB31C42EF4E25718933B6F /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCDD770CE4C3ADCF3BE8F8901FD0BD11 /* struct.upb.h */; }; - CD1F099E19F6F83CAB6ACE1881600AA8 /* ecdh.h in Headers */ = {isa = PBXBuildFile; fileRef = 748535293A4B8357E06D6A89DC8BC041 /* ecdh.h */; }; - CD26A07C9EF27234E6B26AA36ED66BDF /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6340C2B09120725DD5CB5FE4DFD0DAC7 /* status.upb.h */; }; - CD2E036B7AD86CB0412ED7C2A0417292 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 6BA0393FEBD5F445B039789C2F3AB446 /* authorization_policy_provider.h */; }; - CD3C1859C687D91D2683530BFD747D02 /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E69B26388C023E3672467A76CCED67 /* FIRTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CD3E7675FF2D280AF948AA9654E5097D /* alts_tsi_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = E27BA693190BF853791F6233AB26A3BC /* 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"; }; }; - CD3EA83FE45DFF85EA1F3D8C3A5C951C /* msg.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = E7C0C0E1E847F84B5E23FC49A2629F6B /* msg.h */; }; - CD5C0FE3A8DFFCA00BDBA886105DC98A /* GDTCCTUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 158272B4DFAE0E8688667BC5564BD303 /* GDTCCTUploadOperation.m */; }; - CD5F19EE99E59C69EA9D15D9FE0839D9 /* merger.cc in Sources */ = {isa = PBXBuildFile; fileRef = D873FD51C63E7E9AC400868B6B35AA0F /* merger.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CD613D04F23E174B24F3C86D8EEDE82D /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C089E3B830A7283C0DB5C5098FED9B0D /* GTMSessionFetcher-dummy.m */; }; - CD6BCA347B9B646653596A8720D93269 /* error_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D25181B45562534755E321362639C2C /* 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"; }; }; - CD84CD0A5886E11D3968EF1FB0D7654F /* FIRStartMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E52F4B3EA787624F36715A80D0ED675 /* FIRStartMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD87C4EC8E921C6C77EBDCD7D4D25C4A /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0F1C751E0CE7DED158C474DA45E6235C /* gethostname.h */; }; - CD8B672A7B825A0D1C7A2667EB724D45 /* FIRFinalizeMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = E22CAE7A7003499908E6265DD4CBD778 /* FIRFinalizeMFASignInResponse.m */; }; - CD9142914A2F5E3617FEB32EEAC56909 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F73F97959AF9D69E929C6E5757BE61B /* auth_filters.h */; }; - CD94556C1C3F2E1A68B51ABC55D7D39D /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 27147275BA0B70A69E1075EF4B67F09B /* grpc_tls_certificate_distributor.h */; }; - CD9CD162CA94FA8D681B218C964387F0 /* mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BB6983E8BC2ECF6213B854B0FE9607C /* mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CDB0B9540541089DE49ED15FCABA759F /* credentials_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3853CE95ABEC5DB440397F8DAED51930 /* 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"; }; }; - CDB3E65B522C04A8C0F64CCC7A5EA71A /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF050AF714F458A3079DC64FC9A39A9 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDB761F9D7CD92B8AA91DC894291A9C7 /* thread_annotations.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 067F7C4805B5D6AB5D84D50A8C75A24A /* thread_annotations.h */; }; - CDC0B650AB99D3A2739FC44DC4A2FCEE /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = E120DE33311DF0EE2E15E78A6BDD749C /* GDTCORFlatFileStorage.m */; }; - CDC5A5688AE681B02C38BDA56E656DF3 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46E26E0AB07201DE7A2C043A2B469A6C /* 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"; }; }; - CDE07253CC3C6619DA0CD2056B2F2233 /* direct_mmap.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 13D5B46034460DA584B40760F42C4DAA /* direct_mmap.h */; }; - CDFA84F1AF84806872D1A9234C32528A /* thread_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBAB0C93706FEA7F5302559519A1B1B /* thread_pool_interface.h */; }; - CDFD07C9B8BF67D588074A441D741DC7 /* abseil-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C56A8DE9CC940E70F89D1C12AD373D0 /* abseil-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE13D93482926758C27CAB1B2A06564F /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 21EB6379863FC4D3BA6BD07B6E5036BC /* frame_goaway.h */; }; - CE2811B71326ABD8D4BCCF15CD7D55BB /* cds.upb.h in Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D1D1E1A02A5F5C0A4633B469BA7A792F /* cds.upb.h */; }; - CE3318F96863E0DF002BF067F6453C0A /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EB8511E9EB7D9FAEFC0E02897333B1 /* custom_tag.upbdefs.h */; }; - CE38C65216092FBB91A59200F8536B4C /* idle_filter_state.h in Copy src/core/ext/filters/client_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 7C32B7A8822FC8375E6AF4ACD507022B /* idle_filter_state.h */; }; - CE4BB628367E396FB49C7801056747FC /* atomic-ops.h in Copy unix Public Headers */ = {isa = PBXBuildFile; fileRef = 8D5A8BAB2E25201187BB80B51865699A /* atomic-ops.h */; }; - CE4C31819B1B526B41F2F5E8F762543A /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C33E4BF618DE2E532A00F94FFE3E2D1 /* 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"; }; }; - CE68B1DE8834738BF2C5D2A54C6E03E8 /* hkdf.h in Headers */ = {isa = PBXBuildFile; fileRef = C249643E210F1F2C7022B7B6C54BC15A /* hkdf.h */; }; - CE6A88B4379738666067799DEE753353 /* uv-common.c in Sources */ = {isa = PBXBuildFile; fileRef = 56DDCC36A630FCE427DE8B99BF1CA8E7 /* uv-common.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - CE822F830CB1C92539268BB0671634F2 /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 3CCD4027D7B087861F3F55BD3690487E /* sync.h */; }; - CE8981F7413E54BA67282FC1E5A98D5D /* evp_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 3377F11FB830CB2910DC9922CF675B8A /* evp_errors.h */; }; - CE97A20487C6C3A9E71145D19780EFDA /* unaligned_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DED17414A8AF61586F76653428F39B8 /* unaligned_access.h */; }; - CEA46A7AB3007A33CFB91354C86B1203 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1599A6F8C155019451146520A7A94AB9 /* frame_ping.h */; }; - CEA6D4D6AABE1FDBC21D27A5BC86916F /* call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E1EE6A492364C823126EED0463057D97 /* call.h */; }; - CEA6E0E17CE48AE09F9A599A4AA705FD /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = FFF7D6F11E84CE27EA2F85C34828A26C /* json_util.h */; }; - CEAB1006F42D61CC7EE96E982771FE31 /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C50D8E8A7F1F4AD6D32A4405FD242E /* pollset_set.h */; }; - CEADF3902EE6C41190268FEB7C40B648 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 59545D091D38858ABA313424F20D5C82 /* rbac_filter.h */; }; - CEB44FA5F8D9D7BF0F180B723DCC6B9C /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DD8408E8AA3022043E97E9984359C9 /* slice_internal.h */; }; - CEB4DDF4648BBF4C978CEF43641DAF8B /* hexdump.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B03E4AAC355F994818EB10B9B5D850E /* hexdump.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CEC281DC6D95412DBC2FA356CBF1190C /* fault_injection_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = BCAC0051DF6BCED758E1C8A451A2C598 /* 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"; }; }; - CEC80EDE84EF1AFE2F905C0ACEBC0F55 /* pem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 06AC0FAC7618637C3953ED6E44B0C385 /* pem.h */; }; - CEC8E258984E4320F37E8A912752BB37 /* e_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = EB242366755BF06AABF518B6372676AE /* e_tls.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CEDAC11003AD8026E297EBB78E610766 /* create_channel_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 231FE5ED1ECABA37FE98975101A24994 /* create_channel_posix.h */; }; - CEE31DBDEE7532A6BCA52FFB29578874 /* server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B7564503FA87A0C717B9C8A8631A32B5 /* server_credentials.h */; }; - CEE3501AE0B9CB0C5DDD32FD02F0A995 /* memory_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF994F46A9C8965E8ADC6066B89D511A /* memory_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CEE6B2281E5F2C88822982639D01628D /* thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 63E8F197A90763ADEAF913245931A07F /* thread_identity.h */; }; - CEEE0F0E33B4DC5154FEDD6CA0D276EF /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E055EEDB5448804CCEB4060CE6F61487 /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CF045188773E115A69B414FBC82E4A56 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 2FB5B22D1EE806E8722D9A8220E2E181 /* completion_queue_factory.h */; }; - CF08F0A75BC5CC31F47AA5822D015047 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9F1467DC185EDC5A308A1DBA464392 /* lb_policy.h */; }; - CF2BD654C343C7D680694F8D2052C318 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B485907E37DB770775AC8FD16708587B /* range.upbdefs.h */; }; - CF2F6E5BE1BD621BC597F2FF632C0A3E /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 167230493EAB5869464F695EFD915F34 /* migrate.upb.h */; }; - CF423790F1679389FA1C7F12BC5988AA /* symbolize_emscripten.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 2313BB422A91B3865C047C93A1C13F67 /* symbolize_emscripten.inc */; }; - CF442E3BAF2AF5516C8718437E993409 /* bernoulli_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = FE66F2484E35FB0A463C35AEF2D4B8F8 /* bernoulli_distribution.h */; }; - CF4893508895E19B1F908707C8CCFF59 /* ostringstream.h in Headers */ = {isa = PBXBuildFile; fileRef = F56838B6870AC5CF4883318A61922AB2 /* ostringstream.h */; }; - CF4C7AA534C0E05C372CFE7AF49AE1F4 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A921BA900C324829CAA4A172811395 /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CF4F78992E1D77DA119B4CDFE39F7B9B /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1EFFFF6D25138BB3DA03E950E6B4E009 /* stats.upb.h */; }; - CF552B3C9188C65B86E0F30977B707EB /* regex.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 01B074B71CF6D4B2259BFB54CB344488 /* regex.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CF6C25ED501CFEE55A353F42A150D898 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 303B101274BBDA3CB492D5B770804466 /* client_callback.h */; }; - CF7BA0549DE4E30FB749E5B22AD05E55 /* binder_security_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 579B3E492708354C7D840C01C706D077 /* binder_security_policy.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CF7E21742BA14CC02C846DE4B021503C /* curve25519.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B468FC41F6FACFB7107DD6DDB1A625 /* curve25519.h */; }; - CF8E956E073FA7DE0962F8D823991B58 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4A6DA410D05FF9B136222B9F0D0A19C3 /* xds_route_config.h */; }; - CFA9158A8762B45411F6E87E766D8802 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9F018035A19CFC543F3B5AE22068BBB8 /* xds_channel_stack_modifier.h */; }; - CFB55D41EB89DA2B3F678B60AAB38A86 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = E39F865726404450820E00BAFB232434 /* child_policy_handler.h */; }; - CFE29FA26CFAF1E59A5099711331EA3A /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 19F7B1FAF653D85B0735308B88B25ABF /* endpoint_pair.h */; }; - CFE4D305011FB948AC91184A1D4FF65E /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA428B7057A5A62FB68686C4F09239DD /* 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"; }; }; - CFF6B02014FE46E67C94B649B881EC47 /* ev_epollex_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 37B1B1E1D580E9FA66354D0A8C7E5AC7 /* ev_epollex_linux.h */; }; - D00E164BFB0B8BC0B62A89AA3AA5C2BD /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E81199DFCC42FBE07DE7CE783259513E /* address.upb.h */; }; - D02429E59CA2877F9E31468285E9D4D9 /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = EB772318A59C605E4C6DFC555E79904B /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D024385D5CB7AA093CEEA7A4F1B3C270 /* create_thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CD28FEFFE9BE1FB6AD4EF9B24FA93D /* create_thread_identity.h */; }; - D04D72EE0B67A24E905F3A8DA5ED0870 /* cordz_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98971124D8175C09D02E5D0DC663FDAC /* cordz_handle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D04FD1503C989C7E4423C2FCC6AF801A /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = A6D93FF8F756E2DF0E4D0F70786B780E /* descriptor.upbdefs.h */; }; - D0595D4A7102FDF278691E7B830AEB7A /* memory_request.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 98B0008F4793AB277EB46B1A6D539153 /* memory_request.h */; }; - D05D679C4B418C95844854F369E8E18C /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0E9618951890E5D02ADFF1F7E3577D /* secret.upb.h */; }; - D071E57D1CAB31BBE043D50864A5BF0B /* user_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16C6CBCD7F5BAC1B71AB0B1087EB8B8C /* user_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D07372E521A42CDBA69656190682268F /* get_current_time_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8AD15CC95EFDF231753C086B3E07BB4D /* get_current_time_posix.inc */; }; - D0762AC1AD1EE5CE9748AD26110AD702 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B48197CEDBD7C46BC341423D7DB74E /* metadata.upb.h */; }; - D07741927BDCA75EB0948334AE1A8AEB /* utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = 96DE2286415A052344C0F6506BB6EC17 /* utf8.h */; }; - D084D6457FC7B24ECD8ED67142FC1EB1 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 851DB4108E572EFE5F11384675ACE17A /* filter.upbdefs.h */; }; - D088E90A83631464CE3D8E524DBD6E80 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A3DE77817594D44F6C217357EC78C72 /* status.upbdefs.h */; }; - D08E75E9C7E419F78A226349E7E48418 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FA6807FCF63A1D43B0E71A56AB378C49 /* socket_factory_posix.h */; }; - D095572FF4EB8BBBCF1238B731136588 /* protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FA1F2970262B2B17870B752504553D11 /* protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D09F7247DBB1F0810B291291A1D1030A /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 932C4CE365D2907D95A111EA2F0CB107 /* base.upb.h */; }; - D0E2EC78B926D1462F4174A994582EA2 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CB024760AADDA5047FAE3B20A5C4C83 /* promise_like.h */; }; - D0EF3FE9109933952DC13C692BBEC1B5 /* tcp_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4693B836E1309591AFED39C93D9CE572 /* 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"; }; }; - D0F8066C5C44FF1A64E27C0BE007B062 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = AC439C40C5E71AD99666383E06E7084A /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D100C9020565B1F667CF480E49ABC629 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5388D55251110326A062F6A5A4FE54A6 /* internal.h */; }; - D103C2990495F331395F858273BB3F97 /* xds_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EFE22F6E0E0B54AFE8CE1C1D031B6A6 /* 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"; }; }; - D107B31E1CB33C07A8A3D4627DA8DC30 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 553AF1D17FF3C303161C8CE4614D629D /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D10C9143A1F72532A0BC67FC573AB2AC /* type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = C20B0DF63F30BCB3C59D4F1804F4110C /* type_traits.h */; }; - D123E6FB6743893648409D73F8624F8B /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 394011907B2C5045603AED3A65EE8EE4 /* options.h */; }; - D1252B9C0CD4346C42D2F629F7D088C8 /* cordz_statistics.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2670E9783D257D7E43A3104A953C57F7 /* cordz_statistics.h */; }; - D1392FA04714EFA486EA8F6D48D5196A /* tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA01C9D6CF7CF60C94967B2E89B02D5 /* tls_certificate_verifier.h */; }; - D140E5FA0A1ABF2839C6060AA7F96F54 /* barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = C1401BBCBC6B2957DDA7FD27DBEEF71F /* barrier.h */; }; - D141DAFBF3C737212CBD177BC7E03896 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5076FA3CE1D5975DC29A378E65C75CBC /* endpoint.h */; }; - D17166307E057185740CA5138B66C6B7 /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFEB3D4747533FD2C19D99D744563B6 /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D17283C991072CB46A790F96ACAF4763 /* s3_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3AB34F81142DFB082834B70783FE229 /* s3_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D1765709E9AC101E6FFC17650353A3EB /* attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6846867D83FA317565DCBBD309E8E075 /* attributes.h */; }; - D1908DF7534E7723BE1BDED7E2AD8C32 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E16F600F5BFFC32128B93D6DA86C2DDC /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D199741416C711100D75A02B60E49DE9 /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9694BCD69FE6E3355E49867C94915517 /* uri_parser.h */; }; - D1A550B9FFF9ED07F332EE4EA978CA2E /* e_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = 99196ECA0D094F3B960C9D145B4A096F /* e_os2.h */; }; - D1AFDEE585372DBF326AD82AE7EE2AC4 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = FA535764C50D67EFBF9B6F306B1CFFD4 /* deprecation.upbdefs.h */; }; - D1C41EDAD64DAA0859C2F293FFCA3DDC /* rsa_pss.c in Sources */ = {isa = PBXBuildFile; fileRef = A5A25621FE607FF55D8C182BD8B2DE82 /* rsa_pss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D1CC16A1430A03000F99757628AA8361 /* firebase_auth_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F00A066CADA55FF51D7D626B01EB967 /* firebase_auth_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - D1D04AB8F7AFCD316420A6284A6677EE /* xds_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E6391EA8F6B7CB2142584D4C462A3A3 /* 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"; }; }; - D1F35AA17603FD60BADEDD993E67160D /* grpc_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4D169A2922435604B1E58316FF17DC28 /* grpc_types.h */; }; - D1F818682B236CE856B9AB1F097283C4 /* coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC9F2B2AAFA037C3768B7FE6FF141AF /* coding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D201319A94D8486B00FCA8D1E555C21C /* threadpool.h in Copy src/core/lib/iomgr/executor Private Headers */ = {isa = PBXBuildFile; fileRef = 3F71566D09A34EC5C42C27FC4DCD6911 /* threadpool.h */; }; - D201F9EE8765AAA9E1D6FAEF27A88041 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 911425A24CE9DB88B1F38D82CFDA9147 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */; }; - D20CA702B0FC9633701FB124C7C30F5A /* by_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C4551AC6FC31FB427136348DC26800C /* by_dir.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D20F6F88F43371BCB42A980188E5D902 /* notification.cc in Sources */ = {isa = PBXBuildFile; fileRef = A20A55B085DEBD64FD6A4D703D6D5CD0 /* notification.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D2143A275A7117E9F9E983AFBCC3F4CA /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E40D05F40778528A6D07508416613D8E /* internal.h */; }; - D216E59CD639AAEAF4767C388FA155CE /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = EB67F319D5A6DBD6F3DFC7872D41DAFB /* global_config.h */; }; - D22030E6A5A062B4649523994FAFD01C /* simplify.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD1A9376D1B750DF242C83896A072A31 /* simplify.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D227C064AE40FB998448F4BD995516C1 /* randen_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = A74AEEAA35DF022A0436DB697F080F2E /* randen_slow.h */; }; - D22E9AED54DFD9FD8D2BEAC189BF79ED /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA0956FF8B0CC3BDF5FBF1BC6561514 /* config_source.upb.h */; }; - D250A603F997F1EF318B927CA1120957 /* output.h in Headers */ = {isa = PBXBuildFile; fileRef = FD64371E6762D728A7887F2E44CD1C1D /* output.h */; }; - D265BDC378448FFC014F4A36D50AA363 /* error_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2D89D1CE8725C18039755580DB45ACA4 /* error_internal.h */; }; - D27171CC3891811EF143380E2D46C1A6 /* timestamp.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 218EE2F0CF0A30A862E8758F5857CE11 /* timestamp.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D271EC169459AC451A50E2388667A71F /* blocking_counter.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 2ACC00B7FE338483A04323229E7A25CB /* blocking_counter.h */; }; - D27A5DC22C2ACAD9C2D7EF40EEFB01F0 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 711A3BE5499C4C42FE3B5B309EC31F25 /* spinlock.h */; }; - D28417DE4E7CA6B1CF5FFA4F70BD6194 /* charconv.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27F4181ADFFDC3F99788E40652CDB660 /* charconv.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D2852A690FE76A020D7075FCCD060F5D /* safestack.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEA55D952FC7E5F38FCA8F814871D05 /* safestack.h */; }; - D293F9FA7CF458F7942CE31A59DD0BD9 /* FIRPhoneAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = E54A45C82715C6857D1231EAE542E134 /* FIRPhoneAuthCredential.m */; }; - D2A1CA8F12EC21E2368195E9E824CAE3 /* overload.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8717876E56C270791F761EAF3BB61D9B /* overload.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D2A4E752BC6F6CC4339334FDE332883E /* rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 214B04D720FC7B254E359E8C73D2EA34 /* rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D2B780E5BA52D997AF5E0688BB095267 /* document_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = F28D93D0392D301003A54356AB26BD46 /* document_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D2B8AD697C7D00980B840D450E14CAC8 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D1CF25D3DC1DA684B7B1C3E37744E49 /* byte_buffer.h */; }; - D2C098E820D15D64AD7AF124EFAC0FAF /* md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 804D74B24C099F007E82385C074E358F /* md5.h */; }; - D2C6DB5CA31D3FF92707798C5955A0C5 /* scheduling_mode.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 20655B60247AFCFFA77E32454DB87EAF /* scheduling_mode.h */; }; - D2C92477A2DFD329428A4356479184D2 /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA605CFFABB8AFE2AF4D199805E9B53 /* socket_option.upb.h */; }; - D2CE239EF710D24A75E1F9DD4C11EB43 /* exponentiation.c in Sources */ = {isa = PBXBuildFile; fileRef = 95BE7705F6D2E744FF8423ACFF85F920 /* exponentiation.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D2CE33FF60B1E5F32925A400F3F623D5 /* cordz_info.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D67C77147745C4A24D1AF5072FEDA0CC /* cordz_info.h */; }; - D2DD148CF70EBADE27614A1DD17579C8 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFA452DD4DD483849260352468A085B /* ev_epoll1_linux.h */; }; - D2E650793978E6642E84D741BCEE6AEF /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DCCC73DC8B3EF36A2FC3C2AFF689CF /* json_token.h */; }; - D2EB0C29FA33781196BE5A08490FCE3A /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E237E1ACC8358970594371C3DACBE19D /* sockaddr_windows.h */; }; - D2ECBE005327E4048BA02B265FE11E70 /* jni_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = E85E80D625A605827C324C4DDE86CAD7 /* jni_utils.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D2F823F1F014FA36D5635EE925E3BAFD /* cordz_functions.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB537BDC1F586C88CB1236B108B208AF /* cordz_functions.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D2FAC64F8EF1ED98E9AF9F10D8B0291C /* waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6BFFA9D269D9E1F76D8E3EB80AA2AD /* waiter.h */; }; - D3258E8E73E2600E115340F0B08328F5 /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EB1DD57F7FE82E39EAD20F2B74F0CDA /* xds_client.h */; }; - D3270098AE98C4BF71A9F0DBF110BB1E /* security_policy_setting.cc in Sources */ = {isa = PBXBuildFile; fileRef = 073613EE37261B08AE096C4B0237270E /* security_policy_setting.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D34007D0D382E4F0250289E2E97C4126 /* thread_none.c in Sources */ = {isa = PBXBuildFile; fileRef = 577E93AD33C9EEE4C4DD5DF22B63F93F /* thread_none.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D3502F0160B969A8970CD0C2052A1527 /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 87AAFB04B55856F0F2D76B2B5CA6A303 /* 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"; }; }; - D361058CB69B365905E4CEE3926C6EB1 /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = 201389BFE7A89264E2E4CA963DED02C8 /* output.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D3681618FA9A087D5730FEB2AB7A10C0 /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = F0EBC78591DEFEF7921E1840BC6FB4C4 /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D377BF261A1A751A13873208F3ABF5D2 /* hkdf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C249643E210F1F2C7022B7B6C54BC15A /* hkdf.h */; }; - D382EC4470DC34A3C1BF37F0763E2BB0 /* FIRMultiFactor+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E90942413AA60D17440D86F28422B1 /* FIRMultiFactor+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D38794281E7AE228C6D7E1B42591D911 /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = A24B447B954A786A8DA8AF54CA827CAE /* message_compress_filter.h */; }; - D3C380AD0676A8CA92C8C0DD9A00DEA4 /* statusor_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A815A83BAA20EB9B7484EAD96F8A859 /* statusor_internal.h */; }; - D3C4808243D786C6577A48D3FF006D0D /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B18882219F9B11BFA89439644B1C5CD3 /* tsi_error.h */; }; - D3D601E63DF77D6F2832CDB4DBE9DFF0 /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D3D25A4EEC86ADFE439BAE0D32F9F1 /* annotations.upb.h */; }; - D3EC160C954463C292EBE75211E20DF2 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = B832731D92AE66792B5A68300DE0FACC /* client_unary_call.h */; }; - D3FDE130E63028DCFD38E8A93EF4FF34 /* cord_rep_ring_reader.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9A42DA666AADED2E2544A554A7B7AFEB /* cord_rep_ring_reader.h */; }; - D408DFB685E3243724E1C7C5F42B85B8 /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C6C9742D5F12BF35FFE06B12EF359D6A /* channel_trace.h */; }; - D4248C9FBEEC7F0C1200060F25C0B4C7 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF1073619ADC568CC5135D837E09048 /* server_interface.h */; }; - D42AD6D1A66646E9363FDBA41F811FA9 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F320CAD1AAAB5139D3D07236FD50A61D /* scoped_route.upbdefs.h */; }; - D42C43A4992FEF91749AB2E8E2B07929 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = B883A64A540D701D865342BA75CC54EE /* check_gcp_environment.h */; }; - D43442C51BF13FF4EE2A1BAF2CF45C12 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 113E06EC08373C0D0F5E4A4199783EA7 /* http.upbdefs.h */; }; - D44B5435A0D49A9CCFEF15280492D9AD /* FIRMultiFactorSession.h in Headers */ = {isa = PBXBuildFile; fileRef = C449FFCCC30AD8E23058396786A3C6FC /* FIRMultiFactorSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D47F50D2488A2ACC6B3A8C33CD052CCA /* a_octet.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C18DC46EB1303F2504D3AC050477F96 /* a_octet.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D483EE3D1766CC2AE8B03CD7804DB5E6 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F331E697A629AF29DF3B809C5CBD5131 /* extension.upbdefs.h */; }; - D487269B5B909E432F9977185FD8BDFF /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE9B172CBA2D6DB99D3CD2D96C5D90A /* resolver.upb.h */; }; - D49B0F6B8C4B332118563141A9509F6D /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD5515A5433C313CEFF12AC90FD080A /* transport.h */; }; - D49C2CCA93137F12D89CF20B08BCE08A /* d1_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35B979CA7A8CFBCCFB84C79CDB0131CD /* d1_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D49FF52864EF1A16ACD9E4A2A81524F7 /* FIRTwitterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C28F5CFA19045E7315C4DEC6E24A1EED /* FIRTwitterAuthProvider.m */; }; - D4A4157F2C568BC79A3C05167C0D17CC /* intercepted_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = DFF073FFC72C100A9B8AA5298287D6A5 /* intercepted_channel.h */; }; - D4A90C715B34E7366A7F1EBAEF250975 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = AFE270738743B940CC0385606BF70507 /* rbac_policy.h */; }; - D4B3E52A9D3529C0C806B46B3EE95913 /* utf.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ABF63F882F4DD9763E0CCDDFFA63080 /* utf.h */; }; - D4B9A21B63313C915A4872D461F88E59 /* testutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 129DD4B06CDBCBED6594DD40D9AF5C06 /* testutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4C8BF2E52B40F16A5A19D11C38E3471 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B75D615666E91690FA79F7D8FD89 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D4EA585B6400F8E54CACC9FC88B8163C /* db.h in Headers */ = {isa = PBXBuildFile; fileRef = 39A961976764BF330487B056DE5C71E7 /* db.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4F76D7ACBC86C2E0EDC049F718C0B5A /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5AB5AA044F03D2ED736480E3549B6C /* route.upbdefs.h */; }; - D50C38FCCB9E8029A9478CA46742E3B6 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FDCE4408F8DB8598515CB72BEE3C989 /* FIRComponentContainer.m */; }; - D510F02C086C2641D963DD785A82DB16 /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8BE9F03D7DEE7284D1A168D66B5E9729 /* subchannel_pool_interface.h */; }; - D51DE57D70C726AF38C37ABF9AFEA78A /* filesystem_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15202DDC387AB84537DCCCEB03246778 /* filesystem_common.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D5208FE06385E94DFA4FEF2CAE16C923 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A90AF16F929756ABD2D82DA0C0D638C /* work_serializer.h */; }; - D53A6D0A5A1114E06314198E15888E43 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 56547311CE3860919BB8FEFA51ECB0C1 /* slice_refcount.h */; }; - D542C8146BF2820472B090E9D6F3BE72 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 445EC53C4499CDE695F3AE222F60EB69 /* protocol.upb.h */; }; - D5467C0B9978433551D39FDF73C960A2 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = DD72F7E5E08707846370D7D0F991BCC6 /* proxy_mapper_registry.h */; }; - D56428C5707F8AECAEEBCB32C91996E2 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E380CAF586F48321C4B88645489180 /* server_callback.h */; }; - D565052DA877EA4CE8E2264F232F799A /* blocking_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACC00B7FE338483A04323229E7A25CB /* blocking_counter.h */; }; - D5662EF36C198390E081AD3A6D042066 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 312CD1C44A9663F11F15772DA1532D07 /* status.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - D5757F87A265788DE40E45415B3C49DC /* low_level_scheduling.h in Headers */ = {isa = PBXBuildFile; fileRef = 14BB0A90551130C509C2157B8D216850 /* low_level_scheduling.h */; }; - D57B579165834E4CD9EA6694DDAF3FF9 /* version_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45B97961BF706EE5E1AC410A3430EF27 /* version_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D57F87E92DEA979641C8F9F0FCBA94E4 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCF8F8EA5F27C10634FB81A368742EA /* time.h */; }; - D582FCF076360A52D36FB7E4B8B35245 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4A108B2F782A780221F6949D9A1757 /* internal.h */; }; - D586C99FE5BE64ABABDBB8BB1D66BC87 /* x509_trs.c in Sources */ = {isa = PBXBuildFile; fileRef = 70C1949E3EFF2D26D7CE9767E418B4B0 /* x509_trs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D58C249769562BC1D3D99FB34B180834 /* channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EACF1A8D502BC2BF2C5DE7ABC793A0B3 /* channel_filter.h */; }; - D59296EB84137DE9B05C1A2C610F883F /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E7ED9B89F137804E723E6D8C7FDBDD /* ev_apple.h */; }; - D5A9F79544ADDD8F998FBC10285A515F /* x_exten.c in Sources */ = {isa = PBXBuildFile; fileRef = C8D8F191902ACBE0F9EDCB74002C74E3 /* x_exten.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D5ADE745983992C794ED5334C5CB4A6E /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 11711EFED4ECA4494FD187B235B8CED2 /* lockfree_event.h */; }; - D5AF1C7B3B2DD5D495DFD57B11D1CAE9 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C56B22C77FA201B137512AAEE747F26C /* varint.h */; }; - D5B8B4C7FF8F7843074D7EED29F2CEED /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ED35CA2F4C3351265B988D788C7563AD /* atomic_utils.h */; }; - D5CCD52F8000E14AE47ECD6CED21A3EA /* FIRSignInWithGameCenterResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = F217C159D65636F0F061BCA2D529E92B /* FIRSignInWithGameCenterResponse.m */; }; - D5DB86C66151F6DB416E5CC760B7D6C4 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 3C5F42D556C26DB296C6B68AF657A8EC /* versioning.upbdefs.h */; }; - D5DBBD0F8873C8B1ECF47788FE2E1D06 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - D5DD195CF009A7109FE0B60E7C7F0C6C /* internal.h in Copy crypto/fipsmodule/modes Private Headers */ = {isa = PBXBuildFile; fileRef = D58712F06503B873DE8C8927559B158B /* internal.h */; }; - D5EA0EA9D8507376C22C9F8AA25584C6 /* write_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E28BF9D80CED00CCA8BDFFC2E3A0F20 /* write_batch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D5EB661392AD96321F40AF76E1ADEE4B /* stringpiece.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99D0D3AAB534D43C7EEB45DBD581E44C /* stringpiece.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D5F38307DE0E380C4D9A960C85393FF6 /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9A9B338A2651664FA7B64850744F91A5 /* substitution_format_string.upb.h */; }; - D610FF689559A5B2628AB3A1402A2954 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 4F43D0D8F09FCC95BD0EF4D386F8E8F9 /* alts_shared_resource.h */; }; - D6135580F058C75C6DBC5BD22ABFD3AC /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B9273E7AE3746D054C8426D81E4F11 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D62199A629B5E5296DB339847732F973 /* eds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AA36937CC3A8A62A4DEC31C2A8DBD1BA /* eds.upb.h */; }; - D655A99877D361EC215DACF1BF25BC72 /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = E28A2D63D5BD3D10CC33E262C66AFB6D /* fake_transport_security.h */; }; - D65D893CFB61839CCC0C379969FC5ECA /* clock.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA906284FC068648F7216A429E622F62 /* clock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D664DF49191FAEE1A52302A5184C20E4 /* crypto.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A8B40FABF7C9DC1A6D565AC76543388F /* crypto.h */; }; - D6681B71A849B45C55BBA4770AF1F0E7 /* stacktrace_generic-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = B10C863EE1FF3EC2F3DFFA963B297308 /* stacktrace_generic-inl.inc */; }; - D66996EFACB21388B737432C58AF754B /* status_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D730797E39DF8B969E19E57AAFF8FEE6 /* status_internal.h */; }; - D68D2472A192928F0220E82F74470D80 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 754702E20515DD719781A8F60A6C2285 /* rbac.upbdefs.h */; }; - D6A33DD5F32EF006F7AC2B248B80A9AC /* bundle_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AFAA0269C3521FE07920601F784DC1D4 /* bundle_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D6ABC9AC67E22267842113014D197F8F /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7AE60A7BA6E0A8E04D66350CD9DB972D /* sockaddr_posix.h */; }; - D6AFED377DBDB7165D5FACC8D964F419 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 8E08512D6CB73FDF31801361045DFC10 /* alts_record_protocol_crypter_common.h */; }; - D6B31D2450F446B9A2A63676A7AA56C2 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AAAC20468B4EA1FF4A649B57A5A3FA8 /* ssl_utils.h */; }; - D6B3D7DBDDF264CBE45E5C8D52A5161A /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC602E91A9265BD8C92854BE65FBDAA /* frame_settings.h */; }; - D6BB08F5D86507A9A6294FDB61A3EEEE /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9725B601F031FEFE1B4E213F49A52A /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D6BFE4095AAE8FE0B9A6BB4E8348ED69 /* obj.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ECAD3F5F27AC7B82A341BF9833C8A251 /* obj.h */; }; - D6C3756C456D0C6DCD44445CA2D361ED /* ascii.h in Headers */ = {isa = PBXBuildFile; fileRef = 278F37A20F9EE3B1A2577D97369A38F9 /* ascii.h */; }; - D6C43A3918AF0ADFF6F924276A1D9CC7 /* scoped_route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E00B0C136969A5895435928AE7AF7F7B /* scoped_route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D6C7B133F94F7D58E1F3F026E556ADA6 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0123B5EDEF4A14D9CE53785D79866588 /* aws_request_signer.h */; }; - D6CA942E596C1C4F0F2531C99658A12D /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F58B2BFA46E8AB96575505C1596C57E /* sha512.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D6D08ECF35ED366C34656DF4667A81D6 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B5523EBCFB7AD3B0A50EE4F710AF9E /* status.upb.h */; }; - D6F51E7AC3357B80BCE3BE77F0F391AE /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 83F725D38876C56067106AFBAFA14666 /* descriptor.upbdefs.h */; }; - D6F97D40CE1E504241FFD323A11B5022 /* v3_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 799E8D80EBFBBAFAB822B01F28704954 /* v3_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D70A4031F0185BBCE3B18014CF315F53 /* sensitive.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 751CBD225EA549F3C7051A909250DE2E /* sensitive.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D70E665D4FDDC6E42F16EF8FC58664B4 /* vdso_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 5706A32E275C03E7E6636938B7384037 /* vdso_support.h */; }; - D719A2F255ED80F82E1C1E248A7D6863 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = C09F988BE5F5A2AFB1AE65EA56151CC3 /* hpack_parser.h */; }; - D7222ED8BA467DCCFF33E6464A7797B0 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A732803E8CF1E8DAA46F6404CC27507E /* bootstrap.upbdefs.h */; }; - D73D9E3475D6343562B21FEF66375146 /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 910B9E157C56A0513EB5A2E521E2432B /* python_util.h */; }; - D748006B1B4FFFF22C03B6CA38A9F36F /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7D1E1EBC55384C3ABA51B3A3FAF830 /* csds.upb.h */; }; - D761B19E64E92D579A144CB32AF1DAFA /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BC0B1494CB044A37D202181203443587 /* 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"; }; }; - D76DF2D7E89A4457C388AA90C6FDC01D /* x509_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 7DCA23E37FB828A5C060E1EA6F1A8780 /* x509_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D781D4E6588AA9C8DEA783906C70AA90 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B7DB7266DFE8353372E95262AE99CF /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D78633C8743EEB8E421E2DCC1686D63D /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = DD0A15CFFABD2B2AD12F72F339A0140B /* load_system_roots.h */; }; - D7893884A08B4D5CC01E11D84C91A60D /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 76C31F7D30AAD11934DCF28A2F30939B /* xds_resolver.h */; }; - D78CCE818BF98C7A538072818F5CEEF6 /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 32F802F6AB37F162D6A36B9BE0562664 /* http_proxy.h */; }; - D791838D471896B50F81567CC46C0031 /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 97224898A8E89C03905068F65693EE03 /* FIRFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7B1722F597BA5AD1D1D1F52C22162EC /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F5527F8DBCF86CE08054B11994B74B /* alts_grpc_record_protocol_common.h */; }; - D7B1B77501C395654356F9CF36394366 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = FFF7D6F11E84CE27EA2F85C34828A26C /* json_util.h */; }; - D7C2342458CB73D9216ED80B53EBB07E /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 7E612E105B962670B1B33D32117257D2 /* civil_time.h */; }; - D7DB651C5C79D74482A13D194D5B2E7B /* clock.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABE47976C44914C32EDB89690E04A02 /* clock.h */; }; - D7E1D7EB2548908B3EA0DE260BDD88A8 /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = BE3545A69FD8DBB9F1BF5937E8A99D07 /* status.upb.h */; }; - D7E9657AA2BE5CE3D0F99C600B3E2778 /* iomgr_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 793E6076D2665F1E548074DC8DC78322 /* iomgr_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7EB6E07A4617B8F1554B949BC8C5663 /* sdk_server_authz_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7ADCA55EEAF99EBE87B8C93CE2B6790F /* sdk_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"; }; }; - D8044D9447ABA7F9FDF749E703E26A84 /* pod_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 531F41E910FA8C57321514F25F119A01 /* pod_array.h */; }; - D82BEF3CC266ACC5AD2E02C33A4AB4EA /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2C23DDAC09916FA1C2F317B501B5A9C4 /* metadata.upb.h */; }; - D82FB1BD907A558B795360EE8A6A42D8 /* server_builder_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B3A3FCB84793B382ECB528EF6C51A92C /* server_builder_plugin.h */; }; - D8358AD947CC8359E34C34591AB4870D /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EBACE88C2B991171319B4FF23125C45 /* tcp_client.h */; }; - D83A683ECC20FBAA40F2236D557EF166 /* p_ed25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 009EA74778F49391B657C1ADB3136375 /* p_ed25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D8401B05F81720781B1570DC270FAC63 /* proxy_mapper_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACBB700D1FFD3CBCBAB5AC9BEFDCB9A7 /* 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"; }; }; - D87605364E6C6D63F3A85D0EC899A5BC /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BD7B2F4FBCD4F14B3A7BEBF4EB0B4C4A /* memory.h */; }; - D87CA22C1960CEBB63A3FA30E27E5479 /* gpr_slice.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B07C3D9BF4FC3E9BAE8CEDFEF26ABD /* gpr_slice.h */; }; - D88307B5C253F901AFC75FA04EC5FA1F /* gcd_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = F27799AE30548C615991718BB2206374 /* gcd_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D8AC49EAE00D963AE06395494742249A /* wide_multiply.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DD792B696E54BAD4DB9DFE7BEDAA1CE9 /* wide_multiply.h */; }; - D8BDBCCAA61BFAC457385A5AE16244AA /* x509_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = AAFEE7754ED460AA142415E9EA87E4EF /* x509_ext.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D8C1F755DF7EAFDB4B0CB09F82AFD93C /* stream_lists.cc in Sources */ = {isa = PBXBuildFile; fileRef = F6FCA450EF8F65BF78359B228372F377 /* 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"; }; }; - D8C5D96FBA1BB75B12C08EB8EC992684 /* ascii.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD7DD370D040B24E02809DC936611A86 /* ascii.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D8CCEBD12916E3C728B9F78CB38D4395 /* http_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C966CB172076FC303F3BBB47A1B1F6C /* 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"; }; }; - D8D045ACCABB6C0E083CD7555B5AC3AC /* flags.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 397E69A1BF13B0B9D1B1B6EB7AB9EC2E /* flags.h */; }; - D91F6A1CF48CA9A703FB3559F667E3DB /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F9C32276C53E6A913ED1701941C5D90 /* server_context.h */; }; - D925197E177165BE4BF0410F4FAA1147 /* resolve_address_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6CFD6FA5AACDD4CCC42C4444F49C2B8D /* 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"; }; }; - D978E549099E02EE0346084347CDB37C /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 439C188D35D5C60571AEF9E9CAB07ACA /* sensitive.upb.h */; }; - D997ED120EB7BD6AB46F584F82187701 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = AE01C797A96D6234B067C8A84EB931EB /* frame.h */; }; - D99F5651FF78C483BAC9046744150F5B /* server_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = B77A855DC916D0B4BECCA939B00687A9 /* server_posix.h */; }; - D9A2EFFF371DCA78DEB7D2C4B82200A8 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D51E402969C54FC1717EF537D7692127 /* GULSceneDelegateSwizzler.m */; }; - D9A76D421F279956824924E2D34681B1 /* sync_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C782842554B9F337E71CD48E2C85E5EF /* sync_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D9B038AD6A567E852E0852F061CDDF26 /* errno.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 08940229C89D7950A341B63D6AB7CC4A /* errno.h */; }; - D9B25962F30B9D521CC15DEDB50DA073 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 29E839E2409C4DEBF613483BB190B433 /* load_balancer_api.h */; }; - D9B4FEAFD161AF4B8E4C1B7E6DF1E5C1 /* server_config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EE6DBBF7386BDD194B872FB77EE4117 /* server_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"; }; }; - D9C2BE695A0DD09F3CC569BB38791B79 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B10135E87098E777EEA98A3A723C17C5 /* FirebaseCore-dummy.m */; }; - D9C4678593DC62E979FA50A1499E08DF /* nonsecure_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F3F5ABE756FFB0C88CEF34B25192312 /* nonsecure_base.h */; }; - D9C5576159B5727C92091A81174C0E4F /* stacktrace_unimplemented-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8C000874FD38C4F18E56DA495B7814F4 /* stacktrace_unimplemented-inl.inc */; }; - D9D2915F14E7C2C7F674CF17A365A74B /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = D93F471F1CB78A80D807F8494A18278C /* chttp2_server.h */; }; - D9E01F53DAFFB3657C6B42148714DA6F /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5D6CFEE2D2D303F915C5B485902924 /* fault.upbdefs.h */; }; - D9E7135678A434F9D3A180161784E908 /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8CEDFF36B3667702B1AFA34A9B9A7F /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9E75EA7E87DD13178A03414FF9FE040 /* chttp2_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCC9D2A05792D26EB7C2CD9B3C482660 /* chttp2_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D9FC43BB04FB5F569D53268DB7B44468 /* x_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = E98D24A1EC19DC58525C92E2A5F33B90 /* x_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D9FCC8F689621D41BA269E67A2E30AF0 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0AC6123468E1997F88580F045E67B /* 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"; }; }; - DA241C32764305D4C95C97574A82DAAB /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B8EF2573A9A70EF757EB2234F720B2A1 /* handshaker.upb.h */; }; - DA294F7BD2F32598F3B5E43522DCC8FE /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = EF975D81A087BA3F429817DFB625AB49 /* stub_options.h */; }; - DA31BF09CC367C9668DA51B259F23D70 /* address_is_readable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C20B6C2076551C65ACE4BD190E6370B /* address_is_readable.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - DA40469A622714181906311DC26E753B /* builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 52BB45DBBAB2980EEBC94F2BFA411AD0 /* builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DA497F9D5558528B759733D189921AFF /* http_client_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = EAB845998AE346CA019CE1E12E5A0417 /* 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"; }; }; - DA4F0919830717655451E480427D58B8 /* tasn_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = 338AD937C5D82034B874829C27B672D3 /* tasn_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DA59E142922E79657BE28B674DD7DA13 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F83FE6CCCA340F3A90FD5F07D208FB /* plugin_credentials.h */; }; - DA5D9F4E6BCDBB8B8DFCFE90473E3BA2 /* d1_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB8027132186DC1BF0A50C17448690CD /* d1_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DA745A9CA4A5A38B04DFC02C0F04C959 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B5D6CFEE2D2D303F915C5B485902924 /* fault.upbdefs.h */; }; - DA768F49159F626E5137A8F79FDA9691 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = A82D46BE4221AD1794F4E23C051CA014 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA808B3A5CA5801EEFF1F7B5DE088217 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CB554E4EFAE2152B9F0F887AAA50F612 /* exec_ctx.h */; }; - DAC1D2E83DCEEB36DA5E581A55A43E75 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7640767001365462E5951CA08527F9A8 /* subchannel_interface.h */; }; - DAC5BB21298CAD4448461BF3C3570386 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 732A82738B815AFB1B4180DA23BC0773 /* typed_struct.upbdefs.h */; }; - DAE03B68E7E623F69370C61DAE710AB2 /* explain.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 95D8B10D97F05A7835C085B0EF2B03B3 /* explain.upb.h */; }; - DAF52503A7855660A8F5FA6F84700882 /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 276275BCEAEF50D5205E620B2405F40F /* stats.upb.h */; }; - DB00D7B4260A72D15DC75B2905028C60 /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ED14E173B56E9601D4D0462A4EFACFB5 /* secret.upb.h */; }; - DB0FA55D0418030DE98EBF01FADAB5FB /* collection_entry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A8F15779E33AAE7CD9984F36B19EFD85 /* 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"; }; }; - DB15CF4C4B00FD255948FF49EA44C15F /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FB5AB2338A78A9938C7582B965F370D9 /* range.upbdefs.h */; }; - DB1F848A9EC7EE9257FA5E3A53883CC4 /* pkcs8_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = D5DF8494FFFDECFE6AC1E315C51FDFA2 /* pkcs8_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DB248F124ADAAEF827D3FD5D82B509B5 /* insecure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = C34D80071ABCB24F5275D0B26995C805 /* insecure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DB24A587E54F6E34F73985EFD7354739 /* gsec.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1FCB318C0C0144F3ED976295FF71A5F /* gsec.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DB2B36A18192A804B41FDA4B864A5271 /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1B2C8D3AB989E23FB1D5E93C680949B8 /* stacktrace_arm-inl.inc */; }; - DB4E4E1BD8740BAAC1A141E7A98D5E35 /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = A305B8EC7BE1B6DFB330B3DA7B058344 /* backup_poller.h */; }; - DB58D693F243C3B4AB674AA30AEE7567 /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 456F64DF049000E597A82DD48D788DC7 /* endpoint.upb.h */; }; - DB68353A175EDA62950E39CFEBA9D61C /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = BD7B2F4FBCD4F14B3A7BEBF4EB0B4C4A /* memory.h */; }; - DB8AB745C7F9BC4DAF6B933B268ABC72 /* transform_operation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29F7778080EB562735F2C40AF72D594A /* transform_operation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DB9F65C90D72D3B5A7DF862A51121ADE /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D55881B4D51668D099863AD66D35FE4 /* filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DBA84A4A2E6880543DF0C8BD0A6D3C8F /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = EB7B56FD7376EE690838AA923F85B40C /* service_config_parser.h */; }; - DBC1397B7AA420B8E6CC349E39CBC4AF /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A47C09FE9C6851B0C41A5DEF0AE11EC2 /* metadata_batch.h */; }; - DBC2957B722D4FC7F6F7EC31534F797A /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1599917140E7483D292ACA488797E8F1 /* python_util.h */; }; - DBC7097E431E6C10553B39DAAF315D1F /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37725DEADFA99A97087236A5E26BC783 /* load_report.upb.h */; }; - DBD5D670861A78E1DF06C509F7EE8B34 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CDB0869C1EF72668489A231E5AD02A /* ev_posix.h */; }; - DBE9713CDA9E3F036D65F22D75575D5A /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E89A85148727E57700EEFC54A410F463 /* rls.upb.h */; }; - DBEA01F87DB24B4EF98EB9D4A2858FAF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - DBF356E53E005FCA89DD898817019743 /* x86_64-gcc.c in Sources */ = {isa = PBXBuildFile; fileRef = CBB9ABE80AE02D4BA51EBD6FD14CAC50 /* x86_64-gcc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DBF72E0244F9BD9D47EA2B54459EA67E /* iocp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E5B7AAC1336D406BE31037E5441A12B /* 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"; }; }; - DBFBF8C76BDA8D8F8400092EC7918A4A /* FIRAuthRequestConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D65FF7D663DF78C36F741B6304075BE /* FIRAuthRequestConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC0AE2093AF65E6165457DE637A9297F /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D97CEA6CF023D662FDCA100E717093 /* tcp_server_utils_posix.h */; }; - DC3352DE0DBF6367B8E38026FC8F54FF /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B27AE92E921B8A54DBDE52F1E3EBC9 /* metadata.upbdefs.h */; }; - DC43B5EDD2EDC1D6417304E418B6FCB1 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E168C2D1F463B1E816DACA078EDE1AF4 /* address.upbdefs.h */; }; - DC480CB94A4B819589E1744554AF1205 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = E89A85148727E57700EEFC54A410F463 /* rls.upb.h */; }; - DC48F8347FBA84ABCAA42178AF279A83 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - DC4AF4051A96FC09B1A8F5E08852C3D3 /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 391D19E6D30847380C7B1410B0D1797B /* error.h */; }; - DC5B789B08F942A89E2FB07660EC6223 /* FIRStartMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = AB71DFBB3FF79835FA9A296BD2A811E5 /* FIRStartMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC5F715BBFDC2E85000EA293CB3B2190 /* load_file.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F3C365A6481D30E9535EED7CC2D910AA /* load_file.h */; }; - DC62D7495C0054F58EEAC0F3F36218A7 /* gRPC-C++-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C788C6B17F482BFD35D92A8C1C83338 /* gRPC-C++-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DC772D6087F87E3A260419BF67332DBE /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 45AC354AB6889EBA1ED0CD2C528B6311 /* sensitive.upb.h */; }; - DC779155310546D3BA5468C8F6826BDD /* FIRSecureTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D90CD3D87BD8FFC13023AAAED32CAC /* FIRSecureTokenRequest.m */; }; - DC79D813A03D9B37B8C953D4573F50DC /* FIRAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 7466C9F1DE3D2944732F7DB8C1334CAD /* FIRAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DC7EE34291B9E48AEFB8636895B452AB /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D928F5756871DF72B1E07F5C79BE81B /* time_averaged_stats.h */; }; - DC8FF04D878E0A6F6A8248AB0A87B4BF /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 4643512161FB87430FB3F009482FF48F /* xds_client.h */; }; - DC9321CA39455E2EE09B8C48EDFC5595 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5331B21BF9163E6BEFAB03650F5C2B26 /* rbac.upb.h */; }; - DC9BF3D8ED90E34469C3A190E875FDD6 /* examine_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16ED48FB8B8CFE8D24F33556B41EBFE9 /* 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"; }; }; - DCAFF94D1D7AE1BCBABEF5BB1521EF92 /* internal.h in Copy unix Public Headers */ = {isa = PBXBuildFile; fileRef = 43F56D27A7F0FB1BFEA420D74D40807A /* internal.h */; }; - DCB9E193C1CE5528C21BA20F9F310A4C /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5150B0D594A45DBBA0E0E810AA855123 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - DCB9E51F459CB1DA0317073EE1B765F9 /* asn1_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E2DEE01B8736E272BF2B3BAFCECD78B2 /* asn1_mac.h */; }; - DCC8CF9DADA886C4C8A4EC7108579311 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9A4A88BB49FEE871D1EBCB60188E51 /* fault.upbdefs.h */; }; - DCC8FE2C9C1115847EE19E2BC5E74A54 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6110A19686169BD41F4305AD5F411A /* substitution_format_string.upbdefs.h */; }; - DCCE9D62EB57F221791AACE829B19192 /* time_averaged_stats.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4D928F5756871DF72B1E07F5C79BE81B /* time_averaged_stats.h */; }; - DCD4EC1EB53EC0ED7B463E0256842C89 /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = 9694BCD69FE6E3355E49867C94915517 /* uri_parser.h */; }; - DCD804425E9A148D30A30F71695F7E96 /* spinlock_wait.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 398A37D7EE85D3506F8C02E6A7795390 /* spinlock_wait.h */; }; - DCE3F0FD731EB4F9430C32CFD2AD2263 /* proto_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = FE2A5D385714451F620936B2F23E9EF3 /* proto_buffer_reader.h */; }; - DCFAD37A09EA0A12BE344542FC15CF28 /* client_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 303B101274BBDA3CB492D5B770804466 /* client_callback.h */; }; - DCFBD1717EA4682A36950DF0B75C93A3 /* FIRTwitterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 821374D67A9F6268117D35B2ED29F9F8 /* FIRTwitterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DD0B4371DF13EB1E55B5BD2499B385D8 /* event_engine.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 1C8AD2D5CC93E773F479FD4EFAFA1E14 /* event_engine.h */; }; - DD0CB0EE9B3056AC226781F06D5A658B /* filter_block.cc in Sources */ = {isa = PBXBuildFile; fileRef = 895E1CEA80836E9355FBB0D9B1F245DB /* filter_block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DD10AF0E27D3E44239D7029E76CD0D45 /* shift.c in Sources */ = {isa = PBXBuildFile; fileRef = 11051F2C2550E6A52CB1022EE4E6A73D /* shift.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DD10CF9DB83AF7E8427DBBAC301F0174 /* pollset.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F3EE28BA0A3986A37071EC9847F32046 /* pollset.h */; }; - DD15225EFD824DB20DE15CD3A619A15C /* target_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB8119CC0ED14A26F19C03B8C405C890 /* target_id_generator.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DD160AB554E6303A6FF7A024B2FCE0AE /* slice_utils.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 5C1A9BD5F38531A5B1B100037F6260BC /* slice_utils.h */; }; - DD19906A7F3DF699981705477A925538 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = B78AFC5C7B27A52401A443D615B2D7BC /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD26A6C2CA78E04F53D46FF8249930F4 /* api_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA3E56DE2F04D016CA72ACF03FCB2F5F /* 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"; }; }; - DD30C0184DA84AB55DF9B42B4E79004A /* socket_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8DDBC7DBF588914F56027797FAFD438 /* 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"; }; }; - DD3A24CA76533FD6A7CE1D69F1042E8A /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 9FDC55221D6E3CC0851C06AEBF1B6C8E /* alts_iovec_record_protocol.h */; }; - DD4428569DBD113C40057AD67572F926 /* lds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1EC6CC8FEAC7C2A5DF91F812DA05106E /* lds.upbdefs.h */; }; - DD528BAB00F429790C50CC73DA934320 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D0A8DF30AAFD1FEC949DB1D6F4CB66 /* path_transformation.upb.h */; }; - DD5830E584E3AC979DECA384D8F3D72E /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BFEA9FB016A5AE331A2240DF946E29F /* 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"; }; }; - DD5C23257179A27A4B050FE10A0C5E02 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7CA3D6AD61F23A0E12CD6631866A53 /* range.upb.h */; }; - DD5DEBABE0FAE2987FCF6148078B1E1B /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6C6C06250C657E62352B87D002B5152C /* backoff.upb.h */; }; - DD5F7F03DA492DD8D3F169A3CF91F3D7 /* options.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 394011907B2C5045603AED3A65EE8EE4 /* options.h */; }; - DD60BDA894716C2C4EC097210A0122E2 /* FIRCreateAuthURIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 34DA46C8AD75AC54D0AE0F95E7CB5580 /* FIRCreateAuthURIResponse.m */; }; - DD6430E54A2B4A49795E77DE08FAAC53 /* connection_id_generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D19F7F151E638E1566A7C053D2C4DFF /* connection_id_generator.h */; }; - DD65A2E3B0D1F216E5272550D111F17F /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E6E9F7FE8111771743D8A312B998CD2 /* arena.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DD68B38E5718558756F19953BEC81211 /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = AF9E441B0346B45C4472AD4CA8211B60 /* migrate.upb.h */; }; - DD6950A3EB2B80D06EBC7A3E73E4CB79 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 496C34846079E9EC78D047FE2E773626 /* metadata.upbdefs.h */; }; - DD6E43E4D03883995EB1EF975C03E5EB /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 82889AE2BBF9643D34B161B9220FA9F0 /* versioning.upb.h */; }; - DD7C2B3CC68A73B2B43585FE89BFED1E /* address_is_readable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B0F1D207BEC3C04E7AA502B953EE645 /* address_is_readable.h */; }; - DD93DCB360AECADA65CC493513644A16 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9360FB5B4510F108C95F0124171BCADF /* logging.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DDAC34E129A8B438E2CFF10BD0319763 /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1FF92140BB1CB967A19E2081E537C2 /* grpc_ares_ev_driver.h */; }; - DDAD1A789D307FB83EDF9A421F747CCE /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B79883322CB09A08BAE47FE41DE6C433 /* route_components.upbdefs.h */; }; - DDB21CE0F95DB11E995478CD0B7A83F3 /* mutex.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44E70B4D044EDFE27528626FA49D8BEE /* mutex.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - DDB6843EC4ABA55D39E9E88A886C7800 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF34C585EF858951B444984D28BBD12 /* http.upb.h */; }; - DDBC7C15BFBA88003AD56DC5AD37B2AC /* slice_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1A9BD5F38531A5B1B100037F6260BC /* slice_utils.h */; }; - DDBDA863ECE6314C98B603063C3281F6 /* binder_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = A818395C8B5BDAA1D9592F204FD2B038 /* binder_stream.h */; }; - DDC92DEDA3C8BD4F9DC478AADA231C67 /* server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5D482698E307862028290C8A6E90F07 /* 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"; }; }; - DDC9678CC01109FBE4D9ACC7D3666BFF /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 390689CA897899BB9C8215FD2C1435D1 /* tcp_client.h */; }; - DDCF07D0BFAB9F5F7607C539E1F3DAC6 /* self_check.c in Sources */ = {isa = PBXBuildFile; fileRef = 62DF19CFF1EE9F5FD48066FF71779B14 /* self_check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DDE82089F82D6B470A3C39F5FAE05CF8 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = CC72DE90953D843CA4A9CDF23F33366B /* frame.h */; }; - DDE9516054EE715A15C7733C963749E4 /* local_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 905A7EA781C7788A3FEA5515F64BCCD3 /* local_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DDED9972078AE3FB44510EF3A39DC9C9 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 555755FC986220016223AD6FEF637404 /* grpclb_client_stats.h */; }; - DDF48D08E780ABEE7CE421E58B671ACD /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F1FDBF639CB74864A60D21F5939F2B2 /* env.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DE0460A61EA223A035D5431A40DA7E18 /* transport_op_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2FBF9E6367F69C3C642BA8281F5E82D /* 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"; }; }; - DE0A647129811A32D60AD458AA81C678 /* v3_akey.c in Sources */ = {isa = PBXBuildFile; fileRef = 40ABC8FF1A58776E5D32779906E6AD60 /* v3_akey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DE0E8A1CDC36C12306A822710D67A114 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC00F275871BA9CCB21D1871779468AA /* parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DE1F231EDA96D00749F4810ABA1998F1 /* FIRWithdrawMFARequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8025D595C262037DB6D82C7FCFB75049 /* FIRWithdrawMFARequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE2887DF73076E257ADAC728102B8975 /* skiplist.h in Headers */ = {isa = PBXBuildFile; fileRef = D597823B6ABD6474B4C340558C63BFA6 /* skiplist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE35EF7F27B44A9896E311C0DA69FAEF /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 87692D90792BBDDC382E34A02ED92B4E /* orphanable.h */; }; - DE387AEF99B3D3ABA0958476BCC4DC90 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EAC86445CCAA8B70E31635F665A599 /* cluster.upbdefs.h */; }; - DE400E4AE99B373BBE376B20C4DFF7F2 /* http2_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 356E0DEB164D923940B3FE6991E71990 /* 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"; }; }; - DE546568325970581BDB1550F60D74C4 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA4A13C9EAC21C4B7CA8B69309E810F /* orca_load_report.upb.h */; }; - DE55982947FAFF0C43678303D3BA03A7 /* server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B5B4949DE576DB5D0512953BEB5ED70F /* server_builder.h */; }; - DE607F09F9F8E039165D58EDCFAD7202 /* FIRAuthAPNSToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8209446678F9C564D937FCBAB0C03 /* FIRAuthAPNSToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE7A7F7D764C628E8AFE2E222CD281E1 /* secure_create_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = A46D6BD081A1DE6301BFF9358093111C /* secure_create_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DE8823A8B5D6643FD8C275D1B1BB05E9 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E0904CB978C8745FBBBC1BB1C47E042 /* socket_option.upbdefs.h */; }; - DE988C91B8B4F4AE407D9F16D1009BE5 /* passive.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F20F018998C445B11421D01998A59F9 /* passive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DEA2B41FC40880122FBF98729E80BE4C /* activity.cc in Sources */ = {isa = PBXBuildFile; fileRef = CFA9D0C4C390F2E6682AC1BF86962118 /* activity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DEAE066D2523580FD957FBB0C5380D9F /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D50A83BA802440535A19E241DE58AA /* message_compress.h */; }; - DECDA6BA9F6F32A15898179CDC1CD982 /* precondition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 726A0D5A76092A2CB4107CF225B5C259 /* precondition.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DED780C614180F41083EA5391281EC5C /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 0D979F92BDF244F13B3F04D4D97CEDC4 /* server_config_selector.h */; }; - DEDF01E92FEE978FB2E75474C0DD4225 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DF92B730120BC397228E9C0DAB6ED6B /* 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"; }; }; - DEE949367C7F3C424B143934B54AB771 /* context_params.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 865D385616D742CD2147A5718A155362 /* 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"; }; }; - DEF3A27896BAF1DC0903F58028EB59FB /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 0AB859AFBDF808CD70C9D89CA6B9B99F /* subchannel_pool_interface.h */; }; - DF0A79B70E7FC4CC8F7F3188E66459C2 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 024C89604927D27644723703E868DD3F /* FBLPromise+Any.m */; }; - DF1C96F07F9BC8E102945150D4A8290F /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 391D19E6D30847380C7B1410B0D1797B /* error.h */; }; - DF31812E4A8DA11E0160F7504826654A /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 5ADF5062370B339DB0986D23451D2F61 /* struct.upbdefs.h */; }; - DF459F6F2722164E616E361AFA171553 /* memtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9D35367D95FD068DB4B92945AF8370E1 /* memtable.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DF4DE43DEE84B506C831F563D764EC26 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E7987C9EDCB7BA1803E4D1C4E46FBC3 /* path_transformation.upbdefs.h */; }; - DF739D4D48BB4168E4B0C13C5DE31488 /* pollset_set_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F4C7F33E74A38733C463A079FC14396 /* pollset_set_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DF741CDDA3CF035BEFF474B96E67CD78 /* ssl_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37BC3E2508C15E58712F08C92BE75E1E /* 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"; }; }; - DF7FEEE763E48EA51C45AB7F62396C9A /* service_config.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = E4CAEEE1E8159A80E76B9C605AA98BCD /* service_config.h */; }; - DF8CB2E5BE29D4925C6034B6D920480E /* lhash.h in Headers */ = {isa = PBXBuildFile; fileRef = C5124ABCF913986F2FBD6E597A502927 /* lhash.h */; }; - DF8F4D51FDB6498C9D32324A91D9428C /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = CDF34C585EF858951B444984D28BBD12 /* http.upb.h */; }; - DF8FCDAF2987BF88039E090C30EC24AB /* FIRGetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6637FA7E8865B423159B3DFDEB5826DB /* FIRGetAccountInfoResponse.m */; }; - DF9837D45CDA55A9DDE36A90528DB3E1 /* hpke.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = AC1757E25D2FF46CC7149B4F5779648C /* hpke.h */; }; - DFA4016AFE227A00AF3D120D74CC3D9C /* FIRUserMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = F49CB4FBA3DF06BEC049B6BA4C9E21CE /* FIRUserMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DFAD119D792250E707A90FA04A2E7EB3 /* bitmap256.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FCF85413C8149E93213E18CEE7EED6 /* bitmap256.h */; }; - DFC22F8E4B6AC4BE1BA40FA22DB1B390 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 387EB660A9A8BC55A4AF697223C536CC /* tls_utils.h */; }; - DFD52FD820A6800C72AF721558FA4C0F /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = B64779E85C308D6FCBE9078BF79EB01D /* GDTCORReachability.m */; }; - DFE6E03B94E66A74E6E6D4EE2F5E626D /* table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 94C69508ED2E514CC2067BCD234BD4AA /* table.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DFF2265256702FF959BD9ECD71B8D59E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0376345AF21E938726D4C37516953861 /* internal.h */; }; - DFFD85A2F4883249211F942149E4D658 /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = E3D0EF8BC014BAA93E07834E11BC30DC /* murmur_hash.h */; }; - E005403C8115098281F3AF3583F88EA9 /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 7775282BDFC7F8B4AFF2CABDE7D3EE41 /* call_op_set.h */; }; - E0059550AC7F465C0A74CAD20843E303 /* semantic_version.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9EBEF4EBDCB00B8CFCBE12997A5C4354 /* semantic_version.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E0207B6D1CC0E697D80E0BDA3C3BE12B /* bad_any_cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = 217C1B0490B92241DB967CA6CA418AD4 /* bad_any_cast.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E03AC9D0C384ECF3AC29F130C036B57C /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AA1E77257DD61E97BF6D0946527B39D4 /* accesslog.upbdefs.h */; }; - E03D3BF0C3A93E30761BB6655A77DD7A /* string_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = A792C080FAE56896BE34A50BD173F601 /* string_windows.h */; }; - E043A23D0629D690E9897DC10F3AA71E /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D3D6778B042F5E5557F3971629DD15 /* resolve_address_posix.h */; }; - E05707733978B3B469E7F0D1DB21AC29 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = B8EF2573A9A70EF757EB2234F720B2A1 /* handshaker.upb.h */; }; - E05E45F268E1BA4B69D2252E18F4EAE1 /* timeout_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0477AA6CF1B36AB9D8D58B968512BE93 /* 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"; }; }; - E07ECD1D399DD08A39C26C3E72BBD09D /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = B2E3EDCDAAB73EE084826C2356ED8E20 /* FBLPromise+Catch.m */; }; - E08EB595D18D27D3785B9FEA57564EBE /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = F02DA9FAF929FEF2B82003022CB2154D /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E0953C4E9D8670AB165CD88953D8D367 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC6F61972B12C5AFE35B95B4E2FEF46 /* aws_external_account_credentials.h */; }; - E0AA8FDA6FC9758B9F3B58BF3633439B /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B49BDB0B122F7A383A21639753D0255 /* udp_listener_config.upbdefs.h */; }; - E0BA53DE812D1E3CEEA33D4CF350F5BC /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = E566718B81CF266276E026CC37C9BC92 /* validate.upb.h */; }; - E0BC35F0E4A68A331B1BE6DED624998C /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E756628518B41DDE180232871CCD954 /* unicode_casefold.h */; }; - E0C1E62D4CAD248B35EDBD51C2CC2010 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 492C1AEDF0F2473348AAD01F9857FCD8 /* status_util.h */; }; - E0D672EB19F350EB3A4A4FF3CFC220DA /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B24575716E87E99C692991FFA1C4F6F /* backoff.upbdefs.h */; }; - E0EA5A11BED9308A8D4C57231B6E468F /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2FBD16630C80A72BE52123E66DAB8F4C /* 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"; }; }; - E0EBA4F0FC2C38724C79B8B54CD64617 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF6338EB9CC49F5A00F849713258C5E /* service_type.h */; }; - E0F99B7DE9AEBCB176483C7391320498 /* log_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7B3FFCB9BCA2ECEA5E9056F6CD391B4 /* log_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E10897FAA0718F285009DA715D722C39 /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 2677924889F0BAF829EA6C296F2F417F /* time.h */; }; - E1136F0BF32A3F38AB1B9F3512C69AAF /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 042477EE03D18F13CA08BC910A4C1C5B /* stat.h */; }; - E12D2C8A2E1FBF13173E354AD29A5B60 /* handshaker.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 799A6BA38BA72F02C43FA66FAC4E03C3 /* handshaker.h */; }; - E12EC74CDB6AAB7A62607B04C98D6EFA /* endpoint_pair_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 153C2CA41EDAE13B8C59C9858FAAACA2 /* endpoint_pair_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"; }; }; - E13B4FC4A09ACCDECA5E450080B06560 /* fast_uniform_bits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1BC6E86F97EB3A0A9244A0E6A3DBC8F6 /* fast_uniform_bits.h */; }; - E13CF5174E847F2FCC17F4D0BBD6B7E3 /* throw_delegate.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F57622D49B27A597B810667D2AB89B01 /* throw_delegate.h */; }; - E14156EE455529F493E97BB88D875494 /* event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75682C0FA51A0354F41CAB4D0CA10FE8 /* 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"; }; }; - E16F3B7A0EEB9372F9D2C9E9C4CA14FB /* stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4BD3D5D2949EA7DAE24682665A60C4D /* stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E18F0224E4A92BA321E54EE7C226240F /* create_channel_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 010289DABB71A1F8AE36F645B8AEC3F5 /* create_channel_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E199B3FC84F5BC5811913AEA92FAA153 /* query.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3FDF4D5DF64A51C8ED5950D01332A0AA /* query.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E19D8AC3009EE85D132833D87C03C493 /* FIRAuthAPNSTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C621179BFB1E37F5306E3CD5329A64CC /* FIRAuthAPNSTokenManager.m */; }; - E1B882D66E47B4C977470029E6A49BD7 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 237003C6E93AE690EEAB407C47E3479D /* auth_filters.h */; }; - E1B9D4669B2703436FFC6C8CDFDA6307 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4B41A9D4DE4D3CFD54498E4EBE058082 /* cluster.upb.h */; }; - E1D08710CD9E6F12328008FB7507C137 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = C6AF56E05FC2FE32ECEAA6204218D847 /* kqueue.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - E1D7C27DBA051E2D64B964CF850D9F71 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C162A8765788186600371216F98F67D /* xds_client_stats.h */; }; - E1F4121A3D1C04B1D9F62C844210F63A /* handshaker_factory.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = B57334934DFB7A0B38D71BBAB211B84B /* handshaker_factory.h */; }; - E209DF932DFD57007A2364A70E100F87 /* bad_variant_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = DCEBE57AA1157990290F48A8B0B75D9D /* bad_variant_access.h */; }; - E2251E6CBC32FAB80E303D7479F10264 /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = A3B8C57D4739031520C5CCA6CF873A4F /* ndk_binder.h */; }; - E2257F0B0226B14FBF5FCD2D2B5CE36D /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DD6E3DBC7CF3EF9831EFBBBC57694DEC /* timer.h */; }; - E22F3832B330C492FF53C3DF62883ADC /* FIRMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 50AF2EB2D8A9A72600617F361DA02B89 /* FIRMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E24BF4593D98C72B018C2F9332A057AD /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = EAE351CD4D924458B9CEA52AE415FA4A /* handshaker.upb.h */; }; - E24CBBF6292466ACF6A1E82BDA3615AC /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1B749CF3C9B8580BFC484CD44D768B /* timestamp.upbdefs.h */; }; - E26715D8509024B58A1B316636D104FA /* internal.h in Copy crypto/lhash Private Headers */ = {isa = PBXBuildFile; fileRef = F9514C0821DE3D9512A12B6846090A1E /* internal.h */; }; - E2783BA20F486D872095EAA880367B8B /* client_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 06E8C0DF14FF51DF74FF293B35FF204A /* client_callback.h */; }; - E28856F7A5D5914BA7CCD9FF2A65CD5D /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2A7CA3D6AD61F23A0E12CD6631866A53 /* range.upb.h */; }; - E28C2B9D4459FA8E4AB97ADDE5E35301 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 42198CDFAADDC4FBEAE9CD731EBD7B86 /* listener.upb.h */; }; - E28CC888C0FE84E747F16EDF51A202C7 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C30E8C02095BE8D5E92A9813AC9D3323 /* cert.upbdefs.h */; }; - E29448C36E4012972D15188DD7C9F993 /* write.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17CE8D39CE1F05421B72E10D0F414CDA /* write.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E29A3B32F2CB035E731AC07A9A33F806 /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = E198F4A7374CF35608E3D56C9A802F60 /* duration.upb.h */; }; - E2A01F0F5504F2192BFDDFB1D9898512 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - E2EB1DED7456377B9C9BC74D7F627F25 /* FIRVerifyPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A731AC3AD96D4A9F2590A4263C5903 /* FIRVerifyPasswordResponse.m */; }; - E2F28411F1FD15AC928BB94EAF52A101 /* unscaledcycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 580385EA62D5F2B7AE7A7FA62157691C /* unscaledcycleclock.h */; }; - E2F2F014E45505AA121C951F0E8D9FC7 /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = B8CEC288DB255133814B49990155B678 /* builtins.h */; }; - E2F72469B4C899B8CC26E8A54B6A94A2 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = C2050AD2DDD42864B31AC7CF1313B383 /* pollset_windows.h */; }; - E306A789A50350B07ED2404A572EF125 /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E8357A1ECFAF908250B25DCBB8D91D9 /* xds_certificate_provider.h */; }; - E30A722EC6756FE03559C0EB3B9FC967 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C6FB1722A8E76B4749596C35FEBD15 /* timestamp.upb.h */; }; - E30CBBC825AE61EF928200382F167C66 /* generate_real.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 16EEE417B9EE9219567DCAE5CDAC7A6A /* generate_real.h */; }; - E31151DF435503EEFCC9342CEE8025BF /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 27147275BA0B70A69E1075EF4B67F09B /* grpc_tls_certificate_distributor.h */; }; - E31C40A0602E8684C59B6CD213358544 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B27C1DBE793B0CB0A66541CE2706306 /* struct.upbdefs.h */; }; - E32B7B7CF7B223A8376FCC1AE1728FFA /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2134484353B50F8458CA0604E5FD1AC0 /* bdp_estimator.h */; }; - E336677C20C21BDE9753F53353B1E9A0 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ED761F119C0CF1FE31AEF10B707E9F /* chunked_vector.h */; }; - E342527BE8F5C5B46B40E2E4E23B003E /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 75E9383DA3E778B9D79F739FB202FA1E /* udp_socket_config.upb.h */; }; - E34CECBB98EB83934DFA702B49BC9A4C /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 6D4AD9FB96555D3275666B4151B20CFC /* ssl_session.h */; }; - E34D41C8C8F7458CA829A81D20E257B7 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7BE9EF9D777E71CFE2C59A9655253213 /* bin_encoder.h */; }; - E3530C146370303BD5503799560CA39F /* internal.h in Copy crypto/hrss Private Headers */ = {isa = PBXBuildFile; fileRef = 8169A1A883278213BAE6489152180CC1 /* internal.h */; }; - E377DAFC9F00CBEA0FF5E529E2CFBCE1 /* slice_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2AD7E04B247A048A8B2E9C43B804FDBB /* slice_buffer.h */; }; - E380AABD16CF05B8ADB492D7C3BD6240 /* binder_security_policy.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 5FE0FDABB311ED38489D45C52777A2DD /* binder_security_policy.h */; }; - E38C91E1607DBD58775D33EE3522EC5D /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D979F92BDF244F13B3F04D4D97CEDC4 /* server_config_selector.h */; }; - E38C99333E6D9106064768EB0F205985 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D605D86226A52F8A71732FAF42DEF3 /* span.h */; }; - E395CBA5AECCB72D29A7F6B267805402 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF867A681925FB1B8E1F5D78D5D35BE /* hpack_encoder_table.h */; }; - E3A50BF247E7FF0749183E4E52371FFE /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1579B526F8670F3007B2CBF0B82CB2C4 /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E3B859133E99F31EC59579F71C7ABF9E /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D1CCF723D1B26DB04AF16726A65BB223 /* sync.h */; }; - E3C134A551419105ABF34099617F7C00 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = 5D83DC3A83153B97A813CDFCBE6D1C45 /* composite_credentials.h */; }; - E3CD3C2AAE991D6C95C6C53B0F47C94E /* percent.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 99C2E67575ACD53548D30A6942AFEF42 /* percent.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E3D837F1585C63D4C4B8414978830C24 /* proto_sizer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BE317B351B87093CD8D68D54373ADD5 /* proto_sizer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E3DE6B6FB9F3884DF00B647CC6F6C7B0 /* xds_cluster_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2A45C27079B48D59BF85661F6D3ED49B /* 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"; }; }; - E3E35E98660F1FB404DC7C50804CCFA8 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 495906018B5E0F8CE64C60C2A6A381E8 /* internal.h */; }; - E3E3E5788430037EF20F186E76888B3B /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = C5FAAA7556C6DA30CE973C8CEF0C7EED /* binder_auto_utils.h */; }; - E3E91FDE799EED0D8CD8E6A0F8986BBD /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = B42C1109B2541422EAFA3594E8E83C60 /* credentials.h */; }; - E3EAB023D089C52A3832FF17F6C5D5B8 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F26B9C2F2E2DA58209865C39C0E53E0C /* block_annotate.h */; }; - E3F02C88B5B17EBF2EC15F5A676FC230 /* iomgr_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6898356BF9B673BC05FE83E21588D19A /* iomgr_custom.h */; }; - E3FF30101CA98ABB106333454C34865E /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 014FC73DC3798CBA3556EF64137339AD /* decode.h */; }; - E40A5A0A9DB5E7FD97D3743491D3C6FD /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1CC498F0F3AD4EB47FD2C2A09BEB57 /* alts_grpc_record_protocol_common.h */; }; - E41177D05D8B2E22D03EBB73E5F2CD27 /* thread_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BBC125812A1446D376318684CB0F227 /* thread_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E418545F35361D6965BDB2EB7192024B /* overload.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 45706FD070DE133D0E780598AEC28161 /* 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"; }; }; - E42327A3D16897EB3C23E87E7F0C02C6 /* secure_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2DDC43F322BC51321F4F2FD810D03C /* secure_auth_context.h */; }; - E43C2D64F8FDA3C7734BB1F030BA26C9 /* alts_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82FC36A5821DFC147387DC7BD77868CE /* 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"; }; }; - E43C8A030523402906F880AE7DCB2538 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = CA542F9D5EBAA2648641D0696B7DFAC5 /* avl.h */; }; - E442FA1E4AE071D21D3ADC20D7C29708 /* asn1.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A49061F055B7D233D2FF64AA86922D /* asn1.h */; }; - E448D31FD09F5D7B409CEC597D8D66A1 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 15BB6E7E26F87757A2EB4F37788D9228 /* insecure_security_connector.h */; }; - E44E4D9C87D10F7FB88F2B8D92341D70 /* xds_http_fault_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57675477D4DB0E5E71E74831B267B9F6 /* 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"; }; }; - E467238E5F32F070DADC8155EF493A35 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC9F3AB799D826433E59BBAC00C70D7 /* internal.h */; }; - E46D23A901BDBF763FBEDA24393D72CD /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = AC15C14ACB2B3450BD84A52512E34452 /* backend_metric.h */; }; - E47127EE84762356148DB7924EAA8669 /* cds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A043C3A05AF6ED8594DD9916B685B94D /* cds.upbdefs.h */; }; - E4730CE8162880AE600908E8DF027AF7 /* walker-inl.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 62481F32653432C7A1D0E8F8A6445054 /* walker-inl.h */; }; - E47A33C70EF77EBC16553229C68F0023 /* cordz_update_tracker.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6C1009E1760E792A6FCB70388FF52E70 /* cordz_update_tracker.h */; }; - E4BA36A41438076B1189E5AF2899E52C /* fd.c in Sources */ = {isa = PBXBuildFile; fileRef = 093ABA6BEE3C66EF9CE1EA5CF4CB0985 /* fd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E4D40BE448051E285392A01CADB87985 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DF5B999A7319F583528EBF1C39974AF /* function_ref.h */; }; - E4DAC20177813E034C7FE5C688CC3BD3 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1791BD2D278381AD70DEDF0D429E8309 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4EC232257EC5F7C71BF0B88262F557B /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C365A6481D30E9535EED7CC2D910AA /* load_file.h */; }; - E4ED624A1D7FA9245076FE1C678A717C /* internal.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 2C7AA62AE0F3FFB59513C0F688C50545 /* internal.h */; }; - E4F5D13E2DD54A4CC9E5B5CF0402C7E5 /* FIRAuthSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = B5946DBD845B9323E97F6B98B585DF02 /* FIRAuthSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E502B0C0AFEE4D2A23C63936BBE81AE9 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1DEE616058B744730B0D59A55A36A813 /* varint.h */; }; - E5067F3E8D5F01C665F52744DA939ED0 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = DF3BA76983ACBBCBA404FCE5F0C36FBE /* local_credentials.h */; }; - E51B31731C6E72C68E5D30F4CB102341 /* FIRGitHubAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5588F70B6B250953B5D1E23B172C337E /* FIRGitHubAuthProvider.m */; }; - E51DA1393F26A113B9B704B1EABEEA2B /* blinding.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DE70EB1DB433C520CB28E01F35FB98F /* blinding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E54F2A3E52CE685AB55C24C06B4396B4 /* server_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1A587CE9582409E4F9F8A18CE9770F81 /* server_callback.h */; }; - E55C7801F58B4F6113BDC9B63E81357B /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = D62734CBF3A3CF169A326C3AA4874874 /* api_trace.h */; }; - E55D9EBB65630BA13DE9941834A5A28B /* int128_have_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 6D61EC7FD66A8CB74562DAEFC173E0C7 /* int128_have_intrinsic.inc */; }; - E5673D7B49DA0548B36C7AC5ADD4FBE6 /* discovery.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E99D68AFE1BC93F0C2874C72C6E4A27 /* 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"; }; }; - E56FAE8A4AEE91DD9700848AB762615B /* str_replace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DA51001DB24BE687C06CD98B1E8784F /* str_replace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E57301BC14A327CDA8A56889E47F3E57 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 76C5A2094580D570E896A866C22C7915 /* parser.h */; }; - E57B2FC1B869B46A17CA96F69C780130 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 56AA12118D3A9F28C995C4618237BFCB /* router.upb.h */; }; - E57C923CA7153580D1CC6EF1E267539D /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 13EA44A2BB6451D6C319F7A782688203 /* status.upbdefs.h */; }; - E57CB7FA42EAA5E941AAAE394BF01B6C /* decode_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 9844C2549A22396640A5E55202C218E4 /* decode_internal.h */; }; - E58AF8EBE5B1557AAE938D124BB16C7A /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 49C50D8E8A7F1F4AD6D32A4405FD242E /* pollset_set.h */; }; - E58EA45BBAA215FDFBF0CCA2453FAA53 /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = AF4B551E052F26420522FABCCA7BDAEB /* httpcli.h */; }; - E591043515205D2A9007D93645501A8A /* p_ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 389B4E55E130BCB027299458035FA3B8 /* p_ed25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E5AC8C873602265E65F722DAB069CF6E /* fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A1360F8E69155D476DD612468023F94 /* fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E5B97CC92850848A7581E9785A726163 /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = EFF54E47F13A60E7BF9B7A0E2E1C8783 /* des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E5BD3A9B39CC44AC794B426119EDD469 /* wakeup_fd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 663A111C8C2CE477620645403636787F /* 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"; }; }; - E5D439535C3F4EC81073741B33B5B1EA /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D811938FE470F6F794D4F17C60FF7BA /* polling_entity.h */; }; - E5E7391F72A18AC28D3EB6654F24B920 /* blake2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 01268477E858E2ABCF1131613B5DA3BA /* blake2.h */; }; - E5E793C36AD4499621C67AF4B5B17153 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = A9BFF848B98DE459D79C6FEB43146143 /* promise_like.h */; }; - E5E85DBCC5D93F0C4A17FEB607E5AF94 /* p224-64.c in Sources */ = {isa = PBXBuildFile; fileRef = 214DEB6E60ED630E65F21ED4FF7FFF77 /* p224-64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E5E9B86A71AA4A5AF27DEF98DDE61BCD /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1380CA1378FD02FCA99D6BD6F8090838 /* security.upb.h */; }; - E5EB44CC1F1F641568DA8C93556F4952 /* kernel_timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB1E143C62286D67ACCFD1C4AA1D928 /* kernel_timeout.h */; }; - E6029A79998DA2A6E1CB1CA2253DF38D /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 299F7B554D383F28DFF7121F9234D97C /* FIRCoreDiagnosticsConnector.m */; }; - E60C77851EEB0EEFBF1859442AF1B568 /* slice_utils.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = C05B927A002AB8ACAF7BF2224C480E60 /* slice_utils.h */; }; - E617A84F7CD9ECBA19B445B1DFB0B155 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B2EDC07DCD20913C791F13BEC6B40264 /* FIRLogger.m */; }; - E61EB98D961AD6133ADDFE2F1114E95E /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B9D3B1D7D115EDFC90A91EA6CFB2EF0 /* csds.upbdefs.h */; }; - E620DDC3FFD1204F4A62AD88EF126CD2 /* low_level_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFF274942974D8426972695EE62AA5A /* low_level_hash.h */; }; - E622B53932FE6653A0A88C3CB99CB581 /* time_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = ECB17867ECE1D701EA31E17DAE72FF57 /* time_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E62670E18EE66A6317385968C81F1642 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 251BE7664DFB6CFCDED2BEDC9448B275 /* alts_zero_copy_grpc_protector.h */; }; - E632755C97A3FC43ABD55BB0FBBFA7D7 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 5754AAF412D8D2FF369643708F23553E /* frame_ping.h */; }; - E6481C205947BACFBB82257059A0A861 /* ads.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F54CD61985D2CF088FC6A50AA6D9CB9 /* 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"; }; }; - E64D6BCAB48EFB5BC8A1247DC3881598 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D8DE670129A60E52265947F84F2B39A8 /* collection_entry.upbdefs.h */; }; - E65AAFE371CE875C9DC7E82E9CFBAF0C /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6340C2B09120725DD5CB5FE4DFD0DAC7 /* status.upb.h */; }; - E694A71D68E58788DCEDB94169C6F2A5 /* ev_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = B73AC2B79FB582F3A46C91119F13B650 /* 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"; }; }; - E6986FC636AA9CFE43F8D697B22269AD /* tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C37C2024A74B505A1B63B1BE5BEC548 /* tls_certificate_provider.h */; }; - E6A3D43A8AFBB1EE1B8BB92476810740 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 73925BBE3792C59A94A629CF7E49A834 /* timer_manager.h */; }; - E6AD68E3BA1048F255F692340EE47E8F /* p_x25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C02D0BC1F3D82EE13DDE1561F800B14 /* p_x25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E6B4AB02B263EA2809E313C87C78E0AE /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = F43D6F8F97EFC9ADB30BE1BFA495ED8F /* client_channel_factory.h */; }; - E6CF714D02BC5BBA996BD05155A5FBC7 /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 7C779E900CA57D44C2F9D63A7B6A6A88 /* checked.upbdefs.h */; }; - E6F210C53005CEF12FF4A478CF0756CC /* resource_locator.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F073FC63DCEF38ADCB635B9A108B42F7 /* 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"; }; }; - E6F3388DAEE1F114D13CA11B1D76F6EC /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 51E18CD16C038114D5BD8101417BEE2C /* internal.h */; }; - E6F33C96BF6BDB4798C85D0B239611C8 /* string_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9D3F89FA2345069EB342004C13AF450 /* string_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E70059F81F75BC9256CF1D5D64691FC3 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F0279C2FB3DEAE77649A5360F9E3A262 /* trace.h */; }; - E703A1F206367146DDD1BE413248AE3E /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C14CE566BD41CAD85EEE1A4C32A4739 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E7081C06E4D8B70F3C42AE7EAEAD915A /* stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E0678F2283ACC9375BA35241FC9DA07 /* stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E70BB821C0989A0A8B511EF5F3E81E3A /* idle_filter_state.h in Copy src/core/ext/filters/client_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 645FFB47B73CD219F91F74C132F32953 /* idle_filter_state.h */; }; - E716AC0FE55DC0DC77A32E173B855E63 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F173E16EF68725331068A2234C23F194 /* address.upb.h */; }; - E71780FEE93E2E214965B53EAC63AFA0 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = D5397304C266A806CDF6150D539B04AD /* reflection.hpp */; }; - E718967338E976CECB6D0F7DD7DD58BC /* GDTCOREndpoints_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0F1ED998B308C7D5AF20A3BA40232E /* GDTCOREndpoints_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E718F3B9A0681AF85166E6F77FA745C2 /* srds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 21654CCB6253D06B1D4BDDF55434D26B /* srds.upbdefs.h */; }; - E73219E5BC25A726DF71A56DD9CE9DCE /* wakeup_fd_nospecial.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34092176C974227E1B825D596BB3580E /* 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"; }; }; - E732358801B8F9F973E4C56AE37AA381 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = EBE90029584481452022B1912EBEDDE3 /* ref_counted_ptr.h */; }; - E736BDD9E61CD67D7873220C8856372A /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 387EB660A9A8BC55A4AF697223C536CC /* tls_utils.h */; }; - E7554C6AD4A9A3F90364D8CD769D891A /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9034F4E1070E412BB88D4515C15ADABA /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E755759CBBC76CE5D8D7E74C3369D970 /* string_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A7AAD420E50EEB88CD367F5F33EC811 /* string_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E75B18E08D6A2773AF33043B1BD14DEB /* grpc_library.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = E1459E43783B982C187E00129DD89CC8 /* grpc_library.h */; }; - E75D646E82C6DE7C12717164CF61FA07 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = A3A05BF3541B60D0B0B9BBE0469DC51B /* global_subchannel_pool.h */; }; - E767943771805E5D4B896D85CE162A24 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CCD4027D7B087861F3F55BD3690487E /* sync.h */; }; - E76ADB469CEB6F9821CC4B59FD7BBE36 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C3FE5C7A68F5C25C983342F8F06A78 /* discovery.upbdefs.h */; }; - E781F601EA7A1BD600B09BF294424ECB /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 537964F0ACE37B6A892730099609A883 /* callback_common.h */; }; - E7887B767941BD8E9A456B5E59021C26 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 350F82129B072868F3B3EC0AB835B050 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7903BD0F8CDE1732A7702E5A4181308 /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 8DEF7F7016C87683E118732A218CE324 /* local_transport_security.h */; }; - E79A4F782D6827B1B885A1A852F09A97 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 93916BDF32BE21A9CED7B77D6DFB980B /* pollset_windows.h */; }; - E7B24B375E51D313C9EF94FB5A6600B4 /* filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 24032A9C5706531404A71BA4BB02939A /* filename.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7C4706E9AB566D4A0DACA94AB13152B /* hide_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 125E7C9EE2431EDDF575C7D0014726E5 /* hide_ptr.h */; }; - E7DF8D4C196C871BF1B2681D55CEC5FD /* FIRFinalizeMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 42AF9E9DCB7DC1A118368FF058184E4F /* FIRFinalizeMFAEnrollmentResponse.m */; }; - E7E55046E8C02390F574B3FD25AEAAE0 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = B99997C354F774BF2D6DFBA0C326C38B /* slice.h */; }; - E7ED43C016E400A8188DE76BCCC28377 /* cipher.c in Sources */ = {isa = PBXBuildFile; fileRef = 98FA2A9E36953720EF63E0E6C7674964 /* cipher.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E7F420356F89301F41E20681CDDED32B /* sync_custom.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 70597DC93E879CB99A5FB9B4486E74B6 /* sync_custom.h */; }; - E82D8B60137D4003CAA2EF634AAC6A6E /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = BF391E4046D3E38846E557EE766872C6 /* local_transport_security.h */; }; - E82E6B812E27C1D0EC5CA37D91F3234A /* safestack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DAEA55D952FC7E5F38FCA8F814871D05 /* safestack.h */; }; - E8323F6E514E074983251D7B75B6FD47 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 3128BEDF4F00F8CB1A853FB82AF9B0EB /* FBLPromise+Recover.m */; }; - E844EC0E46B77F24E3AA7104C1F4AF2B /* cordz_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2AF9EE79843E299C5CA738D793A86666 /* cordz_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E84D99361B7588EE42176E6C0FA42F46 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF6FABDA9E55396A5A08C2A0A88EEB0 /* completion_queue.h */; }; - E854A488E4F73C2D41E21BCDE5127EA1 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E810A34AFED77E56C2233E4B2FDDFE /* checked.upb.h */; }; - E88236F99D45EF610C292C4F2C7A3C69 /* socket_mutator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C6137321C1B2F35460BB9271B14F891 /* 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"; }; }; - E887E6BD76FD0ED65DCA66722B1092FB /* rsa_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 22614C12534A0DA77B903B8EED70F18F /* rsa_impl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E89D272789605DC2097E62E92A9CDF51 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D20E187C00FA90B22573DFC7CB5AB48 /* google_default_credentials.h */; }; - E89FA599293E30DD1D6A23ADA0471A71 /* x509_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 427CED8AF3C4C27C7D6BD3F25EA68822 /* x509_def.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E8B5C05CDD5FC8BFC82B19D50FB2EAAD /* const_init.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 625D95E33A7CCAA64F96F303F8DF7849 /* const_init.h */; }; - E8C1D24270F5AED12221FF75DCD98450 /* city.cc in Sources */ = {isa = PBXBuildFile; fileRef = 190EFD6CB0B891E1ECD261122E6CAD43 /* city.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E8C3F285ADDED27E0AAAC336C3CB2BAB /* uv.h in Headers */ = {isa = PBXBuildFile; fileRef = DBBDA39D068CC4CAA43DBF85FF6152D7 /* uv.h */; }; - E8CA1B1B5B6E56FD0F99F67C0744A693 /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F3BDC6E666DC47C867D5776A20B0F742 /* xds_listener.h */; }; - E8E0BF50E1C2C1F9566E9414A90DFA7E /* parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = A443C7E39A2DE8BA64E26D8242D2176C /* parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E8E2E1CDCEDD7111EBE72C39EAE30837 /* field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15463D2206CE9BDF45FF9F3C957A5952 /* field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E8E9E717AEF699FC5CA4D9A3FD9FB295 /* endian.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7A665B245C04D150D30C2A30625B2656 /* endian.h */; }; - E8F88B13C0F5F454C888036935871523 /* opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D9437CE97B4AB49A4A92D1C11D67C7E /* opensslconf.h */; }; - E8FBCE6EE249E48EFFA2F32466D9D0A1 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D94C17DF99BBF14FD287F41375DF2721 /* grpc_service.upb.h */; }; - E90BA31B9141B0EF5B7B0C47D356DF4E /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D6D5D58B5E8527BB18328F77710A33BF /* hpack_parser_table.h */; }; - E90C1C41FA8ADCB47980B292EB56D324 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F0186B61EF4267F27EFB04F25BABC067 /* config_dump.upb.h */; }; - E91DB82391DF2243F0BB55C6A9935F55 /* any.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CDEF017CC0F2CC3666D9416805B34DE /* any.h */; }; - E91F01A528DCA9E0AB1C28E6EA8C987A /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 56547311CE3860919BB8FEFA51ECB0C1 /* slice_refcount.h */; }; - E925782C50FE47983ABEABBA8A934341 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E22965A8E2CB5BC99C33E43BE01C61 /* xds_resource_type_impl.h */; }; - E9277240C655F3AAEBE96562243F04F9 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B848F98AC8E5B6380E17439DE224151 /* udp_socket_config.upbdefs.h */; }; - E92FDF36A4C3A04D19C0F26A90EBAD02 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 51F5527F8DBCF86CE08054B11994B74B /* alts_grpc_record_protocol_common.h */; }; - E9422D7F181E2504336509899F771E98 /* compressed_tuple.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 764766F27DF531CBB6300370021F1667 /* compressed_tuple.h */; }; - E9443B712B258D804360C43167DB9D3B /* proxy_mapper_registry.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 38C071269F35009281C67BF56ED000E7 /* proxy_mapper_registry.h */; }; - E944F498E82BCF07EF81954C51E18E42 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BD0BE4A3B06C86885A15365B31733013 /* ref_counted.h */; }; - E950455A487E23638E5BAC22EF4C092A /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDB673E3DC250F32BEE1887018D2DF5 /* outlier_detection.upb.h */; }; - E96BE1C50E4E9634BA2920C0C0C89987 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F3041B8C822A72DAE8A333D61EB79A31 /* local_credentials.h */; }; - E96F119AB92E97A2B9109FB676B868D6 /* cord_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 581D4E97B9C153D6581E9FAB58DBE173 /* cord_internal.h */; }; - E97D1C9DEC1E5E95C01ADE5A3ED4903C /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B005971F5C75C1E0DDBCB4C334266F /* bin_encoder.h */; }; - E9807903E4B839180B2DD0E0FC69C7A0 /* internal.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 1B3B8A3B521B2D672486E73D221BB385 /* internal.h */; }; - E993370F3795EACD9CD24840EFC32B8F /* FIRAuthBackend+MultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 146BB52D40F58BF18FD4E0C931AF55D0 /* FIRAuthBackend+MultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A0EAF8E437C06D52D27189B4403C26 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B14D60525A22925EDAD0F0C1BC7987F /* grpc_ares_wrapper.h */; }; - E9AB714A9D2D2C7B631B39B16B599684 /* FIRAuthErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0898EA6E1B9E38125C80EF6E982755C2 /* FIRAuthErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9C6B2D89A6592009B62F1BC000F2F7B /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 34FCA4B5D9C8BB7BECC604BFC2D98AD4 /* internal.h */; }; - E9D3E289DEADC152F8BE772F8D63D0D3 /* chttp2_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F8B9887C1AD07620725764CEC688E60 /* 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"; }; }; - E9E3B113CFF5709384B65297778F39F7 /* FIRGetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5710B7DECEFB5CADF81ECA6E0521C5B8 /* FIRGetAccountInfoRequest.m */; }; - E9F1404DBA99AC49D5521781653DC577 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9FED9539579A679A149C62EEB6E3C094 /* unix_sockets_posix.h */; }; - E9FCDD7E212568941FEAD41231221E9C /* fastmath.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7B823338B9E4C56DFF2807FBD0210A7C /* fastmath.h */; }; - EA007901F3CEF567FB303BB453D019FB /* FIRAuthInternalErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 84B5EBD6C55FCC15FC3EC63FA107C532 /* FIRAuthInternalErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA02E801A00E729331D16E41EF38AEB4 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B9345989AF5D41C7AA7DFBFD2228A33D /* timer_generic.h */; }; - EA0AF95B01942524402670B28E5B2E02 /* struct.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3E6DC40E351A47A3F7D5C7FD67BD475C /* struct.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EA193834ECE5AB6CE759E09CD8C37185 /* cpu_iphone.cc in Sources */ = {isa = PBXBuildFile; fileRef = 639B40463B96C85EBD02A4F619BBAC16 /* cpu_iphone.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EA1C592114A2F39F89A9013D03DE9FDC /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B224CEDF61E100299461ECBB4903B8 /* rbac.upbdefs.h */; }; - EA23382782BEF380B5E71C38C9F8772A /* xds_cluster.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4763C786CE3AC0D9A7CBDF0C2B9A324 /* 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"; }; }; - EA24B2E23FB71E7F48FFDA8E2F1AA57C /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = E9309C3628B3BB6CC05595DB7C4490B7 /* version.h */; }; - EA283049ACECBE5E3ECC8049D9AA15CD /* ssl3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BAFC39741BF200511FC99A6EBFC66312 /* ssl3.h */; }; - EA453D18A468C4427BCC929103A4CADD /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2D558E5CC8F8FF9A279E6FCB823F78E3 /* socket_windows.h */; }; - EA84ECAB7629C832720ED2CBD3C51F7A /* rds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 03CBEB05F5C2867A917CFACE48EE047E /* rds.upb.h */; }; - EA9574A385A0197CEF26587139F90EED /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 273D56E4F37878B7A5AA1B034B4129CD /* status.upb.h */; }; - EAA587DF74C0947C52C935AF613A0FA0 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 14551A96E7B02E8A89F4E0A37FE0DC54 /* atm_windows.h */; }; - EAAB55DD5173D4D49841E5B612AB5270 /* time_zone_libc.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6E1DE6163A6D4EC0E925B494E7AB7F0 /* time_zone_libc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - EAB729AABF8ED42106C007B24BB0CBC9 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1718D18788DABDA40F35E9DBA31BC622 /* channel_args_endpoint_config.h */; }; - EAC7C408BB08899C68F42BFCDEB6977F /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05C92F39C7289C2EAC486EF107DDABC2 /* Security.framework */; }; - EACB14B0644C88931E726A42C3B961BE /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E96E38C373753DA20564A46C665249EF /* struct.upb.h */; }; - EACC0AC0600DA8371D1052C42697D6E8 /* flat_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 1140BCB2FCA2D020C4A7274336D89450 /* flat_hash_map.h */; }; - EAD04C2543C9A8BDF3A3BEFB6B59D676 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5CF7FCC3A671D9CFC2BF9433FDC736 /* xxhash.h */; }; - EAE2BFE57B784A5B052B88F7F0ED9948 /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 0D1FF92140BB1CB967A19E2081E537C2 /* grpc_ares_ev_driver.h */; }; - EAEB5BAAA8996BF9D0957EF7540428EC /* byte_buffer_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2CE7272D09CDC1E4A2D66205C7E290D /* 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"; }; }; - EAF14F04B736F0FABC9C84F5F4277FE3 /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F2E3E057E99001FA8B4A53B7DB4B63 /* HeartbeatStorage.swift */; }; - EB134ED85102A45AB78251E1E1640EA6 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C5035EAE6156F66A833FA2CC97DDFBE3 /* internal.h */; }; - EB197E06D1EB3BD1D65540CDF834B344 /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = A266F66161BD06B1A0009D73C4CB9315 /* GDTCORLifecycle.m */; }; - EB216963A1B4ED9D220955E1E72BEC6B /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = E171BFC3FEDD0AB3D030A68AD5D52FBF /* options.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EB26E115E78CD575728C2D006F338A10 /* transport_impl.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D1BF1B629F0D9837451E1439695FA3A2 /* transport_impl.h */; }; - EB37E6854E141C44C7954106DB0FE0FD /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D878849C7C735A5538DC91CB06B95E /* xds_channel_stack_modifier.h */; }; - EB3B342D27F0A94B37C02F7EB0E66B8C /* http_uri.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 57D9D04F4FF69AA878CB56C2CE564C89 /* http_uri.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EB4158596F062DC15E7DC35D543083EE /* endpoint_pair_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE63FAE1A38BD9B16B58DB8F0D76AF70 /* 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"; }; }; - EB63C925F80D36BD55ACB623CF0F086B /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B9562B6E77B62B0AB48D5E6B4E698AAA /* connectivity_state.h */; }; - EB6B50F1F46C4FF8C63D21DAE993B104 /* internal.h in Copy crypto/poly1305 Private Headers */ = {isa = PBXBuildFile; fileRef = D08A2638176BCEEA41B0DAF7016F25A7 /* internal.h */; }; - EB74315DB3EEA722293DE937299F7D02 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = E46E1F47CB726BCAD4F834D3C073CA7D /* nameser.h */; }; - EB837868F5F41B7BECCC2631D456BFE8 /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B10C863EE1FF3EC2F3DFFA963B297308 /* stacktrace_generic-inl.inc */; }; - EB8468529A8297E943C4D76012F0B274 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 01A843A33D35776B086BE103F200DB87 /* error_cfstream.h */; }; - EB884E2C373A5CA5B2AED28323633B86 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = 5AD49DD9C8B5221B6CCE7DD902E02B57 /* base64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EB9BCA5314BBE1E442475A5B36F15736 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A34CC87BF55F8D3984703D92C62FD1 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EBA783343BECE7E16901E0AB615EB4E3 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0705F9ABAC36C590EFDAC7F72B26B23D /* GULKeychainUtils.m */; }; - EBAF0CA56D794E0387EC073019F5828D /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4811407D5488DD7D66A5363A1508DA3A /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBBE606129565FD9285C1161DB889233 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B87166C717DD3DA0B19DEDF7E4907D64 /* circuit_breaker.upbdefs.h */; }; - EBDEA275F3A03E1F6F5DA432409C076B /* futex.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 53212C870257E407514D0B7EBBC7CAE3 /* futex.h */; }; - EBE434DD46D36A90D5E840F14B9426D3 /* endpoint_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF733EF4B1566BCA7A9112EEE57C2775 /* 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"; }; }; - EBFB82AF4F8FA6AA58646CF6FE6927BC /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 131FF3949C22D0E3E07D35ACAC8B2A95 /* poll.h */; }; - EC01167351D1AE0F90B848030D0EEEA0 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E52E93BE86560301BEE49508E9FB1D /* global_subchannel_pool.h */; }; - EC17049A510786FD13EF7648D9054231 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E0314AB7EE2ED65DE4C224C8FE62B44 /* nameser.h */; }; - EC335F0AFC095C984FD05BABE9D709A1 /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 2E60938E3AC08188BEA5D9EC936593B2 /* insecure_security_connector.h */; }; - EC33DD87410FFCDAD707503126EE2C9F /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6368CD1DD42541FEC7E30B7745F86C2C /* typed_struct.upb.h */; }; - EC35C3F578EE925FA305ED7C8D08BC03 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37DA25A646BF1A4E8B198FA3A2DBC6B2 /* message.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EC3BF4705C2652E0875954B1D27B38A4 /* health_check.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 50AF0D85488F4449C0EDBFD8A4823417 /* 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"; }; }; - EC447FAC1EAC21A30BC50F4249A30EFF /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 240A7D21E041DA464BC39040DA88FCF0 /* alts_tsi_utils.h */; }; - EC44F00E933254491B8B688B674A11F8 /* FIRAuthWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 226D1191440EAC029F2D6D08503B2D0B /* FIRAuthWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC5A5F407B190E9A516936C7132CA1DB /* representation.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A706224965F379548D81D1EB652B78 /* representation.h */; }; - EC655701AEEDB0967BA2757251500CA5 /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = B29D014ABFCFC4733B0DFD77AFBCBE2B /* 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"; }; }; - EC68FDEACC07D5037A82B0AA413A9BAC /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 07002E4BA9911E20048212DE5F9AFA94 /* channel_args.h */; }; - EC713C93FBA4F7C3F8DC1C5D9A78F507 /* log_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D9512FC96B3406B60B3E3B1BBF67A28 /* log_reader.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - EC7B560A758208B6065AA217FD98162F /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CA5EE1DC15353402FEEB104EAAFAE4F /* wakeup_fd_pipe.h */; }; - EC7E8BBCC43364D74E6C638B694FDEA4 /* retry_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45341594EB71BDEF55F6210D28469D89 /* 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"; }; }; - EC83525C02EE3B9A0F5155501F891D4E /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 32398E89BC47DF807E68FE2F84AEA156 /* context_params.upb.h */; }; - EC8F34817862A0E028E943A9A15C60F6 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = F3EE28BA0A3986A37071EC9847F32046 /* pollset.h */; }; - EC9AD9EA0EB84C0AE2F0D96AAD850E83 /* async_unary_call.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 88632C13B6ADCC96DB3E842E58AC3691 /* async_unary_call.h */; }; - ECABF3EA0850E2DAE6F081246E2B7010 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 545266DC416A734DB0D2DA7D63AB8BA3 /* duration.upbdefs.h */; }; - ECB4ADA714FABF1F450E28A8C4555E2A /* prefilter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A9F06DE7D615F3916E1004267B2C151 /* prefilter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ECC459DDF19CD4171E9B701ED3E5B109 /* subchannel_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7640767001365462E5951CA08527F9A8 /* subchannel_interface.h */; }; - ECC824A08F41C18B90056C1C3DEDDDC6 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = D71D6E7417FA89D1FCB946E368E0ED5A /* thread_annotations.h */; }; - ECCB71EBFEC2FCFA9D0AC37C2D79340B /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 52F297625EFD545077312FD10FF822EF /* cpp_impl_of.h */; }; - ED1228E3F7AEA8B20534824F125415E6 /* listener_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F0680FA08CD94F81F03FDC036EEA693 /* listener_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ED1A5DD51AAF79BE3AFBC49FB064F1EC /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0E9AD1D54D168BE2EED10556C27EC9 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED2D7AF0BC547ED5E374CA84ABE10EB4 /* event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C8AD2D5CC93E773F479FD4EFAFA1E14 /* event_engine.h */; }; - ED323F91E705C1C238406F43F3FF0AC4 /* bootstrap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C1A6A4E290291A81FBA6C32461036A6 /* 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"; }; }; - ED43887E46CF0310C76914A00A8D7BEC /* FIRAuthTokenResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A79386C98FA637B665D093A6F55CF97 /* FIRAuthTokenResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED572E39B2FA21DC05048F83445E3BD8 /* asn1_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 61FCEE24C2F608101EA8C8453E76DDDC /* asn1_compat.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - ED609ED5925A51AAD1E685E93ABC2B32 /* object_value.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4E98A827DDC89CDC66B26FA1BBC60EC /* object_value.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - ED63FB40FE1577D456E74120F88FE7AB /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = B775E7847EE269D6C5AFD3E0A38E09AC /* GTMSessionFetcherLogging.m */; }; - ED6F7E34019DC582CB2ACC012DA2FCEB /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A8664A9376CF43362546ECA70865293 /* upb_utils.h */; }; - ED77362D110A7ED2FD43546774C5B765 /* b64.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D7ABAEBB49E4E3F643B8E5E52765383 /* b64.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ED89E27C442EE37F772A2487CD2035D7 /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = 765811F439771B8FE3F28A99188BBB05 /* pool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - ED8A810BB8B13FAB06CCC521D8193521 /* stacktrace_arm-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 1B2C8D3AB989E23FB1D5E93C680949B8 /* stacktrace_arm-inl.inc */; }; - ED940AFE99B2DF011F281542F547804B /* api_listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 99A86B621B15BFF8685D7AB3AB6F541D /* api_listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EDA675BEBDEF735A14F3FAE97EBB011C /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 07002E4BA9911E20048212DE5F9AFA94 /* channel_args.h */; }; - EDB1EBAC81CCEAAE13164A7F3D95AC0B /* x509cset.c in Sources */ = {isa = PBXBuildFile; fileRef = ED0248F7016CA5C4A61F1CFA3D000F60 /* x509cset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EDBB4593A847971D678F3A7437F715C8 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F85DB4CC446BCB5E866C9F9494CFB717 /* UIKit.framework */; }; - EDC311924854127037540BEC6C6EF743 /* FIREmailAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF7C4E9CC3AE527B125BE9BB12CAA60 /* FIREmailAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EDE88C9B63EB5BD76528C7756E051537 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA55C97A9F2D185301AC5EAECCC36E1 /* GDTCORRegistrar.m */; }; - EDEA27BC0C0FAD4DCDFABF9D41E11617 /* pkcs12.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DCBC5FAAD2345D712AF224E2301033E3 /* pkcs12.h */; }; - EDEFC45B3FAC7933213C5B179548AB6E /* iomgr_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = F22B9B31D85DF26312A861D0CCE2A8AA /* 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"; }; }; - EDF0D67A1F6EC1D5742E98EDB9667A3B /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 64522C343CB6D8CC239271338E8757B3 /* GDTCCTCompressionHelper.m */; }; - EDF84A2A19BF1AF43D6B9ACCDD2F5A26 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F736C0B3A3BABA4B020D6AC9346D7ECD /* migrate.upbdefs.h */; }; - EE1367452032B741523B3F552AB1FE27 /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = A42A68A37270D926C25343AE4E625A95 /* connected_channel.h */; }; - EE209143808ECB59327E86C200D70FA5 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 1758E1C18988D684BE111C96BDA7C639 /* call_test_only.h */; }; - EE23D48F3FD82BA2B0A3D907F7CD16DA /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 13D8F5B5DC6F45DA97BDDE979B842BBF /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EE2BF43A93A69F7050579CDB4F84951C /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F0C30F1566D0583AB7AE5249E64EB59D /* any.upb.h */; }; - EE32628AD2AE930A385386961F254D1D /* server_timestamp_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C813F8A997726E718F1618490583249 /* server_timestamp_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EE3A2A5952F6BC24FE8BAE9B6160176C /* ssl_x509.cc in Sources */ = {isa = PBXBuildFile; fileRef = A38E6B74E76C605238B5E0961F228A08 /* ssl_x509.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EE3F4790A101909B863846F1B378DD2C /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 82FCA0F0AC99D2ED11719EB48DB90138 /* certificate_provider_store.h */; }; - EE414C7FE31D34818DB5878A21920557 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3AF0C86B29D67C1A28FFB6043385D4A3 /* SystemConfiguration.framework */; }; - EE4797C18929789EFA8456A69B19AFC2 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = D93F471F1CB78A80D807F8494A18278C /* chttp2_server.h */; }; - EE5F0D6A8C8FEF993F5FDCF65888C75B /* any.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 7CDEF017CC0F2CC3666D9416805B34DE /* any.h */; }; - EE6817FCABFB15F096A578FF540CCDE7 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E595D21180F46EC1D31980433C2CDE28 /* unix_sockets_posix.h */; }; - EE8B6B448C9A3DC85D669477D53F8F96 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 43573CD239787D73DF3CB946F948C1A0 /* xds_common_types.h */; }; - EE911369566691DFD425964339466B61 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E03BF203B59BE424A6EB6AD507DEEE /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE9881F18BDEAB91A57E4AF8E7929216 /* binder_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 021CAE0AF549BDF7E56675BDE315D6F3 /* binder_credentials.h */; }; - EEA00D40FA78229DF8B493D086144091 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 38C3FE5C7A68F5C25C983342F8F06A78 /* discovery.upbdefs.h */; }; - EEACEA16AF1A1F4A4775FE3B314670CC /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = EC1B749CF3C9B8580BFC484CD44D768B /* timestamp.upbdefs.h */; }; - EEC063EE8535D591090A77437DC796A5 /* internal.h in Copy crypto/x509v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AE66776D4A64507FBCBD86A561DCD6A6 /* internal.h */; }; - EED940014CC08125C7E9DBFDDDE7ADCB /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9291D160844646275766D62CC3BD45 /* authorization_policy_provider.h */; }; - EEE793E73FC6D803D54B607FAFA06859 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 424A4650FD0F4CDB844B98D3AF750136 /* resolver.h */; }; - EEEB206FD35C9773A01DD4923DB2080D /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 93B49580A9E0B5869DBBD970105CF082 /* cord_rep_btree_reader.h */; }; - EF0E43B2D8F2BF69A0D19ACB3203A7D8 /* graphcycles.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A80E88F283CE6125A45C3B9CB42BB3B1 /* graphcycles.h */; }; - EF17E35A73AECE5D84D0D0455EBA1FCC /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BA0393FEBD5F445B039789C2F3AB446 /* authorization_policy_provider.h */; }; - EF279E27CA01481F3A8C61F647B2FE83 /* zipf_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA346353DD8B04B3A8A1F8B6725A0E9 /* zipf_distribution.h */; }; - EF5184840CE4E7B951273329C374F924 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA10F768A51A4AB656C10E6B7141961 /* http.upbdefs.h */; }; - EF54535077E7C837E997F293B7399885 /* work_serializer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DABA334080FF1B8BC3C3702CF0D77E81 /* work_serializer.h */; }; - EF66DB930AE5D98061BFCDF09E3D50AB /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EAD9546F1FA9B59F362A87BBA9D14E4 /* endpoint_components.upb.h */; }; - EF675048E3D3C03B2E868A3B98DE2608 /* histogram.h in Headers */ = {isa = PBXBuildFile; fileRef = 946AA4CDEA08864E41DBA020331B8FB3 /* histogram.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF7595D861B42328236247DEE3E61584 /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 042477EE03D18F13CA08BC910A4C1C5B /* stat.h */; }; - EF7634C090365FE83C154CE0ABABF1C8 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = D85C569EC3C4CDADDF6D05C449DD50B2 /* certificate_provider_registry.h */; }; - EF77384A0E0682A2E178277E9B62E945 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = C3CFED6ADCDF1D2EFF227DB4836B1822 /* useful.h */; }; - EF88889B203C32EEB40F43C8DC9BF5DD /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 34FCA4B5D9C8BB7BECC604BFC2D98AD4 /* internal.h */; }; - EF8DFDB678FE6A65C26676C7D8FA6872 /* table_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = B51CBF8F09D2C579A338EF24B3A56F45 /* table_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF99D3954F6222912BD6AB9BD05880B1 /* quic_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EC52F6B0CFCCBEDCF1ADF353116D9FBE /* quic_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EF9FB0F473E4A7D910D926C7AE28D28F /* lru_garbage_collector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57BB953F0CB0C433464020B0E00F59F9 /* lru_garbage_collector.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EFB7C75EBDEE6DBDEE57D78BA4513212 /* FIRTwitterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 2483FF59FA39CF3A44053E5C7C678D77 /* FIRTwitterAuthCredential.m */; }; - EFD4769FC1D9D6B5520B923132227F33 /* gaussian_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0EF834F0C98BCAA3413536D1CC6D427 /* gaussian_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - EFDF05B55D1F296AD2BA268109D1C6C3 /* base.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D18FD77FC0C53EBA15ABA83EDB7480C0 /* base.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EFE1D439B62F76B7205431EC9658CFB7 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E60938E3AC08188BEA5D9EC936593B2 /* insecure_security_connector.h */; }; - EFEF03B6F54BF19171F374359590BE08 /* seed_sequences.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4FD4ED5B0D555E874244EF0B61F14810 /* seed_sequences.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - EFF8200AE6C3503099ECE6E7B7152A14 /* handshake.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF4831465B7E4BBC06DB8DAB743BC086 /* handshake.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F009B7DD305673CBA81F981C253359CC /* status_payload_printer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E7811BCD18DEBE33FDFEBFC5D70119C /* status_payload_printer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - F00FD6D33407F832DD5B852135550F36 /* census.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9C70FCB53E4F64BA9683873770CDC3 /* census.h */; }; - F016BBCDA72BD36036E2C4EEB0CECD76 /* xds_cluster_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 00906BD353BE3993A86E048716F07463 /* 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"; }; }; - F039D7A144D4E487A4BCC13AB937F471 /* handshake_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5FF12DB2508C279536226306C092B5C /* handshake_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F066C90D3EFD7953BF85530C07687BD2 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D0BF6EEBE006543AB748051BC0E4836 /* range.upb.h */; }; - F06F1D65C6AD18EB5D27DAF90AA3BCE7 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F96768A3D8951D7AA42A0BA458EF7C0 /* timer_heap.h */; }; - F088998D78DCD1B92C32750EB3D3092C /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 9B756D9A2C31F832C76F825485E51440 /* time_zone_libc.h */; }; - F0B61518D887D01F42C59F5F7854208E /* secure_server_credentials.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = F90DE3DB25220666D1233C3E7D2FFD03 /* secure_server_credentials.h */; }; - F0B703AF25F5BF7407E07FF99ECEF4DB /* status_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81FA0F76DB5ADDF6BF62D4FDA4C212A6 /* 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"; }; }; - F0F28D6C7513E46FCFB561D6F0BE35C4 /* pollset_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D0AA6AE75C3C240E84BC6339E5DAFB /* pollset_custom.h */; }; - F0FFE00B82243CA77F7A029724D9320A /* FIRVerifyCustomTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D133CB14A556181F89F1648028F02F /* FIRVerifyCustomTokenResponse.m */; }; - F1088FB9DF9A9BA5CFAB81BCDD9E2ACD /* FIRAuthNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 886A8EBBFDD898F9E662627471854DF0 /* FIRAuthNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1095F96C5FF24CA7D7ED42B94A4F80A /* grpclb_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4301AC34F2619CA037570179A9916F9D /* grpclb_channel.h */; }; - F1142CC475E9FF96B7EC05CF484985EB /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = CAA99C6D40B031E5F2A776580E03145B /* secure_endpoint.h */; }; - F118B5A50F26EA80532D5ABF8EA34D8C /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B6B0856A30414C2B37E98E43B2F0E636 /* FIRAnalyticsConfiguration.m */; }; - F120FB2E78F7F9478A9A0999B2BDA9AF /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 11711EFED4ECA4494FD187B235B8CED2 /* lockfree_event.h */; }; - F121A3A52426BC41CF67083D87192D18 /* ecdh.c in Sources */ = {isa = PBXBuildFile; fileRef = 19435DE142DE1C914D59812EBA19D370 /* ecdh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F130875FF48A24ECD0D11697252C2A70 /* logging.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 1B798171AF0544B2942D9ED30CF2C7F0 /* logging.h */; }; - F1316ABD56CF1CDBF9C29FBF90E6BBF7 /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FDAF8ADC84471FF705E01D9095797EAD /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F13C0F7DB44D372A522ED98BA05C3C46 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 02308FC28DF717728421322BBB9E69D7 /* GDTCOREvent.m */; }; - F1507FF33D1E83C75AFABEE5F4AF1A98 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = A7ECF7A3A3C5B540F77DEE2086FDC9C5 /* fake_security_connector.h */; }; - F163AEB8A80508E9FEAE941095F25CFE /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = CCABC239B4A170829EF83176891AFCC8 /* random.h */; }; - F168F3625D9636A0F715CD8E22DC4849 /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 555755FC986220016223AD6FEF637404 /* grpclb_client_stats.h */; }; - F178CC25EF4D0EAC196C185436EA8168 /* event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE1B0EDF56982F5B5170DFF3FB711AD /* event_engine_factory.h */; }; - F186E3878A580E8D388F9E63CC2D0A29 /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 63DE475E04E958BAE243E82AACEB54C9 /* path.upbdefs.h */; }; - F18B1F4324D529B8F8DB87CA23749649 /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = AF15D34E5EF4A11A603648484E73A016 /* ssl_session.h */; }; - F18CB2E8ACFA2ED2C638A5C4F852C101 /* channel_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = D13697CC896FF38298F4E35327AA46A4 /* 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"; }; }; - F18F6031DDB35548FB1F1DADB441CA31 /* ecdh_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = CC90425DD9169FFEADA8355B46159D01 /* ecdh_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F19E365AE69BBD919CB9CCE4C68D5EA7 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 23EBE03537519CE6BB7C75F49EBA93C7 /* context_params.upbdefs.h */; }; - F19F6E3CA6216932929D0BF85B6B1125 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 73E4878C53A125467996EC828E47CCFE /* resource.upbdefs.h */; }; - F1A57C958F2615298932C06D92E51395 /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4873DE47782D39C26B46D0A1D2C29BE0 /* context_list.h */; }; - F1AB4A7B71E1C020BA45CD11E718C142 /* env_windows_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2DADECDCFC712412643C07ECB91D85 /* env_windows_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1DCCB204F2E4F2E57C871BF12B35AD3 /* spinlock_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 3CF39C684DB827D8F5843149231EDF5F /* spinlock_posix.inc */; }; - F200830376BDAE4B5D7391F903E616F5 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F2EEA44DDFFE109C6FF944EF696AB884 /* flow_control.h */; }; - F2190FBF5485E0B918D795CD0A5532BE /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = FD15BA8BB1E9FAA7120F8B11290B2976 /* msg.h */; }; - F23289CFA91EA180A3DB821154180657 /* pool_urbg.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BD14A626C65D8B2EFE971E319CBF1D /* pool_urbg.h */; }; - F2415426FC64D1BB0120B05327D33E5B /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E0904CB978C8745FBBBC1BB1C47E042 /* socket_option.upbdefs.h */; }; - F24497412E8CAC50D0230A3C654524F2 /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 0EF741DBBAF3D551A3DDC41183993E16 /* backoff.h */; }; - F25FEB7BD6936D288CC530E5F2C44811 /* cycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 351F5AD28BA1065D0765745AE13DBE2F /* cycleclock.h */; }; - F27625A0D6FE5E7AA2D5BD6787A68218 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5AB2338A78A9938C7582B965F370D9 /* range.upbdefs.h */; }; - F27F3FB66C1B3B4FB761627C9C60E712 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A351E0FD4E085ECD644A596488A38EB /* exec_ctx_wakeup_scheduler.h */; }; - F2807051526D4CA4C236BDB26A89738A /* pollset_set_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 09CA4E7C19F69D3FE6A6BF7440C67970 /* pollset_set_custom.h */; }; - F2A58734FA8371D442ECA0E6E6A1402E /* two_level_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10AF5FCFDDD0356D5800BBAD7AEE4A7F /* two_level_iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F2B96D5BF52A985DD2EBD200D829F90A /* engine.h in Headers */ = {isa = PBXBuildFile; fileRef = B06D6B84B14FF60295313EF657430D24 /* engine.h */; }; - F2BDEFEDAB4C6CF3530CB6786D81C195 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 15321B846B04CB1F6A881383F0DB88B1 /* internal.h */; }; - F2C7A81C7B7B63E8858666B2A1B2B3DC /* BoringSSL-GRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF800B82EC13ACBB3FAB597647CEE0F /* BoringSSL-GRPC-dummy.m */; }; - F2E7B26A662CEF25EF5FD0DA21558E65 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DC1E4C15DD4AFED68BE7C12B431F3A3F /* security_handshaker.h */; }; - F2EE6F7ABEF797BCFAF6373D7447EA2D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3AF0C86B29D67C1A28FFB6043385D4A3 /* SystemConfiguration.framework */; }; - F2F6D78FAF78F3E9C0079F6042FB2EF6 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F2144D96047B76445CFC21184EC9A0 /* service_config_parser.h */; }; - F2FD681644D4B1366220BB164D0604DD /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC94C5B9BAE2B14775EA499DE8D5BFD /* dynamic_annotations.h */; }; - F312C3CB23473A2B7C6431B49349C9A0 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6DA410D05FF9B136222B9F0D0A19C3 /* xds_route_config.h */; }; - F314BF13B07E816EDF8C0947C94ECD6C /* errno_saver.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DE4C3B5107632E3D71E08E88B47F9C28 /* errno_saver.h */; }; - F3262161FDA16F39CB60CA93EFD90966 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = FDF122BF4B038C3DAE23472B7EC2006F /* time_averaged_stats.h */; }; - F32D4BEAA63ADA978124D3B546309B71 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2626A7C8244BC1830F80CAB64788D9 /* time_util.h */; }; - F3398D9D85AD23EC60EA16D00A2AC749 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E807A42D134D52C54CC6F2A3641297A8 /* authority.upb.h */; }; - F35923637FDFA53BBDC23378783D3976 /* stacktrace_powerpc-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 67CEB26B33A88C6DDC93A6A9D6C26247 /* stacktrace_powerpc-inl.inc */; }; - F35CA4B1FCA02D5D43D72A2FB664E660 /* aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4E3D4CC02E345C5BD0D5E5FD013CD9 /* aes.h */; }; - F36666FC49BEA1D85ECECA3CBFCF96A2 /* load_file.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B272B3AC437369888B4BEB0E375077EF /* load_file.h */; }; - F367E977D4E4F794A4EED983614B415D /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 176D3E42413213895429CA7ABF70BE77 /* sync.h */; }; - F3955980B1FE396A58C7E1E1EE97722A /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 85467C630EA8DE88330CB36D54EF3198 /* atm.h */; }; - F3A67674FAD9082C0D7BB9A7A7307F59 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E05770E71F657FB048D0F7D4FAC44CDD /* struct.upbdefs.h */; }; - F3B57EFE6438DB5286A54FBBD857A58D /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = AB5C53EF60285D55F87F05F004230C53 /* time_precise.h */; }; - F3BC86DDF042185E6A2988A10B1D0BA3 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 63052411865EABC071586B4BA0935098 /* global_config_env.h */; }; - F3E1014BB721E28485E167CE610F8A75 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B53B3009CC49BDB2753BB8E93BECF53 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3F28CC3663D607E20DBE62DCF2A4236 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F1FB242F75F16071761D1F27A801B3E7 /* proxy_protocol.upb.h */; }; - F3FCF0ACEE2563097DEE0D4B0E27D4D2 /* sync_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = E76A4836D972DD833224C99A523BF6F7 /* sync_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F4113B60B9141E1121C75C7CEEE474E7 /* sha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ABB514FAA54C3281A8E801B225061E5D /* sha.h */; }; - F413EA6964C44D1A9CF983BA929E82B0 /* test.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 26C293EEBD555F0093D25E9338CAC79F /* test.h */; }; - F41A8FAF886C1BD4C7FBADA699038722 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E3DC2819FA4380B3479C1CE4F49175DA /* percent.upbdefs.h */; }; - F41C80CAEB84A54A4F66171F409CE3BB /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 297FC92917D7076EC5381279B860A3BF /* transport_security_common.upb.h */; }; - F425A8FCF4E0C7EC83E2B5F4C1876144 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 5F1EF5E2AA8D4ED34773A9D3193BC853 /* channelz_registry.h */; }; - F42E8BA682153D887F03298AED53558D /* delete_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2738DBED4DD1018F316A2BCC19F191F /* delete_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F42EDF2BA49090DA73DE6BD4C018B151 /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 080DE6EFA8EC19278A62615B0C71678C /* string_ref.h */; }; - F4300E7E0D413502436EEAF2940BAD14 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = A493829C65E21C07D91AF4F87EA6C2CB /* syntax.upbdefs.h */; }; - F436E4A099D350ACD0DD4EC8CB917569 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = CC08A282FD10411FBFB14760A5279F1B /* ref_counted.h */; }; - F43C7A2568038D56B94CE0FF09F9AE6D /* converters.mm in Sources */ = {isa = PBXBuildFile; fileRef = D7A4D4F24271BABBA08D314EB1F8DA79 /* converters.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - F4454A495E8536CB0EBDAF86641A2E76 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F91D2A7725CFAD9D1DA90A801FADB7B7 /* endpoint_components.upbdefs.h */; }; - F44CFDDE798D787718C56C86A9EEFB70 /* annotations.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B5AB5B621FBEA0ED53A252369C31F521 /* annotations.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F45FF26B1453A66ACF53A82DAA833AE0 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BDCD01606BE101721D72F2AB17CB1F2D /* api_listener.upbdefs.h */; }; - F4992C454EF94E5549A409B5B94FB713 /* endpoint.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E34FF44D3B8831D1BC8865E33160244 /* 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"; }; }; - F4A38F2022BFA115135AEA79D9268AB4 /* extension.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 87DCEE445BFC18950D3EA956CD9F708E /* extension.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F4A3FB76AF32B0459C92BE92182E336F /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1AB1800A8ACA9451B945397CA7931C /* server.h */; }; - F4A86B97E582A6B7E685B73F9073439A /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C2050AD2DDD42864B31AC7CF1313B383 /* pollset_windows.h */; }; - F4C2F4A95B58797BAE9517A1B61C2F22 /* completion_queue_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3EE49BD522D8869C70EF8353A9E3DDAF /* 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"; }; }; - F4D51579C33710C8E1DCA2BA187463F8 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 64641CB105FCA242E88E9472F5C43BE0 /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F4D826AE212D7BD7576A3B0B20374CA9 /* query_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33E148A32E81CE02789BD5E8B8E6A2F6 /* query_listener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F4DBCEE18A12CD06DC2E7EB7E5D7AA2E /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E43F67AEE07741EE4D2F439CB32A4D82 /* common.upb.h */; }; - F4E54F3EE5F4CB721630CAC9CB275E6D /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E0AA062F356DE5E81D6DE8A6B65CC870 /* resource_locator.upb.h */; }; - F4EBAC1501F5C675716AC02A81115075 /* sample_recorder.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4F416956D1C0D99E46922CC4EA6A5184 /* sample_recorder.h */; }; - F4F4D0BF4DF9D73FF2801D885C88460A /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B780970491C760B52EC07420DFDEAED /* method_handler_impl.h */; }; - F4F8D19DA100AC5AF1923A4CAF37F3D1 /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 93340BEC2EE5028AE4D77EB7A5353190 /* byte_buffer.h */; }; - F50631152B55802DF6C8B30DC3362442 /* cordz_statistics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2670E9783D257D7E43A3104A953C57F7 /* cordz_statistics.h */; }; - F508400269A7B5390D4C410853DA53DF /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = D9CA3B79A51828D14120773EDA89C3C0 /* handshaker_registry.h */; }; - F5238DFD4CDEF75B31E8E5C86E21E0EE /* rsaz_exp.h in Headers */ = {isa = PBXBuildFile; fileRef = AEAB44A52ACC36D38CC3CF28AF0B2E5E /* rsaz_exp.h */; }; - F548C2690C0191FEA1132676E0841644 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 64CB5BF62892C0E010318D1AD688A34A /* xds_resource_type.h */; }; - F54D372051F05D628AF1FF2FFFA70A60 /* ctr.c in Sources */ = {isa = PBXBuildFile; fileRef = 900CD7FC507E62C267685CB5EE49AA8B /* ctr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F558CA0E9AD5C6903603BCB6183F998F /* eds.upb.h in Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 088F51DD14C05CBC4BF0EDE08728A569 /* eds.upb.h */; }; - F57904A68E84A1CCCC4EE4BFA50D0988 /* p_dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 01DC83CB71CDF7A5E4311BACFCDB6718 /* p_dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F579DE28DFBF3C9E530BC428E90F7D2F /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = DE46969394F93E30E45B318EE4D104E0 /* xds_channel_args.h */; }; - F5812C304C891AF9725C2D4E2E655028 /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = F42F8A9459FA648D94BDFBB529A123F2 /* xds_cluster.h */; }; - F587F730C45D2139E0D80EAB361C79CA /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 400B92186A836269136B82034DD5B23B /* buffer_list.h */; }; - F58F4B29F57BCD42BF7AB0101DFE19A7 /* hrss.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FA2248941B6C9399BA70E437690BF94 /* hrss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F591C12DD334B71E7ADBFDAF4E8BB95E /* trust_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 939004C04998985A7719C668EEBF007A /* trust_token.h */; }; - F5924FA5E18CD459D2078B5005C83D44 /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1B07088A0727FFC2066081EE02A8EC01 /* connector.h */; }; - F5935C1713EDE5795F8709F640DD791A /* srtp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C10ED87C02DADCDA8F7C6BC35FB31CA /* srtp.h */; }; - F5991C539464922495EE44BAB097A29D /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = B9D9F47D97A06BE77A5D159A9B329EED /* event_string.h */; }; - F59D4EB166F56CFBEBFBE46F4451D3F5 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EC0CAF8725E41FF2AB537CCC9C681811 /* filter.upb.h */; }; - F59DBBB6DCFB90439878AD11EA5AE2A6 /* cord.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = F715D3FA7D1AA29064C66D1B95A09324 /* cord.h */; }; - F5A2119448BC3F79F7672E6A3012D76D /* slice_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 396DFEBE30AE4E198AAB74002B3C8CBF /* slice_split.h */; }; - F5B87FA25F58A4BC57BF0AFE19E35C85 /* uv.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DBBDA39D068CC4CAA43DBF85FF6152D7 /* uv.h */; }; - F5BBD4CF1314E6DE9D0A3CA20F544E66 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AD12EFCBDC400DF3A8218708542632 /* fault.upb.h */; }; - F5CF499967153E3DBE2FCDCE3F43BD64 /* pkcs7_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E79E4EA366048EE1E4AEF5E266F4A51 /* pkcs7_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F5DD4AEF5E7D553F38A1F56DB015E006 /* FIRSecureTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = D854381C4F85DC44C055AE41D1BFEDF9 /* FIRSecureTokenResponse.m */; }; - F5F68FDC6C9901C6A6564265B6E212F0 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = F65CF751FDCEDBDBA60DD9E94F92D1BF /* tmpfile.h */; }; - F5FE31C957DE634FDF19429959092827 /* certificate_provider_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = D85C569EC3C4CDADDF6D05C449DD50B2 /* certificate_provider_registry.h */; }; - F6208C5BDF34A58BEF72FBDB5EA8EB20 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D148EE2BDFF3B88B93A22DB6FC96920 /* rpc_service_method.h */; }; - F65426FFA46BE57E134E0CFFF7F7484E /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 13718E78D781CAC908AD69A4AB91F365 /* binder.h */; }; - F65C5546CB44E6B74269632DFDED36CC /* channel_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = FFBE4E46246B71CB25C5165AC1595419 /* 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"; }; }; - F6688BE16F0BEE518077A00F7418C642 /* p5_pbev2.c in Sources */ = {isa = PBXBuildFile; fileRef = A38A47C5FF6941B440544DC542982694 /* p5_pbev2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F66D62F71DC1C8AA68FF62D5C80C8A92 /* prog.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD80B793F358EA6A9BF500CE7CED2F2 /* prog.h */; }; - F68813CFE87E90D032E50FAC4D695EB9 /* uniform_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 22ACE164D2C00A15FE6817EE0DF044DC /* uniform_helper.h */; }; - F69051DB47C800B003E41165DA334D73 /* FIRDocumentChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = 52C8017BD512BD1CBD411D507040798B /* FIRDocumentChange.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - F690BDD2943BDADAB4241FF11BCB5262 /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA0DE379CA2CE743AD2677FB09A2FAE /* rls.upb.h */; }; - F69BF2394FCF3C711A34587028516864 /* p256_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = A10CE7BE687855CE8651F3515B545B3A /* p256_64.h */; }; - F6A30CEC4AD912808360AFADC5B43634 /* v3_akeya.c in Sources */ = {isa = PBXBuildFile; fileRef = C2F2316CD0DC56F88085F05A94197C8E /* v3_akeya.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F6A627E99CE0263694AED50BA7FFC0DC /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D93BA2E1EAFFA2E2E92C9EAA934DE96B /* resource.upb.h */; }; - F6A62C5592834227AF5B317061DBE640 /* digest_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = E8256504B391A133658A9F53E70BF601 /* digest_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F6A8B9E3A53EFA60FD10FD9FBEEAAFD4 /* hpke.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1757E25D2FF46CC7149B4F5779648C /* hpke.h */; }; - F6B5FF603517D07E4C2C0C5AF5587070 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5D5C8068B8E1F69212579EA2A684B0 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6BE565AAAD07BDF97FBADF390F16A85 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 381D7A72344929717C0D4200914EC9FA /* alts_security_connector.h */; }; - F6CFBC40B977F0319EDE544F5B09E288 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 235CC43425366ED60206A650CBDD7AB7 /* grpc_authorization_engine.h */; }; - F6DA64A4522B3E2681D7E91D5EA2CC35 /* target_index_matcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = CF2126D3715D7168FDF9329EFBF6BDA3 /* target_index_matcher.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F6DCDE3B3A919D1BD5944789C2A83D18 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 395811DC5AA530C99EF2FD78EC043A8C /* xds_resolver.h */; }; - F6E6E632F14B54FFEEA778141D9FFF5E /* pcy_data.c in Sources */ = {isa = PBXBuildFile; fileRef = C5F13CBEDBF4289B7B9D1A04082910E5 /* pcy_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F6EBE1555769044B87926B349E8C3351 /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6494D8ED6C32B87FFE753464418D50C9 /* scoped_route.upb.h */; }; - F6F880CFCA2E2E0CA76BC4756D9A3501 /* hashtablez_sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF1CDC13F7412C1746C666002D610E3 /* hashtablez_sampler.h */; }; - F720D6C0988D6180879AD3838D952038 /* prefilter.h in Headers */ = {isa = PBXBuildFile; fileRef = A091525807673B1231450A472D4B1267 /* prefilter.h */; }; - F724264DA50EBBA4D19145A394B74D7B /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 8EF14B3D35E555BD070ABD8E3F6AC264 /* alpn.h */; }; - F72C0C63594D7D30D934F7DF25641716 /* cord_rep_consume.cc in Sources */ = {isa = PBXBuildFile; fileRef = F81B2DEC6F23DA165340E328D390E626 /* cord_rep_consume.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - F730E3757AC29E8181E9D6EB751713C5 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D8B99945B0B084C6C02232E8361C9D /* xds_channel_args.h */; }; - F7346417324985C625D33D833727FA4D /* method_handler_impl.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 1B780970491C760B52EC07420DFDEAED /* method_handler_impl.h */; }; - F7367D5D6BE0D81EFB3AA90AF20519ED /* lhash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C5124ABCF913986F2FBD6E597A502927 /* lhash.h */; }; - F73997EE2149932A199337C97DFCD31E /* firestore_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7509B6E3A393E84102B2CD2D6C28FC8 /* firestore_client.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F758A1E513D75432EDB2BF79AC01214D /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 85CDB0869C1EF72668489A231E5AD02A /* ev_posix.h */; }; - F75CB03A1A4B606CEB63318C864E5114 /* leveldb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71A8C0E6EF560847943F61F7B99CBF3D /* leveldb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F763C6787750B8E3141D52EF150FD0B2 /* mutable_document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55F980E84623602E0204B77CE99A9372 /* mutable_document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F76F7732940F6C191371953567247383 /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 787CE6B6D5330420BF853E6E010ACDE2 /* resolver_result_parsing.h */; }; - F7723623C5DB16EEC2918013FC6977A4 /* hash.h in Copy hash Public Headers */ = {isa = PBXBuildFile; fileRef = 32F61F17A57202CF69FADE3454DF795A /* hash.h */; }; - F7754AB0E7FC1C75CA5E1AC516A49701 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 87B20CC8A728B6D40F4FF620667944D9 /* hpack_encoder.h */; }; - F77BAD718D424CED7B4320D270AFFD42 /* seed_material.cc in Sources */ = {isa = PBXBuildFile; fileRef = E89C97DABA46937FBF097A0108E131F8 /* seed_material.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - F78D1E1EDD611D5F0A34EA2B52B1FA1A /* rds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A4BBBE1B26BB85CE249D843C6DEFC784 /* rds.upb.h */; }; - F78D3D47D8CE08355B58BCD5F77810F2 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 393DA0FC00B49ABF622D54F72B096A0D /* alloc.h */; }; - F79759D7148F2441D55BF72AC7332130 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DCCDDEFBD25A66AC91F8FCF8ADDC6E /* fake_transport_security.h */; }; - F7980689FEA2262BA2E0707989342E62 /* ssl_cert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26475598C62DA2BA400EEF0977CC14AC /* ssl_cert.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F7A93DE4A1A5F3DCCC41E59C59EB971A /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A8399A14109D216FDED870DAF751F428 /* cert.upb.h */; }; - F7AC32E7A7FE53577A9D9DCB999EC317 /* semantic_version.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F5EDD3CFEEC26EF50AEBFE1683C69B26 /* 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"; }; }; - F7B826F6E63504B761E87A797D024746 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 390BDC63537D7CDD7BA077745F6253B9 /* resolver.upbdefs.h */; }; - F7B8B46F7582A2483A4AB80224716719 /* bundle_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = F59C17FA51337D4E1D53DE48D24CFB1E /* bundle_loader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F7C054735F2581A4526F92DAB1C658AA /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3CC9630113A9804C2DDB6863BFB961A3 /* http2_errors.h */; }; - F7C5540A8C76B35CE6E524AB90EE14F3 /* hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 98234679E486BCE9D8751FD1C81A41F9 /* hash.h */; }; - F7CB12842FCF1F8CFF344466FEE5CBB5 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 62582003A5DC7A58FB6C3BCC1BB0C99E /* struct.upbdefs.h */; }; - F7D03C0B3FFE374CEF535C3B0C680160 /* rc4.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD3458F0E0060AE7CAC7A5C21933035 /* rc4.h */; }; - F7D9B8FD2965F70CA597660692130335 /* composite_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A58FF6E7DC626C03C28441DD98EFA40 /* 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"; }; }; - F7E369989B5AE1882B78F41EE5326AEE /* Libuv-gRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A852D5097DE3A16C56B0E8443BF11CA /* Libuv-gRPC-dummy.m */; }; - F7E4EC59417BD21B443DCD5C38F4D6BF /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C9D8AE15FFFB887131033ADAA1AD8CD9 /* config_dump.upbdefs.h */; }; - F7EACDE744D567A1AB5E0091F1667826 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B9D3B1D7D115EDFC90A91EA6CFB2EF0 /* csds.upbdefs.h */; }; - F7F2BABE8DA0FA0E024489E75435C137 /* identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 4779625A715B73E29A8413C645E64F81 /* identity.h */; }; - F81007A41F5DF7EDF825FAD380D3B055 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A1BCC1BD351D2E82C4A73CDAD1E3B1 /* sync.h */; }; - F82D808CF0A0FB872A55819ECD737739 /* datastore.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB970916F21CA2D5729CE8F3C058F34A /* datastore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F833D3587A174AC6681169E8526FFBFF /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 164E3F644881E2C2242E7291223033B4 /* hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - F842805FAE8DB2C72D3131A8937A95F6 /* server_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F7849998A15CCC4FE82E1E692A7440C6 /* server_interceptor.h */; }; - F84DE915B34C81B6EAD38B58F72598F6 /* FIRAuthURLPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 17E6A8E601C57AE36A52B3079F9DCA48 /* FIRAuthURLPresenter.m */; }; - F857995DB7AEACDAE7986B93464F4AA2 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B24ADA12A72D17B8F16CD5021D839E0D /* http_tracer.upbdefs.h */; }; - F859C0292C0DF002107026598A397AB7 /* certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 447FDB694B22D633833151F2E5B3317A /* certificate_provider_factory.h */; }; - F862E6A030DB23CB77E1DAFBA728D989 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A8CCD4CF85DA2D2CF5927AB48A8D078 /* alts_iovec_record_protocol.h */; }; - F870C00613E1022BE957DF602914DC08 /* cord_rep_btree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 948646B1AFF25DA5C7BE174D5E915130 /* cord_rep_btree.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - F871C9FCFC3534F3646E3C04202565B5 /* FIRSignInWithGameCenterRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 13382D730A85BD6B46B67A89B976C2DB /* FIRSignInWithGameCenterRequest.m */; }; - F87E81B451D9692B162294D99B7C55A6 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 051CFB6A3B8577E17C6BA543DE60655B /* authority.upbdefs.h */; }; - F89107E05A4AD09CFDCB8EABFFDAD440 /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A3572014B13719B064E0C0820F1B40D7 /* node.upb.h */; }; - F8987A77BF441DAC8E41834FCCE6B91F /* timer_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6D7217B19C5893A4CDDC16F7325559AF /* timer_custom.h */; }; - F8A318A8F794D72BD2D983ABA0897EFA /* message_size_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B7C21D21FCD4FDC4F74C259991D3440 /* 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"; }; }; - F8B01E8C772707C05C42E42050855962 /* block_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = B1A27515041EACD4431FA1EFEB4B51A3 /* block_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8B191CB20CE20F8A5463F4D03A6515C /* opensslconf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2D9437CE97B4AB49A4A92D1C11D67C7E /* opensslconf.h */; }; - F8C5415C5C9017491183B6833658E9D2 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 484C096A02D4D9A27933DD68418A93BA /* alts_grpc_record_protocol.h */; }; - F8DF00ADE5CAA319A2645A497878DBC3 /* sync_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 12E4771F2C7E5533F2EB5C0B2B1BE64B /* sync_stream.h */; }; - F8F8FCD0B6893B08E3F1EE69EFD58638 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3709609F8752D5A98EFBE135A01FB6 /* xds_common_types.h */; }; - F8F9673F7AC29EE137B6117844D1BA40 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A9D096B0C6CBB57931FEC03C35975E78 /* flow_control.h */; }; - F8FD3FF4A5C4E776AD8D27E4B5B50ADD /* v3_purp.c in Sources */ = {isa = PBXBuildFile; fileRef = F348CA9589917F4EF4379A54EF6D350C /* v3_purp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F905A8D0AE7441017F4E68A949C32A3B /* proxy_mapper.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1703CCAA0723A71572E930CB0369F2A0 /* proxy_mapper.h */; }; - F90695F5734273A6590F7F8C74AB6CF7 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A9A6AE481C213A802D349EAA9F4C45A /* host_port.h */; }; - F90C7548D23CD026F4D333CD8FC34FE0 /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F7B89AD70178C95E83274ED63BD29F6 /* stream_map.h */; }; - F90DB27667AEEDCADC875ED059B0FB73 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 915C738A6579A3F2F59625F24ED5A04E /* http_uri.upb.h */; }; - F91EB189D6986127D986749FA8A21966 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80F1561B81C70A802F7EA85B888BE9DE /* listener_components.upb.h */; }; - F921B7DACA0BA267FE50DFCD21404B84 /* cfb.c in Sources */ = {isa = PBXBuildFile; fileRef = 478F7FFDAF0AD48E7A8E12867769CA73 /* cfb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F926A80EC645D764B5D9B541E41DAA3A /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = B9AD17140052F8C4B16D097734D5F0B3 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F9505AF7B80AB691BC679F185DFD12A9 /* grpc.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3B40A5FB78E381513B04D30F0F3DF49E /* grpc.h */; }; - F971F00294CDC717EA4FB4B0E1A7A249 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 544621CF0734E8DD6CD34F8DE92591C6 /* json.h */; }; - F97C9068059D68F6A46FF0A67B767F35 /* salted_seed_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = AE02BD5FF7FD18F98A8A00A695F4E7EF /* salted_seed_seq.h */; }; - F9A7BBFCE0FF6E3169080BFA78004679 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C7C80B9D1D22E6DFB41051C9CA6E49F7 /* router.upb.h */; }; - F9AC9C60362056D96BA1A0F2FC20EBB6 /* stat_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C8EB784B0ABDB3DB9B7F1A8CEE65174 /* stat_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F9B8104C0959E34B99B2961BB2BAF4D3 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 1089C2A3EEDC66C119FFFEFE90A42246 /* table.h */; }; - F9C1A616287C931092407B3D86C3AAB1 /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 23B1C5DB10E572DE6A04CD75C2B520C4 /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F9C8C68C6D1434789F064E98C71F9C78 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2511ACDEA600A7860F4479462B373DE2 /* grpc_ares_wrapper.h */; }; - F9C947C8CCF5BE562AEE6AA6EAD89E07 /* socket_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA203005E2A8CEBFA37A200D2ADED6AB /* 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"; }; }; - F9DC27B0CB1DD9926123244CBE19910A /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 14FB3AFD1D96EB8865F674ED16F8F9BC /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F9DED8F3311ABD5134300B66D8D2CDED /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = DFAEF6561E267CBD51ECA0CB30CE1C7F /* tmpfile.h */; }; - F9E385D629B329BEDD2CFA6C6D40BB64 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DCB25CC4DD1BA3BEE60D51CF3DCED63 /* resolve_address_windows.h */; }; - F9E3A871BEA33C5AE178156293F2472A /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B301FF6B0D0904B8E79378F6BA801C /* context_params.upb.h */; }; - F9EA5B3A4D37BBFE6EC321BF25DAE18D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */; }; - F9F97FED871CC0142C6D749F7E240332 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 431E3E1E1B3E81C65E6542E4CBBBC796 /* hpack_parser.h */; }; - FA20C126EA9FA533B7874F9F96106DB0 /* alts_handshaker_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1CF1B07EA145273F6E0E38F0F8A8525 /* 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"; }; }; - FA36AEA9FD177D243F6BF29C6C391532 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = E8248AC1B424553C75E095E2F0A5A7F3 /* mutex.h */; }; - FA625A0B9C5B9767176A44087D448BF9 /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 09E52E93BE86560301BEE49508E9FB1D /* global_subchannel_pool.h */; }; - FA66278AF6EA777D96842FB76D5E695E /* p256_64.h in Headers */ = {isa = PBXBuildFile; fileRef = A10CE7BE687855CE8651F3515B545B3A /* p256_64.h */; }; - FA6D75E61786460ABC8A5EC0321B3181 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 10641A04E2D53ADED2BF610738EF0077 /* rbac_filter.h */; }; - FA7BEC7F77139DAD4EE86D336EE6AADC /* x509v3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 58CA1261190A47476BFFD6E6D5769A99 /* x509v3.h */; }; - FA7D30528206F9454801A8C1B42CFDF0 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB4086DE19DF3D4B5EA8E42A0AE451D /* call_combiner.h */; }; - FA7E001E116268A5965FC12CA0A13F25 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 311249B28A37ADB26D2F8496EBE1606E /* percent_encoding.h */; }; - FA8606FC04A2AFD458C84AEEED52C973 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 22828E6A75C6D54E0FCE59C4261CCFEA /* lb_policy.h */; }; - FA97F9EB8CE877D4BC1E390FB3A03C6A /* bound.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9529D7F9B12E9292160BCBEDCDEC6DFF /* bound.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FA9E11DD8774BFA1C877B08B1CE97C1F /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FCFAECC0B9457C5990B27906BE2E680 /* outlier_detection.upbdefs.h */; }; - FAA15B536A6BA830B9439D1ABB41F629 /* tsi_error.cc in Sources */ = {isa = PBXBuildFile; fileRef = C8C6CD11CED6B0BDF15944727972ABB8 /* 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"; }; }; - FAA732D46123FB4DDE8F6536F336EF86 /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 61A3C0ACE1DE0499AB65D2648A3D2764 /* string.h */; }; - FAAA3E8BF6F6E08E6A66A7B946C73CB8 /* inline_variable.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 47AAB4EAA21F13C8410B01D184CD9981 /* inline_variable.h */; }; - FAAE0BCE9A2D6BEEF720D81BC22857EB /* listener_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A3288A87CEF66B021246F5A3001A6365 /* 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"; }; }; - FABA5FB8C04C06A74798C0F47FFC91B6 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 53066434EF4AE66D061D6B1DB55A75FC /* api_trace.h */; }; - FABF7876128BA0B844E8E13698B019B9 /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 3A9A604D130EC6035AF7272F56B6B509 /* wire_reader_impl.h */; }; - FAC7E8A3101FFC15D623CBA5361196EB /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 413F45D9A1C0BF1D6B4AFF9FEF1236AE /* sockaddr.h */; }; - FAC89E3D6D4D2CB9778D5C89AFD5C977 /* randen_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 572C085368F67605A3C1B0315F611E38 /* randen_traits.h */; }; - FAC9F0CFE68CAC5C2E2B55D239F5875A /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B19703192BDEA80C0D6167C677F1992 /* FBLPromise+All.m */; }; - FADAFD19A2041C1FA2B17CD549D8A06B /* e_chacha20poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = EA252865CAAACF7FC55E8E8B86F8097E /* e_chacha20poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FAE26ED9946209EEB49EB10AAAF68D89 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C1060B2E162C905C627700F8894361 /* channel_trace.h */; }; - FAEA02AD107EE1C5A9EB1E3B8285C9AB /* filter_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = DA33895D36C435FA4BC565AD172DE4B5 /* filter_policy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FAEFD67BDF6F293A1713E39D32436E8F /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD1A765EF37CB0AA9CD55D346E5DA33 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAF11D23D572ABE324FC5987A0CED3F8 /* hash_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = E95CAA6C502E1AF1DEB32A8F1E108ED8 /* hash_policy_traits.h */; }; - FAF4FC2A2BE3BB85DA87072D7B1B31CB /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 50F383CE603CBCB82B2296FF8F0C9C88 /* alts_credentials.h */; }; - FAF5725C9AF02A92A613F9F0F4790FC5 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 846BB8B1516FFB4ACEB09BA01E3213CE /* status.upbdefs.h */; }; - FAF82E9E170224773E01041048AD13AA /* sync_posix.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8ACFE6B00DFFBA1DE88A5D10C90D6ACD /* sync_posix.h */; }; - FB05AB233EF346B3790555DA46688337 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = BC089CBF220AAA95F653C56DBC6E785D /* client_interceptor.h */; }; - FB124F984FC67B77FE67E811AB11C324 /* interceptor_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = ED93ECD107BADD0ADC249CD6139437FB /* interceptor_common.h */; }; - FB143E1D7FAB91466652A163C2074914 /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EDFBD28B8B0233E8BD26BDC0EBE44644 /* timer.h */; }; - FB1509F1EC881189627BC64D8E14F171 /* tmpfile_msys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66BCA1F64D4618F6A075CFCFEE4C3CC3 /* tmpfile_msys.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FB165B0D48563644B8979E605074F445 /* xds_cluster_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A0303B9017479130F16A465F2F04856 /* xds_cluster_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FB315AF2B49994BF3800B755B51743CD /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1E94508EB4E03B4A7860CCBC54B098 /* error_utils.h */; }; - FB33F9577A116487F868CCB6FBEAE560 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1EF5E2AA8D4ED34773A9D3193BC853 /* channelz_registry.h */; }; - FB41D44E392599680CD9CBC1995617AC /* set.cc in Sources */ = {isa = PBXBuildFile; fileRef = E598D5945193EF65D52D21390E286354 /* set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FB619C70CE05919DFF27629E8A3F4D38 /* hash_policy_traits.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E95CAA6C502E1AF1DEB32A8F1E108ED8 /* hash_policy_traits.h */; }; - FB66E2E54697DCF76B15CF1BA481E542 /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2F398789DC69B60337CFAAA89F9C2C2C /* combiner.h */; }; - FB6A34E27CD99ED5FFBC9E6B5B3E0F41 /* tcp_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = D42394AFD21771B30F21D48CC55A5C8D /* tcp_custom.h */; }; - FB6F11FA0354E9E4EABBA1871B4FD4F1 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 93AABB1283FC0BF0C130CAAED5CA2E00 /* rbac.upbdefs.h */; }; - FB75D2319DD64400BF881885FA30D95B /* x509_d2.c in Sources */ = {isa = PBXBuildFile; fileRef = 151D3117B5252D9812C5A2E2ECC77483 /* x509_d2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FB798E63F31592C9F33FB31A60237033 /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 38844297584C3846ECDD30F16E3104EA /* 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"; }; }; - FB7FCCAE171A9B6B5759E7E78D14E76F /* client_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BC089CBF220AAA95F653C56DBC6E785D /* client_interceptor.h */; }; - FB83E072A9FD28EAF8E00DB0D52F0499 /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6247254B867F3497DF7993E91C7A6E /* memory_quota.h */; }; - FB883DB795F2DAF6898F5AAEE3F9F7BB /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 87692D90792BBDDC382E34A02ED92B4E /* orphanable.h */; }; - FB8D263B58D36BD9D632AE39C7F045CD /* numbers.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 069431580008CFFAF0D9587C310BBE0D /* numbers.h */; }; - FB8E84851122BA479B964EC0B7DADCB6 /* str_cat.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 205B82C2AE7FB26CE9CC8CABF4CA119C /* str_cat.h */; }; - FBA3F23499B6520E961C09C44D6A28AE /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CABDE50BEA39C96AECB3BEEFDA031110 /* overload.upbdefs.h */; }; - FBA6537E9B780288BF3E12A638E8ED19 /* digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 028EF34AE84526E6C26DE38242962783 /* digests.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FC124D4265312A16EDC2AB799BA0ED67 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = B52F2B0AB87360DB9AC86BA63FE8E5C2 /* atm.h */; }; - FC1A62BDA6C3B3FBC2D21677675B746F /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 6AEC713274B5BA795D30601AFA25180F /* tls_security_connector.h */; }; - FC1F197AFD3E9E2C32BFD4A5123AAC2D /* document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F7C4BA109A1D722C7E7DD56A694AF4C /* document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FC2576960548E6360AFA17966437A242 /* binder_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 021CAE0AF549BDF7E56675BDE315D6F3 /* binder_credentials.h */; }; - FC2712D35BB235A480EB420ACE592EFC /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = C65F4480E8AAB8456693B6C7292E8837 /* FBLPromise+Async.m */; }; - FC2A7DBB32D75DF5BBC7E924F0349828 /* ossl_typ.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 11D542BDE4D613A4E0F0C144F1E103AD /* ossl_typ.h */; }; - FC35EF9CBB25D8FD7C4D13CFD821E9F6 /* frame_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93552E3D46EBC5AC5E6FD12E94BAF86A /* 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"; }; }; - FC3E007D2305F204A79C9F6FBF0A0B0F /* local_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78DF3922EE4BEEE03E14216231A46B18 /* 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"; }; }; - FC40CCE8857160F5E87EA4E4021D1EC1 /* FIRAuthNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B4C87F1BA0D825360C1186ABDEC1741 /* FIRAuthNotificationManager.m */; }; - FC59EA6D3BE8757920DA3DEBED9C2556 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 26132B0505FD1F5C6017C3F830906A0E /* ssl_utils.h */; }; - FC7582546FB4FDA0CE3B08286E18B38C /* filter_block.h in Headers */ = {isa = PBXBuildFile; fileRef = 072F84CD6CCF8A5485861B918443B04A /* filter_block.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC7A8A78CA7EF8016D0DC47465C76EA6 /* hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 42B03F2B5C06689922427E4BFAD136C0 /* hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FC7BC3422319D382F313216C7837F800 /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E3DC2819FA4380B3479C1CE4F49175DA /* percent.upbdefs.h */; }; - FC895B924076DBCC493D0F7B613EEFF2 /* log_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 015628D7908A39BCEDAA4DC667A59F1B /* log_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC8ACDFF8B1468020F7D4513665837C0 /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = EF8585BAC73F56B2FF65C8BB3C7A5C5E /* completion_queue.h */; }; - FC9C546FDB0BF0BB744C52DE2F5AD97C /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 653A06BD7CAB74B4A8C25ECCC89A3EBD /* accesslog.upb.h */; }; - FC9FCE8F02862D6CD8445F42E5E9708B /* max_age_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E23B213AF99F8385AC041E7DC39DCB3F /* max_age_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FCA196D9843ED0253BEFEC85D6748EC4 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 173E5A4C450048B6C6C6B302691C1974 /* value.upb.h */; }; - FCB73BC728C4ADA73BAA517F686E6C36 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A4B256D7B81123C933D00EEB5FA81F /* tcp_client_posix.h */; }; - FCC994633A9D6B4EC0BEECD163E8EF17 /* variant.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 44039DF72B4BF0B25C130FB6CB5D4EB5 /* variant.h */; }; - FCD3E1B99D262E029CFC6D61AC99CAA0 /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 273D56E4F37878B7A5AA1B034B4129CD /* status.upb.h */; }; - FCE131C028B1C0E0274A8012B030342A /* xds_channel_creds.cc in Sources */ = {isa = PBXBuildFile; fileRef = DAF4BD13C4CDBC3FD9BA2324E42B1467 /* xds_channel_creds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FCEEE303402A3585A04B6C3561A027BF /* FIRFirestore.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD01CAAF1CB8E468112CB41BFF20BE1F /* FIRFirestore.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - FCEFF74B35BA223E4633F675252BE10D /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = D9510ADE57176A17E624D0973FBFD810 /* GDTCCTUploader.m */; }; - FCF733B25BEABDB648DC3FEC7C6BE534 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = 645634BF7DADAA8AEB083791543CDE1C /* http_server_filter.h */; }; - FCFC683C47A6B4A5EA5F2A68D773782A /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2ECE464BF00D647D8E8BF568F0CFEBCB /* block_annotate.h */; }; - FD00D5D533B54912B8A256752A09782A /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 0C4D1B3173B704482EA24D9558A28E8B /* grpc_tls_certificate_verifier.h */; }; - FD0D88C702A2AAFC553CA838CAFC6FC7 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2C525FAD66DEDFF64B68820F9343DE /* table.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FD20B0C7F814A33929A5674850575421 /* spinlock.h in Copy unix Public Headers */ = {isa = PBXBuildFile; fileRef = CC0BD34C39553239FE70DFB4FA7F6483 /* spinlock.h */; }; - FD3A7A2CCBC410FB2369396DEB603AA2 /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 07CB71535C746BAF1620AA034BBDE774 /* endpoint_components.upb.h */; }; - FD4585C3AC58E0C4ECAB8E9B2239995B /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CD9035BC8BCF884010568F764CAC6565 /* sockaddr_posix.h */; }; - FD52CDA7A910A96A4AE0EBC917DCA80A /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C7E66F1CC266330DE34F06433B94CF /* alts_frame_protector.h */; }; - FD56E1F9BF05D8644B7CCFD417B7FB0F /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D4B26A4EACD684AC489DECF84D7AE37 /* format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - FD6D37BA9149E41AE6DF5786943B73AF /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = EFDB94C4488339479A5FBB96F4A77AB2 /* struct.upb.h */; }; - FD7BB710DECDCF17B5FF336111E5B635 /* hmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6A3CE590B9AAA81BD046A8434120A69D /* hmac.h */; }; - FD900CD25DD00716D9E3D2008E5E7E83 /* google_default_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99CF5F7C50B01AB89627F004A27781C7 /* 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"; }; }; - FDC6C4BEC185635B007189BAE8284602 /* hash_to_curve.c in Sources */ = {isa = PBXBuildFile; fileRef = FEAF83A65BEBB3504AE2E52098A98E84 /* hash_to_curve.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FDCFE8D186D074835CAB6A2C9F74AEDF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D58712F06503B873DE8C8927559B158B /* internal.h */; }; - FDD247E7503C861B6DB7FDF3300D15EE /* explain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C340DC74BD921676B8BCF0EC7E201DDA /* explain.upbdefs.h */; }; - FDE736B937C1AF4947D407F069C4CA42 /* FIRFacebookAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 47F9209A1375FF6B6C5B0867AECC73AC /* FIRFacebookAuthCredential.m */; }; - FDE95DF37639B4FC55E545FC2962A73E /* binder_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BCEBE2AF0BE7EA1D917527508500E80 /* 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"; }; }; - FE0067842689E74C556768BAFA1E5A05 /* FIRAuthErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = CA432932CA7C470A3DF820BB6360486E /* FIRAuthErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FE01D1A1825E8B55303F33A6AA31FA3C /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B9EB8511E9EB7D9FAEFC0E02897333B1 /* custom_tag.upbdefs.h */; }; - FE029AF88C341272A70EA1D9C2BACD9A /* proctitle.c in Sources */ = {isa = PBXBuildFile; fileRef = 06D7201BBAE66F5F5EB93E1C26B1A9BC /* proctitle.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; - FE05DE96091BAFCCBDB990086B1D29AA /* backoff.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B9A15C3F0F169748196B13B3AC2D0AAE /* 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"; }; }; - FE097012FDAD11812F98BFE9258F9956 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 248A796EBE99A412DC59BE302B43CA0C /* channel_stack_builder.h */; }; - FE0B2D961C187173E22A191B0F15FDFD /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 802D64B40B4B0444252CC7C35097323B /* call.h */; }; - FE13018F9D662DC9E2272A49DF1BA90B /* create_thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3473FFFF8960559F72A9FB33E8906BDC /* create_thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - FE13B2C55D8497AF7CC53257A32F4463 /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 88B8EEB34934317FC62E45B56F0DABEA /* node.upbdefs.h */; }; - FE15B380C4C9B421E74EEE0A792DE9B4 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 972561565E92A4BA5A5C6C1509292AD7 /* 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"; }; }; - FE30207A96CF37836ABF66D2B3BB53C4 /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E890972A8A84EF7401755010A2EEE5 /* error.h */; }; - FE3C27108D54074F096A4FBA51232BA1 /* pid_controller.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 572E01E608361DD0DF7B1AB2C7BE8447 /* pid_controller.h */; }; - FE4CA7398410B110C5410ACE7883C74B /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 976C5F9FD1C0DE156064DEEE69394B2B /* ssl_security_connector.h */; }; - FE50CE714205EA5BA09D17BF7A631881 /* context_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = E7B18BEBE462292C1D1AED6B07156D28 /* context_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FE5D5564A10D13BADB650751C7C6DE25 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F91D2A7725CFAD9D1DA90A801FADB7B7 /* endpoint_components.upbdefs.h */; }; - FE67D247BDC9BD25B3170080A574ED64 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CE64C918297E52F0F66F10B8F140BF5 /* FIRConfiguration.m */; }; - FE6C956B82D88578E9F426B43F67523D /* mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8F118AC86E9E7EBAAEBFF0ECFA062D /* mem.h */; }; - FE7E6CA214928B89C7A4E78C1AEA3B2F /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ACFE6B00DFFBA1DE88A5D10C90D6ACD /* sync_posix.h */; }; - FE8E73E481FB66F1E82F6EAB86E9B643 /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DFAD14B32EA7BF53E160C42E43D50DE2 /* ads.upb.h */; }; - FE90C0F3EC15D5CD616E61CA6EDBEBCE /* memory_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = E7F1B8E58D1581F110C3B3FDCC04ED95 /* 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"; }; }; - FE989BA3A961210F9E073FC9BAC99C8D /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A732803E8CF1E8DAA46F6404CC27507E /* bootstrap.upbdefs.h */; }; - FE9B1DC6C5BC2724C54360E8061E276F /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C31858E4515A83E1F4971BB4EFB1ADA4 /* value.upbdefs.h */; }; - FEA567697DCA178C52EAC90E790AF08C /* proto_buffer_reader.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FE2A5D385714451F620936B2F23E9EF3 /* proto_buffer_reader.h */; }; - FEB39315C4FEF887FA5A00E3CEFBAE1D /* fork.cc in Sources */ = {isa = PBXBuildFile; fileRef = 171BA3B97CD6CB3ED48D6A2E0B877CFF /* fork.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FEBC97C576A4B506A5713E1BF95C390A /* x509_v3.c in Sources */ = {isa = PBXBuildFile; fileRef = 2EDB2F167EADB2E8637A3DA5B1B162F5 /* x509_v3.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FEF68C9B350B3FC949D3E548CBB91258 /* arg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 600C85A3414AA472DF15EEF665CA4872 /* arg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - FEFD316603FDE2E1BA7641AFCC8AFDC4 /* descriptor.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A7C0AC51D89C96C1B03EB8A29E743630 /* descriptor.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FF0483AEB78D1224D0726CB14D9731F6 /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B13EBBC179E790092217B7A4731EACC6 /* http2_errors.h */; }; - FF095BD48EC4B13E12E208DAABC78275 /* ec_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E107C47ED42260DD000F5A0C92FB288 /* ec_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FF15065F4A661557B3465F8DB6660C7F /* discrete_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 9897228EF3C68866C58B48DDA6C763E8 /* discrete_distribution.h */; }; - FF2AC3A6920DED76841318F5D08FA71C /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C05435E731F294186DBDF9A1C86D2B /* socket_mutator.h */; }; - FF2F692EE417AD36E3B6A4395F8355EA /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 61F5FB0A7D8F47A97305C64CC2404AB3 /* alts_tsi_handshaker_private.h */; }; - FF3551090628C99A09DF5984F4CA551D /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 98234679E486BCE9D8751FD1C81A41F9 /* hash.h */; }; - FF413A003F1EBF05F077CADECBEE343C /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB278426E730FA69DD5BC8703BE4ABCF /* udp_socket_config.upbdefs.h */; }; - FF56EC2F48F426BAAFD3C629C9750C91 /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = B012F97C2E9581291445922A05D0E52B /* iterator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FF5E4F3C5459682DF8F06A7DC531B5BF /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = F15C801A0DA65B1D98130F7A0EA0A48D /* service_config_parser.h */; }; - FF82EAE134AD84427F919E60987F8E27 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC5941767E8FD037EE9D502A9F3EF80 /* client_interceptor.h */; }; - FF87184562BA5C72D6A87FC5F249BE5B /* health.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EA044D27F2CFCA94044FE2FE079A4C86 /* health.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FFBB39EBB8F7A1E785FCB279831028E3 /* ostringstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = DE065B3FF36AF498B88D7E0451533BC1 /* ostringstream.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - FFBF3A8CC29C1EDB67710BBE43BC74D4 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = CE40B2D54E116F757C325DB401E6A7ED /* subchannel_list.h */; }; - FFCB093857A463744CDD124036F0B569 /* create_channel_binder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E8BA8631E8E3418C7877A784E5394DD9 /* create_channel_binder.h */; }; - FFD095BDB9CC441CFC39C2DDF62B9684 /* pollset_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 738018E185B998882FFF2C726F216913 /* pollset_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FFD4FAC41702D18AE9511686A3293ECA /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD52C1D89BE68534B3058B5C01D5E70 /* async_generic_service.h */; }; - FFE4A41AB1DCF11B977EDB29E7703462 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5B3005DDD30B2745CCB8DD7D6C5A10 /* channel.h */; }; - FFE4E1F50F23A0C84E2947358D0789FB /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 5934436C32E7BA87C0B6BB29A4BD77FB /* address_filtering.h */; }; - FFEBF6F0FC800E0C250C87C46EEB0F8E /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B792610F189EF2F180F4F1EF110DDAC /* map.h */; }; - FFEE19D8B2DB2635B8D29ADA64122F55 /* optimization.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 3C217BBE0010EA2018747A49C2E09B16 /* optimization.h */; }; - FFEF3582D73860461DCA6EEA6833DE20 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7B40B1F51FF6B7F02B55E11CB5B8B7F1 /* file_watcher_certificate_provider_factory.h */; }; - FFFB2FA3A20C849FBB9ADA7D634375FD /* basic_timers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9592C8F1871303A56760B4709A60B134 /* basic_timers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 001E2C74BB44F61BDBC0EE86A1C33C03 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6E3475A9594FA195C20D959FE7D9F1 /* channel_args_preconditioning.h */; }; + 0025F7E0BD4EA6DC01E8ED53A6C9394A /* builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9617ECBEA3D046DEA2E92E7C19AA772A /* builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 002BFF7CD40104E01FD4133578D498C9 /* cord_rep_btree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3802DE7DC9ED21508FB4D808334004E0 /* cord_rep_btree.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 002E779779346CAF8C94517B0AD147CE /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 791B1A7CFDA66689702391888EBBCC2F /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00636FBC8CB53E2C99D007C89D7EEA37 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A7FF794D74680E79DDB3AF9D3C8634 /* alts_grpc_integrity_only_record_protocol.h */; }; + 007D479DC405A14BBC2CCC302CBDE09A /* v3_pcia.c in Sources */ = {isa = PBXBuildFile; fileRef = BCF944E923AADCF9C303E3ABF28E801F /* v3_pcia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 008040BCF18E212053E27D82DB74C356 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC27C685ACBA0821D33659D7D62D512 /* grpc_library.h */; }; + 008447E0A5A7F9420E5C105EFF7C2BE3 /* threadpool.h in Copy src/core/lib/iomgr/executor Private Headers */ = {isa = PBXBuildFile; fileRef = CC59AAC0894304666F3DB450A030C448 /* threadpool.h */; }; + 00892A503AB5FF75D23001FEA9CCBAD8 /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B033A1AB06994F5A86D4D7687680540 /* interceptor_common.h */; }; + 008940C05007BEE09392B46A228E5539 /* sdk_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 8601D64811212FA8C779850E369241CE /* sdk_server_authz_filter.h */; }; + 00A34551F5345275F5761C9DC8277782 /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1B685E3D71363DC21693DBF44033EAE9 /* bitset.h */; }; + 00AE4D7FE385E77D0090B0DCA68F717B /* x_name.c in Sources */ = {isa = PBXBuildFile; fileRef = 600211F57CC3134EABDFD8F849C976E8 /* x_name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 00B20E557FB4C8C5FC0BDBAC1E09668F /* cpu-arm.c in Sources */ = {isa = PBXBuildFile; fileRef = D109C362EBB7E18238A2CAB8B62D6DE2 /* cpu-arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 00B360FD8703C3A3734E8768151DF69C /* grpc_security_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6EAB0B70F43AAC2C4F021C8D82A9C9 /* grpc_security_constants.h */; }; + 00B609633DF1783C1354E6BE30CC3E3D /* str_cat.h in Headers */ = {isa = PBXBuildFile; fileRef = 5742684EC1615FE2F7E77176288E43F1 /* str_cat.h */; }; + 00B7127D0FF1B6CBD775072A074CC207 /* stacktrace_arm-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 91E64A129C1D35AAD4034428FA45CD9C /* stacktrace_arm-inl.inc */; }; + 00C1D72FD8FAA119B0C144C45635095F /* field_index.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1F691DE2C4B2EE2078D5F5DDB7C8C0D /* field_index.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 00CAD21F81DAD6BDF4800CCEEAAD5A86 /* poly1305.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E43618434864864D909C372449EC90EE /* poly1305.h */; }; + 00DDDCE4C2E8BB0968F5C7849464D18D /* internal.h in Copy crypto/fipsmodule/des Private Headers */ = {isa = PBXBuildFile; fileRef = 85EDAE58A85DB0EE87E186CCCDF2E473 /* internal.h */; }; + 00E4D565A5528C626FFA38F308776686 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C86B60C37497122EFA11C28477DCA0D /* slice.h */; }; + 00EF6F83C91D673DAC8C1F6E15E3DA86 /* GDTCORUploadBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = A393650CFC4AB01137211216586BB17C /* GDTCORUploadBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00F94AEF53F6F3AFDFC7DF69F2910AD7 /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 4499246A540AEF224C151AF576A8A51D /* stream_map.h */; }; + 011040D628B16F428F950154B6A51A40 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E5649426DAF95BCF463ED454EC04582 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0111C9BF97029D4F6277D51B53E82CA2 /* hide_ptr.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7348FD04A460077BA76DDABEEB8593B6 /* hide_ptr.h */; }; + 013D1655D83CF04CFFB20086AA0CD3CD /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = D67FF6EDBA9EB3C5C4A871B7FED5C7B4 /* duration.upbdefs.h */; }; + 013D772A418C47A62E8B4C0A50B8FA8C /* pmbtoken.c in Sources */ = {isa = PBXBuildFile; fileRef = B2B6CEAA241FC237B879B1DE6BB91B5B /* pmbtoken.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 013DE42876C2FA1E83F54567D8DE5056 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4EA332B4ECE89650652BF5BF5C72B0 /* node.upb.h */; }; + 0142254483E247C4764E1A9D64E2FAD8 /* ecdsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 52CDD63D0B814F0EC4F09A12663A1456 /* ecdsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0159FF8D938566731AD86DD077FBC540 /* write.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = BEA8D6B766B51703EFDAD7D88F25209B /* write.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0169E5C44E3526341339FAC05893B11F /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 32F532589F28D3D46227FCF234D9B056 /* FIRVersion.m */; }; + 01715C52F185EB79E4F0594ED6342985 /* slice_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C37F3296F115E675C5B32B6D543182 /* slice_split.h */; }; + 017E7CB078761AF7914E82198AC72D9B /* FIRResetPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 424FAE9ABE662E2041DF2DD341DC229E /* FIRResetPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 017EA3313C914AD7E2B6B02E2FC7A0CB /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 8F29064F2D6A013195064F0716BB3D89 /* checked.upb.h */; }; + 019087DEE4AFF492164DB113B8CB2BA5 /* options.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 25E8F8CA9D47FBE4D02A871FA5C28366 /* options.h */; }; + 019434B16C6051CCAB49ECB4AF005CAA /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 384744E9A7CB5EB7C59645E755F1DDE1 /* FBLPromise+Any.m */; }; + 019651482D6C640E5D2D69B52E201EDA /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9BEB4F172D8FEE91AC0AE8B5E13C74 /* pollset.h */; }; + 019A8BEE6BC6D850DA58D4B96403D9CB /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA469C5A2390D89F888254BE32C63D8 /* deprecation.upbdefs.h */; }; + 019E0ED6D22F3685E47A48383CF59FDA /* xds_channel_creds.h in Headers */ = {isa = PBXBuildFile; fileRef = 750F6C4D528695305EDE1B157BF14683 /* xds_channel_creds.h */; }; + 01A47F62A6F0FF2F336DDDF4235FD7C2 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = C1C13ABE79DFFB8A1B66FDA6EF6E509E /* grpclb_client_stats.h */; }; + 01A53732AEC615189963A3BFE06EA56E /* sync_generic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2AEF8D669655BA0208EFF9CC50D2E500 /* sync_generic.h */; }; + 01A9FB60EF0A296E3BA3F91A251D5039 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 149990618120ACC66DAF53C0E2D490A9 /* init.h */; }; + 01AE59E4221AFE4BC6482C90E8F90C26 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE9C33B7249A91C26C6615344F3D91A /* closure.h */; }; + 01CDA015170FAB6CA60AF83D2182FD52 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 281A84F8DB9CB877F887499F64ED43BC /* xds_resource_type.h */; }; + 01EFC601A9EBE7AA385C49B6AD5598F6 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D28233D4CB29F7EF88CDD713352D611 /* route_components.upb.h */; }; + 01FA1E429ADB95CA9ADEE23DF4968995 /* connection_id_generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C56AE9D896B83AA75D0AD32B2567502 /* connection_id_generator.h */; }; + 020FB3543104C01563BCCA25845CB391 /* uv-common.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8CB59C5A9A17D79DBB88D695B114CA39 /* uv-common.h */; }; + 0213D2FDADA107F3672599CC776F8955 /* v3_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = F0900F090B807817E6695C165EE4DBD7 /* v3_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 02431038F06E5F5F2C190804BB44F3EF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 0245F68E53000A51D68A865BEDA0358E /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 751518CFFD5287DD2EDA4424BECDB6E2 /* frame_ping.h */; }; + 0249A722E42889524B902747F6532583 /* secure_channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBB0D9B099F6E472C3D850C757605ECC /* secure_channel_create.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0249F8D8006F2AAB4AA4992D0C478D54 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 09CA805890B9FB97530A75769790659A /* status.upbdefs.h */; }; + 024BF2FAC16FB5721ABC1A6E41785E7E /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3877C2FF7363C478318D1570ECA4AC01 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0257811EA7CF81CF392380EACA4C092C /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DF2F603DF81AAB0CCDCB04B75162B522 /* endpoint.upbdefs.h */; }; + 025EE8FF0BDF03CDD20C0AFB36219352 /* delegating_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 82F03B3AFF5A629FC564EA968D93C103 /* delegating_channel.h */; }; + 026349F4EB9A6F517B7C672C1C99C661 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B1DDD57E91967F8567B8980146F3FF44 /* backoff.upbdefs.h */; }; + 0274658DAFE463DA51B7910F2C1D1891 /* pem.h in Headers */ = {isa = PBXBuildFile; fileRef = CD38C659AC4C361C642DD18142A6EFB7 /* pem.h */; }; + 02862FB29E17602DB029255453CE4255 /* text_encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 3780C86B2D7E7B1F9D078392B213D9A7 /* text_encode.h */; }; + 0299B47D70D3F44EAD199BC07B5F35F6 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B1DDD57E91967F8567B8980146F3FF44 /* backoff.upbdefs.h */; }; + 0299F29BEDED41F193058F3AA367789D /* alts_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2A907CC6D7933639291D149B0A7CAEA5 /* 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"; }; }; + 029FE18E39F8CC29400556D976E985BA /* prefilter.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 2C255764C963350E4763406C1D855388 /* prefilter.h */; }; + 02AAD7D9EB9F26E2D0280C075437FC48 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ABD0DABE1780A68EA9BE5735E6DD0B48 /* pollset_set_windows.h */; }; + 02C774E1562FA19E759AA72E28B2FF4A /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = DBC481F7767DD342D2A38E88DB0DC061 /* connected_channel.h */; }; + 02D27B26F08DBDFBF0B0DE0F5729C982 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 843B10F6EE0003084A4E8FD8070FD47D /* socket_mutator.h */; }; + 02E21B86B176A2CCD507DB74D8383CF2 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 399E51C93DF60A489E484E4EF8386834 /* tls_utils.h */; }; + 02F33A1982AB81DE47F184FC6F09C4D2 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 29A14B79E189E7C160640B4B103FC4C9 /* value.upb.h */; }; + 02F5AA72413D7BD17814730F2E955490 /* queue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1526622BBE214154302C8B3AA42F3B6B /* queue.h */; }; + 02FA85D8FA8E787960B01BE2052023B9 /* malloc_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = B931188CED9DB2CC9B4DF75D63AAAFD3 /* malloc_counter.h */; }; + 02FD06E0935CAFA83B9F62DC014A49B7 /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 9BC200AA7AEEB2C4D0CDAAEB3E00FD92 /* struct.upb.h */; }; + 02FDD5E4A6B3A9A96115905DDF80B3A7 /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D359CE8CB3DC0FD7B140401414AD13C8 /* stats.upb.h */; }; + 03066A239E4F206E0AE36D546961F9C2 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = FFA54A0203ACC12DBFB935BB78ACC2EC /* client_channel_channelz.h */; }; + 030F7A21EF1D9AA3C4980FF7A52120BE /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = F3AE3B9D1B0C92E1EB29B6DCF9651D39 /* resolver_factory.h */; }; + 032E2C2B20DB11B7351DB97639A0FD23 /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD5E281C1610FBAA1A80883F89EC2727 /* IQPreviousNextView.swift */; }; + 03442B6A55045A4DB00A5799AF43F375 /* wire_reader_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B70087CC033B6B7F50AD0D8C3BAEDD4 /* wire_reader_impl.h */; }; + 0349785F115AC6638B7F7FBC195BB236 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 262B0481D4BE48ED29EF7DE5A6868D73 /* compression_internal.h */; }; + 0362E8BDF1139E9833C6C79C78F5FCF5 /* frame_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D037E5D40A1FA64E42B31F5BDFACAD2 /* 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"; }; }; + 0367C694B30029674141F24EA1D3050E /* checker.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 14466559014F5CA298ADCB555E679C24 /* checker.h */; }; + 0367F386033F946555209610CCED74DA /* collection_entry.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0855FCABC5CC29BF405ED80CA5914841 /* collection_entry.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0382444DD5315EB166751C61FCB66924 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D71B53866827B85965320F23512A32B /* alts_frame_protector.h */; }; + 038DCB46A996986B4017C3EF8D0E872E /* pretty_function.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1CF0CF101F4040390066149F6CCD54 /* pretty_function.h */; }; + 038F1B54D65D135B1672B8291EB8046C /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7129E41AF5610CD59C78ED31085B69 /* fake_security_connector.h */; }; + 03935F2F93AC9B0C114DDD453438C621 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F018242C8F6124C8CC8FF9433F26F95 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 039772E1E4A41D65E02DBA5359F715EE /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C10F29B244D15ADC7FD05A5DEDEABE0 /* node.upb.h */; }; + 039B9DAA3E26BE87A3D7C1E92AC01E99 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 900037B35F0BDBA6BED6BA2260B42EC4 /* slice_internal.h */; }; + 039D4A80A704CA758FF7DD28228D032F /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 397AA49D4E32C37CC6C46FB56AE716CC /* HeartbeatController.swift */; }; + 039FE61E2A40B57BFA61758EC604A94C /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 88A2399C198EB36223D5493C17A30453 /* connectivity_state.h */; }; + 03A6AEE0ED42A761241D79F3C2063D4C /* value_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A67B7B1F9521FDDC0E7068069583F25 /* value_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 03AE32930D2950E044CB59A98DA1C07A /* roots.pem in Resources */ = {isa = PBXBuildFile; fileRef = 4C0B9BC70028F8BDB5E6EF31F3F9986C /* roots.pem */; }; + 03B336C9A7FCE7CDB4877C469D5DC091 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0773CA613BEEE144C6B56FA7A7A4F6A9 /* alts_counter.h */; }; + 03B70E6AA2E03B8860D63DE84F400800 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AB9FB90254696C9DAA7CFA451B93B6 /* alts_credentials.h */; }; + 03D56EE9C1D738C48A095342BC5B9611 /* alarm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 336D40D08AA9DB93F4E84221474DDE52 /* alarm.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 03DE0B97B318B6D2CE7D688F6564C8EE /* identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0DF5884D27AC29DA27D743A63C7245D1 /* identity.h */; }; + 03FB75EB23C87FBFF55D3EBF9B357E5D /* v3_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 601B28FAEA8098CD709ED0CDF069EA0F /* v3_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 03FE9643F3A55E7711D9A3370EF8F996 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 95BA6B7DDAB6CAB918C7B0AE9D612724 /* security.upbdefs.h */; }; + 03FEE7E7E5A88F96DE7593AAC1115C51 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = AE17B390D590E6CB695C2255642A0D6D /* socket.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 040F6DDDB86B856E29B183BF15D58497 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA1CEE8CB59CDABA988F6C957893E92 /* tsi_error.h */; }; + 0414EB23CB812AD07421B4E7D6557BCA /* zipf_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = CBA75ACEBBA1278606683597FC7A1CF7 /* zipf_distribution.h */; }; + 04197F35A25798F88C99C930810EBA52 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0A6B81FFECACC796545E147BE723E4C5 /* authority.upb.h */; }; + 042922002F4114D8A0A1900C3DF41997 /* policy_checks.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 1F60678A89679FFFD3C3CA52B98AD7F5 /* policy_checks.h */; }; + 042B3E26947546EED7A3BEEC9CEA49CD /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A5265DF14ABE675F239483F3A05DD65C /* buffer_list.h */; }; + 043002FC6C9253A164FB9D78768ACB48 /* migrate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5497677C626BB870BE8E80C814B64709 /* migrate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 043914CB299FDBB6C28681FBE8D8CBBE /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E774C1D7AB45580BE965C9A9CA68FB84 /* load_report.upb.h */; }; + 043C1EC5E08A114D837D05A1E7102AF0 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 332CABF320340B8B8D7B16E4BE4D57F1 /* mpscq.h */; }; + 0441A95BDF5341C1AFCD70D7E32F9886 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D4082C966EAD53C38D25E82C3CF562 /* frame_handler.h */; }; + 0442C8B34C28C756CAABE890C76FC7B1 /* FIRCollectionReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D9D5895EFC31715E01FB32BB3EAA29C /* FIRCollectionReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 04690071C3AC02149B2A882E1F975B0B /* a_utctm.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D69529A8B679A5A12ED00EAC6F6829B /* a_utctm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0472A957D59CA3A52E445D22C6BD9710 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7BB3CF4C25ECF864BBD7C871A0458776 /* timer_manager.h */; }; + 0488EA818D8DB00518840B8A72B2D1CC /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD1545900C0E9A02EE796E16CF9B24A /* xds_http_filters.h */; }; + 0491A7F16A762FF2B061EA7C7102765B /* timer_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F027F748DE09374E33EEF623E027B559 /* timer_custom.h */; }; + 04A1F05BABECF3360C031656AF26C314 /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 73DAE0328E7FC880D14EBA7FF9ADB39A /* seq.h */; }; + 04B34BF8FD7B40F28A90CB34E8F1A639 /* arg.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = B2A4806B0988C8B8EADAA9BAADDAD30F /* arg.h */; }; + 04C2E0056B375AFB83A934B2FD3C61D2 /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7FAEE13B322EA73E2BA902F8F862B6F8 /* loop.h */; }; + 04C33D66A9196D6911D58F9C32068B6D /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A279D11295A3FABCD8D789A5849F3B1A /* endpoint_cfstream.h */; }; + 04CEFB296E670979A359ECCB64D33CC2 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 891C39F4CA113B558FEAD086E597FF5C /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 04E1C8F77CDD363542359EE0A24BE65C /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 49D88A33EECC811001B9C8BF00BAFFF5 /* FIRTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 04E36C359C17BCB54D33D719D45AD890 /* ostringstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5E5C9FFD5E5904CFD37E082A1B56B78 /* ostringstream.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 04ECA6994CEAA6AC8196A244C47F7D28 /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 4696C3A1E17C292F74E651A0285FA330 /* slice_refcount_base.h */; }; + 04F13C271ED1D932D834F7F09D574E41 /* channel_arguments.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 22E2B34670BF782DDEA1810E557343D2 /* channel_arguments.h */; }; + 0511EACCF41B329FBBB8F184D77AB484 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A9A58EF080DB671CD159B73866D874 /* empty.upbdefs.h */; }; + 051B17EEDCC2D642A7723F966306E4E3 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = F23F2261C0D101B68BC513F5758408E8 /* server_config_selector.h */; }; + 051BD92CB0DFBD182F2D6509B2A6110F /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = B819813C8087E3C90A97749F0D41EDB0 /* bdp_estimator.h */; }; + 051E89643B2E7069FE51CB76C12D9FC6 /* combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB64A299FA079200E0FFD9E416DE4B65 /* combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 05213B97E90F242704E1CA5A4643FE32 /* tls.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 679465A778C0BF0F03AF076A922B9D41 /* tls.h */; }; + 05289EB07AE5201FE43CB1969C2B008F /* p256_table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = D97810310876FF2E3D239445BACD7CBA /* p256_table.h */; }; + 053A3D201DAC5CDD604B8CFEE225A380 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 50F0B86F29FD3A5AC444923EF9B0166E /* 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"; }; }; + 053EBF5786FA27117838852571052DE3 /* byte_stream_cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 42D4CE64988498E74822D76E0034D720 /* byte_stream_cpp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0540369501E1FD232DB39EB0B1D4797A /* decode_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = EFBCC660E5148BB857231197D240E220 /* decode_internal.h */; }; + 054B43AB53BAFCF00CE930FCD5BF66E6 /* FIRGetProjectConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F60B31F0E4AAA0B72FF267F2FA8430F9 /* FIRGetProjectConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 055C1C0EBE60F9B75ABDFB3561ECF0D5 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5AF2AB200CE8CF35B110FD22C65B1032 /* internal_errqueue.h */; }; + 055D7C4C752E51366DD22794293266EA /* testharness.h in Headers */ = {isa = PBXBuildFile; fileRef = C5DF24B9D98AB1252B93075E60282939 /* testharness.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0563546F6F48912D6C11AD5DACA14638 /* tasn_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 157451DDBD3083BA47AEE89A30BF0885 /* tasn_enc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 056B9D5F9D2A77E58F8B93F8111FB72C /* health_check.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 956618836FBA7615F7472E1EF33C0E20 /* health_check.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0571570D80B0C5E52E98B9032AAD97C8 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = C068A54678F87D7D7E594C0F4D38C800 /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05796284105527DA4A51187CDC1B039E /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DE6E6755A31DC227B90792B742314D3 /* metadata_map.h */; }; + 058CC5BECE38232B1EB183B87FADD802 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 00920AF9A5329398C511ACB2668D298E /* address.upbdefs.h */; }; + 058CDF1BBF4437CE9D15C00E17E91735 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 05A2E656ED79A449E9E1A17AB3E94BEF /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0406507199D904BDBED7C13AEF78965C /* path_transformation.upbdefs.h */; }; + 05BE1DB527FFF15635D30B9A8F40818F /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CF260A4356D6041BB4E9D7FA7D31A48E /* circuit_breaker.upbdefs.h */; }; + 05DD3085DFD79BBDD15B0BD937250455 /* FIRFinalizeMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BE3A062E351A3059228607882A4A2F6 /* FIRFinalizeMFASignInRequest.m */; }; + 05DDC5F5FB8AEDA7AA3AF58A22232C72 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = F769F0E06CD49A8FC7635DB140A9E63C /* alts_frame_protector.h */; }; + 05DE3E2602DA922A2CDB4D52DECD6D28 /* maybe_document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34436651D5CB14A308EE00D04232F8C6 /* maybe_document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 05E3E86BF4AE3A7343246BF86C45F65C /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 70991E1BC079F3A393AB61E9202F626C /* oauth2_credentials.h */; }; + 05F0EFFEF2CE1E0D2190A548DE688C20 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0D92D6733C37F35C91FECE17257F594B /* certificate_provider_store.h */; }; + 05FE0BAAFE7C97B40C518BAC258DF5AB /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 245CAEA8281F211B07977F7FA592DAAA /* host_port.h */; }; + 06000C8685B347B6377281B4BAD83E25 /* wire_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EDB2624825A4D169C48AB7C9FAFE0F8 /* wire_writer.h */; }; + 060EE3B57731D8E0FAEAF8AAAFD09735 /* binder_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = B417D3569C012966923407E6DEB774C8 /* binder_transport.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 060F102DDA4375212305E0C9DFEB520A /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F67C05D7F62B4EFA8F129DA189A40C /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06237EE0BE4696DCA879809B744DAE9C /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = BCE5C92237933665EDE7E6D62B58974C /* time_zone.h */; }; + 063463A8999EB2B9E2632ACE0644B67C /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC0E36EE9018FEC5A11B2BD8B6E2EC6 /* rbac.upb.h */; }; + 06480BFA155440663B78E40B722AD6B5 /* hrss.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3F9000AB37386213905F547AEDF517 /* hrss.h */; }; + 064F9907F0A4A4B613659E5177F2311D /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BBC78FCE741307FC70E6D8F1CA1FDFA /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 06548F6DB8154168575789E097E27F63 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 09984D5C11EC37361F717D7AA935EB30 /* typed_struct.upbdefs.h */; }; + 06561617194691E6C39AD0DB97D288B5 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 383F6C8E79280562AAA56C59CE1B3A8C /* polling_entity.h */; }; + 06567DAFA2325896C6CF3960836ABF17 /* gRPC-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D04545346C295C4C80EF1715C4B32DFD /* gRPC-Core-dummy.m */; }; + 065B916939453B545A2BD8A76D3E62F1 /* tls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DA242A5B85E864E8DBD2A41CEE95218 /* tls1.h */; }; + 066F383BCFFB8991CA6D58A39F900F7F /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DBA1F171A1C4CD88CFB8676F5051EED7 /* fork.h */; }; + 067CC7E29D712DEE171B594C5F835C63 /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9BC0A23DD7CF33F460DFB18F7F3CE1A /* _ObjC_HeartbeatsPayload.swift */; }; + 06A23DD745E608C4EF3AEC2195EEFD0D /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 972ADBCE9AC8D64B492448AF497AE8B4 /* error_utils.h */; }; + 06AD37EDF0841F1F8DA7E54AE596B342 /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 62C055D29FB379E969FF9FBB32ECD71B /* stat.h */; }; + 06B434B0D249339C743D548386FE93F7 /* number.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E75A7A32CF9AB372B21F1F0A4B75ECC8 /* number.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 06C45797EFB095CDB25990B80DC6D591 /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = 06C376465A570EE31BFA74C78F2631F3 /* engine.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 06E39983DBAFEA542BEDF36AE875C4C5 /* evp_ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = F7C575B2500F87C1C76A330E704DA8AB /* evp_ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 06E8B57B451EAC676642AE4C163DD8B8 /* FIRGoogleAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 214643DD544826724EA993D9213BA3A5 /* FIRGoogleAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 07130A48BDD67A547BF3B49FAD0A8947 /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 1E663C5EEE51907770579F3EE9E738A6 /* time_precise.h */; }; + 0715B29F2BA356AFEDE56D85BF76DF8A /* ex_data.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 430556F9724E0321A6D58C3B2110AAA0 /* ex_data.h */; }; + 07218684CF1061F5588FF5434B521CEB /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B232530AE2AA3C7C25150F093749C9DB /* resolver.upb.h */; }; + 073568A6AE7B6224D171AC975E1A9596 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C67ABC7E8F3F52C2022DE6B6F0B95425 /* tcp_windows.h */; }; + 073AD8783DB6B80E10978E0F5AC1BD45 /* byte_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B9CBF4FFF90E24ABF6A57A6C1329C201 /* byte_buffer.h */; }; + 074BB99697DBA236E378979645861545 /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 627CF6264B5E0CB198AF480C714B6318 /* client_channel.h */; }; + 07535904923A0C685D8B8A847673A4F1 /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 8C8164B1BA614D4D234CF542EDE68673 /* upb_utils.h */; }; + 07540B269D25B83C5678A7132BA59957 /* FIRUserInfoImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = D8A2A001B1875165A8CC5E189E7E044A /* FIRUserInfoImpl.m */; }; + 0774EF54266A877853D4AA45BB9235C4 /* handshaker_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0646C62C2674B344913002AFC41D6730 /* 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"; }; }; + 07785CA38253C22FB26E68E9E23524C2 /* time_zone_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = C567DF76E868873AB8711A2216EACCD0 /* time_zone_posix.h */; }; + 077D2D2344F6E0FEE8814B2BF86D786F /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 383F744E37406F5D7B9AFA63D9CDA094 /* channelz.h */; }; + 077EB1DFBBC37FA1F111515399879CD0 /* lb_policy_registry.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7894D79CB3F0575E5741F981F8A991F6 /* lb_policy_registry.h */; }; + 07859EB7CC9D30DBF5BDACC5C5A36F21 /* proxy_mapper_registry.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 854A24B8B40EC74722FFDFAB92716C3A /* proxy_mapper_registry.h */; }; + 0786E64E9A7038E55DC54EA59DDE56AE /* FIRAuthAPNSToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFE892DE18EC94257F90037B3A47E7 /* FIRAuthAPNSToken.m */; }; + 0791B18642FEDD0EB7C50CAE8B0C4305 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3175E8BB3C13622D66AFFD8B387AAEDE /* ev_posix.h */; }; + 079327763D9B55632F9B114ECD79FB76 /* stack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 42740DB3DA6378C65F6DDD1952C42D34 /* stack.h */; }; + 0794882190C0B35A04E73FDB437BB7D4 /* extension.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 5E9472A8FA0A0B3C2A107417B9589FFF /* extension.h */; }; + 07984C21C767AFD3D8D483C3784B5C40 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B8C665012904BB80A284E2D263686479 /* stacktrace_win32-inl.inc */; }; + 07BB408134D492950664F5C704BF803F /* stacktrace_emscripten-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2DFE59557A38BB968888F6CBBDAA35E8 /* stacktrace_emscripten-inl.inc */; }; + 07BD1C0BB95C0B0ED771DBFD4B41B2CD /* span.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 80DFC757C71021B15B6C3C05A215D574 /* span.h */; }; + 07DA4239E18ABDBE543E027A26C72BFD /* padding.c in Sources */ = {isa = PBXBuildFile; fileRef = FE1EA19F1D1E10840926EFC33DCAF1C1 /* padding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 07FD5A1ED5AFB84D618AAA48F78F58A6 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 778944EF90E0AF6A8F76FC1C448D3DA3 /* combiner.h */; }; + 080B1466AFB7E2E559A068ADF079DA4E /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B66B8585233E47D4255B365517D5477D /* status.upbdefs.h */; }; + 0814B196CA6B8778CD206DB38A8C9CB7 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = EB47F7C063DAEB91DD3D0177C29E3C2D /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0815307697F27B304CAB126B5B306D00 /* slice_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7F6DE1B54194B24326EA48EB0ECD15 /* slice_split.h */; }; + 0815AF89866530CB9BF30CD7EA5EEAD4 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 332CABF320340B8B8D7B16E4BE4D57F1 /* mpscq.h */; }; + 082263CF509DBC9A027640166B97B9DD /* asn1_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = D492A5B92BDDDAD7C19F8A596805D162 /* asn1_mac.h */; }; + 0823BD485466CD4F60EA3CAD5DBD1504 /* v3_ia5.c in Sources */ = {isa = PBXBuildFile; fileRef = F0B7A3E2168B047DE16FB4784E54EBD6 /* v3_ia5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 08260A82390F68F4D08AB4C7A18BF109 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = E74A4166AFB9C828ECDF3C1E6FA3708E /* bin_decoder.h */; }; + 0836B0101BBFA0148B22B57EAC77F209 /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = D21CA2E32F37DFDA5BBB2E97A1D718B4 /* service_config_call_data.h */; }; + 083AC9146D365707557866045E371752 /* FIRAuthProto.h in Headers */ = {isa = PBXBuildFile; fileRef = EBED0621CC3ED815E5B64865EA428F6D /* FIRAuthProto.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 083F1508922A5D21F61966AECF79B60A /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF8DF228868753742F43A64B9DBA840 /* outlier_detection.upb.h */; }; + 084327D0B6B409202BBE825D3B90781C /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBBB295CC84238735D6707ED2C1C215 /* health_check.upb.h */; }; + 0844A2DDB7B53FF7A09838B4BC2F4DE0 /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 06E092424B003E7B0667FAE0E04B7D7A /* struct.upb.h */; }; + 08477F117B4F4E9E9F4F95A5F8E2B120 /* cpu-arm-linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CEB837565A27E6D92E93E0D5BB3E554 /* cpu-arm-linux.h */; }; + 08521F7502851A8812CD4D1AFECB9C9B /* discrete_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F4323F6371A2D3B91916934F8DE5C5 /* discrete_distribution.h */; }; + 086507B5E5D2190FCE94FFBB5F375718 /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = FE085D2F673689A6EFBDD8FA64154F1C /* empty.upb.h */; }; + 0866ED917EBD5A008647844CCC6EDEBC /* optimization.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 4CB6B1AC62511A94BE481FB3593CA606 /* optimization.h */; }; + 08704FC5BD26F64C8F4970B1858A432F /* FIRFederatedAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D06B24F85B989D2BA004B5CDB767846 /* FIRFederatedAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 087057B9AB553048AAA4263FE8BD4E98 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8299BB74DC49117B8A7A9A56D147DC /* handshaker_factory.h */; }; + 0871BA97EC9C95942C61E82545C52A8B /* status_code_enum.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = CC59C91458601AC2EB638F6AA167A20A /* status_code_enum.h */; }; + 087DE166668C5FB49E2100506C806C03 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = AADDA1FD3D52A25FF3A6581871567896 /* status.h */; }; + 0888B6E06EFE129CF06A87B155E57E34 /* FIRAuthWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = A0EEB92B21A22CA56D35DED421126094 /* FIRAuthWebView.m */; }; + 088937E0843D1C96DF1C5AC3F45FB431 /* resolved_address_internal.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B639A70BB67FEE84AD657027E13D7014 /* resolved_address_internal.h */; }; + 08922C381364B3D3BD8E72CA958F8E51 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E08B96E1AC0086A2909DDA889B3E8D /* flow_control.h */; }; + 0892933961B384793268338C5A7F8E18 /* time_zone_lookup.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDB93D5517DAFBAFDA7015F2CD7D716D /* time_zone_lookup.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 08A444AA7804A396877A966766F5F767 /* load_system_roots_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B943E9756E367B7096BDBB2C5F8B918 /* load_system_roots_linux.h */; }; + 08A7167D71889D67CCE6C5D5D9FAE64A /* tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA9DCC88F94852D8BE7975CF84D8EFF6 /* tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 08AF3BFE453DBECCFEB6BCBDF4845E6E /* FIRAdditionalUserInfo_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BAB536E289DE3F300BE1B0145F3D113 /* FIRAdditionalUserInfo_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08C0A14137071FAC489723163BD595A4 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 8572275BAD31AF313D1E9651ECC699E0 /* channel_stack_type.h */; }; + 08C861F3C7B4382E796214981AB7A0C9 /* socket_mutator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BB8D97F53536E0D5DEDF06E13062450 /* 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"; }; }; + 08D6763E26702FB7B4B629E3E94045A5 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 493954DBDE29FD4570756388741CAD04 /* credentials.h */; }; + 08F3094563D2D302DE73BDCC352D127D /* type_check.h in Headers */ = {isa = PBXBuildFile; fileRef = 68339D626D9A1BC6D3FF6AE67E0053F5 /* type_check.h */; }; + 08F879B7B71AB39451FB3C1DB8C7FDB3 /* uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E03891E52EE8CCA94BC6FB82313A900 /* uniform_int_distribution.h */; }; + 08FDC39C29DA4A15C3F4C727006FB51C /* transport_security_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B54E96D150A757A3AFD6758439BC347 /* 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"; }; }; + 09018BFE34D2A4029AAD43EEE7B62F8A /* dh_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 3069316F90BCBDE497F4832516091635 /* dh_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 090647642039CCDD7341E64B2182D1D3 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E61A3C03FF41EECC9021B264B8291E /* resolved_address.h */; }; + 0919519C7113DFDDDCB907510797B1BF /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = E3681E55D1464113B9A11C54FFBA84E5 /* status.upbdefs.h */; }; + 091E20EF9774337213CFB843C2E5EED3 /* ndk_binder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C73A9C5D77E0778594A42F25CF2C2E8 /* ndk_binder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 09265545FAC1D119E8D49ECF66B99C77 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = EFFD7B3C2B5EF824BD95FBF58EEE8BAD /* any.upbdefs.h */; }; + 0932C0AAA000D5634B2DD2EED0481544 /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9E8C3E40D06BAB73DDAB836409E7D91F /* stream_map.h */; }; + 09341BAD917BAEB4D9A0799F2A78D099 /* explain.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9847F3EC76AF4E22C980390DCCF12AED /* explain.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 09421B7265117A890C30F908C0957A36 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B52BADE309AAFDD6B7278A1DE1A4B87 /* http_uri.upb.h */; }; + 0961F7138BD9D4DC04A8359ECAABA06A /* asn1_gen.c in Sources */ = {isa = PBXBuildFile; fileRef = 7648B29F89CF689336EEA8F8915BC929 /* asn1_gen.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0987B7C4D6E287A63019AA31845F9B23 /* port_platform.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0647D74034C7585F265E71E900324560 /* port_platform.h */; }; + 098948EF810747DC5FBEAD6C31DBC01C /* pcre.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 77B00D9AEA5BB3B3C6EBEFDCCC8199BD /* pcre.h */; }; + 09A7218FA9DC070872D6458EBB835966 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E652D90040370B08F7621D0FFD2E3263 /* status.upbdefs.h */; }; + 09B5F097A9FC5C48AFEFB37FD8C63902 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B44D813521C1B3E58ABCA17B2FC763 /* internal.h */; }; + 09CC3295414DA9B190E32FF306F9C663 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE03AF06D51C162CD4743C4A87F406C /* call_tracer.h */; }; + 09E1A98010A5CBB94EB46FDE6D534047 /* cds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 072D1AB381FBB39A6A8037063331AD10 /* cds.upbdefs.h */; }; + 09E944901C48475710B455FE6F00D2B3 /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = BC5E4BC5D37F2CCF687305ADB6AB5BE2 /* alts_crypter.h */; }; + 09EC2D354F8434B3ECBEABD897F1DF30 /* distributions.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 92B62D4F1182787DF22DB8C2713683F7 /* distributions.h */; }; + 09EDEAA95B68ACD174B9FEDDB51B06DE /* server_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E0E221DC8B64F9E6B36DC7EC8BDA9D77 /* server_callback.h */; }; + 09F5C9E377BC0D86DDBE3149BD10B4AE /* FIRGameCenterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 95EE03B9EAEA1048290C96FB15080D74 /* FIRGameCenterAuthCredential.m */; }; + 09F898CD2965AA95C6044E91D45FE54C /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = FE11DF1311A4ADED090E9E3FF9A0CA47 /* ssl_utils_config.h */; }; + 0A078B3B5E442EF7105912863D2BC5F3 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B7AEE217840AC844F882F50A0DE17100 /* node.upbdefs.h */; }; + 0A086102C47FE852C26EE2B2BF26D0DC /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C3EF07B99AB4671688F8C8F60DC738F /* thd.h */; }; + 0A0AEB0EA2BDF1E21FC5484FC0B22880 /* is_boringssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = AA952FABFCF1E42F8DD8BBFE1EF37638 /* is_boringssl.h */; }; + 0A0DFAB63E6E74F4935F121B464A8F6C /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = ED91E1A11C312D968889ECD726B8F4BA /* client_interceptor.h */; }; + 0A11D62EF9201BC1FAE4E9DC1A4E276C /* hashtablez_sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C52D546207DF656FE73935D4F93614D /* hashtablez_sampler.h */; }; + 0A2C2075D38435A2107413478EBC02C9 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 31EC79FFC0C2D25B66EE18D8EBBA580D /* xds_resolver.h */; }; + 0A2E468217F27C48E4E3D75BC24CE79E /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF4C24B8F3D8AEA6D6B6DF20EE5810F /* resource_locator.upbdefs.h */; }; + 0A4BB14C87D5D403F8A6C6D683404511 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C289277C3D3052223FB6396FF2A7F75D /* accesslog.upb.h */; }; + 0A5235C8122E50FAB1A2C0748C378528 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B5D53977DB945726C49CBBEBC47361 /* alts_tsi_handshaker_private.h */; }; + 0A534D8A982EFBCF9424A2F1D436929D /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 292BF7C6CFBECA61BEA63D51369D35E1 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0A535C2591A11F911D92B7D7F08575B7 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 7882FDD12247B86650EF81C6BF395E76 /* variant.h */; }; + 0A8F3FED24507BC9C11D7D7153C97771 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A44DC14E720FCD39B4281C2FBB611D /* time_averaged_stats.h */; }; + 0A9DB19F4FBC3E0E46A8638FBE5232C0 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 92326C60643CC8CB6057D8DDF4984D70 /* grpclb_balancer_addresses.h */; }; + 0A9FFB2C3F28CE9BBD37D8987A8A242E /* x_pubkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B01216C72F505959175819985653E8E /* x_pubkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0AAFC6F78A93ACEEA0227F98D0E0C943 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 0F19BEFDCA620B0A44BB79C7FC8C78D7 /* ref_counted_ptr.h */; }; + 0AB76EBC2F2252D735140D13274F2D65 /* FIRGetProjectConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 62FD6D6776C4B69CF58C92BED1CB348D /* FIRGetProjectConfigRequest.m */; }; + 0AB859020E75DA56B5E5697A0A97CD0D /* FIROAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5810AC4EA2A014E30E25A6BF5CFCFA48 /* FIROAuthProvider.m */; }; + 0AC3D6DDCFD43B87D9706A355DF37D1A /* obj_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = BD865B04E33AF610B8B428994F01D006 /* obj_mac.h */; }; + 0AC43E9CB5D48CA33CAF8BD59868B519 /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 32CC31E7EB007F583AA305EC87E9BE43 /* call.h */; }; + 0AD2BA70A24DC5623730684B6504C823 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 9429CB622DF6DC1E05E32040C38BC7C0 /* server_callback.h */; }; + 0AE4141AABF7BE673CB4128AE046A0ED /* error_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 56FDCD49996225437CD3FF22F6D2D023 /* error_internal.h */; }; + 0AEA9578B71ADA91C63E7E182336F1C1 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 391181D14502A21D0CA7FAA8AC458586 /* table_internal.h */; }; + 0B1A0FF360AADDA1674E24C3D3B1DCE4 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 217E8CD74BA05131F6F4D8CC99945BC1 /* http_client_filter.h */; }; + 0B27DFBF255F809F090AC75F2C6F51CB /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A6F6C2016365E0F69E9585A6AEEDDA /* FIRComponentContainer.m */; }; + 0B39F0365AE995B57F8E8128843C95AE /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5185E88A2D9C61BD59B3EBC18D69E539 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0B4237A50367F6E028880BB0F142FB00 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = A7DA8E332C56FFE90181557403F4A9DA /* rls.upb.h */; }; + 0B4A34F6989065AEB20E1617492ADE90 /* invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = F3446DEC6109C3FE2B6943960B0EFD67 /* invoke.h */; }; + 0B4E278C32E09B650021E62DED4F5226 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 674051A6FC394A45123BAA764DE19639 /* channel_stack_builder.h */; }; + 0B5181C38EB2D97EAAE53AEE84B056E5 /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = DD792DF8847D4A2CFD8417BC53034BDE /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0B63A07C427BEA558980D1129694592E /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 572FBEA03BA545ADF8FB59E62C4BD2FD /* base.upbdefs.h */; }; + 0B6752C43D3F4AD98406E17AA8782E4A /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 60639E4923A2E5E97635FAB8820F369E /* fault.upb.h */; }; + 0B821317693E7C6BC49731344E79F4F3 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 459CB2DD679D5E0E47E2F6A4DB44544D /* promise_like.h */; }; + 0B826FCCEC07556974FE0563384D715B /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 2417D45F1B0CBC31D6E9C142D79C1E91 /* ssl_utils.h */; }; + 0B8714E3EEC50112DD07195C9932EF2B /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE7E4634142660836B0F1984913687C /* xds_resource_type_impl.h */; }; + 0B8923A469BC009E72BBF07DB059E63B /* dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = BC87A54C8422336153CB1B1E8975A27C /* dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0B94AA4BF610657E1054E5F80178FD00 /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = F1C909BB7925C56B9BC5EE5B29DEDB62 /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0B9BF83EA0949AAD5718819DCA81E619 /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = C1C13ABE79DFFB8A1B66FDA6EF6E509E /* grpclb_client_stats.h */; }; + 0BA26908F874D329D65E530A52755219 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F7140E3A88B3ACD475206E7CD166F14 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BB387B56FC34917AEF81C80A47958E4 /* grpc_tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E74A9069C4282D4DE7ACB35D340663E /* 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"; }; }; + 0BBED6CB902D3EC702BC1D63EC1DFC50 /* client_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 58124EB98D750BA1CFFDC0655EB6B863 /* client_callback.h */; }; + 0BBF63ABB2AB2BEF63B6D04B8EEF5DCB /* xds_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A95AC97F778874B7A50D717CECF43CE /* 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"; }; }; + 0BC3B0CAAD95FD93A3056E22ED358118 /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8C3E40D06BAB73DDAB836409E7D91F /* stream_map.h */; }; + 0BC59EC75C6DF9E8BC972281DF5E003F /* descriptor.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 33B79C59F59F3A79716C2C69E630659E /* 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"; }; }; + 0BCFC5F0E92B99C25B8D0DA132DE98CF /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5E5E299BDA914EAF9CC010B26720B63 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0BD0A91C5AC3850A3F6ECD55A94DD2D8 /* layout.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AEE546FB51AEFD1A39B580521C203882 /* layout.h */; }; + 0BEC7FB40164443809AE1FA9EB8739ED /* explain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C0CA4478DEEFA84A0F4539B305637EBC /* explain.upb.h */; }; + 0BEDE255738FACD8B03791428101FF82 /* xds_http_rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 125CE49479A3847C09BBCF5A579D0D39 /* 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"; }; }; + 0C1ACBF965E06525402C86A407B68F75 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 6409110958CE063FA6748CE38BA66377 /* metadata_batch.h */; }; + 0C34AF25BD5EC2D18540C9FAF4A0987B /* FIRGetOOBConfirmationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EB8C00256225A9BA8C1B51EC4B203A4 /* FIRGetOOBConfirmationCodeRequest.m */; }; + 0C35A7DC5F13598C22D4492A0C4CFA87 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA0532207375403CF92AF2C395816E3 /* migrate.upbdefs.h */; }; + 0C36B9A3D25C7D0DFF5136F64F481835 /* t_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 89DE501BE7DA71284D0BACEA81E74A72 /* t_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0C3D5F361673068C68E9EE688E33C8EB /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 143B53D7DE25B883F9C47A16B13588FD /* message_decompress_filter.h */; }; + 0C4159EE0B7DA630EEA8DE5E77A6DDCA /* ssl_session_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = A674FC20142C5A137221EFD651FEA1FD /* 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"; }; }; + 0C4342F9E9E55F3A54E61ACA7695D515 /* dns_resolver_ares.cc in Sources */ = {isa = PBXBuildFile; fileRef = 685C4C02AA2BC8DC76BC9BD3611D88AC /* 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"; }; }; + 0C5EA163D43AF24E5D4CBB9D241309C9 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D6498B238B0D884E33878D6430C73A9 /* common.upb.h */; }; + 0C62E66BC2802A4E4396E94A52E587BA /* gcm_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BD8DE7BAD4E725344F47233AF850C32 /* gcm_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0C6A6255C6E07AEE180BA46EB80FE9C0 /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EE4EA332B4ECE89650652BF5BF5C72B0 /* node.upb.h */; }; + 0C8FAB4CF2B3059FAF01A0AD1298024B /* sync_posix.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 94F91E13FEC3C0614FDA44D6EAA6DD5A /* sync_posix.h */; }; + 0C9038027C3F10E5C9F1A5CF09EF36E2 /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 54E50FB8E46928CD02C2BE37F132DC95 /* annotations.upb.h */; }; + 0C97F1931AD65AF4A6F64326301B127D /* block_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D48C547DE2DFD29C7E93652DE5048D1 /* block_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 0C9EF9BDF3C8FFE0D0EE00453588B417 /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = FBA28F23C40C8E5F6A7CC32376915B7F /* fake_transport_security.h */; }; + 0CA26BF4A42742C2363DA749DAF55B05 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 5DFAF8D48A76BBBFF540F71C6D14EA46 /* service_config_parser.h */; }; + 0CA3B7CC3360F8EBA6626C7932F323B3 /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 0243BFC51D0FE9BABFBC22D2AF3CC1DB /* activity.h */; }; + 0CBA0A8309BD890593D027B450B1FBF9 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 484DA31ADCACFCF47E5220521550FF3E /* frame_window_update.h */; }; + 0CBDA0E900A7F6815200E7877DE50992 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEBF1B8573F27431022C28AF0366694 /* civil_time.h */; }; + 0CC01C6BEE2099E6E4B57FD44BD7A916 /* hpke.c in Sources */ = {isa = PBXBuildFile; fileRef = B971032D8BB96D4E88DF545A80C7B059 /* hpke.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0CCA1681606880C3C12F48FBF672F8C9 /* create_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4094F04C795DF5C4C1EB3A044EB567A7 /* create_channel.h */; }; + 0CFB3DD3917BAABA0957D8DD972AB324 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 762BC53D27EFCEB2B9D073FC2E6B3184 /* manual_constructor.h */; }; + 0CFE29D67A349D8A8FE114E69308CE6F /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCDA6FED7566AD835DDAC45606FD285 /* backoff.upb.h */; }; + 0D03DFC6F91B6C85227B06F23F26EE6B /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CA796C398964CC455D2F3EC4BA518A /* status.h */; }; + 0D0E04992162B88665C49C01B902BEE1 /* trust_token.c in Sources */ = {isa = PBXBuildFile; fileRef = 605737CF9D35765FD2B4682DAB4B7986 /* trust_token.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0D116A6BBF48A114F8C1740E46F7275E /* method_handler_impl.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 9323ABB89CB8331D8EA0E30B772E7EBB /* method_handler_impl.h */; }; + 0D202CC8A1E86EA109EA9BF278B2D9C8 /* pick_first.cc in Sources */ = {isa = PBXBuildFile; fileRef = 518CCCDBA18368CC09736CB7D3F4E30C /* 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"; }; }; + 0D209296D2D63A9ABE38587E19502C3A /* FIRSignUpNewUserRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = D1EED044830F35BCCD3E3693972928CD /* FIRSignUpNewUserRequest.m */; }; + 0D33680676E16C9915F3C769C4F6AE7C /* FIRSignUpNewUserResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = DC6BADA7CFA2BDD243DF9F1DFBAF2A93 /* FIRSignUpNewUserResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D361D228764EC62B7BAF69A2D3C7514 /* int128.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACE3917478381E30DC5505EDDBC5BFB3 /* int128.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0D43516888F8543802D87DD03267F927 /* variant.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = DBEFB06ABB0547FCBC68B8243D928339 /* variant.h */; }; + 0D507B13D15E56402555EE89B26498CF /* FIRVerifyAssertionResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = F85AC0D6836FDF5C20288B41676B6035 /* FIRVerifyAssertionResponse.m */; }; + 0D54B91D8C1BAE6AACB1F0343917C345 /* posix_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = F95A0B77E4366D086D267B00561DD262 /* posix_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D5D14A75D7C5036029D01C6977AC13F /* gRPC-C++-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 114A93FEF606BDF65C40A3A219CCC60E /* gRPC-C++-dummy.m */; }; + 0D5E8F5F7B23569927CC8A5E83A6CB28 /* task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B15B481A7A2E3372BD8319C41CF56AC /* task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0D678B265C0CB3B68A5C559F40BD0083 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A093F80F9120B6B9D64137FFFB66A4FC /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D725249CDA273B5FB104292F5DAC516 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4642B128CC6C587830218395CD98CBFD /* connected_channel.h */; }; + 0D8657D000D01191AC3DF35FB31646C7 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE58EA3FA074E1E9675AFB0BB79CC9E /* span.h */; }; + 0D8968EE1A9A5324EE0D058528862E5F /* resolver_result_parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 273FD335D02F9824BB111E9C9D73129A /* resolver_result_parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0DA6867411A6AC3B62A59452F2A43F05 /* firebase_auth_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C72B55A02ACC830A688EE808CE9942E /* firebase_auth_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 0DB109957DB1735631E433E9CA7588A7 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BF4AF04F728BA8821EB2D1EC0F73469 /* UIKit.framework */; }; + 0DC8742BA8F275C7FA6980363765DBCE /* waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 47552940EDE352E5790999AC8E1A68CA /* waiter.h */; }; + 0DD278D8211E6692D308A4077394F786 /* GDTCORLogSourceMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = BE743415B7FC30444EBDD89B6507AE6D /* GDTCORLogSourceMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DE22D227E25E1B4F68FB59876824DA4 /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C648D09F08F8E6A3ECF80A287201519 /* iterator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0DF547DA9BAD527AF33D4945B0B697B9 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5C9ADB25F767269DDF5EF2AF1E60A7 /* lb_policy_factory.h */; }; + 0DFDF0AAC3138062D7DDC9FADF026635 /* cord_rep_ring.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CC858E829E3E2EC61D5D1C5D97167934 /* cord_rep_ring.h */; }; + 0E0A558221C10A9C6BA4BF30B08A1974 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A2F1B38CA3146C5A92CB9247522CDE6 /* udp_listener_config.upbdefs.h */; }; + 0E17DBE76EB288EDA103B3A7CB793881 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 510285E4877BE07331DD7620323B6718 /* file_watcher_certificate_provider_factory.h */; }; + 0E1DD6EE580C8E8C0712980D21DE92CA /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EC25DA102025232AF50B43127E9E078C /* listener_components.upbdefs.h */; }; + 0E22D207DDB7098C12CDDEA64543689F /* ec.c in Sources */ = {isa = PBXBuildFile; fileRef = B72CEFF25D1FE2A093A166B572DAC8EA /* ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0E3B08DD8DAC7F824C7889C33C63C30B /* exec_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4BB15B708325B752104BA81DBEE5C02 /* 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"; }; }; + 0E4189B3F93E2427F73726E86223EC6A /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 050DDC4D7F8329EC1EFD2B41631EA067 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0E47A9E998716D7D296A78CF23FDF86B /* string_ref.cc in Sources */ = {isa = PBXBuildFile; fileRef = 880E0EDE0ED9877F26015F4036CFD906 /* string_ref.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0E4A8A184270EFDE4E228420942A306E /* secure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CDC588D64A4FAE82B586CCD3A06252 /* secure_credentials.h */; }; + 0E4E1D2651A820E7314707276DA523B0 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A8C6C2BDD094FD039F5730EFDE8C3C5 /* context.h */; }; + 0E4F8656A7F5999F752AE3E7C3D43A0F /* filesystem_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9238BB64F3F699BF552FD098727548E6 /* filesystem_posix.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0E5E658110729B8B1D3E425F0290978C /* prime.c in Sources */ = {isa = PBXBuildFile; fileRef = 62883B5B659C0D486FAFD03B462C111E /* prime.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0E66A61B7B069FF9525B601B6D172103 /* overlay.cc in Sources */ = {isa = PBXBuildFile; fileRef = 94E5CAC4D604516BA11CC16B193F8C17 /* overlay.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0E76E395B009ED9B59902E7DB02156F9 /* secure_create_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = B7C10F1081335E2D389212D12F3D8F5D /* secure_create_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0E7B305962FFDE994204816DE9ACEF98 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E91DE07B22E155D8AC0EE01F5DE51C /* port_platform.h */; }; + 0E80492013D7DC088549713FA7685EA5 /* spinlock_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = B0A6C83A9B970807250C58F83C214595 /* spinlock_win32.inc */; }; + 0E95697B45909ED8A602AAF3FE40F54A /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CB509D8D53E64002169940AB93BD057 /* custom_tag.upbdefs.h */; }; + 0E97F956FDD3F49914706F66FB2552AB /* FIRGitHubAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = DC524CB3262A9D45FDC1F53DA406B415 /* FIRGitHubAuthCredential.m */; }; + 0E9FC962793B56B1AFB061980FC9E5FC /* transport_op_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46FCE4356896D32454A7257D3664D009 /* 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"; }; }; + 0EA085C1793C4A4742E757E9D76941B4 /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9E38DE18063124BBA380115509B40B9 /* 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"; }; }; + 0EA119999EC983BCF6078859F8D7FEB7 /* FIRAuthWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 605A6A3A9617F15346A7A0B7688DE823 /* FIRAuthWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EA2BA26256CC2670973C36DCD8EE1A3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C7BE8002CA7F4FCAB0BBA39430E5143 /* internal.h */; }; + 0EA8B96F6EDB5673C5A3292B6A702662 /* x509_vfy.c in Sources */ = {isa = PBXBuildFile; fileRef = BAB7BBB693941B4C804702273D2A1367 /* x509_vfy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0EA93CCA2077BBE9C244AD67CD6C269C /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 0710B7069F765DF8F52BCCA73398A9EA /* table.h */; }; + 0EBB62DCF8332CAC6630733BB82E792A /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 762BC53D27EFCEB2B9D073FC2E6B3184 /* manual_constructor.h */; }; + 0EC60E00CEFBEDAD96A233BF6E23A20F /* xds_route_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAA3A9AF05FF8CCCC31CC5F6ECF8E26B /* 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"; }; }; + 0EC64966923B4F7C291AA3829616F653 /* cord_rep_ring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 536A443C7B168F5FE23AC3F89D22B1D3 /* cord_rep_ring.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0ECAC02B5D1C51092DBB20D0FE45D8E6 /* inlined_vector.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = E9B3F50A4DF4D0F0009DA463D28EDFDC /* inlined_vector.h */; }; + 0ED53876B4F0706C134DCE761785B4B7 /* resolve_address_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = A79C1FD9D5E49DCF20306E7E6B80AEB7 /* resolve_address_custom.h */; }; + 0ED7366E531531B1ECD74D5212E06B50 /* stat_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF575700ABB5CD5091592C2A8D3DF24B /* stat_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0EDAA0E2C64B3EE3409AD4EE7D710C82 /* channel_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A52197B134D6DE7F3370BF4FA788EF1 /* channel_filter.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0EDB3C9A2F0A9C1444C1A1133BF30FE8 /* buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 8393534CE74E8E37E8812A5C8600940C /* buf.h */; }; + 0EDFDD393F345D4B51B67D1EB3AC4847 /* annotations.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9678763CE5D372B4DEC3C74681688B8C /* 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"; }; }; + 0EE5AF79CF1AB128FEFE906B93F9922D /* FIRAuthSerialTaskQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3AA2D50848F56517D1FF0993EC5E9A /* FIRAuthSerialTaskQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EF64277474B54ECB6E5F8C87337500B /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 522EEC6EB39210AC7D2EA76AB081C34C /* socket_option.upb.h */; }; + 0EF786D17F548C0CC21608F3DF305CA1 /* fs-poll.c in Sources */ = {isa = PBXBuildFile; fileRef = B6B8330FFF32C66DA58803E12204777E /* fs-poll.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 0EF8834987E23250F7CE55CDEF365BE9 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = EFEF2A92504D188B7030E2CE7FDB8E2B /* message_size_filter.h */; }; + 0F11BFC5A97E34B511A65E212AE84068 /* FIRGitHubAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F41C0000CC5C14E085CDEF4E387CD3B /* FIRGitHubAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F23E218C3FF7FA0183BD945DF2A9C01 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7BD9F4D44B1C856C58E7CBBC4BCF8198 /* construct_destruct.h */; }; + 0F2A427A20B93B1FBCEF7EC72D0759F8 /* firestore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3EB76217E00B05811AFE4868B5A3B47D /* firestore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0F2CE6CA3ACF9ABE892E57A6E90E09DE /* ec_key.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 24EBC54060D85C73A0359E1AC1AE8BA2 /* ec_key.h */; }; + 0F3F9A3B24984FC487EBA44372BE083C /* client_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = ED91E1A11C312D968889ECD726B8F4BA /* client_interceptor.h */; }; + 0F4B99EAD16156CF34ADF34057F3AF03 /* event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6A6A7371271803399B58D28FDC091837 /* event_engine_factory.h */; }; + 0F55EBDDE4745C9558CEA7B8EC545D60 /* hashtablez_sampler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B3D260E7A95F8BE74DFDA9BA72A24 /* hashtablez_sampler.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0F5F082BE59961CA847573B72C803F7D /* dtls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7FCCDFC029631CF6B738608355B72EBA /* dtls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0F6D30A880CD6DC708222FA2A8A0A09E /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FE1B461DD8FB42EFE382F301978AD4FA /* executor.h */; }; + 0F806018D78852623CAD5FD0C1BAB50E /* grpc_tls_certificate_distributor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50673DB4FF2C811ACEC8D9DF490200AB /* 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"; }; }; + 0F83734565165F6C40DC279C14F07DA3 /* document_key_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = AFEE4712648AEF17DA9088D37F87A094 /* document_key_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0F8E7E38B0D4395173FD02D7DAF1290B /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 349BA6408FE27319939D143F449200E7 /* xds_common_types.h */; }; + 0F9876700649D6A2736DD191A521D561 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A31911DF5E710CAC623D379A317EB89B /* load_balancer.upb.h */; }; + 0F99EEA74F38BEB8FBED71DFA7EC81B1 /* lru_garbage_collector.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC196B0419ADF9A76B0E337BB6D273CA /* lru_garbage_collector.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0F9E98966157E431A2F4BE2ACC70BF65 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = C84159350C081455E5B835937ECCA41D /* resolve_address.h */; }; + 0FA2DF74508C3BE88A1948861ED5B559 /* GDTCOREndpoints.h in Headers */ = {isa = PBXBuildFile; fileRef = 59BC9D848D1B6B3C32A63D007C657863 /* GDTCOREndpoints.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0FAF472E286DED47CFBF97D486C02F54 /* retry_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95566BA50F3E79FF09D2C3A4F9176BF7 /* 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"; }; }; + 0FBBDC34DED48A3EA2227255444EE627 /* x_sig.c in Sources */ = {isa = PBXBuildFile; fileRef = A34515ACD6901C51E8FDEB47BDB1C77B /* x_sig.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0FCE1A167EB2C86FC0E257F1231789F2 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 205BF1C76A0E9D1481CE6AD28CD46992 /* timeout_encoding.h */; }; + 0FD2F856B0FEE91C57B6002C1D5B27F1 /* extension.cc in Sources */ = {isa = PBXBuildFile; fileRef = F37BF284ED08D201B762CD82A45E8E27 /* extension.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0FD46B3C63F28031CC9E364B78F54AA7 /* string_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F9D535350D7601F8B49AF8FCAEFD4B1 /* string_util.h */; }; + 0FD68632DEB25D1E0032DA0706025B92 /* local_view_changes.cc in Sources */ = {isa = PBXBuildFile; fileRef = F44DC4C5DB5F37EA87926E0F9504607D /* local_view_changes.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0FD8C7AC06E3D62834551856BC8105FD /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 845D2DCD64F94846EDEA586E33704AFA /* overload.upb.h */; }; + 0FDF6E9CFAEBB779967784705A13DCF4 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 36F988D40EF06BAB7C6FBBF995871876 /* client_callback.h */; }; + 100FD43E0C8BFB954FAA4EE3B9582D9D /* ex_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E662F85AEE6DE5FEB013139002BE6AB /* ex_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1014A0A676D94E617A91E7AE233E9D74 /* pollset_set_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 27C7D84AB0688CF0D6A1973FB29EA0F9 /* pollset_set_custom.h */; }; + 101C52145F746EDBEFCF2DE540062DBC /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 9DC2368D64D3CA2CE800E521E617E5D1 /* transport_security.h */; }; + 101E15E591963A7A14917E0B4AF235EC /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3103D2707A39D8E54EE8A61BA87FE160 /* custom_tag.upb.h */; }; + 102C7ACD57856214AA8F004206B6997C /* log_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 56386944F1390AEEC7302B7F060CD7C3 /* log_writer.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 103B87FA441C4EDF897D140FAC80F9F4 /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F05900771B1B749660A7694EDA6EADE0 /* number.upb.h */; }; + 1049966BBDBFE1BE1C52DB89DF5068DF /* spinlock_wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 29661B030480BFE3B7104DAF36FE7A81 /* spinlock_wait.h */; }; + 104ED18B629CC7B8FD76A1909A8A0EE6 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = AFA08182C445DAD5AC15C787A3BA4A5E /* timeout_encoding.h */; }; + 1060DF6C4C4C23C73CC5F05E25B39590 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 94ECA8F9F303CB43D3D094FE0D4176DC /* FBLPromise+Await.m */; }; + 10614BC8EA4F4D3E0C5880841B43C65F /* resolve_address_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 100FE90A8B72D75B1436A17BBD682595 /* resolve_address_custom.h */; }; + 1065A04EBF9C825962420D0C32C9BA1C /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8182DE90E9DABD62595CD545BD3EEC31 /* 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"; }; }; + 107B1E4D302ABA6F53DEAA875114C1AC /* FIRResetPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7242FA240BCEA5FBC0B1EC7C49C1AC /* FIRResetPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1088DB9A2758C4C583AA5FF5E6FB916C /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 79D55EAE70CC0A017B4FA25867C21720 /* address.upb.h */; }; + 10A1E04D2B4AFA015973F97CD550D49C /* bytestring.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE1195BD5E812EC99D8FEEED599403C /* bytestring.h */; }; + 10B6EED6FE84EFCFD11706ECDBCCB564 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A52BF253E4C5847F80B6F42E98E8FE8 /* status_code_enum.h */; }; + 10D78D8621B0C5F5616F5DB94324D379 /* error_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10BCA44F44C44BE5FDEC11ECB7288C30 /* 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"; }; }; + 10F206FDA19EA45CCB43F7985434197D /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5E8BA21D9F1638EEE94FC9B32B4A5A /* lb_policy_registry.h */; }; + 11000CB8C0D0C1946A00218A4F75D52D /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6CA8F2BB1C640C922CCDE5CDE5B2D2 /* time_precise.h */; }; + 11082BB596E4273ED910C25C8DDC0201 /* internal.h in Copy crypto/fipsmodule/rsa Private Headers */ = {isa = PBXBuildFile; fileRef = 0C7BE8002CA7F4FCAB0BBA39430E5143 /* internal.h */; }; + 113267A86E61A4269C6737C7979482AB /* FIRAuthRequestConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 47D932414022EC9A2A59D90434F80849 /* FIRAuthRequestConfiguration.m */; }; + 1133D4E2C67EBFDFB908BB6E17715BC4 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = E84BFE442FE5B3E31724BFF5D194E46B /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1147EA95C75C9EB80263E770E45CB9DB /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B6BD5E6BDC6B8215DFAACF48190C23 /* alts_grpc_record_protocol_common.h */; }; + 1167214C657BFF2C1C6BC85FB7B30612 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F2DC1B0A9E93749AEDD26BB9BE70E97B /* xds_credentials.h */; }; + 116FD902EF31521015A31261D5AE4EE9 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = B1489C57C2D740CF8F0FB7881F160FD1 /* lame_client.h */; }; + 11807A4F6CD5DF34B89C2620DE743984 /* thread_identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6E2D5A5190920F4F77683C870A7972A1 /* thread_identity.h */; }; + 118549415D4566F3864AC9A0A782B555 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 2377BF3B9FB76D3DFA2304AF542EDFB4 /* async_stream.h */; }; + 118AFCECF89F07C0A13ABA2D18A09189 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 950F03FF3AED9D20A9F94169461D9BBB /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 11AEEA3B6C1C09CD2E9C842672362369 /* thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40F60846F6BAE6CA04878B15736C25C5 /* thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 11BA9F4690D9697FBB20F3EAF27A5D45 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 638B7695EC6F1CD6D44BEC11D1DFE44F /* auth_filters.h */; }; + 11BF05DF65173BC921BDB95328324C14 /* ndk_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E0F46DB2E7E772B6C0945211FC3103D /* ndk_binder.h */; }; + 11CD54572A1C673BDA5D961E5D9D0FEB /* local_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B413C77F04AE0E63FC2DDB36A89F9D8 /* 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"; }; }; + 11D8A191013CBEC58C7F8A12582DED50 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B3A0E7C79C10BC1B915AB5991D550A09 /* string.upbdefs.h */; }; + 11DC4DF58D0FFFE4262671BD42869CC7 /* fork.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 6210309F33436D6AF88C985CA34E979A /* fork.h */; }; + 11E1B3F120B8C9A2B8B35A4EBB205BFC /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FBAB31C967E337C38682013E259BF8 /* tls.upbdefs.h */; }; + 11ECED71F2D7A5DD82AE26BDD68662C3 /* e_aesccm.c in Sources */ = {isa = PBXBuildFile; fileRef = DB92F1816C1091E8E799442EDAA5FB5F /* e_aesccm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 11FE4676B810D421BB263E7DC6020973 /* snapshot_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64F39B0407B2831890DB5C751A5AE725 /* snapshot_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1201D19523A85691DC240F426B1D9963 /* strutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 78938AE84B4B0CD3E092DB5BFC209BE3 /* strutil.h */; }; + 120516265248B5D7965211F338387828 /* listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E4B2C0DF70958F59A8B7657891062B0 /* 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"; }; }; + 121BD6758D36F2B4FD62D652C154230D /* sync_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69FEB814AFD43E3B95D8C3936C7CD50E /* sync_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 122082CDD7BA4048A21BED21D4A5A143 /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = E3CBB83B455C610C6674C0142F9BA3FB /* dh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 122CAEC8EB05A9799B7AF070B8C473E4 /* FirebaseAuth-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A22E6AD4E4D02DC7F8512B538CF8E99D /* FirebaseAuth-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 122D37B38B08D4DE237F98CA7A1850B5 /* ssl_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F837447A5140745F7232F9EDEB41D64 /* ssl_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1234C7DDDCB261ADDC0B87C8047C2F81 /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = B4285EB5E539A6DA9DF6108FF788F74A /* json.h */; }; + 125868A0707A8D4DC9EE0819E5D564A2 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D66AC3130F7636C95C6FB4010BD7F853 /* internal.h */; }; + 125D90D005B61B5F2028BD650F9202BB /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B7AEE217840AC844F882F50A0DE17100 /* node.upbdefs.h */; }; + 1262A53AAB28337982FEFB9BBC77B5F4 /* service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = AABF7AC5B726AFBD8BBB5CAA0A4ADE41 /* 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"; }; }; + 1263398B00D0C4B1FFAC313E60FCADF5 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F9760BE422D096B78408B1FD8BB406 /* http_proxy.h */; }; + 126A2752DC36E4FA814F3B78D060951E /* FIRAuthBackend.m in Sources */ = {isa = PBXBuildFile; fileRef = B437BB0C58D1F2C6B8682233F0E8F27D /* FIRAuthBackend.m */; }; + 1271F611576A80789844A067E436B01F /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B40EFBE07116E3F340C6FF7DA728FBE7 /* resource_name.upb.h */; }; + 127D40B9691287C01E3C3D54DDB78BBA /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1920D969E10B9A607326A637566D9A /* http.upb.h */; }; + 1280952E4595FC697EDAA414481ED65C /* leveldb_transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A0C1C88D18FF76E9CFD9C3C69A04DCB /* leveldb_transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 12841B595BFBC39C996EE25375EC85AE /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC200AA7AEEB2C4D0CDAAEB3E00FD92 /* struct.upb.h */; }; + 12928DE7D8B01D07DEC28D7437084A5A /* cordz_update_scope.h in Headers */ = {isa = PBXBuildFile; fileRef = AAFC3D390499839CC90583698B0FCEC7 /* cordz_update_scope.h */; }; + 129462CDCA84CF30B3C85400CCFA8772 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = CE32EA3B644833C9F6D0BAC57CFE796F /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 129C290CE2D0F59EEB64391860854440 /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = DDEC335E818B06B1A6A5F9A33196DFA9 /* message_compress.h */; }; + 129EAEBD84A59F516B78AB241D4D4657 /* chacha.h in Headers */ = {isa = PBXBuildFile; fileRef = ED0F27A12D8EECBA0E30D9A2244C42E1 /* chacha.h */; }; + 12AA82670B325F498886513FD6F2A36F /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AC804C7AC738C2FEFF3CFCAC76FDCB0F /* alts_grpc_record_protocol.h */; }; + 12BEB07CC0AC2C747F047A9C95A2E637 /* gpr_slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9A66CC635D1A9FF2F776CA93E7088B /* gpr_slice.h */; }; + 12CC5BB4622939F36619BF13AF33E3CE /* server_initializer.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD640408F442FF20BD84FF1F5D38346 /* server_initializer.h */; }; + 12CD19A10E4895569429339E5DD4118E /* escaping.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F83E3A8812FBA630EDE81551029FD8D2 /* escaping.h */; }; + 12CD1E4B9E00F8537AEC43569122DB94 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AAB101F27CBBDDEDC48CC31E7B9CD218 /* config_dump.upb.h */; }; + 12E1702B6F9A85715BC9A4F1CBEBF8CD /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = C9310DDFAB9D2356CAC7C7E193950A80 /* map.h */; }; + 12FA097EF6D65BFCCCF0DD331BC34265 /* tcp_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 990BD39D3B1915F7706BAEC88238201D /* tcp_custom.h */; }; + 13087ABD23306E38FD2CF429861BFBB9 /* cpu.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 16D1468D1C803576335FC81D21922C9E /* cpu.h */; }; + 13094DEB4FA31BCA0612BF77FE9428E4 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D2F2CAD024C8FEC6E2FEC3B7DA5CAE /* sensitive.upbdefs.h */; }; + 1319148268508006BBE805FA73CF6B75 /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 905C34C484002FAF9696597DA4F3DA29 /* status_util.h */; }; + 1323B75A4DFEDB0871B07B98432AD7B7 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E7FA61B05670098B8D3C531EA0F120 /* alts_shared_resource.h */; }; + 133172E9247AB20785EA033B13763D30 /* beta_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = AE28EEEF36C142997E3A9E8D45C286A1 /* beta_distribution.h */; }; + 1331E123CB2D1C121A8C8EB6A51DEC0C /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3A9065CFD3738637DF3726FF12EB2BD8 /* security_handshaker.h */; }; + 1334AAF21D95CE6FF16F55FEAB4EA67D /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 256CDDA97DE535252457CA8A1AF5F4DA /* credentials.h */; }; + 133CB0B183E0CED569131236A1070575 /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 321BFECEF6999A994A74CCDDBEE3155B /* client_load_reporting_filter.h */; }; + 134A7A8D9158E8CD727FE26433DCFC91 /* reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B0556DAB43405BD390C9C68D59C0421 /* reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1353D09E656E15687208208CA967B467 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFAF9B53518753656AE8F939DDC8C5A /* url_external_account_credentials.h */; }; + 13634F43451C02607AFCDC343DB1A3EB /* idle_filter_state.h in Copy src/core/ext/filters/client_idle Private Headers */ = {isa = PBXBuildFile; fileRef = D2AD7FAC3C13F626E1056C668709C2CB /* idle_filter_state.h */; }; + 1371822373293463C69E1B7D8D27FDE8 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 771911D024A4F199E25F767A888E94A9 /* alts_grpc_record_protocol_common.h */; }; + 13766CB1F0F6480BDACA555A8CF538FE /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3F0B4A00FB713051A73CC8ADEC325B /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13768A96393E1EECFBDD5A2E13123FCB /* cord_rep_btree_navigator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1692AF6574C7F2637F422BC2F560CF77 /* cord_rep_btree_navigator.h */; }; + 13799D70D7D21E0A12172DF9C8C48AB9 /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 910E378A0F61EF9D7E8EE0C7336771C2 /* retry_throttle.h */; }; + 1383FEB16447A4335A8054D9D8D10BEE /* asn1t.h in Headers */ = {isa = PBXBuildFile; fileRef = 798E8C54A3924A91102AE0B6230BA4FC /* asn1t.h */; }; + 1395738F5AEBBC9B2599B74A35C45567 /* obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 6710FC1B4A30F4642F288B8D51B7647F /* obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 139629B3E48DDB28FFD4814D361158DE /* interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0B38BF9C1AABD653720CB3B55AEEDCF9 /* interceptor.h */; }; + 13A1EC7B6165CCB2F9DEB9E5B7D9CF6E /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4FB011FBF38983A560A386F247B366 /* b64.h */; }; + 13B0D66794AFD7D5D8DBA4E3052E1439 /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 59C780C773EC1CC8B0DAD0CC29C2E536 /* service_config_parser.h */; }; + 13B42C087FF1FDBB330FBB558F20EAEE /* exponential_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 236D2DCCD30F4B4A7BC4444B0857ABD9 /* exponential_distribution.h */; }; + 13C2B41A2ED0AF0E916B1B1C7845E1CF /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 18261E4BAE253A6F6BA582C2E392E430 /* signal.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 13C8CB891860A57A665CEB352D4863A7 /* FIRSecureTokenService.m in Sources */ = {isa = PBXBuildFile; fileRef = 11350B25D668B01D5F6C0AE072A85580 /* FIRSecureTokenService.m */; }; + 13FDFFCBD1EC63911105420EBA5B1C02 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 56015EE01B06FB947B8D0773128E0B6C /* security_connector.h */; }; + 140BFC74118594932E48AA1275ED0FE8 /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A54FA3126EB2F87B50889081BD285D76 /* port.h */; }; + 1416728C5C034BB96A1AFDF1386FAA63 /* table_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FC0E9CE6C3B92C7D2B44E95498A324 /* table_builder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14207A4DC9C7379EEB66F73AA49B364A /* cycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BDCF4567F6A955E8C5554D22CE50A51B /* cycleclock.h */; }; + 1426C6DC49C59DBA1461929C0A61077E /* optional.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4DBED22429E28A5FBF841B6DCDB99499 /* optional.h */; }; + 146C62D749D14A6F01DE2DF698380805 /* time_zone_libc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9AD9A275EF9AA19DBEEABB64AA72D2F1 /* time_zone_libc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 147F75179C46462C2A4967D602674888 /* FIRSignInWithGameCenterRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 7191D1AE4A0885DD51D293AABD3D5E25 /* FIRSignInWithGameCenterRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1492475F0AAFC6E745A00549F73D08A0 /* curve25519_tables.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 4D4EEF3B185A8F9AA4288068F2512432 /* curve25519_tables.h */; }; + 1496DCE68B22A275E443BB0C042D6D36 /* stacktrace_generic-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 13743C53A4F9FB6AC87CCBA6AF9C035C /* stacktrace_generic-inl.inc */; }; + 149D254564CF0361AF21DDF23E2617CB /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2DFE59557A38BB968888F6CBBDAA35E8 /* stacktrace_emscripten-inl.inc */; }; + 14A75122232D7B67E8D5947B5315957E /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6062DBB6B649BF59E421DE17865EBB92 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14C095C6391DC2499D89A3A1A6415FC1 /* binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3880011408AE9B2C6734988D40BB2F4D /* binder.h */; }; + 14CFB67D1E99F63B8C1D551AC1AF1F41 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D6EEF263EF1C997343E5F88EFE420B76 /* percent.upbdefs.h */; }; + 14D5A834B7F926C0AA8857FAA4FEBD36 /* grpclb_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37DAC466D0FF2071D7F2C0A2907317CA /* 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"; }; }; + 14DE8B38906E4F881C1E690D7D9DA13C /* evp_errors.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ECD77FA9B3989CC597C705A75CE524AC /* evp_errors.h */; }; + 14E7F028D4F3643D996ECDB786D96D68 /* message_compress.cc in Sources */ = {isa = PBXBuildFile; fileRef = E34C0C51DE600F90F25D778A38806744 /* 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"; }; }; + 1500314D29D16A9A01945E3692AF69BE /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A7E306843BBF9740DD3498CEB9873A /* alts_security_connector.h */; }; + 1505F02C55DA87E32EAAA8A75990ED71 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = E66C7244BCF0AF79F4888D4E8ECF2A94 /* rpc_service_method.h */; }; + 15192E441EE4A7C24CB61F42A14EAE57 /* aead.h in Headers */ = {isa = PBXBuildFile; fileRef = 309E291A30E56D8B13BBE792D7C21CF5 /* aead.h */; }; + 1529762E6F9A0B754A73E3DE4C598CD5 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B65B50C5C5DF709CB6D2A92CD9DA98 /* completion_queue.h */; }; + 153C79181C1BF4504A6D057C25F20220 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F77E316C33525C5A6483CCBA154AB987 /* validate.upb.h */; }; + 154B9099BD5D1220481068A498B61D2F /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B211B34506D911E2F346BB8EB0E71BF /* iam_credentials.h */; }; + 156BFB744A585E0617272A75CADFF19B /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E652D90040370B08F7621D0FFD2E3263 /* status.upbdefs.h */; }; + 1579131CF949327D86B097AC8700192F /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A68867A23E6110499E26416486C6BE /* timestamp.upb.h */; }; + 157C72D04E29FABD92C6E15099CC017F /* explain.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A0593E089D51D14F7AF5F09D44C5F6F /* explain.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 15834FB3BF217C2196C57CC5C6C60321 /* sync_abseil.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 55D852ECBA3506110319CDB7694912D8 /* sync_abseil.h */; }; + 158523FE0D198F4222F9212D9DAEF143 /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = D3CDC1DA9E8272F3ABC0188F99122068 /* json_util.h */; }; + 159019DD9974475A0CDEF2300DD37555 /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D0613480F9A32948BAE75943047F054E /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 159363F8023FC04D3D04679201B6D236 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B615C246F827C5529AA65E2EAB8D932 /* accesslog.upb.h */; }; + 15B914A4FD66310CFEA430CEBDA3B7FE /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 62A9736912C39F4F9A7F0A697DB5449F /* internal.h */; }; + 15BF682B9F2736907D39313B5647B43D /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 1719A2E866C59CB761E7391982451327 /* seq.h */; }; + 15C15C1EE961A41B93058C752E4D0D19 /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 433B554DE9925183DF09D9DF8DCC2A02 /* event_service_config.upb.h */; }; + 15FCA27CB02820BCC27F30CAC142B204 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = CB7ED9C61A95D6F808AA92EE929C8548 /* ref_counted_ptr.h */; }; + 1615E48EDA18E1FE297C2FC7E6BBBF03 /* str_join.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 7B5BE996EC8EF8DD39D79379B8789E70 /* str_join.h */; }; + 1636BD86E6D2880D230D7C7E7A5F6FFE /* string_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1630001339C3BF10141131BF51338BC /* string_apple.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 163A752ED428F7A1655C118A4172027E /* ec_derive.c in Sources */ = {isa = PBXBuildFile; fileRef = D16C16CF8D794A21D92188F4F5A15563 /* ec_derive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1641943135AEA73B070FC67758687C14 /* max_age_filter.h in Copy src/core/ext/filters/max_age Private Headers */ = {isa = PBXBuildFile; fileRef = 3C520F246B7C82D3BBBC969D2AB0E518 /* max_age_filter.h */; }; + 1641A60BA254F8EF2DECF9EA40F1492F /* stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 42740DB3DA6378C65F6DDD1952C42D34 /* stack.h */; }; + 1644809A5AF666E7C95865562F1A63A3 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = F1057FAB8C3052F92105AD81BBACDA9A /* channel_init.h */; }; + 165038579A96EAA5CCDAC9E22DD5C472 /* FIRVerifyPhoneNumberResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2943E0282918619D43A4D485F20573D0 /* FIRVerifyPhoneNumberResponse.m */; }; + 16503E4EB6D994EA5BACD71D96D6BEE5 /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 617B5B0176953E43067CA810CA6F66EB /* version.h */; }; + 16568D22491997EB5930F81B65A72C54 /* a_i2d_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3DFDCF742C7FC841023DF8B1096571E4 /* a_i2d_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 165A7FDA0BB94EEA004942D43C437052 /* time_zone_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = A37C580599EE2C0B74BA37A881E35699 /* time_zone_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 166E274D8CD1BD9ED376D3B8D0721C34 /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9DB01B854BE88579BC434E62D41ECB74 /* python_util.h */; }; + 16827098E2DCFFF1B5991C0E7CB6A708 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A435EC9B400C5113CDA3935FBFF22932 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16872431F8CE1EA5C5110234CB3ADE2F /* pcg_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4E766CAE6130F17BCF4C80F2189C4888 /* pcg_engine.h */; }; + 16A12DB71004F41D31116B1D06890991 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = D1964D920690D6BC66477832572B1AD3 /* dynamic_filters.h */; }; + 16A3ABA54E70882ADE5EFF56453CF58A /* bin_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95E32BCCC5363DFC9FCFDF8FE5FAD5CB /* 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"; }; }; + 16A95741AB99D606BB6E06E7F5D321C3 /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B639A70BB67FEE84AD657027E13D7014 /* resolved_address_internal.h */; }; + 16B0F04145E0A87023642FD6681CA8C5 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5921B00E6545679F98ED5E437FE12C /* local_subchannel_pool.h */; }; + 16C29B34D71FEA932D54BB6472A93660 /* user_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 407B5EC18580E2911C8F401BF6A659C2 /* user_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 16C800C6A6E5E675235B4E1DD0E7000C /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = F08DCB8DFCDB30C21FA1134455BD354F /* grpc_authorization_engine.h */; }; + 16D14D1F812E624470F5AB907A37A8CA /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C7BCE68CC73ED513E70158AFA22B33 /* percent_encoding.h */; }; + 16DC30CA5CC6916B751E9BC0DFA79BE5 /* GDTCORMetricsController.h in Headers */ = {isa = PBXBuildFile; fileRef = FDACA4A9BFC3373324F691FE0C3C6706 /* GDTCORMetricsController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1700384E7A44AAE857FCFDC0D97DD5F4 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = 94B6915237B37F77FF5A15BB8AA8E474 /* iam_credentials.h */; }; + 17206EECFAD0BD280AEE421D6B761E85 /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = AAEBF1B8573F27431022C28AF0366694 /* civil_time.h */; }; + 1725D62A8B016F1FCBAE555466C4619A /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 4102AA4D934483719AF83C6BF818E021 /* check_gcp_environment.h */; }; + 173BF10ECA8400F00AB97547363F539F /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = 08BDB61916906ECB1F57C6BAC216422D /* print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 17467EC97BA91B7099ABF5295F6766E2 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A908152B7B2D5531DA8798A30739E48 /* router.upbdefs.h */; }; + 1761A59E5BE4065F5195E99E15DEACF2 /* env_posix_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A19B43A8EEFC3CDC8ECB094A7374160 /* env_posix_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 176961DC41D0C0928576059585549BF4 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7151F8B6A513A491A9ED1DF985822077 /* xds_http_fault_filter.h */; }; + 1772D7BD9F9885A12FFB5F621254A8BE /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 56B8516AE59330EEC37AFBBFCE18D088 /* xds_resource_type_impl.h */; }; + 1776CC8AD218A37AF9E788A0A8E909CC /* cpu-arm-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 89B88E808881442BC6BBD63B8F1455E8 /* cpu-arm-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1792A31CF1CF947B592ACD8503ECEE3D /* FIRAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 477CE6BABF27F3EE00B02190BDCC2B8F /* FIRAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 17936D00A52649905E63FC2102ABCA78 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 910E378A0F61EF9D7E8EE0C7336771C2 /* retry_throttle.h */; }; + 1797C1A727A4510BA6F9EED7B209C195 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 9D4DA7AE45C5A2BBADADC9FA8311E9E1 /* channel.h */; }; + 179B620C106E991434B9DFFED4BFAA9A /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = B25CA275CD71214CCA50293281D337FB /* alts_tsi_handshaker.h */; }; + 17A718A39CADB85FD7877310EC966D9B /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = 85432502D15B6E72081464943274CF23 /* gsec.h */; }; + 17D5CE14DC89AF7F6F6E014CF0701944 /* asn_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F4E7738BF016E01E2AB6E0604B2C98B /* asn_pack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 17DB389EB9A46BA30A85C365DA2AFE0B /* config_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 70201AB404B80BCFD74785BE68F49F69 /* 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"; }; }; + 17DD16B110B458BB23E11CD9704AD7BC /* FIRSetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = A2370CA1B0FD198E1530351E03AB3821 /* FIRSetAccountInfoResponse.m */; }; + 17DDBADCED9368AA23D0CAB093113A34 /* xds_channel_creds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E20BC731E6E488E4C265B07378D28D1 /* xds_channel_creds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 17E171632DC8B3A636F89601884352FB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 17E2ADF9445C0348AD539179F0BBD641 /* channel_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = EF33649D1762EB5CFB7C515A41307E90 /* channel_interface.h */; }; + 17FF621FFB9E9E084EA018EEAF31249D /* FIRGameCenterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 189BE9F0F9C3B90FF2847B32DA15A742 /* FIRGameCenterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 180505A50CAC70C494F565291F8DC853 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 34BAA9CFE82C4136E17331565A543E6B /* percent.upb.h */; }; + 18084F3D5145C15D17F777C1560DD52F /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 41097F5B724FCE12E5E9A0F5DCB0E747 /* ssl_security_connector.h */; }; + 1824DADE896403AACCFF6A9D67058DC2 /* backoff.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2324ECB5A326712897DDD9C76D11F9C7 /* backoff.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1829A0326F2A2D0D4980EA887B87D814 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 747F5398DD2517835079DEDFB1AD1BB2 /* server_interface.h */; }; + 18484F32A8F7B406DC1FC153AB8A0984 /* string_windows.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 53E8352E869D06DFCDE803C7A17C457B /* string_windows.h */; }; + 184CE7C18AD6D4D7C057A071F882CE7A /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 92387A676D8ED841D760841B167C8E06 /* xds_http_filters.h */; }; + 1857E346A4850971215C3869F5D10728 /* subchannel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 749EC29295DD07149C5CAEB9B787F0D2 /* subchannel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 186437B499B222590CA865233E740F50 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 695354E011B4785914545C7878A1D405 /* resolve_address.h */; }; + 186F8E2217A9C39475FCD7807FCAA094 /* x_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C81ACF44586BC3C528605123DECCD24 /* x_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1873659D349363835880BC311CE27E8B /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 9F718B3E77CFF3D4A7A5F54834AD7B53 /* ssl_session.h */; }; + 18738826058E4040C3BE231610747D18 /* field_transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEEF6CA2D1F941134ACE0D24FEF97843 /* field_transform.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 18744E2AD6445B07389EFDC8D1D62AEA /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 007F15A5EC4CC06FF5C5B8A8C989F5E8 /* context_list.h */; }; + 187480E34A090505EA2C706C001B4C77 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB3CF4C25ECF864BBD7C871A0458776 /* timer_manager.h */; }; + 18796A843B9D2B266709616C346368EB /* reflection.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = EBF7D7BF67C828552B092F108A769505 /* reflection.h */; }; + 187BA27DD4FF5DC436D95288E4049A0F /* common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F6C8934F4006159D3C59FA43FBDE1EAC /* common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 187F4F98CEDF6F07101B3F6D1627DE50 /* http_tracer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 79B9E61FF27B6DC6701C0DCE79C6DB19 /* http_tracer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1892AF3BDC0DABD5011DD25576EF630A /* srds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D6A66D1510C22F05BD043A93D688A3A /* srds.upbdefs.h */; }; + 189A6CAE7828507A99CDD96214B5DE8D /* ec.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7E043879D480C8F7A101ACF87C6182CB /* ec.h */; }; + 18A9770DE1BD620805F0C1F9B643D675 /* internal.h in Copy crypto/ec_extra Private Headers */ = {isa = PBXBuildFile; fileRef = D4A13186F15804755420D3E3AFF50C38 /* internal.h */; }; + 18AF00BF50857DDFF3ECADEFDCCE3410 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7194109719C1344EE7ED556CEF056D92 /* alts_zero_copy_grpc_protector.h */; }; + 18B0E4ABA98973B940A936DDF2C426B4 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D4AC709391190685A171F7294535A4F6 /* ev_poll_posix.h */; }; + 18BBBB9FFB290E8E4E9601C600FA5CE1 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 20C6132682307EC691BC2DE03A3EEA26 /* chunked_vector.h */; }; + 18BF10EB5D1274008DBB2BC0EDF3F3BF /* leveldb_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2C74D0EE40FB4F8857D42826FCDA16E /* leveldb_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 18BFFA66CAA634E39FFA79903FF85FD0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2484DB461B84FEF1ADCF6BCA0F071A5A /* internal.h */; }; + 18D40C3B94928D2CB4B94E89D2764D71 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 171451AD179ABFADC8A281A419A41F47 /* frame_ping.h */; }; + 18F65F51CA59DE9700CC55AC3D15CD8B /* symbolize_darwin.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 6FAAF56264CE98B1859A2EC38441CA4D /* symbolize_darwin.inc */; }; + 18FBCB5B87EAF94BAC8E8AF542A0C3FE /* des.h in Headers */ = {isa = PBXBuildFile; fileRef = 2463678D7A084E5AFC1E97F138982AC3 /* des.h */; }; + 18FC430C03ECDBD2A8B53D01090BFD9F /* set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = F42742954F5F438E444EAC53A3A9B888 /* set.h */; }; + 1909AC7D85BC2E5191963CBAECD21859 /* randen_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8B5CA7F4B83038061D4EE6BEEC960BDC /* randen_engine.h */; }; + 190E9739605ABDBDB3D088A6D78893CC /* grpc_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F6395FD60FD3776C43DF65880FFE8819 /* grpc_posix.h */; }; + 1911FA8FBF019E5758E1F81D6C826E22 /* leveldb_opener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F8102B95DA6099B8E7369746AE56339 /* leveldb_opener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1918A8F2CC8BCDF0DA86737B37B5631A /* internal.h in Copy crypto/fipsmodule/sha Private Headers */ = {isa = PBXBuildFile; fileRef = FB04A578884285731832F180BE268525 /* internal.h */; }; + 193E684934CDF489D4C664908EDB44AB /* Pods-Flash Chat iOS13-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C9338EA578D63C3C7663FD96C2A31C5 /* Pods-Flash Chat iOS13-dummy.m */; }; + 194556331AD33B5FB4AC55E5FBECE685 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D92D6733C37F35C91FECE17257F594B /* certificate_provider_store.h */; }; + 1965F59C2C0ADB18EDB8A2B41A35764A /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = EE36FDA2D1DDA879C79418D0764ACC8D /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1972F8A53B4BCDE0FD0086A286D09F9E /* sha.h in Headers */ = {isa = PBXBuildFile; fileRef = 24BAC47328C1C9181CE9C233BE3B8E7B /* sha.h */; }; + 197EA778397540ED7C725DE1C75766DB /* FIRSignUpNewUserRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = AB08E06B8E7808869C178FC7BFAB605C /* FIRSignUpNewUserRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1994DDD22FB1FDBD115F28D63F4D8018 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 65213732DF4810441A91ECDB47FA5B04 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 199ADC75C1C4A72BBDBA8C89236CE050 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2F1B38CA3146C5A92CB9247522CDE6 /* udp_listener_config.upbdefs.h */; }; + 19A08D4B7C1976DEE6F557B4D49E4D46 /* create_channel_internal.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = E793B27DD447D1E56046628AF07FE7FF /* create_channel_internal.h */; }; + 19A544D8A14B6BFD93225A4176830B04 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = D6F41A9F8DDA943C36374194CE45F422 /* validate.upbdefs.h */; }; + 19A5E4B2BDF5C7B48415FC32B9A96919 /* tasn_fre.c in Sources */ = {isa = PBXBuildFile; fileRef = B20CC7C12E04A3C8F3308E5AF7EA2989 /* tasn_fre.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 19B26711EF3C0562EE62F3E1015DE2C3 /* server_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 297FF06C68058D0F2AE5344DAF07B0DF /* server_credentials.h */; }; + 19B5E0DCD7E5676ED6EDB4A396BF66B7 /* walker-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B357F6F302DB165EBBC31386F7737D89 /* walker-inl.h */; }; + 19C258137B4616B12222F97A53A6509D /* atomic_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 40085EBCFAAFAEB4C3F55ACE596D9F62 /* atomic_hook.h */; }; + 19C93A8AFBF2D7141C50BAF42ED08E6E /* subchannel_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D1772E72C57385D1D1736D1C2820D802 /* subchannel_interface.h */; }; + 19D8E44E49FA5D7375DCA06635209DA7 /* dynamic_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69E678E29ACD6A376DB477E1556D2D2F /* 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"; }; }; + 19E2AEB3F61B8301C9B2D4CFB880FA32 /* FIRMultiFactorSession+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 204B6969AA8AB4B7254F7B3780CA30AA /* FIRMultiFactorSession+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A0202059AB594286379DC06F5BB92BC /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9B8162CCB2B857FDAE262DD5D1BB4E70 /* value.upb.h */; }; + 1A06A0F7FD64D983FCF1175922BB8197 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF375D0F95249AF8180A517BBFC62C8F /* resolver.upb.h */; }; + 1A0A135AC1DCF023C326C7FE5C87371A /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F31A74823311E90FE61D5C1788EFDA2 /* resource_name.upb.h */; }; + 1A0E68A8555D01D3D94EFD42EDA1D2D2 /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7B65C34B49D2CCFFE7CFDC736C362AE6 /* internal.h */; }; + 1A146AC9163715EB16408607E67E1F84 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FFFD88CD72F19BE852782F0314B8426 /* slice_refcount.h */; }; + 1A26BB66E3EF22D9EEA745E69D5D2EF7 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = DC19A601B51721914230A09F736C4924 /* upb.hpp */; }; + 1A36CA23ECE2D4FAEB755DFB68A356BA /* memory_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = D9B24A5E61BE721C4F637603676CD6CE /* memory_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1A373C64CF820F04A2DAF5AAA9D3BD33 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 84ACDA529F2AFEA779F7FE3FF01046F1 /* ssl_utils_config.h */; }; + 1A3E693FA2140CF53D66066BFD119513 /* time_zone_info.h in Headers */ = {isa = PBXBuildFile; fileRef = F29064FE7E727DB63F736F19E8C8BA80 /* time_zone_info.h */; }; + 1A6BE2423D21D9643C17B7255B8EC833 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 6882255841D4F9B10CB68867864064F7 /* alts_record_protocol_crypter_common.h */; }; + 1A7EFBCD5B52C93C1B2A890A4FD49DAA /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 4374B43425A2707FC3455E40C8CD9C40 /* pollset_set_windows.h */; }; + 1A84573311603EF90D1FAFC47B2B49A7 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6A4E9605CCB29C2A2FD2F166AF822B8E /* xds_api.h */; }; + 1A9A2240C1DBB2B5E6CA662C750B2A44 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 42CC879F729CF2725DD87F5DCE7E06F6 /* context_params.upbdefs.h */; }; + 1AA969D66519DDAA17D7BEAFFCECCD3D /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7784D97B57EE1C91F8B93163F7706DCA /* scoped_route.upb.h */; }; + 1AB1261B47AFFEE810FA62880160FED2 /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 0AD2DBB335FDB80A89F6676079F6CAF7 /* core_configuration.h */; }; + 1AC45FF9A34A23531068E5AE86DBA8DA /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 78819602C38336B6A02B60CDA1F953B7 /* firebasecore.nanopb.c */; }; + 1AC577F776327173B00E37E498627267 /* seed_gen_exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B41DFB40D427DEFB68B040A2189B9C /* seed_gen_exception.h */; }; + 1AEF4874A0C7BD2D737B12658E841199 /* interceptor_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2B033A1AB06994F5A86D4D7687680540 /* interceptor_common.h */; }; + 1AFDBA707DEBFFA3D3A2F8023E58EC05 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 208684B9B33542CD9573C1798AAAE64F /* cluster.upb.h */; }; + 1B19688EE9FD31F82DD75B1DA7F72A50 /* cordz_functions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82D1BEC33AF5E8C2F7C809125E1C293F /* cordz_functions.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 1B284153FCE18EBB4920CFE074E27373 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFEE1AA7CC544A225BE1C2CE2CE4497 /* status.h */; }; + 1B3A267BB574DFCBFC92E2EAFEB23A2C /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 51B81A93BDE44C556A5FE22B2FBE96C0 /* transaction.h */; }; + 1B3D46A77C4C4DEC9022841AB7BB05C4 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E4188992B9B4A607DF20124CF73D9D0 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B4E83E95F566D3EAB45DD021457B4D6 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E33BBEAE7D9E78940C9F05199516105 /* filter.upbdefs.h */; }; + 1B57B8BA0F7BACF9015F84C8D8E4E1BF /* sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = B2C798C0E44B904CD0995753D99FB5BD /* sha1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1B5EA325D919708E38458F00A509C5C3 /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8C35293BCDE88E397197E78F775756E0 /* slice.h */; }; + 1B5F59BC90B1B17969A7C5D836DCBABB /* cordz_statistics.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 49BFF34B5E2A96F249DE8E6CB07C7537 /* cordz_statistics.h */; }; + 1B632B2D6668751C9826B68690B80D16 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 30B8747CF4B6991912C14A471762EDA1 /* dual_ref_counted.h */; }; + 1B6470A4C47598462F074402D40F48A8 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F99C09C601326FC2A42B485B897C92B /* completion_queue.h */; }; + 1B71949F3318E9A9A3840B8EA2E5B27C /* handshaker.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 46859B2560E594DB99517CDA6D0E49E1 /* handshaker.h */; }; + 1B7F451757829C6DD7FA94AC55497758 /* cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = E68C25CF8F323DF36033D259BD951DE8 /* cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1B8ECAF9958A2A773A5F33F7CE302963 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F5CC6BBCD8477E1A3B2223362E4153EE /* cpp_impl_of.h */; }; + 1B909E963BB1AE5CC1296F224CCBEDA1 /* FIRVerifyCustomTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E2CE8F3FC5547AFF874A1340C5D91830 /* FIRVerifyCustomTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BA416B3E26FF177DE91C9B340E09C89 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 3519D86314F640F1A4BB887F4714E004 /* hmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1BB377B92BD255B9309AB3D1384DF382 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = B23FD13FE224A936D0261009BB69C601 /* parse_address.h */; }; + 1BB5359A266079882C153631B2E56EDE /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F11E073EAF48F7AACC47F18BAC36DF3A /* http_connection_manager.upb.h */; }; + 1BC6FFB254E15C00CD3F0D6A830D3F84 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 63759BD8A6513431CF55C91021C41070 /* channel_args_endpoint_config.h */; }; + 1BC8C4C433F7A324411E4EDA0F354FF5 /* fastmath.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A5EAF5C086D9D3DFF4B6433874C511B9 /* fastmath.h */; }; + 1BD12364C8A4890E59157700D73C4B77 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BD9F4D44B1C856C58E7CBBC4BCF8198 /* construct_destruct.h */; }; + 1BD3A1FB5F725B5BD9AE3E46CA13792A /* empty.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BCE53906EF594B37ECA01FEC8E2F31E8 /* 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"; }; }; + 1BF5943DB19A5CD751C714F47232A9EB /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = 23B216EE179C1F4501083821CFAA255C /* GTMSessionFetcherService.m */; }; + 1C0FCF8938D66DE0BF49D1516E1FF961 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 740DACDD3F5B8CD5EE986D22C6DB29F8 /* wrappers.upbdefs.h */; }; + 1C20D0F00B84D2959101CE3BFED3955F /* grpc_security_constants.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FF6EAB0B70F43AAC2C4F021C8D82A9C9 /* grpc_security_constants.h */; }; + 1C224B3265AC95C1B51587EBB6F6C893 /* create_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F805874AC029880EAE7423DAF72EA4F /* create_channel.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1C2957A558FA239715531BBD74A137FD /* re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E118E2CCE673570D15354FC58A70E95 /* re2.h */; }; + 1C30C101AC79B2AF5E847D027A059C01 /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 626B787D7C663EADCAD9F21032E3FE61 /* ads.upb.h */; }; + 1C38B738826DBEEB06891649704D9000 /* check_gcp_environment_no_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = 029515E0EF6EBE6E350B8384AC34EB7B /* 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"; }; }; + 1C3BE7E8C6FD77B1F586B06E733C020A /* is_epollexclusive_available.h in Headers */ = {isa = PBXBuildFile; fileRef = EF2F0C97F1D9CF3CA234BC13964EFE5F /* is_epollexclusive_available.h */; }; + 1C3DEE5C34776588F9789ACCE5A496DC /* tcp.c in Sources */ = {isa = PBXBuildFile; fileRef = 91BC5A400DD66545B6E9B9B32B08A7C5 /* tcp.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 1C446ACAC4E5FAEE76D6B29A2BEBF8D6 /* protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 15DFA99A1E4FFDD6FCFA2ED7C18EADDC /* 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"; }; }; + 1C4747CB77184757594DCB9E73E404FE /* FIRUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DD15D42C5ABD98B97781169C4548A123 /* FIRUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C67276BE85F69617F471CE0D51AC381 /* ostringstream.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4F000AB570CE4D5019AEC98EA860295B /* ostringstream.h */; }; + 1C74C7EFDDCB42492F329B5C803D34A1 /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 88354CCFDB011C967418B8C61B951D83 /* status.h */; }; + 1C7C3971D2464CC2C9DF72208CFED75A /* lds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 193F7ADDA156958CBF17C7CAC7B1FE6D /* lds.upbdefs.h */; }; + 1CA455B1D96D7371F14A6164B4D8462A /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D24150129CD79110035F2220F2D4708 /* sockaddr_utils.h */; }; + 1CAADC2E757DCF27AB799ADF6CF4DB21 /* time_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 927BF294F8E5EACA32AFE5701E85BDC5 /* time_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1CB87D516948BCFACCF6BA24890A1FE2 /* pollset_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 153C6D1E0F5FCCCA89FA9B69CE05F308 /* 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"; }; }; + 1CBBA793E953FD52DD5600F0E34BD81A /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E023981F9B188B33FE9DEEA957C6D97 /* status.upb.h */; }; + 1CBDC2AFBA5FD159FD00D6A11E22EB58 /* dsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A00EFC6DE19312B21355EAAA97DDBA /* dsa.h */; }; + 1CBE4E1EC5BA9E4E049A3780F78B7CBD /* pem_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 5AB34B6AD2D066255BC3DDD9CEE5DC37 /* pem_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1CC493AE20E3319A5F656075C3920654 /* document_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 25386FB1C6F4C090D700085BA82519CB /* document_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1CC5B2FD703CC1019C5EEB4E889FE01B /* client_metrics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 956373624CB7EC74163278548B259D11 /* client_metrics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CC5CC4FA97999AAF9278C8DBA0495F5 /* remote_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2032024ECD488D25330C9045E0447A69 /* remote_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1CC924ABD55A453338EA6AFF17AA2887 /* FIRAuthExceptionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 70FE3BE36F396F0EEBAF0368A25FCA42 /* FIRAuthExceptionUtils.m */; }; + 1CE7B8D4C3B56F3A032378FA7F2E9A1A /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C35293BCDE88E397197E78F775756E0 /* slice.h */; }; + 1CFC900E98F7BC8626AABB6B8ED923FA /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 230B38CC0F95584A3C8FB7465C7022CD /* error_cfstream.h */; }; + 1CFF2A7F9FDF287A21A533BB24E23848 /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 1883CE7E6B62BD54718E10BCD9B1D63F /* poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1D192E9A387ABD6A8433FA049F6B146C /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7043E79F03F3F1F7874FC445B5E3FE12 /* dual_ref_counted.h */; }; + 1D23C1AABEFC3E2DED41D1711D846912 /* metadata_map.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1DE6E6755A31DC227B90792B742314D3 /* metadata_map.h */; }; + 1D2A6E12CB7BA232FDA4C22B093C5549 /* connectivity_state.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FEF102239F868716D826D65BC45454C7 /* connectivity_state.h */; }; + 1D2FA6F045BAC64775FA65DDA83734E2 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 53A9AFB7FE6AE452B55617783E794CB5 /* fake_resolver.h */; }; + 1D31735692E74473433A455144133BA9 /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 779F0DD508566888E01FE684961D919D /* xds_routing.h */; }; + 1D3D505D360C579BCF56F27B576E8F4E /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF5D7AA695FA56292F502C3023132E6 /* typed_struct.upbdefs.h */; }; + 1D556AFD5E542AA1D082CEED483FC6EE /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EFE55E7780A19D564F6256D77BAEFD1E /* rbac.upbdefs.h */; }; + 1D58F33584F578FC258C01D944BE7A01 /* wide_multiply.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3C9A55A22AFB9E2CB998A4C43DDB82AC /* wide_multiply.h */; }; + 1D6D9F808470A8BCBECBD098B96A520E /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6B60E266A09859B3D011723E8A5AB7BC /* health_check.upb.h */; }; + 1D726DEDA168EDB88FE828A49CC3E09F /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C665D1FC2400C7FBD0985A56412D91D /* client_authority_filter.h */; }; + 1D7ADE8862D1F1C2686F5213C72D2F1F /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 413336A3AD8A68C59E99DCE2EA66D53A /* core_configuration.h */; }; + 1D877F02414CC8E309ABB430D2482456 /* charconv_parse.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 81D198033F014ADC43BC5501664D54E2 /* charconv_parse.h */; }; + 1D8E70C3BBFAD029C38B0B53A9E815EA /* address_filtering.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCE9A776DDC0D8B3FA3920962F113D22 /* 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"; }; }; + 1D97FA7F8A5F8898296C8EA641BD9F38 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B6915237B37F77FF5A15BB8AA8E474 /* iam_credentials.h */; }; + 1DA3D538B05E5EA7D8AFDB474E54DFD0 /* table_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B99BBA2743E8D6DA8761F2E03886760 /* table_cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 1DAE90BCF4F8B251ABA63E9E7417CFC3 /* throw_delegate.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2BE0C66EE00225CD86D66522CD44A9CD /* throw_delegate.h */; }; + 1DBFA205331D68FBB5022681A4757D4A /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D725A6D66D200A4062814D8DCD798D /* aws_external_account_credentials.h */; }; + 1DCB0DD07C68D2EB76661AE109963C35 /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFC452A280BD8091CBD238A621270F2 /* altscontext.upb.h */; }; + 1DD3C2B6B92C37FEB0AB8FE9BA96BE1D /* regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2216972EA04C05B04C0645B1BBC93DB5 /* regexp.h */; }; + 1DE0C774827537C76AEBF0F501B8C59B /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 205BF1C76A0E9D1481CE6AD28CD46992 /* timeout_encoding.h */; }; + 1DEB74353AFE8F17A009938E202FC704 /* ctrdrbg.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BF455F08AF66120D29FE0C8763906E8 /* ctrdrbg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1DFF90D5E6933265DBF28C16BDE2DF3B /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = BB77292601473E9A170636A1AA174E03 /* resolver.h */; }; + 1E1E7FA490ADC79A53F41C7B53263C62 /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = BCD1545900C0E9A02EE796E16CF9B24A /* xds_http_filters.h */; }; + 1E218E32A95D75BDE4985FE5DE9D7334 /* filter_block.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7491A8987E9FBCBE8F125AE340B1DB /* filter_block.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E2300DC82191294A621AF4CD1580E31 /* FIRSignUpNewUserResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = D993D57BB99C0DC1B3D77ABC9CFA42C2 /* FIRSignUpNewUserResponse.m */; }; + 1E254BFE8ED72FA67F3EF2D27031ABF9 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9AFD1BA961BCB07D0872C543E6F2D8E3 /* xds_channel_stack_modifier.h */; }; + 1E364DE0E4CA8F02CBF5E4C4C3EEBF4A /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D754F915A54F7204B4133F864F51534 /* listener_components.upb.h */; }; + 1E39193DB37F0594420F96A7D90FD5DB /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D43F253405F60D294BDB61035F6814C /* resolve_address_windows.h */; }; + 1E3E731B01B6145114CCFE436DDF8AD1 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9323ABB89CB8331D8EA0E30B772E7EBB /* method_handler_impl.h */; }; + 1E440D1CC7F42928A9FA847655E1EB99 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E93DA065798B44653FDAB12CC9975C /* string_view.h */; }; + 1E516514AEC0F2F78BFB65FDD8BCD755 /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F49596DE6787F85B343DA7908CA831 /* health.upb.h */; }; + 1E8467F8C6C3587513506B3E7EE13A1F /* x509_att.c in Sources */ = {isa = PBXBuildFile; fileRef = A3B8CD40AA61FA847C0ED9CB838E6963 /* x509_att.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1E86E69322DEBAECA2130EC7BAEDD1CB /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CAEA2B223635550821BBD7A0A4BC5F8 /* xds_bootstrap.h */; }; + 1E97F9BA5818C902C9CB9F06898DF3F5 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B1BE6DE39B375CA74D5E55F3B24694 /* FBLPromise+Validate.m */; }; + 1E9871D98A76D5183DB2845DF8DBC70F /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 013B743A93E8962FA126FF160E6FBCB2 /* lrs.upb.h */; }; + 1E99205335B2767EF7E1D5195FC11691 /* FIRFinalizeMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A6E7908BF85BC6DBCC19074CE7B30E /* FIRFinalizeMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E996295F957C6FE72509894A3C9B1A6 /* internal.h in Copy crypto/fipsmodule/md5 Private Headers */ = {isa = PBXBuildFile; fileRef = FAA79673E81FD7A35B4230147E9F3C9D /* internal.h */; }; + 1EA8E4FDCD004D470B2C8E8AB272E8CF /* explain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B73FA74579E80BDBDD2E69EA8B4603 /* explain.upb.h */; }; + 1EAE1A9B56A3648701CF3F7E97369DBF /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 46736FAD9318C2F7FE1755B3D57CBE43 /* pollset.h */; }; + 1ECDDEB266937A5CCAE36E41DEB720C6 /* load_balancer_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79F37191C73878568A494700DA5C9527 /* 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"; }; }; + 1ED8ABAF5AA49D88A474D9CEFBB65030 /* child_policy_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = C6812AA0CAD1171442D8A0781FFA0DC7 /* 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"; }; }; + 1EDFF96117AF7AFDA8E5A1C845D72428 /* pod_array.h in Headers */ = {isa = PBXBuildFile; fileRef = B30DF76266D5E6CBC677DE20AB324755 /* pod_array.h */; }; + 1EE742DADA866ECE60CD9265364AB495 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5C27C52BF568DFDF1AF4B53997D8D5 /* struct.upbdefs.h */; }; + 1EF05B586FF14B0C9A498F11B7BE7F7A /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B7202EFCF92A26B903E03337FD622E68 /* value.upb.h */; }; + 1EFC93F46E08CDBA7CCE3D114F757BDE /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D16374A016B73B7C4CB4BFF1F229D3A /* internal.h */; }; + 1EFDB4DC6B6B9DC52C3F56E8705CF309 /* charmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C8724A176B8050462592A9E1E2999B /* charmap.h */; }; + 1EFF72E543BE96989A985CDC4E3F28DD /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C81D1C36629B2EE09FA0ED1A417D46DF /* context_params.upb.h */; }; + 1F0BC94445156FA62B464081C1A89870 /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 90A68867A23E6110499E26416486C6BE /* timestamp.upb.h */; }; + 1F1BB248E0978C2570B81CFE745E6CBE /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F6484DE0549E65A4DB351A4FEB7820 /* promise_factory.h */; }; + 1F1DB9850A7BC695314A2D53E67530DC /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 0710B7069F765DF8F52BCCA73398A9EA /* table.h */; }; + 1F1EAA88C0C99A494E8C741CF2E9CA8B /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = E37AA8DEA0AAD92413F3D4762A3FF6ED /* pollset_windows.h */; }; + 1F1EC9BBCF99F0E985CA8F80A117EBCF /* port_def.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 3AEDDFE15F190AF5153C2F9559D81F50 /* port_def.inc */; }; + 1F222B97764EAA9A10AD2D6A5A557B3D /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 42B5D53977DB945726C49CBBEBC47361 /* alts_tsi_handshaker_private.h */; }; + 1F2761F59CCB07CAFE4077D984CF5166 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA4F43E44484A3AD75B6B060C3A394D /* certificate_provider_store.h */; }; + 1F385540FEFCF0E67DB2BAB0350C1387 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 72C015BE10B5B8840C593D3E9F3924B4 /* race.h */; }; + 1F44B0E7EE7F14CE488B23AB2D7D6683 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = CC93C8868B8EBD1B0F7FE3F612EBB777 /* tcp_server.h */; }; + 1F4FE7452FF063D77DE82519A6B5B248 /* FIRFieldPath.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76B59D97F918D6043EE23E9F6F0967C7 /* FIRFieldPath.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 1F512FB3C1EB014E1F09D17567FFA953 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5FD466A36A2926E71267AAAEE18ED261 /* manual_constructor.h */; }; + 1F53CBD5FBFF3D5880FB1CD07E3425E1 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B59BBAF728D7E8D8A07D8EEE6C412B5 /* 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"; }; }; + 1F5C2E9AF251BC8DDDC2EF27BB8B3182 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EC8AE9A54B2039172E235F6EB30C27 /* fault.upb.h */; }; + 1F78099C9383B2AD10CD42D324F17631 /* status_payload_printer.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBBB14D94FA540F2B0839A1528CD6A6A /* status_payload_printer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 1F7E94ABA1A504DF78C42304AB96773E /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 35062E72C18DE895C67666887F2ED13D /* sync_windows.h */; }; + 1F7ED72A93EE8F8C9CA7EF0AFD087C50 /* channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A35EEED096D1927031D2A2E656B22BD5 /* channel.h */; }; + 1F958F0D9AA777B1CBDAEBF7864D8F98 /* cordz_info.h in Headers */ = {isa = PBXBuildFile; fileRef = C1635AFD84A6B1B4041499D26FAF01A1 /* cordz_info.h */; }; + 1F9920A6FA42C84F5DF681540373D2D5 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1F9F41FD89B3832697BE0FF12833CA /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1FA5900B5DCACAD58508C8288271D777 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 53A0AAEF727687C88D648A8CC8E8E034 /* listener_components.upbdefs.h */; }; + 1FAAF9F034A00642385638199846EA8D /* grpc_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F048857840E1552D4EE8BB0345A18A /* grpc_security.h */; }; + 1FBF3460E7D224E562DD4EE4BB2AC01F /* client_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = E07B4B5591B8BE7A130D27A1383800BC /* client_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1FC8C313530078B4787B9918FA40F528 /* config.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 7975E31F0C8EBAEBBE73151E99AF94B7 /* config.h */; }; + 1FDCE1923A1CEBCB4E6095C95788B6D4 /* hpack_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A7CAADCEC9D2522056349E31EF87F4E /* 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"; }; }; + 1FE84DEDA6A3EEA968F2F6084579B87B /* internal.h in Copy crypto/x509 Private Headers */ = {isa = PBXBuildFile; fileRef = 29A51310FB6684DF3660C0B33E9A59A7 /* internal.h */; }; + 1FF478E240DFE50FBA07FC2E2B652CC8 /* direct_mmap.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = ED9CBE0F7524619D3A0F210215C21035 /* direct_mmap.h */; }; + 20002E05322391FF7ED8B6B2E72E96E0 /* circuit_breaker.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A64CC4020799B8E992984694F6305C83 /* 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"; }; }; + 20026DFD4423EDC2773F1025DB82CB75 /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = EAFD9B90E108EC468FC3C7FA14AB2D05 /* time.h */; }; + 20064EAEFD2FF967C5EFA345279A2712 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0CBC307BF2785388B9DE79084F0707 /* router.upb.h */; }; + 200A44B9244021C95F5388B911F8FF29 /* FIRGoogleAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BF27A9D92C5634528A983610301302 /* FIRGoogleAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20161B5FB2EC4ED5E04AA613E576FD87 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 628C35240C13CF558832C181A764E9F8 /* any.upbdefs.h */; }; + 201A311A63345E584B642A637D53A6F3 /* cds.upb.h in Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 17E8AC9CA616687A62A1D217EAAA0043 /* cds.upb.h */; }; + 202A72B352DBA64CFB9F84E0D9648A19 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE55E7780A19D564F6256D77BAEFD1E /* rbac.upbdefs.h */; }; + 20313F7C56E9C8B798918099EA7EF751 /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F52E8DD757480375403A65E722992DB7 /* msg_internal.h */; }; + 20378404337BC5476BDF10E93298E7A1 /* ripemd.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ABD1C40CE08A699EDC05BC352FED04EC /* ripemd.h */; }; + 20411AA5D27B38F16D925DBA416A7FAC /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B224412ADBE777BA723CD5A7054B0743 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2041502118C7CEF1B3DE456B08417420 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 07F0289768A955BB891AEB439771BF16 /* bin_decoder.h */; }; + 20487DF912F40209C779EEBA8563F99E /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EB9DA88EA599C781F3AC59D73D48539 /* security_handshaker.h */; }; + 20491E363B0046C79589E70B482B602B /* GDTCORMetricsController.m in Sources */ = {isa = PBXBuildFile; fileRef = C54E864846E895DB5BEE2B5AC3258F57 /* GDTCORMetricsController.m */; }; + 204AC60E7C1F8E567F4A3A5ED0AFA9B9 /* sync_generic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 86DB2BBCBF9518BA3AA40F08FD664980 /* sync_generic.h */; }; + 205059EA62222EC528CA5FA13879247C /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = AA17E5EAB0C4D3BBC240EDD511841B56 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 206300542B9DAC8251EFDD5BE3C1DD55 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DFEBE39B1A123ECA6ECC27136BB67364 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20723F538EE7544208F845AE7BE7F1C9 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89109053B63576EB455C78AC0D0D9B09 /* write_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 209E39EF1FE12009DF75DD439EE405B8 /* resource_name.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = ED46BB964E2B7D13A6C1D826FC69F225 /* 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"; }; }; + 20A2C080CF69EA521EF1380856D725C3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 53326FF73FF8F5F9E3C96FAE75D25FE1 /* internal.h */; }; + 20BCA7581D14DD61099774F478BE8197 /* secret.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 148CB503D506579430970C22995F370B /* secret.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 20C18DA00E21D99836AADB1C6F1930ED /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 212546C840FDB70C540C95566D66E1BE /* secret.upbdefs.h */; }; + 20C215087F916CD0FA7323818B518A4F /* FIRCreateAuthURIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5694A827C36B21402B1056213E7307 /* FIRCreateAuthURIRequest.m */; }; + 20CE40E0BA78F635800CE45C96B76455 /* time_zone_if.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7CCB25C216BE1A2E94C364059940837 /* time_zone_if.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 20D56D0EC2AB90BFCED2801780DACC88 /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 67B09CD1A1B6281CBA7B4842DA070C45 /* FIRFirebaseUserAgent.m */; }; + 20DB779FAA067710D641D2C3648DA312 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6929B47C4F83DE0C499A27FAEB6BF188 /* wrappers.upbdefs.h */; }; + 20E7FFE23296C23172E02D129A79E67A /* FIRFieldValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = C6ED7AD78E76019497BA6CB85C70413B /* FIRFieldValue.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 20EAA6A21FDC4220CC6AB0BEF8C15353 /* FIRCreateAuthURIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F463CEF0EF2441522F6F3D223329D7 /* FIRCreateAuthURIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20EC6E15DEC605D7A316E3F3248C63CF /* msg_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = F3E028A6EEFDCA41F9BC13458E22E158 /* msg_internal.h */; }; + 20ECD93350B57289AEF86DFEE6BCCD09 /* time_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33C6124DB53A2D3166FC1DDB38F5C0FB /* time_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 20F8D04C33818A2B1FF909BE0795D322 /* bio.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CD2DF681E4C4492B8243CEACF783CE92 /* bio.h */; }; + 20F969A60E1C0DECFDDED62C2FB3D1D4 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 572FBEA03BA545ADF8FB59E62C4BD2FD /* base.upbdefs.h */; }; + 20FE3241F16A9275E951169E2594D662 /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DC98114CFC67D485D39A7F336475EC28 /* 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"; }; }; + 210AB84ACA96D610B34A27E174F1D831 /* eval.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CB9A91E336036732879A84936462A8A /* eval.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 21150E67A62859C89DC1478E71695DCF /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = FBA7E613E5290B814A53A8D7EA35FD00 /* sockaddr_windows.h */; }; + 211A186A3C8D831A089EA81210E5925B /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 92F40A5EEE2A6869D33B196F4F843630 /* time_zone_fixed.h */; }; + 211A55F4B47B335C6A663B7CA290E973 /* channel_create_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD4DDE22FE799C744B853593FF4793B7 /* channel_create_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 212AD7E51209249B41991F962F92F9CA /* url_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D61097D5AC2C6DFDA704C3D88D7EEA70 /* 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"; }; }; + 21360727B5CFCA401D1F49E55EFC4F39 /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B497E857E3157981E0F07BC7C3AA74 /* endpoint_components.upb.h */; }; + 213C9FED47A10574431B8857B9117CF3 /* target_index_matcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = E7C31F00E4B79FE409394375C5895160 /* target_index_matcher.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 213D79C1FE4D2540BF2D2DBA388D725F /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 383F6C8E79280562AAA56C59CE1B3A8C /* polling_entity.h */; }; + 213DE200D121D71562642C1210748A29 /* tasn_new.c in Sources */ = {isa = PBXBuildFile; fileRef = F92221BC48D173AB1B9FCDBB945120C6 /* tasn_new.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2140C8C1F682D2955ED290AB700DDF78 /* backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01FDC7A97AFF00DD0D8ABFAFBB0DB2DE /* 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"; }; }; + 214D277779D689C8A5969C60971A1B12 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F3BD3E475891FA642722F28E23BA9B /* timer_heap.h */; }; + 21566D6543DCB09877BED6AAD9694382 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CBCFBB0EE42C6DF8519FF2E620DCC79 /* value.upbdefs.h */; }; + 215BF6ADF1AF48366E23E9B6A9869C77 /* encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 3094B075B65B70B3E4496B4CA50A5EC5 /* encode.h */; }; + 2176517EA5F25A636824B30AC4C8FC63 /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = DB284E7C4E4EAAB08AAE74F89B00DB5E /* xds.h */; }; + 21791A50A4FB810AC5EC5DD21E1C3AE8 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 56015EE01B06FB947B8D0773128E0B6C /* security_connector.h */; }; + 21846496CFE3CE2588090E5B2EA1E9E5 /* x_val.c in Sources */ = {isa = PBXBuildFile; fileRef = B837AF5333FFE75A7154E6638FACAC42 /* x_val.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 218644A418D508457D75AF08A2AEE440 /* slice_utils.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 7DDE7DCAACB69DE02622F6D9ABF31B57 /* slice_utils.h */; }; + 2191D22B111E3040D1A87A54DF6A61C1 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A2076E82E1ADAD17C71E38A4783DC65 /* rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2196B541734E193EF752C4AA288239C4 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2512390F87CDBFA15A61C6C56E05373C /* pollset_set.h */; }; + 21986D9A9F2DD0522E9E1A8E4572F706 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = ECEF990FB374A6DD79E7235EEBA61A8C /* status_conversion.h */; }; + 219C931787E4A32445E9B33171EFDFBD /* parse_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2AC56DA987BF772F73364DE87A6FE69 /* 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"; }; }; + 21D1636028B7D0E7B1363E06873603B3 /* atomic-ops.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FE02D7AE28CDF1F7EBE77EE8446860 /* atomic-ops.h */; }; + 21E4D39B34330454ED864CCE74A54976 /* string_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95C3E984D5E3464821AA3048360218E0 /* string_format.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 21E9D18E5450C8349E0460CD1B3DEF28 /* tcp.cc in Sources */ = {isa = PBXBuildFile; fileRef = D1AF5814ED48C619C19922C6A9173B6C /* tcp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 220020C29A3B07D37416F5C1DBFF01E0 /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = E00671B2C62962CE76E0C7AA3F4861BA /* resolver_result_parsing.h */; }; + 22183846B39EEFDCE18A8EF8E4027772 /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 52AAB4328C9B8F610F0CAD473987B725 /* combiner.h */; }; + 221894C3147B1EC30CA3E955F49BB4F4 /* FirebaseFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CDCF32E7E553DD01F4577832CCBA156 /* FirebaseFirestore-dummy.m */; }; + 2227FD6AEA5737AB15FA9D18ECB1D5BE /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 12BE2B743BE4A30C2CC5716431158137 /* grpc_library.h */; }; + 222B8D4093322C2C8B0E6A1E9181FF89 /* index.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3115FE7A90DBD8CCFBE7780AB549BCEE /* index.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 22300B6E2A50E2C24E7E72775A0E7D3F /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3671B452B382FB4338497B5ACF2484C1 /* hpack_constants.h */; }; + 2230D765220D32E8D5E834FEAECC5A3F /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D2606A7860B8C389C2F0C68B582E27 /* stats.upbdefs.h */; }; + 22433849ECA0E44C2D1A2A0AD0FA642F /* load_system_roots_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = D148C3309672434068C0F2367C9B4A3A /* 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"; }; }; + 2263740614B87D921D8659C4CF5BFB4B /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 913BCD1982DB939F726E9611FC22FFC0 /* frame_settings.h */; }; + 2269AA4548DA272447299B8088072E3E /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 223B0017B4C77BE4D604446D11920FA8 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 227C3C3F42F1B372DC0A4D65B7F0F34F /* sync_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5E743000A70E8D991D7ADA9D7CFF58CA /* sync_stream.h */; }; + 227E48FE251CDD0232345088CEA0274D /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = AE4FB61735914D78871A7044BD3BBFD2 /* slice_string_helpers.h */; }; + 22A1F3A927473A61EF408CC83173F119 /* proctitle.c in Sources */ = {isa = PBXBuildFile; fileRef = 34B4760C29B7455EA1C78D9C508FA68A /* proctitle.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 22A225BF09C82BBC9B12FFA8DBF489D6 /* v3_alt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CCC8F5C394BA0E030E77C8152AA22F4 /* v3_alt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 22ABF0739E6C9D7DDF27F203D10AC0DF /* fast_uniform_bits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 76FED6B6F154E081C7C535EDF5F62F5F /* fast_uniform_bits.h */; }; + 22C11A96A7E6AE074B189183BE6236FA /* internal.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = 5163AB855D61BB5AFD9C8C6896554FDB /* internal.h */; }; + 22C4EDBF6E3CC30DD47BE9ECA8160438 /* a_digest.c in Sources */ = {isa = PBXBuildFile; fileRef = D83AA01D8992425089A2975AEF22FB63 /* a_digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 22C8D99C2538956B05D1AAAF8462CA59 /* client_channel_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E30CC57EEBC812C9E45A5E9010E3922 /* 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"; }; }; + 22CCF7D60A44A0305A85DD37225B8040 /* xds_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 901CCC423D5A9F828B8E0F9155248B9D /* 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"; }; }; + 22DF469AF9BAA129BF3684071C888DB2 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 956B95854D679C341FABE2A6D285D2AA /* internal.h */; }; + 22E849AB3EEA04959E7175A03DA51C0F /* iostream_state_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D6A5AD140B93E51DF64F8CECD92518A /* iostream_state_saver.h */; }; + 22E9E33A51D8F4B0D2EA832AA9E64D56 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = C82355AA43AB7E03ACD40F073CF1932C /* ssl_types.h */; }; + 2310F4FD083D4F2EC9ADC5174261DB25 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E0A282AD7C8B84D1CA4DF8A555374FE /* stats.upb.h */; }; + 231F1F4F8730F50433DE3E610292F609 /* tmpfile_msys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D058C0932547364E18861638B8F05A6 /* tmpfile_msys.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 23204BD14A3C9FBD36FAC5FCDF95F841 /* tmpfile_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CAC12485EDC5EBFAF2C9BFE36DD228C /* tmpfile_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 232C72B1C2353204382466A18027E059 /* string_view.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 37E93DA065798B44653FDAB12CC9975C /* string_view.h */; }; + 232DCAF7CCB11256F7F74405B8202082 /* FIRGetOOBConfirmationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0CEC729566C0D94170A473CAFEDA04 /* FIRGetOOBConfirmationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 233D8837D00F0F072FC7E6FD27E75444 /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = F769F0E06CD49A8FC7635DB140A9E63C /* alts_frame_protector.h */; }; + 233FF58C6767D5A1180B1A18B5A23CA3 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 449D3BEED9BEAD11CBFAA6C16151CC60 /* http.upb.h */; }; + 2343AD1835934CA12CE5C04581E172CF /* stacktrace_config.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD57E5A719A281AED4A752EF641EB1F /* stacktrace_config.h */; }; + 234777704382D014D938470C3A863395 /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 262B0481D4BE48ED29EF7DE5A6868D73 /* compression_internal.h */; }; + 2356190971088EA1635A3A605FE1B115 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = A7EA77369641C931E35B5B460DE692CE /* file_external_account_credentials.h */; }; + 235B771A0B452A1DC34078634E2DBCE8 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BF4AF04F728BA8821EB2D1EC0F73469 /* UIKit.framework */; }; + 23638E2EE48E1BB278F33F30A91EF4CE /* census.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DB7CA64EE476A52C869C6CB8479077AC /* census.h */; }; + 236E110908E94602D0A8FF2C9EEFEFBF /* FIRAuthBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FBBC2CDF5D1DF33A2E82128A6FC3B99 /* FIRAuthBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23706B090E80C1882DC9201633A3AE21 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = BB8A170E6CAA0E267AABE1E2075228F7 /* handshaker.upb.h */; }; + 2370BC8CF8B763933D14E4FEB22BA32C /* casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 542066D4F8706E75029126E02424F41A /* casts.h */; }; + 2371F042630FFD124CDE30ADC0123197 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B95E26F5DD0E0200994946BB75423CF2 /* base.upbdefs.h */; }; + 2380D5EECC93BBB61B832DB63504B759 /* dbformat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D87612D6A95A1E643AC1CD7460BEDB3 /* dbformat.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 238BBB6005AABEEA2DD3B451DA455D33 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5304665D07660799AF09C13B972D6C4F /* load_report.upb.h */; }; + 2396414B86A6B8943E3B42AA1111DC18 /* perl_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E295FDBD10E3E6347AA7DA2B1A2C720 /* 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"; }; }; + 23A401569762FC284FEA589F92436F38 /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 80AB9FB90254696C9DAA7CFA451B93B6 /* alts_credentials.h */; }; + 23A5A8271E4FF959BC43DAF87BEEF62E /* leveldb-library-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 917EB8CBA6B89769361EC6E4B2C6DCEE /* leveldb-library-dummy.m */; }; + 23A6DCF31935700ED30D2FACD8E76C42 /* async_unary_call.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 65A2D17ECB9E8B2B71278108C094BEE3 /* async_unary_call.h */; }; + 23B5C42FAA0A3ADC8BE64E9090B49AD5 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = C741BC2534DC746EE467470576B661CF /* GDTCCTUploader.m */; }; + 23E402585ED24D0AAB33D670F2FB995E /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E6BA021FE48666B3CDAFA6323EDAD2CA /* route_components.upbdefs.h */; }; + 23FD0DDB01F8CFD9D04E5765758382BB /* socket_utils_common_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B6EA9CEC1EB01C0EBE79ACA724C8434 /* 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"; }; }; + 23FD62A157523A9B09BED02A6D45ED75 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0D579F47928FDB95DFA056A689CF53 /* status.upbdefs.h */; }; + 2406083F5EDB5F6B145E0F766497F19B /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1002C20A8475BD0EB332200B1073AF05 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 241001CFEB80DC329C860C0F7B4DE83B /* pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16E90061D5013D1340BE1AB635ACB033 /* pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2418E9C682C8C2DBD8B51AC54E31BED4 /* internal.h in Copy crypto/fipsmodule/ecdsa Private Headers */ = {isa = PBXBuildFile; fileRef = 893589D422F08B425C13D52D6EB48D51 /* internal.h */; }; + 241D71E14F2EC6E0175BF5C5E5A61E0E /* sha1-altivec.c in Sources */ = {isa = PBXBuildFile; fileRef = 067835A1DBB77FA191748AC963D2309D /* sha1-altivec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 242533DD698416818DC4BCF16F571CC8 /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 725D353BE6A25FC2F52FBB2AC226E80B /* thread_quota.h */; }; + 2428C7FC8DAFA2074CBAB6E67064E202 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3BCF72BAF98210BA2D49A68D2B9139B1 /* frame_window_update.h */; }; + 242EC23BCAA5BF41966BB8959A73279C /* writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 295F48495C088F55FD6B2E874C3DAA14 /* writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 24322671F4F7618428AA9DED38269B72 /* srtp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4BAF3C079858BAEAE7ECAF1E9EB3BF24 /* srtp.h */; }; + 2436D88F09C4A3A6876375C1F6CC061E /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DA0044453006D2C5CBF5D2D23F519C1 /* service_config.h */; }; + 243DFC26C416F2A4B1ACD4FC60E9B4F3 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AA3B5914D6B0D2E44D359BC34A4FA48E /* status.upb.h */; }; + 244B4EB168BBFEAA8BA1E0A340421C44 /* frame_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = EE84FD5E13F3C257C122807367563B93 /* 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"; }; }; + 244BC568C0EEC7FBA53B1B61725DE03B /* xds_bootstrap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7000B9F16EE10BE80F556E4CFF081DD0 /* 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"; }; }; + 245697D10E5A9AADF4AF58EE6185AED5 /* FIRMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3600BC5465490F7D0650A582AAAC8E59 /* FIRMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2463D125841EF34057615BF4CCEFF333 /* status_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBE6C7A46AD71A90CD3BE37547709E8B /* status_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2466764A20FDF0F67C27D83B55651024 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = F37F1BB4FC370429FF4B9B51F75D78DF /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 246DEB880E006DB18833B94CBD8CF9C3 /* low_level_alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = E7A81290BBD10CD8C868AFFF1885AAB4 /* low_level_alloc.h */; }; + 2474C2393B29206D9B25F7B4F1EF1068 /* cord_rep_ring_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = D2019AC0F0D0B629F65B746F70FB24B5 /* cord_rep_ring_reader.h */; }; + 247AA22782B8B3861ACE11C8478B2725 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 674051A6FC394A45123BAA764DE19639 /* channel_stack_builder.h */; }; + 247D986A529D6803EB0738F24DC57D48 /* v3_conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 54E648875B677EC5A38C01EA0A28368D /* v3_conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 24811CE70B167FC30E4301FD5EF68669 /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = E93275DC56AE1D49F78FDF09D1F496FB /* zone_info_source.h */; }; + 24868D77B576A307438E751EF9CE36A6 /* resource_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 02A3A96FAE5EA108C16EEFAE846F1A87 /* resource_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2487A961E513C08364913DD646A2E042 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = DD5844CB192FC0211ED392D2EFCFFE6D /* handshaker.upb.h */; }; + 24932CA35831E5FFBCE52A5951207FFE /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6CAEA2B223635550821BBD7A0A4BC5F8 /* xds_bootstrap.h */; }; + 24973B89F5C83379C0D8C23E67B1467B /* method_handler.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 077C7B49D7C3D3B7F58E511F2A15C8FA /* method_handler.h */; }; + 24AC93E1F44E45BB0A79CDA50FA6FA3A /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = B18B33019C408AD235EECAA7DB9A79AA /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 24ACF4826A72787CE2882BAD5E2ECB26 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DB750341229EF0193FB051A0DD01945A /* timer_manager.h */; }; + 24B8F50C2CA72891A400D758B64AD131 /* eds.upb.h in Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 97347F8569ED71CE39BEE9D484175D6B /* eds.upb.h */; }; + 24BDC64AF3EF6512285CE18E77C97722 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 5D24150129CD79110035F2220F2D4708 /* sockaddr_utils.h */; }; + 24D259780FC66B4C4BB75B8D7F50A08D /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 7057A7950D894C0BF5191CAAA40E0E5D /* aws_request_signer.h */; }; + 24D5244AD29424B05E5BD200B357F8D7 /* curve25519_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 75C65AC14A04A1CE58A33259399FE990 /* curve25519_32.h */; }; + 24D75704E5DF6C42062C724F66E4F194 /* alts_shared_resource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9880324B4514D1A6A702BA66BECEC1DD /* 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"; }; }; + 24D8FE53D2B90F3E2F7EA68AB88B4448 /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1C10F29B244D15ADC7FD05A5DEDEABE0 /* node.upb.h */; }; + 24DCD16E787A4B094DEB95BF40A166F2 /* tcp_server_utils_posix_noifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FB8F0DD531BBB892CD003D00247D067 /* 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"; }; }; + 2507D60BD5FE8B3926902B76F8FD602D /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B743115E61809D3AACDACD4BE8F49239 /* tls.upb.h */; }; + 250932F10AB650B2D842D659A7AD054A /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 948040A0D6D6F64CEA32D4F6F01D13F3 /* bootstrap.upb.h */; }; + 251000F0D046355BBD2A1DB1172645A4 /* ssl_privkey.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E364D57E16639645643FD2CAB2024F4 /* ssl_privkey.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2527C21214666E16887C5153E880AF8E /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 1AF86C8D5EF20E9198FFB39960024140 /* endpoint_binder_pool.h */; }; + 252869D7AA29AE4EEC54848E9C52D2BB /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 203099FB0E8257AF41C6F891C3C55B6D /* api.h */; }; + 25289F7909ADAD3CA5550D593733530A /* array_contains_any_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7FB77B9CCFCABF72FEBDDD57C467B61 /* array_contains_any_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 252A0C1212BF1A09375D0D4AB9E30209 /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 52168929D6894E17968064856D22624C /* xds_routing.h */; }; + 253DC9383B1D33E5BF27E6198E86A133 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ED117DC8546DEBC99CB7BF17735C451 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25400A7BE000DD4706985DCB1DE30EE9 /* external_connection_acceptor_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB9D60005C9301E5F5CA687ED5C15F01 /* external_connection_acceptor_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 25486B0B71B5BCBDA2A5B51D8DEAF9BF /* pool_urbg.cc in Sources */ = {isa = PBXBuildFile; fileRef = D40A3D5A83E943E13BD466E8B3A1AA92 /* pool_urbg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 254D7B8F5B8816418E475260950DE39A /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 03CAD07613933D09F7AE52AB328A46FC /* transport_security.h */; }; + 2551489CC455AD3F20B976ABA40BEE54 /* prefilter_tree.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0645C653F59701B65A6DB5806E841CB /* 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"; }; }; + 255EC9B2DDD49974AC11FD26141DCBEC /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 07B22FB88D07228E17B62130C422CC26 /* tcp_client.h */; }; + 2560B548D3B6C5E17329EE3070FDDFC0 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 16D81653BF9F1A673F7092B8DBC3C29E /* config_dump.upb.h */; }; + 2567124563A2C9D63ACF3BD80F5DF7A2 /* decode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 4B99CEF7CC07DAA0ED03E00EC195A0B2 /* decode.h */; }; + 2568C6A3DF6835E75DA9C75BF0ED5CBA /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6EC7CAFAA5C3A2DC6F364A8D59D3DD /* socket_option.upbdefs.h */; }; + 25723D21BEF5CDAD28911A533A991A35 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = A05A40261754506FABB178A913D4875F /* load_balancer_api.h */; }; + 2587ED0F0CC16B16D097A3878D65EB55 /* chttp2_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD575224EFDFEB6B5910C74FCE280B /* 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"; }; }; + 259B718E447F9343F2F0FE798E742FAF /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D99226CD44FB2E95D0DDD3F98256E425 /* versioning.upb.h */; }; + 259D1D5AF059E7910194299868733761 /* bitmap256.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 10C635B39A61EDC24FA680F668742DD0 /* bitmap256.h */; }; + 259F0FABE27E82121D81AE4FFAAEA940 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 809CD436344167C509DE2A4EFA647373 /* promise_factory.h */; }; + 25BE22A2AAB74518207B55427F8A6A29 /* ossl_typ.h in Headers */ = {isa = PBXBuildFile; fileRef = C50FACC187D57AED31D9E13EFD7184EC /* ossl_typ.h */; }; + 25C2C981915F94D1611AADADA4FCABC4 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 900037B35F0BDBA6BED6BA2260B42EC4 /* slice_internal.h */; }; + 25C7A85B05E0BAE198138979A945435C /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = FF50389AA628ABB808CA4F98D2AFD5D5 /* ssl_utils.h */; }; + 25D14F19B62E1AA9182E6ED6C5376A10 /* rand.h in Headers */ = {isa = PBXBuildFile; fileRef = BA784420DA8CAD5D19FEDE6EAAADD426 /* rand.h */; }; + 25D21E1D3540B9876D83B333BDCDEEE5 /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D04530E46789E7001F028CD83ED8A097 /* 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"; }; }; + 25D8C6C47B58F2FE63C039D70DE96FBE /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = C06DA6C37EF321C0B3B75509245056EF /* external_account_credentials.h */; }; + 25E59342A60E227FFA452FA8451DA3BE /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FD40FA10E1F2AF6995B2EF0AAAC97A /* channel_stack.h */; }; + 25EE9D6D0A4C3A74ABCBA05AD6D7A899 /* getnameinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 8825F518BC3E5BD39FB1DF12108DFA76 /* getnameinfo.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 260B94B234569F1B48517A742E3DF098 /* traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A7D269AB0FB453D78BCDB9D50D0A0F23 /* traits.h */; }; + 260F9DA6A8874F3006A9BB3AF9213D41 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 38082B58E056105068CA8C37CF7E947A /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + 261CC6CF63D40246F96EDFA2126EAC34 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8798EA403E74AA0BDE073CAEEDB17C51 /* handshaker_factory.h */; }; + 262EE3C4B631FB5E07976AFACE9BD48B /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 595C7E13CAC37B571EFC71EE2EFEDC98 /* regex.upbdefs.h */; }; + 263540B177B9C847E41F692813807B7A /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E72981128DF99B536C689AA588FC97C /* tcp_windows.h */; }; + 26524F3B1CFC483C5E691328278B489E /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 49D541372A216CFDDEF530731104F2AC /* server_config_selector.h */; }; + 2655860ED72DC482CEF19B1F3B04CFC8 /* alts_grpc_record_protocol_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F033835A1E7CF680CB3E11638D47E2C /* 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"; }; }; + 2665E75B57226CED0347596C0DC4C7B7 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E221DC8B64F9E6B36DC7EC8BDA9D77 /* server_callback.h */; }; + 267012F7A3DE89D76926CDB22868E450 /* proto_buffer_reader.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B9606DE331107B83AAC28256BFC09685 /* proto_buffer_reader.h */; }; + 268B6E4A7D37427C55CD98273ACEB39E /* httpcli_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = B31FCEA4EFBB54E9B1529FCA3C4E608B /* 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"; }; }; + 268D402FC9036E527DEC441089EE9635 /* empty.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DAFA4B55AF0038305EBCE58F9D65C57 /* empty.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 269129549333BCE7C6EDE13BD361BC03 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C579B2042565ED6A5B0CA497951F52EB /* http_tracer.upbdefs.h */; }; + 26A643F66A1673A11728DCDAF71F3FF6 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FDD037DA14D1B6BE7756040A7DDE77 /* grpclb.h */; }; + 26A79B60246A3DBA6B9B686F6998031B /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8A170E6CAA0E267AABE1E2075228F7 /* handshaker.upb.h */; }; + 26AE00EA4AC0B0E01F6C732BF94B7304 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FD466A36A2926E71267AAAEE18ED261 /* manual_constructor.h */; }; + 26CEF9BC7415F3D828A0D476E7FF37A2 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E1AC3595795D667AADFD1FA7682A1E /* resource_locator.upb.h */; }; + 26D7749488597A0D44AF6C2FAC173384 /* number.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 805D47521AB994262217E99469683294 /* 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"; }; }; + 26E279DE76AB5316FDA9A0ECD5D6A07D /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 631DD5BDE4C1167018A5138C69489B41 /* route_components.upb.h */; }; + 26F1843FD02D80D1F443D59FB92FD57E /* bits.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = D92C37A8968CA8FE58EADC429BDE7E49 /* bits.h */; }; + 26F6D4B61E66B8FE4592F710390A75EE /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DA96F498DE648C92B374764C9DE0BFA0 /* sensitive.upbdefs.h */; }; + 26FD9F2E1AEE0B06AF93445432030835 /* ssl_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B4CC2179BBD5C1D6161F28DEDC084D8 /* 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"; }; }; + 270CFD717BE0F858B6B0EBFEEE602234 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B56100E024F41DA6EDA583EEFEEDE52 /* time.h */; }; + 270E16471B54704B872F0126B40C531F /* wire_reader_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBD7C3AFCB3DAC521687BE2D2FDC6536 /* wire_reader_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 271997C66EEC8BC966FC3BC7A5BD6D77 /* FIRSendVerificationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A15196D6BFF9F8EE0462014322CB7565 /* FIRSendVerificationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 271D1B6066A0CFBD210281006554941F /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DAD0EA9A05D9AE09418FDC354C265AE /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 27219B0BEE2D1C72FD9A59CD4F2F55E7 /* proxy_mapper.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2884FD554F251B8BCE0E7AD7CC7BF9A2 /* proxy_mapper.h */; }; + 2730F251C9A5DE5AA05CDE88558A59FC /* have_sse.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2DFEA2C7CC83143DBE5DD4659CA99DC2 /* have_sse.h */; }; + 273884F17EC0D1559C10B3B66B1AD87E /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 857D08E60D8CB5BC175923097FB528C3 /* call.h */; }; + 273BECD722F898043B11573224189A70 /* symbolize.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 429A9536EDA7C4DFF3CC15AC3BB3AA23 /* symbolize.h */; }; + 2740F2286BC03ABB0D32331092D56B63 /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 6C56AE9D896B83AA75D0AD32B2567502 /* connection_id_generator.h */; }; + 2748B2A8786D43F4C6BAF8FABE571160 /* handoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D02BFBCD5222F59690D9D4DC27E5308 /* handoff.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 275CC2050CE7B668FBB33A9D9ACE4790 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 4250B9623BA15260062BBD6AE1E0A3E7 /* pollset.h */; }; + 2764E8E50BC2AA310A589001685CAD2A /* status_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = C541380223B9C03E19ADCE5EE6D64BBE /* 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"; }; }; + 27690C0DCAE06ECCA6359E4E1AE52AF9 /* upb.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = DC19A601B51721914230A09F736C4924 /* upb.hpp */; }; + 276BB4DA6A4FB1EC129297548B373636 /* bio_ssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F287543CCE1C0542023B507685EDF5C /* bio_ssl.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2780C543B21248ACF27C945D5BFDC9CF /* boringssl_prefix_symbols.h in Headers */ = {isa = PBXBuildFile; fileRef = 310DAF67CBD5C72F475096BB20B3F6AA /* boringssl_prefix_symbols.h */; }; + 278305A21587A259D1BC48203223C1B6 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DE5F3108C75A790516A74709CB5B7AA /* local_transport_security.h */; }; + 27911608AED15554ACF3023D5DA2039F /* cordz_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = B729A0B28831B865FFC228E9243456F0 /* cordz_handle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 279464A82C7F0A5A282C717BFC8B253C /* stat_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16D42AD6E8DB67B92CA80E83C97666C9 /* stat_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 279F57BE183D90D4AEFACF870E02ED3B /* low_level_alloc.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E7A81290BBD10CD8C868AFFF1885AAB4 /* low_level_alloc.h */; }; + 27AE495C81069E36DDB1FDD60B773E58 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA79673E81FD7A35B4230147E9F3C9D /* internal.h */; }; + 27B98CA5B4A09566A46ADACC5E713AC8 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 151AE99B8D21F573846F6D33F9804E9A /* GULNetworkConstants.m */; }; + 27BA8F5271235E708376268BD50F4AED /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 884D4FE00A5B0E47964EDE7B436B1147 /* span.h */; }; + 27BAB5EF6DE66AEF77AAA4FAEF135F64 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 415AA5B587E40F73B5F16C8C72030CA5 /* pool.h */; }; + 27C9ADC6A52B26B477476183DFD17E05 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AE7A78F3992A2253E40F24B33DE9401 /* GULReachabilityChecker.m */; }; + 27D137DCC9A52F2285362758CE7D33FF /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E2333760FD6DD6D07C333E847DC7FA4 /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 27E76EA525B2F5F7191CB7D59A3A5519 /* message_size_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4801E6AB32A0D8798AD68AF31EE96DF3 /* 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"; }; }; + 27F1E73B84B6F457E360081C4F8D54A4 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D04DD6B5D7323AF5DDA85D042C1AB074 /* config_dump.upbdefs.h */; }; + 280C902BA97C8C7C1502F81CB301383F /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A0193A288EE4200049EBDCA32B1B2E25 /* grpc_service.upb.h */; }; + 281EE591AE66AA98F8FB69CED0D2F9EC /* a_bitstr.c in Sources */ = {isa = PBXBuildFile; fileRef = C44C19BEBD57B963F794EFD472C30FE2 /* a_bitstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 28212C3E9653A24588AC43A537FBD5F1 /* aes.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1184778F3E53194194C498FA283B029B /* aes.h */; }; + 2838B32CD20DED75A74A46117F1692FE /* FIRPhoneMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 704B3C60447FFFC6BF7270E781FD58D2 /* FIRPhoneMultiFactorGenerator.m */; }; + 283C48433790A8CE0D7A2E1D92C5861F /* tty.c in Sources */ = {isa = PBXBuildFile; fileRef = 6787750E22F13B7E22B16F739824A76C /* tty.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 283E55AD928076BF6280C1D2B21FBF21 /* config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 372DADBE14421823DB7341B40A977724 /* 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"; }; }; + 2841B6D4D2649218300DF4BD277675E5 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = A34DB664E4CD2DCC8E96FA99A38E3873 /* FBLPromise+Catch.m */; }; + 284604190C09F43C703B156F9CF7D7F7 /* FirebaseCoreDiagnostics-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6C4CAD50BCE677F87D51D5F5F7E067 /* FirebaseCoreDiagnostics-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2849C36A73CC248F323CA47112156246 /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 48075C8CCFDEC075472B34BA1DE2E7DF /* alloc.h */; }; + 284F2511C61559F30D4A0AB2ABD7EB14 /* FIRAuthWebUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 030D9CC2D8A108AC77CF6158C5408A6D /* FIRAuthWebUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 286553151595FF0230A09DDF5F38B5F6 /* evp.h in Headers */ = {isa = PBXBuildFile; fileRef = E0BF6553E330AD80F1C6B05FB38C5870 /* evp.h */; }; + 2875C18B282B50E28496C01E9D4F4AEF /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 0FD5CCABE31125C9DB07B78E72C489B3 /* syntax.upbdefs.h */; }; + 2885C91D717105756B3502718612FC1A /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C67F9B845B390F64CD30079E052E90 /* FirebaseCoreInternal-dummy.m */; }; + 28A39BF8D6575F1F324A99F58279C18C /* FIRListenerRegistration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 04436C1AE53DD499F7BF43DB35632911 /* FIRListenerRegistration.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 28AD25CD5E6DA38E0C53A95F3A2481EC /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CA13424FD925EC7888C2E33D9E26B86D /* event_service_config.upbdefs.h */; }; + 28AF6E76F14C282DC4DD55767A2CF915 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = FAA3E19066591F8B4897FAC40AE1A0CE /* FBLPromise+Recover.m */; }; + 28B3F5AA3872A8869748CD723421D79A /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 307F79BD8E072C96401D9524CEE36EF3 /* call_op_set_interface.h */; }; + 28BD394D79A608405261569265A2FA1D /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB2830BDE4A6BEA0914A4C0B58F1358 /* connector.h */; }; + 28BD9A1A3A992E6ED0060FE7CFB43E98 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 2628E3421B909EF60D4064F91DB5987F /* grpc_tls_certificate_provider.h */; }; + 28CEC89A1F42854B4C3E1988361CFECA /* eds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = AF892002BF0B20FAD65D1802BAFC9ABB /* eds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 28DD5A180E583F82F7E56732FEAB1E79 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FE096CC79FB761BEB3AD648E5CCB4563 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28DE9D990C74217DD321623CE92A6FA0 /* async_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = DCCD391CA113201864C4D7ED2B2D268C /* async_unary_call.h */; }; + 28EBC1A03EC49023493AC7BF58DF8D25 /* seed_material.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 626FC2372703C60F1BD6817728CD608E /* seed_material.h */; }; + 28FDC4215AA57A94900D436614DFCA74 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 01C312C2156B3EF34C50EBF092ABF23D /* syntax.upbdefs.h */; }; + 290E654AB1A352DC7C7192A9AC3EF150 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EED8C8B5F4FE9081061882F86B10660 /* timer.h */; }; + 29165B0DFF7036A1199C0E6EBDE68457 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CF3DEBCCBEDF6A950945F9F9E791A7DC /* upb_utils.h */; }; + 292787EAEA30C0F2D89B43F193441CFE /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE885DE77972A097FAFAD69969415BF /* GULNetwork.m */; }; + 2935781763C06F73FAC6BB01EFB3F7B7 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 331C32CDC4285A8C87B67DC6635AFF28 /* fault.upbdefs.h */; }; + 2945417D38A1B79D727FD88194A0C5B2 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8284E07202C75CF12909F6248B03B0 /* socket_factory_posix.h */; }; + 2957A1740FA63D710E03281246713D80 /* FIRVerifyCustomTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A061BE510424EAD58EE1D515F81219 /* FIRVerifyCustomTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2961ED4E3EAA2414B9A200E519269B3A /* decode_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 97351319126C6E12F0989A29CE01309F /* decode_internal.h */; }; + 29665FDAD8C949189A9843226DAB76D2 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BE3E85F22BFA2653E3BB2C4936F61B7 /* backoff.upb.h */; }; + 297D55D85CF31C86505D40D81393A898 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFDD1633DA780D2E1B55E1818FEBA88 /* service_config_call_data.h */; }; + 2994E2395FD3CF59F958D98DF12B8E1D /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3003F099289984414CED81BE6CCEC1C8 /* 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"; }; }; + 29B2ABA5D26173139D41572E85FCCABC /* channel_args_preconditioning.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A596FAC82D96C68D759F5E9171E4C2A /* 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"; }; }; + 29B848EBF7D87CC40B8D1ED0570F19E4 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ADBF7E208A13DB7F2D93C1F9576C4FF /* circuit_breaker.upb.h */; }; + 29C12B7545078A7003ED0250AA7E69B6 /* FIRAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F0D305E643BE3C8E59649EBC01C3BE /* FIRAuthProvider.m */; }; + 29D322C0E7067B8031D8EE3F2342BDE0 /* thread_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1910D0E26C5FC60D8078C35D348851F3 /* 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"; }; }; + 29D4F38F294FBD68D93C757DC4420861 /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 43E1AC3595795D667AADFD1FA7682A1E /* resource_locator.upb.h */; }; + 29E23B66ACBDD0C03066F46065AB52C6 /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5D8FC3DAFBE674B0BA0E270CD10C9E5B /* common.upb.h */; }; + 29F3A41CA046D33A05968906DF986F48 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CD9EB80BC3DB00131781570B3BC68B /* value.upb.h */; }; + 2A01326B691280E59FD1A313B8CF2E91 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = A4892686DBDF059CEE86AD8608CEC3A5 /* slice_refcount.h */; }; + 2A1BEBC6A71D6D8EE6D36E0BDD9D30AD /* d1_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0EA362445C79AEA86F016FB5DB50A1A9 /* d1_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2A51381B718A709E6110DADF8D1A5D29 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = F57DAF752B104388493F9381E10AE0B1 /* byte_buffer.h */; }; + 2A5917D2400253584FBA1BE066C83DDE /* flags.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 5F4793D4FB08E017F36672C625C1B442 /* flags.h */; }; + 2A70911DD8FE2C02A40CBFA0760F7F36 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = AC88CA5F34ABDDDA4427D0459F54F9BC /* aws_request_signer.h */; }; + 2A761604D1105043CDED8A12C002437A /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = FBDCF3E195CEFDE721E9F6833F34D3F8 /* connector.h */; }; + 2A79F47E5956201A377E827F8A3389BE /* closure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7351CD6C6FF3C7673164A80FBCAB51F1 /* closure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2A8AC9DEC5CC14A3D5BE79760D1CB9E4 /* container.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DFE7754F77E8D7CA4D567D75FD5E678 /* container.h */; }; + 2A8C01FF65F6305F41D1100E527F4EFA /* test.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D16D46EC3AC395484AFCB680B7BE5B6 /* test.h */; }; + 2A8C5AEC1B64F670F59BAD514FAC91CE /* bn_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E952EF97D176F9E47990C32EA20E524 /* bn_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2A9807481CE4826568F9CD4A6533814C /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = DDF98ABBA75103345A5890C2B7D1E881 /* resource.upbdefs.h */; }; + 2A9C056426F69AECADC70A154CBC0B32 /* pollset.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4250B9623BA15260062BBD6AE1E0A3E7 /* pollset.h */; }; + 2AAD6477FD435566939F9B496785CBFE /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B91303F46DB00EBCAB2BBC1419BC4EAE /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2AADF0BA738A22253446CFF481840A46 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADE62479BF20A50F816DFECC3C376B3 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2AC03D2AC0884D8F60151239705BEE83 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B312742C5B5B307E5AE236256D240F /* duration.upbdefs.h */; }; + 2AC42A6E1CCEBCB285C0442DD5CB84E0 /* endpoint.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8E45FACEF041958D30FDD2368545F208 /* endpoint.h */; }; + 2AC47C408E067B78427A21E2BA942700 /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 4642B128CC6C587830218395CD98CBFD /* connected_channel.h */; }; + 2AEC01B989E03687E55088EECC5699C0 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F95E2F98990722F0B6E5C0F79D25E6 /* lrs.upbdefs.h */; }; + 2AF3CDD4923EB42FBADA00645C973F2A /* lb_policy_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 78447660FAE3FC793AFA0E4C888916E1 /* lb_policy_factory.h */; }; + 2AF5A71159570499E2E8EC22E86FD3C3 /* service_config.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 1DA0044453006D2C5CBF5D2D23F519C1 /* service_config.h */; }; + 2AF61CA4D69DCABC8821145CD3BB9D9F /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 8EDB2624825A4D169C48AB7C9FAFE0F8 /* wire_writer.h */; }; + 2AF828155AC7F0CA29BAE8659B459572 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 52936EE7429F440B406067E34858A26D /* status_util.h */; }; + 2B195FBC05A48395F79E7E2938300BBC /* datastore.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC598CC2FA09E9868D31F44A7ED8E429 /* datastore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2B224EC90DF450ACBD7B1CAC802236C1 /* hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = A37D336EF74ACFFF654DB4942C02CC4D /* hmac.h */; }; + 2B2264C763F0C3B7ED6A303EEB160AC5 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 846E4B27F82DB6D413EE2FE58A2C8412 /* unix_sockets_posix.h */; }; + 2B23A967D99CC5894E6F5CF1836426E1 /* channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 581E18306CB3C9E0AF7960D07181784F /* channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2B2CD18EF1491E52664D8E170B678DE7 /* lds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F7346FCF77FC5A6AE459E9F786718732 /* lds.upb.h */; }; + 2B47FD51D5C349D974B92B532BD605CF /* insecure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5B7845C1B65AF0B44092BA97078C62D /* insecure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2B4B77CEE8DA9A66788356F2E573F8D9 /* tls13_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F1AB412051CB8BD374BC3592244FDE4 /* tls13_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2B720F0D48952740A11D51C578BD0A28 /* ads.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A449FB7CF969D503D80E613DF2452CF9 /* 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"; }; }; + 2B74A21F46550C625A2BBE7A0637BEC1 /* tcp_client_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = D8A3366922F86DE7980F06C0D3FB8B00 /* 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"; }; }; + 2B790708746B308DCE12E2EC70541CF1 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D8DA2372B5110504AB5BC8B0B97348F8 /* route.upb.h */; }; + 2B7F8A71B4D70890A9811C0E48A29DC6 /* FIRResetPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 340FAE272D76CF2EAD2FBB111B2191C1 /* FIRResetPasswordResponse.m */; }; + 2B82AA4521D400A100436DCF20C646E1 /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = AA8ADF2D3F0CCE03BCCF7B642477EF17 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */; }; + 2B8D8DE04DFB131600E923BBB90CE9F2 /* handshaker_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 20502864ECDB477A336242904C216395 /* handshaker_registry.h */; }; + 2BB7599FB959C4BF83D29F0D26E95852 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = B9CBF4FFF90E24ABF6A57A6C1329C201 /* byte_buffer.h */; }; + 2BB960B1FA87DEF1C9A441E2F1FCDD89 /* rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 5475CD392D607B98B19D5589AD113674 /* rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2BBC037086C8BD1D1E5AB4038DFBDFB2 /* config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 02825FF3FF46AAAB26D9F0C99194FD69 /* config.h */; }; + 2BC9C50F1A313D6795D2CA5936B3E328 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 43F950E9FC973A2770F7B1460286EB4C /* gethostname.h */; }; + 2BD237BF4B1ECAFFB96FC485D2DF02E3 /* fork_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 135BAC057B53B5E870C3649C9664C3EC /* fork_detect.h */; }; + 2BDE3E961108F61B0FDEC43C8C7F3629 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB8473268ADEC083011731CF039518C /* serialization_traits.h */; }; + 2BDE5AEA52801C4762DB816E1B598FF2 /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 17578BC869E742BB357A3CD1575791C8 /* msg.h */; }; + 2BE0D860224ABE810B1CEB5B3CBEBCCD /* channel_argument_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF1279F7B4A4DE2B4F92D60A0A9E2BEE /* channel_argument_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2BEF4655312191004C52751C6B3CEB03 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFD1BA961BCB07D0872C543E6F2D8E3 /* xds_channel_stack_modifier.h */; }; + 2BF89E88104C67FF52C470898B5AD75D /* field_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22C16AEFFC563905D84755A6A2683E08 /* field_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2BFA96BBCCEABC4C12B236FB64532FC8 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = C548C055488BCCA3FC5C1C309AB1A094 /* retry_service_config.h */; }; + 2C06BDD6E62907E34A81176711741174 /* byte_buffer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 6659678F74F091AEAA980474E5005B11 /* byte_buffer.h */; }; + 2C3165613D34FFB4DB9BDE553FCC1AA5 /* spinlock_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = C7EC4CEE262400C70C131AE32751A9E0 /* spinlock_posix.inc */; }; + 2C3B038E6E09C14FB023A45012A95C27 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E8F8CA9D47FBE4D02A871FA5C28366 /* options.h */; }; + 2C691A7F8052C0C2AC314C6BA53553FA /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ACD9FA229759D28F5D2BEF588C96B06E /* proxy_protocol.upbdefs.h */; }; + 2C6F80F5476DABCCED2E04C105DA6BC4 /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 04179AC3B879C20206978EEC815FD882 /* murmur_hash.h */; }; + 2C7F0D0D78221F14BA62D5D01731E24A /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = D0B6BD5E6BDC6B8215DFAACF48190C23 /* alts_grpc_record_protocol_common.h */; }; + 2C8218CC375A2ED7F3B3381911E7C328 /* a_strnid.c in Sources */ = {isa = PBXBuildFile; fileRef = 78AD5E938F011794145D5ABB51847453 /* a_strnid.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2C9CCD415514C1AF77223C3142ABCBDC /* status_errno.cc in Sources */ = {isa = PBXBuildFile; fileRef = 017FC1E696F93A970FA94F93FC614007 /* status_errno.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2CA1D838C0A4BF5311C6BB15DB781C4F /* comparator.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0269689F05C73F4A61251697E1AF937 /* comparator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 2CA3B21B6C22FEBBB953392CE668A94B /* grpc_streaming_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 83445DFF998294999F449F3AF8027670 /* grpc_streaming_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2CB70BC0DF1FC4E65F6FF820987524E8 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 454B4B848A2E8AB1AEDBDEBA9DF8FAB6 /* resolver_registry.h */; }; + 2CCD70CBBC8C4F73FD92BEFA44CE72A7 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = F58830A197D5922AA38E7CA675C7B581 /* b64.h */; }; + 2CD37CD7F9C780A4937C2F258ED507DA /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC02DF74ED6D3AA3D52FBB31B769066 /* migrate.upbdefs.h */; }; + 2CF20AF7FA3665536C58C5DB7CA1E503 /* router.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 61CF949A3152F88CA5A8970BF70CE656 /* router.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2CFE74894DF17D9A1484054F1A889254 /* atomic_hook.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 40085EBCFAAFAEB4C3F55ACE596D9F62 /* atomic_hook.h */; }; + 2D0278409FE366C31765FEA6DE3E25B8 /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = DF3D7EACE9186EFE061408CEA41BDD09 /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2D073505FC87FE374CA1E249653D1D2E /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6457F60731C37593649BBD3F18137C43 /* protocol.upb.h */; }; + 2D0EF38C9AD39A4770DD55C44D1F111E /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C247CB8F9C91C722C551A75D2C643B8 /* string.upb.h */; }; + 2D14CB25E23446CC35E607362462F0AD /* sorted_container.cc in Sources */ = {isa = PBXBuildFile; fileRef = 918C48731EB591DA388642BA0A3980D1 /* sorted_container.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2D3145C4D1E68F1CF6BD9C94A20A66BD /* x_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 01EB475D0C43B21D1BAD5ED8A9B19F37 /* x_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2D31D33D98372F5EB96E017C6339DEEB /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 35AD2C99758DAD9E42EBFA31E4911CB0 /* http_uri.upbdefs.h */; }; + 2D42AA8E234DF16737CDE2ED990BD6B8 /* GDTCORLogSourceMetrics.m in Sources */ = {isa = PBXBuildFile; fileRef = D07E9727357EA6CFF9CACE274ED2E05A /* GDTCORLogSourceMetrics.m */; }; + 2D4D1037C727C5E0921ECEDE99706212 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D852ECBA3506110319CDB7694912D8 /* sync_abseil.h */; }; + 2D590978A17D03A4012D9CA0751FA098 /* GDTCCTUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 68BF31AC67369B4F3BE0150E05B2C489 /* GDTCCTUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D64644671C87B1D1BBBF4C18B357635 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 4DC92CB1DCE4968F8CEA3BC5D2489598 /* grpc_tls_credentials_options.h */; }; + 2D69C7F058C841299A4D1D90299ED145 /* direction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6836B27504A0A075A4DAEBE5C0D0B7DD /* direction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2D6B2277214FA5F383C60DC240A44F9E /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = A481A804862AC9632FFE812C9E592E9F /* xds_listener.h */; }; + 2D6B59BD3572547147E3D4E9E4F9563A /* macros.h in Headers */ = {isa = PBXBuildFile; fileRef = 956AACB7C5BDC297F5C379DB0198F13C /* macros.h */; }; + 2D72179AAFDD3A36AFCAD7E30A989BAF /* authority.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 764089E2FA6D55FE8C4A8DAE740A886A /* authority.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2D7B08A182F24A8FE1834B5FD06394FE /* int128_no_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 58BDC78857AC000484A9BFAE623D3117 /* int128_no_intrinsic.inc */; }; + 2D7D001E9476355EA2E8DA3AF3BEA753 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = CFDC3787ED419800135E2AC94699703C /* hash.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 2D841249F7D10D7559C5D26B14851365 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BA6B7DDAB6CAB918C7B0AE9D612724 /* security.upbdefs.h */; }; + 2D93AC08335E9417CF150935F99F12C1 /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 52936EE7429F440B406067E34858A26D /* status_util.h */; }; + 2DAC08C0A72C406D4839ADEBA695D1A2 /* sample_recorder.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D7A1CBC6CA547FDD0D2BEAC649F534DB /* sample_recorder.h */; }; + 2DB3E93613E339BA7DE9B26FE1BDF2C5 /* tsan_mutex_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 130C5A824540F219BD15114C2D87982B /* tsan_mutex_interface.h */; }; + 2DC06BF5161FD044FA0C82D1020957D3 /* err_data.c in Sources */ = {isa = PBXBuildFile; fileRef = C592034D05F2A5F5E3ACF4061D69A94C /* err_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2DCC0A1BF58BB70B4471ECBB54EE4DFB /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8896A5F9E14C7E43C5FDE0EE69112D81 /* config_dump.upbdefs.h */; }; + 2DD1A4827A6BCF24C53744F9E5FC4B69 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C74E796F933D74A73320FFEA8BA90C0A /* proxy_protocol.upb.h */; }; + 2DE5B5818B49C83419A1B11BC670D0E3 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EFED1EB7904940E57293695D1FB106D /* child_policy_handler.h */; }; + 2DE680725CC851061558FBD3A45EA221 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F718B3E77CFF3D4A7A5F54834AD7B53 /* ssl_session.h */; }; + 2DF317CE67BC49422DB692BEFE14868E /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B90F15E60881E22092AEF3BC52CD7DE /* node.upbdefs.h */; }; + 2DF9A7AA7423FF8664A814B86A8B2F83 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 6210309F33436D6AF88C985CA34E979A /* fork.h */; }; + 2E00EF2AA6A8D5CDE9CDD99FB1AE5D2D /* parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = C119E0D9FCAF3199104CFC3A9C5E9183 /* parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2E036DE9287D62C9A1A1662E4EF78F03 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1210CE283772A28E7CF653F032DE1200 /* path_transformation.upbdefs.h */; }; + 2E1FEE5502FA52901C28A0F03DE609AD /* scrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 773EEBDA13742F01E2F10464913CCCE0 /* scrypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2E2C4B3A577B0624A24DB0446EE3039E /* def.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 4A2DEA38EB7A0DC4708E23315BFBF57B /* def.h */; }; + 2E2C90559C135F2657E6A8F2088C17D7 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = C06DA6C37EF321C0B3B75509245056EF /* external_account_credentials.h */; }; + 2E5904081FA45A6D9C0B78AA64EA23F3 /* tasn_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = F017315273C89416919F230AE79860A5 /* tasn_dec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2E6CE5013AB8919E4B94450DA5FC9E6C /* sysinfo.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD1BD7D4DA91AA96E71CBB04161C2F05 /* sysinfo.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 2E7F4C78F621FAEAB52F87C9768FCB7C /* urandom.c in Sources */ = {isa = PBXBuildFile; fileRef = 890607A4A75F662848280DA4B6F2955A /* urandom.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2E7F5F4DDA1A14EA3A8E8B5B53C0F02D /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DCAE0419CD3F7E14DC4A749AFB8E1F45 /* FIRPhoneMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E981BD88484A92BACE4F0959FBC795B /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1CBCFBB0EE42C6DF8519FF2E620DCC79 /* value.upbdefs.h */; }; + 2E9F455879B47CC10545A96AE2E59782 /* server_callback_handlers.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = DCDF6188010FA4A96C4BD3D5C714685A /* server_callback_handlers.h */; }; + 2EAF0D2506BD957ADAEE4C53B9F845EB /* spinlock_wait.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 29661B030480BFE3B7104DAF36FE7A81 /* spinlock_wait.h */; }; + 2EB79817EFAB6B6FDF36BC3ECDD840BD /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 8576198941D22B1B99E314936F2083B1 /* alts_credentials.h */; }; + 2EBF6F25DA15F7B13FE845241118B833 /* FIRAuthUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C8EFD10891E8728DE99B0869B8A724 /* FIRAuthUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ECEB2F63C85737CF9105FCFAAFB051A /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD05B7C9A5F6F94C585B4133D260B43B /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2ED5F650C07AFBC36CCFF9AF7C9C933B /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = D5DA043265ECF82E27BA78E66469A58D /* alts_grpc_privacy_integrity_record_protocol.h */; }; + 2EE8C151F9640B8E589D4EA56E5CA6FC /* server_initializer.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = BCD640408F442FF20BD84FF1F5D38346 /* server_initializer.h */; }; + 2EEBCE1D71326D57B1387DB60E3531C4 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D16F00E439E66A023D5744AA2C89547 /* strerror.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 2EECA94B114E46BDE89FDCCE3E743BCE /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 589167D5C8BDA3FE3F85DE8886322F05 /* channel_create_impl.h */; }; + 2EEE1B58ABF5DDB564016E3DA45B8218 /* strscpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EA4E231445C9D0F0A0B00DC15A0FB9B /* strscpy.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 2EFBFE2388CCB4DC71C4201DA702F4C7 /* ssl_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDD924B4377422E044E36E72863D18D6 /* ssl_session.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2F015485A77DD62404F7160A1434BD69 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E7DD4D2285193FBD94561970A93CADA /* http_tracer.upb.h */; }; + 2F06A7253691A03641DA51035C4A3447 /* leveldb_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D152DDBCC800E6139A84DD8101BDE9C /* leveldb_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2F08A90D289680F3D16B2D3383F327AA /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D9566A5C0F6BB475438957CA385E999 /* stat.h */; }; + 2F0B806DF8064140C6FEE1629F210D3F /* bernoulli_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 9CD0ECFC306E9D9F3D591CC23C302745 /* bernoulli_distribution.h */; }; + 2F141937CCC74067CC137E41B75D1F54 /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D4D6BFF9FFAD8A0B2B952DA0D7C0645 /* validate_metadata.h */; }; + 2F1F489496C2B76B6ABF8E28BF9DC3D8 /* coding.cc in Sources */ = {isa = PBXBuildFile; fileRef = C3D22391D63CA983FE0930C3FE3D44F1 /* coding.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 2F3334888FF7C2D2352AE9FDF48A79AA /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC45472822A2A5EB4611E94D3CAB6AE /* sockaddr_posix.h */; }; + 2F3A5A9388C6F820361FFF997518B77F /* ssl_versions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E7066B36086A204BAFF51CBF0601B97 /* ssl_versions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2F3DC32CBB78674B65D4AF2F0D480913 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7DD83751577D96401B786F117A54F043 /* stacktrace_unimplemented-inl.inc */; }; + 2F3E60DDB00A22CF9A307D05202255C4 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = CC74B22DF2F89580C724D5F2D81BE721 /* xds_channel_args.h */; }; + 2F4489BAD400CC4F1CEF12D99A7F08C5 /* server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4BD5B5411379344FA68FA87D7794E603 /* 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"; }; }; + 2F58C39B473E4E4E8BABE31D5C5B70AD /* resolver.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C8FA4486D5A721F5D13271ED43191451 /* 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"; }; }; + 2F6E595F97CD2892D7B2081F0A36F48C /* tsan_mutex_interface.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 130C5A824540F219BD15114C2D87982B /* tsan_mutex_interface.h */; }; + 2F79DC6D841A7D8D6D16E065495DFA13 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = DD95AFA33B7DDB1544B2E443238F02F7 /* status.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F7B497BA001BC845DEDEE885AB315C1 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = F77E316C33525C5A6483CCBA154AB987 /* validate.upb.h */; }; + 2F89451F38B5DE88E21E8BC43F9CB559 /* p256-x86_64-table.h in Headers */ = {isa = PBXBuildFile; fileRef = 23B960B908E7FDAC2DE97DF0680ED636 /* p256-x86_64-table.h */; }; + 2F8E0CE2CEBB8FCD64C33AD09A48ED7C /* FIREmailLinkSignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9D1966DB5879AC81FE4761282F3670 /* FIREmailLinkSignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F9939E083F0F68F9DBE9610695342C5 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B5EDD9AF1068695B85AF4B4C41E75757 /* proxy_protocol.upb.h */; }; + 2FB052EB99070F04EB274D2629EFCAC5 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A8F14066AA2F741A3439B16CA86352 /* call.h */; }; + 2FB71BECDE9AD03061B0005DDFE42D30 /* create_channel_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 44DBAA8BA13AB884664F922538587524 /* create_channel_posix.h */; }; + 2FC99B8D572B7155CD5698B176AC058B /* log_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3853E0DC5EA6896A116AD6FFDFF67A /* log_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FE5E6CB542790B2822423612DAB71F6 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = EA491EDCD0F43AFDCC2D0D47A8C1980F /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FF5737744370F91595D19DF741B58C9 /* dfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37F2AABAADE5025DE0828D9A595345E /* dfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2FFA5BB2ED4F50153BA0DCF082DC2DF8 /* filename.h in Headers */ = {isa = PBXBuildFile; fileRef = A286722D838B8F340572D1C263D3C0BA /* filename.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FFBCCF9F2FEFFA79670138E60915239 /* explain.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = C0CA4478DEEFA84A0F4539B305637EBC /* explain.upb.h */; }; + 2FFD180D1D4B0EF049B670D34F66DD2F /* FIRDeleteAccountResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D3BB518CC632FB3081A19BEC238298B /* FIRDeleteAccountResponse.m */; }; + 300564D9FB059ADBAF84BD5D6033C897 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = C5997FDAA3B91F53C65F59734682639C /* parsed_metadata.h */; }; + 3005C8EF09A880D60048E96F7788CCBE /* frame_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95DB763AB8CA32A1BDDB274EEFC9520D /* 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"; }; }; + 30061DB662FE2F73FDE70F6FB62C635D /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 6DE5F3108C75A790516A74709CB5B7AA /* local_transport_security.h */; }; + 30170154EF9722940800D55679A1A26D /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 57180A05BBC12B57923046D1F8F700F5 /* transport_stream_receiver_impl.h */; }; + 301766B6B6CFC908BF31C613B0312423 /* elf_mem_image.h in Headers */ = {isa = PBXBuildFile; fileRef = AFD7C45756478E689495818423B017E0 /* elf_mem_image.h */; }; + 301D554844D25E29BBC7EB98D6C3B633 /* fast_type_id.h in Headers */ = {isa = PBXBuildFile; fileRef = AB967AC814DD7BDF14A489564ACADB92 /* fast_type_id.h */; }; + 3027DC0E3691908145FC97CE1D91DCA7 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 15E87C8B481F6FB5098F9D59BAA96EF1 /* FBLPromise+Timeout.m */; }; + 3031374B67AC12A3D1F45B25D3268E8F /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4488D1F40EC76A480CBC912EA2F4EBF4 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 303877C76B071D2480971ACA8AADAF24 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B848B19DE6E79CA2D1FDE58629B177B /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3039A9736B237D50FFACCDDDEA02F52C /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F6123768C733BF2D6B87CF04AA8502B /* endpoint.upbdefs.h */; }; + 303B60F21F4D6619C725F0AB5823F2DD /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = CA53B9F49A9BFFEE15799E33954F4A46 /* struct.upb.h */; }; + 304683C55381D2C1EF3EEF7715FF54DC /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F03B3AFF5A629FC564EA968D93C103 /* delegating_channel.h */; }; + 30592A5EB9B54A507DEEE6E91BA2E215 /* ssl.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A03D081AA6F1DDB577BFB8BDE069FC /* ssl.h */; }; + 305DCF0EB857B50F808F5A248802A721 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFEAAFA1B15857D7D2008957A008CEF /* file_external_account_credentials.h */; }; + 3073AE496107255644008118D4D78308 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6457F60731C37593649BBD3F18137C43 /* protocol.upb.h */; }; + 308F95FA5BCA3AAEBF3014657640D340 /* bootstrap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FF4D2B86A46C7C52D455671215CF541 /* 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"; }; }; + 309337D96C54354485D71878672DA459 /* cast.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 112E00FCF89E2FD26358A05AE1219F84 /* cast.h */; }; + 30A0060F8B8BBAECB029B446129CF03E /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = C99DFFFA5ACD10C00F548D3D5CCCB1D6 /* random.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 30ABE77D3DF6190408EED9F214A33E3F /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 955869E9911576E0FF221E5A4E819851 /* xds_client.h */; }; + 30AC954B6B0AC32B728178582EB26B98 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 109B9E8DEF6E02099373D79A6B08F095 /* tls_security_connector.h */; }; + 30C21BD330774D712A30B6E061105F2F /* compression.cc in Sources */ = {isa = PBXBuildFile; fileRef = BBCB50AFF80CF8A3B908BFAF073011C5 /* compression.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 30CAA0F6FD117E80439F6941D7BEE147 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FEDEE89F293FCCFEC3C4C9BEBCE26F2A /* protocol.upbdefs.h */; }; + 30CC356F6204461411BFAC5BCDF2D0B6 /* v3_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = C7CABB5C3C90C87F97C511E56DBCB6FC /* v3_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 30CD9D592288FA06E155CD32B3BFDA8B /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 528D8C22EFC92F9C6B6033E1FCC2A23A /* tls.h */; }; + 30EC0E41855CE334D43754D555E2678B /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D55F3E7EC07CAB9AA780456A2D19703E /* address.upb.h */; }; + 310205374BADD6166055B6C84CE720B9 /* log_uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 2659DE91DA348E79C2761757C6B8F7BD /* log_uniform_int_distribution.h */; }; + 3102174C796DCF25A738EF3DF9602A83 /* bio.c in Sources */ = {isa = PBXBuildFile; fileRef = F0812CD98DA81E46941606F756630996 /* bio.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 311C2F9FD5305384396D7E0DF24128F3 /* table.cc in Sources */ = {isa = PBXBuildFile; fileRef = B80C37F98F4FC7219C79270D8F991D52 /* table.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 31299BAB079D17744557FDBE3EC27D48 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3271BBF5FDB56348DA67BE051A937F /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 312F051F190048AE7F45E3627BCAB101 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 60639E4923A2E5E97635FAB8820F369E /* fault.upb.h */; }; + 31338FE96AC2F1123C2D01BA52530F04 /* leveldb_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6EFAE51403B250F788D9848B7BBE12A7 /* leveldb_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 313E0BD6C6B138E65A566255F4D25E4D /* firestore_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D656E858FEE438DF7FB7B3D4C4CEDC1 /* firestore_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 31504D8C419870C9B6BB8037B343AD4A /* secure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6B6345A582066F6B6D46C6547AF8598 /* secure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 315C8AB2D72F0D8CC5CAEC209F2FB249 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 713006068D25F02038ED52811E7DEAF8 /* http_tracer.upb.h */; }; + 3165B674466D9B6960F85C0216512F10 /* wide_multiply.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C9A55A22AFB9E2CB998A4C43DDB82AC /* wide_multiply.h */; }; + 316D49AE670885A841383E54AEB4F5C6 /* kernel_timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA7BE784A76795F672E38B9933C257F /* kernel_timeout.h */; }; + 316F1DEBD9D3B81BAA86818CDF9F151A /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE57C13CE0BD1FF00774383BDFA28C2 /* sync_custom.h */; }; + 3177E2CF2695B6498FBE6499CA8BD1C0 /* p_ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 05F6DFA326C60FC5485D8DD78CC70DEB /* p_ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3178B5D809FD72E435A1261D13E679DC /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 89FDA2BE5974964F1F0F157C66D1EB47 /* civil_time.h */; }; + 318517EB4EAA9AB13A894AEF43FA0F84 /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 9E0587499A9B271011636CCAE94F855B /* timestamp.upb.h */; }; + 318CFB4783FD8B92999BDA1714FB87E7 /* grpclb_channel.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 4B35BD7CDFA46C68589BF278CAB0B546 /* grpclb_channel.h */; }; + 31A735B826BE4A2E849B33748C3998E3 /* FIRFacebookAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 6752DC94ACFA57DF3EF28EDB85FDF9B6 /* FIRFacebookAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31A8D6EF97BE5FAB85AE87989277A9C1 /* frame_window_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = ECE48C47B2B5E75769BA1B7D0FFEF4F1 /* 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"; }; }; + 31A8D75A33ED62293BA6008DD6751A9B /* status.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A608A42A171C22F314D75A2603BB484F /* status.h */; }; + 31B0267B46C32EFDA9779A5051C4A225 /* FIROAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A3957DDDF1467DD664A2B73B6668DC9 /* FIROAuthCredential.m */; }; + 31B2A35D0560106DBE1CDF9413FACA52 /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4B615C246F827C5529AA65E2EAB8D932 /* accesslog.upb.h */; }; + 31BDDD8DE39844987511E18B432A4EE7 /* cord.h in Headers */ = {isa = PBXBuildFile; fileRef = 98036C7758723472C438D6C9CE903790 /* cord.h */; }; + 31C3606EE1E026FB81FB71528E886F66 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F93FB085A4BEF25B32E9DF109FFBA472 /* value.upbdefs.h */; }; + 31C5AE04E9DF9235E23436D8FBB8130D /* FIRVerifyPhoneNumberRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2D58474F99FD672F93808462DB98DF /* FIRVerifyPhoneNumberRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31D2E40129D77CCF6C0647DD82BF2B4F /* priority.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15B22F4C4313428AEB70273A9E7B938C /* priority.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 31E566B119C2A41BD9BC1AC7D9B02E80 /* poly1305.h in Headers */ = {isa = PBXBuildFile; fileRef = E43618434864864D909C372449EC90EE /* poly1305.h */; }; + 31F1359F66230EA749E17CD90E92EC88 /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = D3DD53AA4FC87F50475CFA80C04DCD3C /* any.upb.h */; }; + 320622CEB16E38F3D7740C6C578415C0 /* document_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = F97E7B0FF84C637F6B4E6CAEE320C5DD /* document_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 320C93FFC8CBED14B6AD468109150B28 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C780C773EC1CC8B0DAD0CC29C2E536 /* service_config_parser.h */; }; + 32259313E15F9DE1866C96BB31C7722D /* api_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBA5B66010CA214851C9C0EEA70CCA5E /* 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"; }; }; + 3227CCD4E33198C025087A9A2E507E57 /* options.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB96E9B576F79DE00D2708CF4AE7174F /* options.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 3228D5CC6814E7EC8DB313D08E489260 /* e_null.c in Sources */ = {isa = PBXBuildFile; fileRef = B41E6933C91A20FBB8DCAB5863419E55 /* e_null.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 322D1D2354E93C4138753C983BFD4B1F /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D043CCB711AD8C7E6D010C7B1906A4DC /* udp_socket_config.upb.h */; }; + 323B8137408F07A1774925BD17284B52 /* verify_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = BCC0218C62157626D35EBD1545C77795 /* verify_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3250BFF2A66079F3D9885CFAECA8DC5D /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F62D38A2775EE80B1748767B6986F7 /* channel_args.h */; }; + 3254CA081327142ADB4A26F4D2ED441D /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 8D64C48152A6AD8DAC186AC84864C66A /* reflection.hpp */; }; + 325605C45BA26F78E045D2BEC6950941 /* v3_prn.c in Sources */ = {isa = PBXBuildFile; fileRef = 91565BDC67B16DDFEB5909813337E89C /* v3_prn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 325DF5595C0437E248D935A0D4E05857 /* cord_rep_consume.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5AD8887BC9DCCBEBF15C76ACE424BD03 /* cord_rep_consume.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 32651CFF296AD3D8964AB87FBDACF459 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 312BAC6CF8DE4AE1C603E9C22EA8C092 /* transaction.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 32656E04D0BC2001A5B7767E24D9D6B9 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 9018AE5E2C963954DB8A8CAAD664FA0F /* empty.upbdefs.h */; }; + 327894A95E0B86C0DC4C9083E268C0AB /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DDFB03E2128FD6392BC9A535F108099 /* annotations.upbdefs.h */; }; + 327D0C628596DD7BE4FBA13CA9DFBE54 /* versioning.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 923414142451CBCB51D40B20CE4B7E21 /* versioning.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 328BA17133C7F68260CC8A9797DFFF40 /* raw_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 7959245F8371DE65402E60302EEBE8AE /* raw_hash_set.h */; }; + 329B28C51AE83C31DEB8D2FF1D514EF3 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 208684B9B33542CD9573C1798AAAE64F /* cluster.upb.h */; }; + 32A9C25FF18CCD0DDBDF8EDBE7BAB000 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F76F045B57917451E4B7CBA72C02390 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32DDB80CAB80FA8BE9BC11B7D5B0B706 /* time_zone_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69471F238143E3773382108E996E4A46 /* time_zone_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 32E9BE7EBFE7BA60AF09702444598C71 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 497E117FE5B34BDE747CAD5EC371C268 /* alts_grpc_integrity_only_record_protocol.h */; }; + 32F399E2792802A2ADAEFCF7C40070BF /* p256-x86_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F6A9630CF3E3FA9CB2CA8EA089E4B9A /* p256-x86_64.h */; }; + 3306A777CBD832EE0A27C28EFA17716D /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 64CA97173FB677E368E0BB7CA0E2605E /* GDTCOREvent+GDTCCTSupport.m */; }; + 3308190324372A5FE86AD5D450546E83 /* testutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D3A1284464B508492692682F0A0E29B /* testutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 330AF4CA64494A75DBB4FDD563672399 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E531F55E753FAE6077D3EE402840C25A /* 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"; }; }; + 3313C9214CBAE67B58281705A1A10BA2 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E505547600DF223F5A37FC073FFD086 /* substitution_format_string.upbdefs.h */; }; + 331F02633AB3D1633880F5CB9F6F262D /* type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 18CF02946F92A54A130D3B825555C008 /* type_traits.h */; }; + 331FF9CA1CA207659B22DEE84B999586 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BA5DA75BD6CCC7F96512FDCC497C869 /* tls_utils.h */; }; + 3355C49E3D31E5D6CB93CBC99F8D458D /* FIRSecureTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 743248BC90870500509F1E9FA9EB04E3 /* FIRSecureTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3361A4B0D62D520554989CCE41D4C8E5 /* log_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 903517329C6671ED88E163A4C5BF5147 /* log_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 337A48288BDC518182BE32201FC5FFE7 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 00879357934899F0C8BA56AC5A95A09F /* backup_poller.h */; }; + 339A87B01854378764CAF1028072C221 /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D72C7039A8F4008759839E9CD5A20BEF /* activity.h */; }; + 339F0B68F33744CDB781FF843509E94F /* sparse_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 255509EDCBC1B216299A27803BE6275F /* sparse_array.h */; }; + 33B73443968DB864B3DB33E430AB5D6A /* FIREmailLinkSignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 99934B9738535BE85AF35DD96796E611 /* FIREmailLinkSignInRequest.m */; }; + 33BD93DAC2BFDB6B409ACBFF2B0E6EF4 /* memory_allocator_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 99209FFCA2CC3411FBC2243B07127272 /* memory_allocator_impl.h */; }; + 33C4E1FB5291DC60874FB3553E782C7F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 33C7E59E29CD2AE24D0B103751BAED7F /* internal.h in Copy crypto/fipsmodule/aes Private Headers */ = {isa = PBXBuildFile; fileRef = 5B12C6C6C56F70BD556C855547CAD39F /* internal.h */; }; + 33E6F33BD4444562E2E344A644633409 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64FE2E264AD3E279593F90ABFE9BBF78 /* Security.framework */; }; + 340EECC58B342BE7062700332F0AE559 /* aes_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 376E016602CA27F849C5034F43027B41 /* aes_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 34218E87C19D0B3D9DAE34A8B8CF3B97 /* aws_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 752DA0A6C007A01CFC1F7C1AA13F396A /* 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"; }; }; + 342703B2E4ED43D26EAC145031782FEA /* global_config.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = CE4581D24C43A1FA130A6D0FA9F59447 /* global_config.h */; }; + 3432AEB2E83118B865E04287917D68C2 /* strscpy.h in Headers */ = {isa = PBXBuildFile; fileRef = F68A522557564E4AAB4DBE58A6A1FC57 /* strscpy.h */; }; + 3437F950B3175518050CFEA72FBD86F4 /* spinlock_akaros.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 96EA1014529F136E06820A11DF557C0F /* spinlock_akaros.inc */; }; + 343B179E85EB37A8C21ABB72D3A4BE1F /* process.c in Sources */ = {isa = PBXBuildFile; fileRef = 86F3189D9152A240AD1258D1760ED329 /* process.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 34477177001B7948CD5839D4DEF80198 /* idna.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B51F9282D3B8773AD78B1301431BE7E /* idna.h */; }; + 3456097711F5482734A4EADD4E7B1BBB /* channel_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92BB54664A47BB755B95ED0EF337E66D /* channel_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 345AACC8FEE7C8D16F3683C987F07C33 /* channelz_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 007B120B423112F45A3727724D0FF503 /* 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"; }; }; + 346C3ABDC9C4EA49F1192E67FE81F583 /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = B344AFAAF604BA0DF872CD167361676B /* context.h */; }; + 3470F30492CEDC5BF9C1013ACFED2D9E /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A5B3360E488D0504D1641A5A332E94E6 /* secret.upbdefs.h */; }; + 34769F23E09FBC24D79BF462F14F4873 /* common.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C49CDCC29CB44D4D0A973F339DF9E99 /* common.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 34774DC37FD0F6FF79524E6DEE41E47C /* lds.upb.h in Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F7346FCF77FC5A6AE459E9F786718732 /* lds.upb.h */; }; + 3478505778714B31C2C2637719E792DD /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 20BA58D3CE652887DDD9596CAE8DA09F /* map.h */; }; + 34841654D18D1DE5E9BAF13479F73482 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = E88D524B148079DD23ABB081E5B9FDFD /* rbac_filter.h */; }; + 3492496DC0CDF33E82C86B469669CC67 /* GDTCOREventDropReason.h in Headers */ = {isa = PBXBuildFile; fileRef = 99851E4FC2E7B128BC221CC56D4E9D02 /* GDTCOREventDropReason.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34B3CE3768656DED1D6676DAF6F16400 /* eds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 799111C34A20120534FEE39622188F58 /* eds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 34C47DD6428A6D4A8843FCB174F88180 /* target.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D642A4424EE091D2DD1246FEE90D046 /* target.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 34E14CB5FBF1C0A67DD9ED89BE104299 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 10ED6BA4F1EA9C7ADEC40AF5BC4ED233 /* plugin_credentials.h */; }; + 34EE2EB91D4BED654B2DE4B21A2357E8 /* low_level_hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 20BC233FC5E586BC3A206FB53916E509 /* low_level_hash.h */; }; + 34EE378BB310D952069087881F6BAEC3 /* sync_abseil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C187D996C52747EC74DBFF72DA22AA2 /* 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"; }; }; + 34F7FAF258B361487F8725F656F45A6C /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DA58E4CCA90BF427FEB844C7C6B3E247 /* upb.h */; }; + 350282C268AA88CEC99D4510D8D8997B /* db_iter.h in Headers */ = {isa = PBXBuildFile; fileRef = D0001475ECDEAE1DD9B8CDF7F4A24A34 /* db_iter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35083F60CD3622D408CBB42683070388 /* bad_optional_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE4D0C333D9EBFEDD8A906483A1F29E0 /* bad_optional_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 351B6EEBDA18122A09A73FE9156C92D8 /* pkcs8.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C34A8D32D40B10D34349B36313AB1494 /* pkcs8.h */; }; + 351E039C861CCBC8BE5B3FF481FF3078 /* internal.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 66A30A37B7383A063EB13185824188B6 /* internal.h */; }; + 353FD66D8339EE618E04C6CC2F74698D /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = A8E076F92E18E2A176410D2D847A5901 /* slice_string_helpers.h */; }; + 3542826BFF9BD25B04F2C42B2B8E497E /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 866A4785DB4A328DDB16AF225F6BA93B /* custom_tag.upb.h */; }; + 354C585009B84E684D4D531EB0D264DD /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = E3BA8D00021AA1CCC4F50C99457D31F7 /* time.h */; }; + 3559E5C2D175D3B255CF27B88F780D13 /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DEA04C956E10597DF939666F703AC80F /* endpoint.h */; }; + 355BDEEF04736701C5B5EBFB66F68A98 /* core_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = B7367647018216267FDFF67F4CA2FC7E /* 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"; }; }; + 35616097418663D4329A99E2E5AD11D4 /* city.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DEBCC1E682E8B7415409A5066CAD5090 /* city.h */; }; + 356222A12A42F2F94399DD6C2A6FE78E /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 5B9A30E4D69D5CA645AA2905BB09E506 /* annotations.upb.h */; }; + 35650D60B757EFE36C1FC2AC402B98FD /* ex_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 430556F9724E0321A6D58C3B2110AAA0 /* ex_data.h */; }; + 356E922D4A63B0D32BD3D61D7DC37277 /* xds_resource_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = E17DBF5F48E222DEBFC34246F62FBC31 /* xds_resource_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 358EA6F444DB1DFD66741801F57370FB /* sockaddr.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6D6CD9FDBAD9C4F285C5DAEA6B1B47CA /* sockaddr.h */; }; + 35945CC83D192C6A5E9665338B10BB8F /* substitute.cc in Sources */ = {isa = PBXBuildFile; fileRef = B49386D8BA60171F27083C2B42C6906C /* substitute.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 359749F97B0CF038C725F7C805DE435F /* grpc_alts_credentials_client_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20F266EB0176740DB67A0017DA20C29D /* 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"; }; }; + 35A3F65FFE5315001FA9DFB248881FAA /* obj_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 8744DA8827C8B2359FFD2A6F8FBFA83C /* obj_dat.h */; }; + 35AA8C314A4A16CB3BA8DA0F8DBD3DB8 /* cord_rep_ring_reader.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D2019AC0F0D0B629F65B746F70FB24B5 /* cord_rep_ring_reader.h */; }; + 35BAEF8588A8B0243439A0463B372562 /* csds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D027DA0D473F0811F0E010C9945FA145 /* 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"; }; }; + 35BC03AE61FD95A93698A500EBD76EB6 /* grpc_library.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = EBC27C685ACBA0821D33659D7D62D512 /* grpc_library.h */; }; + 35C245660698EE2A5DCF25413ECD44AF /* document_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3824B5428C23E6AE8572246E1CEC1F9 /* document_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 35C4EA88B6DAE49F3C7437E591B0DCA2 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = E4781B75B403259AF1253AA2CEC6F616 /* json_util.h */; }; + 35D3D680828F9FB2ED6FD834A8DF42C9 /* chttp2_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = B063F8B367D896FF50DC4B81E08EA986 /* 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"; }; }; + 35F1ECC6AC9E0C709581AC88CE73982C /* xds_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = F986E070DB671475D9B00EFCE41BBA09 /* 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"; }; }; + 36117E029E8079A35EB52F4B45E9C66A /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E076F92E18E2A176410D2D847A5901 /* slice_string_helpers.h */; }; + 3619238C508B5B8EACD63BB6AE816B36 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 952596A0AEB8945984149E20ECB38C30 /* regex.upbdefs.h */; }; + 362F26DA971E61153746F0FC1753CEC8 /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 845D25547CFB827A33FA7CD82DCD1A68 /* memory_quota.h */; }; + 3634B2C2B1164435B0075F0319B8E20C /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = 05B0E2FD160673F9272707AD7732C648 /* local_security_connector.h */; }; + 3638CBD29F8E941348219A9560B79D68 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C35F9509DB579DB6879A5B1C96E24659 /* SystemConfiguration.framework */; }; + 3644AACEFF954D1CAB5967D8F918B277 /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 8C38037DB6EC55DD10758FD4552A32DB /* useful.h */; }; + 364AB4E764C28EACAEE59760ED5E9DC8 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FC7C4FD91647C3A6763204A088C5C224 /* typed_struct.upb.h */; }; + 365993C1CFC9DCE6503ED73B08025479 /* add.c in Sources */ = {isa = PBXBuildFile; fileRef = 075E6496AD3ED2FDA07353D220C39B82 /* add.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 366168C633AB35875897FFD91A638F03 /* address.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D2DD942DE37A1C976C70E36196ABC577 /* address.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 36700FCFBB260654995793BA287751F7 /* cds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CDF8178D302358527F79694E239436B /* cds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 367FFABE49BFDEF24054D3733A21D815 /* p256_32.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD655EBA8B38555F6427A5A6161EA05 /* p256_32.h */; }; + 368987817CA5DFCFD25B1EB5DB8A559D /* policy_checks.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F60678A89679FFFD3C3CA52B98AD7F5 /* policy_checks.h */; }; + 368A27D9AD99795354EA65A9CC8D1989 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA9886A902315B6320DF9455EDF5D5F /* pid_controller.h */; }; + 36903EE8FAE663F479D04FA9280C83F5 /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5E6FD2FA98E4C3A91B31A38DEC7002D /* filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 36A0473A8259A11D3D783C9F32CD9261 /* server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = A68E10E0782E9124117D7F00B408CC62 /* server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 36A51BBDAF74E824E4F67AE0E571E235 /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 840BD586EA3F2FF045F833F88B5D2D4B /* connectivity_state.h */; }; + 36AAA0BA68E987A3C1C9CDF0FD95E174 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 101194CD2C8DE102E3A0F1B9CE9719F3 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36B2A49859ACC0F6CE643B93F0B88422 /* ssl_cipher.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACEABDB3C53B230C730FA8D6A6E191FB /* ssl_cipher.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 36BBC74FD62A6F1319431D82C9453AC1 /* blowfish.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C812EA546B4C6707174E4706BE1103 /* blowfish.h */; }; + 36C1B5A328A4A2183CEACE5BF9DE3D06 /* internal.h in Copy crypto/fipsmodule/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 12B44D813521C1B3E58ABCA17B2FC763 /* internal.h */; }; + 36C954E146F3260C8EC49D696B060DBE /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C53DA64571379C8C591E440D024F8E6A /* outlier_detection.upbdefs.h */; }; + 36C9A49544EE74FC6CC8043F9C840453 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = CA840E3A087AEFC0F15D539A7094600D /* log.h */; }; + 36D354C005DF62D2E51F471BB8AE2BF8 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 1B16692F5DE3C0A73E926EBBB08409E5 /* call_test_only.h */; }; + 36E93D87DBE3BDCBFD043C15D557E1CF /* FIRPhoneMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 55B9F6438DBDE1C305B9CAED6CC1C042 /* FIRPhoneMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 36F02733CBC31BF8FB1BF35EF8AA5F5A /* cds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E8AC9CA616687A62A1D217EAAA0043 /* cds.upb.h */; }; + 36F45FB06D592E81C8BC05054AB73952 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E27ACE453E2FF392BF2C0E58A69CA35 /* poll.h */; }; + 36F46F789B0EEF8E892140030F3E03BD /* completion_queue_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5C52A480DB31557DBCAE9B405A65F78 /* completion_queue_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3710701CF0339C4B689576D298188D5C /* spinlock_posix.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C7EC4CEE262400C70C131AE32751A9E0 /* spinlock_posix.inc */; }; + 3713BD8090DE7F56A187D3B582184288 /* string_windows.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 933F733BC59FD4CFF9E425C8596CBFF2 /* string_windows.h */; }; + 37168B49D0A62585A009BA632611DD65 /* route_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 434AED16135B8A938A18D1462E5B6BB2 /* route_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3717B28E1EE649CCEFEE45BDDEFCD66B /* throw_delegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE0C66EE00225CD86D66522CD44A9CD /* throw_delegate.h */; }; + 3721B61CB1A1F64A67DF7C3BC34C43C6 /* sdk_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E5A4E92379536DAFE52CF2D7FE8A1E0 /* sdk_server_authz_filter.h */; }; + 3740716015E69D301E0CF1673A0B5376 /* FIRIdentityToolkitRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B36B32D91F1F810D092819DEFF0BE8A6 /* FIRIdentityToolkitRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3748C4597A8B2DC180FA9D54808DEDC5 /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 41097F5B724FCE12E5E9A0F5DCB0E747 /* ssl_security_connector.h */; }; + 37592DCB645017A9450549707907C22A /* max_age_filter.h in Copy src/core/ext/filters/max_age Private Headers */ = {isa = PBXBuildFile; fileRef = 46DE872B0050A0BE3E96703126ECF66F /* max_age_filter.h */; }; + 3761842EBBF86E33E63066E8B06955CB /* mode_wrappers.c in Sources */ = {isa = PBXBuildFile; fileRef = 96C1A5857F3C39E3EF99DC10BB09FFEC /* mode_wrappers.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 376A4819862D96173F73BBBE48B99734 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7BC357F159AB2D06254EB80D5F2FDE67 /* frame_settings.h */; }; + 376F1B826A7EE6B479F8EA5C79F05128 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = D65E50A6E2055A0DAE2828664C16334D /* transport_security_grpc.h */; }; + 3771E58F17F531E35ED24657499E83B8 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3445E98AE21D6D0A7D19BDB808307E /* orphanable.h */; }; + 378D2C56DB9A7C1D3D0C1833BA4855E2 /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E12363CBD194ADA1E2348F272F5ACE8 /* resource.upb.h */; }; + 3792B620F564607C654E6BC31652358E /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = CC74B5B73E27947FBBE1A246F3E739A7 /* tls_security_connector.h */; }; + 379545B032E175D65C249F4C1152D8A2 /* pid_controller.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3DA9886A902315B6320DF9455EDF5D5F /* pid_controller.h */; }; + 37A54683903AE371C51A1E6BA13CFB71 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE94FDBC6214D20A441583351D621DA /* gsec.h */; }; + 37AEF89CFC71ABB580380A7A1543DD36 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2AFBC39DAED75A56A3132E5775A9B8 /* sync_windows.h */; }; + 37B1F19450D60D35C6962FED4C8BC722 /* FIRMultiFactorResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 43623CB6C4DAFF7D742D70A6E3E9390D /* FIRMultiFactorResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 37B9905ECB51FD905E9ECC243F99B3B1 /* pbkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A2AD21DCE6BCF48284E974096BDC2D1 /* pbkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 37C86F5D164BC3354FC3FFFAEFDE5D7F /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BB2D194EFAD897D8F13523729764F3 /* endpoint_pair.h */; }; + 37C8FFE9382FDE7521D95E756843051E /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = A1C5C922864884C87FF7B3296510D4E6 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37E3E7B48E8DC7A96E33DE0BEA0F0B84 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6409110958CE063FA6748CE38BA66377 /* metadata_batch.h */; }; + 3801FEE4D510325E506890F5AB03885B /* xds_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45ECD0A69C3890D9259F77DB8B9B7CE4 /* xds_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3804C60EC7B98AAF697F77BBCBE75BC0 /* exponential_backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2AB865490DA35C0AFB92138DF93F1168 /* exponential_backoff.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 380CDA5803520981D1269D6F4F7A4465 /* FIRSecureTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A44ABF905DA4E1DECF657095CFE0C5 /* FIRSecureTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38122C9FC1CC8A2ED23F6AB3DE16209D /* crypto.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D4F02BEA6621E833C7C42F76A720DE3 /* crypto.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 381E4A5DF1D42AD3830E3AB22614CDC0 /* seed_sequences.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B9672067D3C678E9811DAA28EACAF3 /* seed_sequences.h */; }; + 3847A0B34EAF89264F607445825E9869 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D07D685E707E7F242C354E361F8076AD /* annotations.upbdefs.h */; }; + 384D84379F9F0B47A453B1AD5D11E15D /* symbolize_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 64F43F5F8D77B7AD63DF3CCF68AF04F9 /* symbolize_win32.inc */; }; + 384FE324917094696C2B22289D51F83D /* sqrt.c in Sources */ = {isa = PBXBuildFile; fileRef = C74935DE1EB9622B198CE816B700F961 /* sqrt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3877A39CC0E5A7B0AE9A4CF3B035D8E8 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DD9720F99EDC3CA2075BEF05E41FFF /* socket_windows.h */; }; + 3879544FBF7D676FA9C00C43EFD49B12 /* health_check_service_server_builder_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EA8B0670C869E5745119CF205E76A4F /* health_check_service_server_builder_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 387B34C593CD667E89357B3375375230 /* mutex.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 180E90F16A68DD95194B4D6F687F8608 /* mutex.h */; }; + 387E99E2A92E01B34138D64540F39476 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E302CE0BDBAF46ED6F33137AAAEA625 /* cluster.upb.h */; }; + 388868E73B510AF358AFF3ECB3E145A9 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 4696C3A1E17C292F74E651A0285FA330 /* slice_refcount_base.h */; }; + 38976FCEC83A08D9740A308BADC352A3 /* binder_constants.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6FC055740FFBC25400723E7E8BE49B73 /* binder_constants.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 38A8DF3D154239175DEE6F5DC1378826 /* srds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F97BB4B975667319CC34C4E05585709 /* srds.upb.h */; }; + 38B71ABC37BAA9D09E0C089654B6A1B7 /* port_undef.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = A1D2ECA061DFA3050BC9F153F9ABFC3B /* port_undef.inc */; }; + 38DDD6C39229BCAD100BF314C160CDE5 /* notification.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 93AD197C74B4BE8D8CF97AF3ED68D0DF /* notification.h */; }; + 38F5FF36B92EB32C0ABF4852FDA8FCB0 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 157EA21DB6DBBF871479254BF0D78322 /* resource_quota.h */; }; + 392253B56B609630B12B5BFE30E35BBB /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = C33FFCE12E841F4D422156626D2EB150 /* backend_metric.h */; }; + 3922F91EA21445D6E9EEAD863CE938DB /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 53B321657BF2CF0B5BE76A98027CA70E /* ref_counted.h */; }; + 392DA9996009EF14003645C32BDE46F6 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EA9256E994D4BE2493D09B9350AAA2B9 /* frame_rst_stream.h */; }; + 3937318C5D4B0D12BA27938285B98317 /* tsi_error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 88E8C9FCF0029802A9758840676839ED /* 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"; }; }; + 3939E6F78A8FC999E986CD6F97E0E2DB /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 753DF97634FB28A0BEC213F480F0159A /* xds_resource_type.h */; }; + 394AA4082A2EC3CD7F70C2630980565A /* internal.h in Copy crypto/bytestring Private Headers */ = {isa = PBXBuildFile; fileRef = EBB0FF0D85ABECEAC50405D646598115 /* internal.h */; }; + 394DB5081EFFC5BEA6188BD18A8B4022 /* FIRVerifyPhoneNumberRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = D98384995DFB7952271D53952D08CE86 /* FIRVerifyPhoneNumberRequest.m */; }; + 394EA322E2D3FAE7ED14A31C26FBCAED /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = BE0D23A5D5765304560022F42EE13C28 /* socket_mutator.h */; }; + 3955F27DD4BCD283AD614776FCCCD716 /* FIRPhoneMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 22999C0770A2A8C2DD0A290033F68E1F /* FIRPhoneMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3965DAD2D3547FBF8BEFB3FF7009B4B5 /* low_level_alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2F23EB7B1DF87A20AE1CD0347B8F4DD /* low_level_alloc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 39719A162A81897C508459B0098E29BE /* CLTypingLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4A1B5A4E5416F8590843CE6E648D56C /* CLTypingLabel-dummy.m */; }; + 3987B90F4C504AC3FE0ABFCC914F53B3 /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2A4A392088B74EE77B2A3EC002E127CE /* http2_errors.h */; }; + 39912D488DD4433E7DEA8AD5544A8558 /* target_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62FED1FA33BAA11E297B4EAC8B35BC24 /* target_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3999C19884B6F5D511A965D59A1C3988 /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F22ADBD63B4A43C576A2F7CCD1012606 /* cord_rep_btree_reader.h */; }; + 399ABE73B089548B03071BB949EAF0EF /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 62A5DD862D4E7B6816BA41249305620F /* resolver_result_parsing.h */; }; + 399B5A337E1DCA17F5293C8169738ACF /* client_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C3D5B832E4B32AA1E544140497AFB731 /* client_interceptor.h */; }; + 399F0ABB107959270636B223AA3A7A14 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 41FBAB31C967E337C38682013E259BF8 /* tls.upbdefs.h */; }; + 39A5E5B853E89B26FCC4B745B4184ED7 /* inline_variable.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EAFDD13172B698703715CDC558AD8E05 /* inline_variable.h */; }; + 39B6889F4D839C32DEFF6610EF319B70 /* iomgr_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = EC83AFB0DEB26E32DCAB6AFC67D0892C /* iomgr_custom.h */; }; + 39BA2960090FCFA64A68C321FA44A396 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 126E8649D741165D87C9D87A62104E7D /* proxy_mapper.h */; }; + 39BDE214985538E658971BC66AE75AAB /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DAC8B492D1B2176E766F52876E1016DD /* stacktrace_aarch64-inl.inc */; }; + 39D2E92971AB1C04096FA3CB40044EFD /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB2490C583F426C46FEB9C1134B2A17 /* GDTCORRegistrar.m */; }; + 39D707E5998BD32CE228C41E1EC01399 /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2DBA37C445628D1DDEC56CF0C0D006D1 /* discovery.upb.h */; }; + 39DA782DCED398D378A84930E7B8C22A /* charmap.h in Copy crypto/asn1 Private Headers */ = {isa = PBXBuildFile; fileRef = 41C8724A176B8050462592A9E1E2999B /* charmap.h */; }; + 39EC58246C5AAC97506975C5A13E66C8 /* sockaddr.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 199275C966E2ADC325321F0E28F9BD92 /* sockaddr.h */; }; + 39FDE28CE248C86FDBDDBAC0DBFCC774 /* GDTCCTUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FF4DA9CD441668794E01F66591E12C5B /* GDTCCTUploadOperation.m */; }; + 3A187A927100B2DFA8A35527FA601677 /* grpc_authorization_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4893D60E86466E3611D0C8FD4F90BAE5 /* 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"; }; }; + 3A1BDD131BD14E36C5A102A70F350009 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 744588BE50B70EC86CDBA607F4426EDB /* xds_route_config.h */; }; + 3A2A7B66F06DF51011432290A7EB5964 /* v3_cpols.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C959DE385873B396C1158318D2BB186 /* v3_cpols.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3A345FCC23C929D9E55205DA642EABA9 /* FIROAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D09A85EF031EDDF34D6E70C0C6862F97 /* FIROAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A3A945023EB0B064B12545B146DE909 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FA5B34BBAB9666CAB504AD23D5C483 /* polling_entity.h */; }; + 3A3FCD2F419DF691C9C29A3A0C39DDF5 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C055D29FB379E969FF9FBB32ECD71B /* stat.h */; }; + 3A46FE3944A13DAF1C125437BAFF8B5C /* conf_def.h in Headers */ = {isa = PBXBuildFile; fileRef = D4B53D6194CA7B02AD45947E8802E00D /* conf_def.h */; }; + 3A53CB95EF0CC9C1B67B957698B2E681 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 199275C966E2ADC325321F0E28F9BD92 /* sockaddr.h */; }; + 3A593AFF17305517B762C3224063D678 /* gpr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 562464A9098271CC9C9BF184AEF5E852 /* gpr_types.h */; }; + 3A59B2D10647677B15529CB3CA6DD49D /* default_health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = B50CCA9B665772297B530FBB088C1FF5 /* default_health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3A5F97DA263A99D2ECE4B053A866D0ED /* port_stdcxx.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D58406B63AAF6FBD7BA1E3D656A283B /* port_stdcxx.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A674B35F6BDB80C7196531E44F12F91 /* csds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BC50F9EEF9CC809F40CFD35B6D24D45 /* csds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3A70C566EDC9E208DA27E370A50F23FE /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 019F83968128F6F24839D3D064259166 /* message_compress_filter.h */; }; + 3A70EF8B45FB375690CCB8F9962D2B70 /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = C73A5ACA65C331B4671916330457A6C3 /* x509v3.h */; }; + 3A738E780EE6263C99F62817B6E06184 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 794EFE21FBF1C0C765D8F5CFCCC99D59 /* atomic_utils.h */; }; + 3A77FF30148E982F6CDAD9EC94CC26D5 /* bind.cc in Sources */ = {isa = PBXBuildFile; fileRef = B281AB424F20C96F1C25A3D86CED11F4 /* bind.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3A78CB1CEFB3FDE474F69EA08E350D72 /* xds_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 707B7BB8C58EF90A1687CE05C1F8FCD2 /* 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"; }; }; + 3A9B4F5B03EE235919790AF49F0E50F1 /* direct_mmap.h in Headers */ = {isa = PBXBuildFile; fileRef = ED9CBE0F7524619D3A0F210215C21035 /* direct_mmap.h */; }; + 3AA6D7942EBE714401371F127AE9AE31 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = E2ADD3D7C577F3E409CABE752BF825FC /* tcp_server.h */; }; + 3AA74C28FCF2FFB06A7FD8AF7015380D /* FIRAuthWebUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 155BCCC589828DAF3A42306AD6E122F4 /* FIRAuthWebUtils.m */; }; + 3AA9D95C6FDD1D6535A3B3549E354527 /* schedule.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3504954C67B4585D55B86266E8A2FC9C /* schedule.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3AAB01226EC9F94A764154FC9DFE021E /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 36B25D5358C16E94A2090B6FADECE50D /* proxy_protocol.upbdefs.h */; }; + 3AB4A95230838659AC9A1EE3B20C9138 /* FIRAuthAppCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = FE0833A3F9566388CFA611A5DF536E7E /* FIRAuthAppCredential.m */; }; + 3ABFD382D3BBC4C514D55AC04A1D5480 /* NSData+FIRBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = FD575D16DDAFBC163ED6E2F28A266DF3 /* NSData+FIRBase64.m */; }; + 3AC09D08766D207F4CF81C5923428D8A /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 4F3BDC65CB66DB3C6CCF50CDF798258C /* rbac_policy.h */; }; + 3AC2BAC3528A508CD71046A44C762A1F /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1F11D02011EF5B75BC559C250C5539C3 /* xds_client.h */; }; + 3AC42EFD48DBCF593C6BEB57BC87329D /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 3B056ADB961043F51C223BFE78B79B4F /* string.h */; }; + 3AD7D8D6DF190E358ED35322F865E557 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 29E03EA70BBFA58F0095601A7AFAAD78 /* metadata.upbdefs.h */; }; + 3AD92BED30645E40BDE976DB5B5D78C5 /* activity.cc in Sources */ = {isa = PBXBuildFile; fileRef = FDF9132F36FD5A2879860E650BDC7EFB /* activity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3ADE2C0F434102061B7508E4DE8AEA4C /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = A069DA99CCAD2DB2EAE50BDAF70CE923 /* sync_posix.h */; }; + 3AE278BC0156D2D0590ED867F7734ECC /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E12E8D566FAF45FCAD196BCA4B92A17B /* grpc_service.upbdefs.h */; }; + 3AE85C2D0B1E8B7E2984AAD43204EB6B /* leveldb_overlay_migration_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A41F2FB8125DE50F62D84AB15E5D9D5 /* leveldb_overlay_migration_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3AEA0C95285F38E5F54361402E41E13F /* algorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2321910D7457C35B1D8ADE1292954C /* algorithm.h */; }; + 3AEE68AE1DE48218555DABA31E58A707 /* cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EA2338E35C7558F6B8A6A339E6C27E4 /* cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3AF1E35113563D186235685C9CF06275 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7FCDA6FED7566AD835DDAC45606FD285 /* backoff.upb.h */; }; + 3B093183EA4D31B692E0B19D5EAF584D /* randen_slow.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D0639252D21CB4DD0FB35FB40F888E5 /* randen_slow.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3B124BC201AC6208FA0AFD370D7B57C2 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABA1BB21241BABD9B5843658E5E9069 /* http2_settings.h */; }; + 3B197B15158710147C3695F561D6F1DB /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D298BCCDFBF6F5A131F2F74529E894 /* symbolize.h */; }; + 3B3834C9FD8B2AB7C481746FA41AB826 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 788FB90AC07FE36E0135FEE285AB339C /* http.upbdefs.h */; }; + 3B426CBA3C0902BD92376CDCA37818BA /* utility.h in Copy utility Public Headers */ = {isa = PBXBuildFile; fileRef = E9B61ACFE82A0D1552E1BC063D6CB952 /* utility.h */; }; + 3B656AB699D58E693AF36CFA4A645708 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 784EDAC21B9A7139AF68CDB3C25DB71E /* iocp_windows.h */; }; + 3B82D34B60C5864DD75D07FDA3FCD378 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED2FBE98224920237BD3DEFC52428A9 /* alts_grpc_privacy_integrity_record_protocol.h */; }; + 3B8DE63781A07D322FEC05481559176F /* srds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 96737F25BB5020712C4548B46FF44F27 /* srds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3B8E7D10BBF455EE3F6B4501F42E2AFC /* forkunsafe.c in Sources */ = {isa = PBXBuildFile; fileRef = 86C836C903714BF4F33F102987D94133 /* forkunsafe.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3B94793DE291646007C901914CB44AA3 /* msg.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6AECB4BD0FA3D16FE848360F98D248 /* msg.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3BAB0C39074D44D4B584EDFE600D0F94 /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E89AF5197CAE8B11B179A8C903013E0 /* udp_socket_config.upb.h */; }; + 3BB253920B9CD6050B88A2B6785FEF2B /* string_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09553541E60F0BE59E0E76738074EB32 /* string_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3BB66D277B9E52EFE92E2ABD3C0F32BC /* polyval.c in Sources */ = {isa = PBXBuildFile; fileRef = 94724F5543CAF24499BC23259116E966 /* polyval.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3BB8E3F1F6FA44DA14843D7747F2BECB /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = D2DBA07DF8C74BB78C556334B35CB3BF /* local_subchannel_pool.h */; }; + 3BBF2A4151EB65192F7821479CBFFEE6 /* xds_common_types.cc in Sources */ = {isa = PBXBuildFile; fileRef = 426580D44D2B04FD5C013D640EF4D630 /* 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"; }; }; + 3BDF7B1EA2CE9DFC0C4E8844699DCBFF /* idle_filter_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = D99A700AF6FC8866173B03A7AE1A46C6 /* 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"; }; }; + 3BE2F526C66EFD1A13AA18132671612B /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E0587499A9B271011636CCAE94F855B /* timestamp.upb.h */; }; + 3BECEC7A43EAAAC2D94D08861CF9025D /* status_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = FBA774A0D4CDBD75468A90BD3E1EF74D /* status_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 3BF815317F91D9530F839FB5D2E7D880 /* felem.c in Sources */ = {isa = PBXBuildFile; fileRef = 06F0D59D968FE74B17C59C332385F976 /* felem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3BFCD25FC32E95750C647222F9A250A1 /* duration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B03A0BF04F84D51E1CC7FDB43D3169A /* duration.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3C06A2501ABCC6A0EF9D5CC8E91A41B0 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B79D2AF181F21AC6D0214D2E5B8AFE1 /* alts_zero_copy_grpc_protector.h */; }; + 3C1E7364FCB732AB2961E4C16A60634E /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 740DACDD3F5B8CD5EE986D22C6DB29F8 /* wrappers.upbdefs.h */; }; + 3C2853FAF5A7A0A59DD52064177C175D /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 41106B6D5A056B269F476E360E205C8A /* transport_security_interface.h */; }; + 3C2B2B6DD2ACD550639A9A89D3F0A601 /* hashtablez_sampler_force_weak_definition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95C818AE4B75DFF34F617F351F42C276 /* hashtablez_sampler_force_weak_definition.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3C41E9753E710395CE3FE7ABBB608B99 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = B5F49B4FB642AF64CEE861ED7BC34E15 /* basic_seq.h */; }; + 3C562365128DD2CA25BD67D2BDF2F7BF /* sparse_set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = BC0BACD880BA194D84ACE595AB85B11F /* sparse_set.h */; }; + 3C5A948D4145CC3CBED2484D2AF7AA13 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C620150225E9E4585B1D60E98B2C14E /* resource_quota.h */; }; + 3C79381A5370F4E61BA8B48F5ADA13B2 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 813B88885DA9DE97E9BA345D551F8C51 /* alts_iovec_record_protocol.h */; }; + 3C7DACD7DA29A93A2951DE5F3B1B50EA /* memtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 392DD530D6D0760FD5D217FEFA49696D /* memtable.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 3C8EBC840BF3A899DAE66790C42F60C7 /* get_current_time_posix.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2B137E4DBF66DE6FF1F325B542871865 /* get_current_time_posix.inc */; }; + 3CA98FA9238CC948A33612014C598286 /* external_connection_acceptor_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D92EA3A7FC3953CD3989F4E8DDAAAD0 /* external_connection_acceptor_impl.h */; }; + 3CAD6D6A17980FC015433616410C038A /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 604286557E9CE4D862024F4ADE68E839 /* http_uri.upb.h */; }; + 3CB8E665A6E8B6D73607D7AD1722DA80 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7B36BEF4490E7C1FA8A7A8F280A83A /* GDTCORConsoleLogger.m */; }; + 3CC1264C2770E0F5F1B62C1527DE1492 /* timers.h in Copy src/core/lib/profiling Private Headers */ = {isa = PBXBuildFile; fileRef = 87CF470B7FAD3566E00188390D024EEF /* timers.h */; }; + 3CCC64BC0CE26A1B9B1C09544426D85F /* evp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E0BF6553E330AD80F1C6B05FB38C5870 /* evp.h */; }; + 3CD15DED8A3A66E5E2D29E4D65BB9421 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 7CAD0FC48830950333C3F295883EE408 /* ssl_transport_security.h */; }; + 3CE7D9CE6B6B7FFA5A2157BA25B3A46B /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A547B8A18E1D0E42C8ADB695A04ED8B /* stub_options.h */; }; + 3CEB20263F19D7EACB2AA0DB9C6DD817 /* gpr_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 562464A9098271CC9C9BF184AEF5E852 /* gpr_types.h */; }; + 3CFB1AA6BB93D5F5D90FA72BDAA457E0 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B70A676789C4036F45575C5400D5CAB /* deadline_filter.h */; }; + 3D02F2E8685F7C76764EA3E1E62FD16A /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = DE582E4F72274D3CF9E0C7E72DA4C274 /* service_config_parser.h */; }; + 3D043DBD19C3381D7ECEE668CA2FF7B5 /* rds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CA76024018A23C79F7A68D22680B8985 /* rds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3D0967FCF26F36F35AF3EE94773D5279 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 582DA92D9E02573E166CF86393FE4E01 /* jwt_credentials.h */; }; + 3D0E94DDC8D30BB67AAE8E6517370243 /* pollset_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 77E41E672126381DB5F4F7F297E7035E /* pollset_custom.h */; }; + 3D11EB0948E2073AD87B4EAB15FAE6B5 /* backup_poller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9607F8706F16146FDE7800CF12964BF3 /* 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"; }; }; + 3D34708E4D79C504D536D29F5E752641 /* api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78B20338386F13EACAB9839EF45B9D52 /* api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3D3915094DD7DFAD212AB9D6CF738678 /* secure_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 92DFA4416E263E772F71F89F9BCC8143 /* secure_auth_context.h */; }; + 3D46AC030D2F15B66CE861634C61CFAA /* def.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = EA1EBB0FFFCE5E65F3BAB536F2BA3228 /* def.hpp */; }; + 3D542614D9776DF6C41921CB30D3C22E /* resource_quota_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 956B466714344BB700AEBA587FE54639 /* resource_quota_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3D5BBA3924F23040B56C726CDCF6F16C /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 25475A593A6B1686B40F8951AEB0E93E /* load_report.upbdefs.h */; }; + 3D6017B722ED9770F3C15D3A9616EF6F /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = B344AFAAF604BA0DF872CD167361676B /* context.h */; }; + 3D67157C492CF32DD528CC07B1CF9930 /* event_service_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 204688A39C5D245A038A935A011098C5 /* 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"; }; }; + 3D675715FB684536BA9E54677A57D3CF /* ext_dat.h in Copy crypto/x509v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80406B32B70F9D6F3E9DD1FF3A595592 /* ext_dat.h */; }; + 3D71A3C64FF23894A02E2078757839CA /* pcy_cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 1550D56B8F7D85FBA0010BC48F98C2A8 /* pcy_cache.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3D72332395233BD560B8547184273DA2 /* getrandom_fillin.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA13D0E2C5F02B70E65D1B8D9A28B84 /* getrandom_fillin.h */; }; + 3D786E553F0DBFB7B6AD8F743125B64B /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 97ED18C78A80B95465644D5DE6CB03BF /* sockaddr_utils.h */; }; + 3D7BC818A74728CEF80E11A3ABCA3CBB /* spinlock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 080E8AEE10387A60A13F909676EB2D01 /* spinlock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3D9FC4A21CDD284A1400E0F1B250E97C /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ABD334F67674CACA227946663851F9A /* msg.h */; }; + 3DA7298AC11EDAFAFAC7805672BC8C25 /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = CA1CF0A600F340B06EA28F808B2E735F /* migrate.upb.h */; }; + 3DB72566B25F347C5A236BCA810C1AA0 /* fastmath.h in Headers */ = {isa = PBXBuildFile; fileRef = A5EAF5C086D9D3DFF4B6433874C511B9 /* fastmath.h */; }; + 3DB984BFF06A7EACAD866F96F9DDAE44 /* FIRVerifyAssertionResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC9B624633F09E297AE7E0F849BE807 /* FIRVerifyAssertionResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DB9930BBE8755F1C984C58E49DBC374 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1765026A58394FF23CBEACD729275440 /* metadata.upb.h */; }; + 3DC0310CF71BB65CEEFF171563E0DF6C /* gethostname_host_name_max.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1268E0F9DC9478A9A439BD4FEEF76881 /* 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"; }; }; + 3DC4A4F954C780DB63BB04E11E93FE92 /* lds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E761B9427A79B15C7FE15E0B479590A /* lds.upb.h */; }; + 3DC529BED651E80DCEB39BADA17F2309 /* api_listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1919AF9EADD9D62F6BF5020A84129F75 /* 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"; }; }; + 3DE349F644E53A2FE22DD88D50DA981A /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B8E254F935B04DBD8B8DF54132EAB8 /* FIRComponent.m */; }; + 3DE56580CD4C08C58351845DF09D92FA /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = EAFD9B90E108EC468FC3C7FA14AB2D05 /* time.h */; }; + 3E2920084A52F78581BCE816DAD7C577 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 22385A28598D6D8A4BFF5BD2C6AB7789 /* FBLPromise+Testing.m */; }; + 3E2C6F3BC942A009B7939A329DC1C257 /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = BAC4D3FAB5C4EB71C6ED3C7A8616CE16 /* 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"; }; }; + 3E2CF4C41A7E2D97F3EF425C77EFD670 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E04BB2F4FAE36E40FA6E84D4832EC3 /* exec_ctx_wakeup_scheduler.h */; }; + 3E36A4CBF9703A1C543FEEFDD05BB927 /* test.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 1D16D46EC3AC395484AFCB680B7BE5B6 /* test.h */; }; + 3E3E1CFF8651D7B38ECF1A8806B909AA /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = A31911DF5E710CAC623D379A317EB89B /* load_balancer.upb.h */; }; + 3E42606738E92B97293EDF50D9353D71 /* retry_throttle.cc in Sources */ = {isa = PBXBuildFile; fileRef = C7DC21F2D1957E1115246B35A248A272 /* 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"; }; }; + 3E47134CA07DD8B2B3CA6F5B48CEE10A /* digestsign.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D5D6A6297D6FF5ED2B967F1AF0D3BA /* digestsign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3E5038CE5EDB14E1493EDCC2B98CE541 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3B8EA09BE3F4E53FF2A9D7B6AC2096 /* server.h */; }; + 3E5531E9B57AD0347D687E17210326EC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 3E5A8118491C49EAAC00939645D81BD0 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C68E19B3CED84B740E4C000451E576 /* rpc_method.h */; }; + 3E632C851BF0EA62DE18F99FCD8CD690 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = A5264B7609CEEB42C70F945195835EA1 /* xds_api.h */; }; + 3E644CE6CAFD50E154DEFE3590CA754A /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = AAB2830BDE4A6BEA0914A4C0B58F1358 /* connector.h */; }; + 3E6C90DCBC76DB97FF63BFF188473269 /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9C416ACD31BDE9B0B51D1E74D7D296E2 /* client_channel_factory.h */; }; + 3E7D77CEE4786DC7FDE9F7F33A452DF5 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = E32321B207DB6C72B92E821E9A90D1F8 /* GDTCORReachability.m */; }; + 3E8FC4C50D31313CC2C7F86FFB1FF2BF /* resource_quota.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0C620150225E9E4585B1D60E98B2C14E /* resource_quota.h */; }; + 3E934929D3597F79C6DECD6EB09B964F /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 8020947083266B840ACC497C40D9C6E9 /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3E9B52F5E53D863E1FAE0DC11D33E6D1 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = C4790882F294F39BDD533F41E918AC39 /* matchers.h */; }; + 3EA3025D8172BADAAFDD0A4A6C07B6DC /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1692AF6574C7F2637F422BC2F560CF77 /* cord_rep_btree_navigator.h */; }; + 3EA51AB60F847EEA3EADEB031018344B /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B0876B2A984BBCEB77AA3C036072C2 /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3EB01084F7C7A3CA9665B488E81A7172 /* a_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA27A60F3529632BBE0A2DE2775460C /* a_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3EC4FEA40ACF981079300BBF0F9B643B /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 510F9412B268983A1428EE5E0DB030E7 /* path_transformation.upb.h */; }; + 3ED40F80E9DC20B88E7DC61180E53A8B /* resource_name.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CED68264D7E8C8882D0A53A7F0EC7285 /* resource_name.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3ED735C145F48496776A554EC8544992 /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 31F49596DE6787F85B343DA7908CA831 /* health.upb.h */; }; + 3EFB6C68C0DE8C538238C1E5F51189C7 /* error.cc in Sources */ = {isa = PBXBuildFile; fileRef = EFC13648B23490CFAA1B1A8F3F863EED /* error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3F066ACEC7CB12540B591C9CC0737E84 /* xds_server_config_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = F77354A1E9BB9F966A7D2D0BEC2F0B10 /* 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"; }; }; + 3F100F926FC4F1088AC7785744808F22 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CE4E865E41100BB4D30895E1DF6C98CB /* number.upbdefs.h */; }; + 3F26DC0EEA9FA5CE9798970F6DFC97B3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0299B5DCAACC5C5282D69FF5DB8E1F34 /* internal.h */; }; + 3F2B071427A28BC3BEB2064507FFCD72 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 911D7E4F72817D38E2A8C1F6BBD4E7B4 /* GULHeartbeatDateStorage.m */; }; + 3F4BBA7E271284EE24706D52FB541665 /* xds_cluster_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = C324C86C728B8EB693C8B78FC782FEF3 /* 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"; }; }; + 3F4C3F1235F18A84436D3815104D4835 /* client_load_reporting_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A690ECC41782304699232B8FBB95A0A3 /* 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"; }; }; + 3F7045C38F6CEB76A1EEEF3DC8E4E877 /* t_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = A0AFA71D9BC5E0EC4BAC81394771B142 /* t_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3F70EA094EF0ACE44CB0D7E8F8D65ED1 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A13F1052724D9B19DA8CC947F8433C2 /* GDTCORUploadCoordinator.m */; }; + 3F7FF4257AA58C6C279678CDD6D31B85 /* decode_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 97351319126C6E12F0989A29CE01309F /* decode_internal.h */; }; + 3F89324946B36ABC33DBAA96B0FD0714 /* v3_genn.c in Sources */ = {isa = PBXBuildFile; fileRef = 85C0000D15AC9CD6FCE9C11E722E8D00 /* v3_genn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3F95BE1CE2091387DBFA4B83CBAC3646 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AABBBBA6D8C6D3BE428CC78811A4E01 /* parse_address.h */; }; + 3F9D86C67D94EFFFB06489D819254C9F /* FIRGitHubAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B9F1B3138853534A0F038A300DA8FAF0 /* FIRGitHubAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3FA509A0A99E724854AE654F8ED3DC0C /* cds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FF987A20278666261487785ABDF92545 /* cds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3FAF8A9D18BAE7E20867E1ED359D9BA1 /* hashtable_debug_hooks.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E1E7EE1C224F0763C571AD7B9D0105D7 /* hashtable_debug_hooks.h */; }; + 3FC77F0A4DBFBFCAF51CD54516AA33D5 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 19AF83F9B66111EF9205C8264B70A2DB /* http.upbdefs.h */; }; + 3FC886160A486A28B4B9EE5026B1FA66 /* pkcs7.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3E9010E79310DA94C901877071BF6C /* pkcs7.h */; }; + 3FD0D3ACBAEC627062E553318A3D7978 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 0773CA613BEEE144C6B56FA7A7A4F6A9 /* alts_counter.h */; }; + 3FD9E838DDA570C2DCE06B015A720C10 /* cord_rep_flat.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 04E73DA9DFB71052E0421D6FB6F61687 /* cord_rep_flat.h */; }; + 3FE23A18648082668AE63C52B652CD97 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 006B361EF0DDA63FEA280C8DBC84677B /* address_filtering.h */; }; + 3FE61D4659F5321075D8B67E9D34017D /* time_zone_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD7274D791462052B04C2ADAA3F006E5 /* time_zone_format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3FE9786F6E149CEE1F0BFF9D1FA2973B /* string_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = E30729039880C474D5F3D2EBD5099DDC /* string_view.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3FFA3AE79A0E6CF7030058C8D0FC0765 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 15BD7BAA25534572303E6D899BE95601 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4008948A810114929F9F579ADA2A76EC /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 38858852E3D433E71E057F1421478E14 /* any.upb.h */; }; + 4018268521FD251085C4FB85C0DBE29E /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9786932E81B631C1491BAE8DD40D67F1 /* resolve_address_impl.h */; }; + 402871F776DAFA2B55F157A7E7AEFE98 /* digest.c in Sources */ = {isa = PBXBuildFile; fileRef = A74844D2AFF84175C7BDDB91B5B7B0C5 /* digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 402C0B4C17C67B3265AC8B0D2BF5A462 /* async_generic_service.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B10863E311D88E6BE55F77948390B0EF /* async_generic_service.h */; }; + 40438A7E27EF2A395563FC2810341584 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = DE3359BA5884380CB0C246704179F199 /* bin_encoder.h */; }; + 4055561C68474163B4F3A36A1D37FFA0 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 171451AD179ABFADC8A281A419A41F47 /* frame_ping.h */; }; + 405F166685D92F0E4A922688E0BA31D9 /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 749C4DE49651E51D73AB76CD86B568AE /* regex.upb.h */; }; + 4063F9EF0297AB5A184B6957180D8833 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 6795E8946478AA90191E108875D8D3D7 /* GDTCCTNanopbHelpers.m */; }; + 40A9FD571CDB794D5B4C318CDA988AF3 /* unix_sockets_posix_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0470EDDE4EF43E478AB45929CBD1396 /* 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"; }; }; + 40B6334E0C3E284C49A3E8AC1A8BD8CC /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1DC39D8F1175E5AED6FC651D797346CC /* global_config_generic.h */; }; + 40B9B5FAEE4EBF8EEC5B5F6BE68A35A4 /* target.cc in Sources */ = {isa = PBXBuildFile; fileRef = E68289EAB357D9EAB2B84D38798EE336 /* target.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 40BB7E818AA89AEC8C135E1790461D29 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F44D9F31CB94014634D341019E1ABF27 /* binder_stream.h */; }; + 40D5821DCD5C9F35C599744CEAF3E239 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 82466B292831540539085B0B9CBF9BA6 /* ssl_credentials.h */; }; + 40D626E293053E96E2FDA5BA855C59A8 /* ripemd.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD1C40CE08A699EDC05BC352FED04EC /* ripemd.h */; }; + 40D655155B710C71890087228E573021 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = BA37DBD77E02BBECC5B75B832E306850 /* slice.h */; }; + 40F01EB6E1B4BEE3BF06D21B174510F5 /* tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 933530FA9348CAEF73564D0671656304 /* tree.h */; }; + 40FB3F9283B9D41F58C82E9D10161192 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = E32903EB471342B3111D3F2ED4399336 /* http2_errors.h */; }; + 40FBD538CC72BB05BE8C46D7937E3B89 /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA4B78520EC797C2DBF1527ADD08590 /* slice_refcount_base.h */; }; + 4102ABC4A30322660C9D1BCDEBE7A1BB /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = CEB27B98C18EEDD14BC4B8407B110EE3 /* evaluate_args.h */; }; + 4117074E1B8A844A60B85F6C274FD0EB /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3E028A6EEFDCA41F9BC13458E22E158 /* msg_internal.h */; }; + 412DBA037BAEED1F67BA52515CC6F91E /* delocate.h in Copy crypto/fipsmodule Private Headers */ = {isa = PBXBuildFile; fileRef = 17E4B98F3697B5B943A8154D389EB65B /* delocate.h */; }; + 41352191B7B75EB8FBBD157385429E81 /* p256_table.h in Headers */ = {isa = PBXBuildFile; fileRef = D97810310876FF2E3D239445BACD7CBA /* p256_table.h */; }; + 414192B6F28C4DD798A6F213F466EBAC /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B40EFBE07116E3F340C6FF7DA728FBE7 /* resource_name.upb.h */; }; + 414E7D8137139402E1D966B8E8448A7F /* pollset_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 77E41E672126381DB5F4F7F297E7035E /* pollset_custom.h */; }; + 41536CA2B68BFBC2D30B096B5A6B43C4 /* bad_any_cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6FC7F37BCFD31279D121E74908263EF7 /* bad_any_cast.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 415BB227CEA95D62E7AEE4DB757885FB /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 30315E980D315C55E1326F4F751F03F7 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41706D970830E4B7F27A5AD2DBDFB937 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = F321BAD48247D42A7D478B93DFBD3ED1 /* stats.h */; }; + 417F2FCCF9066317992C78A1ADE7853C /* FIRDeleteAccountRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = D60E4E8E58620EC53F9029521141338C /* FIRDeleteAccountRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41B7D0704ED205688AA17F4D7FB5EF85 /* walker-inl.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = B357F6F302DB165EBBC31386F7737D89 /* walker-inl.h */; }; + 41BB578FAF3F2EA0818E4B2091808172 /* load_reporting.h in Headers */ = {isa = PBXBuildFile; fileRef = 7193C679299DEB859CE57EE44E430486 /* load_reporting.h */; }; + 41C7873D0630A1913057CBADAE6D0959 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 126AF4997B7141D09E52313EE3366F74 /* sync.h */; }; + 41C9752599B5C5E56751547A11C13B02 /* params.c in Sources */ = {isa = PBXBuildFile; fileRef = 445402BF5757285959F27894A04EB8A0 /* params.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 41CAFC01644F984952DFC1702F651A58 /* md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B6D0A84A33F2531C58DF18E9DFC5AC /* md32_common.h */; }; + 41CE0FE71043A04AA3F99253E1283A29 /* demangle.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C326E59137784B375EF1E2CCA8621DE2 /* demangle.h */; }; + 41E61D7BDABD1ECE32F4FC3DED23424F /* re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA265B1849D98865AD0DEB52B14AE2B4 /* re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 41E64374F063F7BA32B4C73456346D78 /* hash_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B7783D21B5D4C98097C79E98F17BEE0 /* hash_policy_traits.h */; }; + 41E731952FE0E2EEAD53C8ACCFC83A16 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 1904031C54D94AF4E4DC7064ECE58AFD /* tcp_client.h */; }; + 41EA1FDF248D07D04100DC0ACAF976E6 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D3AD9AD336132FA885B8C0267B5F5B8 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42106D942C01DBC97DC6BBF0B5480889 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FEE7E4634142660836B0F1984913687C /* xds_resource_type_impl.h */; }; + 427D3BD115638C6B7EF953A968043BC8 /* max_age_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC6A5E4AFB72F7D605E12AB3EB2AAC76 /* max_age_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 427FC047259F37D7634769C109B5A54E /* bin_decoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A1863EE3EBFDB0909A88880C808ECD7 /* 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"; }; }; + 42895DAAA2DD1CB6D3A79F6A38626038 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = A01195D0F179247601C472163D777A4E /* security_context.h */; }; + 428EB2AC7021FA3E1C435AC97D55C810 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 075034EF4575143C83D2DC2385883C42 /* struct.upb.h */; }; + 42977F158BFD7C862EA897E37F054157 /* salted_seed_seq.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 583DFBE6D4A137F69A4B9368A742D1F0 /* salted_seed_seq.h */; }; + 42A8700060CE8A6406AEAC63FBE11F8D /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF856F510FB3B7B9DAA03F58796D661B /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 42BA8A81F9B0F3C3B016E4CFB2768AFB /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 126A51B36C106D311BBA22FF9600DF6D /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42EEB9C2848D370EBEB727343AA46F59 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2ABA1BB21241BABD9B5843658E5E9069 /* http2_settings.h */; }; + 42F27501BE316C9F445838E6C73164F7 /* time_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB9FB4EF94DCE5046C4586E74463A9 /* time_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 42F57B5F3A9FDBA7D6A25C43202E51BC /* scoped_route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D5305BEBC418E974C9FE3663A26B3FD5 /* scoped_route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 42F9B07DCB292445DD57C1D8CCC527F1 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EEFF349D87D2CB09B943001635CED76 /* 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"; }; }; + 4311561E6091540627934A588E59E807 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 249761F3FACEB2EFD25A150E8E368F14 /* string.upb.h */; }; + 4313A09D55E9B6B6DE7A5BF99510B7A9 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C9ACE6358741EB4F732E20B285549454 /* descriptor.upb.h */; }; + 432D834FB8283459627673E2EB1FEA28 /* auth_context.h in Copy impl/codegen/security Public Headers */ = {isa = PBXBuildFile; fileRef = 1CBEDE14DC9EB9B242439F210D6978AA /* auth_context.h */; }; + 43316BB5DE231BA9884AB5A330FCF5C0 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = FE11DF1311A4ADED090E9E3FF9A0CA47 /* ssl_utils_config.h */; }; + 433FE1EE717CEB646B426E84CEB78D91 /* cbb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8087B78ABE49CF24C022C0B5DBFD3CD9 /* cbb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 435E9127CEC953AE14C4C82A4CC99C41 /* rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ADD19F2D8F352F26FEC966F69DF46D7 /* rsa.h */; }; + 4363FF70CB386A86713CEC4A0C5DAC3C /* lb_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC63FEE2C1FDC68BDD445C8A3383ADB5 /* 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"; }; }; + 4369326BB8388666388C301CD5981F4F /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B0CBC307BF2785388B9DE79084F0707 /* router.upb.h */; }; + 436D7EB9844246EFA9EB162188C1EA28 /* e_aesgcmsiv.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F91D284455237A0F247BF293F11D198 /* e_aesgcmsiv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4370A31AF9ADFC4786789AA50CABAFDD /* firebase_metadata_provider_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 413278F73A9B70F3EB221A6C33531AA7 /* firebase_metadata_provider_noop.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 43789002E34937E250F9884EEFB2ECEB /* lds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F665335A2D26D806800176A35A5354 /* lds.upbdefs.h */; }; + 43895E8FCF874BEBCE4853350D91D411 /* bdp_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = F512630DF934F17FFF541C759659343B /* 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"; }; }; + 438CF853E2C9E6A162B6E3DAD648E59B /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F77F0786C3132A7D9BF38659872CBE9 /* http.upb.h */; }; + 43937F5332B67AAE45E5DD6CCB5324F1 /* ssl_session_boringssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1351E34079EC47D7A4D9BFF4F25E7308 /* 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"; }; }; + 43981D2DB0D557DDA54A279FD9BE2877 /* FIRAuthUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B17738D891417B98F9F8FBA04929B4D1 /* FIRAuthUIDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 439F896D4386A78D5D7BF096B57F9589 /* checked.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C98B47989E9CD155B621638ED85C5CF0 /* 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"; }; }; + 43D88F26635771231E89FD3E1F52F244 /* watch_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = D702069D39967B63E62E5871DD056E12 /* watch_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 43DAC8DB2262BDA9473118E9EB5B4F99 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EBA5F0E365A852BBC20AEE91279504B /* oauth2_credentials.h */; }; + 43E1528F65A192B0C760BA642B8DE830 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D47B977BEC42ED99A40800584DE2CEA /* FIROptions.m */; }; + 43E3E651631BA898E3D94931D8AF094E /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BD95B891564A766981E6C5C298DC0C45 /* api_listener.upbdefs.h */; }; + 43EB28A7D682AFF0154D3A15FD0D9FF5 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = F182BCF0888326C97348648ACA52CA59 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43EC214C7F711AC26932CDCA564E9C8C /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C3BAAB919AB554800D7FEDD1A7436A /* rbac.upb.h */; }; + 43FDA1ECDFBC31EF76D7D6674F6B116B /* exponential_biased.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 639638A2531BF5E805B566F3CB456357 /* exponential_biased.h */; }; + 440997775ECFBC7BD0BADED6DCF8F80C /* async_generic_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63BB3D2BA0EB77E4198EFCD9AE926814 /* async_generic_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 440BD72BCBA236BCB1DE847383E7E996 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2085D0E376A3DF92FCA463AD20618178 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 441189BF8F1D7095C9466461DC2E17C2 /* rand_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B026653B90572D745AB5D08A4DAA5F2 /* rand_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4416BA2E0C404CE254EE791D9811DF4B /* fault_injection_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 838B5F52BFBB6FEFC791F69888D7B910 /* 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"; }; }; + 44172347113BD8350E844FA325E9E4CF /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = F068C8027FEED50109D6A4B529672C23 /* builtins.h */; }; + 441F47F94C9CE11AF481B497447AE592 /* futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 796116B81CDE13167E77B2A1F793F330 /* futex.h */; }; + 4427334D3FA929CF0E70A3F5A2285D81 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 191D71414D48D06EFAA313CBAC1353D1 /* FIRConfiguration.m */; }; + 443EB6B7C5CC6609B5456101C95CC488 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFB9E4F6BDDA0BB2184F2A180C5368C /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4456B10621197FA7D3EDC7E4602AAD84 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED7D5316BDAC4344BDB8916050AF0F94 /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 446760180710C05B7B7A43EDBCE062F9 /* event_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = C3B9AB427A7A1CD0B31DC58523779A42 /* 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"; }; }; + 448E463A3DA2B2484FB8984545A58878 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = AD534EB127F02E3E86055D9DF95D78C3 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4498287DC18FAE50EB52AC577E14D944 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 905C34C484002FAF9696597DA4F3DA29 /* status_util.h */; }; + 44BAB16993C32CF08C60E8D4CDC2A3BC /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 202B0381245BE30EA25F7C112E0D59A5 /* string.h */; }; + 44D99D47879AA122C5929C0BBBCC9A17 /* ssl_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D14C22B31990C7D41A68D90394330BEF /* 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"; }; }; + 44DA3F5EA0BD76B4DF3C48B9B855B9DB /* time_zone_if.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CFDA0297CCAD54F719481836E14E1FB /* time_zone_if.h */; }; + 44DDBD455037F870390F586722F722F7 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0DA6294A1F394195D5C458BBF4E3F7 /* fake_security_connector.h */; }; + 44E5444A3C13484845C21F06E5756E2C /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0E5DB93718DEE01AEFB4F749167C72 /* grpc_alts_credentials_options.h */; }; + 44FB16780866A86A48B7ED2BD94209E9 /* memutil.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B2266929A10D29E98094837686875F34 /* memutil.h */; }; + 450678D16AD65DC6C57DF7DDD2187C84 /* metadata_array.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68CB51D6D7C498BC54CA85F04AC6E3E2 /* 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"; }; }; + 45106EA6ED11A8C7674E950E76ABD8DD /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 51DAB97EB9A8A3D3B41D1BCE503086AA /* varint.h */; }; + 4522262E7CD08BE9A18FC867EB22559B /* rune.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF7815B12C9CC9E562868DBB01482606 /* rune.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4531B63E0D1EF7B9F817B0982872496D /* GDTCORMetricsMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 49776F558531FEEC26021CC0559F5358 /* GDTCORMetricsMetadata.m */; }; + 453A522CF3A29BBE9A0A908CE9DDBC89 /* curve25519_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 6BAFA48F135314D429219A7B8D6BFA4E /* curve25519_64.h */; }; + 453B4E69CA6FCCE671251FE5A0B82DE6 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = F23F2261C0D101B68BC513F5758408E8 /* server_config_selector.h */; }; + 453C2C565D15117BDF6B41FEA7E4C40B /* parser.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 77C64C6002643A0A3C3B48D77789BD83 /* parser.h */; }; + 4540C4843E8AB78C92B19D319256DB79 /* thd_id.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 51040BD76F8D0881F8636F3AC5E1EC38 /* thd_id.h */; }; + 4540E72C0F86E65AF5DC8CB7BB85F6F6 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5497FEAFC542025412CC1664379ABA61 /* socket_factory_posix.h */; }; + 454245447FC281F80C559C4BCABB7BF2 /* http_uri.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C075A31908F7742A25720BB203F9A1C0 /* http_uri.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 454F55EB4B2D6E260759E44B22561EB5 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E89AF5197CAE8B11B179A8C903013E0 /* udp_socket_config.upb.h */; }; + 45554180CC64BCEC5A884AAC585B8287 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 42DDD94EDCFBF26669E7EF2439E635C2 /* 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"; }; }; + 4561C56A142DB6BC295B003C6E252FF7 /* fsevents.c in Sources */ = {isa = PBXBuildFile; fileRef = B4392D4D79EB0971BB641D2E77E27397 /* fsevents.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 45632F98B15C83C9A8944E77FA6BD964 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 72F89D6411F6C8A7627440EE8E74AF26 /* route_components.upbdefs.h */; }; + 456A14358C03808016191B314F839CCB /* FIRTransactionOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92A0DF81163B68AF90E9698F1727C440 /* FIRTransactionOptions.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 456A8EA74183A5BF5B7B7A74C348975E /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 57339499D4F6314B963D033E7E151C44 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 457DFCD62305327524FD341B64C6E680 /* config.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 7760EB3569504B2BE667954F0E622034 /* config.h */; }; + 4583C3B7A5F6F026AA81BE67E593E434 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6E4777A13A57B52DD08A9F5BE6A0500C /* metadata.upbdefs.h */; }; + 45A82E7C8CB79D3D25FA6E399B897D5F /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F061713E7492965AA12B740C44C736D /* value.upbdefs.h */; }; + 45ACDFCB08CCE5F068E9FD878615A0EB /* des.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2463678D7A084E5AFC1E97F138982AC3 /* des.h */; }; + 45BB389A927494581864C6ACE5F2353E /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = FECDF8B33466D335601BDC5A3CABA4D5 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 45BC33D3EF1458D00F967944E4B0FC0E /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 651389A6C373E3A2F8445934C5E6B4A6 /* inlined_vector.h */; }; + 45C5A0AFD6EBD9A74F45E89312F32903 /* cordz_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = 78C4D796153F4FBE4C8AE94FB1566618 /* cordz_functions.h */; }; + 45CFF19808218BDCAE138B6CBC53A952 /* frame_goaway.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4BF139E955AC55F95242D5919BB3D5E9 /* 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"; }; }; + 45D70D6D0423004127B1DB38CB460BF6 /* iam_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBA6805F360807EFB886BCE5C17FEB00 /* 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"; }; }; + 45E206939F143AC8DAD3E188A79E51CB /* evaluate_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6F3FACFAA9496F5859F4B5ACE2B36E8 /* 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"; }; }; + 45E48E7EB02461142CB85C1B6A101E74 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 705B71EBDD700FD76CBF927F52C848EF /* outlier_detection.upbdefs.h */; }; + 45FD39559635B25C7F4EE0D1C7FC7347 /* cpu-aarch64-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 91D0CF40489E237EC6AD45A7491F4B28 /* cpu-aarch64-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 45FF985794DF925219951DA1A38CD14E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E91F8A1C7D8B5702777AF5E3B47B833 /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 46004365249EF1060AAFFD64C0EA3FD3 /* filter_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A5E82C9952318E9F868D9394412CB87 /* filter_policy.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 460C29770C219CDCCE245AA0394EEAC6 /* errno.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = D09B74402F1F8CFCFB63E8D8D5DCE5BF /* errno.h */; }; + 46374C12039895FADD547097E1C70A43 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CA1CF0A600F340B06EA28F808B2E735F /* migrate.upb.h */; }; + 464634695A35AEE2E1A9FEA51BC5E8F8 /* alarm.h in Headers */ = {isa = PBXBuildFile; fileRef = EA914049B77FD58C15602EACBAF4ABDF /* alarm.h */; }; + 4650D6108BD0DFD61CF44D19FC79CBFD /* comparator.h in Headers */ = {isa = PBXBuildFile; fileRef = 66494F04CF8C36BEB0AA90498E9C2FC1 /* comparator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4650E54F5675CDEF8F437D44DB62DB35 /* err.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ADD62D131946951438D1455CD3D9DBBB /* err.h */; }; + 4678F4A5FAA8370243CC09E21596EB82 /* grpc_ares_wrapper_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C43D5418E8AE86821AAEF6CE87BEB6F /* grpc_ares_wrapper_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"; }; }; + 467928831EE9199F68C86634A3B18D0A /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 543C9A412F08F2FF8E20DAC07090DD68 /* custom_tag.upbdefs.h */; }; + 467ECE65AB9576C21E70CA59F56B11F9 /* error_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0D59D30EE8FEC9F2B562D40BFB1A8E90 /* error_internal.h */; }; + 46A0D77E885071709F2B6088CFAC7D97 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 858207A6D6CD0DC3BCDED376F758E30A /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46A82E195709C9DC76498381DAEF76F9 /* randen_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 67CDA08E1558C35E1DC16E82F9C69C2D /* randen_detect.h */; }; + 46B6972881F5DE7306E0BB8A1C3949FD /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 24A7FF794D74680E79DDB3AF9D3C8634 /* alts_grpc_integrity_only_record_protocol.h */; }; + 46BAE489CD96FDE620F6CD11E8D52A31 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5FB6FFB7FF6BDDE102E2FFBFFBCF9E /* xds_endpoint.h */; }; + 46C5ECADEC40FFECDE8A8A56B382AA78 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C200A0C0BF6F4F6A5225DBAD53C21C7B /* IQKeyboardManagerSwift-dummy.m */; }; + 46D88412FCB5CD9A89351A5623EAA485 /* empty.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB6251B5CB5D835A15D94801C034F4A /* empty.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 46E30685766084490DDCF6BFED740093 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = ABE9A4DB4213279E3BEA47ED0B8378AB /* transport.h */; }; + 46E5BCD88B82ED814B7B89FF29A3954E /* background_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1265EC683547DE07CE4B218B4E47EB0B /* background_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 46E5E6D3BF47D1FCCDAE59F608EFB430 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 433B554DE9925183DF09D9DF8DCC2A02 /* event_service_config.upb.h */; }; + 46EB2F52998D368342F778EB20F31D05 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = F0410AA02FE28AECEF8FCDF4453444E9 /* ssl_session.h */; }; + 47065C8C088115E6F36B606E90155524 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 454B4B848A2E8AB1AEDBDEBA9DF8FAB6 /* resolver_registry.h */; }; + 4707FD1766E9B11785DD1B099162B8DF /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 89464B08F22814E62E57CBCDC768E354 /* FBLPromiseError.m */; }; + 47083CD37A0FE15ED6BC28089EEB163A /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 133FB577F3DC9FF29E6F7CDF9D9795DC /* stacktrace_x86-inl.inc */; }; + 470ABD84BFED55BB81225B314603C823 /* container_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E9EBEE6E9751792167D11CB8B834C1 /* container_memory.h */; }; + 470CEBAB48829F8F8571FC7843275A9F /* p256-x86_64-table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 23B960B908E7FDAC2DE97DF0680ED636 /* p256-x86_64-table.h */; }; + 4711C4F69D6ECC7E07D8D5E1DA877D22 /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14C54013C2025C5A82ABD9741BCAAF57 /* IQTextView.swift */; }; + 471A957EA39CAF909472E3D6B72D668B /* curve25519_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4EEF3B185A8F9AA4288068F2512432 /* curve25519_tables.h */; }; + 471F1B602D34A8F931CA7720DA3E7A73 /* NSData+FIRBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F16A1CDECF69530553D067E7C11A0DA /* NSData+FIRBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 472C2644F5B1075466B16113733F9CA5 /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 14BE6CBA4A8FD41686C9217B067DBC1B /* message_compress_filter.h */; }; + 473098B9197F919F21F045CB92220DEA /* cpu-arm-linux.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = 6CEB837565A27E6D92E93E0D5BB3E554 /* cpu-arm-linux.h */; }; + 4732595E421C6D02B8E3A2A78D6E0569 /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 13A4903B887D28A4F360F77F8D02227E /* exec_ctx_wakeup_scheduler.h */; }; + 47485B30ADDA08A09E1DE0542DB46956 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DC92CB1DCE4968F8CEA3BC5D2489598 /* grpc_tls_credentials_options.h */; }; + 4749B67A44E6E8D1195BA70864C60F52 /* FIRAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E62E27427F0AFE765A98F8FCC33D0A1 /* FIRAuthTokenResult.m */; }; + 474D5373B35EC8C4C3BEA5B51C311365 /* bad_variant_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = E22F844D60F529F5134801ECC367A985 /* bad_variant_access.h */; }; + 47577BFD615DA8561E1001162DF7B6A3 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = E807EC6E22BCBFDBCEEB44711D16ABF0 /* reflection.hpp */; }; + 4768E7926823A5B30E47DAECB938501C /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D5071F640EDDFF8422D793FF0A7A5162 /* status.upbdefs.h */; }; + 476A96180BB667F26CDC4F4F2FB6C6CC /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = C7CAF10C22A23D622C7AFBAF6349D373 /* xds_client_stats.h */; }; + 4772BDA8BBAFE6E1D8E9ABD5FF874763 /* stacktrace_unimplemented-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 7DD83751577D96401B786F117A54F043 /* stacktrace_unimplemented-inl.inc */; }; + 478E99C07B2C353C404FA64B3E5888F3 /* client_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4AEFBD6C2E836A696A53E4AF4F88341C /* client_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 47A1E1BDC1E6DEC680DFAD5BACB09FCE /* resize_uninitialized.h in Headers */ = {isa = PBXBuildFile; fileRef = F5763691672D70E1DF660250E90F67D2 /* resize_uninitialized.h */; }; + 47A9839017A63D7EBF353C704B93AACF /* FIRMultiFactorConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F762CDA5FE9DEFA3A1BABCED1730757 /* FIRMultiFactorConstants.m */; }; + 47B628156A13461C8C4D1D3C1DE0C7E5 /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 471AA1363454D38942778AE62C31A1A2 /* IQKeyboardManagerConstants.swift */; }; + 47C14BD26FCB09C5473E58A62165835A /* civil_time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 89FDA2BE5974964F1F0F157C66D1EB47 /* civil_time.h */; }; + 47C614D12E124204BDA286F4C2DFA130 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2417D45F1B0CBC31D6E9C142D79C1E91 /* ssl_utils.h */; }; + 47CA3AA032E1828E6B47F83D55ED12EA /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D654D74647471C76A56573D9C721FDA /* checked.upbdefs.h */; }; + 47CC7F5F417C56AB12E0891CE3B1A51A /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5E96910125E734038FDCEFD0E533E850 /* debug_location.h */; }; + 47F6F464A0FFA81A04C1B67332673B70 /* e_rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 677AFF55909CF1E7284D4E3F42D0FCB3 /* e_rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 480A1F8F75D008CF8612F9CFDB7D91DD /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E9C92C3C93711461B1F302470718B6A /* protocol.upbdefs.h */; }; + 482867400B2BD8CDA5772E7C0C0EA118 /* FIRTransactionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A84182F77804A6537104D42E15E9930E /* FIRTransactionOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 482B299787226CC0EA7F90FC7B5FA332 /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = CD220291DD02937BFEB2C49AC2105E6D /* grpc_ares_ev_driver.h */; }; + 48427AF9729446583A3539B2FEB3BBA3 /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2C37635D27D01FAE0330CE6722508EFC /* secret.upb.h */; }; + 484D6B48971EDF8CB52579E8AEF7E6A8 /* digest.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1676F29F6A7DD486CAF302C0EF81D31C /* digest.h */; }; + 485AFE775D69E95844004AD3D48BAEE8 /* internal.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = 1178BD3B13A0B523583E2A649DE2234A /* internal.h */; }; + 48629E95807CB8E545D497D7541451FD /* compression_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE7E1B85B2127296946E2328446E9232 /* 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"; }; }; + 486902C560E3F9B66487DB5B15E80416 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D3814C1269878D5B32600D028F2AFD7 /* alts_shared_resource.h */; }; + 486A8753DA57A1E1FCCB3BC2B85329D2 /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 41D040B7ABA0E45E9AD9CD4F74BD26A1 /* path.upbdefs.h */; }; + 4880B318D72F7CFB075B70F58381AF2D /* div_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 642B3A28175D08569E2ED3819A4E6AD4 /* div_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 488E09A798DBD5E5002A680DF4A669D5 /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3779E0F16F1521F6F3277F478A65B3C0 /* buffer_list.h */; }; + 488E3E7120357D0720DCED407FFAFFC2 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 521B91E77BF94B866CBB3FDB3A41FA97 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48A3209F94C4BA2814544767C8F70217 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B85E37ECC402FEBB103BADB23FA683 /* bootstrap.upbdefs.h */; }; + 48AA624785FE4D5D86357D9DC0E6AB1D /* workaround_list.h in Headers */ = {isa = PBXBuildFile; fileRef = C3AF09FFC8175DAB3DD55A2B9080EA22 /* workaround_list.h */; }; + 48AFBCD3F54DDCE0851D1AABD2E2F07D /* tcp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = B141D250E7199A117FD2C720A7C6D68E /* 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"; }; }; + 48B1B1401459570DD56D92EE176CBA99 /* inline_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = EAFDD13172B698703715CDC558AD8E05 /* inline_variable.h */; }; + 48C2E33F789801D15225B713CB631540 /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A85C07A03628EF4CC56719F0B3124E6 /* path.upb.h */; }; + 48DB6908ECA6A8ADAB52631F73B32C20 /* x_algor.c in Sources */ = {isa = PBXBuildFile; fileRef = 760DF991187D71B53EB8CFDDF9C55A9D /* x_algor.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 48E664E29B85F5B43AE7BB969665C097 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = CD51F7D1973BD247CAD44E6EF7A47DF4 /* spinlock.h */; }; + 48F5276125FF4AE524CE872B9FA8F853 /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD28D8E3D0EF43B0B8025DA6BF4E5E2 /* murmur_hash.h */; }; + 490631526ECDC90C692E58372360F8E6 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A9589447B075C852C449954C75EC2A37 /* ev_poll_posix.h */; }; + 490BD7FD4C52E51309C9E7C9693F4A47 /* health_check.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 329E482859E043F8419B897E6DFBCA76 /* 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"; }; }; + 49165A0B622EABF624632C4287C9B069 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 29ACAFCADF3FF66CC56A1C3D78DB8B2E /* raw_logging.h */; }; + 4922A9CD597DC6E213417024795317AB /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 40154881319707638ACDE245B78A7688 /* transport_security_common.upb.h */; }; + 4924C0C27167F7864B930D4C8749C03B /* FIRVerifyPhoneNumberResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = BF45AD67A294EEA6993ED68FC20DEF0B /* FIRVerifyPhoneNumberResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4930ED7B9CD60FC5CC6537CB07B24320 /* iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE610C5B61E2AC9BA369DF4D2704CF7A /* iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 4935B51FD9EEF82391734DDFA0CABD09 /* FIRMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0FB67B806D8EEC8C3E053D846F955F /* FIRMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4936FC6245529A01FB1C58AFA31A6FBF /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 096A4577C777108A77FCC83BFD800096 /* alts_tsi_utils.h */; }; + 495391DDC16803C6838774A5E53E5354 /* FIRWithdrawMFAResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 78655707A30ADBDB4A17858D355D7D81 /* FIRWithdrawMFAResponse.m */; }; + 495FE0229E1C4185A6818D981D34DB62 /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 62823349E2627FF623A5B03416D1B7E1 /* range.upb.h */; }; + 4962A3C5D5022381A109F0594F43AD52 /* tcp_server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 574E8CCB1260C950568FBFE18EAFCF52 /* 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"; }; }; + 496AB22D61C596349406BD430F91B883 /* internal.h in Copy crypto/bio Private Headers */ = {isa = PBXBuildFile; fileRef = E56ABCE2943C8B93CFE60CDEAAA61DD1 /* internal.h */; }; + 496C1FC76F9FFD3FF5920849D4B748AB /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BA3F1BFF8C8F4805D8AB1B53E3B48F /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 497B7CBD2459E6210C21D4D33032D62B /* stacktrace_aarch64-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = DAC8B492D1B2176E766F52876E1016DD /* stacktrace_aarch64-inl.inc */; }; + 49863977EA5D1C156DD330CC288A7742 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 17EF716DCA7F21EFDAC2921908E2183A /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49967DA620A15A2F987A03331A7D6A65 /* hpack_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A4445845F7D292F5FAD39D1D91C2503 /* 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"; }; }; + 499BA8B2B50FDEA72C2557F601B9B1F0 /* generic.c in Sources */ = {isa = PBXBuildFile; fileRef = AFCE63EE580380491598716844B704A0 /* generic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 49A0C55D425782B3FA57420969790368 /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 996C87E6EF0570E37CAF8955C0145D42 /* error.h */; }; + 49A33A5E1D0653C218EE62A02625A504 /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 244C209FBC79E6BB73F7A7E0E5F53D63 /* scoped_route.upb.h */; }; + 49A8CF24830B54EE8A45F1099907795A /* block.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1F451B60944121FEFC1FC66A4AFD61D5 /* block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 49AE1D570991719030FAA518227E5F28 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 198EA4AFB67D47868AABDD1A8301B6DB /* unix_sockets_posix.h */; }; + 49B3384C9E50A11D1BFFF202AB7BD283 /* filesystem_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD3313811BC74710DC01F44CDB8BFA38 /* filesystem_common.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 49B356785A7C46B532358761A27F11F8 /* memory_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29410FDF4D45C382793A0721F6D3268A /* memory_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 49C02C77B93BE7A254808B4B81C52C7A /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AF45222424DF04B96977839FACA4F955 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49CC836CFA3AC36686E4A3853DEA10FA /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9BAE9EA1DFEFA8BD7E90C8BC952D77B2 /* parser.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 49E123A83E79EE5AF2EA2099C6C65522 /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5304665D07660799AF09C13B972D6C4F /* load_report.upb.h */; }; + 49E793E7B0AB075A529795C61C2BF0B4 /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1ACB154EBD66395F6831D480F5B7A350 /* lrs.upb.h */; }; + 49ED9E2391310678D5384E0F77F24E8D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA3F633D2DE6FC6932F7C9D3FC3CAAAF /* CoreGraphics.framework */; }; + 49F0CB4FDA938970AC9A40238D58BADF /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 22F5D30C0E112764A41DAE840272B8C7 /* FBLPromise+Delay.m */; }; + 49FD20742EC89EDD8ED9A4B553128348 /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 574B090D1E11BEE00CA6AF47A8968C2C /* time_zone_libc.h */; }; + 4A03FCC578F7499197EB0E7B2A141CA8 /* leveldb_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B49A37BBD02786CF3BE8529C1375A0E /* leveldb_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4A05034201F9FE4006D61763D842CF25 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = D4DA9088F7741792E65933299B7AB363 /* init.h */; }; + 4A051C035C9F5FC2663F733AC726A85E /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 31BC3E811530CFC8F0EF0226B7348954 /* config_source.upbdefs.h */; }; + 4A0E226E37C7D2D1D100F0365612EAA8 /* pod_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = B30DF76266D5E6CBC677DE20AB324755 /* pod_array.h */; }; + 4A0E726A9C3C1053023679054A7F38B8 /* explain.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = A13ED55F7FBAC08C8BA47A98C694F982 /* explain.upbdefs.h */; }; + 4A11DA7980DC50EEB7E18FA9E4245943 /* eds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7941BA33958084DB7766BA4544C318DB /* eds.upbdefs.h */; }; + 4A147006FA5AF84D903105038F19642B /* server_builder_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 953FEF398311C9BE9A0D296346A778F2 /* server_builder_plugin.h */; }; + 4A1B1D200B39E9FD239F2A2FFDCF3DDA /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 198C357C02FEF365AE8234C0CD73A2CC /* wrappers.upb.h */; }; + 4A21AEBFC6A2BF04847C0BAE1372A688 /* slice_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = E46B6D9A60CEA5CAF065D6C652B7BBF7 /* slice_split.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4A2EBF958821C696B099B98454E64C2E /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 04435BB7737DFE0C78B83AA0B59E79E3 /* global_config_custom.h */; }; + 4A32577B357BA9EBF4B1392F713B10D7 /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 019F83968128F6F24839D3D064259166 /* message_compress_filter.h */; }; + 4A3525924E86CBA7964FA8E56CBDBF1B /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 3B6789BA15DC23EDC6CE289C05236B08 /* thread_quota.h */; }; + 4A37C7269EE86E3CAB6FD4809A85C7E2 /* thread.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A66ED89A12669DB8A637369C9A298A40 /* thread.h */; }; + 4A491F9F1E656379BC9B8997D952CAD3 /* GDTCORMetricsControllerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 503AE6BA073EB0139BF196AD8835CC70 /* GDTCORMetricsControllerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A4DA655293DD3904B4BADCD58054394 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 705B71EBDD700FD76CBF927F52C848EF /* outlier_detection.upbdefs.h */; }; + 4A5214793B6B4A257E01309906398203 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C85EF373FD87205BC5E879DBBEDDE3 /* authority.upbdefs.h */; }; + 4A54AE1EF80C280C731D03266EEDD537 /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = D4D2B53496312573E585E4DF06D556D5 /* jni_utils.h */; }; + 4A60282E530DAF230EB72AC2CA84AEC7 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 8520AFFA2978E05AFA6EAED696FB4EB7 /* channel.h */; }; + 4A656067B7E40D445B548F088C643264 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9C2D50CB54DD9E731EE5BFB3DE731AD8 /* lockfree_event.h */; }; + 4A7DEA19C4D23678FE2F9F3C70AC409F /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = E2C94B3B5862469CC683367DAF30B7F2 /* alts_record_protocol_crypter_common.h */; }; + 4A7FB6FE516564B1C6119ED4473375AF /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FBFC9891497705E665B3D4F6DEF80E18 /* ads.upb.h */; }; + 4A91E835BB7F3092291DFBCC19E99DA2 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 494092AD735B85454D60DB6E474A6BA2 /* matchers.h */; }; + 4A98AC01583661FEE404579B7FF70874 /* arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 963CA9F4C6207DEE906E81C2264A6399 /* arm_arch.h */; }; + 4A9E21C0B742AB49DB5248820C979B0E /* x509name.c in Sources */ = {isa = PBXBuildFile; fileRef = 41C7173B924E7350CC56B45B8F82D453 /* x509name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4AA00261BDCAF78ED42D0481D03EA26F /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F6809995FA08D0A56E48B41021600834 /* http.upb.h */; }; + 4AA59EA598DEB7637B5493E5414A93FA /* any.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FB7E286913B33681221E4685CF90A9E /* any.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4ABD8CCDD7B9854863D49358CE2B27A7 /* alts_iovec_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 760DC6159A6824A6D8439DA5B10F561A /* 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"; }; }; + 4ADA36C2982624583F9459010D3B04F9 /* prog.cc in Sources */ = {isa = PBXBuildFile; fileRef = B06C1170ED64497F684CF7766A0636BA /* prog.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4AEEF48A74A3E6FF647B6ED95C2C5822 /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = C82355AA43AB7E03ACD40F073CF1932C /* ssl_types.h */; }; + 4AF44F6C9104DB93371A8D36D5AD107B /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 484B9ECC054B1DEE954B91CFEA77F341 /* channel_stack.h */; }; + 4B08D7983E5E412440FD44A311B8F279 /* create_channel_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 44DBAA8BA13AB884664F922538587524 /* create_channel_posix.h */; }; + 4B213E74718895EFE775EEC76A73CB6F /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 763961238FDB0238DA1A42718AC7D25D /* ssl_session_cache.h */; }; + 4B2EE2686C91B9AEF9E1A0101A7CB595 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C3EFB0ED11280C1E41A8A1D9B7D1E204 /* channelz_registry.h */; }; + 4B3101C9FF8084D6F2061C93BD053CD3 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FA89B4B878CA605910CFE2EC42101CD7 /* config_source.upb.h */; }; + 4B4694B3777973CE47DA3E72607595B7 /* auth_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35DBC6FC3810FE7B91741D28B4F78BA3 /* auth_token.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4B4F1EAD19C2D4097E28B090A3E82989 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D204DAFA60EFA77DB3C8AB1D10655D2A /* frame_data.h */; }; + 4B5E4C8DFE85FD2CF5F740D9763A6BAA /* generate_real.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D32FDD67CABDC8E6FD4735A297DDB9 /* generate_real.h */; }; + 4B6062D915EB94C878C11EAD4AB0CBBC /* logging.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = E9C432CA2DC48A0BAB7331D1C39C35BF /* logging.h */; }; + 4B6268A1C831A0F90F9666E5F7D920C4 /* FIRMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 433E46B2A1E263EA78866579B845FA33 /* FIRMultiFactorInfo.m */; }; + 4B6BA8CE8ACBC2110C586042785C590B /* ascii.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 70A30CF567AB51F97AD2C3048D5713D3 /* ascii.h */; }; + 4B6CAD4454B968B4C96741991D84DB82 /* field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA4CF79BCA8609BB03C2F55211A7BCF2 /* field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4B77D95121BA008FD65F21603CE85B5F /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B056ADB961043F51C223BFE78B79B4F /* string.h */; }; + 4B7ACC7091A76E5E1B2F5F808FE9FB01 /* http_connect_handshaker.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3774C4542B6C507E5EAD504513669F21 /* http_connect_handshaker.h */; }; + 4B7B31CAAEF816F0B04633BF091F2C5F /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF7220F9AE1ECC253DDFD8C68BFC64B /* grpc_tls_credentials_options.h */; }; + 4B84CD03DD04D3F1B9EAC2A6D4864FE2 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE8FC11D8F7B67D27375238D0FB6A6C /* sync.h */; }; + 4B86A1292772ED618CF0B0615D0E8CCB /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AAC7E095765CBFEF5A10BA6651CB468 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B928C61C532B82F353D029A21DDA2E8 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4469E78323B212B8AFC4393309C64628 /* grpc_authorization_engine.h */; }; + 4B941612AF529D45AEDC292C2EE19731 /* thd_id.h in Headers */ = {isa = PBXBuildFile; fileRef = 51040BD76F8D0881F8636F3AC5E1EC38 /* thd_id.h */; }; + 4BA1CD4B7CB6FF60B509E530C72E1D88 /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = B10B14F8CC0F37A0079EC2A2B4380B33 /* thread.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 4BA25938B9A993317B103450E3CAF58E /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8F4741A311D58CB49FE20A92076559 /* string_ref.h */; }; + 4BB1D06402DB14AC8CC58CEE2D60F265 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CAD0FC48830950333C3F295883EE408 /* ssl_transport_security.h */; }; + 4BD9EEDB43A6ADFE7FB3A33A1117C5D0 /* sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D994E00BF948C2556C243BE9082BCE4 /* sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4BDB9EC980AD7ADE5C5427C5E5CA5262 /* cordz_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B20B4103C0E5F35249B039FCC4B515F /* cordz_handle.h */; }; + 4C0C0CD8CF5F68762E3D16E15062298F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 4C1E742896CF8A03FB4FE6E0F8B64A67 /* event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA7A6D0AA2F98D94B5FE10BA0741DA2 /* event_engine_factory.h */; }; + 4C3ABD9326C75C5418DEE6252DAAE62A /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 2DAB5C39646D116D0AD2229811DB3323 /* subchannel_list.h */; }; + 4C509D24381E25D695496F859642869E /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 31682EF8984ED45FFB920CD03C8174D9 /* alts_tsi_handshaker.h */; }; + 4C58C29D30C9346DA264A541A3A05F5B /* bio.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2DF681E4C4492B8243CEACF783CE92 /* bio.h */; }; + 4C6544B5B8A130CE633BA67AD405AC93 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DAB5C39646D116D0AD2229811DB3323 /* subchannel_list.h */; }; + 4C6AC7E8BA63D28095F7A2F453100E75 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD0DABE1780A68EA9BE5735E6DD0B48 /* pollset_set_windows.h */; }; + 4C6BCD8A67BD38D1CA6C621E7F27B27E /* tcp_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 627B3933E29E078943A12645966B8BC9 /* 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"; }; }; + 4C6E500A02DBBA24466E0E9690A6BFF6 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2E8FFFB7075DEEC8E07BC77DE129C678 /* hpack_parser.h */; }; + 4C74FA3E2CB21AAD0BF02A20F90E4EF5 /* int128.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 4A8E749951CED7CB6B2A116637E92ECE /* int128.h */; }; + 4C7A664F143891BBB880ABE600DC871E /* thread_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = D64A1CBC16799D8F3CB7578B9E8E2E2C /* thread_manager.h */; }; + 4C7ED5FF5F51428D2DAD8A4B7B61D564 /* FIRAuthRPCRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 808E0C2D63FF669DDE1442C36A4C20AD /* FIRAuthRPCRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C8C111417F829D90A1A0F5367C75523 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA1F171A1C4CD88CFB8676F5051EED7 /* fork.h */; }; + 4C93B2DD26E7133DD03E4E99EEC48597 /* FIRUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E3B20A912687365F0B84225C3ED4A5 /* FIRUser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4C9829CE4E9C013EEC1DE2C792909135 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = E00793AF2FC1C23F2EF4991F2C5F2F95 /* nameser.h */; }; + 4C9CAFD25DCB9333A49DE440AC48054A /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C35F9509DB579DB6879A5B1C96E24659 /* SystemConfiguration.framework */; }; + 4CA24D71A907C0F45B0053681DE7D25A /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = 3B211B34506D911E2F346BB8EB0E71BF /* iam_credentials.h */; }; + 4CB58D74079B74C36243E852CF766685 /* zipf_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA75ACEBBA1278606683597FC7A1CF7 /* zipf_distribution.h */; }; + 4CB5BD6372D07C0939189B54990D9605 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA3CE3E8B6DEA5E1781D80A12024B67 /* cluster.upbdefs.h */; }; + 4CB69B1A05219114A3594247E7EBCC30 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EE1E7BD4756928D0F851341E7E4A06E /* circuit_breaker.upbdefs.h */; }; + 4CC73B6619157FF902A98C1580059642 /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9979BB597EE6C4B79BAC85F623FAF21F /* transport.h */; }; + 4CD15E031499620B5107525292C12E8D /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 1FE34445A0DAE4FBA8733D9C802AA7B2 /* altscontext.upb.h */; }; + 4CE00043BD23B10A10B60BF8815B4EF4 /* t1_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 365F68BBEB1F7FCBA99DBCC36C12DD6A /* t1_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4CE4B6CDEAE3373A8AB74129C785A6CC /* orca_load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = ED569D96FBD3AF85F4BF096E002DD60C /* orca_load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4CE5DF3D06B69C8CE17FB92B24C93A34 /* certificate_provider_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = A112657624EC7269A7F5F0723405518D /* 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"; }; }; + 4CE62B6C4DB7D7A8110D5FF7E4EE9FC7 /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = F58830A197D5922AA38E7CA675C7B581 /* b64.h */; }; + 4CED898B2A8FC34CC36F189C51E2300A /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E3681E55D1464113B9A11C54FFBA84E5 /* status.upbdefs.h */; }; + 4CF0FA51FB38A901C401A163927447E8 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = BC44DB69FB393BB7C0FD2E9E3293C692 /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4CF1BFEDFC73545736E460638EB7E8D9 /* handshaker_factory.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8798EA403E74AA0BDE073CAEEDB17C51 /* handshaker_factory.h */; }; + 4CF49DA0E48373B5DCA0B12E47DD485E /* opensslv.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EFA15A7032FCE43008EB6A1B20991D5E /* opensslv.h */; }; + 4D10E3AA5980B7DE2F45A06DFCACEB1C /* handshaker_factory.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 5B8299BB74DC49117B8A7A9A56D147DC /* handshaker_factory.h */; }; + 4D2FC53B4837E9FED51200C321D9420C /* CLTypingLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E0219BB149B161C8D7AA5D9494CC0140 /* CLTypingLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4D329E5C57CC174265D1A9D672A6818A /* secure_channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2A822252CAE104E735C2DB6624CFA3F /* secure_channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4D3ECCB2D00E1A9286E0A823AF8BB46E /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = D63C471852D75F593755EB4EE6EFE07B /* tsi_error.h */; }; + 4D55F4CD173C057BE8B6D58AB833AA97 /* objects.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C6C12E89078F7CC42BCB1BA2F984DED8 /* objects.h */; }; + 4D6517B5190696997AB0E4A3FA8AD5EA /* mpmcqueue.h in Copy src/core/lib/iomgr/executor Private Headers */ = {isa = PBXBuildFile; fileRef = 02D814363943F5E57C4E7D6E4F8CEB8D /* mpmcqueue.h */; }; + 4D68DB91875ABD17096FE434563E9FA7 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D7950CC2AEABDFD5A7412F38A98C8862 /* semantic_version.upbdefs.h */; }; + 4D696411C3EF8D0313CB91178331FAC8 /* p_rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = F904475DD913EA62FCA093582FE69D9D /* p_rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4D6C9517283972D722616392939CAD95 /* rpc_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 70C68E19B3CED84B740E4C000451E576 /* rpc_method.h */; }; + 4D7153DCE913392EE7C224BF32EFF64D /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = FFA54A0203ACC12DBFB935BB78ACC2EC /* client_channel_channelz.h */; }; + 4D7B0C18240A82A37671F5DF8594830F /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6805B68FE36A0BF08256600A239EE050 /* cct.nanopb.c */; }; + 4D9689A8496747AE09765E8A3D5FCCF2 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = C33D77F50AE2C38F9A7FB90E19CB6998 /* host_port.h */; }; + 4D9BFFF1990DEAD35DF95505D4CCF4AE /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B72185B536292DE4C06283D97838F7 /* timestamp.upbdefs.h */; }; + 4D9DAF6A93BFEAC950AEC05E6AC45521 /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = D4DA9088F7741792E65933299B7AB363 /* init.h */; }; + 4D9E68956202972D88DE9E6AE420A378 /* v3_extku.c in Sources */ = {isa = PBXBuildFile; fileRef = CA9935A4C4F7DA027732B3CBC5E6E822 /* v3_extku.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4DA0F3A26FEABE4DEEC4C31032AB7239 /* grpc_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8EE752CC152608CA9E1D014309AF7AED /* 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"; }; }; + 4DB413F6A24BA2120337282856AFBA87 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BAFD412FDD2286D101551673E224839E /* block_annotate.h */; }; + 4DB5A95844305D3EE5FF0D92C922F79D /* uri_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 973371F8B812DE7DFB532BAFE9E57F07 /* 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"; }; }; + 4DBEAF7470DD43E5DB99FE901AFE7719 /* endpoint_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4DF734238FE975A06865A21EFDEEE26 /* 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"; }; }; + 4DBF537E8A8500E68E257B9FDAC72B90 /* thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2D5A5190920F4F77683C870A7972A1 /* thread_identity.h */; }; + 4DC4A71412BC680DF65BAFB9E016E99E /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = C296127BD57AFCDE78841A748D2B9B07 /* evaluate_args.h */; }; + 4DC7F4107C50D8113C2E425670DDD899 /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3264428575B7876E3234C6D9DC705381 /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DC90A831986D02F34E9C36C601A1239 /* a_object.c in Sources */ = {isa = PBXBuildFile; fileRef = D1BA46D967EA6FD9653681650B9690A4 /* a_object.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4DCE33139B8EF06D463AA32B96E6C072 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 9248CDF2578447F13C1741E19DB1F6B1 /* sha256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4DD869388EC38025B828D1C323343FB7 /* v3_crld.c in Sources */ = {isa = PBXBuildFile; fileRef = 35BD3866AD6D42C1FAAFD41699566682 /* v3_crld.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4DDDBBA539DCAB7662F55C08AD8C84DD /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = E194690CB60601C0C178435C75812721 /* transport_impl.h */; }; + 4DE0A3B1410CD02804D6D70F87C16FE6 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDB16D56F4307BC842215F4A960A93F /* channel_trace.h */; }; + 4DE0E5F64B5ACB4F7342A33D97E07A8E /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCB60D5B114261EC492AA2D3F7D66E3 /* xds_endpoint.h */; }; + 4DF5E2F2AF715350E1F6AD0DE89C52FB /* udp_listener_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 76A1BCD4EF094E6734D06B606765D481 /* udp_listener_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4E02205D0C6C51B427047E7DBC325627 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FC7C4FD91647C3A6763204A088C5C224 /* typed_struct.upb.h */; }; + 4E18AB776A9B66F967E43B797A14FE15 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 4045AD9B7A955CA1B36E76BF863F8D1A /* resolve_address_posix.h */; }; + 4E19C4D9A28C9D327E498D00522A49FC /* ssl_transcript.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB312C38F6EC04EC2ABCF7D27ADCFA1A /* ssl_transcript.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4E2581FD7B68F04509F4198D0295C7F7 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FEA1A780B83E853DAF4F70D9FC54AE /* tls.upbdefs.h */; }; + 4E30CA270CA6263E663356DA3964F364 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DCAFCA36C17F097B39508480ECEE77CD /* http_tracer.upbdefs.h */; }; + 4E5C3FF88B763BE629965E7366C313A9 /* bits.cc in Sources */ = {isa = PBXBuildFile; fileRef = CE8F597CB233E8B724EA2D2ED4436CB0 /* bits.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4E5F2B912F75F32F3FAC8A8EE086A8D1 /* any.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 441C1B0460B79D6FD2E83B38B32302EB /* any.h */; }; + 4E65C657C882FC79C0E4826C0E5E0A8A /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = DA96F498DE648C92B374764C9DE0BFA0 /* sensitive.upbdefs.h */; }; + 4E6CD05AC71C369832F5C535B941DCF5 /* generic_stub.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = A4EA3A2631F90C41940B04ABF9CB8D89 /* generic_stub.h */; }; + 4E7600D5A4D88C60FA4B4F68D70A4432 /* channel_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 999C652C58E56484E3E1F5702832271D /* 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"; }; }; + 4E877A25EBF5A1BAA91431FA4EB80A03 /* cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 112E00FCF89E2FD26358A05AE1219F84 /* cast.h */; }; + 4E88A250BAF2E87DDB871A262CFB720C /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C32E272CA62338AF25481DB13397E7EA /* string.upbdefs.h */; }; + 4E8D2B2D324BE8CF4144A9876C38B61D /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D07AAD8561BEC59439A97AA268AF084 /* hpack_encoder.h */; }; + 4EA8CB1CE6D90BAB1DB166C460BE73F0 /* FIRGetOOBConfirmationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AB3AAD31D7D6E93C693757039E1487 /* FIRGetOOBConfirmationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EB05CBEE192427A399D70C0EEA52255 /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 35CFDBAB2DF3427D0062AEB0D84A4C5F /* fake_transport_security.h */; }; + 4EB1E32BEE31821A1A1BE18A932BD374 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DBFE461EACD0B51D7A71147C9836E7 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EBEE28693A8E179F9460FA128117738 /* alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1F27EC5B1A5F8DF113FD359C3B115943 /* alloc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4ED93E163A3ED416F25B05C72A17BE09 /* remote_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E50DC3370CA901C714CD9AD0BCB9F39 /* remote_event.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4EE7EE1FE0F96FCEF0BC8A71C8C31C3A /* status_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50138F551D6860C60910FC86222087ED /* 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"; }; }; + 4EE9A3ED9460636F34723A2B74DB47F0 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EA8DCD42512897C0EF310A5BD1D87A /* message_decompress_filter.h */; }; + 4EEC8160670560FC6E014D0FF68E5D77 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = E2ECF6C2E5835032E5396D6E76540AF8 /* retry_filter.h */; }; + 4F05E5C0820FC49D58F556E77D859596 /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 249761F3FACEB2EFD25A150E8E368F14 /* string.upb.h */; }; + 4F06B25D2FE6B08306171942FF516F3C /* client_channel_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CC57CCDC3471978B257B37E0C3C911E /* 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"; }; }; + 4F0C2952AC22C869DFE01B6DFA24D445 /* custom_tag.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4059BC07EACD150FF20B681A90D3013D /* custom_tag.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4F106E395E65EDC19CCEEDA39FEDF4B5 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 3182329ECB517D3B918932194D3E7784 /* load_system_roots.h */; }; + 4F16CFA127947504BA0A0F943D621F36 /* call_once.h in Headers */ = {isa = PBXBuildFile; fileRef = 29507664DD519939DA884BBA6135F8AD /* call_once.h */; }; + 4F1CAE02FB157E53B873138E21F6495E /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C41A01919C55C0302768A0F09466A44 /* HeartbeatStorage.swift */; }; + 4F22AF89EB1998AD8F01A8D7F3ED1ADE /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FBFC9891497705E665B3D4F6DEF80E18 /* ads.upb.h */; }; + 4F334C0E1089B83A38AF48D11CEEA5BF /* city.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95BCDE09AEDF13E2D462E8CB0E87A3C5 /* city.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 4F3EBCC0DCE59FE500089532AAD3D370 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 83B1C655EAA1CBAA9F9C42A1C3343D85 /* udp_socket_config.upbdefs.h */; }; + 4F51D30CB5DF5717EE7E09F2F726125A /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = AD1B5494ED3619D7254F7C9EA1BD3FAF /* deadline_filter.h */; }; + 4F6073EC3DFBC0681F75554EAFE5A909 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 788FB90AC07FE36E0135FEE285AB339C /* http.upbdefs.h */; }; + 4F6598A2E96FF39353E028A88BEAC839 /* FIRMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 83054DCEB1E12453BA6FA0C990431A8D /* FIRMultiFactorAssertion.m */; }; + 4F6716E0FC0BBE573B08646C19F09538 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 893589D422F08B425C13D52D6EB48D51 /* internal.h */; }; + 4F6876485BF556184F5715C28B4FBEC7 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 4AABBBBA6D8C6D3BE428CC78811A4E01 /* parse_address.h */; }; + 4F6AFE249FB6A5746C596C0870699B47 /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = E3EE72E50F4818844B60E39819557CE0 /* dynamic_filters.h */; }; + 4F7190D7AA4D2CEA6EBDD654C1D1DA50 /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = F0410AA02FE28AECEF8FCDF4453444E9 /* ssl_session.h */; }; + 4F75DA1796B3054D6C06C440B43E78B5 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B6B707EF284BAB3C353C12785B1CA1 /* endpoint.h */; }; + 4F78964323EF12D14625537CA69D9818 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46859B2560E594DB99517CDA6D0E49E1 /* handshaker.h */; }; + 4F8EE519BFA8A4F2091BB25A3E36B289 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA141588C83E1DC9DEB8C5366BDEBDD /* api_listener.upb.h */; }; + 4FB4A35FCE52E681200D2BE37409B37D /* cmac.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E440BBD064290A9FEC9387097BDA84 /* cmac.h */; }; + 4FC0F3D576426930136812D158F3248A /* format_request.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF60FE427E6D73A36A82F403660012BE /* 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"; }; }; + 4FCACC0B279CDD6E65F709CF8D75232C /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 162C6DE9E32FEC142567BDBE275447E7 /* memory.h */; }; + 4FD6AB590A0CD572781F418DBCAF300D /* firebase_metadata_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28E9243F27B7634BC89EACE85CB51BC0 /* firebase_metadata_provider.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4FDD81E7D38A264714DF44483F19B7A0 /* xds_server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = CE9DE2957DC9E5479BD03AC0EF64406E /* xds_server_builder.h */; }; + 4FE6EF9C404CCDBF88D2FBA3C3414B94 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 204DC4204DA867B3F228BE10F537B0B0 /* subchannel.h */; }; + 4FF2C8BFE73BB2C7192FE97AF857D33E /* load_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7992083964FCE8984C9A5DC875F43EEC /* 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"; }; }; + 4FF3F92DF240C4D299351B9D4DAD7BEB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 50188DB1D1C4EDBA49347AFA7EC6EBA6 /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = A61C655D6C391AF9812913174AD4D5E7 /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 50296C7D1E6E0AE9C4757A3F981295CC /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F9EA6A3F09D4CD645DC140A0B2CE519F /* atm_gcc_atomic.h */; }; + 503AE3323FE26E55BFCA9089EC2A771C /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 245CAEA8281F211B07977F7FA592DAAA /* host_port.h */; }; + 50495824DE43B5AD3E5B5F38BC81839A /* conf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5081C1D638D299A55ACF28D54851D1B7 /* conf.h */; }; + 5051FFF8B28C29A5EEE7F245C3B203D7 /* query_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05AAC45C541010E098920C3A7CB5B887 /* query_listener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 506E7DB3C15B89FDF4970290F4C4D9A8 /* GDTCORStorageMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 3881B927DDC3D2FE9CE27E622FED25F4 /* GDTCORStorageMetadata.m */; }; + 508AF3A6C37A1DCB128159E8DE77AFA6 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = DF07A4029516D12629925D465E1A510A /* ssl_security_connector.h */; }; + 50A10684F7E3CB44555049C51EAF0CC4 /* basic_timers.cc in Sources */ = {isa = PBXBuildFile; fileRef = F113D3ADFB58195F3443398B6E9D3D06 /* basic_timers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 50A8FA1C2F135778DDC2C1BE4E067980 /* exponential_biased.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71CFBF2ADBE195EB75CAD50471F79A59 /* exponential_biased.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 50B92D25432B5CC618279DE3666CD560 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 29490FDCE98BE2D344510A014D2FC3AE /* idle_filter_state.h */; }; + 50CE612CE741715246E87F40185122FC /* md5.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B56EB8828B7E6C33165D70EA2F9A9ACF /* md5.h */; }; + 50EBF8ADCED7DCB9B02306129BE14055 /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 31EC79FFC0C2D25B66EE18D8EBBA580D /* xds_resolver.h */; }; + 50EFA32520FCD9248111A99ED47CBFF3 /* autoid.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D171381C06A1596DBABFCA519F6B29E /* autoid.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 50F32FB64F058613596D61B1ED12771D /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DFE07933A04C0722304262517A731B5A /* varint.h */; }; + 50FDE6811842D6E385A32A7AAC23C786 /* ev_epollex_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1B641524A57DEDE4FD658ADB4E6F40DC /* ev_epollex_linux.h */; }; + 510F80EA37E125998F8CA4917B66A693 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E7399D7828226A4A12D3CFEE4FE72855 /* xds_channel_stack_modifier.h */; }; + 5116E368B85B4B5901651C2CDA270460 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC3DE822A415380A04861E03AD6B163F /* rbac.upbdefs.h */; }; + 511BE82C5DCE8427AB02E1FD032A4918 /* SafariServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C8A763312D617599A7A957579570C55 /* SafariServices.framework */; }; + 511D8C090234C94DE2F296ABD50157DC /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 73DC7A84F0FF26AA1589B20EA5404B3B /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 514300DD097E2FB436CA9C2FBBF2A96A /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 6C998E9485581FAB657353652C0EFCDE /* authorization_policy_provider.h */; }; + 515304BD77E208D5B816C9E32F11852B /* algorithm.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = 0A2321910D7457C35B1D8ADE1292954C /* algorithm.h */; }; + 5157E5F8D7DB2B42C1C3F9FC8FFB15C6 /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F4FFB3C62AEADA83E764B0CBE11311 /* alts_grpc_record_protocol.h */; }; + 515DBF370C6E35BC54143A394D23AF6E /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B3418F0E37EFE0A2E7BBB05E0D601D9 /* channel_args.h */; }; + 5165CAC91A5208FAABDF43E1F1F40211 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 78DA39A4531D719ED9349175AED2FE7A /* xds_http_rbac_filter.h */; }; + 5167E1F20649A130E27E40A7B039AE25 /* errno_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 783FAFEBB4F3765E41AC93CBA8311C55 /* errno_saver.h */; }; + 51743614FE9A31103B3399389C591F3B /* deprecation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BEB4B6334A6A2FF9B3C3DF7DE1FEF65 /* deprecation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5175DA5DC6C30E4A3B4FC6E3B7F32053 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 74904B350160421E317407EDD5A75F19 /* accesslog.upbdefs.h */; }; + 517AD43ABC46E379C55BBDC8B4800918 /* context_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0098A4E3BD46BC9E53D89653525BA4CB /* context_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5192B1803E9FA93A7C96C3DD37857898 /* darwin-proctitle.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E11132A5FA4E0699617B44029821CFB /* darwin-proctitle.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 51A381916635D73D966D28859D01FF31 /* status.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = AADDA1FD3D52A25FF3A6581871567896 /* status.h */; }; + 51A7D33A05505C2B32A8EF55F36AE91F /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 329058B2D7C9767BFF63C26857EFA30F /* socket_utils_posix.h */; }; + 51A908DECFED245C385BB8584EB66A4F /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46122811379EE20D8EE34741D4E43438 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 51AF430D902F682AA6A3DDA8B1F81099 /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 7CD86E17D37EA0CEC576516DB45D4C4D /* duration.upb.h */; }; + 51B39D8474146A6DD42E7A66A86CA183 /* curve25519_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 75C65AC14A04A1CE58A33259399FE990 /* curve25519_32.h */; }; + 51C02D146BE05B059BB85F21CE010108 /* decode_fast.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = A85ABF9A978CCF58ECAA13659377DAB4 /* decode_fast.h */; }; + 51C1989FB39643EE7D913950E4DF0112 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 55C7BCE68CC73ED513E70158AFA22B33 /* percent_encoding.h */; }; + 51C310A67E0722C4B62342DCB13E23C3 /* timers.h in Headers */ = {isa = PBXBuildFile; fileRef = 820BA2CE621665F48E8756C22D9EE4EC /* timers.h */; }; + 51C8301CE9B6F9719CDFB5EF7F7E1A81 /* validate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 30B73ED129AE8AB0157A1E8395F33F34 /* 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"; }; }; + 51EB693312F85997561F13BEEF234F9F /* spinlock_linux.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8CB7DF5A9AD9F5005B81FA459DC5ABCA /* spinlock_linux.inc */; }; + 51F48AC15811C3EC1F171C844E2A30A6 /* validate_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = D17D2D23D02A201C6628436CB5B4DE6F /* validate_service_config.h */; }; + 51F7A4A21025DE90E434A1595C22B722 /* percent.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CA7A083FA276C3FC0A13B31070F3680 /* percent.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 51FDB0F5091FECE6B72B7E9886CC99EE /* alts_seal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = CFA29A7114330E1FAC3D47B23BE454BA /* 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"; }; }; + 52083F3BC0F7DA50C3A62B3FD7B1AF31 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4045AD9B7A955CA1B36E76BF863F8D1A /* resolve_address_posix.h */; }; + 520E89077D6DCC8A96D6D00D4C72ABC1 /* resource_locator.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A382E161DE3F60E6C6C30E53D873B3BA /* 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"; }; }; + 52116E2B10CC9DA097C56E4BD1ABA163 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B94BF79C69FB8EF3D74A0466812538 /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 521971A3AE28E4E3020BD34675CA702F /* v3_skey.c in Sources */ = {isa = PBXBuildFile; fileRef = C516F903F750DFFD4965F0DCF59A4FF1 /* v3_skey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 52217734F5A2D87365B74F2A513591D3 /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 29A14B79E189E7C160640B4B103FC4C9 /* value.upb.h */; }; + 5224714A7FA5E0141B0B0A551673C78C /* poly1305_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = B00ED75B5934906127C74DCFF82CBFF9 /* poly1305_arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 52277626AE97634EB68D8908725756B4 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 70AF0374A0C974C8FCD8E23041B355E6 /* collection_entry.upbdefs.h */; }; + 523121B884AEE04094F864DF81F9C6C7 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 666E9966EDBE9BEB538B4943212E9D46 /* socket_utils_posix.h */; }; + 52323F4E4BDA48D24743997D1D746073 /* version_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = B64D025EDD08BC07DBBFB883A804FB4F /* version_set.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 5238B8EE4B10384B41D5F3259AA59396 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = E467C5222696F19EFE394E9FA1EAF738 /* authorization_engine.h */; }; + 52438C0274C4893C7278229027E49757 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DA043265ECF82E27BA78E66469A58D /* alts_grpc_privacy_integrity_record_protocol.h */; }; + 524481619DAE3DBC0F463F422897CD45 /* authorization_policy_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 56C71BBAB31252A3F311FD3B14185D69 /* authorization_policy_provider.h */; }; + 5268D61B316242F8D4F64C334F20DFC0 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F7314AA78CF30ACA70AB7A3E074F7279 /* lockfree_event.h */; }; + 526F2487710952F2CC96A19A19E3E9C2 /* ev_epollex_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6FDDCBAF741F078592B4F6FC4F68A18 /* ev_epollex_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 526FACC7C5EF545EB3E533286CF4AF25 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2045982A4D2F97CDD303F4BBB920DDE5 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5273B406A5303267B707DC49E86316B3 /* digest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1676F29F6A7DD486CAF302C0EF81D31C /* digest.h */; }; + 52798D14FC923F416113CF9A989DF3FB /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = B8D4082C966EAD53C38D25E82C3CF562 /* frame_handler.h */; }; + 527A87CD1B32179397DB64368CAF2969 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5538E61C17F9316886F4E51BB8C0A731 /* cfstream_handle.h */; }; + 527C63C8ACC03DA4946AD2C3D44D1685 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = A01195D0F179247601C472163D777A4E /* security_context.h */; }; + 52827EF77B393C07264350B31CE1D816 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 2914F5E8E2267E4A8BAF8D191F4AAF5C /* call_test_only.h */; }; + 528BBEB438D1DC55C674C21176BE91BC /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = E4781B75B403259AF1253AA2CEC6F616 /* json_util.h */; }; + 529937041E3E81BF75D238048C0126DD /* tls_credentials_options.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = B96466820CBD62F2AF9E32BCEFB5E952 /* tls_credentials_options.h */; }; + 529B703AE71B2B030DA6BBC55CC4A0F4 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 02084469FB2D895A0332629EF7EBCD59 /* ssl_session_cache.h */; }; + 52A422EEC1EDBECE61EC3E50BFCB91C0 /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = D4BF27C591D9E0653E7CC81E8949400C /* api.h */; }; + 52BA3424F82D2A0BFFBE43CECAB383D6 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 36B25D5358C16E94A2090B6FADECE50D /* proxy_protocol.upbdefs.h */; }; + 52C4202BF337940E106985AD30E11E71 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F8EDAA7C98E998379F3DDF756142F6 /* promise_like.h */; }; + 52C571B4F72568FCCA873D2D7315951D /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A22F7E79E07AC9D0A325EE756266DC6B /* migrate.upb.h */; }; + 52C7F3BE8ED5C43E41F1BE970A697454 /* database_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99C85F10F106457000C59C374018AA1E /* database_info.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 52CC7D22EA29D187D7DE070F4FA58620 /* tls13_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = AC6D4C0CBE3A8529216A41C84B9DBEA1 /* tls13_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 52D6410FB0A5D05DE9E43C4105BECB86 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD4821D6E145615E6F2B31373A41997 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52D7A7EE20C8B9760820FCC4D92C1C16 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 9392D1B69EDA15DCF84E39203D3E8A67 /* socket_windows.h */; }; + 52DBA26704B48BED527B35FA9A22E28D /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 85354C505F236508E27DE9AF8BCEA562 /* strerror.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 52DEB4A01A34F0FB5F2C9E9BB87A53D8 /* ev_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0DFCA71D49EB2490C0737837D1089F2 /* 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"; }; }; + 52E334E191752A24F70AA85442752B41 /* rc4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EC8E4A862AB12839CDBBEAF02AB541E3 /* rc4.h */; }; + 52F23987AF60A2B5FC2AB2FFD336F68F /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = EF3C42C0285CE69BC04D9AECC36D0AC8 /* syntax.upb.h */; }; + 5311751A0E9120DC7BD779A07ED41470 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A2792D02215858692BDC811B398E9F98 /* huffsyms.h */; }; + 53200DBEEABF11DFD32E9ED8187B742C /* stacktrace_x86-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 133FB577F3DC9FF29E6F7CDF9D9795DC /* stacktrace_x86-inl.inc */; }; + 53231F3D69343C9FC70C7995638565C9 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A70D931D7BE20DC9F573A5D004F46F /* resolver.h */; }; + 533FD1FB5369C194DF130791956AEAB2 /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = ECCE219A6C73A743C0BB01B69B8C82A3 /* kdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5346D60970BCCE423A325112E4030251 /* cbs.c in Sources */ = {isa = PBXBuildFile; fileRef = E5C78DE07F73CE2DAA7449479AB08967 /* cbs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5378A9473FBBC0954ABAD18C45743B68 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1797587926958D2B47137059BAD1A27B /* internal_errqueue.h */; }; + 537B4F6DCB652398357E334AD90CB4CC /* iocp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 32EF15AF9464B10EB878D6622EB20C70 /* 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"; }; }; + 537CD6DF1684C5F050099832193964EB /* float_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15BEF6F33285905E8B6B7FAAC027D0DE /* float_conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 537CDF5486099436535E2AE07256EE6B /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E54EC9767B1069A725D44C80D1268F /* nameser.h */; }; + 538BB36AFA8F61A7587589EADBC8AF7A /* status_payload_printer.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = B2AB0C00581CC927D8FC929EBE615FCF /* status_payload_printer.h */; }; + 53A63354DF41955D2C98E2DCB9099434 /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 955869E9911576E0FF221E5A4E819851 /* xds_client.h */; }; + 53A803B6A05295178D5F2FC4C8142A5F /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F89D6411F6C8A7627440EE8E74AF26 /* route_components.upbdefs.h */; }; + 53AB981CEFF430EB7DC3E5AA983229E9 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 35229B169CB0C25BE73F74AD2D0DAADE /* completion_queue.h */; }; + 53B12F58E80E072FBF6433D7CEC0CC95 /* stl_type_traits.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 647DEA0A9A5C67111B68A36821C589FA /* stl_type_traits.h */; }; + 53B6F6377CCBAC15754B75E2E3FCED74 /* hrss.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FD3F9000AB37386213905F547AEDF517 /* hrss.h */; }; + 53B802E2C760498F29FCC1FE1184F2D2 /* rsaz_exp.c in Sources */ = {isa = PBXBuildFile; fileRef = 9ABBA9A7BDAB499082DA134EDE79CCA6 /* rsaz_exp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 53D2B2BB3910D93E4B8CFED30DB013E3 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E5055D8187C0A775F6B45F2F298B102D /* api_listener.upbdefs.h */; }; + 53D80DB30A2F63FD06E8683C9DFAAEF8 /* p_x25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 3DCA615F9C26CF99358B7351C1F4E02B /* p_x25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 53DD7B8B3A4C2CAA9262C9B94340A841 /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 80E8D12DE255625ACD6D0B7A4F8CEE79 /* GULURLSessionDataResponse.m */; }; + 53FD14DD41BB53D035C3CF15358C50B4 /* table_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 391181D14502A21D0CA7FAA8AC458586 /* table_internal.h */; }; + 5412A8F96F01E62261E3EC45E66C2F26 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 413336A3AD8A68C59E99DCE2EA66D53A /* core_configuration.h */; }; + 54134C8CA60BAF58C6278A7F502AE8B7 /* getaddrinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B8F68D2D17CCD4428CCA31DA27054974 /* getaddrinfo.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 5425CA21C8C0FC164ADAF5704EE96147 /* stacktrace_win32-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = B8C665012904BB80A284E2D263686479 /* stacktrace_win32-inl.inc */; }; + 543904F407E7A273C7C2466126148F51 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6A6F1AF18E38D907AE9FE3EB2340D0 /* race.h */; }; + 543B013A8F116A5E0431E547AF1CA3AB /* FIRPhoneAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = D03F2F8A6F5C508C40A6FBAA0B6E69F7 /* FIRPhoneAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 543E85F5BFCF817820B6825B295FD920 /* ssl_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = A61DC357F49DA109869B7EC541E0B27E /* 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"; }; }; + 54440DAA4CBB5E762613FC11DF7230C0 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E43E0640447A49184F89B50011ED238 /* ssl_types.h */; }; + 54587D5B46FC30BCF691D8AB2EFD2DB1 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F967F5BE887A7D146BA84361773A1D0 /* memory.h */; }; + 545C1410C8E49CA57185ABDDF54A2C55 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 621F768B9F77B387B7F47ACD32C5F614 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 546FD545E99F7137E61A7C796CB080D2 /* retry_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58BD8B8512B90CE9FABED5BC1CAAEC45 /* 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"; }; }; + 547245C32EE1172D8F4EF99FEB2BEB90 /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F7307B515B07F439BBBD07E6EFC508 /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 547B4BC5A28E50346172A1A767BD6913 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 94BC6A18087B326095A636959A53FB53 /* google_default_credentials.h */; }; + 548D766B13EDE7D06490B9B4563FA8C0 /* idle_filter_state.h in Copy src/core/ext/filters/client_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 29490FDCE98BE2D344510A014D2FC3AE /* idle_filter_state.h */; }; + 5490CDBCD68209F091B508360B8C3170 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = EC749BA5CA64F3EB128BC0F0391BCAE9 /* message_allocator.h */; }; + 5491C20C7FC93DE3D5DBBA80696CD569 /* handshaker.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 524D842718C6D4D3D8A29931942B3FEF /* handshaker.h */; }; + 5498A231D7999744F4DD1FF5FC7CCB58 /* FIREmailPasswordAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 9803CEE8999CBD865FCB76D78D4B0343 /* FIREmailPasswordAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 549C8E55E978E05CC71BAC9A592E0E5A /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 42F8EDAA7C98E998379F3DDF756142F6 /* promise_like.h */; }; + 54D39B547F2227BF3090E3E361548ED6 /* xds_http_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7A4AF187C9F371D2BD403A1153BE15D4 /* 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"; }; }; + 54DE3F2D4B69C0A1F30DA31B902BC980 /* FIRAuthDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B72EAE990F8E18EF3876197015C20F /* FIRAuthDataResult.m */; }; + 54DE959E0CBFC548118C0566225CC5F4 /* e_des.c in Sources */ = {isa = PBXBuildFile; fileRef = 747BAFE6BABB44DF8C5C19A342109DD3 /* e_des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 54E5CD170383D90C76A00C309861B5AB /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = F7314AA78CF30ACA70AB7A3E074F7279 /* lockfree_event.h */; }; + 54FFCEAC69F84BB3964F7CFEB68126B5 /* proxy_mapper_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AE7849DF1BB683FA2789BCC2EDAEC1E /* 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"; }; }; + 550441190BEDE70A88CE7DA8C8465469 /* wrappers.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 299A7D06986AC088A4E87C7B039AF1F8 /* 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"; }; }; + 5528304B8FAD0F1D4C8F752C2F4B6938 /* byte_buffer_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F7FB592844C934765F08672C1B4FE8F /* byte_buffer_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5528C5AB04CD82A742D79EE39AD5C740 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 959F0A7992D04F656F1D1378D9381315 /* http.upbdefs.h */; }; + 5528EBAAE6214D5F57FFA37A06D54A7D /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = D72C7039A8F4008759839E9CD5A20BEF /* activity.h */; }; + 55363E90BACE6669F27EA4E1CD003B4B /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = F0F01A7D0217CE8010BDF5743529779C /* local_credentials.h */; }; + 5562D88E9A8D625294B32E5169D31849 /* generic_stub.h in Headers */ = {isa = PBXBuildFile; fileRef = A4EA3A2631F90C41940B04ABF9CB8D89 /* generic_stub.h */; }; + 55647C98D03DBAC062243B4EBDEA8C0E /* str_join.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5BE996EC8EF8DD39D79379B8789E70 /* str_join.h */; }; + 556B5B8D8AE0C81D331AE8F7057B8203 /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 14BE6CBA4A8FD41686C9217B067DBC1B /* message_compress_filter.h */; }; + 557FA177B1AE6A11B08C56A5C97B496A /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 15807E1DAA45F1553ED3B84BBC14C2AC /* transport_security_interface.h */; }; + 5595D49B121E9778EDFACC9A37D6757A /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 66F6F322987E1625E381BDCC3AB53230 /* trace.h */; }; + 559DB8B0C6996E22D90B6E6B51BACECF /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 39DC2C0141F8B43D27B7416DCBD80462 /* status.upb.h */; }; + 55ACF5AA9EB203EB4727071E4C052697 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC84C2D9C7AD4F1CD742375F966DDEA /* file_watcher_certificate_provider_factory.h */; }; + 55B99EC29AF69671A53358B5F02CFC51 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8CF67D95B032EB40B43D6099104711A4 /* cluster.upb.h */; }; + 55C4DD17091D1679B477CF32CACDAB69 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = A85ABF9A978CCF58ECAA13659377DAB4 /* decode_fast.h */; }; + 55C5A965F6E9260E93C2FF5E69E85632 /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A84E7F226E3C004C5461E352E1F2A5A6 /* event_string.h */; }; + 55CBE83C64126440FB2E581409078702 /* slice_intern.cc in Sources */ = {isa = PBXBuildFile; fileRef = 129FAD63C94C83A999DE0048921AC99B /* slice_intern.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 55CEFBC6713C04AF2BC0A5DD948DB374 /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FBB62935A88ABBAC9F577706066DF9B /* GTMSessionFetcherLogging.m */; }; + 55D70D5D364A8B1E625E24406354C39F /* time_zone.h in Headers */ = {isa = PBXBuildFile; fileRef = BCE5C92237933665EDE7E6D62B58974C /* time_zone.h */; }; + 55D90732A43723CDA7AB6AF89628EFE9 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 543A65492B40E5159C7D45DFD719A1AD /* listener.upbdefs.h */; }; + 55DE328F3A3CC7F23512078C95CF3AF5 /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0B982740FEDE20A5B630B710AECD2054 /* socket_utils.h */; }; + 55E6C0B0E4D245684C7CF97392E77579 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1FF2DE0F03417B3F591DAB71618553 /* promise.h */; }; + 55E8C8C9D2CFDD8A42C3D62F215D0A5F /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5FEFEA0A04CFA4775970BCC6A52F4771 /* xds_cluster.h */; }; + 55F5D7DBE8EA7826CF6CF90DE8A2BA3F /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBB98ED72932F3B131F2BC52EF61DDD /* error_utils.h */; }; + 55F5FB748FE98448A2EA3BCBCB36C44D /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FEFEA0A04CFA4775970BCC6A52F4771 /* xds_cluster.h */; }; + 55F66A32F4A0439F255F28E33480E235 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C8C9AEB5E0026B6CB2F7F28F5904A41 /* 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"; }; }; + 561197F74753EE2874BEDE5BFC095905 /* rds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1EFCD7D07615F09FE73ACC195BC51F /* rds.upb.h */; }; + 5613B2758FCAE6182E8423298D34BAC5 /* FIRAuthGlobalWorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FEDD8FE45FA214D8E636E31FA3734DC /* FIRAuthGlobalWorkQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5618A0168703CEF7A112DBA689FEBFE8 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C1583274B07075008203C27B8A4FCD /* grpc_ares_wrapper.h */; }; + 56236777A0E5AF8F53D5721B5CECAF87 /* timer_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = F027F748DE09374E33EEF623E027B559 /* timer_custom.h */; }; + 562450F31B55097C09F7FEA411111B5D /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 62CDC71CAA741FAA16FB284AE08DA8FF /* chttp2_connector.h */; }; + 56462E863A2C8D57000F4C0256BB13C2 /* ads.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E2500CB9DD4EED57F5C6C3C4DC88E5D /* ads.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 56519FD6A8243B35A209FD1C9245340E /* randen_detect.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 67CDA08E1558C35E1DC16E82F9C69C2D /* randen_detect.h */; }; + 565530321C47CA77D7413421575611FA /* rds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB1EFCD7D07615F09FE73ACC195BC51F /* rds.upb.h */; }; + 565A52FA82BD2E68D62A0E39E98EE5DE /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5530801C6B53BE3CEC32D4D763EB7306 /* range.upb.h */; }; + 565C9557C45E555F49526354BE2C3AA2 /* log_severity.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = C9D69D1FB058E741B878E2EA0AF11B3B /* log_severity.h */; }; + 56619A5E474B20231337F2C7F369CDEE /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 79828274D3FA905866B6193BB65EB029 /* error.h */; }; + 5664D5B04AAED7A9A45E56025938A0C2 /* insecure_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = C39E9073AB7C012889178092695DA052 /* 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"; }; }; + 5665E5E4C80FCB8FF12D20E60F7B390B /* slice_string_helpers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B95BDCC9CCD952A4A729EB3B31C701C /* 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"; }; }; + 567650C64F3774F57E2F3B661FC985E2 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D70CFB3D8B86BBEE58C9B3AC4E4ED3EE /* ev_apple.h */; }; + 56836D9BCE5677AD77AAC0E434F95BAD /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FA89B4B878CA605910CFE2EC42101CD7 /* config_source.upb.h */; }; + 568904769ADF438D7162CECDD62AD1BF /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E46CDF73C34F2A6DBFFD58BCAF0B14AB /* versioning.upbdefs.h */; }; + 56A497E8A1958402A4F60AA0E1F711E1 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 24A4B46F0DC31689CFA6FA776753E974 /* overload.upbdefs.h */; }; + 56AF3BAF3A2C7DBD2435606DF4B5921F /* FIRMultiFactorSession.m in Sources */ = {isa = PBXBuildFile; fileRef = B0E3C25D0AF48B726D5BFF08AE27CBD8 /* FIRMultiFactorSession.m */; }; + 56B4B4D0752926C7BD9848027F01AE0F /* client_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CCCD23A2078F328966CC394207AC8BF /* client_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"; }; }; + 56C74580EEE9C7BBC07F3CE21C5CCC8A /* prefilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C255764C963350E4763406C1D855388 /* prefilter.h */; }; + 56E730F6A905A8FFB631862506748F04 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = B17C8988B4A74CD61388A7A7B54E0293 /* event_string.h */; }; + 56E8F77D51C108B64ABFDE8D8DAE21D3 /* http_connect_handshaker.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = FC305D3BE1AB21685F45311DFE9308C7 /* http_connect_handshaker.h */; }; + 56E9BA8840AC39754ADD4BF5FF863706 /* connectivity_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = C90F9B6E14FA8A0A2B5CB5BD033DC3D1 /* 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"; }; }; + 5709D05B053BE1FF13399D67243E3424 /* sysinfo.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EA7938AC43874B40CB949F5056D02D7D /* sysinfo.h */; }; + 571406E33E6BD5F57D52A9116D1B29B4 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 62A5DD862D4E7B6816BA41249305620F /* resolver_result_parsing.h */; }; + 571AEC2C4007C1CB2C893111E573E5C8 /* proxy_protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E49C151FEF20A135ECBA2128BBC19233 /* 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"; }; }; + 572A2925A8DD4F4999B12667D44BB713 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FFF27F876FCD691DE067A5A6BB448A /* retry_throttle.h */; }; + 572AB5CDB743321BD0F990475B7D1D2B /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 640D3D180A9943A63803BD1A485C2689 /* memory.h */; }; + 5735EC932B5AB8361C9B7F2DE71FEF92 /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 510F9412B268983A1428EE5E0DB030E7 /* path_transformation.upb.h */; }; + 57433B1A43C155A29ECABE7EDA280472 /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2843361DC8984047607235C06B4311EF /* route.upbdefs.h */; }; + 5765AF9A44AD5F942F23CC29365CF82D /* address_is_readable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 04B0CD9888751808B2F391226DD32645 /* address_is_readable.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 576727F728347BCE158B87EB071B9070 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE5CFF2183C250DC7FC6C04A6B2886E /* service_type.h */; }; + 577482D7C9C84B03BB9B5A7099F98EB3 /* ascii.h in Headers */ = {isa = PBXBuildFile; fileRef = 70A30CF567AB51F97AD2C3048D5713D3 /* ascii.h */; }; + 5783DA97AC4909A1931570ED9995417C /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 261304909E0B32F44FFE110FA8C58EE3 /* proxy_mapper_registry.h */; }; + 5788CDD69077D1A4DE205B0936B45937 /* FirebaseFirestore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8380D25D4C223BFD7AEBC7293A7F86E4 /* FirebaseFirestore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 578DBD4280C9E68C9823356BE7152A6B /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 7043E79F03F3F1F7874FC445B5E3FE12 /* dual_ref_counted.h */; }; + 57ABE661519BEC77E582BF211DD22870 /* x_attrib.c in Sources */ = {isa = PBXBuildFile; fileRef = D2EB3A2EBB4E664DB91F39B6F770CEDB /* x_attrib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 57B0612978AADCD14A2FEC7373CE2C0A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF3B42A6340059E93A985D000BCD3C6 /* internal.h */; }; + 57C3D8EDAE854B1AC2D7481D4EDEBF9E /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = B228A3BA0D841F288B97AF28C6D29154 /* client_channel_factory.h */; }; + 57D95ED92699FCC1BB6E509FED8FFC39 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9D07AAD8561BEC59439A97AA268AF084 /* hpack_encoder.h */; }; + 57DBBEDEBC73EF60D18E583EA9E31CF9 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = CF203CF9C6A726C4C9B45CADD83B2F8C /* trace.h */; }; + 57EEBA8B68C613108F6DC54C96BC1277 /* hash_function_defaults.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4A5AE17BEB37C1111D254C564898BD87 /* hash_function_defaults.h */; }; + 57EEEE3C410126022A45886E07BB26A2 /* asn1_par.c in Sources */ = {isa = PBXBuildFile; fileRef = 5267393A51BCC18F488AD6F047B175A3 /* asn1_par.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 580286134C8A0F2B000C9AA936EE5E99 /* p_ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = F31EB3593C9F188E2E3EDD1E8D988A14 /* p_ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 58087561F18DDF8A21E1F95F9A9F0E8B /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C10D8CDF50E90BA044CE070187FA8CAD /* internal.h */; }; + 58136104A4A9CFC1827985E6481043D8 /* http_client_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 67DAD8BFB5979458A4C4033988CB9360 /* 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"; }; }; + 5813B9BB32CBC4C6BC1BADC2A437050E /* transform_operation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45E226A701CFD332B377613DC7AD4292 /* transform_operation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5825BC767513508277A17C62824C8016 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DAAEB170E49423D012E3A313531F96A /* GDTCORAssert.m */; }; + 582C5B51AB627AE272FF3C8230A863D1 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 06A963028A6ED07940143366C6815FC0 /* validate.upb.h */; }; + 5830E3CACB9FAB2C521F7286FB94DE71 /* FIRAuthAppCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 54E88675BB15AFFA27D7211E8A5AFA2A /* FIRAuthAppCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58336BC94F3DEC8057C14BC457366F04 /* FIRAuthSerialTaskQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 48F1007AE390F9D3188E8FB6809ED38F /* FIRAuthSerialTaskQueue.m */; }; + 584085D286AE9605C82362D4430BEB71 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = E0115BC359C26ADCFC6D4073AD2C28C8 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 584AA96EF6FD3FCE8BE848637F9C7570 /* server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE94F79FE7127AA158E61CC4225D145 /* server_builder_option.h */; }; + 584DF964728E6ECB8E532E52FA093C0C /* slice_split.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 79C37F3296F115E675C5B32B6D543182 /* slice_split.h */; }; + 5868FC0C572EBE48A9BB986BA72604CB /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 132F3CAC3F715125DFCFCC869B568597 /* byte_buffer.h */; }; + 58830F7D0BA202B8F519EA2C5E72347D /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = D7F745270746B4C000235CDF6E67C12A /* format_request.h */; }; + 58838F5B9F57814D8202B2327D453780 /* typed_struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CFE2AFB6AE7C484E3568EEB3E713F85 /* typed_struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 58882A93EEE3DC030F76EE082E0EAB67 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 9522B42463AE4917E0BA399D3106B1E6 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5895D5917375D2F55265562815012678 /* call_once.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 29507664DD519939DA884BBA6135F8AD /* call_once.h */; }; + 58B9D2670DBF69384716F6C51D28A432 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 276AF1CBBEE1544ADE18AF5606A90C6D /* percent_encoding.h */; }; + 58C587389CAADA50892FB492E7112206 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BBD00E88D9A4E83D49B88F521C64FC2 /* scoped_route.upbdefs.h */; }; + 58D9D12D138E789AF92F4D75CEF976DC /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C71BBAB31252A3F311FD3B14185D69 /* authorization_policy_provider.h */; }; + 58E92865E3D1062F251A94F9046B2F2A /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F5BF11D03159A73A25B80FBDF634D8B /* rbac.upb.h */; }; + 58F231B932A92249A7DDE91145CDB207 /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 37314311BD2A89FD9D2B43819D2FD7B7 /* overload.upbdefs.h */; }; + 58F38DB9C7BB77010E80839027226C4B /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = E106DDDC07758BF20BE9DF79C4DED214 /* cache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58F726E1793DC29B6CF8BC253CEF5563 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 843B10F6EE0003084A4E8FD8070FD47D /* socket_mutator.h */; }; + 5937F2B470E09FEFC4DFCD0B499A482B /* server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = C3A16AC189AD201D2EBA52EC6AFCA5C3 /* server_builder.h */; }; + 594D79C0C81B80D6F83AA2FCECF21B4F /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = CBB7D5EA53E1CDB39161C3BD73DA709F /* xds_channel_args.h */; }; + 5964D72BF0C6FBD3B38352761556909A /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8995363BFA50249B4FED9E5267CF36 /* route.upbdefs.h */; }; + 596E00C6359C38EA832CD866858AEC2B /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B16692F5DE3C0A73E926EBBB08409E5 /* call_test_only.h */; }; + 5977CA54ED350E298048354FB5731F90 /* global_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA7B3AADA086A045D4093A0D2D12369D /* 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"; }; }; + 59893B40F93F4020BEA337B0C45C2328 /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B40B7B601D444CD283D126DAD758658B /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 598AF237E363B2F71B4DE0A7DF2E48D3 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FBC45472822A2A5EB4611E94D3CAB6AE /* sockaddr_posix.h */; }; + 598B2B07CC1767D95893F4A338FBB411 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E72BBE7A201A7E58EAC6CDF21FE608A1 /* listener_components.upb.h */; }; + 598E80D4DFCCE15E8D2B4D4335A7B287 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C2ED12431B10F5E01F87923D41C2F4 /* alts_iovec_record_protocol.h */; }; + 59910142FEC04C07F27332FCA11D9251 /* randen_hwaes.h in Headers */ = {isa = PBXBuildFile; fileRef = E699D1B75123201FA73DEF28A80857E6 /* randen_hwaes.h */; }; + 59AE81624AB5AAB4D133A9DF698AC839 /* xds_channel_creds.h in Headers */ = {isa = PBXBuildFile; fileRef = FE2CE0C1EF6DAE2575B2E99FDF544AFE /* xds_channel_creds.h */; }; + 59B0D4B18C4C3FCA01EDD38F4BF64E2A /* slice_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2470C9D1B5C531B52E827D6C7FF7E5AC /* slice_utils.h */; }; + 59B28E95557E19B78CAD789180FEF939 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 82466B292831540539085B0B9CBF9BA6 /* ssl_credentials.h */; }; + 59D0CE2D3C0C37FBB85F5E21B8119633 /* v3_bcons.c in Sources */ = {isa = PBXBuildFile; fileRef = CBA310A0A1FB4647DE4D1663279BF6FE /* v3_bcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 59DA7F72624064DC9AF797A1FEBBD8ED /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = C4138AF48FD95F99619C33DF0D042ED2 /* completion_queue.h */; }; + 59DD62963CB013A3E26344135804B71C /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F45E436801A1BFF694BD3D754D6CCD /* compression_types.h */; }; + 59DDE46FC6D61C9F89DDEE64AD47221F /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C81D1C36629B2EE09FA0ED1A417D46DF /* context_params.upb.h */; }; + 59E9A68F6EE135F3CAF031E898ABB335 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 58AA555DCB7AD2C4980AEE79A710784C /* dynamic_annotations.h */; }; + 59EE8D7469B3505419D0E44AF309ACCF /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E848596FA67D95D4AA7402689FD0A0 /* api_trace.h */; }; + 59F4526ADC7267E96DAB1A107BB112CC /* query.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = C334ACB0517F9175CE5B8704B4FCDD42 /* query.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5A2E568E5FD8D7759CCFF1361311D7EF /* grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FCC5E2FDD77F250F8DC37D0CB45EE11 /* grpc.h */; }; + 5A2E75955FDF4046F6FA0AC8045D3AEC /* x_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 29F21C3B2F4A280F9C9170D01F4BF5E4 /* x_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5A3E6D989532C1ABD77F9F9F5B862B5E /* endpoint_pair_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87CA1AD95DCD2E545747474B90C3ADF5 /* endpoint_pair_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"; }; }; + 5A3FA3DC1CD4318A3C2C8AE74B2ADA1A /* authorization_policy_provider_vtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = B04930504767C05A2FC7D4F1638024E2 /* 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"; }; }; + 5A47F5E68358732A68A2646E26664176 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 73A13E6CA2407CBDC57E189D6980E82D /* hpack_parser.h */; }; + 5A4BCD6F31590CCFFB1FC3D1EB12AA2B /* reflection.c in Sources */ = {isa = PBXBuildFile; fileRef = FB7500A37B5D60CBC2EE76F76685F82C /* reflection.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5A57D8A1DEEE4DF0AE7CDB91264C7E3D /* uniform_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 356335F3B31FAA05D7F6EE5A31DE2C9F /* uniform_helper.h */; }; + 5A646D6C6D5E0F13C5CFFA9FB6CE7B01 /* simple.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C61CFB780920F12A971FB68C2561F66 /* simple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5A6C22C57B9BA797B6327F03FB15C9D2 /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = EFE03AF06D51C162CD4743C4A87F406C /* call_tracer.h */; }; + 5A74C50685581EB6F5FC7CE5670A65CE /* FIRDeleteAccountRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0255947B73F9D231FDB1F9468A734938 /* FIRDeleteAccountRequest.m */; }; + 5A7569F12BC4B05EECB8C500A41ED05B /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B9B5ED968B63DD8BC408D31698D781 /* ev_epoll1_linux.h */; }; + 5A96AA138D0462F4312DAC5F135848FC /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 87CA56A9473E8927B8230993AEC4AF6A /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5AB137FC7B6F92D7168C3C05DE51AB33 /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 145004F69577554E27FFC4C38782A33E /* time_util.h */; }; + 5ACE1E9D709E7238D0A8A0273BF230CF /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EF4305A9FDADCB8678097C6FF6FE6F /* examine_stack.h */; }; + 5ADF67F07004A372940063DE50F3F7FF /* FIRAuthAPNSTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF91304F598119171D5047014E8371F /* FIRAuthAPNSTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AEB43D134FAA9606752F763ED632ED2 /* rpc_service_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = CD7B9328FC6D2EB87D03CA6A2340FB97 /* rpc_service_method.h */; }; + 5B00A0E644C382CDE3CAADBA5709A77C /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E780D3DEC7162B7C05CE991F97AEDF /* transport_security_common_api.h */; }; + 5B0FC2C13A4A9E7155A2BA5CC74B8981 /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5858922D99E8E158080A289DDE9D003D /* collection_entry.upb.h */; }; + 5B2BC127127CC19BD0B09D31A16304B0 /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 3D2C31FD91332382DCDD740BA14BDADD /* memory_quota.h */; }; + 5B2DBC4AC7CB2D5A9BC0673300641366 /* endian.h in Headers */ = {isa = PBXBuildFile; fileRef = 315277415A9A34154F99B049F2D43DF9 /* endian.h */; }; + 5B4DF8D71C5F3AF68D9CF1BEEAAD8FEF /* bn.h in Headers */ = {isa = PBXBuildFile; fileRef = 8275596D5F2CC3EB383344D0C79FB32D /* bn.h */; }; + 5B4F9200F10A0CDB0230753AB2B500DF /* city.h in Headers */ = {isa = PBXBuildFile; fileRef = DEBCC1E682E8B7415409A5066CAD5090 /* city.h */; }; + 5B51C9DF818AA6B695CAF6A925F7726F /* FIRUserMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 3974236CCD6A8FF64A8F9E8CB7CE3499 /* FIRUserMetadata.m */; }; + 5B56846607A56F16E839CC7E70511989 /* sync_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 35062E72C18DE895C67666887F2ED13D /* sync_windows.h */; }; + 5B5820ECEEE080579A9596FFD4CEBB5E /* FIRPhoneAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D0C7686B1EABDA98BAF2F1379567516 /* FIRPhoneAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B6F5654B253900EC263C3DCDA84FA99 /* node.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1843FF071574EFE4EAFFDA8FB05EA639 /* node.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5B72AE79B12AA0AD68291587BD56B982 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3C42C0285CE69BC04D9AECC36D0AC8 /* syntax.upb.h */; }; + 5B84A20B79D4B2CB08CA50CB8E16F99F /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D8ECA21E4FB0D8DACD0C720E8FDCADE /* StorageFactory.swift */; }; + 5B906EB9D974D476148998F01B127EEE /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6B7D6FA8081B12F306D3960C3D23B9EF /* quic_config.upbdefs.h */; }; + 5B94F59C192858BA71A5C59366ECAAE1 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = F1057FAB8C3052F92105AD81BBACDA9A /* channel_init.h */; }; + 5B9DAD2800E1490E2800C4F773F6FACE /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5CB01F073A2C48F74641E4DCF704031E /* xds_http_fault_filter.h */; }; + 5BB6956F9E8A2DABEE6AC8B779CA6282 /* e_aesctrhmac.c in Sources */ = {isa = PBXBuildFile; fileRef = F937C57B6E01304BC500F48F291ECE67 /* e_aesctrhmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5BC30B5C912BC03C2760E1A4C2122C9F /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D8EBCCF41C1F4E8704D2768F33C143B0 /* route.upb.h */; }; + 5BEDFEEEBD4910D648A6C1ED459BD8E7 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A2D17ECB9E8B2B71278108C094BEE3 /* async_unary_call.h */; }; + 5BF66A6657478400AF6231ACD46C06F0 /* umbrella.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 35587C08DED7EECF8F601C4185B4092C /* umbrella.h */; }; + 5BFFF812598B68BD0E0211773B242793 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 05DA15F57C9AA6BB5B02F71D09009840 /* semantic_version.upb.h */; }; + 5C228A55B05B3292197F0492D5772A95 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6121E59BAC646E8C26449AA7C3B2B744 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5C3784AB39A5E2FDC6E568D47C191968 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 18B497E857E3157981E0F07BC7C3AA74 /* endpoint_components.upb.h */; }; + 5C3F9FF34C6C6502EDBEF78F1681D434 /* channel_stack_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 76F103B75E51B9E162F85CA081D14721 /* 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"; }; }; + 5C4306960DC0ADDBE2F0F2C56AC50868 /* x509_vfy.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B99BC6CB6A9B3D12AAD97F1101B6CD13 /* x509_vfy.h */; }; + 5C439174E0969A8BC4272ED249D758E5 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD4EBBC8434D3600C301F73169E9F6B /* resource.upbdefs.h */; }; + 5C4502B847ED4F8D7F963F2CE3A75513 /* FIRWithdrawMFARequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F27458A8E8BEEC635D225538AB2D66F5 /* FIRWithdrawMFARequest.m */; }; + 5C46682B123004C7D7E7934917A4E556 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E78F35C1E0FD3FCD285C059AE6D2B434 /* tcp_posix.h */; }; + 5C51F64A671BD825C31B73F8D5CDFA62 /* FIROAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FF89CA39139724FBB70CA9F2C5F044A4 /* FIROAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5C664EC1636EC067FC2C750439AB9848 /* event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6A7371271803399B58D28FDC091837 /* event_engine_factory.h */; }; + 5C6939A855F84CF87CF90505983597B7 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D8949839E9396BA9155319F8AB64DD05 /* jwt_credentials.h */; }; + 5C7910425CCEF7BBA85D63CDD806262E /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 634567A16F2336F2EDC62581B1C95B67 /* frame_data.h */; }; + 5C84B9DB3E7C0F585A0888959905397A /* method_handler.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2CD96C498CC7A481D4FA1E46850E70B3 /* method_handler.h */; }; + 5C98DE147399F49FF8BC3DA9343049C2 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 185A93251CA76BA6DE2EF2C4136B28C7 /* tcp_server_utils_posix.h */; }; + 5CB4B15D7EAB9E28235527C6740CB864 /* auth_metadata_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = AABB9408CA7882A2C975D53814794902 /* auth_metadata_processor.h */; }; + 5CC175917ED0C50AFFAC64B9E5DAA6DA /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C00C2E14BE4C51B11857C4890AF198FA /* ref_counted.h */; }; + 5CC9792DD11DB5017F6C606B9BD78204 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 27486CAEE5F1C6AE56240324BB169185 /* FBLPromise+Wrap.m */; }; + 5CD113FB22E9B06EACFC9BADFA9FE878 /* server_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 9ABDBBFA7111C3AA50A9BCF22642C98A /* server_interceptor.h */; }; + 5CD5949DB6F89DF7D188461680BC9A6C /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF5A0B8EFFB565299FCBB477AB565A4 /* httpcli.h */; }; + 5CD9AF79B3C1ABB20ED2129296BE5BCD /* auth_context.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = E82751FDA492DE54F28088233BF5AA8E /* auth_context.h */; }; + 5CF46B1C8EF4A227D803E635A06C2B2D /* randen_hwaes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2FBD00947D24CF5785EA0CB5DB2A4640 /* randen_hwaes.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 5CFA6F6486B2C6989AD884603CE65CCF /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 202B0381245BE30EA25F7C112E0D59A5 /* string.h */; }; + 5CFD429456739284B3FD02E248EA54F5 /* work_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CCBF6D166FF1AA1F309F7F54B3A6170 /* 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"; }; }; + 5D0659D86B5F620757704698C845027A /* check.c in Sources */ = {isa = PBXBuildFile; fileRef = 163AFFD41610F56B608503DBF261541F /* check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5D20EA97075E61789E5F40722E13346D /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2884FD554F251B8BCE0E7AD7CC7BF9A2 /* proxy_mapper.h */; }; + 5D24BB3A0587472A3D49B2DC4172328A /* x509.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D39F80575F4F98634E3ED1E6F2CCBB95 /* x509.h */; }; + 5D255495D5061FDEBD6BBC0EF95339B8 /* pem_pk8.c in Sources */ = {isa = PBXBuildFile; fileRef = 836E4622712C52CDF72BEE2F2D3016BD /* pem_pk8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5D2889965E1ED1123712639524F57344 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 6A3ED48C48EEF76302A1F3A1EEC1BFFA /* security_connector.h */; }; + 5D296B9810D25B28F44646EC4A2A3B37 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DDA1CEE8CB59CDABA988F6C957893E92 /* tsi_error.h */; }; + 5D29C72DFA5B1B95D79E81D105883045 /* errno.h in Headers */ = {isa = PBXBuildFile; fileRef = D09B74402F1F8CFCFB63E8D8D5DCE5BF /* errno.h */; }; + 5D36B91F5866812599712A449F24B77A /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = EF33649D1762EB5CFB7C515A41307E90 /* channel_interface.h */; }; + 5D5A16F1012BF7544C6F49B25AF8E61A /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = D806BC6E3AC9A90601B95EA95C3C6A14 /* interceptor.h */; }; + 5D5BA4E6BBA1FE07BADA73FE081CF369 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E0092795BD8E928F460DB840A8F13C /* hash.h */; }; + 5D656825B7891A1C468C96FE38E04D7C /* completion_queue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C1B65B50C5C5DF709CB6D2A92CD9DA98 /* completion_queue.h */; }; + 5D844AB019280C9832AC910451EC1028 /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 54AF541A6B3213A6177848801664F754 /* compression_internal.h */; }; + 5D89439E73C6051449A1BBC23D3FCAA6 /* stacktrace.cc in Sources */ = {isa = PBXBuildFile; fileRef = B00E27513B76C540F82BEFD6EF042F78 /* stacktrace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 5D9D5CB11E468906F565F199B4B6DDE9 /* sync_abseil.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = AB707B7445C8ABA916FED612057CC9FF /* sync_abseil.h */; }; + 5DA7493AFEB4DA7213F559571E6989E7 /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 820E2EAC0F61C0F66E2FA35B975ED290 /* python_util.h */; }; + 5DB0BC87D9A6901A1F5C6163318DEB22 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D1840C3A3BDEAB8AC286D7A8907A08E /* fault_injection_filter.h */; }; + 5DBAF9B55DC3AE77F2CECA00B7AFDB6C /* ssl_utils_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5400D00C86CDECFAFFAA711688901853 /* ssl_utils_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5DBD83F7A00B9615AFBCD87E5AC057AB /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = D1C824C4D900253027727CBD5D73F9D5 /* secure_endpoint.h */; }; + 5DC1EE6947C4C9EB9838CFB84C3F6797 /* char_map.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 261FBBE7FA4EB844936AB2D3BF2EEA81 /* char_map.h */; }; + 5DD2E77AF0DBBAC47807FD6CB56ADE06 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 39D725A6D66D200A4062814D8DCD798D /* aws_external_account_credentials.h */; }; + 5DD5BA4F339C9EE05F358769326324D2 /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 47D61E20DD02A0B6145065A62DED3A12 /* event_service_config.upbdefs.h */; }; + 5DD7AA46A1409C11860BC1D7A0701C5D /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A6012AF4B8E27052CCAA36F5AD001CF2 /* path.upb.h */; }; + 5DDA8FA7428E01BAAE57B2E1101BCDD5 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C37635D27D01FAE0330CE6722508EFC /* secret.upb.h */; }; + 5DE92A3186FCF5A72CED9E415420EBB7 /* FIRFinalizeMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8CFD4C0E1CAF54D4D855705DBED6F3 /* FIRFinalizeMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DFF64DB82EA87EBCC7E6A35B70A4C60 /* filter.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 34A9DAE4BB1E9A698B68626C59670CA0 /* filter.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5E000C69BECFC2F5341144742B5FF103 /* transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC5E25539C244364943D638C2B923355 /* 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"; }; }; + 5E0B37A47E797E43E0F88B555D3ED336 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F41A9F8DDA943C36374194CE45F422 /* validate.upbdefs.h */; }; + 5E1CA21FC87DA4138A032E83F378E6AE /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 72575879F4DC1A1A2E136BA6ACC4E0DE /* json_util.h */; }; + 5E46B08D9171EDEB11274A11C75E4D37 /* asn1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9A31B32D40BAB1FE1F132EB85134B31C /* asn1.h */; }; + 5E478B1F5141F2B343DF3B3656294167 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 62823349E2627FF623A5B03416D1B7E1 /* range.upb.h */; }; + 5E5465B0D6DAA54F7DBCED68AF0A446A /* eval.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7F7FDC6C14110117495E63EB547DB6 /* eval.upb.h */; }; + 5E59079327D1196731F022D2B1FBA951 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A59E75EA30D3AC8202A07F9C1C58AB /* cluster.upbdefs.h */; }; + 5E5AACC75D7D0304C1F138B93E4C69F0 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = F65861A77F437B535A95FF0F9BA7C312 /* atm.h */; }; + 5E5F77B30A067024D835609FE8079C76 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 321BFECEF6999A994A74CCDDBEE3155B /* client_load_reporting_filter.h */; }; + 5E634337ACBCD79689241B74ACCEE185 /* tcp_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = A3CCFBAFBBDFBEDA3B381E7478DF01B9 /* tcp_custom.h */; }; + 5E72AD62E9185F273E54D580545A4170 /* cord_rep_btree.h in Headers */ = {isa = PBXBuildFile; fileRef = 58B5BB47577401F706299ECA6DB4799E /* cord_rep_btree.h */; }; + 5E75A1001E2C53613255C20ACBD8362C /* conf_def.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = D4B53D6194CA7B02AD45947E8802E00D /* conf_def.h */; }; + 5E9EEDEC5268BF772E7213E76868564D /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2C31FD91332382DCDD740BA14BDADD /* memory_quota.h */; }; + 5EA004FE6F8FE851CC34DC0F2136C702 /* rds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4B5F3A0BA70E884D7CAF02006F257B70 /* rds.upbdefs.h */; }; + 5ED28F23C487EB771C667BC9D482A9DE /* gRPC-C++-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EAFF817D7931532A1C4D582FF3FAB0 /* gRPC-C++-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5EDE066550BAE2EF2D79B7063CECC0A2 /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = EB23431A9071AEE58D6C566B4E355AB1 /* timer.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 5EDFF6E9900E3FBAB21E8688C30EE3E4 /* http.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2557EF5D9A3051A6EA018640E7E69EE /* http.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5EE000DDE380C9CA04196B4CED15F969 /* log_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C84700A2950E54155CC06C993ACA8C6A /* log_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5EE201A6AC6FBCC1444EAAF5680802BD /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 864B590F269205D2D79425DF9F027FEE /* metadata.upb.h */; }; + 5EED56DAF97372AB4458CCD05CDFC540 /* secret.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 889C864A1F59B74D7751F3284A91E5B1 /* 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"; }; }; + 5EEE8DB30B2BE5DDD4E2E35B14A1B498 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B00CC442D6B8433B3B58953DDEC870D /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 5EFC7CAF6269B1B9307CCB492AA31245 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 429A9536EDA7C4DFF3CC15AC3BB3AA23 /* symbolize.h */; }; + 5F0150E70C3312E00762F49BF752C6AF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB0FF0D85ABECEAC50405D646598115 /* internal.h */; }; + 5F09C5A9E259B69B5BA6E40CAD274780 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D71042B9FED0E924E032FC2CBD73AC5 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F187C7852F34854E992BE64DB9F126E /* codegen_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73A7CABCCB1DDC9DB9E4632D1D065DAE /* codegen_init.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5F2036030CD4FFF1F49F0A35C7FE1ECF /* rsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5ADD19F2D8F352F26FEC966F69DF46D7 /* rsa.h */; }; + 5F2AFBAFE01FE9B52CA73C85308F9C97 /* v3_bitst.c in Sources */ = {isa = PBXBuildFile; fileRef = BF8C791CC0644F7FAEE3E2618256811B /* v3_bitst.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5F39C14F5A167286208C7A186BE12335 /* have_sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DFEA2C7CC83143DBE5DD4659CA99DC2 /* have_sse.h */; }; + 5F4517F4524186E347201875F3A20E19 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 21B23DC7B656E3396815463C2E5A2088 /* channel_stack_type.h */; }; + 5F46E577282F34EEFB4DCA330DC88113 /* iomgr_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5B8678B2EB1A26A48D1ADB9DEC9D68BD /* iomgr_custom.h */; }; + 5F51A6C02D5F85ED6E46EFFB393C6CB0 /* alts_unseal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5CFAEFD67C646FB49382613BEADA2544 /* 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"; }; }; + 5F6C3ECD8A0C79B1384D34B773B49C86 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC481F7767DD342D2A38E88DB0DC061 /* connected_channel.h */; }; + 5F7A83F8C412D2C279413851273406DC /* FIRGoogleAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E1A8AAA43D56A8C6FECECD23938CE18 /* FIRGoogleAuthProvider.m */; }; + 5F847E31C9555B67DB827B7CBBAC6107 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ECCAB5AC4FDBE75FE57A7ED462ACF7C7 /* quic_config.upbdefs.h */; }; + 5F875C54F4F5789DE457A1C660F24C83 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 459CB2DD679D5E0E47E2F6A4DB44544D /* promise_like.h */; }; + 5FB9B9FA0F2FA6810E98C033F1EF1448 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBD750D47C737D420A6BE511B0BC8C7 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5FBD302E670526F59BD32C18FEBC29B0 /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 1719A2E866C59CB761E7391982451327 /* seq.h */; }; + 5FC4267EF0671A145D90512F7474F53D /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1DCD05491EFCA8A659AEB63F5CFD85 /* load_file.h */; }; + 5FD76789E49C7362C41DD392E88DEC82 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B38BF9C1AABD653720CB3B55AEEDCF9 /* interceptor.h */; }; + 5FEA71F5992C1009D36D1FEEEEEE91D2 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B5EDD9AF1068695B85AF4B4C41E75757 /* proxy_protocol.upb.h */; }; + 5FF2ADCA878C3BC2FFD1B6709EE01D97 /* per_thread_sem.cc in Sources */ = {isa = PBXBuildFile; fileRef = D71ACCC02C51E150DE057FEAFDA4EB48 /* per_thread_sem.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 5FF4B300223AA71D72A45EA7CB8F637D /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 09CA805890B9FB97530A75769790659A /* status.upbdefs.h */; }; + 5FF502E9281821D03FE7B4F86581E871 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 484B9ECC054B1DEE954B91CFEA77F341 /* channel_stack.h */; }; + 600BDFBEB08CF329D0B44D5E3F788C63 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 229DA5C38ECDEDF43ED5927FE1273B72 /* socket_option.upbdefs.h */; }; + 600CA7A2381ADF3BC99D2F0A692BC2BA /* channel_arguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E2B34670BF782DDEA1810E557343D2 /* channel_arguments.h */; }; + 600D8818DFFF59569B41942962C8472E /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ECCD0085973107F34EB0A7E5FFFA34C /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 600FCCA31727597F3280DC74440A5BBB /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B768335C97D71284F12C5D516108D5E4 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60224667F132A7F7032B87BF71BE6C41 /* log_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF1229F20CF0EDF89676F8A0D946C729 /* log_android.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 60357A73724C9A535DA5CFD75D461575 /* log_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = F00561C5C2C53ABCB5BA8F1A327A74A5 /* log_windows.h */; }; + 603E55BE94AF6589AFF493AA29EDA45C /* str_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 112074D0FF06DD98C181DE2E969EC055 /* str_split.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 60576A17090F3C0131CECDFF1FEA3ED6 /* x509_lu.c in Sources */ = {isa = PBXBuildFile; fileRef = 42962C10FE101E3D9C88E230B79EEAA0 /* x509_lu.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 605A563E7E4C773F64B539A6A17226B3 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7151F8B6A513A491A9ED1DF985822077 /* xds_http_fault_filter.h */; }; + 605A576D16AB9A5DA524D94178C2527D /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = FFDF70E20EEE2F656DACD6A5BF0E0784 /* trace.h */; }; + 605A99DEEE2FF4C8EB02AF3C2B93897F /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = E82751FDA492DE54F28088233BF5AA8E /* auth_context.h */; }; + 6066EABD6011634B20A0460D96BF0F06 /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E611AFAA746E11E2FA8697A64C02ADF /* global_config_env.h */; }; + 6074558F6287A012BBFEF593BF3F7FEA /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = B5ABE53DDF1514BE545E1416D9BE1B58 /* composite_credentials.h */; }; + 607948DF24C989F692366EABE48DF5CD /* bitstate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B24BF66614DCB2302F24BDC56E654DC /* bitstate.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 60821DC179C7C8551F19AD6BD7F702AF /* binder_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C76D688AAC5A1CD64D289A14CE83CC /* binder_transport.h */; }; + 608DED8E505162F014580FEC7584CE82 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A574194E513FB51B9833E63744D57C5C /* rbac_filter.h */; }; + 6094DEC218F1BD53CFD40A58570F6A15 /* internal.h in Copy crypto/err Private Headers */ = {isa = PBXBuildFile; fileRef = 27E93FAE5E4169D84B65E57C366F3024 /* internal.h */; }; + 6099BB3984C835F7329BDB3E16E21134 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3352DD7E9B32DA32FD0938088A06E613 /* internal.h */; }; + 609FC6ECF1364DF86A5DD47602AC3359 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A73D17771BBAEFEBBFE5724EF32F1D /* retry_filter.h */; }; + 60A3175428A4EF1967C1A5EC38464309 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 866A4785DB4A328DDB16AF225F6BA93B /* custom_tag.upb.h */; }; + 60B6AEDE15185497C80160010476D04C /* server_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC3074AE2F21EBE83C77A8A7B79234E0 /* server_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 60FDECCE8D8F517D446C1B040132F5DF /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EEF552252F6F9AA31D017F3E97A5AA8F /* resolved_address.h */; }; + 610DB60897D8DD580B16342DF711D8E4 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = B305A820FD6DEB4963E54B7976215E30 /* load_balancer_api.h */; }; + 610DD850D7E0CB242D2E16ADE002C464 /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B3F50A4DF4D0F0009DA463D28EDFDC /* inlined_vector.h */; }; + 61196B5304441428CD0C771AF3015591 /* srds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9F97BB4B975667319CC34C4E05585709 /* srds.upb.h */; }; + 6122838ACC3EB3F66EBF9FF70DC92F0D /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 449D3BEED9BEAD11CBFAA6C16151CC60 /* http.upb.h */; }; + 613141A84E82AC50B619ABE1C05AAA75 /* random.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = BE6D14482E6565B89855E198AF5F709D /* random.h */; }; + 6132FDBFE3477966CEB604D1E8364DE1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 6141686D4CABFB8007FFB97F44F2197C /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FB04A578884285731832F180BE268525 /* internal.h */; }; + 6149ADF8A6E0E8C5A5261956955D63D3 /* wrap_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9068FB16837279648FFDF1E2633B711 /* 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"; }; }; + 614EC3037FF5BC36E3E669CC69D6FF17 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB27B98C18EEDD14BC4B8407B110EE3 /* evaluate_args.h */; }; + 616458B2F656968D45AD903A8C719DB2 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = B10851A33C44B4EC8C8E607B2DE362C7 /* port.h */; }; + 616CB3033A32902FC9E13ADA4932A35C /* windows_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = F68DAC0761180F8A33071A006C096B96 /* windows_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 617207AA6EBC734698E887E7E9E94FA0 /* certificate_provider_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = C31B294CC0DB58D6F2B509E44D1707AD /* 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"; }; }; + 617CE6679BE305BF340997A46E890382 /* fork_detect.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 135BAC057B53B5E870C3649C9664C3EC /* fork_detect.h */; }; + 6187651B2C86EB9361D160A32C459E36 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A7A35D2FD55AC6076A5ED6600BEBA25 /* huffsyms.h */; }; + 619591CDD4CEB01551FF451C1C85176E /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E02A5310281DECDAC8A4F2E230DEFC4 /* 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"; }; }; + 619FD1FAA65D4831392C762D2D88543F /* transport_stream_receiver_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 57180A05BBC12B57923046D1F8F700F5 /* transport_stream_receiver_impl.h */; }; + 61AF96E94BEF9B51002BB1538333DABF /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = ECEF990FB374A6DD79E7235EEBA61A8C /* status_conversion.h */; }; + 61C2755F3BE7D5B899B588693B282E55 /* randen_hwaes.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E699D1B75123201FA73DEF28A80857E6 /* randen_hwaes.h */; }; + 61DA6AB85488DCE6E4FF4C76A655990F /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E2ADD3D7C577F3E409CABE752BF825FC /* tcp_server.h */; }; + 61E75B18E766C1FC399B67D51C794D75 /* mutation_batch_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CBDACACDCC35885E3EC7F6789EF7EFB /* mutation_batch_result.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 61EE6C76B560485790360159DBFBD663 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 952596A0AEB8945984149E20ECB38C30 /* regex.upbdefs.h */; }; + 61F727EC26A35FB51DF630BE694DDDC9 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F061713E7492965AA12B740C44C736D /* value.upbdefs.h */; }; + 62042B86F45568429E60D22AB7F695DF /* FIRActionCodeSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE4421EC627FAAEBEA77A5FE37B4E23 /* FIRActionCodeSettings.m */; }; + 6212D8A325E5184401EA50428901938F /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 788A841BC05B9265D71AD897949481C6 /* semantic_version.upb.h */; }; + 621A03901CFE8B84EEC73BF231852BBD /* transport_impl.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = E194690CB60601C0C178435C75812721 /* transport_impl.h */; }; + 621A4FFE6E4513CA2E70AAAAA5A96D4D /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 69F9760BE422D096B78408B1FD8BB406 /* http_proxy.h */; }; + 621C3931FEF3EAD9ECD69C24FB13C4C9 /* FIRMultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AFA09B191C24C5363C0D7AAD76305C4 /* FIRMultiFactor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 623161C2447B7031D4AFF09A8DF2FDF2 /* FIRAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A11C0A6FB6BA0C96EF2E6E43C3E4233 /* FIRAuth.m */; }; + 623517A3A727841A968880C0BDCCE494 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9AF29D9D90837C068695EEC13D6D749F /* router.upb.h */; }; + 6252ED6CC547BD95F9E5C162EA66C708 /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A06E5892C037299DE92E89A8290AAC45 /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 626BE144F1D0539AC1C6185EFF7C71D1 /* bn.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8275596D5F2CC3EB383344D0C79FB32D /* bn.h */; }; + 6273BD8EBC062A2C3F6CBC4B04F3EC67 /* hash_policy_traits.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4B7783D21B5D4C98097C79E98F17BEE0 /* hash_policy_traits.h */; }; + 627480C60F293E43D25EDBC5A9E6F6DB /* pollset.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 46736FAD9318C2F7FE1755B3D57CBE43 /* pollset.h */; }; + 628A62CEA77DA8C7E15C0B8F3AE119B6 /* montgomery_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = A1F7779EC03A9C8B5AAFCCA1246419AF /* montgomery_inv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 62902B3C36A42015CF8549A93E5FFD7A /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9C92C3C93711461B1F302470718B6A /* protocol.upbdefs.h */; }; + 6292E200BBA92CC98E6FDA5ED894B339 /* FIRSnapshotMetadata.mm in Sources */ = {isa = PBXBuildFile; fileRef = 521C6728CB5AD6BF415E45D1D24E745E /* FIRSnapshotMetadata.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 629B4222E1D829636DCC9701B5CD325A /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 185A93251CA76BA6DE2EF2C4136B28C7 /* tcp_server_utils_posix.h */; }; + 62AFD8FAC3A8FF7E2ABEEA9D3F72D69E /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 5DD9E1B025C3C0BD8D0152D5A42E9550 /* connect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 62B527C1867B91C5C18CD95991D8F0C0 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 96400A779A1FA998E3130C99F0E430FC /* filter.upbdefs.h */; }; + 62CEB49E1394FED57DBCF7519EE8AAED /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4A392088B74EE77B2A3EC002E127CE /* http2_errors.h */; }; + 62DB01B9C96B534DB0BB353528F7601E /* bitmap256.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C635B39A61EDC24FA680F668742DD0 /* bitmap256.h */; }; + 62E241D091E8268327C06B49A5084414 /* rpc_service_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = E66C7244BCF0AF79F4888D4E8ECF2A94 /* rpc_service_method.h */; }; + 62EB839E7EE33842A937C0F15A88D73A /* thread_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 929150B4045F2DCB2B08088C1E8FEC90 /* thread_pool_interface.h */; }; + 62F49A91C1261EC035FE391A03F32345 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AA555DCB7AD2C4980AEE79A710784C /* dynamic_annotations.h */; }; + 63028F5EFE2DE1ABB93B2A73F21E829F /* FIRUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 291B7588D2B44879CEC511C858E6F4AC /* FIRUser.m */; }; + 63071484E89E1F7D4DE9B701A91560C0 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 48A6841FEE537E960B30F075A0263588 /* 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"; }; }; + 630F7C9E8250006D3490363565DF615B /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = C4059BFE58999271A6B6CE71DF543AE2 /* security_policy_setting.h */; }; + 6317E898450102916AC62AA15CB3F884 /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 19C8644BD153A68FAE898C7DADAC77E4 /* 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"; }; }; + 6318702C691A0E4465B957FF5CD22843 /* pollset_set_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4067D4FCBD355E4B1A7FD4E4424933FC /* 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"; }; }; + 6324D0C6613F46307FA7572F5AC66A4F /* sync_custom.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FDE57C13CE0BD1FF00774383BDFA28C2 /* sync_custom.h */; }; + 632F841CBA465FCFC447F782724C696F /* collection_entry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4ECA1EE622E19A95455C13C2E5F77CB6 /* 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"; }; }; + 634B33D2E9200D67A3195AC8BCF5092D /* charconv_parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C1EAE9B99F5A697F72267446E4519FF /* charconv_parse.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 63561D2754A331EF128A4E15BF1E9E0E /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 25475A593A6B1686B40F8951AEB0E93E /* load_report.upbdefs.h */; }; + 6357E34E93F5A3F9D4ACB9FD83D165D5 /* socket_option.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 201DCA0D7E33967E0DA8F376DCA5B661 /* socket_option.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 635D7E7171FB6B4C515D217C16EEDCAB /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C35F9509DB579DB6879A5B1C96E24659 /* SystemConfiguration.framework */; }; + 63748FF8A2D980DCC6F55CBE3E5A10EF /* hash.h in Copy hash Public Headers */ = {isa = PBXBuildFile; fileRef = 07E0092795BD8E928F460DB840A8F13C /* hash.h */; }; + 637AF74444488551F44110249880A4D5 /* FIRUser_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 676F71ADF7F9CC0DCE1551B7AA7E5B09 /* FIRUser_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 638CAA3BA346F436DC304F0A49F99130 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E663C5EEE51907770579F3EE9E738A6 /* time_precise.h */; }; + 638D9F02291E7BB320E8CE75EBF20045 /* proto_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = B9606DE331107B83AAC28256BFC09685 /* proto_buffer_reader.h */; }; + 63A074C712D1B7731ECFF02E9A7D0279 /* local_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = B7B95F82E625D0C58242561528322227 /* local_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 63BC7374BA1009656C34C5A9A0D2AF7F /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E9992FE27D08C290F3EB2F302A4B1552 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63C7F3931B1757547A0F2B2E058E27EE /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = FE621FA81410BAB146B7C4CC1CEC31C3 /* ev_epoll1_linux.h */; }; + 63D68DCB1E6F1A29AF48B2DC0358A58F /* cordz_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79626D81A60C93F09ABC1A997C630CC3 /* cordz_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 63E5C5237CB3090E1C4513CA897D1BD1 /* status_payload_printer.h in Headers */ = {isa = PBXBuildFile; fileRef = B2AB0C00581CC927D8FC929EBE615FCF /* status_payload_printer.h */; }; + 63F938120D1AC9FCF0180F498F068305 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1C213C08DDC760EE67C2738174148D /* endpoint_cfstream.h */; }; + 63FDD9D6A5C808DE3375FEB9FC0F3048 /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = B305A820FD6DEB4963E54B7976215E30 /* load_balancer_api.h */; }; + 63FE816CB6AFB23B3494A4541B5B2F91 /* port_example.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A5930687BFDDBDDA1BE6C4331B552E /* port_example.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6401C9B10D9101B8E5D14E468304478F /* status.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28766E9E6A0C97CEAFCE446EA07B51BD /* status.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 64160F6DEA69D8D38A3E3E75EBD9F649 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D952853F9C9CD4AE7CA566C31E2298 /* construct_destruct.h */; }; + 6419DBE28C90A7506A2DEADCC5943E54 /* resolver_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7DF8F926243F2400E74D5F17A51ACDB /* 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"; }; }; + 641A53B4B552E8782E5B0A926822583A /* circuit_breaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 43BED2383F9D549DD2848B05E53240F5 /* circuit_breaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 641B522D628AD4DD54A266F0FEDB8FCF /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05DA15F57C9AA6BB5B02F71D09009840 /* semantic_version.upb.h */; }; + 641F946B81C0AE91BEA0EF694D5B8262 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D340931AD1ACBE50D367F7714D0085A /* service_config_parser.h */; }; + 6428A49E877317B11C2550D51D4E06DF /* time_precise.cc in Sources */ = {isa = PBXBuildFile; fileRef = A924953216E01026039BB228A3C81B36 /* 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"; }; }; + 642E2E8E42FFF537A3F5BC9149A04CDB /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = A448DBD94F59B1C64E5CCE504D3E2A19 /* binder_auto_utils.h */; }; + 642F9692B868C9DFF05A2C2B48A2BDA6 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5574AEF7F63E0D5632D47E8E659813C4 /* fault_injection_filter.h */; }; + 643BCBE6154D65D56DFCE90880A5EA3A /* leveldb-library-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A1131D1E00B9B1D5AF88FC6483E418 /* leveldb-library-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 644093BCFAB68CA85D7D1CC61FDA05AF /* proto_buffer_writer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 5098FDF29A1ECEBA473D667406424987 /* proto_buffer_writer.h */; }; + 645038F5BB9C763997730204B9ABE6EE /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = EB9E515CBD6869BC40A229BE5697607C /* resolver_registry.h */; }; + 645BC877C0D4776CF60EF2403027A25D /* jwt_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CEEDD5CC4ADCBF313B6404649CF45A5 /* 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"; }; }; + 64629EF452378DACD27FC3676F85230A /* tls_cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F4479E262F23D6CE285505052349B4A /* tls_cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6464A35782F0D6EE0633E1A521E24A1C /* uniform_real_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = BC93175DD24DC4CB4EA66B5EEC92AC8C /* uniform_real_distribution.h */; }; + 64656A619B8DCDE3AE03E88DB7DF8BF0 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B1BC53D15048019DBE5A986F160113 /* pid_controller.h */; }; + 646DB8E4D2E553B6156F8C2967943DA1 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = E3E7BE90EAEC4900541C84DA446337B9 /* rls.upb.h */; }; + 646E8AFFBF710D3B1B03E0863AE34200 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = F4D29F66AD6E89740C27AA0D4C0B576D /* avl.h */; }; + 6474E670F5B5A9E9682969DE399051C3 /* a_mbstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 23ECD5385258CBCDF2A438D9384B2EAB /* a_mbstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 64755EC4F404522786C48017AE7BC98B /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 36540E334219492265103DE5E0358D25 /* frame_goaway.h */; }; + 647F4CD29C3028B027F7E8EE48B07402 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 142446914E7013E7EC0C220E21F38F64 /* internal.h */; }; + 648342EEF1C9094F72985A525B61DA63 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = F7F01585B26A44F76414EBED6D38AD26 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6485CADC12552188A4192A42E085A509 /* idna.c in Sources */ = {isa = PBXBuildFile; fileRef = DB45FBA5AA94CFB9045E5BFBFCBC067F /* idna.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 6489AB5B1FE6CDE6A43C69F9EE2FB6AA /* sockaddr_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = E49C592CA2093EEE92EE163B8C749FF0 /* 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"; }; }; + 64978A708F2439E42D17363776C64166 /* bad_optional_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 7312C85CA4748F406EEDA4500DD8DB1F /* bad_optional_access.h */; }; + 64CC210A3C73F049BABEF8D261A80590 /* transport_security_common_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 25BDC04086F8F801DE64DAEA31138278 /* 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"; }; }; + 64D261941B0D423D6541D5B671608E1E /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CDFB935BDD6450B2CB53B5F610410FF5 /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 64D3AC1BD1266F009A74C2232645B5D8 /* proxy_mapper_registry.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 261304909E0B32F44FFE110FA8C58EE3 /* proxy_mapper_registry.h */; }; + 64E6538B7F5C11B0E7F16AEFBA2DEA0E /* table.c in Sources */ = {isa = PBXBuildFile; fileRef = 72E254EE716AF566C6DE2A6F4F54A9D2 /* table.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 650D67F045C415E988E6A666B09CEC7F /* p256_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = EFD655EBA8B38555F6427A5A6161EA05 /* p256_32.h */; }; + 6528F3599F0D49A4D50A9904615BEF25 /* call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F5A8F14066AA2F741A3439B16CA86352 /* call.h */; }; + 65301E3E9914AE20511EE6B704826B19 /* work_serializer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AAE501746679E6AE6FAF6E11EF8621AD /* work_serializer.h */; }; + 6538FAA8EE9012F171BAD3589FA62ABA /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B5F22DF64BA2F1A14D74813715DE2394 /* http_connection_manager.upbdefs.h */; }; + 6541A8BE5650E4E66CACB4539353A271 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3FEE1643F9FF05FA78359BD2B9A54A /* status_helper.h */; }; + 654430F2A7F6550503A970B63108AC79 /* memutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D4C904E7473EA059F0F2233C30BFAA3 /* memutil.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 6554ECD30852231E700FE1F01E45E7D8 /* bits.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 34081ECC138CFD39F6E0CE0FCFFD1EEF /* bits.h */; }; + 655682B16A3E687B3BC43876DD4C0715 /* ostringstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F000AB570CE4D5019AEC98EA860295B /* ostringstream.h */; }; + 6562F302237E2F38313327E83EAE87EC /* grpc_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BF4215CBD6B65F5339C83938B61508FE /* grpc_types.h */; }; + 6569BAD09D027FBB5AC9232F0DAF0798 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D5071F640EDDFF8422D793FF0A7A5162 /* status.upbdefs.h */; }; + 656A59C2E1DD52D2A6D6B75019F92484 /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 5F45A35347768D0326C16D8A0940ACF1 /* subchannel_pool_interface.h */; }; + 6577D54151FEC351D1188FABC3415FDF /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 553B5C2F520098A2D86DFFA10B08F3AB /* trace.h */; }; + 657821F6B9926841482886C3C38E609E /* byte_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 5973C9D8C59541173331872A11564099 /* byte_stream.h */; }; + 657DA39B6E389053DE3E1B451462EE1E /* by_file.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B20A5A8AB31DB4C604172BD4893F321 /* by_file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6584901BA9389486B11CFA478E392161 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8520AFFA2978E05AFA6EAED696FB4EB7 /* channel.h */; }; + 658652847026030A7EB293AE3E9FFE74 /* deprecation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 06EBC8B1D097C52B9BEB39D39CA483E7 /* 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"; }; }; + 6599E6E2348D6643BF339BFCBE858AF6 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 118F8264C836D074537B3930975AD221 /* orca_load_report.upb.h */; }; + 659B4E009AB4442C350934A86825D6EB /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 79BB073974C028E5718B59F0FB150F44 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 65A5795981763E1893D9693916377E68 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0440A58B534CCD5742E404FDC354C9C6 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 65B473E753F6B59BD7B52634AAD76913 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8BEF85FF714DCC87054B8A44FB701E8B /* hpack_encoder_table.h */; }; + 65BFF4F5C0C7B74DB8A0712EB91EAA9B /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30DBB5E0E9EF475E5CEF957A8593DB08 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 65CD2C238EFB6EF252814E2370AE20ED /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6FF8DF228868753742F43A64B9DBA840 /* outlier_detection.upb.h */; }; + 65E2FCEDBD88CFFE1AD147DA953583CD /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = B81F965BF413D73610690E9DF52126DF /* call_hook.h */; }; + 65F13E65AB876B49809519C672BDB0F4 /* FIRVerifyAssertionRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 22C571854FA0C75EF282D6FFAC1AC270 /* FIRVerifyAssertionRequest.m */; }; + 66081B20C83A27E2B71481C30E4BC2C0 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6313C40257275E95BD33D614D3445410 /* call_combiner.h */; }; + 6608B5BE9AB85AE636C156711FBD6873 /* endpoint.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D22F5F204AC6427322AC7B623C0EB91E /* 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"; }; }; + 660C64E9788399122527CC25076AE203 /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C33D77F50AE2C38F9A7FB90E19CB6998 /* host_port.h */; }; + 6611E603FFBF33D040A7C6EC367381C2 /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 24C1F69F35DD6E593DCB74A3AA13ABBD /* context.h */; }; + 66248898F73D968E7F17E912E444A356 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81D22140348EC32ECDDD7440A8085A6B /* version.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 662FE3CCC305A3A0B9508F2990DE9DC7 /* sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 126AF4997B7141D09E52313EE3366F74 /* sync.h */; }; + 66553CF06D20DB3198C09A008B745217 /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7ADBF7E208A13DB7F2D93C1F9576C4FF /* circuit_breaker.upb.h */; }; + 665FBC73D83202C05144AD8BFFD63D86 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = E620F75B4A9F300C31DAFF6E0BD181E2 /* atm.h */; }; + 66716533FE2C33673E204019EF7FB000 /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 3880011408AE9B2C6734988D40BB2F4D /* binder.h */; }; + 667B780B5D6D5E5596B1BD9B8AE98C86 /* timestamp.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2492C1BBFE9EC02D90B86DE11BB7E7EE /* timestamp.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6681562421B171CA381A137341BF7707 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 654BE00EBC62B53E6899D68C43500D5E /* FBLPromise+Do.m */; }; + 66B6FFAD995BEBD1150A5B005276E653 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 0366E26FD67CE451C4FEA7F53141CC29 /* threadpool.h */; }; + 66D46B0820561282F2FECD873D7D805D /* pollset_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74C3C535FE78EEC583E88F8D8A8B758D /* 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"; }; }; + 66E9A301210605FD78C7FE8D22FB89A5 /* promise.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1A1FF2DE0F03417B3F591DAB71618553 /* promise.h */; }; + 66EBB1E414FEF5AA93ED78F7949AB0FF /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C7F62D38A2775EE80B1748767B6986F7 /* channel_args.h */; }; + 66FBCA4409446C0DB2170CFDD8B48F68 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = A879AEC0F0A243E1D3A00C3C36F00405 /* work_serializer.h */; }; + 67088E71902884FDD18D81C8E5B369C6 /* explain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A13ED55F7FBAC08C8BA47A98C694F982 /* explain.upbdefs.h */; }; + 67092AA0659A8A42F1EC2C03A0AEF6CC /* span.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 884D4FE00A5B0E47964EDE7B436B1147 /* span.h */; }; + 670A0DB9E31356B32D85BED5BED23835 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 09FD99D95491898583FF1FE210975D1B /* rbac_service_config_parser.h */; }; + 670DDEEDB4304ECAD07A4AD7054951F9 /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 281E42975152E5BED409E8A175D94A2F /* spinlock.h */; }; + 671E73E2CB36C5462293344715AD73E2 /* ber.c in Sources */ = {isa = PBXBuildFile; fileRef = 5470F1C011BF310D391B463CBD8212B4 /* ber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 672EE2230ED8A2035FE9CD1C4C52649D /* create_channel_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = D65E6BBEF6E43985A0337AA16A01530A /* create_channel_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 673009D4D18B80C4D8711848621B8E01 /* regex.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 064BEC923177682D7555AF96F850F50E /* regex.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6734458916F51034B715337249C4D2ED /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 267C2810B9F8E1E4F4D99EB8713EA979 /* arena.h */; }; + 674BAABB30087E5E4D5CD33A9C752FF9 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = A2792D02215858692BDC811B398E9F98 /* huffsyms.h */; }; + 674CECAF0DECD6AD9BE41E4C97FC61F0 /* ssl_asn1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2360030921D5EDA7110D07DD65D9E106 /* ssl_asn1.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6754DC6FAC94D97710FAE16F049B8E78 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B50E314A574C569D8F89C169D2468C /* outlier_detection.upb.h */; }; + 6757FA6BFDD3B601FCB52DDF261DD765 /* xds_cluster_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E47076D997131059520FCAE8CB30167 /* xds_cluster_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6765B63359B5892DAF90474225683C72 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1797587926958D2B47137059BAD1A27B /* internal_errqueue.h */; }; + 67728A18D59154EFBC03D2C508913182 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FE621FA81410BAB146B7C4CC1CEC31C3 /* ev_epoll1_linux.h */; }; + 67777CA46D3EDE6F04B1B62B701261EC /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = B7FDD037DA14D1B6BE7756040A7DDE77 /* grpclb.h */; }; + 6784739D544E6CB043AB1FE7DA3404EA /* channel_create_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 589167D5C8BDA3FE3F85DE8886322F05 /* channel_create_impl.h */; }; + 6785C35E6ABDEADBCEBBE74ABA8DFD45 /* xds_cluster_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADCDFD7925373795ADFAD37C00E0839B /* 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"; }; }; + 67873AD528A04F5768BC70AFA36BC7D1 /* server_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6850876B61AB849DB2BACED33F6367 /* server_posix.h */; }; + 67874C5C6FBD052B7C9678306D057F14 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CEA9A540A7FB773DF80871998673162 /* fault.upbdefs.h */; }; + 67921E11A5611FF644251E0860893847 /* secure_credentials.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 75CDC588D64A4FAE82B586CCD3A06252 /* secure_credentials.h */; }; + 67A262CADD108EE658F078B05E0382CB /* version.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 617B5B0176953E43067CA810CA6F66EB /* version.h */; }; + 67B425FBAD842684CEBD1ECC93390DB4 /* statusor.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D1CD31CC645B8EECFA49C91CF6ADC7 /* statusor.h */; }; + 67CB63A88B9606F9A3DFC50E8CAD2A59 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = A875C914E0049F3F9B16804307836321 /* client_context.h */; }; + 67DAA4F7AF98108C3BEF9662B30DBAAF /* event_engine_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91A86155B3BF4759FEB5E659A3825CDA /* 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"; }; }; + 67E90CF871ADFF33228EA1FDC4D72A7E /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BD95B891564A766981E6C5C298DC0C45 /* api_listener.upbdefs.h */; }; + 67EFCA50F1187D801F26610961E27F46 /* stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 624EFFA91B9CAAE17A227C9A45FADF7C /* 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"; }; }; + 680B8236180F66D0EE5EAD3C03A57821 /* iomgr_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDF5B1016A26B103A4299BDC0CA940F3 /* iomgr_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 68102A329B0057D80AD8CD86A61645B2 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = A33C253FDF7FF6BB8B6296377CA1D78F /* server_config_selector_filter.h */; }; + 681C43F9189A26A9C5F011B13EFF9000 /* time.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9B56100E024F41DA6EDA583EEFEEDE52 /* time.h */; }; + 68232957360D00F82EC3049B285AE90B /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = C05EF9276F6E3DCF6EF14F5FB6ACF481 /* exec_ctx.h */; }; + 6854D8D51DC64D95A22CA4032576EB93 /* GDTCORFlatFileStorage+Promises.m in Sources */ = {isa = PBXBuildFile; fileRef = AE0EC63C9E5E9A6779367AE3926B6DB5 /* GDTCORFlatFileStorage+Promises.m */; }; + 685D62F76701C87FB45BDB8D2C9521E1 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F8F64D8949332C56A38E3F1FE2E302 /* collection_entry.upb.h */; }; + 686841A2B86B84C4B30AB9A99ADE1C60 /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FFF7D20085306646CE254E3C50304AF9 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 686D02C284800BE5616191C38BBE2053 /* fips.c in Sources */ = {isa = PBXBuildFile; fileRef = 35EA413283A213CE22D9D7571394350A /* fips.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 687327883033331C5FDBC137FC325C0E /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 20BA58D3CE652887DDD9596CAE8DA09F /* map.h */; }; + 6886525C490C009BD0F489D6E08EC588 /* tls13_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AEC41339BDDE5B947D0FF0114E5EE47 /* tls13_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 689043110124C7274438BD8DFCC06E74 /* alts_tsi_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = AACC353BA8BF0B096EF718E492724AFD /* 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"; }; }; + 68941F227249858C583F4800C4291E5C /* env_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4CB4E7D3F695A3BF053E1DCCF808172 /* env_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 68AF1D655F45B2BA3C07D9B07EAA4D47 /* curve25519.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BC77F18C7F68FEA5CA73A88F15CC7759 /* curve25519.h */; }; + 68B1668A3B5DEB7566E7DDF6D869E67D /* load_file.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E3C287327CB905A8CFD3B0BCBF671F71 /* load_file.h */; }; + 68C9505448AC3C1D5AE5E373159C5466 /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4492CB36E7CA1653A2EE6413BAD60735 /* config_source.upb.h */; }; + 68D4CBDA579BC41DA7AEBDBE36BAF9E7 /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = E8204D118101E3A3CAD932F59F0ECBA7 /* global_subchannel_pool.h */; }; + 68DA797782CEE6D3564785D1C7907D88 /* str_format.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 0CB6326033EA1B1A7C15ED9360D8311F /* str_format.h */; }; + 68E29A11D8BEB3E03EB7139F1F96FE28 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B1041ED09916BD4F1266BC9E45EFC2D /* 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"; }; }; + 68F0A3545972A5A6A2283517FEB3F5DA /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 8D71B53866827B85965320F23512A32B /* alts_frame_protector.h */; }; + 68F9F53580F2C8E06EB3026816E0AABB /* stack.c in Sources */ = {isa = PBXBuildFile; fileRef = 22CEAA74AB85080A95FEF380DBB86776 /* stack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 68FE7D01E48FC36103DDE7D10635DEBF /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD38E71CE8D3BEB5228C34708D1E683 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6900CF151B5656193759A4735E8DF81D /* security_policy_setting.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68AA84DE5BB2091547F58B75D88E55B6 /* security_policy_setting.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6913F5E5D5992B66F0D0CC964AA30FEC /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = EA552F08AA3CEB33A3D1B895A325400E /* format_request.h */; }; + 691EE4257E21A76B9FFD7510C1A4D681 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEF85FF714DCC87054B8A44FB701E8B /* hpack_encoder_table.h */; }; + 692752C142CDC0D3EA794E978A7C55D7 /* rsaz_exp.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = 18883C160D574315685EC1BB725FC8B3 /* rsaz_exp.h */; }; + 6927D1BD393BF9EBA2A927E49218C680 /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = A3676E36F7989A181A9168130C2239CE /* GDTCORTransport.m */; }; + 69307937F32CD640798AFA08EC25CC69 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AC4F977E188A75FD08909BD7BF440471 /* tcp_posix.h */; }; + 69395100B12F00A4A7E661EC14752654 /* internal.h in Copy ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 92C8590F86762CED5B8F806111C082D2 /* internal.h */; }; + 694AA1071FA892D1BF37FEF008728ADB /* tcp_client_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 873DD2840DADB3C645196BAE6B7BE204 /* 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"; }; }; + 695148D2A7494C027C31EC010F384E8C /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EB4F1F6009F93E10BC94802865508443 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695164CB44F9561742498E2963C3EB0F /* base.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FD2285038BC5A26D6C8AAF9717EF2160 /* base.h */; }; + 6953DEDE8F22FEB92A6023946A746055 /* set_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC1C86E9F7028D2EFBF4F0C1E9D2989B /* set_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 695D8329BFBBF4EE8F2F10B84E3CF7C6 /* transport_stream_receiver.h in Headers */ = {isa = PBXBuildFile; fileRef = FED5109C8E4512A06486763331BE451C /* transport_stream_receiver.h */; }; + 69684CBAFA4A6BF95147457AD04B3CC4 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 3F3FEE1643F9FF05FA78359BD2B9A54A /* status_helper.h */; }; + 69738FE20D6CA788FD2B26A2557DB4F7 /* x509spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 341E7094CD94588057C95DA2DFACCFC7 /* x509spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 697796B2D16A1B28426C06F5F09F1DD2 /* cpu-aarch64-fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = FF136338EECB99133BC03D4EF0F6F3BB /* cpu-aarch64-fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 697C04EA789210DD93ED59CC0229B140 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 815DFE58523F1EEDDE428FE336B5F6E6 /* spinlock.h */; }; + 697E73B9810CA3E267A3F05A452722F6 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 31682EF8984ED45FFB920CD03C8174D9 /* alts_tsi_handshaker.h */; }; + 6983905BE2976B7535DE7BFAABD62C50 /* tls13_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC40695F2F6396F032220D1451CCD029 /* tls13_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 698D709003E9EBA83DF8B19547AC48CE /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DC1B0A9E93749AEDD26BB9BE70E97B /* xds_credentials.h */; }; + 69A9131D9141358EC9BD86925333912B /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 54E50FB8E46928CD02C2BE37F132DC95 /* annotations.upb.h */; }; + 69B19F2A0CA29F8B2B8A2DEDF45B06B2 /* FIRGeoPoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D246984ED3F0E9D6B89DB09C774AF65 /* FIRGeoPoint.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 69CC92E30E4A39BA4DA17797F93C3FF1 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 3096D54860191AA7536F3095F77FECC8 /* FBLPromise+Then.m */; }; + 69D59DB7D8C710405C29951B0C1C40F1 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F8333DE034AF9EE1F874C8E984C9D9 /* GULSceneDelegateSwizzler.m */; }; + 69DB87B87B73ED48C2AB5AAD80558A00 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 58124EB98D750BA1CFFDC0655EB6B863 /* client_callback.h */; }; + 69E0F5C526CDCDE81BF50C1F216AD3AC /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D801DD5175E00D9FEE5AA45CA3A911B2 /* backend_metric.h */; }; + 69EF6E09F438AD54DBA68B14B1A46ED6 /* check_gcp_environment_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 18BDA5949C07AA38F5C2A6BF4BCE6E07 /* 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"; }; }; + 69FAEC67FCD2EE62CEBA16DEC14901B3 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF2ADAFDCEF68C96653D3C2F8C493ED /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A070718F99CA8F3632D9E7B7460C1EB /* log_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F00561C5C2C53ABCB5BA8F1A327A74A5 /* log_windows.h */; }; + 6A0974466B98764FB8A8AB39CF2A9EA4 /* stream_map.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75B21D0AE9E1E3C0B86F7270BC4D9388 /* stream_map.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6A0C91D95B86566DFBA213AA781BFC9E /* local_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7259CACA0FF6037B7DFF51D7F0472E51 /* 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"; }; }; + 6A11FE2FFF003FBD20E2F4349F7806C9 /* grpclb_channel.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 41950B925144F8DAC6DD365736BAB556 /* grpclb_channel.h */; }; + 6A1CED1DD36971C8997A0E249AFA2810 /* GoogleDataTransport-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1161FC299CA118C5AB65FFB4373F2634 /* GoogleDataTransport-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6A24F733162C4C3C903FF6A70E10BB56 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = F212891CDCE8903259890FB865565D7D /* address_filtering.h */; }; + 6A2C4A72E1CDB40BAE9248BADF96C5A9 /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = A73ACBDA5EABF651B090C16886794A7E /* chttp2_server.h */; }; + 6A2EB1DF6BEFE016E49B991B4DC40B75 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F70C991E3001830588C1EBEF6AAB5517 /* iomgr_internal.h */; }; + 6A3364F15E3F21A17ED502FBE002C226 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CC698B0FAB17DE34B480F086167D08 /* status.upb.h */; }; + 6A4D75776A9B42D0D54EF9C958986E12 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 682D2A63DBF9975DA26FB307A40E1E78 /* iomgr.h */; }; + 6A68AE8D14F7F6DA1A729356A0AEA376 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 39DC2C0141F8B43D27B7416DCBD80462 /* status.upb.h */; }; + 6A6E61DA91A3F150C6AEC3602861DD99 /* sysinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7938AC43874B40CB949F5056D02D7D /* sysinfo.h */; }; + 6A76BD79B6EC96A81B15373551170EFF /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBD1F61FEAA2BF69351754794A7BD10 /* tmpfile.h */; }; + 6A7CAC02BC87078E79A3DA520A6772FF /* create_thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 486560614B74360088B9630AA0C7DE0C /* create_thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 6A89A06C47BB6CBA8CCFF3ACEBBA9163 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E806B3541DB451F73D7DD5A39A3A5A /* alpn.h */; }; + 6A8BE7B745B77309DA0175C0C017481A /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = FEF102239F868716D826D65BC45454C7 /* connectivity_state.h */; }; + 6AA08BEF71E47C39FA32B9447C1065C7 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1CEA9A540A7FB773DF80871998673162 /* fault.upbdefs.h */; }; + 6ABFEA36940A93AB3814E6F7EFFC75C4 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 6D5841F8520AA8E5E142712400F2B607 /* channel_args_preconditioning.h */; }; + 6AC559A03FB3DEE9163C88D1ACBE5D32 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 6D17F65FCACB1CD6C18F5FE57B23A666 /* alpn.h */; }; + 6ACFBADD55BAAABC453E077598241938 /* v3_pcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E7A7E4A142B178700C07E6FEEABEF83 /* v3_pcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6AD44E1E5F1063B619A9FA4AE91F1291 /* tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = B96466820CBD62F2AF9E32BCEFB5E952 /* tls_credentials_options.h */; }; + 6AE28EF28E61B4E98ED7315F6F345F70 /* alts_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01E646F778B3EBA695C4BC81397D91F8 /* 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"; }; }; + 6AE8DECA8F1BCDBA49FF00FBA3350535 /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5582C68BEC05A1A50FEE4094B97F2FF2 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6AE9A34CDEE29F242D9FCA7076952E26 /* curve25519_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BAFA48F135314D429219A7B8D6BFA4E /* curve25519_64.h */; }; + 6AEC82A16D8FD875B19D6125C13938E4 /* casts.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 542066D4F8706E75029126E02424F41A /* casts.h */; }; + 6AF743A72157D65E7C37D0D6BF37C599 /* cordz_update_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4B3153670250D0144BC48A39993D20 /* cordz_update_tracker.h */; }; + 6AFDD1928E7BE1B6D92675817212E5F2 /* xds_channel_creds.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FE2CE0C1EF6DAE2575B2E99FDF544AFE /* xds_channel_creds.h */; }; + 6B01949208DAD69CA2975DC9B26B28E3 /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = 3459A147E55050F3E4F0CF09BFEB9730 /* dns_resolver_selection.h */; }; + 6B01C3C28D5FB2783B5F88C8021AFC8A /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = D99226CD44FB2E95D0DDD3F98256E425 /* versioning.upb.h */; }; + 6B0A501B7A063D34101853987A41C2E2 /* frame_rst_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BBF9892183FBA8FF8104247F600A549 /* 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"; }; }; + 6B222DBDEE3D14C5FA651F7A547CD189 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = FC7620558C27A701A19D7C63A06096DB /* GULAppDelegateSwizzler.m */; }; + 6B22EC573B3CE56654CC227BA899CEC4 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9AE8E76EE562C2855DB0BCEE275822FE /* resolver.upbdefs.h */; }; + 6B24146DF95B87007AFFD8AEA6689093 /* notification.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74253FD6CE1999E465BDC8B36B0F9DA1 /* notification.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 6B45475DED8D46DB4747849FD1A6CF98 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC357F159AB2D06254EB80D5F2FDE67 /* frame_settings.h */; }; + 6B48BABF052D32A6EC03C90A4936159C /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = E78F35C1E0FD3FCD285C059AE6D2B434 /* tcp_posix.h */; }; + 6B4ED398993D0C9BC05170500803F656 /* str_replace.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FDEF47BBD2D6AD4C5D2F59A916C4EB /* str_replace.h */; }; + 6B51C3D6079EEE9589E5789F81792CE4 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = FDD8B152FDF5329D4D956A45AE51D1F9 /* mix.h */; }; + 6B63E896AB7E531A83CDA47945C2A65B /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A935D1215A4F83C6391B6F1ADE279DC /* 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"; }; }; + 6B69A920F96C97D3B13A752B4408EE1A /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = A9DB8990B2A3BEFB85485420AAEB9F5D /* jwt_verifier.h */; }; + 6B6C0B9BDADB87122645AD768F18D596 /* grpc_alts_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A6BECB27E7E3C78D262FAFC88810168 /* 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"; }; }; + 6B70A7044C7C7AFC120DCE41803B8A32 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 6032C1E83060EDC635D637E9042FD938 /* cpp_impl_of.h */; }; + 6B70A79FDE913A24237A8D459ECF4A3E /* iostream_state_saver.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7D6A5AD140B93E51DF64F8CECD92518A /* iostream_state_saver.h */; }; + 6B78C0A2059190D0DE37E51B64765323 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B61C4C73C51F782696D9D7163F58A2FD /* FIRBundleUtil.m */; }; + 6B7B175A55CC7583CC29BC22BADA9D75 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 74BE481278D4B8C57FA590A10DD8504C /* number.upbdefs.h */; }; + 6B7F9EDE4D82168029DC22D8DBDF09B8 /* f_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 167FAD2AAFA32FA89D036C8304E17F90 /* f_string.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6B870998CA115DE2DFE298A7FD212551 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 0555D00DD1A75BEBEBD60DD89971510F /* GULMutableDictionary.m */; }; + 6B8905B76715260BBF9ED31D0B8E8852 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = B7687F639EA004D3E834587C5AC8762B /* server_context.h */; }; + 6BA49F11E9F3F868B24B9E1584C0B6E8 /* utf8.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0826AD4D55B465E7EF0F9D8A5702EB4A /* utf8.h */; }; + 6BA6F551ED0C842D223324D570E5C553 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0070729BCC641953AB26E53874B408 /* service_config.h */; }; + 6BAD139B206F1D5089C6323A3EF33411 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F540C0A381A4CD3FACA6BAAC0F1AD64 /* handshaker_registry.h */; }; + 6BC55263B1EC567D14B5E7FC10C3E885 /* thread.h in Headers */ = {isa = PBXBuildFile; fileRef = A66ED89A12669DB8A637369C9A298A40 /* thread.h */; }; + 6BCB469F3194BA81C8C1AA3D6393D9DD /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A85C07A03628EF4CC56719F0B3124E6 /* path.upb.h */; }; + 6BCF87421AECCF8AC431830F0D0B087C /* completion_queue_tag.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 349E8CDE793B2CE932F468BEBEFD1386 /* completion_queue_tag.h */; }; + 6BD3DD3067E3B3A0895A133152101919 /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0DBB98ED72932F3B131F2BC52EF61DDD /* error_utils.h */; }; + 6BDCAAE75E0C21BB6ECDC0B32AC44CBA /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7598C107A7457216F0FED97EB6A2CA3D /* sockaddr.h */; }; + 6BF3A7588BE64F2F45DFC4B1E9DE48BE /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FBA7E613E5290B814A53A8D7EA35FD00 /* sockaddr_windows.h */; }; + 6C0E38BA090A2210C8FDDCE8A45A4A3C /* endpoint_binder_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF86C8D5EF20E9198FFB39960024140 /* endpoint_binder_pool.h */; }; + 6C1C37FCE2F7815957893EF11524D8B8 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3CA4F43E44484A3AD75B6B060C3A394D /* certificate_provider_store.h */; }; + 6C20718A8F736443929FF2132B14CCAD /* endpoint_pair_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8CBABB5330A57379F1DCC9820C39FBD /* 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"; }; }; + 6C20B2DDF44AAC982BC7F624782422B7 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 6929B47C4F83DE0C499A27FAEB6BF188 /* wrappers.upbdefs.h */; }; + 6C51432A4AA7454F0F16F0550DCC9CA1 /* query_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2BA6E35B74B157113D4445CDF9CE204D /* query_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 6C610C6390A9BC14F29D708C228C067B /* str_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB6326033EA1B1A7C15ED9360D8311F /* str_format.h */; }; + 6C62DE38711E5B6C39354882774CA824 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D8EBCCF41C1F4E8704D2768F33C143B0 /* route.upb.h */; }; + 6C70A456E327799B4D3D745889D694C0 /* fips_shared_support.c in Sources */ = {isa = PBXBuildFile; fileRef = DD4267C5FC2438715DC7D20B89E53453 /* fips_shared_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6C74FBA7C37DACDBF7CECEA5E75D3753 /* serialization_traits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 3DB8473268ADEC083011731CF039518C /* serialization_traits.h */; }; + 6C75CC0D2FA2C2E5E26413D6DCEF9C8F /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = F5C5469BEE33BD141E988B82CD2AFE34 /* deprecation.upbdefs.h */; }; + 6C83E9441C2FA7C6B00E9172E9F6E164 /* tcp_client_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 06D183844F0FB96451404D1DE9B7ACBF /* 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"; }; }; + 6C875576153DC8C9E906496354512915 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EAEAACF765AD1901713D2AFFAB9E2A5 /* xds_channel_args.h */; }; + 6CA1D6456380F9CA56BB2BA8EF1834FB /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EC4B47CD00631DCC2B8CAC99816828F /* 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"; }; }; + 6CA68AB8A300C3ABAC8443C55BAAA758 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9A21638A705836FB8D1DE9E7E5807C15 /* timer_generic.h */; }; + 6CAEBF6ABAD047FD83C61446EB626E38 /* charconv.cc in Sources */ = {isa = PBXBuildFile; fileRef = E67D8E31B9026919881D55F2147FB223 /* charconv.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 6CC42835F5501EDCBC1CEBE89E243223 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7DEB1FE9DF15D5132C2DED30E63F02C6 /* hpack_encoder.h */; }; + 6CF13DB71DFFC0BFF272840CE472EC66 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = E6E7FA61B05670098B8D3C531EA0F120 /* alts_shared_resource.h */; }; + 6CF4ABC0DB4E5AFA5710F89A2030ADCC /* siphash.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4D6582FDDEEA3C33E6762AE59500D1 /* siphash.h */; }; + 6CF70816384B09809AF7189DCA220260 /* log_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2D2E339367E4EBDE2345D7D1288DF86 /* log_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6CFB77626DCCB39422942404FE3C05D0 /* atm_gcc_sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A93A25E96B6646D87F59740E5465C423 /* atm_gcc_sync.h */; }; + 6D41CCC2D6436629A27FA9C6CA7CEB93 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 82658ADBAF80503D4D468962746B5764 /* google_default_credentials.h */; }; + 6D49F5C0AC98933C24E8BF0E01A98419 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C9C3BAAB919AB554800D7FEDD1A7436A /* rbac.upb.h */; }; + 6D53C3C3173F8EB2B924F006C26ABBFC /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 867F70F338F6C0A8C26B84BB412CCB07 /* path_transformation.upb.h */; }; + 6D871A3B11B06618FF2B6B985CC90C07 /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9549DFFDF5DA5BC98DD3AA35F8DF9D55 /* IQUIScrollView+Additions.swift */; }; + 6D8B0D28BBD50E121534D7506A672BEC /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 984785F87CE833DC837D41FED974BC16 /* http2_settings.h */; }; + 6D989654F7E67EB1C78995B3CD370CA7 /* security_policy_setting.h in Headers */ = {isa = PBXBuildFile; fileRef = C4059BFE58999271A6B6CE71DF543AE2 /* security_policy_setting.h */; }; + 6D9C05516E4649E95170C9A9A8BED2E5 /* parsed_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9177F76B26D9D939CA5497501BA0789 /* 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"; }; }; + 6DA031208329F9DDF990338AD51710F9 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 543C9A412F08F2FF8E20DAC07090DD68 /* custom_tag.upbdefs.h */; }; + 6DBE944058A91D73CDB6A0791967E3A1 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A4903B887D28A4F360F77F8D02227E /* exec_ctx_wakeup_scheduler.h */; }; + 6DC5650B311796C23E3233342A5B0138 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = D4AC709391190685A171F7294535A4F6 /* ev_poll_posix.h */; }; + 6DC6E48C96271E93101CD9F9FE6A615B /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 913D768C528599FA45E6EE130726957D /* client_context.h */; }; + 6DCA38A1E08F85F58B3BD0243EA962D5 /* sync_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03B6F105945501615F43F468340BFC9B /* sync_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 6DCA792576E9DB5E47D17476D2979957 /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC194437E3F222A1DB87AC6D5192C38 /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6DD0E78860F30B0E4A071133E530531E /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4C17AA89E04AB38E6AF89E0ADDEC55CE /* hpack_parser_table.h */; }; + 6DD222461C467514AB299287D7DBFD2B /* unix_sockets_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65AC65EB59A885C16D9A87744E9F0DAA /* 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"; }; }; + 6DD8B78178BA13B382285492D404D647 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A21638A705836FB8D1DE9E7E5807C15 /* timer_generic.h */; }; + 6DF02F7BD857DD1D7EA57DE855DE6D2C /* civil_time_detail.h in Headers */ = {isa = PBXBuildFile; fileRef = D8579DE5DE27A25EAB2B7E9D5BD1B08C /* civil_time_detail.h */; }; + 6DF21D3D678878B50D6E09AF8561B48B /* route_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6CA46D20FBE09394CA4B481DFF46A890 /* 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"; }; }; + 6DFBB623EF9F01D1A026269F78C8FE10 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = D1793911BA5401D60911E96552F3D962 /* plugin_credentials.h */; }; + 6DFD123FD2CF512993B8EC06E1355164 /* async_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13D2BA15C922333B63ED542D87C78663 /* async_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 6E02A95313686950570DCEB8639BEACD /* slice.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 38A9B6F0A90CC5BA7B33CF2237F9C9BE /* slice.h */; }; + 6E293E9319036FC6B42AAD12C813F103 /* propagation_bits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FEC60A96BE17402D5E64335CAFE447E8 /* propagation_bits.h */; }; + 6E46189289F3D08D50BB8D01EA753210 /* cpu-aarch64-win.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AA1171AF0C7005C48921FCFA1BFD99A /* cpu-aarch64-win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6E483A5D7861D6B89560AE7213F28451 /* backoff.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B048076B96CD466AF68DF53C85E28524 /* 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"; }; }; + 6E4F97196C338BA9541C8AF61D06F359 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3025D0075E7FBEC29538D761FAAD4C /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E5173BA7B6D4425351C313F04E2C6F0 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = B10863E311D88E6BE55F77948390B0EF /* async_generic_service.h */; }; + 6E5C2FBFD4B14920D330D19FDBF5A82C /* loop-watcher.c in Sources */ = {isa = PBXBuildFile; fileRef = BC82608A1C2C06D7B4D713590A6C026D /* loop-watcher.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 6E61D256480FD58E5E678676250026A4 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F05900771B1B749660A7694EDA6EADE0 /* number.upb.h */; }; + 6E6F438C299FF0D91A47FB15E64451FB /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 20C6132682307EC691BC2DE03A3EEA26 /* chunked_vector.h */; }; + 6E795DB8EFC7319E218520E136DF4A8C /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 730DD5E67DDBA111BECCEB74FC7A0053 /* httpcli.h */; }; + 6E7A33D0BA53C7AA88BC19181448E598 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E6279DF857D0563EBC8192D586355CC /* completion_queue_factory.h */; }; + 6E7CB159DEE2DA9AE4ABC59621001552 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = D1772E72C57385D1D1736D1C2820D802 /* subchannel_interface.h */; }; + 6E87D6C214AE4E7E2EBE8DF75CBA334B /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = CC74B5B73E27947FBBE1A246F3E739A7 /* tls_security_connector.h */; }; + 6EA7E3BF095FF1ABC0FB4647A3CFF860 /* p256.c in Sources */ = {isa = PBXBuildFile; fileRef = 91F5EEEA4A3C866E873E742878E641D4 /* p256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6EBFCA5FC2513DDCCEFB902B019C4D69 /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 11AA13F1B294918C6B0559A6AEAA4072 /* GULHeartbeatDateStorageUserDefaults.m */; }; + 6EC2FA176A33CD93418BBD49C3D69A98 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E93FAE5E4169D84B65E57C366F3024 /* internal.h */; }; + 6ECEF1DDA92E56455E3F49D51D27B0C4 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6806DB7E8C48D470D09A998C4BDD0EAB /* upb.h */; }; + 6EDC88F1AC63300108C77D6F93CF7699 /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 92326C60643CC8CB6057D8DDF4984D70 /* grpclb_balancer_addresses.h */; }; + 6EE41414178706F9F29AA1B8ED24E9BF /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = D548C5C39A726A11AC762B31FD04D125 /* fake_resolver.h */; }; + 6EE68136BB06D77D4DB1F1891C9EBDE9 /* load_system_roots_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = CC3A8DA1395808F7C9399B31FCEFCEB7 /* load_system_roots_linux.h */; }; + 6EEECC2354F69B1CD8FFDBD6BEFBA58D /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = B42EDFE4CD5479CC36B78484866E7536 /* backoff.h */; }; + 6EF8F92A4C3A4677EE4EA9307E344DBC /* flow_control.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B407406A297E5821D45097AA84D7367 /* 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"; }; }; + 6F0D48DA47FD4E2FE57717521D945407 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD9C1AD00A434B0B894FA3052AD97CF /* ads.upbdefs.h */; }; + 6F1DAED52AE23308C205A7B853730300 /* ev_epollex_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = D65DB9AB0AE07A52F640B1A83F99C672 /* ev_epollex_linux.h */; }; + 6F20552FD8963975C178641297153C6F /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 996C87E6EF0570E37CAF8955C0145D42 /* error.h */; }; + 6F311283495756F62411C15224880678 /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B16F267C2B92E53B3285C9C5B242577 /* 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"; }; }; + 6F4A211E1D31384AFB08E75275AE6204 /* ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = D25274984D91971E9FC5B8DB131120E3 /* ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6F4ACF713352ECE2A9D5BFC25A5B3C49 /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = F01603FE248696D09F22ADADA6B61603 /* conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6F6599E2A62C99133345FC815049BB1D /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B507C7F5EFB7EF0FA40738639403AA2D /* 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"; }; }; + 6F69654D387ECA972461E0AD85860966 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C5469BEE33BD141E988B82CD2AFE34 /* deprecation.upbdefs.h */; }; + 6F95FB8EE3C9874DAE49F2E193E4F89C /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6D6498B238B0D884E33878D6430C73A9 /* common.upb.h */; }; + 6F96BF5B71A93C366124E1883ED568BB /* tasn_typ.c in Sources */ = {isa = PBXBuildFile; fileRef = 0AFAA027FDB8BA806843BB53461DD745 /* tasn_typ.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6F97ECE01EF70CDDB9118176584ED206 /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5090E2455BFA521DBFA58566083C0C53 /* endpoint_components.upb.h */; }; + 6F9A78D9BDC77C620FE4CF77F112E721 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 944859D49FF85ADB6CD028421F09B1C0 /* http_server_filter.h */; }; + 6FA8BCDE111D8BC5461339280AB5DA95 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 554C08C67E86F0CB79FCDB0E27DF2AF0 /* security_context.h */; }; + 6FACE664E535E0C47B94EF77AADEFA8B /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5DABC98FADEABBE529D68A32577D17 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FB585E0740A78A7DEF82C64538E77F0 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4E9400C20E1C6BBF2559F178EE0606 /* lrs.upbdefs.h */; }; + 6FB620705113FCC03AD280FAE3AA93B1 /* binder_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55ECE9F4148DA56473E0E39E5430FF5F /* binder_connector.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6FC4B23EDA24B9A15D1669B4EA602B0F /* rbac_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D29CA65A649FCAF3015C9CED5C78F31 /* 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"; }; }; + 6FD0FBCB19784B197402EFBB68452E90 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = D51C04090763715CC9904FD3DEFD0E00 /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6FD777D9381E31A5C7368BC7E56705D0 /* err.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD62D131946951438D1455CD3D9DBBB /* err.h */; }; + 6FDD6CEDA7C36F2A922F58B581FB0241 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 354C62BDA8DCC7D3DA0FFA69418D57D1 /* table.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6FE1593983D455AB369EB1FB37028ABC /* file_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB0254C4F88F8607F19C0AA4086B9A44 /* 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"; }; }; + 6FF08E54BB6B8F9AF2744D67F8CEF77A /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3D4DCE849C7AC8497FC8AABED6DB0ABD /* stacktrace_riscv-inl.inc */; }; + 702D155F8C2ACF670AF9924DD92DCC87 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 56A130193EDE174AD63252F7BDD616DE /* rbac_service_config_parser.h */; }; + 70355507231BD168F2384D46E1404AD2 /* time_zone_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC2A4F4BFC8B81D8918378B0277FBA5 /* time_zone_impl.h */; }; + 703F1E5340E6DB57C482F1BA9E0C7AFF /* key_field_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86A2188D375906AE14C361A87EE5E14B /* key_field_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7042D61C627935044FED177377272D9E /* custom_tag.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B1D381FC620812B7160FB2B6F5315FA /* 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"; }; }; + 7043AFE4626B2F2C58FBD201E41C9928 /* sync_posix.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = A069DA99CCAD2DB2EAE50BDAF70CE923 /* sync_posix.h */; }; + 7054C194BCDFD8B6E987EB726A0F8387 /* grpc_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B6E8D89B905945F0E30D280DF92A845 /* 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"; }; }; + 705970CBB433DB88A6C548836B6052B8 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 852D87FA829225C0C14DC3310E22967B /* grpc_alts_credentials_options.h */; }; + 705A3C619465C6402FD947DFEDD53238 /* FIRMultiFactorResolver+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F35231F53F623CC193F69DAE6DF85620 /* FIRMultiFactorResolver+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70638A25547FBF8AA8A1C656D2A6EF19 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8949D831C4D2F73FFE546A0CA73752 /* rpc_method.h */; }; + 706674995B9BFB2DB6C9D9728767640C /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = 10ED6BA4F1EA9C7ADEC40AF5BC4ED233 /* plugin_credentials.h */; }; + 70749FC1B99F78EA4E8E2D6BA9DD14B2 /* conf.h in Headers */ = {isa = PBXBuildFile; fileRef = 5081C1D638D299A55ACF28D54851D1B7 /* conf.h */; }; + 7077BC524D619BDF834EC30C8119ADD6 /* cds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 072D1AB381FBB39A6A8037063331AD10 /* cds.upbdefs.h */; }; + 707CA9A87E8850A0E18AF81CCB9F3417 /* darwin.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 190029DD0627717EE904F54D51DA4EED /* darwin.h */; }; + 709FEB004AF069B69B5F8455D2E32ED8 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB7D5EA53E1CDB39161C3BD73DA709F /* xds_channel_args.h */; }; + 70A800F6DBCCAA10536A88E0FCE2C08E /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B0E2FD160673F9272707AD7732C648 /* local_security_connector.h */; }; + 70B5B4A2E008CF4D8550667BE3427BEA /* delete_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 776098914FB49579EDE3FAE024BF50B1 /* delete_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 70BCF172CB01CD756E3867DC4CE0ADB1 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7EACACD390B4C75B4D8D99A0F0A07C3 /* metadata.upbdefs.h */; }; + 70BF19C90B3F8B9970A1430D89C8E851 /* fork_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96C81F829B25916B65028F29DBAA2B0B /* 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"; }; }; + 70EC54B5D48353435AC45E5E01D7A516 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D7B9B5ED968B63DD8BC408D31698D781 /* ev_epoll1_linux.h */; }; + 710616B9EE47F9D7A5A702A1022AC5BA /* channel_filter.h in Copy src/cpp/common Private Headers */ = {isa = PBXBuildFile; fileRef = 5237DD4AC24D76012695C8AA066EEF29 /* channel_filter.h */; }; + 710B691895931AAEB14F65E539AB88CC /* regexp.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCB246DE62A0AD426BBECB0F93E033C4 /* regexp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 710F9D09B3C362AEF814262D58BF5BCB /* dbformat.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C3EE15FB94E15FA92722FB867B7D4F /* dbformat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7125795607CBAC0C4092F76AB2D754A2 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 89921609E3270099F8F7701E6D44469D /* struct.upbdefs.h */; }; + 7126EC5070755AAC0DDBEFDDF9313A5F /* string_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 53E8352E869D06DFCDE803C7A17C457B /* string_windows.h */; }; + 712D89B60741C8A6730A0C98D1FBD02A /* t_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = AAED5F6D94B67BAACAA77FBC4BE596DF /* t_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 71427D7191BA6CD34BA16FE059332467 /* FIRAuthBackend+MultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = A2C3EFE5CB5842DE580323D9957317A6 /* FIRAuthBackend+MultiFactor.m */; }; + 7142C4C0E23E9ABA96F43EDF2E2419FA /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 2C551BEC5E9F578374192C51A0CA631E /* json_token.h */; }; + 7143DB18BB62B2EF5FD8E4F053EA9F93 /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D0075F1C1A51AE17810C6204DBD98C /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 714461E8BFCE4A1F15844F9A4E2180B1 /* GDTCORMetricsMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = DAD08FCBE57A577EE1BE4C092EE2379C /* GDTCORMetricsMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71461629A211090DBFBFC34D2669D8C1 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = F4F59497B3D80F88FA6C3C5EFFB0C23E /* sync.h */; }; + 7155B87F7BD2A3EEF6BE4D693539785F /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = F95F318B1943265385245D49E4B752C6 /* buffer.h */; }; + 71613CDEDECE7A6A57FAFCF3F4EFE091 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D04DD6B5D7323AF5DDA85D042C1AB074 /* config_dump.upbdefs.h */; }; + 71642EEB97DDCAFF597E6BDB0EAB9559 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C7BC7BDD98899718ACA0F772DB0DD0 /* FBLPromise+Race.m */; }; + 716A048EB18D152DFEFD7CC041ACDD29 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C015BE10B5B8840C593D3E9F3924B4 /* race.h */; }; + 716D8D3DBA5FEE9BC39D8DDF1C45CD6E /* env.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = ABA7A6CC74669E4A400517189A0410AD /* env.h */; }; + 716F454EFBB618FC212C714962713F5A /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = E83F465080EA10F0FF17E25E29D16051 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71713C5A556791273FB667E26ACE2CA5 /* front_binder.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EBBCEE53953D27CE077646266D0A8E0C /* front_binder.h */; }; + 717243E3FE14F972DEBC57479867DC6A /* Libuv-gRPC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EC25A45D58DB99FCFD9AB5CCE7C1BC72 /* Libuv-gRPC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 717769B19B46B497BDF6F8D85A790931 /* channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5237DD4AC24D76012695C8AA066EEF29 /* channel_filter.h */; }; + 7196C933A8DDA1933ECD100508184B1A /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 65EA23A824F58CC0F46B0FF39A270012 /* health_check_client.h */; }; + 71AFDB6A8007CC80D2A423FF8FDDB0A5 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A9727725BB8C06E94DB8881EABC9B36B /* FIRFinalizeMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71BF2C0A42B67094872452070F601193 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECB47805342E7A90CB31798A18F1E70A /* rbac.upb.h */; }; + 71C5797863785D8C1E9E0D4D2CB0DD23 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FAAE619298BB3E52C17A0D7E402016A /* internal.h */; }; + 71D6B5CAD5AAD8EAC790740D57738BBB /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 553B5C2F520098A2D86DFFA10B08F3AB /* trace.h */; }; + 71E2206E0152CB5D42FFC34C0EC358AE /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 5D563A37FCB837032CC6816203AFB2AE /* authorization_policy_provider.h */; }; + 71F34B517B598D3501061EB3292D794C /* resolve_address_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D4784C5A2C1F40FD630BF3CBC1B8120 /* 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"; }; }; + 71F530F8C0FD477A419E8D03DA9E52E2 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9B3F493B4EDDCD98FCA40CAAB479FB /* range.upbdefs.h */; }; + 71FE12C75A9EAA6F0AE6C98D607E4B02 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 3FAC7979171866E44ED6649805355B9E /* ssl_credentials.h */; }; + 7215C9A66CC7D3BAB0332FA5E3CE55F4 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A28A31A9FFA7ED3682395CB06658486 /* sockaddr.h */; }; + 721D2D11041C3AC2394BC6238A0364E6 /* thread_annotations.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CE768BF67CC6E9A977A5B2EB912DB27A /* thread_annotations.h */; }; + 72299B8DB24371E177BEF75340DF6D0E /* substitute.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E7FA2488E4397291796EA25EF256F4 /* substitute.h */; }; + 72591CDD02C99FD0A8984F7B416DDD78 /* grpc_ares_ev_driver_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6803D19F3E096F6F2F6026178306E1B /* 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"; }; }; + 7289CFD000ED9158CB075908CF4A0C93 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8FC3DAFBE674B0BA0E270CD10C9E5B /* common.upb.h */; }; + 729CE2A1EB67566C9E07D6B97750AAEF /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8896A5F9E14C7E43C5FDE0EE69112D81 /* config_dump.upbdefs.h */; }; + 72ADF246CC96D3217EDD0D99EE92BA69 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9FF5D7AA695FA56292F502C3023132E6 /* typed_struct.upbdefs.h */; }; + 72C12DC7E05E045C96A534091E80A7EB /* nfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9460C8034F3846AE3B96C4AE7CA45AA2 /* nfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 72C20A055F7620FD0CD40B424DC6B837 /* alts_tsi_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 886ADFF92E86D9070F5632C8A8E55526 /* 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"; }; }; + 72E6D4DBB84F404C7B06F89FFE0B0096 /* GDTCOREndpoints.m in Sources */ = {isa = PBXBuildFile; fileRef = 330797191A14DC64D0939FDE3ED486AA /* GDTCOREndpoints.m */; }; + 72F2698F449B3EC525C9BBD71A9B0D23 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D269AB0FB453D78BCDB9D50D0A0F23 /* traits.h */; }; + 72F35B80CC0C36BBAE6B1BE08D8A7B3F /* a_time.c in Sources */ = {isa = PBXBuildFile; fileRef = C7D6B96A4CFD035467EC2D215EE5EDFB /* a_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7303F4981B44F9B5C60FB7A4509D7E56 /* client_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 913D768C528599FA45E6EE130726957D /* client_context.h */; }; + 73070B532F97501D91341ED05F125BF1 /* spinlock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CD51F7D1973BD247CAD44E6EF7A47DF4 /* spinlock.h */; }; + 73096DAED82436BC58AAFB5AECF0B711 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D55EAE70CC0A017B4FA25867C21720 /* address.upb.h */; }; + 730B00438E54DA93C0A401CE32A8E7E3 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E79C56C6C365923E6C2C10CE463BE8B4 /* udp_socket_config.upbdefs.h */; }; + 730D0A0EAC73A182E63DA298F11A689E /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = FA2744F25B64103423574268D739E8BF /* channel_trace.h */; }; + 730E050A35900F01EDF035F1867F3C4A /* a_bool.c in Sources */ = {isa = PBXBuildFile; fileRef = D6CCDCF74C7DF5B855C7B3FDF4FC8226 /* a_bool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 731778A354E55BA56C165DE782ED814A /* dh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B6B21D042FD206E82E3A4CB98773C02D /* dh.h */; }; + 73232FC9F36A4CF9C67832866757EFAF /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = F592EFAB282167BEA02F2D825BEB5072 /* channel_stack_builder.h */; }; + 73241C99CA8EF311E501C0757818A681 /* pcy_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A238F9B7149289DAE6487F74B99A89C /* pcy_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 73277A20691A587277E892876C5BB14B /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B8747CF4B6991912C14A471762EDA1 /* dual_ref_counted.h */; }; + 7336B1868D47E17E1B627260B1DA5CB0 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E7BB2D194EFAD897D8F13523729764F3 /* endpoint_pair.h */; }; + 7359709FF3EC9CC9AD182CCC04CB7D7F /* upb.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 6806DB7E8C48D470D09A998C4BDD0EAB /* upb.h */; }; + 736F4367EE920240A64A5159BA38F412 /* mix.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = FDD8B152FDF5329D4D956A45AE51D1F9 /* mix.h */; }; + 737E57752664699B89527E9DA2520902 /* dtls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 54657854D74D490959C971D4D1FDF82B /* dtls1.h */; }; + 7386B88849DE2FC0B7C7E93CD7979417 /* load_report.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E1A75791B2C78571C490B64C3EE72B19 /* 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"; }; }; + 739AEBC822C1FF96ACCB9796B0849B10 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6499B3A0501BFA989CEAC7A7C2811AD8 /* subchannel_pool_interface.h */; }; + 73ABE2B653C1DAE651CAC15C3FF3A7D4 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B393CD861E3F68EA587AE99C2F8D512 /* sync_custom.h */; }; + 73C2ADDA907FDA6EB36C1612147B506D /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 158ADFD30912CFECEB65E075D3CC1331 /* spinlock.h */; }; + 73C4B3E0DF4707BB2B7628FC541C7CBA /* scoped_route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 15EC71C45589ABE710DA61A71E7F579E /* 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"; }; }; + 73C893F726AEAB2E970E84674DCBD09B /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 3F3445E98AE21D6D0A7D19BDB808307E /* orphanable.h */; }; + 73D93A5DCC151F3BC43BF55959CB1976 /* tls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2DA242A5B85E864E8DBD2A41CEE95218 /* tls1.h */; }; + 73DD76857A617311C8CAFE7DEDC57E6B /* uv.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B438E00EE2302FFAB47FF1C055E1333D /* uv.h */; }; + 73F4EFAD79C1FBAA3E9FD1CD5327D8AF /* a_verify.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CB7889117B92468097ED8BC9EC1CAED /* a_verify.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 73F73ACA0FDDD48C0A07C32C20645DCA /* client_authority_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEE386601BAB8C15BCF9C45961455790 /* 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"; }; }; + 73FE9465B5499144E0418CF470289391 /* FSTUserDataWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 015A3B24AB9D56778141F2038E656E9B /* FSTUserDataWriter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 7407A31C7C4BD38897BC8381E4DB0E94 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D64A09F049F99289F7A8803ADD48DE7D /* checked.upb.h */; }; + 740B6E085A6B1E363810013F0148B597 /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 609D8229DC5796383B372B11BA4CE4F3 /* descriptor.upb.h */; }; + 741522A976A60F7AE9FEC6AFD708C9CF /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DD17FA98885FEAB42F23FD4C634423 /* orphanable.h */; }; + 74209F7B25C51EEC2CF3CCD359F5B6A8 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = A60723C690B73630F2C3E7CEBB14E1B7 /* poll.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 742502D88D942F691FD22DE3118EA8E4 /* bytestring.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FBE1195BD5E812EC99D8FEEED599403C /* bytestring.h */; }; + 742BB36A9E371CCDFDF00A23AA6AB005 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D8FB42255FF02ABF43AA485C778403B /* authorization_engine.h */; }; + 742F975F8CF48626B8BD7752B7CB178D /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A6FA5B34BBAB9666CAB504AD23D5C483 /* polling_entity.h */; }; + 744CAF0E4CBB6EA82B89D91D2DE3F046 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 88354CCFDB011C967418B8C61B951D83 /* status.h */; }; + 745504728A01F96143B5BF46424C60CA /* hash_function_defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5AE17BEB37C1111D254C564898BD87 /* hash_function_defaults.h */; }; + 74738659A429D2D0A8DC4FBF1EAC599F /* create_channel_binder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B2379B2C6D2F0F2F6314B58CE7353DE0 /* create_channel_binder.h */; }; + 7473A380BA9A6B9F4D3ABF10F52666CC /* FIRAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EA2ED234CDB93EC3F697F04AB814C9B /* FIRAuthCredential.m */; }; + 7483C90B1EDA0D697C6C9FFE7F097111 /* a_gentm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFC59C1A891AF645FBA3160A1790A709 /* a_gentm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 748972C048878484E70F039C52A1EC32 /* cord_rep_consume.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9AB804895B5DF75977FAA6CA854BB594 /* cord_rep_consume.h */; }; + 748DCFD7F110C7EB13D7F2A192B8A18E /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = A93A25E96B6646D87F59740E5465C423 /* atm_gcc_sync.h */; }; + 748FBBB9274C5195138B41A8D6FE6864 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4F977E188A75FD08909BD7BF440471 /* tcp_posix.h */; }; + 749356DAF78E68EF8CEF1A8BD2A50C9E /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = D4CAD48245FACAAD497AB8E8B7F41390 /* thread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 749C2AF9379151E4DF26F9B671BACA47 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1178BD3B13A0B523583E2A649DE2234A /* internal.h */; }; + 74ADCB723E0C79992DCBDAD33DF31F42 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F96B73C87B74A710538088CC3CC42C8 /* xds_bootstrap.h */; }; + 74AF69099E60CB7E725BA8EAA28455F5 /* engine.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A93CE75F45729286AEE8124F6D145706 /* engine.h */; }; + 74B6FCA1C08A733B38CB365F87E35845 /* low_level_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43497B990E7CEC0EF97315AA1FEE0B11 /* low_level_hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 74C2F9479A876F9B58CB50AB838634D2 /* log_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 9507861C2A1FE93F3DAAE3C299CA5B7A /* log_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74C76EE0FD67F6DD5FB0A0781C846484 /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 24437CC2BC4649F4243DFCC14E1DAE09 /* alts_crypter.h */; }; + 74E4B99746BF9252918100562F21BD90 /* FIRGetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D20CB329316D9E0BD50AB1E7BFCF54 /* FIRGetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74F9B1844DB9E49DC0C990EEC9185197 /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 9D60C152F48B68B781AF5C39486BE073 /* time.h */; }; + 74FB2C5FA64092E4DE340B6C1CE1C0B0 /* blowfish.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 86C812EA546B4C6707174E4706BE1103 /* blowfish.h */; }; + 75032E726F11A2836A04CC5C269FAD85 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E8FFFB7075DEEC8E07BC77DE129C678 /* hpack_parser.h */; }; + 75042CDE5F25493671136B6AA37E7CA4 /* ssl_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D96795D68F536E24CA907C374079640 /* ssl_file.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7505A037DEF94844EB2A9BF42A077F3D /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F1100AF8018C34A8A962DBF2D89521 /* call_op_set.h */; }; + 75270434D4C8EEAFD524F607556A73B4 /* cpu-ppc64le.c in Sources */ = {isa = PBXBuildFile; fileRef = 35649C1A1F8DA4A9B385662A06861C50 /* cpu-ppc64le.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 753F639EE3ECFE630F5DCFE6FAF71197 /* rls.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B219835816FFC270FBFCE7193EFB76F /* rls.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 754979EBFCCB0F0084325E7E5F68F240 /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD51DBD3E53972319EDAB4144F5A2328 /* bootstrap.upb.h */; }; + 755429142CB4C935C9CDA16F3A335D33 /* event_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = E54B36C19CDBFB75EF135116B937D511 /* event_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 755FF189F8AFBF6AACF224336703110C /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = 5E24EAD78E3E26042B4725AB2D11B336 /* local_security_connector.h */; }; + 75636D15654256CAAFA2401E840D297B /* context_params.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4647CFC9238F8CBCD4E621328943A4CC /* 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"; }; }; + 756781C8FF68C23FC7FCB878F300FA0B /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 39FF8A679572874826445F00962112C8 /* api_listener.upb.h */; }; + 7568779F0895922BBEB0B95276382DFA /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A189D82FC573270C4A6BDB40765BAC /* block_annotate.h */; }; + 7578B33198BB436100B5DF010E485DAD /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = E8204D118101E3A3CAD932F59F0ECBA7 /* global_subchannel_pool.h */; }; + 75950E227BE31919C29A98F73C25D425 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B232530AE2AA3C7C25150F093749C9DB /* resolver.upb.h */; }; + 759BE66359C0A103BFB00F97CB9CBBAA /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D2DBA07DF8C74BB78C556334B35CB3BF /* local_subchannel_pool.h */; }; + 75A478D0D58762217FB37FD57859B543 /* compression.h in Headers */ = {isa = PBXBuildFile; fileRef = AF0192C801E381D3AACAF8E7028B72BB /* compression.h */; }; + 75BC8B5EFCF7A60CB0EBE0A071A68E5D /* external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF9E94A5AD9CF54AC256710DEE8AD108 /* 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"; }; }; + 75BEF2CECFB952D1659B82A5685849AA /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6BC080E1C49276809A3A3A20803233 /* descriptor.upbdefs.h */; }; + 75CBFC3B6A99D01D27229D99EBE2C84F /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */ = {isa = PBXBuildFile; fileRef = 65EA23A824F58CC0F46B0FF39A270012 /* health_check_client.h */; }; + 75DC870DEFEA79CC413C860D5D726060 /* a_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FEF434046F2DD0A82AE0F5A4236C874 /* a_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 75E0C9BF6E1D1EE7E7F2D02DF3988B19 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9C5FB6FFB7FF6BDDE102E2FFBFFBCF9E /* xds_endpoint.h */; }; + 75E77EE17678AF9C99744D8E0F9A5FD6 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D17F65FCACB1CD6C18F5FE57B23A666 /* alpn.h */; }; + 75FC6F45135B959471A58AFF4D971039 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECCAB5AC4FDBE75FE57A7ED462ACF7C7 /* quic_config.upbdefs.h */; }; + 75FE84EE49C5EDE3B3E80606EBDBF563 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B0069BE8FD1A797CEC575F2029A9C2 /* FIRFinalizeMFAEnrollmentRequest.m */; }; + 760589A4D91CADD2CB2949C617EF0117 /* FIRSetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 852CFE5705D2AF1D33ABB27047842573 /* FIRSetAccountInfoRequest.m */; }; + 7625B552A1EF514E6E9B769F1642D19D /* memory_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6329E39BE3DD49D5DAFDBF8F5AA6D88 /* memory_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7626F664FFA62394C14D579AD38E9F0F /* v3_ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 54BBADBA5F05DE80A63FA32B8E13088F /* v3_ocsp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 762A342C61666909ED7123C9BA1BF43E /* md4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 58EC6F3EAF65D154020A0AE6DB325B19 /* md4.h */; }; + 763AC2F09B2BDEFA2F51CF17A19C128D /* simple_mul.c in Sources */ = {isa = PBXBuildFile; fileRef = ABF274D63A01224C63B4C662A5B7CD77 /* simple_mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 763B932A70DEAD120C6EFA1FA0527BE4 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = F08BA25679EF1CD8BE2EE7C4FB7A25B8 /* fake_credentials.h */; }; + 764A771916E8863DC18D4AFE58614188 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 002E293BDF3750B77F88893D7AF16764 /* transport_security_grpc.h */; }; + 764D7D4C44007C45563A0AB0B361CF05 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = A59111147D0FD772C57D9441FDF499CB /* tls_credentials.h */; }; + 765AAE3F283AFCF29673E3891858D32A /* randen_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4A96E752A1513781C5EF55AC17F5EB /* randen_slow.h */; }; + 76644A94F83D4A456C5D546E31C3FBF3 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EC25DA102025232AF50B43127E9E078C /* listener_components.upbdefs.h */; }; + 7668795BF77EBD876FD602055E950B04 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = D2AD7FAC3C13F626E1056C668709C2CB /* idle_filter_state.h */; }; + 7669DA8AA7A007A5C79C83C07C887D57 /* coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C1DF1EA5F39F27D4422E5EE532A857 /* coding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 766C528CDBC18CA7F7780E38489E6B9D /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 679465A778C0BF0F03AF076A922B9D41 /* tls.h */; }; + 7680213F142AD03924CED417FB5565FB /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = E2C9422F8379A5977C8650C49921D87C /* deprecation.upb.h */; }; + 7683B862C2A3A07CE363526D07ACD08C /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0FCFDE5A85A9FF604CD0A31D8DB65F /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76935C77E85D292761391F78D3806A0F /* mutexlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 58626C8BFD8833B7F7E8999F42ECB758 /* mutexlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 769828A3AD1127BBE74CEA465F36F0F3 /* pkcs8.h in Headers */ = {isa = PBXBuildFile; fileRef = C34A8D32D40B10D34349B36313AB1494 /* pkcs8.h */; }; + 769C8D49A4FD4278D68BF6690D361D8A /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF31A195CC312CC81B044ABB91D26AF8 /* IQKeyboardManagerConstantsInternal.swift */; }; + 76A2B239E06289A96291C0E5E2FF8D30 /* cordz_update_tracker.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4C4B3153670250D0144BC48A39993D20 /* cordz_update_tracker.h */; }; + 76AC3CF63F23CFAA15FE7AC8EC9982ED /* ecdsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 04DCC796577EDC8863BA594DAE877F68 /* ecdsa.h */; }; + 76B4A6F2884F4910397895FB20C2E882 /* FIRGetOOBConfirmationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A51DE2FA7B6C73B8FF536301C2F9B34 /* FIRGetOOBConfirmationCodeResponse.m */; }; + 76E3A7EB7A92525623A360E3C3BE0506 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 852D87FA829225C0C14DC3310E22967B /* grpc_alts_credentials_options.h */; }; + 76E8A1E64C6353FF6396CA601D8431A2 /* bsd-ifaddrs.c in Sources */ = {isa = PBXBuildFile; fileRef = 67F54BA416CE20B11D28EFDCE6FE3157 /* bsd-ifaddrs.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 76EFE1FC6BFFA7220AE3E8A18E1D6B09 /* socket_helper.c in Sources */ = {isa = PBXBuildFile; fileRef = E7CB4DEBBB0FB03A88662AB9DF45AA3A /* socket_helper.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 76FBC576527A85CFAF0239585A1F7388 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = A5264B7609CEEB42C70F945195835EA1 /* xds_api.h */; }; + 76FEA5AB8D272C1C4BFCEC0458B4FB24 /* cpu-intel.c in Sources */ = {isa = PBXBuildFile; fileRef = 599CB6E334D556423455A3483FB57D8E /* cpu-intel.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 77030C307B6BC5F146B6B6DE0473A6F0 /* stl_type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 647DEA0A9A5C67111B68A36821C589FA /* stl_type_traits.h */; }; + 77119E9501732BEB0261CB6D803BC720 /* randen.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C60803E23C62ABCA5CB9FC8246AF59F /* randen.h */; }; + 77148AB28219B65A7DECC4A6D69C6873 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D040B7ABA0E45E9AD9CD4F74BD26A1 /* path.upbdefs.h */; }; + 7735437DE6D0088E4505419FA8434FBA /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5530801C6B53BE3CEC32D4D763EB7306 /* range.upb.h */; }; + 77390A729BF7DAF513654376E0B9FFD0 /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 9EE8FC11D8F7B67D27375238D0FB6A6C /* sync.h */; }; + 773B0A7AEC8E6D7C859B26166E3CBECE /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 007F15A5EC4CC06FF5C5B8A8C989F5E8 /* context_list.h */; }; + 773C13B79FD9F0664C10EE34BA4676D5 /* FIRDocumentSnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 364D47C7DF4304D7F081B97607B983C2 /* FIRDocumentSnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 77417DD8F55B21725621D705114209C2 /* lb_policy_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3E5C9ADB25F767269DDF5EF2AF1E60A7 /* lb_policy_factory.h */; }; + 774B852C127D04E32C43AD7960D6DB63 /* certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5EEBE74FF56720CB8ADEFB48C6437519 /* certificate_provider_factory.h */; }; + 77671219063527D8B538DEB62A39AB56 /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 51CA796C398964CC455D2F3EC4BA518A /* status.h */; }; + 778ED26A2600577E18C9A7D37989B93D /* create_channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4094F04C795DF5C4C1EB3A044EB567A7 /* create_channel.h */; }; + 77914A2ACFD1B1BAD0B94D3A566641A3 /* create_thread_identity.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = ECA0CC930780CED4170A870FF485F6BE /* create_thread_identity.h */; }; + 7792677A3C686228D86A42E707C5E6B9 /* sdk_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8601D64811212FA8C779850E369241CE /* sdk_server_authz_filter.h */; }; + 77A32566BCCA8D6ED9B2DF2945E06F14 /* aws_request_signer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9266FC025E8F264D30AB21F0E42AE989 /* 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"; }; }; + 77A741BB0E0C2171B6ABCC66CA549C45 /* simplify.cc in Sources */ = {isa = PBXBuildFile; fileRef = 479D4BC05C7B7260F62B3EE3157D7036 /* simplify.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 77AE5C06241C5CBA779D8DB8334CB885 /* uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 2E03891E52EE8CCA94BC6FB82313A900 /* uniform_int_distribution.h */; }; + 77B3FB6AE06B9FB8FB9D14DDDACC757F /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 640D3D180A9943A63803BD1A485C2689 /* memory.h */; }; + 77B6B9F4EB625B4ECC4ECC58A1113C84 /* mpmcqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9445FBC4986C3462CE06523F7D0E3449 /* mpmcqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 77C1300667FE9712F55854C11666F534 /* loop.c in Sources */ = {isa = PBXBuildFile; fileRef = 6CE28B9ABABF7CB4285248F06FFFD5D5 /* loop.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 77C61A45D6FCC68BD4ABB433DE5D812B /* event_service_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C7C103F7132A324B121E10E32D1B847A /* event_service_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 77D28B4E99F6B47745A58F34E8B92A51 /* e_os2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7089E82C27954B63258494BE969DAF7E /* e_os2.h */; }; + 77DFA732478B1FF4E33CFBE915F1455F /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 232CA3047B6991CC86BB140F8E7258D0 /* stats_data.h */; }; + 77E5926D13BC9D0970D00F9D79F54700 /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = C014901C7F654ED4B4262D0079D07AB5 /* pkcs7.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 77F3404FA0E3C7D84E5C1DFECADAD59E /* FIRVerifyClientRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B994EA2A5E3AFC58F55F16CEB3E0BC /* FIRVerifyClientRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78037371193EBC5719F7136B2325D18F /* version.c in Sources */ = {isa = PBXBuildFile; fileRef = 5293FFA252779DEFD7660E60C27E7948 /* version.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 7813D57A9062059BF74BB2DC166A0803 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 17F95E2F98990722F0B6E5C0F79D25E6 /* lrs.upbdefs.h */; }; + 781C08A2E117CEC850A5ABFF71A3B8DD /* load_system_roots_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = D9DFEB078FF507AEC246A1898FDC9C8D /* load_system_roots_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 781F7B6B69787917F89869A8A8426847 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA202995629A2A49F55056D1EDCA7174 /* health_check.upbdefs.h */; }; + 782367BEF088F7E4F6D6FC5219834045 /* printf.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FAD38AFE7BB224C425B7C711C5F811B /* printf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 78322B49C3058E8BC90C58DEDFF72E12 /* pool_urbg.h in Headers */ = {isa = PBXBuildFile; fileRef = 055787A302ABC737DE93D69BEA0A6F66 /* pool_urbg.h */; }; + 784EE87ED7647E806B97AB9E6675C012 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E2C9422F8379A5977C8650C49921D87C /* deprecation.upb.h */; }; + 7853CF5D2A0AB395DE8D951709E0C618 /* symbolize_unimplemented.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 2A372A0C9F80AD87724D280D1BE7EB81 /* symbolize_unimplemented.inc */; }; + 78790A517F3B8B2021C3983BF8123139 /* pcy_tree.c in Sources */ = {isa = PBXBuildFile; fileRef = 05CEAE5F39C72C44F09FFF0479D94BC7 /* pcy_tree.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7885BB7A33C729EF1AB85BCB18C2A2FD /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 738AC6A787B65F7CF70CFAEC95B76ACE /* rbac.upbdefs.h */; }; + 7885CC5AD145506D2D5DFCABA43C5AC0 /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F4747333E10AAF0379ACEEF4BE7AF2D3 /* regex.upb.h */; }; + 78945B616B2DEDB4BBDA346058140A74 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2FBFC5F33BF4066D8D9F069B729B3F /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78AA2DA95A0396DABDF1009FCE91F417 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = C296127BD57AFCDE78841A748D2B9B07 /* evaluate_args.h */; }; + 78AE01CAB8A5B47BA366F58B1D6C8222 /* byte_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 82A014C0E83F78E507B018268BFE8856 /* byte_stream.h */; }; + 78BB9DBC3F9FA94AE7FB08C771E8DA17 /* FIRAuthProtoMFAEnrollment.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F5967F0676C6A24CEEF85ABA5D672D5 /* FIRAuthProtoMFAEnrollment.m */; }; + 78BF20DC61FF1D64DE99004CD63B913E /* nonsecure_base.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CAD9F8EDA37D573B615E3E91B6C834EA /* nonsecure_base.h */; }; + 78BFC2213781A1A5FC1FCE55A7A9C89F /* ssl_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0167C298C9AF396EFAEC955D4EC4AC68 /* ssl_buffer.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 78D66504E92A4B851B75D910A47622DA /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 2512390F87CDBFA15A61C6C56E05373C /* pollset_set.h */; }; + 78D79451A338C63AE2150AD28B90C426 /* status_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 510E8005B247211C51B3AE7B7633AA1D /* status_internal.h */; }; + 78D86C4478B6276CD40492AAFB2108C5 /* client_unary_call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = F760C6ACD2C371EA4C41B055C08FF1BE /* client_unary_call.h */; }; + 78FCE93B0D60F597D1D539F401F15BEC /* resolve_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2A4F441DB8D183CF38A95231C44257B /* 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"; }; }; + 7902D9851539053D418216BE2677216B /* census.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7CA64EE476A52C869C6CB8479077AC /* census.h */; }; + 790467E3852F53745D4A603FB813E7FE /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D159FEE6E54FDC41C697A2E6435B30 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7919BB1BA344B2965D98F4AEDFEB2453 /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 3AEDDFE15F190AF5153C2F9559D81F50 /* port_def.inc */; }; + 792B628EB32D9E495C3431CD553E9F55 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E774C1D7AB45580BE965C9A9CA68FB84 /* load_report.upb.h */; }; + 793137FF13B4DF1328DFAE50E1F39D5E /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = BA26B2BC9BC04A695DE8C3D65FBD2CA9 /* avl.h */; }; + 7941D1419C281785DCA000F96694896E /* dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CD950219F348C7EC48D1211809E6117 /* 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"; }; }; + 79502644954C3285662041893A0DE827 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = DDEC335E818B06B1A6A5F9A33196DFA9 /* message_compress.h */; }; + 79539220B1FF148124E906E7EC640F02 /* grpclb_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B35BD7CDFA46C68589BF278CAB0B546 /* grpclb_channel.h */; }; + 796346F2EC7E6EC8DB06E41EDCCD0518 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3C77C8C358148481DED102534EC051A8 /* pollset_windows.h */; }; + 796B211EF60A4CF0BA0C5F6CC9FA45C5 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D2D0B809D7F772E23E7BCBFF7A91477 /* ring_hash.h */; }; + 796BB370F48BB87A1B5AF7A567284B9A /* seed_material.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9E00ACA6C8A9371C296BE6A7E6020F0 /* seed_material.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 79760D3F1B1A39692A0A26741B7654B6 /* byte_buffer_reader.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D2444FB1B29D1AA32C66A29C8B245A51 /* byte_buffer_reader.h */; }; + 797D161836FE8A7846630D6A816B8E2C /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = C43E3B31216E05531D22105ECFD7DDF3 /* wakeup_fd_posix.h */; }; + 797F28863A9C13DC51846447EFAD18B9 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3671B452B382FB4338497B5ACF2484C1 /* hpack_constants.h */; }; + 79922E134890CCD1A107319BCA0CE078 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D713C2D01046042F563D47361ECA4DE /* debug_location.h */; }; + 79D14201C047E7532825B703D97BEF01 /* port_platform.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 42E91DE07B22E155D8AC0EE01F5DE51C /* port_platform.h */; }; + 79D960ACFF43CA9C6629073A9E48B045 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5538E61C17F9316886F4E51BB8C0A731 /* cfstream_handle.h */; }; + 79E0760EBB16244118F542D1EC9DA542 /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = B99BC6CB6A9B3D12AAD97F1101B6CD13 /* x509_vfy.h */; }; + 79E6D02A6348658F164F9036272E1733 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6CE314F3BD47892F514EA0B7D26AF3C8 /* authority.upbdefs.h */; }; + 79E9E8CE22BAB1DFC2B514FF43A0536C /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 84F0377569D87841D4BD240BA27CE979 /* pollset.h */; }; + 79FD66DBD80AD4CFF1A5B9C5214A9EEB /* altscontext.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 267CB669FB91A7500E5A02EF2C573020 /* altscontext.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 79FD7EEFD5A928535CB59E530EF619FB /* xds_cluster.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4AEFDDAB80A142A8333FE94FCFB10D1 /* 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"; }; }; + 7A0B88AC24D55C226C11A0CC5B49093F /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = DAEFE00953709D5B426D1BBB084D49D6 /* xds_common_types.h */; }; + 7A0C425AB1BAC2A66A98B6AA9A6BF521 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = B66B8585233E47D4255B365517D5477D /* status.upbdefs.h */; }; + 7A0D7C212B7B84E79C8FF471DC2696A8 /* create_default_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31F550F5C89C025EEC6B4C0B981FD656 /* create_default_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7A42C00AFB8163D2930D44D3E2267736 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D28D3A405D888584AFA9814535F9F6 /* xds_route_config.h */; }; + 7A4C3E36FECEC69AC41BEC24CBA1B2B7 /* FIRCoreDiagnostics.h in Headers */ = {isa = PBXBuildFile; fileRef = A7477848E9C32365E7D6633A65BFFED2 /* FIRCoreDiagnostics.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7AAEAD6C5C38936E989146506044E774 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C10D8CDF50E90BA044CE070187FA8CAD /* internal.h */; }; + 7AB06DC69691D12AD785963478750E48 /* FIRSignInWithGameCenterResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A06142FBB03FED26CFAB82F4EB374B5A /* FIRSignInWithGameCenterResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB140A6874980EC0E0FCE459A01B4CA /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = A5298F5507196E30966765AEF9A12C81 /* client_channel.h */; }; + 7AC92558298E1A24FE6CC17B5C6DD88F /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F9D7145FE966D1A57FA5273801F45E57 /* iomgr_internal.h */; }; + 7ACD87529C5C1AB3A755A7D87F9A98A5 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9117F129DEFA75ED8A5DC8BF41A3C486 /* tcp_client_posix.h */; }; + 7AD05DC93D6D9F5EC7B37B6823173563 /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 04435BB7737DFE0C78B83AA0B59E79E3 /* global_config_custom.h */; }; + 7AD205CEF8307ACD83BCA8E2964F2098 /* wakeup_fd_nospecial.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3C906D7583DB5E0ADAB96CF81104AA2 /* 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"; }; }; + 7AD89B187E898FC88CFCCDCEDBA7E3CD /* aead.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 309E291A30E56D8B13BBE792D7C21CF5 /* aead.h */; }; + 7ADB3FEF70C1456C7DACDEB176915A57 /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 7D92EA3A7FC3953CD3989F4E8DDAAAD0 /* external_connection_acceptor_impl.h */; }; + 7ADEA346958976ED5543F65A6314AF41 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 524D842718C6D4D3D8A29931942B3FEF /* handshaker.h */; }; + 7AF3C8E0B4D4CDE10B09A8D88A56B81A /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6B81FFECACC796545E147BE723E4C5 /* authority.upb.h */; }; + 7B01A7DE941C3007C1D849ABBC49079A /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D75BD93CB111E10CB5FB61FB5E8193 /* csds.upb.h */; }; + 7B049E06DFF9588BA7C9AFD5E0B24645 /* sample_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A1CBC6CA547FDD0D2BEAC649F534DB /* sample_recorder.h */; }; + 7B067BF99D950F834D26E304710DBDDF /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D430DC36E369224FE80AA1C779C873A /* health_check.upbdefs.h */; }; + 7B0F25DC2C43384FD37C65EEC21557BC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 7B1E820030F8DBB2B593617E28E5D72D /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = CF3DEBCCBEDF6A950945F9F9E791A7DC /* upb_utils.h */; }; + 7B1F085168F4410CEC4E30A1F635513C /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = D2444FB1B29D1AA32C66A29C8B245A51 /* byte_buffer_reader.h */; }; + 7B2312FEC54EF75402557F11CED02A1E /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF1FC8FF108789C10DBCB78E9CCB781 /* closure.h */; }; + 7B2B0FBA7AB86A8757A7E0A9945594FB /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = BF4FB011FBF38983A560A386F247B366 /* b64.h */; }; + 7B33D0F37E57C759FD781EBC2AB1B469 /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1041B58E8196CF0D0F0DC3EEBEAD5054 /* grpc_tls_certificate_verifier.h */; }; + 7B350333736B15495F96CAE2A5BF4F6D /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 4D3A047081A1C37353133DDFEA02AD17 /* loop.h */; }; + 7B415318EE477988C1087E91E9173502 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 1DDFB03E2128FD6392BC9A535F108099 /* annotations.upbdefs.h */; }; + 7B45CBD477376055ED3688B8970EC095 /* gRPC-C++-gRPCCertificates-Cpp in Resources */ = {isa = PBXBuildFile; fileRef = 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */; }; + 7B54F17794FA2B971AD0DAEE656B5020 /* credentials_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 418C58E37D96EB403A28D55DD86E31A2 /* 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"; }; }; + 7B5CE4120490516704B900F829812A40 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = C00C2E14BE4C51B11857C4890AF198FA /* ref_counted.h */; }; + 7B73873188852D097FB0F5BF6D6EB973 /* sdk_server_authz_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 805D1F28B4EBBC096CDCA4C0441A0F90 /* sdk_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"; }; }; + 7B84526DC8D6A999B568CEB5FDBF23B3 /* skiplist.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5F131E85E45ECA63832E0B19237D34 /* skiplist.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B848128A4A5533B27C8E3031CF2EA7B /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 12C07E7B43D8D4BBC6E37C9D5D10DD46 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7B983BB35ECA2AF09AE05218454B38D6 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 69B198744FAADE385016BDEEB449BF92 /* FBLPromise+Async.m */; }; + 7BCFD6EAA0B0446D8998A2C699DCFF89 /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5844CB192FC0211ED392D2EFCFFE6D /* handshaker.upb.h */; }; + 7BDE3BE93E1BDA72C14825022FF4C78F /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 281A84F8DB9CB877F887499F64ED43BC /* xds_resource_type.h */; }; + 7BECA7657F1DD4366254A357A9334EA6 /* FIRUserMetadata_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C3ABEB86788C9BC4944430649D6CE67 /* FIRUserMetadata_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BEF36569C1769EB7E23A4A81FB5C243 /* validate_service_config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = D17D2D23D02A201C6628436CB5B4DE6F /* validate_service_config.h */; }; + 7BF1E270FFBA64CA6901A43D735B69F2 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = AE5BD4AB2FE880F958ECBED48682DBC7 /* struct.upbdefs.h */; }; + 7BF9A2ED245945191EC8DAC672A50AF9 /* beta_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = AE28EEEF36C142997E3A9E8D45C286A1 /* beta_distribution.h */; }; + 7BFAE4856B8EA5ED5F5BCB19049770FD /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 37D0DCB4D87AEB162B62039EB34D2C87 /* sockaddr_windows.h */; }; + 7C0349F76E5120079F66FB003F042B36 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 7C0772D0C5725EBCB7F33A575AC74497 /* iomgr_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8678B2EB1A26A48D1ADB9DEC9D68BD /* iomgr_custom.h */; }; + 7C08C1049328AD18BE6688317AF30028 /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 558CC5751FC1C3DD4766BE6E23031963 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C08DAEEBD7745FF40E631C90E48DF56 /* binder_security_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68C8FE50ACD3F3902B6CF12DD5A2F568 /* binder_security_policy.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7C131247535B50C99CDD24082DACDDF5 /* google_default_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58A2CEECDBAD57D1406A2A60442E5818 /* 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"; }; }; + 7C192E05406E4A32D9CEED0783D6D38B /* stacktrace.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 40E0B3F4298A562DF404EE763DC0EC4D /* stacktrace.h */; }; + 7C1D60246280769F977752EB5202056A /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = 72182DAA485BA61009AD0E25141ABFA9 /* ring_hash.h */; }; + 7C441F3217A67D99C73008BD06CB3748 /* credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = E1D5E1D287122207DC6E949C078FD696 /* credentials.h */; }; + 7C48EEDAFB9FB395A9DC48150765DC6C /* histogram.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AAB986D98FE2F729B493DA6CC9C066 /* histogram.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C6D4CF70147D7053D5D0BB887B1FA81 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 93FD45C0379AB56C320890B481E0F25B /* grpc_if_nametoindex.h */; }; + 7C6EE8EA8B70DAB756E01746269300AD /* utf.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 6DB74C7061F8F431F858E94577B365A5 /* utf.h */; }; + 7C76EE93DD92D8987DDA4971D678884E /* buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F95F318B1943265385245D49E4B752C6 /* buffer.h */; }; + 7C8A7AE747CE6AEAB8FCB614A693214A /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 8576198941D22B1B99E314936F2083B1 /* alts_credentials.h */; }; + 7CC55CC6E97903A87355C5279D90E787 /* charconv_bigint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0A9DC7D59052BF3F1AFDE8E4D68D31 /* charconv_bigint.h */; }; + 7CC7B8422FBE09C0A589B1ED2F44E929 /* int128.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A8E749951CED7CB6B2A116637E92ECE /* int128.h */; }; + 7CD6647E306F6FDCC0756342C82DB208 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 713006068D25F02038ED52811E7DEAF8 /* http_tracer.upb.h */; }; + 7CDF0D2DF575ADB2984AFC09DF07CEB0 /* endpoint_config.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 4BF21151DACE726AE78BA6A91E52394F /* endpoint_config.h */; }; + 7CE6353C1B1F8C787EE517B0C61B713E /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A6012AF4B8E27052CCAA36F5AD001CF2 /* path.upb.h */; }; + 7CE6B33455B68147815A771D7B24EB80 /* symbolize_elf.inc in Headers */ = {isa = PBXBuildFile; fileRef = 793F3686ECD9B80BEE1B236A01E4A7B8 /* symbolize_elf.inc */; }; + 7CF112F47E72932AA01B0518401D80D9 /* FIRAuthGlobalWorkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 05D83D0E0C3D491F291B11C287B131FE /* FIRAuthGlobalWorkQueue.m */; }; + 7D0FFAF55057CD672A022394296ED0F4 /* md4.h in Headers */ = {isa = PBXBuildFile; fileRef = 58EC6F3EAF65D154020A0AE6DB325B19 /* md4.h */; }; + 7D2D674D9D8A4D139ADC583890F0C3C5 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 4469E78323B212B8AFC4393309C64628 /* grpc_authorization_engine.h */; }; + 7D2F17B1B95C38B6DCDD28A000143EA2 /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 83140535FB93F07F64BC6545C841F42F /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7D37FD647286FB8D978C2C3587DA270D /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 5E27ACE453E2FF392BF2C0E58A69CA35 /* poll.h */; }; + 7D3D2896D945C154DF44BD5829AABE46 /* FIRMultiFactorResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = B28604B517C2CE2A8E7A6FE766721961 /* FIRMultiFactorResolver.m */; }; + 7D42C73B77127F80063B10126EDBCD6C /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 48075C8CCFDEC075472B34BA1DE2E7DF /* alloc.h */; }; + 7D459BFE958CF6B8B57FC45D0C13D599 /* plugin_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EFFA4682102AE7CCE9FB3D96D8A9EAC /* 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"; }; }; + 7D5AF8978E90B02A8ECF77E53C24D3CB /* mutation_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13A79CCE29A52B6D4FD7E7D5C5318DDD /* mutation_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7D67DA59E6A7A49803CD2A53E962A699 /* grpc.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5FCC5E2FDD77F250F8DC37D0CB45EE11 /* grpc.h */; }; + 7D6936BABCD451025EAB1B032DC076C0 /* GDTCORMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = E1167E83A2E8513AF273C6C7D7CE7F48 /* GDTCORMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D8414589B36B07E852CE2B276723074 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 626B787D7C663EADCAD9F21032E3FE61 /* ads.upb.h */; }; + 7D85C707B4F2629EC6BC3C62648B2BCE /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = DCDC4DC3585E687AE062AE199FD8F455 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7D97D4CA6785DBFCFF46C7C6D06A0390 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABDBBFA7111C3AA50A9BCF22642C98A /* server_interceptor.h */; }; + 7DA4CC0567D43E6E3DB94BE70B7020FC /* explain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F479BCB7EBF03A2A870C2996081DC1A3 /* explain.upbdefs.h */; }; + 7DAD62A2A5588103B27FE14407085DFB /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = D49D3574454881ED60452AC6106E9B38 /* 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"; }; }; + 7DB578B2299810579BE1D2FBE139E665 /* FIRAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD46A054630618014019271AFD33BD3 /* FIRAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7DC3AFD8EC9FA541DBF1780C858919C9 /* memory_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B6597F65C9467798C5583F0C43E8D40 /* 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"; }; }; + 7DE59EEC2A48458405D1DEC8C45152B5 /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = FBDCF3E195CEFDE721E9F6833F34D3F8 /* connector.h */; }; + 7DE721443EE6EEC71F0CD114D37B684C /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4CE2894263ABCB3E3AE8098AA3D881 /* sensitive.upb.h */; }; + 7DE7DEF0BE6A5E8EAE15612A4560B342 /* binder_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 7DC2455AF37775A57CF18B34D380CCFE /* binder_credentials.h */; }; + 7DEE7C1BC43B5ABBEBADF9BD505928F2 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 794EFE21FBF1C0C765D8F5CFCCC99D59 /* atomic_utils.h */; }; + 7DF87DEE21847282E02975B01101D200 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = E00671B2C62962CE76E0C7AA3F4861BA /* resolver_result_parsing.h */; }; + 7E1EEB4EF426F5103F166E99CD076EA4 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5F77F0786C3132A7D9BF38659872CBE9 /* http.upb.h */; }; + 7E2DED6E2611E376BE26A7CEAB7B6AF9 /* cord_rep_flat.h in Headers */ = {isa = PBXBuildFile; fileRef = 04E73DA9DFB71052E0421D6FB6F61687 /* cord_rep_flat.h */; }; + 7E30F1C75D1185966E8244E4B41418D0 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = D204DAFA60EFA77DB3C8AB1D10655D2A /* frame_data.h */; }; + 7E3213C067ECFFA9BF819E9CE5347DDF /* graphcycles.h in Headers */ = {isa = PBXBuildFile; fileRef = 222542F7A5F0F55C44B5116723671F1C /* graphcycles.h */; }; + 7E3F4CCC67F5BFFA63B0AB4934B5D12D /* oct.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E208BB56BB4324506D23849D345BD16 /* oct.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7E4A83616927F8F741337E0B4492C63D /* memory_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A7FCFACABBFA725B2AD9AE404DED753 /* memory_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7E58AC59729C3E73E80D0F0495282E5D /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 911A8E5B2A2F6B96CB03ED205E36B910 /* Heartbeat.swift */; }; + 7E5991719C664B494989C60FE79463AA /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 778173FC20F6C801F5CBC3ED92A4CBD7 /* server.h */; }; + 7E5A6D014BD9662FF109CEB649D339C5 /* binder_security_policy.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 270F5A63E032F374CE90F81F22941A32 /* binder_security_policy.h */; }; + 7E603CE1E638A2BF5801B333A9CE38D8 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 40251BC4BA5D224ED709E620C05C2379 /* frame_handler.h */; }; + 7E649A179990630C0C24A2A267857514 /* endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF21151DACE726AE78BA6A91E52394F /* endpoint_config.h */; }; + 7E7170AE488AA43A9E66A322B155C0CC /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3E8C867C82832200FB3115DCC32263E9 /* quic_config.upb.h */; }; + 7E7340D2C15119C24671613C36885D48 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BBCE3762E1316A390F345D01E14C839D /* 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"; }; }; + 7E748CE6716CE30787ADFE78A4128A07 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 93A189D82FC573270C4A6BDB40765BAC /* block_annotate.h */; }; + 7E7EC0ED79909D892154A7751E966C41 /* FIRSendVerificationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = B7DE0D03E5F3591F88D52D0456AE8FC3 /* FIRSendVerificationCodeResponse.m */; }; + 7E89D063CB7E963B6F5CE68CD37AF688 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3127AC598F2779B660A46CE00B1E91FB /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7E9FB2E48EF70A57F1A16A4EB51C1490 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BDFBFCFC84F2930C0291A23840C86FC /* tmpfile.h */; }; + 7EA728AD5D1F89752B46A7A04B053D48 /* FIRVerifyPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 431B842BEBF7785C996A9996E65FCDCC /* FIRVerifyPasswordRequest.m */; }; + 7EB7646125B1B541E24BA20445234DE2 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 70089ACAEC66A055C801C99325A4898A /* listener.upb.h */; }; + 7EC47DE205AEC6AE99839B70698C4172 /* handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47B407B6BD3043518E3CE8A8139EF1F3 /* handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7ED1FA64931002630E2A992001A3420B /* discrete_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66B0AE77E58CB00FB7A01E10FB25A7A7 /* discrete_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 7EE55E6FFC59C3F9DF91C68F3529876A /* fake_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 106C962D55E5E9FD365F1E3420B3E65A /* 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"; }; }; + 7EEECC1E62ACF102F87EF3E7BC8C8572 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 47D61E20DD02A0B6145065A62DED3A12 /* event_service_config.upbdefs.h */; }; + 7EF6A83953D43177CFACBA1C27E21AA6 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 197FE6916163BD0C008EF8193DA5BDED /* resolve_address_posix.h */; }; + 7F1AAFE6C6B4DFE87B48E1BED46AAAFB /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EFFD7B3C2B5EF824BD95FBF58EEE8BAD /* any.upbdefs.h */; }; + 7F236903459AB5B15E4989579AEFD1ED /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9065CFD3738637DF3726FF12EB2BD8 /* security_handshaker.h */; }; + 7F27F4CD213155D8179EA0F912B370F8 /* cord_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3987E0D504411F0B2C4E16E143C5FE53 /* cord_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 7F29D6BBEA89E9DA8B141CEE3CC59606 /* stringpiece.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 788895ABF601AED9FD7556E17B0C84E5 /* stringpiece.h */; }; + 7F3C362B80608DA209CF171559A1CCA3 /* b64.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D5EA5666B1298991B51D16361E8CBB8 /* b64.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7F5437CC0174EE48855FE8F86131E142 /* spinlock.h in Copy unix Public Headers */ = {isa = PBXBuildFile; fileRef = 815DFE58523F1EEDDE428FE336B5F6E6 /* spinlock.h */; }; + 7F59DB2B6AF71F52F136D0DBB0F68B68 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 75043BCBD0E8257C1EB6CC913D1921A9 /* chttp2_transport.h */; }; + 7F5A5510A3D5B33AE0A68912ECA257ED /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 926A512B945681BC9FF1DA81E2B5F32D /* xxhash.h */; }; + 7F60275F621FBA2FA90FEF526DA4F91F /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CE4E865E41100BB4D30895E1DF6C98CB /* number.upbdefs.h */; }; + 7F7819BF1FE68220C9D3AD5B820FACAD /* FirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D595532931C4E308169CD53104436E /* FirebaseAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7F8D1A381FBAB4134E6611987DD882A4 /* time_averaged_stats.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 20A44DC14E720FCD39B4281C2FBB611D /* time_averaged_stats.h */; }; + 7F8F0317AAF78E19640B4EBF5A37AD22 /* getrandom_fillin.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 9CA13D0E2C5F02B70E65D1B8D9A28B84 /* getrandom_fillin.h */; }; + 7F8FBA58D63D768980FBCCBD5E02EE15 /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 5C0D108A9A768E4C3795C16535940950 /* IQKeyboardManager.bundle */; }; + 7F919E66D600FB31225C142AE6FB7E41 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F928376AACDA275738F34450038DC04 /* child_policy_handler.h */; }; + 7F91D7571BC867272AA7150B7ACFCEAD /* memutil.h in Headers */ = {isa = PBXBuildFile; fileRef = B2266929A10D29E98094837686875F34 /* memutil.h */; }; + 7FB25F14E090F17FBB1FD9510A0D89A9 /* internal.h in Copy crypto/fipsmodule/cipher Private Headers */ = {isa = PBXBuildFile; fileRef = 0A49E815324E7A045D0A234B8AC5F6B0 /* internal.h */; }; + 7FC30594AA5A5BE5D7EA3E0AD5D23ECE /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C8359BFC350D204571F3FF56B69D7C /* value.upbdefs.h */; }; + 7FC917484E78BF9233690D1DBC12915C /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D81023203E4EE2DA52F4796A0F5A9BB /* semantic_version.upbdefs.h */; }; + 7FCEC256C3C9E66F15DE7FC49D7CB634 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D94DC5EB10EB24B17D5E1B44ABA40B /* table_internal.h */; }; + 7FDEF3338FED11AEE0D7121CBD071167 /* arm_arch.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 963CA9F4C6207DEE906E81C2264A6399 /* arm_arch.h */; }; + 7FDFAFA5D3F55D63246A41874AA4C1C8 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 37C5A878B8F9C2938221A570432644E3 /* collection_entry.upbdefs.h */; }; + 7FF72A766953A5CEB3064D7F9EF4C158 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D1793911BA5401D60911E96552F3D962 /* plugin_credentials.h */; }; + 7FF78F218B57EAE406508C51CF4538B8 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 080672C3CDB0A09966240F2293768AEC /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 800CBD15065F1595695F9528AA3AF6F7 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 717928F9914AF0BC957E001257AFFC30 /* endpoint_pair.h */; }; + 801B2D4550A18A8AE2B49B977C897867 /* certificate_provider_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EB8E12ED139BA28B1E37DA0A59314B8C /* certificate_provider_registry.h */; }; + 801FCB7A2D8266EDD48F6B95495F7B35 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE501746679E6AE6FAF6E11EF8621AD /* work_serializer.h */; }; + 8026587B443FB4929CA0DFCE5EC5EA75 /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1C4B82517BFE2546A857A801C65C8DB2 /* backup_poller.h */; }; + 80313A630AF265BDA7B60D582C56F224 /* varint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90CA7A4D9A60AED60C2ED15B3B12CFFC /* varint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8037F116FCACE1F86D02314A84E8F31D /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 51B81A93BDE44C556A5FE22B2FBE96C0 /* transaction.h */; }; + 805136781D03A91D6C79246F1FF1663A /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A4B46F0DC31689CFA6FA776753E974 /* overload.upbdefs.h */; }; + 8051857206DE7917407FF882186B0C33 /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 17709BD907C756BB74CF73420D01051D /* sync.h */; }; + 80535B2B1E12C08D07BC6CAD672B48DB /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 79828274D3FA905866B6193BB65EB029 /* error.h */; }; + 807C840264AC379F8EF0839C04C30FA2 /* FIRAuthAppCredentialManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ECDFD149C03EFFE94F66F8EB8E73CE76 /* FIRAuthAppCredentialManager.m */; }; + 808638BF572F10A03987456005BB89A5 /* dualstack_socket_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0537B2D6FFACD3B539A00A9406B5611 /* 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"; }; }; + 8088150B85B2E78D03AC03B19ED5FC6E /* proxy_protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 50D661EF9FF208956D0B356ABFEC2FB1 /* proxy_protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 809F45F1FF83D592CAB19D30FD28FCCB /* x509.c in Sources */ = {isa = PBXBuildFile; fileRef = BA7898A4AF6C68989B2C09E48E3518E2 /* x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 80AFFD91541737D9C2FA70267CC820A2 /* client_channel_channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1390E11AC6DACF63251110EC2EC85541 /* 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"; }; }; + 80B6C9B3F9F40955290256D003A37078 /* endpoint.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 45CF1D6176424B8001AA00B201E8750D /* endpoint.h */; }; + 80BB58595376BB0B1426F6461EC286A7 /* per_thread_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A452EA3D24A2C5F5FF4C0D56834ABD /* per_thread_tls.h */; }; + 80CFB013343AD5549A81C2831738FD6A /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 5781859900B1E947D7510BBCB0CF0D76 /* channelz.h */; }; + 80E18D86B1AB098D3E12534022851AF7 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3769EBD9F895C2674A207DF500AED3B6 /* filter.upb.h */; }; + 80E281ABE01ABECAF0F22F44E618AB8E /* unscaledcycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EA09696A4688419E51C29AEAB3FD1FD /* unscaledcycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 80E38DC8B0A95CC311D50789E35B1D36 /* promise.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1B30D39911306059B5C85DD6C6767DF1 /* promise.h */; }; + 80E5A1C5C0EEF10894F7A39699B1E848 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 24535C698A0195B571B5CBF6734B6963 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */; }; + 80EADCA96BE6BB792A8BF08E0262D7DE /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = D3CDC1DA9E8272F3ABC0188F99122068 /* json_util.h */; }; + 80EDC5C0FBD349AF272D38EA70BBBBAE /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 4C5921B00E6545679F98ED5E437FE12C /* local_subchannel_pool.h */; }; + 80F7DAFC0AE31F45D9341AB6318D8F4F /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 2AA0532207375403CF92AF2C395816E3 /* migrate.upbdefs.h */; }; + 80FEF9F58861563092979D0033F06CEA /* ordered_code.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3E1CB7548B6FD20BC6CB59F51070513 /* ordered_code.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8103FD2137BB596D8E6559ACCDC9F766 /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5CF1FC8FF108789C10DBCB78E9CCB781 /* closure.h */; }; + 8121010EC3A7ADB6A5E01A9B46D1202F /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = B4285EB5E539A6DA9DF6108FF788F74A /* json.h */; }; + 812C4581F6D1C17887D25B2AAB9CC83F /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = F18F7F9EB9772B9F6F708D26C1A28ECA /* check_gcp_environment.h */; }; + 81338651AF8C56A84CC5FF103E610544 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = CACB85BB6B18ADBDE11D5F2E96BCEE91 /* fake_credentials.h */; }; + 814EE9013698D27ABA21C80CBD051DCC /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B431EE717302EFD3380957FEA96244 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8159D008FBE50B969BDA154667D7E312 /* channel_connectivity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2658663D9FA7D2F5524BDB67C4E4D350 /* 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"; }; }; + 815B4C27156D443E0E988043A8765B40 /* internal.h in Copy crypto/pkcs8 Private Headers */ = {isa = PBXBuildFile; fileRef = 8FAAE619298BB3E52C17A0D7E402016A /* internal.h */; }; + 815E1BC1436B9A17D808B597680E269B /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 595C7E13CAC37B571EFC71EE2EFEDC98 /* regex.upbdefs.h */; }; + 816CEFA330E058B70EA63489BE0A85CE /* db.h in Headers */ = {isa = PBXBuildFile; fileRef = E9613020AD0125F4B8BE1C91A4C70AAA /* db.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 818136909286AC982DDE707A77008355 /* is_boringssl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA952FABFCF1E42F8DD8BBFE1EF37638 /* is_boringssl.h */; }; + 8188C73286936222444BC071A7384D1F /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B73E5707E6FB413A7D32BF38A22CE23D /* filter.upb.h */; }; + 819175B37CA0E81E9844D78B0E2694A7 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C2750C567685AE956C86EF8B8EE8939 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81A8E611A5D87E6DB5735EE22A34272A /* FIRAuthKeychainServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 7425DC3914D3335DEA73DF46DB6B56D2 /* FIRAuthKeychainServices.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81A96F5C92B50298A405959EA414012F /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1A4AF91207EFF398216F6D75E5365E /* fork.h */; }; + 81B191C212A6F7747CA06306F14D22BD /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = B60334F3C22AE7FFA20028879915E9D0 /* rbac_policy.h */; }; + 81C0FB8DE8EE525F2BBAF809633C16CC /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 91E64A129C1D35AAD4034428FA45CD9C /* stacktrace_arm-inl.inc */; }; + 81DBA8821E096EBD2ABABA90D0CA4232 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C5C4EC3C7729330CFE04D86CB1A1F3 /* resource_name.upbdefs.h */; }; + 81E3CB6B258402CEE5544FCE3F56DCF0 /* in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99256C9BCED0E545B8EBDC0E27613323 /* in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 81E6EA4C923267754FD4E54271FD75DD /* evp.c in Sources */ = {isa = PBXBuildFile; fileRef = E418A5A0C46B782A038DEB3CD39660A6 /* evp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 81EF07EE2A6A4E9D54BEF5BC093B9648 /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E74A4166AFB9C828ECDF3C1E6FA3708E /* bin_decoder.h */; }; + 82080502E518E4B1AB400691A5F0FB3D /* core_codegen.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 38CAE81BDC193A192B682DC6CD1C3669 /* core_codegen.h */; }; + 820FBFD2933C14BB49CE91B46DA03CB9 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = E17F2EE6208F50466B652F4334748216 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82181CB571DC82C30F1C45FC9054FBD6 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE6DCE0F9080D814DD15BB63174A1BF /* discovery.upb.h */; }; + 822486FF849BE10423A70F47901054E7 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D2B8E95257152412E5DF689FE7AAB9 /* bitset.h */; }; + 8226CFCD503B4BAB69B33760860CE1B3 /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = E623072C0106D817DFD2F1ED3B03B4E2 /* base64.h */; }; + 822C3D0D38439ACB51BF4B3D3B8B403E /* percent.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2069CC42F6F35499F7782CE6A4B1BFFE /* 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"; }; }; + 8252FCBC0401026DA8A172FB8B92DEC1 /* rsa_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 92029B7531460F52BDE424BC0BFBC63F /* rsa_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 825929923C6D426C4FA1F6D39E2AAE35 /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7DA8E332C56FFE90181557403F4A9DA /* rls.upb.h */; }; + 825D1EAF9D997E551EDDBB5ABBF00E2F /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B5F0C27B4FFA4320EFE23323AED954F /* udp_listener_config.upb.h */; }; + 825E5E36EB701C5B4FB56F972E9B9D12 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D05C050174DEC044CD74071CFCED5D28 /* transport_security_common.upb.h */; }; + 826C34AF1197B0F67893970293B4D484 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = AE20E56D4208DB5E99DE7BCD4012755C /* service_type.h */; }; + 826D363F1E9C1F45CA70E2AFBF5BD0BE /* round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EF17E22E1293A1E8AA7CE14FE2DD8B0 /* 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"; }; }; + 8277FF4A168BEEC83EEC08F4CDB86496 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = B60334F3C22AE7FFA20028879915E9D0 /* rbac_policy.h */; }; + 82822A254FF7853CCA7B65C3B7D49BA4 /* i2d_pr.c in Sources */ = {isa = PBXBuildFile; fileRef = DEE3BC6FF54128C19BACA54536DFC880 /* i2d_pr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 828F3F757E02025880DE23860834E2DC /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C7187EC817D520314BC079AC6E9983 /* resolved_address_internal.h */; }; + 828FF02269CB1D0F2C9C25584D06D622 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4B82517BFE2546A857A801C65C8DB2 /* backup_poller.h */; }; + 82C6D6E2FD755C9977A26E51B02489FA /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 140C13A72EBDE3E5621FE3B0134B8FF0 /* socket_utils.h */; }; + 82CB4822CE50B0E6D50E9787895365E8 /* address_is_readable.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CE6F5E13696F4586FD19BB57DDB63251 /* address_is_readable.h */; }; + 82D589CE4925A8BD4FDA6BD7E95D9F3D /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F3C29E28355E14AE9A7D4348F5E9BF3F /* flow_control.h */; }; + 82DA20FB24833C11763382CD5BF33DBF /* objects.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C12E89078F7CC42BCB1BA2F984DED8 /* objects.h */; }; + 82DE92AD3EA6AD47ED3BCE78AA7D2D46 /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 91C7D882359E58D5DF66F8256D68D001 /* slice.h */; }; + 82E9815A9CADD21EDB34D494B904A092 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCF6DEBBF75F2C1690709D0A24141D4 /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82EDBCBCCD10F657DD71D4BA921A5AEF /* raw_hash_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A2D0E1C0FE0A39CDB68705093EB5AFC /* raw_hash_set.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 82F3E7BDBB9FE1974644DDD599CFB659 /* ev_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 778F3114A7F821D2CB8EA76A30D11459 /* 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"; }; }; + 83205F59842E4DC848CDE1C7F53FB005 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 73C5C4EC3C7729330CFE04D86CB1A1F3 /* resource_name.upbdefs.h */; }; + 832A7692F20985DC7B09B7E58A22E65D /* x_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = F765AC190494E9FCD9820E01A6D9EAE3 /* x_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8339B5472DD45F2D9AC5A64EED308D2B /* internal.h in Copy crypto/dsa Private Headers */ = {isa = PBXBuildFile; fileRef = 2BF3B42A6340059E93A985D000BCD3C6 /* internal.h */; }; + 83444586FA339EE473324FEADA8A3475 /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = 5AB9E3B05EAE54A19AF83995D8BBDE6F /* json_util.h */; }; + 8349F688095D8ECCA4F6BBADAB497DA0 /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = B17C8988B4A74CD61388A7A7B54E0293 /* event_string.h */; }; + 8376AB742FFBD70953C833D541AB3555 /* status_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8122035A9922CCF7CCE95CF2255231D9 /* 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"; }; }; + 8385FB2B8DB7F45CD202277478140EBF /* channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3DF537A84EFD3960A0A1CCD4B970AD3A /* channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 839428EB843AB0D46CDF8BCF57839070 /* timers.h in Headers */ = {isa = PBXBuildFile; fileRef = 87CF470B7FAD3566E00188390D024EEF /* timers.h */; }; + 83A8FF6EF1B123869CC242E83AABE446 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = FF3D5B7F804E79B30D146CC587764706 /* curve25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 83AB92031E991D002318A9585927E10A /* Libuv-gRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AB01C283091E3BE91E4FA3945B7130E8 /* Libuv-gRPC-dummy.m */; }; + 83B4CE5C381E883DEC4B499680DECE69 /* intercepted_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9661672C0188C0FA91EBE4F7D17DF119 /* intercepted_channel.h */; }; + 83BBAD224000C952B6FA806FA4D0DE61 /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 1C353511EEB33ACEEB6EFDE44335FCE7 /* stats.h */; }; + 83C8631B2A42E5E8991C21460B637E06 /* status_code_enum.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2A52BF253E4C5847F80B6F42E98E8FE8 /* status_code_enum.h */; }; + 83CCF5FA7914635C7E9CD8A0F0011DA0 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B1C655EAA1CBAA9F9C42A1C3343D85 /* udp_socket_config.upbdefs.h */; }; + 83D2C6AA5B5502509AC2EEF07FF3B98F /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F4747333E10AAF0379ACEEF4BE7AF2D3 /* regex.upb.h */; }; + 83DE50721B7E74FAE52B4159456CD0D9 /* internal.h in Copy unix Public Headers */ = {isa = PBXBuildFile; fileRef = 4D16374A016B73B7C4CB4BFF1F229D3A /* internal.h */; }; + 83EDB3FC34CE02525FE7A3EE88B28CCA /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 7AABBF38B8A78C05E7EAB74FBD685DB9 /* builtins.h */; }; + 83F08DEA038324BC520133C3368FE5C7 /* FIRLoadBundleTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = D47D130A801D3AF5FA56AB74214F2F67 /* FIRLoadBundleTask.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 83F6A05C599C85472D4CD4E1BFA5677D /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = A9589447B075C852C449954C75EC2A37 /* ev_poll_posix.h */; }; + 83F8585328BB9FCD3DB76384502D4B84 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F29F306315360662F87534E6F560F13 /* channel_args_endpoint_config.h */; }; + 841071B1087474E7E7F7D29149476300 /* FirebaseAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 645876131EFC4E362E8B4AE9ACBD1D02 /* FirebaseAuth-dummy.m */; }; + 84120264D98E4209F3AFDD74E3A02BF6 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = FBA28F23C40C8E5F6A7CC32376915B7F /* fake_transport_security.h */; }; + 8416AC1DDF9D95CFFA6FCD4E6B85ABCB /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AF2AB200CE8CF35B110FD22C65B1032 /* internal_errqueue.h */; }; + 8419DE7DDE9B849EB5C416A8F5C41CAF /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = F83E3A8812FBA630EDE81551029FD8D2 /* escaping.h */; }; + 8428E9A27008AC3726F21BDEAC7C97A4 /* a_utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = 97D88932032CFC23313016734D72F048 /* a_utf8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 843D886217479415DC9AC340116F8211 /* checker.h in Headers */ = {isa = PBXBuildFile; fileRef = 14466559014F5CA298ADCB555E679C24 /* checker.h */; }; + 844135BD8BC6B0CB77A700A1FE1520CC /* bad_any_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F50C49EAD40A5514FCEB3CCBB068E8B /* bad_any_cast.h */; }; + 8442A85624DA2DC64056D9E49BBB87C9 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A43C770F0E82FB48D84F4EB3501B7B /* slice_buffer.h */; }; + 8443DE74A33AE468A22C23B019AFF76D /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE8E76EE562C2855DB0BCEE275822FE /* resolver.upbdefs.h */; }; + 8448948671419D8E79F5D052BB0AF956 /* health_check_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6DAF9FD088B541C528FA9D11B1E2E3F9 /* 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"; }; }; + 845A62C503C5F8F8041D03A830748196 /* pid_controller.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 30B1BC53D15048019DBE5A986F160113 /* pid_controller.h */; }; + 84649B5368BDCCA0B92B328BE8559826 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = F6ED0B0B5095379956BF16B23EE805E0 /* subchannel.h */; }; + 846C0042D7EE86A4C1679F6309BD6E67 /* completion_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31009BED7AAF5A9E454E636103159E2F /* 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"; }; }; + 847FAB6B0E01FB040F4FBDE340A834BB /* stringpiece.cc in Sources */ = {isa = PBXBuildFile; fileRef = 474F7F8069291C6D0A6484CDD3B29BF7 /* stringpiece.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 84813DBD78D24091C661FAE88B5B5043 /* x509.h in Headers */ = {isa = PBXBuildFile; fileRef = D39F80575F4F98634E3ED1E6F2CCBB95 /* x509.h */; }; + 8490B192CE6C07411E72477B6597D66F /* slice_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDE7DCAACB69DE02622F6D9ABF31B57 /* slice_utils.h */; }; + 8498982B6349B5F77FD913760F187F05 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D94DF377B8AED97811D82A83777524DB /* authority.upb.h */; }; + 849F05699303FD70C8FF79896D8C887B /* cord_rep_ring.h in Headers */ = {isa = PBXBuildFile; fileRef = CC858E829E3E2EC61D5D1C5D97167934 /* cord_rep_ring.h */; }; + 84A47F34A3828DACAD6A31E132BCC6D6 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 157EA21DB6DBBF871479254BF0D78322 /* resource_quota.h */; }; + 84A97CA510AB184A57A2DBCBB9FA3CFB /* grpc_ares_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 865DE1252E8E4CBEBE625C7284BCB9EF /* 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"; }; }; + 84B791A758F6948E93814219BE4C570F /* bad_any_cast.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 2F50C49EAD40A5514FCEB3CCBB068E8B /* bad_any_cast.h */; }; + 84BAA50AECB82A1E3F653417716A6A7D /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88E932C0AEC2712BCCBB855896E9EBE5 /* IQUIView+Hierarchy.swift */; }; + 84C065EA7432FAF4AB1D4F0A4159680E /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7506595E1A717BB3A9F6703838620EEB /* cert.upbdefs.h */; }; + 84C3EB340A8021FF882967EC29715425 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = F29064FE7E727DB63F736F19E8C8BA80 /* time_zone_info.h */; }; + 84DD07901BE65F1DDFC06FE1B145B12F /* waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74D983C3177CB17A1FFD5CCA45FF6080 /* waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 84E1BBDD2156E86CC054E89ED881483F /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = FBC02DF74ED6D3AA3D52FBB31B769066 /* migrate.upbdefs.h */; }; + 84E4FB817C7A1205CB534D4DF2B8E8EC /* status_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 510E8005B247211C51B3AE7B7633AA1D /* status_internal.h */; }; + 84F45135A8666E83E12374689C781330 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 506DCC5EC2BA9143E8E779F41C826BDB /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84FD90C16AD639C11823D32E23F6C09D /* proto_sizer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2FE61196D1CC69C548EEF2B0187BBCE5 /* proto_sizer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 84FFE2BCCA68E1D5491F4FBDAE724E84 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE39AB61B3E70C96732AE4D4994F6C5 /* PromisesObjC-dummy.m */; }; + 8500562F5272E191B9F3AC533266BE70 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = A7EA77369641C931E35B5B460DE692CE /* file_external_account_credentials.h */; }; + 8506FFAEDEA982ECF37A9A5036123029 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E67834B5A485CB9A2786D5BB6CA406 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 850F89C3A40F8BA6DE30FB246847108E /* a_sign.c in Sources */ = {isa = PBXBuildFile; fileRef = FC1F197E0A2414AC0A76AA070E82D015 /* a_sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8512D01D58477E67FC42F230DDFACA4D /* subchannel_pool_interface.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB2047C17112F9E110082629C5119BB3 /* 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"; }; }; + 8527DFF9E89BB7E5A3F5A91241548945 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = A5D2F2CAD024C8FEC6E2FEC3B7DA5CAE /* sensitive.upbdefs.h */; }; + 853329843FCC6E5709E981CF791170AB /* mpmcqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE23C300ABA620FFE1BD8C5B0C2C8F2 /* mpmcqueue.h */; }; + 85371B978A89A2C3BDBCEBE0086884AE /* time_zone_fixed.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF97F13B65124EFB900262CCFF11CCC0 /* time_zone_fixed.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 853C5B7F9019873ED1B9F8FAC81D5D84 /* resolve_address_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = CEB4645596E4523B6FF908CC61CC9B16 /* 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"; }; }; + 854F8481F09D7F12FE433E85AB09F8FB /* upb.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = DA58E4CCA90BF427FEB844C7C6B3E247 /* upb.h */; }; + 8551B8C6A1CA6341C166F86A510F176A /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C22C05CB079D376E0606F56E33CBFBCE /* csds.upbdefs.h */; }; + 856283CEDCE70A8F3FB9A269437749BF /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9472A8FA0A0B3C2A107417B9589FFF /* extension.h */; }; + 857F7543A0232281EB08837119839044 /* sync_custom.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1B393CD861E3F68EA587AE99C2F8D512 /* sync_custom.h */; }; + 8597FE800605684AA53886FD55F03A93 /* completion_queue.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 35229B169CB0C25BE73F74AD2D0DAADE /* completion_queue.h */; }; + 85AE6D5E415858C84BD4968FABE55264 /* FIRStartMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 06B3274063146539E7E3A5F2D72A5699 /* FIRStartMFAEnrollmentRequest.m */; }; + 85B62F5133F3ECAADCDC0E407C75044E /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 40154881319707638ACDE245B78A7688 /* transport_security_common.upb.h */; }; + 85C378666BA3C67C859FC3CECC8EC749 /* benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 44DB22EF141FC0320D8A50C4162ED541 /* benchmark.h */; }; + 85E098E73E3836A23564D2BF5C57CC6C /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 49DE1AEEF83CAB8467865CDBBFFAC641 /* sync_stream.h */; }; + 85E3D02798E74ADB4884029942B2C5FD /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 20C19B3C458BABD720C789445E1FAEC3 /* discovery.upbdefs.h */; }; + 85EC954667E72C13AAF32E82B01768E1 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = D7414D9AF32CDD61601B8D433A1579F2 /* reflection.h */; }; + 85ECE43FFFDB9B566D509E095FC22515 /* tcp_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 77634631A973E51BCAABC5942D30FC0E /* tcp_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 85F4EB98E4042065F2736619583BE682 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5090E2455BFA521DBFA58566083C0C53 /* endpoint_components.upb.h */; }; + 85F981CD34F601345EE6F3FE33296AEE /* f_int.c in Sources */ = {isa = PBXBuildFile; fileRef = B9C157A7650300E60D7C65974EB4CCB5 /* f_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 860179B957FDBFE1412F9B7380FF0ADA /* pollset_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4ED09D5A2A1D89F9F5B167E3728CB76B /* pollset_custom.h */; }; + 8603FD9F1ABA022444057C3DF7FD1FCB /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 97DD17FA98885FEAB42F23FD4C634423 /* orphanable.h */; }; + 863D0D27872452C138DC8DCE9A2D4113 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6B505239931B7EFF6591E61538E4EF /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8659C31156BDAC28A7C4434698A9D500 /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 7B8708073A39FF01D99A3CA282001D1E /* port_def.inc */; }; + 8659C3B44ABA1D4AA39B0D1EC5E85FB6 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 230B38CC0F95584A3C8FB7465C7022CD /* error_cfstream.h */; }; + 865A9D34C9B74E5346EB54159536FADA /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CC31E7EB007F583AA305EC87E9BE43 /* call.h */; }; + 865D4413CFF39DC1AAD8CB38EDA3E3A5 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D5D8F5A884BEAAC976329B01817876 /* grpclb_balancer_addresses.h */; }; + 865F6A2CA7A5FC3FCE39F9DEAE93568D /* cds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC97BB76E35D7F30C048607AACD4F38 /* cds.upb.h */; }; + 866565739A711256521D1EA0F14C2B17 /* env_windows_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = B86E275AA5E7E3977F5AA59FDD19702D /* env_windows_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 866D0CC73EE75DB580A0B527CF917C4E /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = FE29B99AB49861FC7138440CF3F53333 /* resolver_factory.h */; }; + 8671D7A32B73B2264C532852D278FA8A /* transport_impl.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DC140C516E89FDFF2F95956E292D4086 /* transport_impl.h */; }; + 867540317FEFF67634F6AAFF8C657524 /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 4BC7B31F32A3BD8757EF10BAD153AA68 /* external_account_credentials.h */; }; + 867759BBE9A1024B298B65F060184CF1 /* FIRWriteBatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5BAFB2CD702C07921FC536FD5ABBE121 /* FIRWriteBatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 867A20B60CCF1FA05810E0D1B9DD15C2 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E12363CBD194ADA1E2348F272F5ACE8 /* resource.upb.h */; }; + 867DB1528B612B6D0D92F95CE9DEC9D4 /* FIRCreateAuthURIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 04958F931B3C3F8124FF420CA40F22F1 /* FIRCreateAuthURIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8694E75FDB7F74B2BBC7FCBEDDAEFE0C /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 99CF319969081F2A5C1B0E8831D1650B /* matchers.h */; }; + 869E589207D5A204D318FC35610E5367 /* switch.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = C2C62FDC134D55EE0909F4F199BD41A3 /* switch.h */; }; + 86A797C68E98EE4FCADE7246787BB26D /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = A7CD411E0BF99D427E9E2D714CF77398 /* grpclb_client_stats.h */; }; + 86A79A9A0B2B8E628643493514B57A07 /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 0887F377419852A856F156B9B0AE94EF /* parser.h */; }; + 86B131D8B30CE6DEE61A6B54A46112DF /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BA3CE3E8B6DEA5E1781D80A12024B67 /* cluster.upbdefs.h */; }; + 86B8539D7082F8F8261E55B462D040DF /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 779F0DD508566888E01FE684961D919D /* xds_routing.h */; }; + 86B8A6EA7F18437D9542924D5BE55813 /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 73A13B1A242B4DCC250E43043F247B8E /* timer.h */; }; + 86C2222C48B52000AE0B8E93C1A6DBC6 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 56EC8AE9A54B2039172E235F6EB30C27 /* fault.upb.h */; }; + 86CC0567766666895B1194D0C53715D0 /* extension.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = ED908D81EEEC2E9F5FDA5F9232DB8962 /* extension.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 86D9928EBC30A3C51AC0A5606794724E /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 62713261DFE8C7DE41FB439F9D4A21B8 /* chttp2_connector.h */; }; + 86E4E1AEBD536BB4AFE4892E7AA8B897 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E5055D8187C0A775F6B45F2F298B102D /* api_listener.upbdefs.h */; }; + 87157D88029FB936D49FDE1E8CCE30EF /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3D04A61482DA8F87EA8F0F6161952AFD /* cert.upb.h */; }; + 8715AC4D78A95A82A38471079FE91F25 /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1E87530FB01C3F204CD3BF8DEA67B806 /* xds.h */; }; + 8721B7B7B35C36F0A5AE597520D3316E /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = DDFEE1AA7CC544A225BE1C2CE2CE4497 /* status.h */; }; + 8726E265A2C4AC15CFE8BAB929FC8C7E /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 413E3D73361C2269037D45CE8AD34851 /* basic_seq.h */; }; + 87285991312639CE1D6225FA32A63CB1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 87372B513E4D5CDCD557C4E65BDDCE0F /* upb_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B212E640A5232604D0FBBF9485AD1FFC /* upb_internal.h */; }; + 8740FB282E7A4C39B2D35487B8A23198 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 09FD99D95491898583FF1FE210975D1B /* rbac_service_config_parser.h */; }; + 874CB21AFE49617E8A9CC1EF02013AA2 /* asn1_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = B7E02E3D5BEDD9BEB9D88BA08DA0D5DA /* asn1_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8768FD82DEED27AD263906C9AFFAFE09 /* wakeup_fd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA344E77ADD75BC2579E72EE792290 /* 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"; }; }; + 8779A679376E3D5FBE22B5D3C0248B08 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EEBE74FF56720CB8ADEFB48C6437519 /* certificate_provider_factory.h */; }; + 877B1741F618499A26950E61CFF91DC9 /* alts_handshaker_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = C385857C6EF39474FB39532ADFC34227 /* 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"; }; }; + 87A1ECC66E10B261DAB72B625365E412 /* darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = 190029DD0627717EE904F54D51DA4EED /* darwin.h */; }; + 87AD3321F53A4AFE75AAFBD267A0A173 /* ascii.cc in Sources */ = {isa = PBXBuildFile; fileRef = A858C99EFBDE50F8CD262E0CB965F90A /* ascii.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 87AFE35D7AE6E3AA8036F5F26FF9E220 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8CB8AAFF8D14709D6DF2941E63605F4C /* resource_locator.upbdefs.h */; }; + 87BF42075D60ED1B172B419AB325504C /* tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6D3FDD22B08EEE932FF7B63A136BFA9 /* tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 87CEA0AEE47CE5CEA0D6E26DD2444FCD /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 448E5C3BEAF8FFD3514B2747523F9606 /* substitution_format_string.upb.h */; }; + 87D031BE93CEEA335ECC62EB8679AD3A /* unix.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EED866FE480A9B5A210769C74A1115F /* unix.h */; }; + 87D2D944A8C6D2A9BE8886B222BD3B1B /* resource.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98D9E719BDAD0DECE222BCEF1C0DCC6F /* resource.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 87D34B076DE7DEE17A9ACB1945644F14 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 38858852E3D433E71E057F1421478E14 /* any.upb.h */; }; + 87DECB32A2A8E89353C9CA5D19FA45FC /* bundle_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D2352DAEDB9C145770BAB16CFAF17F1 /* bundle_loader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 882379871DF1397714FB2697621E5C9A /* FIRAuthAPNSTokenType.h in Headers */ = {isa = PBXBuildFile; fileRef = C58023E6A779DBAB49B47D22F2F7E801 /* FIRAuthAPNSTokenType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 882583EBF3056A71B3A902A695EA22F1 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 49D541372A216CFDDEF530731104F2AC /* server_config_selector.h */; }; + 882CE5C972174424A4A2D04AA9331372 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = AB916CF7DDB009115D08B1AC15BB2C18 /* xds_channel_args.h */; }; + 882E4375E90E76E887E8DA5251D23C8A /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 9AD56F360B8048474973F95E6595E647 /* wire_reader.h */; }; + 884AC4AC5EA119B0CC13B99DBE003534 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E504EA23615955675EBD96AF8D7D6A1 /* resource.upbdefs.h */; }; + 884AD43B8C5877223BD353D38875206F /* FIRAuthProtoMFAEnrollment.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D83085055F60CA17755EDF90A5110E6 /* FIRAuthProtoMFAEnrollment.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886220C453D34991C1216164B410930E /* throw_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = B275C00144CC65AD1C0E0C9D68E451BE /* throw_delegate.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 887B263ECDAF43464BD5E00FA6C29D0D /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7531907CF6D24F9726C2E2127BFE13 /* xds_resolver.h */; }; + 888D5E29A0455A7FF1417C506169C82C /* path.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E3DFB205995D2845B8E85C0FA72A986C /* 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"; }; }; + 88A1BE3CBF1CB4EB3A9E208B9A13310E /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F02F9A6236BF5305E266163E293CA687 /* xds_client_stats.h */; }; + 88AE56887B171B60252AD2048AFADC3E /* switch.h in Headers */ = {isa = PBXBuildFile; fileRef = 715276421DBEED576448CC1444534199 /* switch.h */; }; + 88AEC180D5618D5C177665D8465CEA32 /* internal.h in Copy crypto/evp Private Headers */ = {isa = PBXBuildFile; fileRef = C8FCD49D92D392C1395DA0596B968291 /* internal.h */; }; + 88B35FA31B80BDB8B0A9C9FC93B7DE2F /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F4D42A3426A8B9A83F558D573B03698A /* 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"; }; }; + 88D3E92C293AFA821CA54D8DFB88D1A1 /* base64.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E623072C0106D817DFD2F1ED3B03B4E2 /* base64.h */; }; + 88DB88E08B1822227AF5C07F296D5975 /* xds_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59D727EF6E97707891D89A497C0760C5 /* 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"; }; }; + 88E580A26F2332914DD10049CBD83ECE /* snapshot_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6CAE78E40B38E0B7B0B1E8AE189010E1 /* snapshot_metadata.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 88F752A79A3AEEB7E706809B9273060C /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CD133E1028F8BFEAC1DACCC6090A8DE1 /* overload.upb.h */; }; + 89026590924B2D8FB3ABD7767C110A8D /* upb_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = B212E640A5232604D0FBBF9485AD1FFC /* upb_internal.h */; }; + 8903BE970F566B5BF38C320A295FAEC1 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = FD33F30B2FB49CE7048394F59294EBFC /* grpc_tls_certificate_distributor.h */; }; + 8903E951E79CB317974D967C05778EA5 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B99CEF7CC07DAA0ED03E00EC195A0B2 /* decode.h */; }; + 890B025D6590B40A419DFE9C46DAC39E /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9348ABAFD3447D445B4FF87D9287A5BF /* number.upb.h */; }; + 891F73B06A3A25F09DC093936E67041B /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 256CDDA97DE535252457CA8A1AF5F4DA /* credentials.h */; }; + 892BAEB4D780A473F84740F105528C85 /* timeout_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09B7B69AA8DAAECBDDC6C1BC650832EE /* 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"; }; }; + 8933F28032E0E55DA85DFEC9B3257FDF /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0761DA0584D292762B1C9B221B77E850 /* secret.upb.h */; }; + 89355514B8BA7F48F4B0B3CB72627F90 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = D70CFB3D8B86BBEE58C9B3AC4E4ED3EE /* ev_apple.h */; }; + 89399098A7D0F78DE8FAC222BA3A35F4 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F2B02E512B4C6360E741CC6F397BEA29 /* GoogleUtilities-dummy.m */; }; + 895761D7B7FD28FA55BCF5C87D1D7A9C /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 20502864ECDB477A336242904C216395 /* handshaker_registry.h */; }; + 895A291B630228F58175037F87905DC4 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = 2EBA5F0E365A852BBC20AEE91279504B /* oauth2_credentials.h */; }; + 8966EE40D797DC04EA164D90327BEFF8 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5069FDF61745774096993F061838B86 /* nanopb-dummy.m */; }; + 896E0F33709F14F8E073E50B6D7856C8 /* client_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3EF57A78639380AAF8E47B110FF609D1 /* 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"; }; }; + 8976550027A6ABB8AA80D6D1A7C4E07C /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B91A4041C80BE52EB9E2D1C78794AE1D /* endpoint_components.upbdefs.h */; }; + 897DD708C6BD4895AFDE4C56BFEE61AF /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 91AE9EE569472E395A9D36E4ACF8A48C /* hpack_encoder_table.h */; }; + 8998BA3238A9A86485E166A10D21526D /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC9B5C91BBD74CD70E57417459CCF89 /* internal.h */; }; + 899A4ACBDE3A35F978A182722CB91C32 /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA403C1877410EC3BC09DE1466A5B58 /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 899EF3B8E01832FFA9A50F315977B426 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C05EF9276F6E3DCF6EF14F5FB6ACF481 /* exec_ctx.h */; }; + 89A7A78C3957D062C785D5CDA9EFB052 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7AD42B54146B924E4B47C584A8E70F /* status.h */; }; + 89AB52F2F3E7DD4BF6E8E707DB81F244 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4618B6384304D5C44FD318CC9CF960D2 /* frame_rst_stream.h */; }; + 89B0FBF3ED51D6339D086B9470D43123 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 717928F9914AF0BC957E001257AFFC30 /* endpoint_pair.h */; }; + 89BF43070C5ED34008F3CC860D789674 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = CE768BF67CC6E9A977A5B2EB912DB27A /* thread_annotations.h */; }; + 89C019D0ED4C908D9442160E5523A379 /* stream.c in Sources */ = {isa = PBXBuildFile; fileRef = FB4FC5B429AEA88E7F2E5B30F1EB13C3 /* stream.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 89D26F52C8137ED8D1B26EC81FE3441C /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C32E272CA62338AF25481DB13397E7EA /* string.upbdefs.h */; }; + 89E45A27E3B5BEED6E94123253723515 /* log_severity.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD6272B3ABBE476B1DEE30DE473E0074 /* log_severity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 89EB8AFEB0394513C643D69C9B37235A /* xds_channel_stack_modifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A2929F85EBE366283E83E4F709FF192 /* 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"; }; }; + 89EC792CF434894A427D5226934B7EBB /* fork.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4E1A4AF91207EFF398216F6D75E5365E /* fork.h */; }; + 89EFE8C8F5C01FC9AC958524F28B3F25 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FBFBC0FDE52DFB2152249B660BC787B /* frame.h */; }; + 8A0759B6E6D117016720F146104312D0 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3103D2707A39D8E54EE8A61BA87FE160 /* custom_tag.upb.h */; }; + 8A19F7BA1DA4F869B83DA52665A7225A /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 74904B350160421E317407EDD5A75F19 /* accesslog.upbdefs.h */; }; + 8A1F4145BF428FAC3EF7F71A639E0F44 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 12E08B96E1AC0086A2909DDA889B3E8D /* flow_control.h */; }; + 8A518A77D4498F342C580285EA9D1F63 /* port.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = C48B24C6C25047B9C23D66D6C8CC09CE /* port.h */; }; + 8A5937BCEFEFF9D9E4737B2508DE8A55 /* FIRAuthStoredUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF53D64C08E5253830689DB14CF31A6C /* FIRAuthStoredUserManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A64EB50601A4977C5B63060BE08EC35 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E7439E531A2B4EB5820C3D676B31CB2C /* listener.upb.h */; }; + 8A6D94CD47D6EA9461E341AD269576C5 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64FE2E264AD3E279593F90ABFE9BBF78 /* Security.framework */; }; + 8A78197F831C9011E080B8B0E148CDE5 /* client_metrics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = B02C0102CCC32EF4110E014DF1A9CC6D /* client_metrics.nanopb.c */; }; + 8A805F1C213CC528E0544E7E9DD7B7C0 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = A279D11295A3FABCD8D789A5849F3B1A /* endpoint_cfstream.h */; }; + 8A82C490B0C44BAF1813626DE9071955 /* utility.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B61ACFE82A0D1552E1BC063D6CB952 /* utility.h */; }; + 8AA5B84F22C5A61ED496166876312BC8 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 628C35240C13CF558832C181A764E9F8 /* any.upbdefs.h */; }; + 8ABAA5038D7B4A5DB52625569D7BF9CC /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 936F0354279ABE5D67102F1A05A99A48 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8AE95C448E42FA2BA08E1A27A56E08C5 /* aes_gcm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15B504B86E720B714D5846F2762C80CB /* 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"; }; }; + 8AEB7CBA1373F04D7ABB297260BE41D6 /* unscaledcycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2A80B90084263B286C2B9BC140688CB6 /* unscaledcycleclock.h */; }; + 8AF243566E423204A47717137B73DE4B /* security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF916185ABDC977904C46809F017DEE1 /* 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"; }; }; + 8AF4AC5D02567CCB885689CE0329887F /* channel_argument_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C276AE3088683A164B97EB9C7C6F22C /* channel_argument_option.h */; }; + 8AF7AF5964F6C00E7E9377840BD08155 /* duration.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DEDA71BB7E1C1C8534C00B1BA060716 /* 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"; }; }; + 8AFF20BDAA84FBF9CEE1FC070FCAC2AC /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 79EA410E7DF81FC7428509ABB882C156 /* http.upbdefs.h */; }; + 8B165C9139F45A1F9A3FB672887FA0EB /* a_type.c in Sources */ = {isa = PBXBuildFile; fileRef = EF10D3B4432F1DFC2894DD8FA70E44CF /* a_type.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8B169B60512967ED0D530E0692FEE1DA /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BA37DBD77E02BBECC5B75B832E306850 /* slice.h */; }; + 8B2043221D12FA7AC0924A961EDEC15A /* FIRPhoneAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 317DEA1DD53EE8F564157910F8FB34CA /* FIRPhoneAuthProvider.m */; }; + 8B2DC155CDAE81A9BF027BFDC87B578D /* pem_xaux.c in Sources */ = {isa = PBXBuildFile; fileRef = DC2BF52D96EF4D49ED19166D1A4513C9 /* pem_xaux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8B2F437CAA82EBC6EFFCA7946A7FD6A3 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACB154EBD66395F6831D480F5B7A350 /* lrs.upb.h */; }; + 8B310BD1542D2E7C382720035A5D60D3 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 56B8516AE59330EEC37AFBBFCE18D088 /* xds_resource_type_impl.h */; }; + 8B5014835EB8B8F779212D0A34432C91 /* google_c2p_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1ED71E46964A959DA577A8AF622682C /* 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"; }; }; + 8B758DFA0CC1300DEB8E60F05BAADBFE /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA82D8D13A4103C703962C9CFAEDFB8 /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8B7ED6270964BD7E07C2AEEE7E814640 /* server_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = AF6850876B61AB849DB2BACED33F6367 /* server_posix.h */; }; + 8B8EAE0CAEB5CC2EAA67C481524C9140 /* cpu_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34AF97BA28592DC7F5C3A97979CBFA56 /* cpu_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8B9BACC083BBBC84607319728447ED73 /* charconv_bigint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 490C469AC8D61613CB759BDB8011132E /* charconv_bigint.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 8BA6135555AC909FD3E3E4904027FFC7 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AABBF38B8A78C05E7EAB74FBD685DB9 /* builtins.h */; }; + 8BB5BB22C06AA4D79BBFA55A8A13CCCA /* wrappers.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = A082ACD06AC47E556E2D37AC5E0BE668 /* wrappers.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8BB698C6ABAFF6D7DAB61D5DB4CE2DCC /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 4102AA4D934483719AF83C6BF818E021 /* check_gcp_environment.h */; }; + 8BB9371BABE97C7C1882C947973A6517 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3CB509D8D53E64002169940AB93BD057 /* custom_tag.upbdefs.h */; }; + 8BC3D01F9FB6ABD71D660576E896E962 /* sys_epoll_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = EF6B65448CF0B79235BFDB077BDD7D28 /* sys_epoll_wrapper.h */; }; + 8BE72151B4A2BADBA3412DFCE1EE8F14 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A589EB5B36B16429CC2324C505DBDBBA /* resolver.upbdefs.h */; }; + 8BEB648932618C21BA2A479CC9D01475 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D59B4B3ECABF4081057E07F604736D6 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8BEBCD844C80E7ECC2E01AA1749E221C /* randen.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6C60803E23C62ABCA5CB9FC8246AF59F /* randen.h */; }; + 8BF4DD5A673CF7F2BFC3D39FC15E4ADB /* FIRAuthDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 57A0DFA918CF7DCFA299B3329F35DEFB /* FIRAuthDispatcher.m */; }; + 8BFCE0443721EDB46661E1122D747C53 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E3230EDDB33B21720A74DDD06C8F32 /* log.h */; }; + 8C022AAF9368F3BE39A92A3FE7F1E7DF /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C7D882359E58D5DF66F8256D68D001 /* slice.h */; }; + 8C10B068D81F50AB5193E00449664A79 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9CD095D61CD762988F69F2547176BA3F /* auth_filters.h */; }; + 8C12F5F54C158C85180F07F66D9A3DE2 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E73CB1F95874E3060D7B5ECA7F26D82 /* parser.h */; }; + 8C1B32CD38241CADFC8BEA079F76C857 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = 217E8CD74BA05131F6F4D8CC99945BC1 /* http_client_filter.h */; }; + 8C1FDAF0A7D6AC6AF45E3CA7A0D3342E /* FIRFinalizeMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B3563EB46A817257E6BDC38AC7359405 /* FIRFinalizeMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C28C0EB033E506FCA9EB9ACB6DCC1AD /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4ED610D209A731FECDCA1F755C13AA /* byte_buffer_reader.h */; }; + 8C31D81F081C56FD8AB0999F18F119DA /* thd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4064FB58F64FBEDBE6D329DAC2886EB6 /* thd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8C5AED08F8A3B621569430431025B526 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = F5592AE487A64F81BA6B6D75D03950E8 /* alts_handshaker_client.h */; }; + 8C600138625573EE97341168F1CFB7C0 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 54C2ED12431B10F5E01F87923D41C2F4 /* alts_iovec_record_protocol.h */; }; + 8C703DEDD4F874C800D74B88CA546EFB /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = CB7ED9C61A95D6F808AA92EE929C8548 /* ref_counted_ptr.h */; }; + 8C80E8302533DAF172D30E4C38B0A714 /* lds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 61F665335A2D26D806800176A35A5354 /* lds.upbdefs.h */; }; + 8C8450154015050EF91D0A75F7F7FC53 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 455ABDFBA4081D197600675A96310DAA /* endpoint.upb.h */; }; + 8C960FEA44C13262CB842DC90D790DB3 /* two_level_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48299CEED2A49262C6EF76B318B31623 /* two_level_iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 8CA069EC68763E9DD11AA153B0833439 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 85432502D15B6E72081464943274CF23 /* gsec.h */; }; + 8CB228ADC359A07570487F57641FA389 /* udp_socket_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B307F18226C5A138D57A01E0E3BB4A1 /* 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"; }; }; + 8CB94281F450E93291DE3347C906D920 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 70AF0374A0C974C8FCD8E23041B355E6 /* collection_entry.upbdefs.h */; }; + 8CBE562D8CB143563C7883ECF1D8B907 /* blocking_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37525F35EDAF53DE1E4E8FADBBD4B05A /* blocking_counter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 8CC3F5B98312529916B4EED0B81D2AAF /* raw_logging.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 29ACAFCADF3FF66CC56A1C3D78DB8B2E /* raw_logging.h */; }; + 8CC663D28D7CA303C209D2D04782BC98 /* uniform_helper.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 356335F3B31FAA05D7F6EE5A31DE2C9F /* uniform_helper.h */; }; + 8CD4C046D8667142ECB8C08765C579A4 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E12E8D566FAF45FCAD196BCA4B92A17B /* grpc_service.upbdefs.h */; }; + 8CDBAD48306C01EA468F09DE79081240 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C7A59E75EA30D3AC8202A07F9C1C58AB /* cluster.upbdefs.h */; }; + 8CDCC05D780B8852F545654BFA645BFC /* msg_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = F52E8DD757480375403A65E722992DB7 /* msg_internal.h */; }; + 8CDD9690BEFBA322AD01E33A0EDDD2BE /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = E30456D735D95D8C38AAAAE622055005 /* global_config_custom.h */; }; + 8CED1803DACF4798237E23DFF9806CBD /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = F4733682BA869D0448BC37B74CCBB0E2 /* time_util.h */; }; + 8CF3A7C15E832B353B560A87053A7BCB /* hashtable_debug_hooks.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E7EE1C224F0763C571AD7B9D0105D7 /* hashtable_debug_hooks.h */; }; + 8CF858607EB6C6128985198D179112C9 /* decode_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EFBCC660E5148BB857231197D240E220 /* decode_internal.h */; }; + 8D08B8A34DC7854F26A0CEEDD80E9282 /* cordz_info.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C1635AFD84A6B1B4041499D26FAF01A1 /* cordz_info.h */; }; + 8D24ABFC0BC9D175A94EE93597687DC1 /* overload.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CD7016891023E5ED7FA6673DDD1F1A81 /* 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"; }; }; + 8D24DB0FF92FC3746183D4215D72F6CF /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = D64A09F049F99289F7A8803ADD48DE7D /* checked.upb.h */; }; + 8D273D65251978DB378DEEE3F9BF01C9 /* umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 35587C08DED7EECF8F601C4185B4092C /* umbrella.h */; }; + 8D2B5C637E898877B48411FC64E87E14 /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = A22F7E79E07AC9D0A325EE756266DC6B /* migrate.upb.h */; }; + 8D30D9F282091AA860A0862A87FFBB2C /* x509_obj.c in Sources */ = {isa = PBXBuildFile; fileRef = F38FD5F3D8CDCE0F1EA0CC8988F092E5 /* x509_obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8D37F99789063AE37CC8F460FE5FA0D3 /* server_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A6C043C324359451D4A4E6C0402372F /* server_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8D3BAA76CA729CB85F8E90E9B4A98358 /* bound.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E9B562BC1288596A3E5062F05CE9CE6 /* bound.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8D408AE9171D1756197DF1263E27880D /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 62713261DFE8C7DE41FB439F9D4A21B8 /* chttp2_connector.h */; }; + 8D4AF63B2A9211FBE0A7E1E99FF40491 /* grpcpp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2528C3C880BFEA3EE930B275FE410BC7 /* grpcpp.h */; }; + 8D5CE88F9DFDA728FF9A2BF67F3B45B4 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E8C867C82832200FB3115DCC32263E9 /* quic_config.upb.h */; }; + 8D5FCF330DD308AE602885C70AC799C5 /* time_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 63FC37D1D86EE40DC38D2FCA94F9431B /* time_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8D675BF4C3D025F56B2AED07C13C02CF /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6F0D579F47928FDB95DFA056A689CF53 /* status.upbdefs.h */; }; + 8D69823141A81893DC239A56D08A81A6 /* resolved_address_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55674C7EE7F57FB87B45619E7967E73B /* resolved_address_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8D716E7A44FFA592AC4968A4EA951F06 /* hpack_encoder_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6E2E23BAC11E8C8C8DA298F18AA39B8 /* 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"; }; }; + 8D7DD532C86E112DB5D8A381DC18EE19 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E7439E531A2B4EB5820C3D676B31CB2C /* listener.upb.h */; }; + 8D9227B5995D06F7CAA80EE39FEE3BCF /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E30456D735D95D8C38AAAAE622055005 /* global_config_custom.h */; }; + 8DA7358F35B63FA7A373E724E85BE87D /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = D964A86004DCB03D0B2C06B2ACC1FCA5 /* global_config_env.h */; }; + 8DAC29C13D3B417F07E588893FD3BE9F /* cord_rep_btree.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 58B5BB47577401F706299ECA6DB4799E /* cord_rep_btree.h */; }; + 8DBB3229E72BA495418C4E9FB8F20DE8 /* pool_urbg.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 055787A302ABC737DE93D69BEA0A6F66 /* pool_urbg.h */; }; + 8DDDA0A6122D327FA2EFFFA4837577B6 /* dh.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B21D042FD206E82E3A4CB98773C02D /* dh.h */; }; + 8DE0FF364170DDB35A8CDD14F21FC43F /* service_type.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4AE5CFF2183C250DC7FC6C04A6B2886E /* service_type.h */; }; + 8DE23BE612A85CE153F00FD3CFBA688F /* FIRGoogleAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = CBF3F651D0E04E106315360DFABE9A9E /* FIRGoogleAuthCredential.m */; }; + 8DF4146AD5E54C90A7786A98FA15FC3E /* FIRAuthSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B4E699F60BDC9D7B947E956F7351296 /* FIRAuthSettings.m */; }; + 8E08D94BD92F350071FFA1E86454D046 /* ec_key.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EBC54060D85C73A0359E1AC1AE8BA2 /* ec_key.h */; }; + 8E0D78D34CFE2310D214428DE9C507F1 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 490F71E4D42C8D5B386EF3E2752A953C /* local_transport_security.h */; }; + 8E0EDB8F0397533D76ED4B89264905D0 /* outlier_detection.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 557B589946C7EC02A7EE572386E686C2 /* outlier_detection.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8E18B148B8781C55FE02B618E0956A55 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B52BADE309AAFDD6B7278A1DE1A4B87 /* http_uri.upb.h */; }; + 8E37CFC889448FED6732BBCB62E4CA7D /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4C3EF07B99AB4671688F8C8F60DC738F /* thd.h */; }; + 8E3B1FF795DA2D3E04564CD952116B4E /* key_field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 710349E5E371F72E1D5AB9F09AAF80CE /* key_field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8E401506A9A260979FD8E1ED4F278218 /* server_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 327C3F7CD52C11727E32EE2AEF37A055 /* server_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8E590B666E2BCD81AEB499499052A05F /* internal.h in Copy crypto/trust_token Private Headers */ = {isa = PBXBuildFile; fileRef = 2D599469E42946FF0C5167BDBE014198 /* internal.h */; }; + 8E608D50A54327123242F5C3ADCBF217 /* representation.h in Headers */ = {isa = PBXBuildFile; fileRef = AF39D74010F3156AE465688D8C4700EB /* representation.h */; }; + 8E6D212DC2099482C6534188BE966554 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E302CE0BDBAF46ED6F33137AAAEA625 /* cluster.upb.h */; }; + 8E6D9FF4C4D0D22ABB0D01C637663DA1 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 3BA5DA75BD6CCC7F96512FDCC497C869 /* tls_utils.h */; }; + 8E6FFB9565A9BD03BF270825B1FB7A95 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FAEE13B322EA73E2BA902F8F862B6F8 /* loop.h */; }; + 8E832CEED3105C5B45E0B64ED3985279 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D17ADEEAD91FDA8C6C122329E95479F /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8E83DC086F95EFF80CBBF900B37AD40E /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD6839A4B66CA9058F3762710A8C52E /* aws_external_account_credentials.h */; }; + 8E86E689DA09EEA0F336B12A1A3569BD /* rand.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BA784420DA8CAD5D19FEDE6EAAADD426 /* rand.h */; }; + 8E90C7631BFA265F042870114155FCC2 /* server_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9429CB622DF6DC1E05E32040C38BC7C0 /* server_callback.h */; }; + 8EB6EE9B515786487945D18C218FFDAA /* msg.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 17578BC869E742BB357A3CD1575791C8 /* msg.h */; }; + 8EC4E18A9969DD4F22F22862A132003C /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = FC305D3BE1AB21685F45311DFE9308C7 /* http_connect_handshaker.h */; }; + 8EC90B695760389473319AFB6A1E6617 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9786932E81B631C1491BAE8DD40D67F1 /* resolve_address_impl.h */; }; + 8ED40EA8FC9AFD36D03F0971C28D1AB3 /* refcount_lock.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AF8B08ABFF09681BA30041825072C29 /* refcount_lock.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8EDD2A5475EB1B13BAA66AD740FEA8D4 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0887F377419852A856F156B9B0AE94EF /* parser.h */; }; + 8EFC5E0F53435F083C4190B59B97D8AF /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC57BFC02C89F8CFDEA09B01A8A97B6B /* IQToolbar.swift */; }; + 8F1C0C27BE743BFFB45CE95AF1B8B35A /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 329058B2D7C9767BFF63C26857EFA30F /* socket_utils_posix.h */; }; + 8F1C34052CB9AFA27E7C40171C99FCC0 /* callback_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 49B2176F8D282A3427D5188FF3D84A6D /* callback_common.h */; }; + 8F2B519A636B8C8584292B7A91A58B18 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 13A81DECDB45B0513452F97881D5B2C2 /* grpc_tls_certificate_provider.h */; }; + 8F46B32230F86A027B24E9D402E0D584 /* malloc_counter.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = B931188CED9DB2CC9B4DF75D63AAAFD3 /* malloc_counter.h */; }; + 8F47802EFFF18D1480D5A4BD50A5C1B6 /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B3A0E7C79C10BC1B915AB5991D550A09 /* string.upbdefs.h */; }; + 8F4C851BD6DB2DDCE8DF6CA8F54182F8 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A30A37B7383A063EB13185824188B6 /* internal.h */; }; + 8F6B8A1FA78E566F94B30F743DFDACD0 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A7EACACD390B4C75B4D8D99A0F0A07C3 /* metadata.upbdefs.h */; }; + 8F79A8571E354071676A381DB7A5CA81 /* block_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = C3E0718250A8E4A74B431A01D19FE34E /* block_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F9353A830BBC8E885290A74CB060C84 /* GDTCORStorageEventSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F23185125D051E72E06DA02FD8109D /* GDTCORStorageEventSelector.m */; }; + 8F9BB87BC91C2C3523BFC0165D35B016 /* percent_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 663876DAA54F21351A5690E7EA796641 /* 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"; }; }; + 8FA30A0F9188BC47A95B97559A0760E3 /* grpcpp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2528C3C880BFEA3EE930B275FE410BC7 /* grpcpp.h */; }; + 8FACAA00F200F39EECCD0003310EF715 /* env.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = CB3642375BFB3A7FF907CD0C33DECD85 /* env.h */; }; + 8FAF416F46E13DE0D8F0A81408E63890 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 9429CB158195A0C2B2919781D29B9C33 /* GDTCORClock.m */; }; + 8FBBE79EAAE1DC87CEB7C289660FE444 /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 740A4D3CAB52397695F4157A914418CF /* router.upbdefs.h */; }; + 8FD1D4C9A28A04355BE5259321E584D8 /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = C6A531481170F7956D6F0E925FBABA66 /* alloc.h */; }; + 8FDCA86B8090F80DB47F185BFBA41550 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E0B09B8E39DBD7B2561AB2BFD17FB5B /* bin_encoder.h */; }; + 8FDD59B9AEDDAE331772A37E24EF5416 /* cord_rep_btree_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = F22ADBD63B4A43C576A2F7CCD1012606 /* cord_rep_btree_reader.h */; }; + 8FE62231B58B993AC94B7162BFCBBADA /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 740A4D3CAB52397695F4157A914418CF /* router.upbdefs.h */; }; + 8FECB27F1D672047C5736C1F7274E2F2 /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = F5592AE487A64F81BA6B6D75D03950E8 /* alts_handshaker_client.h */; }; + 8FFE6FB015D9F9C58A16D21FA2FA2867 /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 145D6E11DA81A21E9A97F366CF876104 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 90018A6E5760697D5C8D04D6BF7EA19E /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 913BCD1982DB939F726E9611FC22FFC0 /* frame_settings.h */; }; + 900F8990F88758FC13FD07E971E72424 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0AA469C5A2390D89F888254BE32C63D8 /* deprecation.upbdefs.h */; }; + 9013F2F26AB95EAC5900DA13AE1E06FA /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D3FE75F1B1D41CBD708A800DD8DE7E /* block.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9015C1DA73B70777F628A5BFF0B572F0 /* tcp_server_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C1444F0884C76B35AEEC6DBE3F4A597 /* tcp_server_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9084A18BD3A7100F8AB0E6610F296CEB /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = E0B72185B536292DE4C06283D97838F7 /* timestamp.upbdefs.h */; }; + 908BD70D5D97624830E7331D37B3441D /* eval.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = AC6803AEC8CE42020AADAC373F34D1B0 /* eval.upbdefs.h */; }; + 90969BECD8C86056DF1E047622A412FF /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = B31E493DE8DE83242F803FD0DD0041F6 /* uri_parser.h */; }; + 909843CF2FCF42346E37FFF41DFB1385 /* service_config_channel_arg_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A3370A34A8A42C350A696C7C66D7534 /* 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"; }; }; + 909EC6A700A4A16D1907C91C75DC04AA /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F16AF4276DECC40BB2F6A01E008B332 /* grpc_service.upbdefs.h */; }; + 90A9502C524EB760BE5643DE1F1418F5 /* bind_front.h in Headers */ = {isa = PBXBuildFile; fileRef = F212BA9FFB5A28E0D76AE4446168A7F9 /* bind_front.h */; }; + 90CB59DE0D374C45DB41A7B45A260E3F /* key_field_not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A9E14D70332E884566881FEB813853D /* key_field_not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 90DC384545A7A72DA0680CC4C80EC229 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A5347C2007CE7658DEAEE91C2477223 /* 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"; }; }; + 90E3ACEEDD654B54E6A1BC35F12C3DA3 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2BBD00E88D9A4E83D49B88F521C64FC2 /* scoped_route.upbdefs.h */; }; + 90F06A92B580B8A160031C01070E58E9 /* work_serializer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A879AEC0F0A243E1D3A00C3C36F00405 /* work_serializer.h */; }; + 9100B5D37CE669145FD0FF02C103549B /* bootstrap.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 02FC08EB17418E66A5E005DE0F37AE17 /* bootstrap.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9103C6D8C1A87837A5796D070011F8C5 /* thread_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34B27D61E5DA1540B8F9A17334862E18 /* thread_manager.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 91144BDBBCD0DB0DAEEE032CABF10A51 /* cmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E0E440BBD064290A9FEC9387097BDA84 /* cmac.h */; }; + 911A06C1222F9E5A434F1B09B4DFDE1E /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD294B92ECD517E655FB0A17B672024 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9127D2249D6BD3464DCE5A669EA17C14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 912DC9FA95A3059208A537C867A9E280 /* slice.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6994BCF4F4EED4EC0E81CE7E3CADA3A2 /* slice.h */; }; + 912E377C5B614B37A34B63FF0862ACD1 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDF70E20EEE2F656DACD6A5BF0E0784 /* trace.h */; }; + 913A6B3230730C0B23A48D01B8752F85 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB850A2DE46F29DB2E41E627503B4B8A /* typed_struct.upb.h */; }; + 913C86280A755EF2C5466502B641A8EA /* leveldb_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 066817BADE511AF17107CAC1FCB1F74D /* leveldb_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9153050D9F107A460B5AFAD0279D1213 /* pcy_node.c in Sources */ = {isa = PBXBuildFile; fileRef = 78D244023407702075C9C7D1F56E6674 /* pcy_node.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9156879C26151526CDF35D0E6BAD9A96 /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 118F8264C836D074537B3930975AD221 /* orca_load_report.upb.h */; }; + 9166C786C579D418D822721D89B53ACF /* service_config.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = AB0070729BCC641953AB26E53874B408 /* service_config.h */; }; + 916B60EF6C8BE059DB2358942664467B /* cpu_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78D65E58792CBFD7E57CBEC8D657DEF2 /* cpu_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 916D85EFB3CF479F72C884ED10CDEBD3 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 396DBDDCB905DB57DBCB4BD46C24ED3E /* cluster.upbdefs.h */; }; + 91843653B90E2C41631C640715F24DC2 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B10AE260DD1CD28D3AF1D2436CAF94AD /* udp_listener_config.upbdefs.h */; }; + 918FA891294F089EFDBFEBF872C5F00F /* create_thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA0CC930780CED4170A870FF485F6BE /* create_thread_identity.h */; }; + 91ACFD4A2F4EDD9D1FB3A8FB635C4D3C /* struct.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4BAC2D3DDCE5899C9DF403F682E26A2E /* struct.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 91ADBDF1733F57D7E0AA0179B64EB3D0 /* typed_struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8097ACB8095A69F1499BB0CF65AC0EFA /* 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"; }; }; + 91B10FA623F2BD581D2AAF286C64B59F /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 877965113A7A741215891D68DE9D45C4 /* resource_locator.upb.h */; }; + 91B5E625BA72911C39921FBF4D71266C /* rpc_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 7F8949D831C4D2F73FFE546A0CA73752 /* rpc_method.h */; }; + 91C02613BD3E4598A751B14B453A1C9C /* buf.c in Sources */ = {isa = PBXBuildFile; fileRef = C99C71490F8B7E3EEFD1C3B55777D97C /* buf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 920519E5B45C854FA043C0BF067D33AE /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = D87B85409A67476C18535E1F3BEE22CB /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9205A64F7B5C660D7E680834B07EF7FE /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FF04A5357ADBD8413D0900AD2C7A263D /* circuit_breaker.upb.h */; }; + 921F6049437C1A0F2988436E3AE47FDF /* threadpool.c in Sources */ = {isa = PBXBuildFile; fileRef = CF89D8AA06D13A1B96598C7F3344355E /* threadpool.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 9226787A79621A2C317A3DB4D6C94287 /* syntax.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 58AA9126E1537B7A9F2CED6CCFA40D01 /* syntax.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9229DDC53675F1FDFB0C4C3B7FB56577 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EDAE58A85DB0EE87E186CCCDF2E473 /* internal.h */; }; + 923251B940A869EE3E88B8ED9B95F80F /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CA04015DD20574F92E7BAA916AA6CB1B /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 923795A4FB5BA0362216AD3263E97355 /* prefilter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A905AB9657C6C7863C017C3344DD351 /* prefilter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9237EA727B9A60375EA5DFA8981FFC4F /* sockaddr_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 151D45A82F00DF52927D877C7577CFF0 /* 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"; }; }; + 9257C64CC9FFBDB27084E01BDABE8E66 /* pkcs7.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BF3E9010E79310DA94C901877071BF6C /* pkcs7.h */; }; + 927D2A71A5FF64ACD946D9055510E5D1 /* chttp2_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AD4C25D111EBCD7A285BA534D7114AD /* chttp2_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 927EA343827AE71911DD621AC4B3AACA /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B6789BA15DC23EDC6CE289C05236B08 /* thread_quota.h */; }; + 9285F2F9507D8CDF486854DCC80388F1 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 634567A16F2336F2EDC62581B1C95B67 /* frame_data.h */; }; + 92AC525BAFACCC69F2FD6C02E898EE16 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F731FB3ABE9F8EBECC0796D509137B8 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 92B86E580AEE9C769B0477E2FBCDFD56 /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC60A96BE17402D5E64335CAFE447E8 /* propagation_bits.h */; }; + 92EC7BDF95106FA4BB22CC8439B8E5DE /* FIRPhoneAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 42FD8A4A0C7CD39B663EB7E302B645B2 /* FIRPhoneAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 92EF1AB84C40D61351AA0ADD5D09E098 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C75096FD45589E24775540F5BEEBA02 /* FIRAnalyticsConfiguration.m */; }; + 92F71D58D8E0B8ED55F8D0D9CB7017B8 /* grpc_completion.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF024A9B4735921F5BDE91A436CAAF44 /* grpc_completion.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 92F88957F1FF8F9188C227B37DA71C2C /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FE62FAED0B82D41029BFDB7AAA32A6BB /* endpoint.upb.h */; }; + 930117271CEBBC5FC67241D3B7E41C77 /* front_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = EBBCEE53953D27CE077646266D0A8E0C /* front_binder.h */; }; + 9310ABF27460287AEABE4B1F1DE74744 /* tls.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 19076A2C5016C5EE3A67DBC27E848691 /* 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"; }; }; + 9327AA3CA25F8153CFA5B99B6433E748 /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECE47FF262A1F6B0328D935830F2AD3C /* context_params.upb.h */; }; + 93396EF8F698EDCAC55D80321CA46D63 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 772E5117E1A32631FDFFFB53A0491588 /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 933D6B93AE34419AE694A762B629EBE7 /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C85EF0D08D2FF11034DA87C23F94731 /* csds.upb.h */; }; + 9349586557AC783D1064C26EDAD04C0E /* cds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BC0F1F1A4256EB58FB26AF116CBC8E40 /* cds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 934CD3CEFE29163660FED7A8936D0625 /* elf_mem_image.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AFD7C45756478E689495818423B017E0 /* elf_mem_image.h */; }; + 9350DFA326FD94DA8AF1F35A4DF297FA /* time_zone_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBC7210758545198E4626240724FD3B6 /* time_zone_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 93600E40B414A4EF4D6221F8544D13A0 /* async_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2377BF3B9FB76D3DFA2304AF542EDFB4 /* async_stream.h */; }; + 9366B9389BD2B3395FBE4564E82DE1AD /* barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CBEEDF021F79CF3D24C4CCB7651ABA9 /* barrier.h */; }; + 9368F8570D70FB4FD5F7A872407766E0 /* compression_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B6F45E436801A1BFF694BD3D754D6CCD /* compression_types.h */; }; + 937754F812470BE4B653C8B9B940E51A /* binder_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09F5F49D53B9BB3DC563AC80A2EFAB1B /* 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"; }; }; + 9383EE5C14BACB3E3F6DCCDDE4F6C563 /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9A8C6C2BDD094FD039F5730EFDE8C3C5 /* context.h */; }; + 9387DE09EE78C0F9AA0E9A9FA225612C /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C9ACE6358741EB4F732E20B285549454 /* descriptor.upb.h */; }; + 939D32F268CE14F712078E5077D28282 /* pcy_map.c in Sources */ = {isa = PBXBuildFile; fileRef = 146FD369F9BED99CA09DCB1567E03720 /* pcy_map.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 939D33460CB97066D64D370D2E5723EB /* FIRFirestoreSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = B51DDA23E16F0E47E3BFF773C123BDF3 /* FIRFirestoreSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 93AEDA8B26606284FC32C92F1A1AA40D /* tcp_server_utils_posix_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E5FF79ECA85B7E16399D9CB96ED3D3F /* 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"; }; }; + 93B552E183C5DCE7521324851CFD7462 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A13186F15804755420D3E3AFF50C38 /* internal.h */; }; + 93BA242AB81D7E70E80AAC268952C501 /* randen_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B5CA7F4B83038061D4EE6BEEC960BDC /* randen_engine.h */; }; + 93BEDC6A6D3A4E6CE9D7A4D55B95933D /* sockaddr.cc in Sources */ = {isa = PBXBuildFile; fileRef = F602A603FDEBF028767129997CC8BE0B /* sockaddr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93C612A77C07FDF0C8813BD6C33809D4 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 198C357C02FEF365AE8234C0CD73A2CC /* wrappers.upb.h */; }; + 93C6BD00121B4717A2CFFA7D69DFB8BF /* tzfile.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 43032D4882273A07DE8A7654F1C4BAFF /* tzfile.h */; }; + 93F77DF766AD9CA38AC11DFF8E68B4F2 /* grpc_service.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F7A0B5335D9EC081986BCB9304F71700 /* grpc_service.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93F7D1EB94BEB690B6719CF604204EC6 /* tls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 102F12FBFF72CECAFB0CA4B9E9A41FC4 /* tls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93F95C2292C52133619FE49AE77FC87E /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 77A7974DD49392B55DC143C7ACA24D39 /* atomic_utils.h */; }; + 9416A9350BBD8F4E16ACF7C8ED5804F0 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AAB4328C9B8F610F0CAD473987B725 /* combiner.h */; }; + 941CC353D37D5316B382F1D666E8FE54 /* grpc_if_nametoindex_unsupported.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EA929391E979C6C3610357AA3851912 /* 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"; }; }; + 9425127CE04B4E0A0892387A4A5C2975 /* p_rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = EDBB64577D13FEFA1E5D232FEB69F8AD /* p_rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 94330305C101FD0E240899608BB3D2C4 /* secure_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7F41942CDE5EA53B138D359B83DCAB6 /* secure_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9452E64CAE5673751EDBD321F6F7243A /* output.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 897D44C94A75ADF2B2A6476EF9035A40 /* output.h */; }; + 94587AD302BFFAD6FBD5BBD55B62197E /* identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF5884D27AC29DA27D743A63C7245D1 /* identity.h */; }; + 9459A5B9E6292886ED0E2074C3EAC3FE /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = E3C287327CB905A8CFD3B0BCBF671F71 /* load_file.h */; }; + 947FBA4E0DDCEF8E29DFCE93834D25CC /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A7974DD49392B55DC143C7ACA24D39 /* atomic_utils.h */; }; + 94994DC5D8FE6C62FB6A8C456C76F79F /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FE86F5C36629FA2E79F4E65DE4973094 /* parsed_metadata.h */; }; + 949EAC9ECEB1EF68BEA3B2A6E1D44ECD /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D3EF67F73804E37ED1DC4C006E04DD8 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94A0FAAE4E7C62BD14B85A48B88D58B3 /* pollset_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2403EF933B9FB179636E4156668A1D17 /* pollset_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 94BA108162111B87C69D1DF9EC63F7BF /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F0289768A955BB891AEB439771BF16 /* bin_decoder.h */; }; + 94BF33D83311CBE3F988A55665225CCC /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = AACE42F21E333D5C884B48171B19FC6E /* util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 94E7A915F5A6A285837C6802220626DB /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 9CB7B8147038BF1175402ACD2895A616 /* grpclb.h */; }; + 94E983892A480BBAE7AA9BD7741373E5 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A6C8AA95D15B12577C8E9C6458EF19 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 951943E03001DB479ED8A7E687E30136 /* udp.c in Sources */ = {isa = PBXBuildFile; fileRef = F810BA782A8F9A327A4F37F535FDEC25 /* udp.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 951D23899AEA1930D9AE4ED4808B397C /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = AD1B5494ED3619D7254F7C9EA1BD3FAF /* deadline_filter.h */; }; + 9521FADB0E5E6DEBA0E740EA65B39A31 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 80970750882AC55CC666A8DAAE072D87 /* alts_tsi_utils.h */; }; + 952E0685B658B16E2097B2DD85F1CCB0 /* str_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AEF06ED64999A6F10753E3EDAEDF7A5 /* str_split.h */; }; + 9534CD1A8407663768FC17D874D27308 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 1000DC36A6C7933EABF1DB7E0C95C009 /* fork.h */; }; + 953AD1134AE09DA89A151DD74118B7FC /* any.h in Headers */ = {isa = PBXBuildFile; fileRef = 441C1B0460B79D6FD2E83B38B32302EB /* any.h */; }; + 9547FEFE2D980281C56F79227927B9C9 /* quic_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 39DE07AE92093F3843EBE19EEC9D9F68 /* 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"; }; }; + 95539361B283A1BC8B01489A726390B4 /* FIRResetPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BB4312F3C1536478D54B6CFD2694530 /* FIRResetPasswordRequest.m */; }; + 95683F91C9B3A9271FDF64D7F6C943F4 /* tcp_client_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1D37B3907D8B3354CEBB3285181C738 /* tcp_client_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9568BFC5FB3BABBE1136B5D5C5FC50D3 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A35D4FB28A438142E0B19E7D7145E3 /* tcp_client_posix.h */; }; + 956DCDCA93A1A669E0605B8F0A2B61B3 /* text_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D73A913E0C81296AA5B6889B4DCB54 /* text_encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 956ED52BA8EEF9F353EBE376BC9F298F /* e_rc2.c in Sources */ = {isa = PBXBuildFile; fileRef = AEF48F617280A2225A91CF5C986DDD21 /* e_rc2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 957D566B0E40FDB92A3CFF0E084ED6A0 /* FIRStartMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = E46B8D887C2FB665C5516BE6FF751BFA /* FIRStartMFASignInResponse.m */; }; + 95ADEF9E89541D1A6CCBE4D7651119D5 /* inet.c in Sources */ = {isa = PBXBuildFile; fileRef = 71532035C5419BA505928148B8B69A9C /* inet.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 95B9D1CD171A3913A5BD687199BBECAD /* atm_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A6BF954226F3C86469A411A6478CC4DF /* atm_windows.h */; }; + 95BE63068F48E36DE96C289542749335 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = DCC6939CE4AA8BE43C89A7845A85C517 /* GULKeychainStorage.m */; }; + 95D86235CC3314AFC7EE581CC0B7F020 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C94CEDDBD08866F36CB208C07CB3CD8 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95E7ACD0C161F7F4A3286DCC29A8E443 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 8572275BAD31AF313D1E9651ECC699E0 /* channel_stack_type.h */; }; + 95E8DD9617B64F260D90F63343FB69A4 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = F78D4F6D3A907ABFE2E9F53C83924D48 /* local_credentials.h */; }; + 95E9FC7ECD4E956145D5B6BF467C4CC2 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 51DAB97EB9A8A3D3B41D1BCE503086AA /* varint.h */; }; + 95EE06E0F1FAD02BCF0A5ACBE923E326 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0C528433E4AB648F8EFB9D48FF421D9 /* CoreTelephony.framework */; }; + 95F0BA1907032DAA1E998889A5FB7DB3 /* cds.upb.h in Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CDC97BB76E35D7F30C048607AACD4F38 /* cds.upb.h */; }; + 95FF1D7D508266F6FEB92CB2AB3652AB /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 52168929D6894E17968064856D22624C /* xds_routing.h */; }; + 960EDFD23857C9EBA3C66157CC119334 /* grpc_connection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7070CCCCF5748DF8CDB36F1E3EDD89E6 /* grpc_connection.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 961653E5BC05BECD015E307CDDF95910 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 25FDF53685E5436630851E85F4DE2110 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9625A3951FAB864E4D1BCE8B06EC9E9D /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 15800B0EE834E5EFEF6D530B72BF7C01 /* subchannel_list.h */; }; + 962ABEC6E0EF6160D2F875EEF20EAEC2 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A0193A288EE4200049EBDCA32B1B2E25 /* grpc_service.upb.h */; }; + 963AA73364328FB7E04E2FE47E726E35 /* waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 47552940EDE352E5790999AC8E1A68CA /* waiter.h */; }; + 963F8AA6477EF827B5BA1F926C0883AA /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5803ADE7B3AB6FB872E2B2286B208C3E /* chunked_vector.h */; }; + 96412BEE2836886FADF99BDBFDF33A88 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC39D8F1175E5AED6FC651D797346CC /* global_config_generic.h */; }; + 96550C1A29F871AA6323199FA2E877BB /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 524D7E83E927142C7AA251D862B1F9AB /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 965BDE3F4A4F7635E36EE9DB466C2E4B /* gcm.c in Sources */ = {isa = PBXBuildFile; fileRef = B30A528879B61F383A42778288C76C92 /* gcm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 96605BD33730753BFE97FD3BA561CBB1 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 6313C40257275E95BD33D614D3445410 /* call_combiner.h */; }; + 9668DD96FE110EF1D09564D5B2A1B17F /* dns_resolver_selection.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9EFE1F476CC5B039CCC68D5EC13805C /* dns_resolver_selection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 966DDB3BD0EA08915FF8AC0C7C567B2C /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CD133E1028F8BFEAC1DACCC6090A8DE1 /* overload.upb.h */; }; + 968D2F6934AA65C234F413BF2DA90FCE /* inproc_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5FDA73441FE5D284321681223E300BA5 /* 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"; }; }; + 968F2B29B035C51419D7F2C0C60EFE04 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = B79B40B94165084BE2B90DB925E978D3 /* examine_stack.h */; }; + 969966F847A05575481C5678E391AF8B /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 203099FB0E8257AF41C6F891C3C55B6D /* api.h */; }; + 96A827E29B9DC7058CF273D80540BBEC /* leveldb_migrations.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC735BCC50033E1AB461C0ED4A6536C1 /* leveldb_migrations.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 96BC343F7D4EEED91F486A6DE7F98CEC /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 1BDFBFCFC84F2930C0291A23840C86FC /* tmpfile.h */; }; + 96CE35ADAAF3B89F5E60092A3A90167B /* secure_auth_context.h in Copy src/cpp/common Private Headers */ = {isa = PBXBuildFile; fileRef = 92DFA4416E263E772F71F89F9BCC8143 /* secure_auth_context.h */; }; + 96D0BC749969A56257ABAC0214A601C9 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCFC3DB92BA3F61AD2B0A282BC91E0F /* ssl_transport_security.h */; }; + 96E89966C4A3B45E59F7F687E73BD856 /* grpc_alts_credentials_server_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC411FEAB616521F0A7A822B7F964777 /* 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"; }; }; + 96F55906D1A46701858D7ED2EF45875F /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B79771B7F01C3CE6DAA5D4D8875265B /* message.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 970350AAA7073FC60BD0769B07E4491C /* server_timestamp_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01DD2AF3DB65653F1F8710B7A28935CF /* server_timestamp_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9704914202E19AAB2C4059587A85D979 /* health.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EA6A3E3C9EF16C263706A2C3F9D9807 /* health.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9719CCAD57564665CB5AD1E4876E76F1 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FDEE7B96072B088D68D10306D615233 /* client_channel_channelz.h */; }; + 971B65C6F95AA778F13AB01AAD3E90E4 /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0126B52F1141B03D61C3F41D44B994C8 /* tls.upb.h */; }; + 971D4EE32AE33D9B67F89A7C226C95A9 /* string_constant.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5554B7F91793B6890CAA3EA32B72FA /* string_constant.h */; }; + 972049FDE8D5B6806822DE4CE6A1335F /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = A4892686DBDF059CEE86AD8608CEC3A5 /* slice_refcount.h */; }; + 973557F5FCFA4C070C8C5F69A5BC97B2 /* deterministic.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C07CB86C3152848282FA1CE23AC0DEC /* deterministic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 973CCF5372119E99165FD3E727AEF4BD /* http_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AB6D41D889746350C005621CD558C9E /* 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"; }; }; + 9757BFD2DC479844121239581DBD3E79 /* asn1t.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 798E8C54A3924A91102AE0B6230BA4FC /* asn1t.h */; }; + 979BDAD25FBB8ED976D798E7F495F741 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 497E117FE5B34BDE747CAD5EC371C268 /* alts_grpc_integrity_only_record_protocol.h */; }; + 97B639C9C62F93C30288DB74CD57463E /* string_ref.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F97B32F463E2C5EACE7D8468D433E84D /* string_ref.h */; }; + 97CF68C05D95D8EFEEF1639652846A52 /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 88A2399C198EB36223D5493C17A30453 /* connectivity_state.h */; }; + 97D0BD0507F0AECF6DE2551F38F89BC9 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D8DA2372B5110504AB5BC8B0B97348F8 /* route.upb.h */; }; + 97E06696D0153215636FF56195A7BAA6 /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 41FFF27F876FCD691DE067A5A6BB448A /* retry_throttle.h */; }; + 97F517BA280944B49B2A505391067961 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 162C6DE9E32FEC142567BDBE275447E7 /* memory.h */; }; + 980520A0FA8352F2803F71208AC2277E /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9E515CBD6869BC40A229BE5697607C /* resolver_registry.h */; }; + 980834427BB5BD1A751BE1FAE923DABB /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = F18F7F9EB9772B9F6F708D26C1A28ECA /* check_gcp_environment.h */; }; + 98114647B86A2FCC7EA59ADA1C4EFA8B /* load_reporting.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7193C679299DEB859CE57EE44E430486 /* load_reporting.h */; }; + 981C0283F02494E032A6292E987A9F37 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DEB1FE9DF15D5132C2DED30E63F02C6 /* hpack_encoder.h */; }; + 981DB743455F0BA335FBAA1AEA003F67 /* x509_set.c in Sources */ = {isa = PBXBuildFile; fileRef = 10622B48EC6FDECF4980D35B60C0B649 /* x509_set.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 98257C13881E26405C7572DAC5D0949B /* workaround_list.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C3AF09FFC8175DAB3DD55A2B9080EA22 /* workaround_list.h */; }; + 982D6D36FA92F72BA679C753812D3568 /* convert.c in Sources */ = {isa = PBXBuildFile; fileRef = C00FD1CABAB2CB01D6FB9411D7042884 /* convert.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 984D32453E8589168D4760F5C5489131 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10E7846E306D2A82EB57ADE332A92B7B /* status.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 985078602F377D609114322B53FCB93D /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = A05A40261754506FABB178A913D4875F /* load_balancer_api.h */; }; + 9855A83A86008DE5B1C61A74F2DB8560 /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = 7114A1BBD0A88B90A7BD7BA736A002BB /* crc32c.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9866766F1A4BA5CEBD9F970EA5D30F8A /* FIRPhoneMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AE186D200463881AA9E8C56AC37AE6 /* FIRPhoneMultiFactorInfo.m */; }; + 987EA066020262193F602053033262D6 /* a_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C88EA555BAEE7B31F9CF9B5F4AE19D4 /* a_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 98866029A92BE005C83DEA51CF3BBB43 /* xds_routing.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2C09302D8B38966851F525B109AB81F /* 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"; }; }; + 989DADD4D53DA77324D892AF89FB4156 /* base.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2285038BC5A26D6C8AAF9717EF2160 /* base.h */; }; + 989F6A0B4F5DDB5264730154B74C0F0C /* vdso_support.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EB336BF11A711432F910B52B063C3CF /* vdso_support.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 989FDD0C1BFD9430BC54A9F0B8371295 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70EB36025556F9690F215AB682B84540 /* IQKeyboardManager.swift */; }; + 98BA840987D333FA2937C1495B271F18 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE47FF262A1F6B0328D935830F2AD3C /* context_params.upb.h */; }; + 98CD8F9303541DFDA6702DAAE9BFE4E8 /* char_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 261FBBE7FA4EB844936AB2D3BF2EEA81 /* char_map.h */; }; + 98CDB1CC48E86191A7B78B98CA8AEA63 /* pipe.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C5BAC96761DFCABE4AC41DD71319A40 /* pipe.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 98DA13DBAA28173793AE34961C521262 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A531481170F7956D6F0E925FBABA66 /* alloc.h */; }; + 98E39D34170B6F82A9C0078AFF3D9E0B /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 849C02D7041F661F4B3866E9502F5A07 /* load_system_roots.h */; }; + 98E6847CA8EF72B4094B5BE0A488B0DF /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 78B6B707EF284BAB3C353C12785B1CA1 /* endpoint.h */; }; + 98FB337781D055C28037AD90AC4C54B2 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4492CB36E7CA1653A2EE6413BAD60735 /* config_source.upb.h */; }; + 990605F225C8E0117127ECC50D9A978B /* unix.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 6EED866FE480A9B5A210769C74A1115F /* unix.h */; }; + 99068AE9A4BF8D5D3667E9D252BD7F46 /* FIRAuthDefaultUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C6452C5F9FCECAC8273E733BDFB741 /* FIRAuthDefaultUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99107F2F5639004A480E24D11D8734BD /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 3779E0F16F1521F6F3277F478A65B3C0 /* buffer_list.h */; }; + 99129B375A7C222F698BA0CDAC7040BA /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 881A5F2831C8F1406AF1DDE69874A1F6 /* resource.upb.h */; }; + 991B569414ABF15EB4EE2FECCA809791 /* server_config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8FB3ECF23FD324FBE2C5036B4160DEBD /* server_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"; }; }; + 9923C5927072AAE226BC7AD530206556 /* ofb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6644A7F605E4A3D1A185E76E48E19F44 /* ofb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 992FD5CFAB3AE959C001454E5E36BE87 /* strutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B827D0848DAE139C23BBD236D7C9D3B /* strutil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 993A6B2FA5974965833B6847312CC6B3 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F78D4F6D3A907ABFE2E9F53C83924D48 /* local_credentials.h */; }; + 993A8EF5536B40D18D1C06FCC145E476 /* darwin.c in Sources */ = {isa = PBXBuildFile; fileRef = A19525F33674D372058D61FF2D3D3F5C /* darwin.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + 994916A7CDEEE98298A1EB422DF90F8D /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = D8949839E9396BA9155319F8AB64DD05 /* jwt_credentials.h */; }; + 9958A262BEB6EA9FE6501BE6BD8AB508 /* FIRSetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E93A68160D429C48D952AEDB6D5474 /* FIRSetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9958CD92E96B85CC5E58D981D2D67C1A /* polling_entity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9352576ED027EE3B325D33C6A5865AF4 /* 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"; }; }; + 9959621149C450322108B2AFC8FED230 /* rds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AAEEA2A09150DDCD5716B7FFCE5F33DD /* rds.upbdefs.h */; }; + 99638A5C59EDA830389B306DDAA90262 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 1430D03B25D104A42F82CE76AD517CEC /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996642B3A0322A09824DAAE1E6359153 /* FIRVerifyClientResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A4880463DB317816F763DBF10A2517E /* FIRVerifyClientResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99766086EB1D759038BA1356F92B0E77 /* atm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F9887C18FD290B3FC48ED448BB3AC8C /* atm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 998FF50326174A4A3177FC4CD6C6E301 /* tls_certificate_verifier.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 2EDEA4B672BEF332C5AB18AC0B9034FD /* tls_certificate_verifier.h */; }; + 9998E36B34ABDDFD667C5133EE2E4F1A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + 999C3B35A01F0CCD9B7C7D8E4EBCC687 /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 08D8F550974F11AF5EABF9D96ED3AED9 /* binder_connector.h */; }; + 99A105A216EDFF1C5E4C28051CDDA107 /* db_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53AC386B0850DF29A012F1C2BE733C22 /* db_impl.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 99AA642DB79A356EC60A9979B4651A2E /* certificate_provider_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 82A59E6E4AEB2EF6C4B0620D3837A95B /* certificate_provider_registry.h */; }; + 99C54E183594F58C54D0D6E47EA867A2 /* document_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB222F29B01B461D74EC283FE9967EBE /* document_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 99CA3B1D1AEACBC9383A994F5843358B /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DCAFCA36C17F097B39508480ECEE77CD /* http_tracer.upbdefs.h */; }; + 99DA4B5EC19DF79EC213857E35CC9F39 /* div.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B4D2D3501E5FD23A3F0E48EEA70969B /* div.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 99DAF7556CC06100637ADDF89C5102E5 /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E4A4FEE82EB285236C12E3188E6205 /* inproc_transport.h */; }; + 99DE05412944634F0A6A5AB66154A3E8 /* stringpiece.h in Headers */ = {isa = PBXBuildFile; fileRef = 788895ABF601AED9FD7556E17B0C84E5 /* stringpiece.h */; }; + 99E2B06A117FF88621A9DB5A6FFAB490 /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F4F59497B3D80F88FA6C3C5EFFB0C23E /* sync.h */; }; + 99F0EA8852618803FC091AA500DA154C /* local_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4783AF1178193413669B02559EBBF983 /* 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"; }; }; + 9A0234B503EB18DF03D73BCCFD8A6E16 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D7145FE966D1A57FA5273801F45E57 /* iomgr_internal.h */; }; + 9A14C68F1E3BE1A6F6150C11EC9B7406 /* cordz_handle.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8B20B4103C0E5F35249B039FCC4B515F /* cordz_handle.h */; }; + 9A16DC4BB986D7326F2124D1B07B01E5 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D964A86004DCB03D0B2C06B2ACC1FCA5 /* global_config_env.h */; }; + 9A239023977775FDF32F634D018161FE /* authority.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D4533F2A36AFFE480A9F7FAF5E34248 /* 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"; }; }; + 9A2A19EB7804A50230326437A7A381D8 /* channel_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95D8117E65C593C0C7B1713D58654AFE /* 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"; }; }; + 9A41918638C49F51640CC453FF335BE9 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = B039F1D718EBAC0531ED804E9B18147D /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9A45F3D2E811EDB79CD22AA4C573A621 /* server_address.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 7F857556AC267BAE04A7D84DB5D70EB6 /* server_address.h */; }; + 9A4D2E02E728810A1398A75710B2717A /* mutex.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 9715E2498C15B989B352212950CDC1F4 /* mutex.h */; }; + 9A610FF5EBA5134C0BF237956EC35BFD /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EB7531907CF6D24F9726C2E2127BFE13 /* xds_resolver.h */; }; + 9A6C1A75FA39F0F842CD04206E1E4484 /* server_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A306AB4ED438BEA0DFFBB16B7F30A79F /* server_interceptor.h */; }; + 9A71000F6738DB427BAED401396B3304 /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B8CE964626F35AB0631199A33A0649D /* range.upbdefs.h */; }; + 9A818A09A5AAFC9C8EEFDE0577FCF5CB /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 29A51310FB6684DF3660C0B33E9A59A7 /* internal.h */; }; + 9A9D02075F5AA5585BE5CEB2916BA563 /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 1041B58E8196CF0D0F0DC3EEBEAD5054 /* grpc_tls_certificate_verifier.h */; }; + 9AA0600511243924C54B10C8176F8C7F /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 24FF28E0674B5CA68D1A64E6BFB66B9D /* status.upb.h */; }; + 9AA3F47BA5FE461B769D5A931CC266EA /* FIRAuthWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E24F32126A81E77B19F2C15A8A12B0 /* FIRAuthWebViewController.m */; }; + 9AA434A6C9E0B28DCF5B43E951D303FB /* string_constant.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8C5554B7F91793B6890CAA3EA32B72FA /* string_constant.h */; }; + 9AA73192A17CD4526DE60648FCB2E36A /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8258791535999377ECF95F6C05A42690 /* arena.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 9AA9C0FC3F77C51569D101FBB33A6531 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CC6BBCD8477E1A3B2223362E4153EE /* cpp_impl_of.h */; }; + 9ACD0B7C21A71CEF23400A58C8105100 /* murmur_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = C689853BCEC04F39DBC3CDC25ED9B530 /* murmur_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9ACDA14A0A27B84C21E9613916145A16 /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C780C23EF2208591C3E842433F5658E4 /* executor.h */; }; + 9AD76DCDA58B643FAFCF7289DD57E348 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EDAFF821C8C502AAC716571F79D85D75 /* metadata.upb.h */; }; + 9ADC0A004F6FD5715441FF6BA1FF3744 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3E505547600DF223F5A37FC073FFD086 /* substitution_format_string.upbdefs.h */; }; + 9AE1E8447C6BD738E131D794E9A61448 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 70089ACAEC66A055C801C99325A4898A /* listener.upb.h */; }; + 9AEC32F224D3DB21D829D8B6356AD297 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 06A9CDCE24434CA2EA25945DD7B50187 /* grpc_tls_certificate_distributor.h */; }; + 9AF17D89CCA3C1BF57B3E0DDFDD33A92 /* channel_args_endpoint_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = AC1A0A7DFCD286929648B1FAE0A14B51 /* 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"; }; }; + 9AF4CD2C1DEE4F1EA6D3386E3010CAE3 /* abseil-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E755A98FF924B8B99D499E5A1AA0B29 /* abseil-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9AF90DFBB443B01C2A8B4F487811C986 /* closure.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D9ED6DFC01AFDF930B2E6EAF8B62A328 /* closure.h */; }; + 9AFE40FE958961D361C9D41306799B6B /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = B42EDFE4CD5479CC36B78484866E7536 /* backoff.h */; }; + 9B073EF40CBFAFFD4D769C3C00C652E8 /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = CD220291DD02937BFEB2C49AC2105E6D /* grpc_ares_ev_driver.h */; }; + 9B08C98BDA89C3F9068E4D5CAE8C5E13 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 935D49CCDA0FF5CBAD50A7A756FE5B4D /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B0A4B538D155F0188C359F8BC0052A7 /* eval.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 325EDD8F5946E6544DAE6BFA35B43A4C /* eval.upbdefs.h */; }; + 9B10AD56D8C37E4E417FB55DC8EF5AFA /* client_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 36F988D40EF06BAB7C6FBBF995871876 /* client_callback.h */; }; + 9B16DA4838964A3EBE2E66D455A644C2 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CF260A4356D6041BB4E9D7FA7D31A48E /* circuit_breaker.upbdefs.h */; }; + 9B1774FC74E240A969E6A138D6CBC59E /* obj.h in Headers */ = {isa = PBXBuildFile; fileRef = CB48E2033BC8D5A675C38624F637662F /* obj.h */; }; + 9B340E2A4FB2438A685809628199C73C /* Pods-Flash Chat iOS13-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F843F9EA4341AC59B7F6DED6D8067F7F /* Pods-Flash Chat iOS13-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B3C21ED10B074665A00711EE4508B50 /* distributions.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B62D4F1182787DF22DB8C2713683F7 /* distributions.h */; }; + 9B5E00DE35DD1991A44588D3803874A7 /* FIRVerifyAssertionRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = FB034D79C25A19F3E63CA19E4BDFAFE9 /* FIRVerifyAssertionRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B61298BF384A185344874B7073BEED3 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = C57A40087137252FA4A06E35B91EA5BE /* ev_apple.h */; }; + 9B65063DFE6828B959D0F0828F57AA2E /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 74BE481278D4B8C57FA590A10DD8504C /* number.upbdefs.h */; }; + 9B680696F116FB7F685984C8138350D4 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DBED22429E28A5FBF841B6DCDB99499 /* optional.h */; }; + 9B68FC4DA0C4FE8ACBD4E532B8DCA80C /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = ED4E196EACEDA89C19CEB1555B75046A /* wakeup_fd_pipe.h */; }; + 9B7122F82A563975D35496DA10622F65 /* utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = 0826AD4D55B465E7EF0F9D8A5702EB4A /* utf8.h */; }; + 9B7464CB23AF70B6BA9B08EC378BDDEB /* grpc_library.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 12BE2B743BE4A30C2CC5716431158137 /* grpc_library.h */; }; + 9B75616ECA0768F51B31D5396F314328 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FD7D211322B5D3D691BD340D297086FB /* xds_http_rbac_filter.h */; }; + 9B76DFD832DCB9B0802B5A017853CEC3 /* FIRQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95DA10CFEB7AA7AB83F0799C26B76326 /* FIRQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 9B80107AB9B906283D6F9D1F94C1D470 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 3376C39883C69A3443CE04AF7CB1BC34 /* aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9B923F413EDBC329A6C8E723B54F9F90 /* pid_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED6C64A34877B7E5C3F8DA981EC3EC56 /* pid_controller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9B99AC414A195D5488020F5F67431723 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0BCB60D5B114261EC492AA2D3F7D66E3 /* xds_endpoint.h */; }; + 9B9BAA0348E850C122679E57EF2D03B6 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F2F6ED8B55E72E56F11BDB00A2752F0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BA1594842F1DE495CCC1CADCED35626 /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5D4288EED520DD7D8DC029C39A050AD /* 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"; }; }; + 9BA2C1D8C46458FBB1FDD0B00A3BDD82 /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = F9B172F7E02233AD6D323D4B04349142 /* uri_parser.h */; }; + 9BA748A53E5B9C61E39AC97313D3B505 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = B32A4B770F20EDD27C33060711D612B3 /* server_config_selector_filter.h */; }; + 9BAE08BCD7D4D470965EE53E0475AF0E /* checked.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 696AB914AF5F9986FBC651828F72F532 /* checked.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9BB53970BD349845723BA33EA5739D73 /* pkcs12.h in Headers */ = {isa = PBXBuildFile; fileRef = 843DFC541C4225B1A26D34C45132D306 /* pkcs12.h */; }; + 9BB9CA15379BAB1AC7898907125DC8F0 /* FIRStartMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9B57F54A40D98C10EAE29E3F9C063A /* FIRStartMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BBE949D4EFFFFDBAA21AA1ED326A56E /* core_codegen.h in Headers */ = {isa = PBXBuildFile; fileRef = 38CAE81BDC193A192B682DC6CD1C3669 /* core_codegen.h */; }; + 9BC1205E4C63E0431643D0CA0501EC65 /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = DB284E7C4E4EAAB08AAE74F89B00DB5E /* xds.h */; }; + 9BC132DB5079556EC51FFD74F1DB9240 /* FIRAuthKeychainServices.m in Sources */ = {isa = PBXBuildFile; fileRef = A10D0D00E0B2F6FFB703C52B37B48DAD /* FIRAuthKeychainServices.m */; }; + 9BD6A0C18A8CBD83B520A35F440A7AA0 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CF67D95B032EB40B43D6099104711A4 /* cluster.upb.h */; }; + 9BE8EAA282BA8B2DF208F37BBE100735 /* v3_pci.c in Sources */ = {isa = PBXBuildFile; fileRef = B2A36AD8C0F023A1AED64E1796A175CC /* v3_pci.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9BF307916778CC56F10394BB1B3590DF /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDEE89F293FCCFEC3C4C9BEBCE26F2A /* protocol.upbdefs.h */; }; + 9C1054023D6B42996CF894E4D8FDD8F9 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5120C5825D365733032564F8F7BBCD12 /* bootstrap.upbdefs.h */; }; + 9C12811A37F30D21317EFACB7483F69F /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 9CFC452A280BD8091CBD238A621270F2 /* altscontext.upb.h */; }; + 9C1AE588FBFC5A36117B1863EE517CCD /* quic_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9018A4B08997B453C54AB03F0A79D725 /* quic_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9C2D465173CDA80A17A78363FC848D6F /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA85223E8FB7D38B6D9C4DDD12F5618F /* discovery.upbdefs.h */; }; + 9C36B9F5A75E26A6F017AACE6CBA6B8E /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA7A6CC74669E4A400517189A0410AD /* env.h */; }; + 9C3F77710368D87F430B7D6683314E61 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 613B0D3859FAFBD69DD8EF2121CF2F7A /* descriptor.upbdefs.h */; }; + 9C49A823884521542D3488F91F0AF308 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 35CFDBAB2DF3427D0062AEB0D84A4C5F /* fake_transport_security.h */; }; + 9C5363ED8F52C347BE5D70261376D18E /* cipher.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0F032EC69A7D0081E03956C191F605 /* cipher.h */; }; + 9C55E8B7B89E33DF063D4AF0BEDC9D39 /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF3BCB91B825535DB87DA24D5D723A7A /* IQUIView+IQKeyboardToolbar.swift */; }; + 9C648E1F5FDC930BB6378EA2672283E4 /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E0A282AD7C8B84D1CA4DF8A555374FE /* stats.upb.h */; }; + 9C948C20311A9820DFA0D6692A685689 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2628E3421B909EF60D4064F91DB5987F /* grpc_tls_certificate_provider.h */; }; + 9C9A751CFBAE8854E06CF4FB9ED9C806 /* socket_option.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E01585D5EE13EAF99B21782B42995DB /* 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"; }; }; + 9CA04DCB5433D3CD78D8E65BCC439CEA /* FIRPhoneMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A8BC6A4373AD4E7F01605786C47E9F /* FIRPhoneMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CA6A4457B4F5039B196B8A16CA48382 /* sys_epoll_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D7BAE6B7E3E2068A1CEF30090B4940 /* sys_epoll_wrapper.h */; }; + 9CA9BCD02E64CB8FC656DC8B8F49FB2A /* pem_oth.c in Sources */ = {isa = PBXBuildFile; fileRef = D3953A16AEA4EA92F38D2C0309AFC939 /* pem_oth.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9CBCA503E0BBAF215E74EDB09B42FFF7 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 336AEA0D478579AD0455B11FEEAC47D4 /* gethostname.h */; }; + 9CBF30013ECB20BE8DEB8B100ED4B672 /* pem_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C0D0FE37BEF51F703EBA8FD1648EFC2 /* pem_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9CD4F129CBA839509B72B84694136596 /* stacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E0B3F4298A562DF404EE763DC0EC4D /* stacktrace.h */; }; + 9CE234E3470DAE2E7C78D11FA425271F /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C5B3DFB69F3749843207BB70517664A4 /* cluster.upbdefs.h */; }; + 9CEA6928E87083B30C76E52601080BC2 /* iomgr_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 976000458B3BFFD96274AE754CD628D2 /* 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"; }; }; + 9D00221F0A71BC97644448020B374CE6 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 5781859900B1E947D7510BBCB0CF0D76 /* channelz.h */; }; + 9D12C03EF85928A522733BE3920B1CFC /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1482574A051A389DB54596A9609F0B0D /* base.upb.h */; }; + 9D2CDE32141D253FED598BE7DFBC7E87 /* proxy_mapper.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 126E8649D741165D87C9D87A62104E7D /* proxy_mapper.h */; }; + 9D2FB831B4ACE10926E0DAFED7105AB0 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 4E6279DF857D0563EBC8192D586355CC /* completion_queue_factory.h */; }; + 9D35FE379EF746A44CF165941F75E9F6 /* mem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 70F975E9596667E5BD797F569EFA7501 /* mem.h */; }; + 9D3A1B1331DE5BD12CA256B00C1B5031 /* time_zone_fixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F40A5EEE2A6869D33B196F4F843630 /* time_zone_fixed.h */; }; + 9D497B67509DD7CB4E3C7B7216ECA510 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 096A4577C777108A77FCC83BFD800096 /* alts_tsi_utils.h */; }; + 9D541E67308EB86A2A64F64BBD7E83B8 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CE5CCD52BF239731484BBD5209F70D /* bdp_estimator.h */; }; + 9D7F43F40A551A4500A67D9FC91B88CE /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = AE4FB61735914D78871A7044BD3BBFD2 /* slice_string_helpers.h */; }; + 9D80C5671BF7CD2612CC8CA43144B207 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B7BB25739AF9E433BE8ADE063642EA18 /* GULLogger.m */; }; + 9D8182A0A4FEBA196B909A6D8332D07F /* gsec.cc in Sources */ = {isa = PBXBuildFile; fileRef = B555DD7C687F90D054D09B34C98D0E8A /* gsec.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9D8510D6B507F615B5332135A94CC7EC /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = A2AC46A0588EE25199E81C334DC799C9 /* FIRQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9D9FD91FF096B6BFE128C19D631D7E14 /* memory_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CE8F97D6ECACCB4400071230D4B898B /* memory_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9DA0785E0C3FD90076D767EC9EB9E832 /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 52B39CEAE8BA72BD85EFE35F1A19EDBC /* poll.h */; }; + 9DAC3D2EE24634849E212C38544B671B /* resource_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45B6BF8B1A1589D9D239A0926D071AA6 /* 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"; }; }; + 9DB3F24840DE648A8C1C65B1B9FAD1E8 /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 919774887117C902CEDC901D1DF25E3E /* 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"; }; }; + 9DB69E9124F97E070315FC8F91CBC153 /* d1_srtp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3730040AD7FDF9B02CDC18D3A8EEAC17 /* d1_srtp.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9DC0B084716F4E48AB29FEF5AC6FE542 /* GDTCORMetrics+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE4EA7E56A18425EF7CE22D6831F214 /* GDTCORMetrics+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DC5A2152C2AE0D0599800EAD648F694 /* numbers.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = C6A1C94895BD2E41F4BBF6932858C072 /* numbers.h */; }; + 9DC7B9CB1CD909DB6455FC7DBB7240AD /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 162643445CD199EAFDE2348B6B554257 /* alts_tsi_handshaker_private.h */; }; + 9DD3B03D41258DCBF365CC8339CFEB50 /* thread_pthread.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B014964C908B18868FACBEBAD3C1BA /* thread_pthread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9DD5C6D943FC10E511F8A8C60ABFDFF6 /* create_channel_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = E235DC66D55AD743C05FE5521CF188AB /* create_channel_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9DE6D24759ED78788202FE6767C2480F /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 88D8E8EB449E5FF259371BE8BF84503B /* http_connection_manager.upbdefs.h */; }; + 9DEF31FF7A7756909C065FF2E0F76B93 /* eds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 995E7BF357E15220AE93194C1C3E2AB3 /* eds.upbdefs.h */; }; + 9DFF8C7B9E6E582A986B057E1889333F /* FIREmailPasswordAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = CC7A0E9CA2BD44CA4E71AC377B3117D6 /* FIREmailPasswordAuthCredential.m */; }; + 9E0C08D7C33042E7C3488D391B00980D /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F4733682BA869D0448BC37B74CCBB0E2 /* time_util.h */; }; + 9E14A2A853A7C4945144D2E7D3A00659 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = F02F9A6236BF5305E266163E293CA687 /* xds_client_stats.h */; }; + 9E1BBF38C2A2477F0A33827BAAB5DFA6 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 5574AEF7F63E0D5632D47E8E659813C4 /* fault_injection_filter.h */; }; + 9E1E0DE9128A740827DB24DC54A00423 /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 99B246E5A78C7EE25817BB807F5C0857 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9E2ED562BDADF335A5442418050380CB /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 749C4DE49651E51D73AB76CD86B568AE /* regex.upb.h */; }; + 9E636BD5218F49A06D49C79E7F7512B5 /* byte_stream_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06A2391CCACB4391A01D3A6DF188A56A /* byte_stream_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 9E68CCCBC770C3BBEE1E34DB0D60B596 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 85489F6700C73CC4D6870F413D6C1B82 /* validate.upbdefs.h */; }; + 9E80CFA0A020AA77644FC05362F9A5D5 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C38037DB6EC55DD10758FD4552A32DB /* useful.h */; }; + 9E80FB77836DBDCDABA546AB4FF17484 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 631DD5BDE4C1167018A5138C69489B41 /* route_components.upb.h */; }; + 9E8A7080B32A34878BF18AFF7A253E3E /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 733E1CA7C71F7950FF73F6837C5546BE /* tls_credentials.h */; }; + 9E8A8E32B3179EF0864C9A13FBC889F8 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37C5A878B8F9C2938221A570432644E3 /* collection_entry.upbdefs.h */; }; + 9EA5E6FF3FD51A5D8515DDE82F3AD77A /* lb_policy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = FA1F48C9248CAC723C8B9BF925790608 /* lb_policy.h */; }; + 9EA76ABE9970660C74385A0BB88D8547 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1982CD77FC83B105C24BBD999DABAB38 /* call_tracer.h */; }; + 9EAD144322D07AA0587C109DD2CCEE07 /* server_address.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = E7FB1E241ECD03B9343961227C2044F6 /* server_address.h */; }; + 9EB61A32D12559EF03F7253D47C00740 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ED65DFF9F6A363A8F74668B1F2E7926E /* resolve_address_windows.h */; }; + 9EBB705EFDDB9945208F9150706F1C4E /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A04F894BB371F658D3596F92B32CC63 /* health_check_client.h */; }; + 9EC1CF6069201F872D4B1C6E4DB451C7 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = EEA4B78520EC797C2DBF1527ADD08590 /* slice_refcount_base.h */; }; + 9EC48DD78E3C74584464EB0D8EE5D6A9 /* FIRGetProjectConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = BDB2D9BC37BB263B3E75760B33A58EBE /* FIRGetProjectConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EC55EECF94C121CCA69BE87D4960DC5 /* internal.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = A204A0CA3281063585747D75D3DC0052 /* internal.h */; }; + 9ED0F5296754C05F1622DB1D088F67C5 /* compile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AAEA4B59D6A4A5D3AF14E3189117991 /* compile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9ED612A27DEBE6DC505CF81752FBBE1C /* annotations.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 56884D13D200DA9298B504D7E96A7378 /* annotations.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9ED6D7A0A4C08986EB42C09B8A61981B /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = A73ACBDA5EABF651B090C16886794A7E /* chttp2_server.h */; }; + 9EDE211B067CCD5CF88A148FF555DF45 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C7F3BD3E475891FA642722F28E23BA9B /* timer_heap.h */; }; + 9EE1EB564985AEAE11D3E5E9A8B82052 /* a_d2i_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 32DE90642C00727EE76FECFC70EAA5B9 /* a_d2i_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9EE26B065DEA657FA96BF605546B195D /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E6720827ADECF10E452CAB236C96F245 /* timestamp.upbdefs.h */; }; + 9F036C12CA31648AED706B1543D8A831 /* resolve_address_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E3809946146EBFFC1D3D9F81254F8D6 /* resolve_address_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9F0E16F5EEF4E33FCDEA8219C69FE1EC /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 560AF41FE8958C2FEBB0DC10319FDA88 /* arena.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9F21852608D2388CAC2D7CF13AE03C44 /* charconv.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = D2564F7D167827D88EB0EAB6805C59F0 /* charconv.h */; }; + 9F3510F0A4AF3FAF23E09D3525B738C8 /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 232CA3047B6991CC86BB140F8E7258D0 /* stats_data.h */; }; + 9F4E920B37128DDBD752307224561AF4 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F07C634F2E5B9CA70579B7B818A319BD /* slice_internal.h */; }; + 9F5D90479A2C847AAA96DDA2CF71F613 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FB1E241ECD03B9343961227C2044F6 /* server_address.h */; }; + 9F6E1D186F45F375803858887E9BF329 /* FIRGameCenterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2757EF76F5556A9F75638A8B36E167BB /* FIRGameCenterAuthProvider.m */; }; + 9F75DDE7811D7AE05AADAB0B2FD3F44E /* raw_hash_set.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7959245F8371DE65402E60302EEBE8AE /* raw_hash_set.h */; }; + 9F7D74BEA12C8879633A263EABEAE952 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A46FC8676E4DF53127F09937C918D4A /* iomgr.h */; }; + 9F7E2EF6FA01AA536EC842366997BE5D /* dtls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 54657854D74D490959C971D4D1FDF82B /* dtls1.h */; }; + 9F7FC6477A6236462015AB10055DFE5E /* FIRAuthOperationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 02AB8AC1CC334AAE331BB0343973A9CD /* FIRAuthOperationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F847964A120A53CBCA44DAB3F314C44 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 0EC2A4F4BFC8B81D8918378B0277FBA5 /* time_zone_impl.h */; }; + 9F9EF20B759912DE4A80A0145F214E67 /* symbolize_elf.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 793F3686ECD9B80BEE1B236A01E4A7B8 /* symbolize_elf.inc */; }; + 9FA10D55AB3A23DE6CC3256F8DFA0130 /* exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB6D8EA375F893D63FA5D903232B276B /* exception.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9FA912ED836BCD14B1F492FBF2E90637 /* user.cc in Sources */ = {isa = PBXBuildFile; fileRef = C209D0BA4978D3971C2E170713EF48A0 /* user.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9FAA2A9A7283ECF7E37DB79F8A7ADBBD /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB86E0114973287E1713211927B23754 /* output.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 9FB54995B8549E636C5893C7897475B1 /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 4F99C09C601326FC2A42B485B897C92B /* completion_queue.h */; }; + 9FCB14E52E828A36A4A7D880BF7CF4D5 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C17AA89E04AB38E6AF89E0ADDEC55CE /* hpack_parser_table.h */; }; + 9FDCE99BC084DEDFB80F99B2F37F8A45 /* ecdh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A9583E049EBBA340166F70F14C4A595B /* ecdh.h */; }; + 9FED2BC8F1B108CA833F83EB33BF55BF /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3780C86B2D7E7B1F9D078392B213D9A7 /* text_encode.h */; }; + 9FFEE9FF5316129360F497CAD66084E1 /* unicode_groups.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB952D963F7A967B498C2A24D239E85 /* unicode_groups.h */; }; + A01209290F9B9387D2E6806C9077C98A /* object_value.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9C36749518F693AB3B1FF0411E07FB4 /* object_value.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A017740EE0755C09EA00ECF2C4C17F4B /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 1E0F46DB2E7E772B6C0945211FC3103D /* ndk_binder.h */; }; + A01FCAECF7F9015BF6F910C699DE055F /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = B8E55544382FB77DD1064F492B7567FC /* serialization_traits.h */; }; + A023D5CD4195CF3C9F7B8C9F49A4789B /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 392BB8539BEAF514B949281B459BABA2 /* address.upbdefs.h */; }; + A0267F587AE95A1B90CE6EEB723E72C4 /* mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 16538F1A16138CF2E71237C09FFE3781 /* mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A02BF263B99C549142BF837DE2BE9A0B /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C026D1D43CF542627D0CEEF3F19B4A /* listener.upbdefs.h */; }; + A035214B999830D9307817264C133990 /* FIRPhoneMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 69CF973F5BDDFFC976063970BE29C7B2 /* FIRPhoneMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A04D8F231F3EB6FE213354D97BF14886 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 27065E4D8ACC86A453FDD3106E950F4B /* alts_security_connector.h */; }; + A05995EABCE63FCD55A788F5F4A40985 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 97193282CC0A0BB73562FD56E5794447 /* event_service_config.upb.h */; }; + A06410864A439ACAEFF1948A5EC214CC /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = BEC713DFFD4769298A41171C604612C2 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A06424C2B9C310BF4B0B3036DB7F158E /* connectivity_monitor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E821893413CF35F0F9BB760FA062375B /* connectivity_monitor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A06B68270F9458DA85B27EA54CEAC277 /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = CEAA5456D2C906E466F988613D321E4B /* sync.h */; }; + A06C5D2C51808BE8FCF098C5C6F8C03A /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 664C0C917A80EDEC57D9D55FBE00FB10 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A098FEE43FAFFA0286063D044CE8D551 /* lds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 193F7ADDA156958CBF17C7CAC7B1FE6D /* lds.upbdefs.h */; }; + A0A0B6BB09995CD1828C8F4A20B492FB /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7057A7950D894C0BF5191CAAA40E0E5D /* aws_request_signer.h */; }; + A0A26A87E8AFEC3688AF1DEE165DACF7 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A6F15512FD954D6AAE989555BB0A0B /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0C6872A33398725E7C9C314CC80411D /* grpc_root_certificates_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F4F3B44F8088C5C7ED2C0AA67EA9270 /* grpc_root_certificates_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A0D04685AEE47367F04F8143E7860D8B /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 31762A74C2BA97BCAC41C45C3EAC24D3 /* xds_listener.h */; }; + A0E4052A91779B6D704C036A0938AFE0 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7B9328FC6D2EB87D03CA6A2340FB97 /* rpc_service_method.h */; }; + A0E8B7B37C01158177BC4A924C9CB537 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D94DF377B8AED97811D82A83777524DB /* authority.upb.h */; }; + A0EB87239EBE57D4C943BF51A57CCCFF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BF4AF04F728BA8821EB2D1EC0F73469 /* UIKit.framework */; }; + A0ED9E7077DA670AA62F55306A02FCD5 /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D21B7F89E0D6FC0FD1112FA64C83CC /* inproc_transport.h */; }; + A1013643528E29495FF46AA5348ACCB7 /* binder_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F4D90A66553ECB5B8FBD7AEBFFE385 /* binder_server.h */; }; + A11A18BF4E5984BCBB1CB6CF4CE0B433 /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 011A747DD6E1D7CD9ABE6373A0BFED98 /* no_destructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13DEA33083302F2EDE77629E434DF7D /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FD6EA8B3CF0B9F1E0FA67D28EFF8F9 /* closure.h */; }; + A145F7503EC2D534EC754BE27797FA0D /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B8162CCB2B857FDAE262DD5D1BB4E70 /* value.upb.h */; }; + A1552CACD0ACF9C427C9A25BD261930F /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF1302302014562FC94BA678BE3F0BF /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A15D5367D2D2F7EEBABF408E3E5813A8 /* semantic_version.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = DC11AC772C47E495AA62CA4E5B930ADE /* semantic_version.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A161859716535E3035D1D3D5EDAA1590 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5858922D99E8E158080A289DDE9D003D /* collection_entry.upb.h */; }; + A16B6E29228200760458865B970FE184 /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 075034EF4575143C83D2DC2385883C42 /* struct.upb.h */; }; + A16CE54A5813C71EC90FA4DB4E4388E1 /* lhash.c in Sources */ = {isa = PBXBuildFile; fileRef = DC00AA74C289D87FA0B86FF0F1D7CDAB /* lhash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A17B5700A9D5820787B7D249173AFCF5 /* binder_security_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 270F5A63E032F374CE90F81F22941A32 /* binder_security_policy.h */; }; + A1888CD429631AC456850274DE4C9464 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = F80D390D1ADBEB97889EF7CF586E87AA /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A188FBE134F4C6515DBD235F5E11D6BD /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 34081ECC138CFD39F6E0CE0FCFFD1EEF /* bits.h */; }; + A18EEA6F4D13B71BB34F3D414976ECF7 /* cipher_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 221875720F84DC8FDEE1BD4A6EC00D82 /* cipher_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A191B4A906B245C18A22B74882ED5F6E /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6C9BEB4F172D8FEE91AC0AE8B5E13C74 /* pollset.h */; }; + A195690BE5F90949C5C030BBAC8FBCA4 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 405A12FB51047FDE28B4FC9E5B0ABBB8 /* security.upbdefs.h */; }; + A196D399D4F4E170C29BFB84A7D87E87 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6D14482E6565B89855E198AF5F709D /* random.h */; }; + A1A78710127F527C4D7099DF7040181D /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = EA4A4BBC8AC14AF4ED27FBB7E9A6153F /* chttp2_transport.h */; }; + A1B2F9C7736E48982FDBB9E7CE55A319 /* merger.h in Headers */ = {isa = PBXBuildFile; fileRef = 585BF855EAB3E07C70D84B14DEEC470E /* merger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1C66DEB514B813F6A9C1BB86B1AC27F /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FCD49D92D392C1395DA0596B968291 /* internal.h */; }; + A1CD41A23E35A6D38C05975E946E67E7 /* FIRAuthDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 77552EB18CD885E66C200BACA5FA0831 /* FIRAuthDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1D4283C3374A0BD499EC621C78AD946 /* outlier_detection.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C9250F7644521E8F86CB6711FE9345AD /* 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"; }; }; + A1D7C3A99642AD61407A22753011CA12 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C19C66C81F43400E6B7F3A1A6332C07E /* cluster.upb.h */; }; + A1DC442851E27EE6BAE50529C93EC7E3 /* str_split_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 574759FB8FCB2104B700F4E20287655E /* str_split_internal.h */; }; + A1E376B8B36D360EA430653D1E306AA5 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37314311BD2A89FD9D2B43819D2FD7B7 /* overload.upbdefs.h */; }; + A1E6B00ADAD696BDE55829EC64FAA35E /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 840BD586EA3F2FF045F833F88B5D2D4B /* connectivity_state.h */; }; + A1F35DB3FE0552530E8A243EEE188CBD /* str_join_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8A57C3A80422C2E82B0DBA5C51B833 /* str_join_internal.h */; }; + A1F399DB68C2737D1B7B4D6543C653EA /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C60B04EA53FDB2E30B78E6828FCCEE9D /* resource.upbdefs.h */; }; + A1F9793A9981C1F63C9F6D88FFF4F26E /* ev_epollex_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D65DB9AB0AE07A52F640B1A83F99C672 /* ev_epollex_linux.h */; }; + A226ED67BBD7EB93483D4C2BB6D30B24 /* buf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8393534CE74E8E37E8812A5C8600940C /* buf.h */; }; + A248B0149DD72D33ED6FFA0562E27DD4 /* ssl_key_share.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCB2861C966D7FF982DF67636EE2E9BA /* ssl_key_share.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A24913F61D40F579224B900257F809FC /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 840D5E7D16F24BD6FFF4C4858FDA05AC /* GTMSessionUploadFetcher.m */; }; + A2511C11DFF83D6F0C40AC6C2FB0163F /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C698D114E0EE6E7F70E713612BC1979 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A25320C74BCF7F64FF15695C34E936E4 /* FIRVerifyPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 934319B123D066178A68B166635E1F2C /* FIRVerifyPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A25494189E7F4335123925C9040ABCD0 /* FIRAdditionalUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F480194DD431451C80EAF7E292B052C /* FIRAdditionalUserInfo.m */; }; + A26855106B71D5B7A720C9677E6A7FF5 /* resolved_address_internal.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 87C7187EC817D520314BC079AC6E9983 /* resolved_address_internal.h */; }; + A2707AD1F880B43F8BD292FA1378F4EB /* init.cc in Sources */ = {isa = PBXBuildFile; fileRef = D99F5A30E8D0B776FC0EB1CC1D13278F /* init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A2888CD71D000D682FC84E286B7D9761 /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B228A3BA0D841F288B97AF28C6D29154 /* client_channel_factory.h */; }; + A2946C99F836F5B5298D3C4BF1C61F94 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F782281BC26A1B05582437F9ABC3CC42 /* common.upbdefs.h */; }; + A2AE3DE21ECB026F7122629DF8AB2226 /* poly1305_vec.c in Sources */ = {isa = PBXBuildFile; fileRef = F0216B0B8D9A790EB25B4074058C749F /* poly1305_vec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A2BCF2BA404EC91C77A9E1769CD9BECC /* low_level_scheduling.h in Headers */ = {isa = PBXBuildFile; fileRef = 8915AEFB88DF8D74B5CB9576C55792D9 /* low_level_scheduling.h */; }; + A2BD35ABB1F5E1CDE3FE3B4BD2D84F68 /* rbac_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2572A32A30D2AAD2640265BE6AF51DA /* 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"; }; }; + A2BFBCFB945B230CE4D333B815274D44 /* discovery.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A7B7582268692FEEA52E674ED68797E /* 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"; }; }; + A2C2AF9AE8F37ABBBCEAA74D9BADC6E9 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7819D4D3EE92CF6D15E6203497B80CCA /* call_combiner.h */; }; + A2C2CA25BC89B7F7503ED9F0945499C0 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA53456E41B59A8E6539F7FB5B44164 /* sensitive.upb.h */; }; + A2C95346F84F598EA9BCA134F849F45C /* p256-x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 3EE08506CDE442284DE33807DEA3CDDC /* p256-x86_64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A2E10F97005CAAB672BFDD9BFAF84D97 /* FIRAdditionalUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B9040320C1CB412C60A6A4FA1C723CC8 /* FIRAdditionalUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A2E8415536E8D5AE916EB1A009CBF8A6 /* collection_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CEE43AA7BE194118B1E7776FDD2957A /* collection_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A2E87E2264B01591CC8FFB325337D9B0 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDF664DB16A959C39F6ADE0982DAACE /* async_stream.h */; }; + A2ED43787C41E8E91D523C890789E609 /* str_replace.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = E1FDEF47BBD2D6AD4C5D2F59A916C4EB /* str_replace.h */; }; + A2F2ED441D4274D4714E5879AB57DCC0 /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3459A147E55050F3E4F0CF09BFEB9730 /* dns_resolver_selection.h */; }; + A309E75C53C05940A2A8FAFEFA20A61E /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6D0C52F83102EC7ED35242EAEAE3F93F /* secure_endpoint.h */; }; + A321EE8D5AC9539E9C764CFF57DE677D /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */ = {isa = PBXBuildFile; fileRef = D64A1CBC16799D8F3CB7578B9E8E2E2C /* thread_manager.h */; }; + A3220FD147584DFCD618A9919BA95054 /* grpc_ares_wrapper_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = CE3D9B706DA9DF15365475E104730DE8 /* 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"; }; }; + A3266EEE74A6E2B7D2F391F073692D4B /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = EBF7D7BF67C828552B092F108A769505 /* reflection.h */; }; + A3314E734310B5D80565C5451E487AA9 /* socket_factory_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3E93ED9904FE00AD99C6B2E59DB2B128 /* 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"; }; }; + A332FF0D0208362693A23CF5CE29CE5D /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = EA9256E994D4BE2493D09B9350AAA2B9 /* frame_rst_stream.h */; }; + A335D1A738860DC040E021FDFF8928B2 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 217812DDEA1A6A9F50A98540E88FA497 /* FIRCoreDiagnosticsConnector.m */; }; + A34B08FD4D8C99C9A3C1D0F8ABBC717D /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 3E40EBC1855C8EFAF5BD5E47F26E9B8B /* binder_android.h */; }; + A364DED6D8263EB1A42337B8B7631222 /* string_ref.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 6E8F4741A311D58CB49FE20A92076559 /* string_ref.h */; }; + A36B1CA66D132C7C67EC3AEC9A2DC8FA /* get_current_time_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2B137E4DBF66DE6FF1F325B542871865 /* get_current_time_posix.inc */; }; + A384ECACFD8E38D58C24FDF4C60A6925 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 488BC5D7F922DDCB2206C27BC4A2EE66 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A39239EBD16F3089CE64D92A50F14797 /* tcp_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6E54604D5B9AE9DBB1A6BDE21A5DC0B1 /* 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"; }; }; + A3934058A99FDA492EDE42E2F9D0431C /* fs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7906C19C47E966370A6167C903D84A38 /* fs.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + A39F67B46489EFA707D541C035B2ABEB /* FIRDeleteAccountResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 7099B4CF878ADB2443AA1E616375CED8 /* FIRDeleteAccountResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3A3D74CF1C2683B6B4D1004499C15FE /* alts_grpc_integrity_only_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DAC98092449261BA82F469C1837FEFB /* 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"; }; }; + A3B50685A4453600F15B276EDECC01C8 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = ACBD1F61FEAA2BF69351754794A7BD10 /* tmpfile.h */; }; + A3C54278431E43952A2D3414B15A2A8C /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A8DD9720F99EDC3CA2075BEF05E41FFF /* socket_windows.h */; }; + A3DD292C0551910EA2515AEA85ADD2FC /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCD391CA113201864C4D7ED2B2D268C /* async_unary_call.h */; }; + A3DF475C8558E0A8FCF3ADA375FBB72F /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3CD48BB29CFBDBF99649B7B31601B1B2 /* substitution_format_string.upb.h */; }; + A3E6DFAEC212EDB49868B9C751E88552 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB01B854BE88579BC434E62D41ECB74 /* python_util.h */; }; + A3F4B1F7466CB36B3F4D75450E7C2878 /* nid.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D39BF03216EF127279651A43734F1C /* nid.h */; }; + A3F668F6E9D66F2053603145B5B68452 /* GTMSessionFetcher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9F59154E63C03EA3DD1AB09DBC1F62 /* GTMSessionFetcher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A4023C308CFBE2F8D581A83A90F85A48 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC2368D64D3CA2CE800E521E617E5D1 /* transport_security.h */; }; + A41EEDF141ED306A547F52A2B16DF353 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C5997FDAA3B91F53C65F59734682639C /* parsed_metadata.h */; }; + A428B5578D58FD2F80649127192A1092 /* string_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4C8D7ED4154FFF4D487CAEEF2A73989 /* string_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A43F19D8567D0177D4BC546E6356E203 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD7D4ACC940332DD4CD98A1DAFE8A48 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A4404DF72CB7146DEF4D5433F92EB66A /* key_wrap.c in Sources */ = {isa = PBXBuildFile; fileRef = ED31BA663AA501F6AC88049102071C36 /* key_wrap.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A440C745BEC1C87BDBD17453C9D4D529 /* context_params.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4554FE62434AD47E7BE5AD8D41FA21AA /* context_params.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A445C99DDA3BCF8639C57BA9FE79AB82 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B5ABE53DDF1514BE545E1416D9BE1B58 /* composite_credentials.h */; }; + A44603A23EEA2AE9364C868686A6CFCA /* tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28FAE91B102057E191E5B244934E1CAC /* tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A44C59DE0886EE9920C695628591F11A /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 455ABDFBA4081D197600675A96310DAA /* endpoint.upb.h */; }; + A4516CE8AE7D6AF201E8730A65CA749E /* str_join_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0C8A57C3A80422C2E82B0DBA5C51B833 /* str_join_internal.h */; }; + A4705793489A5E5CA522DD837458F4B9 /* obj_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BD865B04E33AF610B8B428994F01D006 /* obj_mac.h */; }; + A484F76CC5811639B05CB232EA55095C /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D22D6AEC8C37B39BB6C8CE152B3E96C8 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A48957561C72751D8763F79A60D945D6 /* fixed_array.h in Headers */ = {isa = PBXBuildFile; fileRef = F772031CCD8FC7FBB7FCB07D3A11A4EC /* fixed_array.h */; }; + A48FFD1D4D2840BC7811ACC1436B5246 /* FIREmailAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D35BEE2025ED271C0287817F421B033 /* FIREmailAuthProvider.m */; }; + A496333BBB06B50A3A9723450EA64AF6 /* rds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EB5AE02D039B69EA98F12BAF40ECFDBC /* rds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A4AF88054CCB6C539D8F08E9EAABEDF9 /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = F17777EAD8BDD682D13AA0F1E06A28E5 /* context_list.h */; }; + A4B070574DF6081DBC299A1B3AFBC1FD /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 9E73CB1F95874E3060D7B5ECA7F26D82 /* parser.h */; }; + A4EC93C1900803C1918F0D53491E590C /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = CD12C11143FF64F755770566177A3E0C /* syntax.upb.h */; }; + A4F645DE4EBCF6390048868AC0F54496 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB9E3B05EAE54A19AF83995D8BBDE6F /* json_util.h */; }; + A4F69EE3AC2CE8E2251078C147EE9AD6 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F273B70495F0FAA39045538F2C804A7 /* status_helper.h */; }; + A500AF3583680B5718B7EA757905FF7A /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 28C4AEE6291F4A2FA8E8DB42E5001A28 /* unicode.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A5054EB21713E92F515E96E18F69582F /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B22FB88D07228E17B62130C422CC26 /* tcp_client.h */; }; + A505BE9F210F2C79F202E08B6BC7BBE9 /* snapshots_in_sync_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 200AE8FE893B253B47778CB2E68F6623 /* snapshots_in_sync_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A5077BF5E0C5FF5011133577D16461AF /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 151AC94D7046FCF14DE6DD223CBFBEC8 /* slice.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A5090A066FE60D8A0B639CD845CC900A /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 300CC38DB0B5158CC7DA24851D85D915 /* atm_windows.h */; }; + A510165C0F45CC87EFE06D5525D2CEE4 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FF04A5357ADBD8413D0900AD2C7A263D /* circuit_breaker.upb.h */; }; + A511632F7C481F21068E971156EA1059 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9AD77C0B70F4A3D45FC51E2CF23024 /* rbac.upbdefs.h */; }; + A5136D6E0E47BF9586E49D3402701083 /* service_type.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = AE20E56D4208DB5E99DE7BCD4012755C /* service_type.h */; }; + A51B37E238A3851340EAD7722899B58F /* FIRFacebookAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = EF21339D1EBD36F16F0C839B782DC84F /* FIRFacebookAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A52206CE8448C8FD20B070BFB88D9A22 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = FB42068789F275D0C1B4666437E87C9B /* lb_policy.h */; }; + A524654342A69E1AF46DBAA3C4BDCCC8 /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 259AA94ACB87C797446F50D98DDE29E7 /* port.h */; }; + A53BE3867F8A4DECB56BD98BEFD0A558 /* filter_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = B48ACA416D5919AACC1A750C2849036B /* filter_policy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A547DDDFF949E828897760893F08799B /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4374B43425A2707FC3455E40C8CD9C40 /* pollset_set_windows.h */; }; + A54F89C5AE853B295889F5455173F405 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6691DE6916DD7B3E50CC466797F82D27 /* timer_heap.h */; }; + A56475DC0E802BC2D51721546247B785 /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = B0C1583274B07075008203C27B8A4FCD /* grpc_ares_wrapper.h */; }; + A56A750127AE9BD04D7A3CAA387EEFDF /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EC033349635A88BA9D841C1F5DEE69B /* format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A576940997F20DE885B5D920274A9005 /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 3FAFE69347C9C9CA51175A905DFEFF37 /* dynamic_thread_pool.h */; }; + A5803B9C8BD097679A061C74F39F7DCD /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E58C81289A917C9C8CE1312F6459BC03 /* csds.upbdefs.h */; }; + A589D0C15AB0397B3A64B44DCAA14699 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 6994BCF4F4EED4EC0E81CE7E3CADA3A2 /* slice.h */; }; + A58E439281D21857D2D86901B0776CE8 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB4D81B891FA440C6DC43EC9871E96DA /* statusor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A595A7A6772929473AD9385CDFBFE59E /* wrappers.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EFB9DBFBD4CEBEC5835AC85A3DC2BE7C /* wrappers.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A59B878AD168EC921D5D3655FF42BD6C /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E24EAD78E3E26042B4725AB2D11B336 /* local_security_connector.h */; }; + A5AD8BC383069364C9E871EA3A8006E8 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 8EAEAACF765AD1901713D2AFFAB9E2A5 /* xds_channel_args.h */; }; + A5B68C7374EE6F24F00D3B3E5B92040C /* x509_cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FA7E2F8C525790747639E0FCCF17755 /* x509_cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A5BEBBC2C2865654A9F221C874B08266 /* lb_policy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = FB42068789F275D0C1B4666437E87C9B /* lb_policy.h */; }; + A5CC85EF3A64F61C6490BFC0659D6F34 /* memory_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = CEB5EB7C196341A03988A4BAB6F26F3B /* memory_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A5D5CDF7BD46FD67BD77FF495534A146 /* randen_round_keys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44690891378AA8507C2EB90776DDBD5F /* randen_round_keys.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A5D64AD2F66AB95B32CB98757E534ADB /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 641E946F5257CA321F994BB18B69D1E7 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A5EC7DB73DEC5BD7212D0513E7CEE286 /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 67589FAA91F55B2DA2016014453B2117 /* load_balancer.upb.h */; }; + A5FBDF9904CFC6588C8B534940EA092F /* merger.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20CCBB8B7E1FF77ED33700685F4876E0 /* merger.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A5FF3717E0914B1DACE9CCC0B07ED407 /* FIRMultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C78BA3A60FA852B83EC6E98A124D7A3 /* FIRMultiFactor.m */; }; + A60671E8CE4A572AD548A4E1D812825C /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2788B911DE2B28C61EB36476DBD51598 /* GoogleDataTransport-dummy.m */; }; + A609EB9A9B2604326DDF6ED318499AB9 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = B32A4B770F20EDD27C33060711D612B3 /* server_config_selector_filter.h */; }; + A631916EF24D8360B0A575E81E457E35 /* bind.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = A02B51B1F2BBC58E5835399A4ACE0167 /* bind.h */; }; + A63EA625F72AE1F3C8B0CA85E3189C7C /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 204DC4204DA867B3F228BE10F537B0B0 /* subchannel.h */; }; + A641BBFBB1FE87738482A32223620E5F /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1FBFBC0FDE52DFB2152249B660BC787B /* frame.h */; }; + A64B541B144B9EF89141F9E06D65419E /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 13A8A9C3A3D99493D43FE7E3BE6D9B68 /* 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"; }; }; + A64E2FD2FDA3B27F8E1C15B17CC91584 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FE085D2F673689A6EFBDD8FA64154F1C /* empty.upb.h */; }; + A651122CFD39B1CFC7A390162D3F845D /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC35E62FA38C77AC880C7C3046F6524 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A659BAA1A925A9E73394F9B5F653BFFC /* statusor.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 80D1CD31CC645B8EECFA49C91CF6ADC7 /* statusor.h */; }; + A65BB4ABBB97745AE8A611D412FE6C00 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DA0038BC773B41686BBE6972DE7EA86 /* retry_service_config.h */; }; + A666FB9C508169110B411A6BDF993743 /* string_util.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 8F9D535350D7601F8B49AF8FCAEFD4B1 /* string_util.h */; }; + A66B3B1B9DCC831B8F7F7DE2BC599795 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3094B075B65B70B3E4496B4CA50A5EC5 /* encode.h */; }; + A66EFD158414242312EBC23EFD86F3A8 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2A46FC8676E4DF53127F09937C918D4A /* iomgr.h */; }; + A67FCC0F2C59BED47585F758476FAD70 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 864B590F269205D2D79425DF9F027FEE /* metadata.upb.h */; }; + A6850AC3DE91A415A04A8ED3BED81278 /* write_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = EBFA885EF93320E46228BAA084A62515 /* write_batch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6A8C6FA0B245A36F5BB0107D9905DF4 /* ssl_stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD786899F7692B3DE526159D7F72BA20 /* ssl_stat.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A6B4FB2953B50F5BE966780B08F06FB5 /* resolve_address_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 100FE90A8B72D75B1436A17BBD682595 /* resolve_address_custom.h */; }; + A6B7D0FFCF05D5EEF6B90D1B37C0D322 /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = ABE9A4DB4213279E3BEA47ED0B8378AB /* transport.h */; }; + A6DA7769F254C97BF87299BD9B05C686 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D754F915A54F7204B4133F864F51534 /* listener_components.upb.h */; }; + A6E3573D07DC3D87F6DC25FD8466C12F /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 63460B2B494F427AE6F587B816106346 /* validate_metadata.h */; }; + A6E800FB55D1B5A9FEFDFDE2B83B0039 /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = AD353950023E563AB79B582282B11022 /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A6EB0450F95CFE53FD0317DF8EE6C47B /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 3175E8BB3C13622D66AFFD8B387AAEDE /* ev_posix.h */; }; + A6F783AF11C2D9A94785C50A6C8B3008 /* cord.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 98036C7758723472C438D6C9CE903790 /* cord.h */; }; + A6F82DE6F3E419513D0D52D0697057C3 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECD9C1AD00A434B0B894FA3052AD97CF /* ads.upbdefs.h */; }; + A6F853F296470352AB90BC5C104A4250 /* FIREmailLinkSignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = AE97A43861136C2583C8E904B391D05A /* FIREmailLinkSignInResponse.m */; }; + A6FA2B58EF7F353C9D0C575BB3F868B3 /* xds_http_fault_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = EEC179D11CD29528573A0648C0E94F80 /* 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"; }; }; + A714D486A62D8A86E9677EF01C533D16 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 20C19B3C458BABD720C789445E1FAEC3 /* discovery.upbdefs.h */; }; + A720E1C0D2C342C348BFAFECD0D24FF8 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA2C67264E8FCAC1FC3D26BBC0C9E1F /* extension.upb.h */; }; + A72283012A0676253E44B4FF633D7C0A /* byte_buffer_reader.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0F4ED610D209A731FECDCA1F755C13AA /* byte_buffer_reader.h */; }; + A7461A18138653B230B34DCD5C409443 /* v3_ncons.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D0BAE90AAF4BA0D7171A635853727BD /* v3_ncons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A74C1ABE9020BF17EDEFEDD74812F9FA /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = A54FA3126EB2F87B50889081BD285D76 /* port.h */; }; + A76BEAF9B39098F5C57472F69D2BA08B /* threadpool.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 43068C97EE9FA2EA49CBE0B443056E4A /* threadpool.h */; }; + A773E9D87DC7308E4EC26502FDE34FF6 /* grpc_security.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 23F048857840E1552D4EE8BB0345A18A /* grpc_security.h */; }; + A78118F904204240E8B5C4F0C50367F9 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 10E61A3C03FF41EECC9021B264B8291E /* resolved_address.h */; }; + A7AFD527E38D1A4B1E23123708931DD0 /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = DC140C516E89FDFF2F95956E292D4086 /* transport_impl.h */; }; + A7B4A6DCA666D1889C7A97682EAF1BFA /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F0377569D87841D4BD240BA27CE979 /* pollset.h */; }; + A7BCF64AF942AA974CECA88E53C46210 /* write_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 496AECC9F5B26A3BF8EBABCCE9996FA1 /* write_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A7BE6EFB02B2A26A81DC76E42822FA84 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6020A818941C7158C7D06DE82B68E8BC /* quic_config.upb.h */; }; + A802219900FA65CA119CD2839BACA461 /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 214D1C72B2CE741E27B6F3B230C432DA /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A806F27F78BA22B05ED1A97D30A017B7 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B022821111E61F489BC52E4BCE4C9B3F /* pollset_set.h */; }; + A815060810A40C21A617EA5A28C95432 /* log_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD0E24185D12F451AC29668BAE6A8804 /* log_reader.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A8153FCE1205D7E1B4F9AAD35259C153 /* validate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CA4C8C101C050162DD8009745CE5A1F6 /* validate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A819968A4881CCC585EBFBD29703EDA0 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE553AAE7AC5CD57E21E9BF474A802D /* status_conversion.h */; }; + A81EB397A57E8D3DAE22113E558B4AE8 /* compare.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 48B9078ECB6F829D851FD6DCA7E526E5 /* compare.h */; }; + A8472A885D21B4C37F5B74314C5B2103 /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = AA07F3D19B01CFE3033BF0A4F1F403EB /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A850C8938D8B21FD820F6EA63D5190C4 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = AC88CA5F34ABDDDA4427D0459F54F9BC /* aws_request_signer.h */; }; + A8640D1523AE433F159825EFA53D5622 /* escaping.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 270FF3A8B12425F38CFD22F2846283C3 /* escaping.h */; }; + A86F6677E90CC4C618103C7911F94036 /* snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F838F33E12E6DC68AF33DCD094AAE58 /* snapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A87351B0E197EA6F958DC8644231F70E /* poisson_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = BC72EECEE7E3BB5401671DA6A316914E /* poisson_distribution.h */; }; + A87934A6A0038408F6DE3999DC186FCC /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 15807E1DAA45F1553ED3B84BBC14C2AC /* transport_security_interface.h */; }; + A8852CA413F1D5AD3C90FEA9227E32A4 /* dumpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 53137AA5BD2EB0BA3A556E9690CC740C /* dumpfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A89065D49CBAC2616B9335FE699A9B80 /* fork_detect.c in Sources */ = {isa = PBXBuildFile; fileRef = 06ADD92BEB72399B2C671C9B53526C5D /* fork_detect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A8A1BB80A61784CE299A3D34B5E84830 /* time_averaged_stats.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 231105B6F76806840920DD259AD9E87E /* time_averaged_stats.h */; }; + A8B35A690233E3D30F984A0BDF9A7E15 /* rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 932206B537FFE7D3EE341EE861C3191D /* rand.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A8B6C9621B92B7D3E86FB70179C9B020 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EEEF532676816FF3CCEE669CDA0A179 /* method_handler_impl.h */; }; + A8CCE50970EC7744EC57A5D78B35A8E3 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD992FD31B6CA125DC126F00B89A373 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8DA694ADBF7443FA72D4F1A71A8AB7A /* onepass.cc in Sources */ = {isa = PBXBuildFile; fileRef = C57FEF3E2EAF1B1042658C8A003494F1 /* onepass.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A8DBFC0711E95B63104C5F4026418839 /* cycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCF4567F6A955E8C5554D22CE50A51B /* cycleclock.h */; }; + A8E2DBAE0A1876D88DCE11D2383D95E2 /* any.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E7C5ECCDDF015341817F62C190D25C1 /* 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"; }; }; + A8E3FC16A8DC5421EACEB18C00D9B9A5 /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A9478CDCBA9390CF8C399BE2709326 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A8E60E7C944D6B778800FDA0BCFFB179 /* wnaf.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FA97B123387E58027523EA88449F89C /* wnaf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A8F3EB1AC7FFB23EF2BE3B6D373EB368 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D677C309DC7A4598A885B09B74166C1E /* extension.upbdefs.h */; }; + A8FA7D117581D41A6FBB9A62A75149F4 /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 932159A5B60C35572F4F285173CD8BCE /* 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"; }; }; + A917E482653B6A44C800463822EF89CD /* hashtablez_sampler.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9C52D546207DF656FE73935D4F93614D /* hashtablez_sampler.h */; }; + A944A138BD3EA24C2BD46E392A71F32A /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 63759BD8A6513431CF55C91021C41070 /* channel_args_endpoint_config.h */; }; + A95C68556DA3D846AC8A190C51A5BAC0 /* vdso_support.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FEA25BB35EF0DD0B7FDD42E853FA6383 /* vdso_support.h */; }; + A95FA15AD5E03616B7C319CE57220AD4 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = FC34D9BE39A78FEA6E005FAA55C5BC8A /* options.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9801FD9CFAC745284BADF64D56E9008 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8164B1BA614D4D234CF542EDE68673 /* upb_utils.h */; }; + A981C99FDCDD83A2F58DC58F753A7877 /* v3_info.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B3037E119C806056B8CDBF7D4F333 /* v3_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A99FF1BAF506D24D355D37636671BFC1 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC7B31F32A3BD8757EF10BAD153AA68 /* external_account_credentials.h */; }; + A9AA091D164991966FCB8D9889EB2D0C /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2460D01C3C919D01AB9205DDFFEF40EB /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9B4AC09C03F8CEB18CE46616A4A75DA /* bind.h in Headers */ = {isa = PBXBuildFile; fileRef = A02B51B1F2BBC58E5835399A4ACE0167 /* bind.h */; }; + A9C0B8BC45158C10BF488701D94FB2DA /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CEE6DCE0F9080D814DD15BB63174A1BF /* discovery.upb.h */; }; + A9C86BABF5F117241781EAF088EABA3B /* gaussian_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9C7F10C9178AB9E23A6D05B5A9499BC /* gaussian_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A9D9115774E885BE54E7A6EB52554823 /* document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B311865A57C94CB65CE2CF77FBFE09 /* document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A9EE15366CF3D221185C03F472194DC5 /* substitute.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = B2E7FA2488E4397291796EA25EF256F4 /* substitute.h */; }; + AA16B7993CFB3CE39DB07E03B1E1AB9D /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 345652508477E4EA8900CC27A52000C9 /* optional.h */; }; + AA1898926A8CE464FB645712919FBE00 /* mpmcqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D814363943F5E57C4E7D6E4F8CEB8D /* mpmcqueue.h */; }; + AA2034FA256DBE8F99AE77D1FBF9E720 /* def.c in Sources */ = {isa = PBXBuildFile; fileRef = BBCD703816993D667C25512C6416C90B /* def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AA2BEEB5EEBCF402ACF8B96BDCC819AC /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DFD1873DBAF346A39AE6655E4C2F7BD /* insecure_security_connector.h */; }; + AA2CC919F34537386CD52CA071AD6FC7 /* annotations.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B5C084B3ED94DB76A990EB0282A3355 /* annotations.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AA3062C924A0029E2FE33C6F465C6A1F /* leveldb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27E22B5A2AB04D3F3E0EBC5011AE8263 /* leveldb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AA362B7E05B908556EF1C40CA666DF9D /* spinlock_linux.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8CB7DF5A9AD9F5005B81FA459DC5ABCA /* spinlock_linux.inc */; }; + AA404F48187717E7AC80823D27A1669D /* pem_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = F04B6F8289D97B208413C06674E85532 /* pem_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AA42455B9B036DC260F4D59EFEE77E95 /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = DCDF6188010FA4A96C4BD3D5C714685A /* server_callback_handlers.h */; }; + AA4456656E872B2BECAFEA34857906E9 /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 51A41A971D478C0E5D2F4F099C975992 /* extension.upb.h */; }; + AA4BB5A52A99F549B1B538880B3E026E /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F9191D37BA551900F6BC97464182CFE1 /* common.upbdefs.h */; }; + AA5AC8FA0BC974D82D926B3233598540 /* load_system_roots_linux.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = CC3A8DA1395808F7C9399B31FCEFCEB7 /* load_system_roots_linux.h */; }; + AA6C8C1AFBBC33497A3689B7EEF84BF6 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C998E9485581FAB657353652C0EFCDE /* authorization_policy_provider.h */; }; + AA6D3514076E1110223D3DFBE273CFE8 /* udp_socket_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D1C850B5184BF26698AB9FB25B10D3E /* udp_socket_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AA882052975097BCD536DAE8CACB472E /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EBD130E1500A13073B025DA6F72BFEF2 /* context_params.upbdefs.h */; }; + AA8E640D64AAD4F7DDFE05072FAFA02D /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 8FD28D8E3D0EF43B0B8025DA6BF4E5E2 /* murmur_hash.h */; }; + AA8FA15BAEF9FAC93A6C5DFEBB9E10A1 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = E7631C6857E1FCAD4E94B8437BBC3425 /* channelz_registry.h */; }; + AA9FDD9FC4C947A99360DE8383FF4D7E /* memory_request.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 403C3AB3414115AD58E217898C0621D1 /* memory_request.h */; }; + AAA6E29D530278E66A1E907597482E42 /* p256-x86_64.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 9F6A9630CF3E3FA9CB2CA8EA089E4B9A /* p256-x86_64.h */; }; + AAA7FA00F212B492E14F440DE9868965 /* http_proxy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70F381CF1202BD44C3ED4CB0ED05E529 /* http_proxy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AAA830D5480B20A81503456692DA61A7 /* bytes.c in Sources */ = {isa = PBXBuildFile; fileRef = 2974D433CBCCD3E08730F77A4C78A9E5 /* bytes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AAAD1C4E6B6C5CABE34E439D0B497546 /* rds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3A7692299C7A761674EC972450ECB93F /* rds.upb.h */; }; + AAC6C38ACEBAEC20A175BAA0238568BE /* bio_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 163E3499E12FCA661CA97B25342D1CA6 /* bio_mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AAE6B039E446652F1DCAEDD307DE7CA0 /* int128_no_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 58BDC78857AC000484A9BFAE623D3117 /* int128_no_intrinsic.inc */; }; + AAECE36FD2CBE49D66E32F78E06D588D /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5AA9BE6346C0C625CF9BD0E6454EAA0B /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AAEDBAD5EA905B0059221675A8C90BA8 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 7374C9BE75E299EBBD473AB2D8209DB6 /* server.h */; }; + AAEEF1A2A40EB57E63B867CADB2E27C1 /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = C9310DDFAB9D2356CAC7C7E193950A80 /* map.h */; }; + AAEFDA21044822D2E71C4483D83E2E99 /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = D8579DE5DE27A25EAB2B7E9D5BD1B08C /* civil_time_detail.h */; }; + AAF49B1865A6D4F6653E252E2A371861 /* symbolize_emscripten.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 5C39C22DBFBA6BCBE8E1007E3C5FE6C4 /* symbolize_emscripten.inc */; }; + AAFDFFC805C37D602F28203021D27CB0 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D430DC36E369224FE80AA1C779C873A /* health_check.upbdefs.h */; }; + AB0294561613A917683F5839EAA8E7D6 /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 4DA53456E41B59A8E6539F7FB5B44164 /* sensitive.upb.h */; }; + AB03BBCDE1E58D4F30E0424315677520 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = E46CDF73C34F2A6DBFFD58BCAF0B14AB /* versioning.upbdefs.h */; }; + AB047A861921DCF1BBE19C9AF7EE8C09 /* tls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58170FC46FBF9672498F9CCDADB3BCB3 /* tls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AB0A50F79D1AE61496737262675761C3 /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9EED8C8B5F4FE9081061882F86B10660 /* timer.h */; }; + AB11D3CFB20E46499B42CE104058BF1D /* reflection.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = D7414D9AF32CDD61601B8D433A1579F2 /* reflection.h */; }; + AB134C42AF2F84659F59AAF574B94A3C /* ecdsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 04DCC796577EDC8863BA594DAE877F68 /* ecdsa.h */; }; + AB1B1423A92121926B960459DC40BB92 /* grpc_nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2BB8966061EE3FC9C30E7289F1760FC /* grpc_nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AB1DE80C8D06FFC505DE13E5F642D735 /* FIROAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 432EAE3FCBDEF38E16D4815BFE8FAD36 /* FIROAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AB212EBA9BFC48923934F637B0ABE788 /* testharness.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2A7AF7CEDEFDE3FB43A553AD80EE77A /* testharness.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + AB2A2F44C99586AFFDE563FC0D7913F5 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2631D6E1D13D75FF2CE956EF87A51DE9 /* client_load_reporting_filter.h */; }; + AB2F7DC2AF4750CD6F11BBE118352BBB /* load_system_roots_linux.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 0B943E9756E367B7096BDBB2C5F8B918 /* load_system_roots_linux.h */; }; + AB30E1B33E4B888EA0100007A5003F71 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 31BC3E811530CFC8F0EF0226B7348954 /* config_source.upbdefs.h */; }; + AB37BAF4A276313D6255D2CA9FA2EBCA /* binder_auto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A448DBD94F59B1C64E5CCE504D3E2A19 /* binder_auto_utils.h */; }; + AB397611573F540D9C2AB52B301B82CA /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = 62CCDBA8A951452096D19CA6C7098998 /* xds_cluster.h */; }; + AB621FA30B9628B0EC11F046C401E7F1 /* port_def.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 7B8708073A39FF01D99A3CA282001D1E /* port_def.inc */; }; + AB7DD665AF3CE7D49761AB6EC4F4002E /* executor_libdispatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = D69FBDD8E0D7D45D243BC7C1BD5F3906 /* executor_libdispatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + AB876C7ADCC70CE9FA8616B846816CD2 /* internal.h in Copy crypto/pkcs7 Private Headers */ = {isa = PBXBuildFile; fileRef = 62A9736912C39F4F9A7F0A697DB5449F /* internal.h */; }; + AB8FE270057D16A052DDA75341AA660B /* tcp_server_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 77A93A1F4E26ECE5ADC71856B90F81E7 /* 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"; }; }; + AB94B58C5BE332996D34EDCC14B24BC0 /* gaussian_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACBC6730B7C5A478FFBF73FEB242400 /* gaussian_distribution.h */; }; + AB955D66AE172C0E07DE5B464FC1570A /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5F1C213C08DDC760EE67C2738174148D /* endpoint_cfstream.h */; }; + AB985EB338EC611503B1DFD378311187 /* unicode_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED0ED539C1209494C4B35342852EF579 /* 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"; }; }; + ABA6A046C5E13A65840DC351EA19BDB0 /* ssl3.h in Headers */ = {isa = PBXBuildFile; fileRef = DFDCE1F0D4E68CDD61E4BDFE7B633FA2 /* ssl3.h */; }; + ABA7382115E308EF3FCF7E820D68B296 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 264577CB833051B51BA2360BE30F51A6 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ABB19B86E38CE252A386D9DE583A4B78 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C432CA2DC48A0BAB7331D1C39C35BF /* logging.h */; }; + ABDA5EB3CE554A1D4F97015B215E4ABC /* credentials_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 161B486AAD1402A066E0C1AB4FC3E7B7 /* credentials_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ABE2EAE8B946B5A1D017F3EF8683B6CC /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 881A5F2831C8F1406AF1DDE69874A1F6 /* resource.upb.h */; }; + ABEFF5587D1E3CC87752F07E9115EDAD /* memory.h in Copy memory Public Headers */ = {isa = PBXBuildFile; fileRef = 2F967F5BE887A7D146BA84361773A1D0 /* memory.h */; }; + ABF72A9860DEA072D25FF2EA4CA71C3B /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED0C93652BE97358E098C4011FA69A0 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABFC00C2CBFEF0483337094389C847BE /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0EE1E7BD4756928D0F851341E7E4A06E /* circuit_breaker.upbdefs.h */; }; + AC074D297D6371737FCEF6B3C68D78BC /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D185BE21E7EABFE79FBEE3A207D578 /* common.h */; }; + AC0921BFACDD9732A6214626C7954E8E /* security_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F1CAE205BE8600281AD6B95AA003996 /* 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"; }; }; + AC148502980A241161D126FA19A009CA /* low_level_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 20BC233FC5E586BC3A206FB53916E509 /* low_level_hash.h */; }; + AC1D9AB21A98A6334548A78BD853E63C /* futex.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 796116B81CDE13167E77B2A1F793F330 /* futex.h */; }; + AC20F078C4775AB437DAF171B23604EE /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B39CEAE8BA72BD85EFE35F1A19EDBC /* poll.h */; }; + AC377274F8A18E74D329A0BC1323EF2F /* grpc_root_certificate_finder_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D40D9A43D06695C350F28CDD9B7BC76 /* grpc_root_certificate_finder_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AC41148EDF6D1EB2D1F997B45DD60818 /* civil_time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63501B7EC1DFBF1E5015A34011CCE92B /* civil_time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + AC4EB9F6B5E7A611C573A4AA2B4EA323 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = B97F8B8F610AF4D1A46AA7B45514F2B1 /* 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"; }; }; + AC6675A7DAA9C624F25DD5E5FDE35566 /* pem_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 43D0FD0CFCA1CC8B666AEA1ABA5B8C77 /* pem_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AC698046F332C61E4831437F326D2445 /* stats_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29AE2A81D2F03CD7F2F0B2210A8AB030 /* 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"; }; }; + AC6BE19459017AB63761478F08B89EE1 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D240863EF0AD60E5406EDABE5F1B968 /* protocol.upb.h */; }; + AC7238C1661527479AA24FF8C12451CF /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 867F70F338F6C0A8C26B84BB412CCB07 /* path_transformation.upb.h */; }; + AC74E392C0CCDD545A56B33B2D9913D4 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B0A0A6DECF32C0BF9DA4F223A8FD05 /* HeartbeatsPayload.swift */; }; + AC8A89CBA4602C2184B5B217156DE8F2 /* bn.c in Sources */ = {isa = PBXBuildFile; fileRef = B9B3A906BC4194330C9CE9EB755B604D /* bn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AC8AF6F6AC65EA9A5CBE79F78834B4D0 /* protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F90C1C8B0575BF54FF179737758A1278 /* protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ACA77628D2B4DA27C93EE0C117F6AE67 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 19AF83F9B66111EF9205C8264B70A2DB /* http.upbdefs.h */; }; + ACA7F5F15B88F83331CD4410400076FE /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = F9EA6A3F09D4CD645DC140A0B2CE519F /* atm_gcc_atomic.h */; }; + ACA9408D920383D84EB9936D53DC7FA3 /* server_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B43FF235702065C6B602B71ED71778D /* server_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ACBDD9797DF6D558A924349A2CA88B1B /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 35090CAE4FD57571082E5A3FC8287D4F /* FIRTimestamp.m */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + ACBE93FCA20C62A37673BE4CCEAD7BB2 /* is_epollexclusive_available.h in Headers */ = {isa = PBXBuildFile; fileRef = B971A02D27FBE26BFA9BF16706726AEC /* is_epollexclusive_available.h */; }; + ACC18DB104F08169B4D3B49DCABB7246 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4E9605CCB29C2A2FD2F166AF822B8E /* xds_api.h */; }; + ACEA6234E87EBBDBA91B1F6C4A65BE5F /* tcp_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 990BD39D3B1915F7706BAEC88238201D /* tcp_custom.h */; }; + ACF22833665B665066BE528EBF5B3B15 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 788A841BC05B9265D71AD897949481C6 /* semantic_version.upb.h */; }; + AD0B5B3E5BAC60D48E1A2FA43C646DCA /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = CB029FC3D64CCC86FA19B6EB8F2FF958 /* insecure_security_connector.h */; }; + AD10E745E98ADE6057D7802BDBC0EC29 /* socket_utils_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE0E0DCB96E3660E543EB03718B17251 /* 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"; }; }; + AD166A8E8E4A9EB6F73E22BD3594D63E /* representation.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AF39D74010F3156AE465688D8C4700EB /* representation.h */; }; + AD1DF41641BDA696FDF0A9787EFC7DF5 /* string_util_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F75956A9C0ABD6732DFB75A97D98D80 /* string_util_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AD21989BA8DBB85660BE12419F1C6AB9 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E96910125E734038FDCEFD0E533E850 /* debug_location.h */; }; + AD2373F1CE1AD62BA44CA5A6193EF5C9 /* version_edit.h in Headers */ = {isa = PBXBuildFile; fileRef = 228E366A9D6D040175B01E63369F74EB /* version_edit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD2EFC889CB7921794E9ED01EE0F835D /* FIRFirestoreSource.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55DC5F968EE208F7E795AC84DEA1FFC0 /* FIRFirestoreSource.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + AD5EB86D0714D54BFFDF77E64ECB74C1 /* pcre.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B00D9AEA5BB3B3C6EBEFDCCC8199BD /* pcre.h */; }; + AD95931407A07758D0BB4CF1928FAEF7 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = A59111147D0FD772C57D9441FDF499CB /* tls_credentials.h */; }; + ADA00BCAFDD1ECE0B17EC0C83FC404F5 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C394F11DE2D57CE916E89F5D66298DC /* http_proxy.h */; }; + ADA6F8D18D22882702FE5A581E91FA7B /* certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 01E07A650FE7160BAB9DACE08C394D98 /* certificate_provider_factory.h */; }; + ADC0BF5E0D7AF7A3B63AD52E87D402D9 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CC93C8868B8EBD1B0F7FE3F612EBB777 /* tcp_server.h */; }; + ADC6BEC34809CCE50C6EE593C690C777 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BD9AD77C0B70F4A3D45FC51E2CF23024 /* rbac.upbdefs.h */; }; + ADC758DFA3EC77E9E0CC6A46375C8E4F /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AF25EF722D3914BF9F97D6A7484E30 /* resource.upb.h */; }; + ADC96CE358BC3978E41EC39F246EB3D7 /* ring_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53E4044B7D53854CADFAE96E62EC9CE7 /* 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"; }; }; + ADCC70F072CDB5FA6A129E7883AAED13 /* async.c in Sources */ = {isa = PBXBuildFile; fileRef = BB33F485C59C7D64F34094F3C72906D2 /* async.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + ADCDF92117B224B0D84C8506CA26BFD2 /* mutation.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = A887CBD7627C4AF8ED92FE8119EE1E3B /* mutation.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + ADD5F1AC58B0033D8CACC32BC6A63DDF /* evp_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 022D057408B4775252007A0BFF06053C /* evp_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + ADDE78190B35CB3C25E6CCF29DBE180C /* FIRFirestore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 887EC70F3633A9AE3FBC6E2FB987F759 /* FIRFirestore.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + ADE43DC45C3F3D6EDA42ADC61A1C07B9 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 22983DF9A1162EA90005A0D80BADF909 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ADFA38E080C0FDDFBE44B7D127B0765C /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A9CDCE24434CA2EA25945DD7B50187 /* grpc_tls_certificate_distributor.h */; }; + ADFB36DA503C969BD1FE8DE25E058DEA /* config_dump.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E89766E350AA39D9253360D977A2B93B /* config_dump.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AE1EBCCDE9C890360AAAD8C8986355B4 /* thread_pool_interface.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 929150B4045F2DCB2B08088C1E8FEC90 /* thread_pool_interface.h */; }; + AE1F59F18D1957EB3F59FC01F55F43A2 /* lrs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E733FDCA707987697ACCD6A6DECA99BD /* 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"; }; }; + AE23C58F39FEC612C77F7A184C0EA642 /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F9191D37BA551900F6BC97464182CFE1 /* common.upbdefs.h */; }; + AE24560FB6BFEF4B93D0E823F5D0FE0D /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = D3C95DC3E93F043B54A480FF49EF1672 /* resource.upb.h */; }; + AE33520D399F091A928135A99D1958C2 /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68C0F703B5AF27E74CFA839AB320AEE7 /* HeartbeatsBundle.swift */; }; + AE3EF7E596D6B7B79C611D3D747185F6 /* route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2198D6F3ADA69B721E9CEF218CCD4549 /* 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"; }; }; + AE488864C7CCD1ECABD78D92EEBD4406 /* pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 60F7A372AED14A0E7E62734950715DE8 /* pair.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AE5DAC02439A8D6CCDDB2995676DC17C /* utf8.cc in Sources */ = {isa = PBXBuildFile; fileRef = E69244DFD082692966F0157DEF6438F1 /* utf8.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + AE63BC127976FA325C9833A4B189BD82 /* extensions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66342A8CD6E4FB55F087977258EEE204 /* extensions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AE934369E599EA1E4DA2FEE91613F331 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB01F073A2C48F74641E4DCF704031E /* xds_http_fault_filter.h */; }; + AE9A2C3FFB792F15A17568B8C5EA9D2B /* listener_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B0801996947176F859989048E1EA3194 /* 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"; }; }; + AEA0522CBEFCD7DED616C926304365D9 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1765026A58394FF23CBEACD729275440 /* metadata.upb.h */; }; + AEC5913983A00741F835E3CC353A34F2 /* sync_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 49DE1AEEF83CAB8467865CDBBFFAC641 /* sync_stream.h */; }; + AEC8F9D640E4D5F0C857086B474A2D59 /* sys_epoll_wrapper.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A6D7BAE6B7E3E2068A1CEF30090B4940 /* sys_epoll_wrapper.h */; }; + AED87D4B85E0DD6F38FA123AE094DE48 /* symbolize_emscripten.inc in Headers */ = {isa = PBXBuildFile; fileRef = 5C39C22DBFBA6BCBE8E1007E3C5FE6C4 /* symbolize_emscripten.inc */; }; + AEE45788B25E27532B497474A07655A1 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = D50DC06CDFCDEB0D1D0762645FD18DE4 /* function_ref.h */; }; + AEF0C93540176A7FF0B96662A43313C8 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D8BCB168CEA2973C48A5E16CD76B396 /* json.h */; }; + AEF9D03730AFDA7F2302CB7A71C548F2 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 23B2972A80C7CA3212B9FC9FE5814F2A /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF1A44DC334486D2DC5C8B22FAADB881 /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 149990618120ACC66DAF53C0E2D490A9 /* init.h */; }; + AF2100C760651743FE8D5E99F13F95BE /* fake_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = F871B511401EA2EAE19D01EA89E96474 /* 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"; }; }; + AF21ED577BA047EC0CC8FD8913CDA6D6 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = BC9334B46F819842EF69A205DF8890A2 /* FBLPromise+Always.m */; }; + AF2F6EBAC253179E3DA051DDBB7020CE /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A41A971D478C0E5D2F4F099C975992 /* extension.upb.h */; }; + AF32D420733570DAA83BF930A2D3A966 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A81DECDB45B0513452F97881D5B2C2 /* grpc_tls_certificate_provider.h */; }; + AF37ABB6070A74F20387CCC403987279 /* lds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A768144AB6D73F5C5F43D1FAD0ACFF0 /* lds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AF49153A9B6CA638D7C943B32A371838 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 359D731067F13BF105D9BA28817FB2A0 /* cert.upb.h */; }; + AF654DE9896A379E872A2EECD310DCC8 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 62CCDBA8A951452096D19CA6C7098998 /* xds_cluster.h */; }; + AF7379F7C0D114AB66554227F62D3D1A /* builder.h in Headers */ = {isa = PBXBuildFile; fileRef = E85CA170651FD4B710B267495F88637B /* builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF83B1222044AE5DB3913FBAFB89CF38 /* stacktrace_powerpc-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 89219B24124C1EA0EDCB9934EF49C6C5 /* stacktrace_powerpc-inl.inc */; }; + AF9C868EE669FE3037599D50047337C6 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 80970750882AC55CC666A8DAAE072D87 /* alts_tsi_utils.h */; }; + AF9DD770B3D0C4AF80AEB3502FEB77CC /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 231105B6F76806840920DD259AD9E87E /* time_averaged_stats.h */; }; + AF9F9941E9D2D98C635D6189B0A37596 /* msg.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 8ABD334F67674CACA227946663851F9A /* msg.h */; }; + AFB1D6A78FA2C7C2AF2D572C6471DF35 /* message_compress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C6C45CC61C936EB4B1FE2F24A9087A4D /* message_compress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AFBBBE836112BE7665E47185C635259A /* grpc_plugin_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47F98BD868336A279338135DFB37AFA8 /* 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"; }; }; + AFD260E489F00227BA7386504F9D4378 /* channel_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BFCE9DF2C61AD5A8FCF9025D41995C1 /* 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"; }; }; + AFDA29EDD3103641C57D84A6B54CF59B /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2465DF4B6EE830DE9169C9B86D2D721E /* cfstream_handle.h */; }; + AFE71BF1143D4A4240E53D3AF85B36A2 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = CC95201DF4B580BFBB30742544ED0158 /* hpack_parser_table.h */; }; + AFF3D1FA1ECBDBF9046B59BAE54DEE28 /* router.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7106F5DA46DBF6EBDD4F975642688BED /* 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"; }; }; + AFF9F7C0DD65C54EE36BA94B42DF09EE /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 753DF97634FB28A0BEC213F480F0159A /* xds_resource_type.h */; }; + B00273F7359CA0410DCD9E70D33979D9 /* endpoint.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B003672412C6F617EB7B44F073F9287B /* endpoint.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B01D291F855AEA11E4DDD59C2AC49DE7 /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 84ACDA529F2AFEA779F7FE3FF01046F1 /* ssl_utils_config.h */; }; + B03C9B47966599E70534559100F9B699 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD96C498CC7A481D4FA1E46850E70B3 /* method_handler.h */; }; + B0535A378A07F57FA7ECB2E39A46EC4D /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 30ADE7D86FE79B7209769E41B9B2F663 /* scoped_route.upbdefs.h */; }; + B0597BC4C4E109175016B7A181D4FFC5 /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = A40414EB86D6F515FABCAE2ADF80EAA0 /* dsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B0616C687028A6E0C35735C6C22F9B31 /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 9BE629906350B1134E3C1F6681F78F4B /* filtered_re2.h */; }; + B068BC2BF7436DF588E937BC43BA28AA /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = EA1EBB0FFFCE5E65F3BAB536F2BA3228 /* def.hpp */; }; + B095E4341E52065773B7EC43EBC7A199 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C6AB9A51DF480FD3702398069F47BDC /* GDTCOREvent.m */; }; + B0A11C0B01DFA1A7AB99CC758FE3288B /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96E668612E5C599B08A495CD157D36BC /* Storage.swift */; }; + B0B2871EBAB15054001645FF55F11227 /* FIRSecureTokenService.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA85A72A034EC7898DDC137CFA18AB7 /* FIRSecureTokenService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0B722EE661FC6E2E0591FB71110C35E /* server_secure_chttp2.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1C58E306BAA0198D9D4947C5DD40A82 /* server_secure_chttp2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B0C297C617D71938B71AFE4C41763670 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4E611AFAA746E11E2FA8697A64C02ADF /* global_config_env.h */; }; + B0D11D476B3A1B363CB69EC6FD34E646 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BB67BB72FC0674B036B79227EC5F482 /* GULKeychainUtils.m */; }; + B0D5699F256062FE20F656F2D6677DEA /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4777A13A57B52DD08A9F5BE6A0500C /* metadata.upbdefs.h */; }; + B0E266BE9A486A1BDBB0A5430F18D56D /* threadpool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55A5F90FC76D4C8EBC2AE24BA3534EDD /* threadpool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B0F8F1871972848E3E19AC805345B1A7 /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */ = {isa = PBXBuildFile; fileRef = 7A04F894BB371F658D3596F92B32CC63 /* health_check_client.h */; }; + B0FAF84989D9CDBA03D1541F01294FF0 /* overload.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5DA59009B2C868695D64A4DDCF2D8AF7 /* overload.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B108496C2A6F6E2424727759607D8A24 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DFAF8D48A76BBBFF540F71C6D14EA46 /* service_config_parser.h */; }; + B1199A5E8EAAC72D649F7F89A7971514 /* create_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E793B27DD447D1E56046628AF07FE7FF /* create_channel_internal.h */; }; + B1232B61494781E731FFF22D2FBD9886 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C57A40087137252FA4A06E35B91EA5BE /* ev_apple.h */; }; + B1240264FADAA62D7329FBB7A710FAB5 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 9715E2498C15B989B352212950CDC1F4 /* mutex.h */; }; + B12D0729E7E11814664F308C3971C29F /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EFEF2A92504D188B7030E2CE7FDB8E2B /* message_size_filter.h */; }; + B130168C2DA103E3CB7C469385D1218B /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF9D96C62883E1B4DE86C5813D96300 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B1324AB19D170E4274C524F625EF7A06 /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D6EEF263EF1C997343E5F88EFE420B76 /* percent.upbdefs.h */; }; + B13A34CC97DC784ECCA0E138DC28CD2C /* a_dup.c in Sources */ = {isa = PBXBuildFile; fileRef = CC4104D3ADCCF639FD7CA8C6B134DAD7 /* a_dup.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B14E2F7D99EA712CC8C17060D4837558 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F2A35D4FB28A438142E0B19E7D7145E3 /* tcp_client_posix.h */; }; + B15404842197DA76D46B220C4F2DC3DD /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = AD309C486B0085B236F6C02877B670DA /* status.upb.h */; }; + B168997FFF3979DDD2526F9A7B79E76B /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 132F3CAC3F715125DFCFCC869B568597 /* byte_buffer.h */; }; + B177F956F9156A63A953B43B15445BE6 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E22F5BBA2821892FAE4BA5F29673E5 /* versioning.upb.h */; }; + B17B448DC7BC3AF41554A8E06BF4EB36 /* client_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 60660BFC635B76416DC9904483AFC9D5 /* client_unary_call.h */; }; + B17F6A40BC72C2DE07D964AED6B959F4 /* closure.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = FDE9C33B7249A91C26C6615344F3D91A /* closure.h */; }; + B187977572E6296B90E870F7A4418C3E /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 7598C107A7457216F0FED97EB6A2CA3D /* sockaddr.h */; }; + B18843E88105E40D22F8612E241EB308 /* seed_material.h in Headers */ = {isa = PBXBuildFile; fileRef = 626FC2372703C60F1BD6817728CD608E /* seed_material.h */; }; + B194CD742B47766CB79EB90ADDBB374F /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = BA26B2BC9BC04A695DE8C3D65FBD2CA9 /* avl.h */; }; + B19A3122BFE0620A09E9DF2C22B533AE /* srds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7D6A66D1510C22F05BD043A93D688A3A /* srds.upbdefs.h */; }; + B1C523C74463089710EA9F89D8B2DF51 /* randen.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7726294043E91B12FE274BBEAF1BCEC3 /* randen.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + B1CA94B474C6D3AF33177FD34C26AB33 /* resolver.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A9520B5273367133F30CCE539AF606B /* resolver.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B1CAA42A2272F078A4F70C6B9328A624 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CBEDE14DC9EB9B242439F210D6978AA /* auth_context.h */; }; + B1D971231171ABE09827D45F900F6991 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F668908B692F59BAF8286406692DDCB1 /* frame_goaway.h */; }; + B1E157BFCC2611C4E241ECFD49F7515F /* binder_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60CD80DB817A8AD9DA0F8C43CBAF68E7 /* binder_server.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B1E939F4BD801D3E671EC5B1E1A501DB /* alts_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 499D04FAEF069609B2E94043FDC91872 /* 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"; }; }; + B1FD3675FB9D16806C86FE7D94BF202C /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EB6E8123424B7353248FEE6438E9DA /* atm_gcc_sync.h */; }; + B1FF6C476D5E954D99219431C8F86BE2 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 67DAA88D18A635D9E46AFD6D8B97DE23 /* config_selector.h */; }; + B20873DA0FA68407B59686312A6BBE33 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = 270FF3A8B12425F38CFD22F2846283C3 /* escaping.h */; }; + B212DC6D4D25C00736E6E0D7BB1BAF47 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = 82658ADBAF80503D4D468962746B5764 /* google_default_credentials.h */; }; + B216D5D6D9F356108C8E1544D8C81980 /* handshake_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CE73FCD9D3568BB47C55C93FA4114DB /* handshake_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B21807FCFE9FAFA0985D1446B0012DB3 /* x_spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 203572C88C88B28545416EEB7D67990B /* x_spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B2239362230B7EE247EA34E6DF2D2119 /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = FF2E6262FD94A607F6F73DA9FDE557FF /* GDTCORLifecycle.m */; }; + B230DE48D4EF2E7709425822F702DBFD /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 5FFFD88CD72F19BE852782F0314B8426 /* slice_refcount.h */; }; + B24276FE2DC54A7EE3626404574A1DB5 /* str_split.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 3AEF06ED64999A6F10753E3EDAEDF7A5 /* str_split.h */; }; + B251C1AF6A6D3209B92461A806B5E5B3 /* view_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2ABE74CF13BDE7352E40A1EF617CF20F /* view_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B25D68EFAFEB4AD3DAF07FFF50AF5480 /* ev_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93F59121210F83ED6A4B3FC2CA90C6CD /* 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"; }; }; + B26855BEF0B78BB265EA9177BE174405 /* lame_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 099A94D98F7B32784E2D8FDC5219157F /* 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"; }; }; + B26989C0020550C9BBF929EEA396EF69 /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D7B5132173B2657373F61218A221CE8 /* WeakContainer.swift */; }; + B26DB4C217168CB559B7697FD8A2C265 /* atm.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F65861A77F437B535A95FF0F9BA7C312 /* atm.h */; }; + B270B26DA3DDBA69CFAEEEAC469987C6 /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = E32903EB471342B3111D3F2ED4399336 /* http2_errors.h */; }; + B27716932A740501D42E4D393AA4C51A /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E45FACEF041958D30FDD2368545F208 /* endpoint.h */; }; + B27B107439939078C71E3C3D33E4FE0E /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0D81023203E4EE2DA52F4796A0F5A9BB /* semantic_version.upbdefs.h */; }; + B2831652D295AED9A97918C421D46E28 /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = CF203CF9C6A726C4C9B45CADD83B2F8C /* trace.h */; }; + B2A083749B361AF9C4C427148A8DE6EA /* mpmcqueue.h in Copy src/core/lib/iomgr/executor Private Headers */ = {isa = PBXBuildFile; fileRef = 6FE23C300ABA620FFE1BD8C5B0C2C8F2 /* mpmcqueue.h */; }; + B2A1E11F18BE94FD3C807727F609F456 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 30ADE7D86FE79B7209769E41B9B2F663 /* scoped_route.upbdefs.h */; }; + B2A491A57662974BAC7AA3A088680B3E /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA04C956E10597DF939666F703AC80F /* endpoint.h */; }; + B2A5748690F8E071B168F7CEC4F21427 /* lrs.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BCFBA884ECF9CCF3BFEF0D26F911F89 /* lrs.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B2A7E94A4DAD6BCDA5451CF7AE399746 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 784EDAC21B9A7139AF68CDB3C25DB71E /* iocp_windows.h */; }; + B2A8A0AEF702A1435531E53D4ADDACBC /* jacobi.c in Sources */ = {isa = PBXBuildFile; fileRef = 88D7E4280638B9DA6462529216378B05 /* jacobi.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B2C5CEEAE45A8BAF07F1823889E575CF /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 93C21671B040C5E0E61F6549AC5C4962 /* iocp_windows.h */; }; + B2D3C37641244DC658B4FF7CD90108DE /* derive_key.c in Sources */ = {isa = PBXBuildFile; fileRef = B44550CAFE9693A03807C3A27A84A3C7 /* derive_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B2D7C417D81C408EE4005AD13D92BB33 /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 985E21E84662452DCB94526D7FB112AC /* util.h */; }; + B2DF606B77EAE048330B98E12C43E7EF /* reflection.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = E807EC6E22BCBFDBCEEB44711D16ABF0 /* reflection.hpp */; }; + B2E1463DFC017D23D17B6F407DCD9DE4 /* pkcs8.c in Sources */ = {isa = PBXBuildFile; fileRef = 465CFCA72D89FC2E25DE377D37613BB7 /* pkcs8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B2E59FFC61F77204E44877150CE16F7A /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A33C253FDF7FF6BB8B6296377CA1D78F /* server_config_selector_filter.h */; }; + B2E801B85BF4195FB908D71B64877E36 /* index_entry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F5E3D71DA43E0AFD41E2BDEF46FCC49 /* index_entry.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B2F66D36589022A92D0F13441E2540A8 /* check_gcp_environment_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C188E04DF1C2257B843979E9187DC63 /* 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"; }; }; + B3004E3EEC1622F9360E055A6D98C8B3 /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = F212891CDCE8903259890FB865565D7D /* address_filtering.h */; }; + B30737953B061C105F5D30549748A9DB /* udp_listener_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 538D1976E185A62525630DDBF81E5EE1 /* 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"; }; }; + B30CA8A0F1E4E8D0073118AF4218862C /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F19BEFDCA620B0A44BB79C7FC8C78D7 /* ref_counted_ptr.h */; }; + B33A41D5C76DDB75282E38DAB231EE5C /* c.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C28F3B72B151276555410668D8643C /* c.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B348C898DF7DC170D64932A85370FF53 /* internal.h in Copy crypto/chacha Private Headers */ = {isa = PBXBuildFile; fileRef = DE43F0B95AC9933832AEE1106F6AA4EB /* internal.h */; }; + B3847F4C57FB0BFD7443FCA79EC244C9 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3BE3E85F22BFA2653E3BB2C4936F61B7 /* backoff.upb.h */; }; + B38968B34543061F572A3DC15C57264A /* utf.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB74C7061F8F431F858E94577B365A5 /* utf.h */; }; + B38B6949CB1A76C2857EDE045213C87D /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A9DA72FE98F8B7F23A8C8607D394D26 /* GULAppEnvironmentUtil.m */; }; + B390F65444517616F457E940B48DECC0 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A5DF75113F4185F5EEFBE5EF2AD41B06 /* path.upbdefs.h */; }; + B39147AD1B295BCB500CA8426179DAA9 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8D1A9C48FD5C8730BE316F8D011EFC /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B3A1DD7C647960AF89D24B2A0EA93804 /* spinlock_wait.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AB696A6100378080A6E1745D84CBA2C /* spinlock_wait.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + B3DCD3FF1B7075910D0C7C4201ADCA0C /* FIRIdentityToolkitRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C71A9C432159D417D4D56459A5FC6B5 /* FIRIdentityToolkitRequest.m */; }; + B3EE5F46949C7B9BC50BB4AAF51C3645 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 39E7D270746FB452F796128CA38B9F1E /* matchers.h */; }; + B3F64DBBFDEAADBDB6ED72A3841D7C9B /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 301B180103AF2C8B2204554FED5198B4 /* statusor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + B3F6E6AC4F90239BF460B77EF627115F /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A05465B9E12D78FD43F7A73E4E6B3F14 /* frame.h */; }; + B3FC0ADAD88794727F3F752DAA97B6B0 /* FIRAuthRPCResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 889EEEB4EDB273694D6B2168E661BACE /* FIRAuthRPCResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3FF643D0E636CC841C1E11009429A8D /* per_thread_sem.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 863135B62D7BEA25601D4D6919F9F414 /* per_thread_sem.h */; }; + B424A53D45ED4D1E629E1D4C3C5B831A /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E11B10628FD678A98B2A12FF3373B24 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B425EB71830FBB7A63D146F19BAA628F /* FIRAuthDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F814C42A3EC2530D6D418DBBDD6995F /* FIRAuthDataResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B44D9EF4D43D32527AABCAA4E17D4E08 /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = ECE02372DB1C641C1931FA7D4C85099D /* call.h */; }; + B45673364B1641A2DD0385052CE6D0D4 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C22C05CB079D376E0606F56E33CBFBCE /* csds.upbdefs.h */; }; + B4614E6A6391B4000BD0454C1E70750F /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC3CEC9C57ED25004EF4BD6269028BC8 /* resource_name.upbdefs.h */; }; + B46C7C3D4827D9201B380B5017662E56 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B430EF219DE6AF565B54570D358AF22D /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */; }; + B48848A0FB43F06BF46A742BDE6570EB /* compressed_tuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 705F100A728668F0DF00FBDD3C907CB3 /* compressed_tuple.h */; }; + B48CF765477F5D1EFD3B549239A43477 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E4CC65A6BBB36F189EDF9C5655FD5494 /* ev_posix.h */; }; + B49D800EF043CF81EB7C20EF43C4F665 /* grpclb_balancer_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDF4E45195E829B89F5EC7907E4F1196 /* 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"; }; }; + B4B0AE0062EBC83E3B04F006341EC596 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FD5CCABE31125C9DB07B78E72C489B3 /* syntax.upbdefs.h */; }; + B4D3B0D33F43D0A9B15E7DCC46E3E0E6 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = E3EE72E50F4818844B60E39819557CE0 /* dynamic_filters.h */; }; + B4EA714B07B8DD3981DEDC8A4840C938 /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00920AF9A5329398C511ACB2668D298E /* address.upbdefs.h */; }; + B503BAA58C573B555784F45C7F09E65E /* firestore.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1C589A4BCD048A01A5211C4A1707B8F /* firestore.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B50FE4AE9BDDCB4352EB6255442D4F48 /* nid.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D0D39BF03216EF127279651A43734F1C /* nid.h */; }; + B51318254504FD66E2683D0A0ED69FB5 /* FIRVerifyClientResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5393370B135AF4280F012285B2494AA5 /* FIRVerifyClientResponse.m */; }; + B51A40B7062C860F53142D1710522F16 /* x509_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = 38D21598A5E15C341C05D98171CAA01D /* x509_txt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B522C668805FF81BC2EC6BDBC8C03B22 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B91A4041C80BE52EB9E2D1C78794AE1D /* endpoint_components.upbdefs.h */; }; + B52BF8A5AE2D21D69C5091A52B5F28D7 /* eval.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = EE7F7FDC6C14110117495E63EB547DB6 /* eval.upb.h */; }; + B53696FFBB8199FDD8F17139BA026A9A /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D9F280597D57C6D3E455A588E4C156C /* backoff.h */; }; + B53A52AA6ADFA9CF90E50C2A26480A6E /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 97193282CC0A0BB73562FD56E5794447 /* event_service_config.upb.h */; }; + B5436B6877D13402B567D91F5348695F /* span.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8CE58EA3FA074E1E9675AFB0BB79CC9E /* span.h */; }; + B557AFC2F881E231708ECE9CA0287816 /* FIRVerifyPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE20194A71A1880BA4293EA14A536A8 /* FIRVerifyPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5642D088799372DADD9942B91F37DF9 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 771911D024A4F199E25F767A888E94A9 /* alts_grpc_record_protocol_common.h */; }; + B5732331DDE2AF3D32C04F63CAD9A367 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DE3359BA5884380CB0C246704179F199 /* bin_encoder.h */; }; + B5775A70B5603D0338546018F811B214 /* eds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7941BA33958084DB7766BA4544C318DB /* eds.upbdefs.h */; }; + B579C7974970B082F1092502470572FE /* FIRAuth_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F6BD49597D2B6F92781A90DB26B716 /* FIRAuth_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B57A525090F8162DF4EBD6451E8447ED /* str_split_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 574759FB8FCB2104B700F4E20287655E /* str_split_internal.h */; }; + B57CCC11C2164F6804B60E09B55D4162 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF1244C45253F59894428DC5998B63C1 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B57E98895F1A7F8BEA755D260A8F7E57 /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C289277C3D3052223FB6396FF2A7F75D /* accesslog.upb.h */; }; + B5810EDE752137D2C7C8273B6CA20904 /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 6F5288621737CD47050C406C8761597C /* api_trace.h */; }; + B59E3131471ED1BE9E1C838A5D3E6CE6 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 077C7B49D7C3D3B7F58E511F2A15C8FA /* method_handler.h */; }; + B5BD3EAB3FF3CF928D93B195420E9A97 /* resolver.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = D9A70D931D7BE20DC9F573A5D004F46F /* resolver.h */; }; + B5BEF9B7BA6DD72C4C9D69E0466CA397 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B65C34B49D2CCFFE7CFDC736C362AE6 /* internal.h */; }; + B5C14272A5E07C0E30168078B617170C /* x_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A49E730FE7C9CE340FE9149A18B6D65 /* x_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B5CB927B7C437D0ACB550E4ABC40F2D5 /* algorithm.c in Sources */ = {isa = PBXBuildFile; fileRef = DD9CFB7744000462E241B2B693BAD63C /* algorithm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B5D2033F10EFC949BFC07E93A845BAF4 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89921609E3270099F8F7701E6D44469D /* struct.upbdefs.h */; }; + B5EF45343B0ED12E090FE6C4AA2891D2 /* internal.h in Copy crypto/asn1 Private Headers */ = {isa = PBXBuildFile; fileRef = 142446914E7013E7EC0C220E21F38F64 /* internal.h */; }; + B5EF5871DA8659507BCDBBDEA742F9A4 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD51DBD3E53972319EDAB4144F5A2328 /* bootstrap.upb.h */; }; + B5F29360B429A6CE2A334DC06B425D10 /* value.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 98CD9EB80BC3DB00131781570B3BC68B /* value.upb.h */; }; + B622C93D87F5F8C0AA6B38C6D1C1B568 /* match.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = E1838FC4A4A4EFE513DF31759F6F7F3B /* match.h */; }; + B62BA1ECA300DD224FAB6FE5CF4C9F29 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 16694E90531F4C1FB23E4E41B6B2BDFC /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B633A29D021FD71AC52B8D2ADD351294 /* symbolize_win32.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 64F43F5F8D77B7AD63DF3CCF68AF04F9 /* symbolize_win32.inc */; }; + B6399752B457992A4E9951821E8B5F0F /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D04A61482DA8F87EA8F0F6161952AFD /* cert.upb.h */; }; + B66D541DCF55A55B09E0DF5EAD568FF6 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A4D952853F9C9CD4AE7CA566C31E2298 /* construct_destruct.h */; }; + B67A67E466A129F9F5FCD6AAE7DD63CD /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 55E780D3DEC7162B7C05CE991F97AEDF /* transport_security_common_api.h */; }; + B680084919BBDC790582497342CE65CB /* bundle_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A0F259892FFA8B44D379B23F27831E1 /* bundle_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B6828A16141E127C6427F532D058CB92 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = F668908B692F59BAF8286406692DDCB1 /* frame_goaway.h */; }; + B6A2553FB145DFA2681E4F8672D1A156 /* type_check.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 68339D626D9A1BC6D3FF6AE67E0053F5 /* type_check.h */; }; + B6B69525A34E391899F8B4B96724D748 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 09984D5C11EC37361F717D7AA935EB30 /* typed_struct.upbdefs.h */; }; + B6BA4A23EB1F46E8AB4CAC8E38F98133 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F53D0D3D50556857E62F6B2004D257A /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6BD5C804A7DCB2BF3213A670C3A2837 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D654D74647471C76A56573D9C721FDA /* checked.upbdefs.h */; }; + B6BF6CD7F6481A752F8CE15130C3B139 /* err.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A704E907C2091CBC4CE460092EE6787 /* err.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B6C7F59AB0ED96798146CB08C5893CB2 /* FIRSendVerificationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDBF5918ABB127A7110E6425D61B517 /* FIRSendVerificationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6CA8FE315CE8B0B703F9DCA594ADE13 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = A634A28D0EB7661984CD86D24543098B /* md5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B6CAAB8A0D89C1CB2BA6218C51786262 /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 04179AC3B879C20206978EEC815FD882 /* murmur_hash.h */; }; + B6CC2B47C3A65E424A94F01EEA8A5C22 /* FSTFirestoreComponent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 47FBFF3E9D8C9EE5A88DB2A773644C71 /* FSTFirestoreComponent.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + B6DB6585BC90A2E4F911139A474A3DB9 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 453166266E6CC074A78B633F0FF2D214 /* FIRApp.m */; }; + B6E2B7FB3A6F1D580D182F511E5DA370 /* pem_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 754B0D428B68D47F7C14DF67E180AAA9 /* pem_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B6E89909BC7378DB2152D4F086C2BBCE /* grpc_ares_wrapper_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = B30A5CBE75B419D608CE8F479A4703D1 /* 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"; }; }; + B6F05840C006E66D0E342DC1447FC228 /* FIRVerifyClientRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC18E826F72EC8D9F4600B143EB4AEE /* FIRVerifyClientRequest.m */; }; + B6F1F20378275F4FBAE84D07948A5484 /* internal.h in Copy crypto/pool Private Headers */ = {isa = PBXBuildFile; fileRef = BEE120EF00AA9CDE2F1DD3DDDBA5C263 /* internal.h */; }; + B6F2D569528BDB5985CD92BB3ED6B595 /* log_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 71BF023C603DCCCAFE0663AEE43044E7 /* log_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7014C606BA0CDCBB245E87580888B87 /* sync_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA1E491D3D78ED13CC97525B38A521A6 /* sync_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B702E4F06CEFE81C578D5D1D4473FA16 /* pcg_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E766CAE6130F17BCF4C80F2189C4888 /* pcg_engine.h */; }; + B726D7F747CE62DADDB57C9D97EB1DF7 /* version_set.h in Headers */ = {isa = PBXBuildFile; fileRef = DC8DF9B81455915D6BAE137EA69A36E0 /* version_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B73287148B91F128C2896800F7724D16 /* binder_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 79AC40B4FA4CBEC2B00045AE929EC044 /* binder_constants.h */; }; + B7423249F545D5B08837CB70B48DA35E /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 331C32CDC4285A8C87B67DC6635AFF28 /* fault.upbdefs.h */; }; + B7478E2F46FCAC477BC4BC3D95998317 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 24FF28E0674B5CA68D1A64E6BFB66B9D /* status.upb.h */; }; + B74A576ACDE83FB736D6434CF0126A47 /* base.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = AF592134A72CB0C30C9EAF1F2AE1F9F6 /* base.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B74C84CB4E6A65B39D6FFCF0707D9E7C /* lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = E98836FB765D34596D83CB9324AF2EE1 /* 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"; }; }; + B75370698FD2367C5DF6A4D9CFF1CB49 /* string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 07A1CF47194A5D7FD4CECFDF9DC2D7FA /* string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B75897723741C652976BDD5998FA51B8 /* handshaker_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2F540C0A381A4CD3FACA6BAAC0F1AD64 /* handshaker_registry.h */; }; + B761FC70E80FA246C270C2BB1000E5F6 /* health_check_service_server_builder_option.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = 46B13EC77F2FEED477A102B965DC9FA2 /* health_check_service_server_builder_option.h */; }; + B76ABA0F8FBAAEF7C8581EAF28FE4E4F /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8112C08896C168B42924C4F9DD4AF3BC /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B7777C691509BC1DAFEF9C9F18278BD1 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F857556AC267BAE04A7D84DB5D70EB6 /* server_address.h */; }; + B77D278C85E27E303BF8B248FBA6DD00 /* resolver.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 3D9E1CF00AFF7FC9675A9C34B7B8A868 /* resolver.h */; }; + B7814F6CD06D665995729B49297465F9 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 958E8351578505527FCB759A7C765334 /* FIRComponentType.m */; }; + B7A1BF68271983BA42EFC8DD6EB3E7F8 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5CED403F2C20A4C89851BD5D4A5049 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7A893D6F711CD147DFB1AC53C9B7900 /* stacktrace_config.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = ECD57E5A719A281AED4A752EF641EB1F /* stacktrace_config.h */; }; + B7A9B1E73039BF4760AB7AF018338EB6 /* prog.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 411245A94573E0146371EF8E7004EDD5 /* prog.h */; }; + B7AE96EC944054401358764D62A075FE /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8BEF0F83D632BA61BC77FB1E12AAD094 /* extension.upbdefs.h */; }; + B7BCCD45D9521550BBE564E1B7FD57CF /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F29064F2D6A013195064F0716BB3D89 /* checked.upb.h */; }; + B7CDAF6EFD978B5836E1E7DF06DAEA4E /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = CC74B22DF2F89580C724D5F2D81BE721 /* xds_channel_args.h */; }; + B7DC6C728BFEE495F6B264DA1E22A1C9 /* httpcli.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D9935D9ACEA68928B838D3A704D3315 /* httpcli.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B7ED3F839C85914FFABAB730EB0372D1 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = F4D62B773DB53025922B293C0273A9FF /* config_selector.h */; }; + B7F8AF4A33CC8E2E799496719F70A37F /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEFE00953709D5B426D1BBB084D49D6 /* xds_common_types.h */; }; + B801E6572F62FF7726D43E6B5062F30D /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7784D97B57EE1C91F8B93163F7706DCA /* scoped_route.upb.h */; }; + B80FF5AB691B5D0F5A1C273057C5EA51 /* flat_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BD01F84009288BECF85674D22D6050 /* flat_hash_map.h */; }; + B8220F6B8A6D6E8A784AC1F9885BC67D /* error_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 56FDCD49996225437CD3FF22F6D2D023 /* error_internal.h */; }; + B84E4790BB23067B033BC9BA84512AF4 /* float_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FAA3D5D002C374322680FCC7D54B64B /* float_conversion.h */; }; + B85367EE6C9307B55C2085B4ECA85BFA /* tls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE89FEB16A144A810669D8956B8E854B /* tls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B867C98577C61F0F57B9848D606F1393 /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DE2308B456F61A5053416DE12A392FF /* RingBuffer.swift */; }; + B86D6F1E25EC92F4D9F1E3A260836CCC /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E79C56C6C365923E6C2C10CE463BE8B4 /* udp_socket_config.upbdefs.h */; }; + B8711D0B895DAD0F0F9117C5A2ADA587 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0647D74034C7585F265E71E900324560 /* port_platform.h */; }; + B883E3CB5CEF32747E11C851092EE7DD /* load_balancer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = AE9C74461EFBD124EE10FF8AECDA9CC7 /* load_balancer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B8868E00378D873F4E889478565190CE /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 8099F38C1FAC2720EC57C0783A005C79 /* useful.h */; }; + B88EBAC33943E418E84D4524BA8763DA /* def.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 8CADFD2E9C9E9D0FA1119A0312A0CCF4 /* def.h */; }; + B89193A16A5DE838376F11DE9E17B62B /* call_op_set.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 01F1100AF8018C34A8A962DBF2D89521 /* call_op_set.h */; }; + B8963537B0EE14360FFD91F5418C9188 /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = F9B172F7E02233AD6D323D4B04349142 /* uri_parser.h */; }; + B896F3752496A748F53579B98AA074D7 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1482574A051A389DB54596A9609F0B0D /* base.upb.h */; }; + B8A7150D949CF1CEB7F0729BA6405059 /* dsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 77A00EFC6DE19312B21355EAAA97DDBA /* dsa.h */; }; + B8B245B44D067E2F4D54F80468420D87 /* load_bundle_task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01D46E00C5F45C6A1A58C776FDE9655C /* load_bundle_task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B8B24DD70C3EF473C4E75AE6BEEBC3DB /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 82A59E6E4AEB2EF6C4B0620D3837A95B /* certificate_provider_registry.h */; }; + B8C5CB97BF7FFA975CE2F314EEF13FFB /* time_zone_libc.h in Headers */ = {isa = PBXBuildFile; fileRef = 574B090D1E11BEE00CA6AF47A8968C2C /* time_zone_libc.h */; }; + B8C68AEB40DBD1FAF3A779A5DAE0794A /* filter.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5DD58F957D9FA700C07D76E450532184 /* 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"; }; }; + B8E2546598CB5D1441197FBFD5BD901B /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C74E796F933D74A73320FFEA8BA90C0A /* proxy_protocol.upb.h */; }; + B90D37C34029E800D4EC9B9E8779023B /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 81C4F67D34ADCD882EC3413B49817A0B /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B926732492270E8B66574CA7B7FB9450 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = E7929FBC54D2EBD1B237C549DA8FD255 /* channel_init.h */; }; + B9356788ABDAFEF227F2937F7FF376C9 /* health_check_service_interface.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 34A2A0D4FE749206479626D6608F02BE /* health_check_service_interface.h */; }; + B93FFC217220627AAE767A28D754CDBE /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = 70991E1BC079F3A393AB61E9202F626C /* oauth2_credentials.h */; }; + B945D62D82F43E8B36A7BCAA77D8680A /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 42BF5DE423D00ED5D6A8889DC095038C /* tcp_server_utils_posix.h */; }; + B94D01ACDC2BB5871ED6B417B67C3B5A /* table_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DADD6A71217D1C6E5BF6864A57632EE /* table_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + B95024F39F92C796427B40029A5F565E /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = E7102C7BA76F3346AC2E89CDF54D281E /* exec_ctx.h */; }; + B950E1E80D4622A95119BB0B81860DC9 /* iomgr_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EC83AFB0DEB26E32DCAB6AFC67D0892C /* iomgr_custom.h */; }; + B95C723A503FE54091B910A884F2EC12 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FF8A679572874826445F00962112C8 /* api_listener.upb.h */; }; + B95F82985B2D94763A46F56A747980A9 /* mutex.cc in Sources */ = {isa = PBXBuildFile; fileRef = D47349464FA8C84A2A526E9698729F75 /* mutex.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + B97A9562A21BB19DAB0DDD622A805788 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8AD11CB45F420996FB36FF740A4823 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B98094E79D88F079C220F39E7F7E06F2 /* path_transformation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CE2B8A82A971758962BBB721DA2F0FC0 /* path_transformation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B9811716B6FCEF8CE4F774F448F7AFA7 /* timer_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = CE4BFA847DD3772F87F1B74127714663 /* 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"; }; }; + B9846DCB3A1A2E62952403C9EE90BA2D /* decode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 377DA236AB03F2BAEE4F557B1579EC84 /* decode.h */; }; + B9A99A53C50A6F5C5DC341211C8D69F4 /* FIRVerifyCustomTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = BCF3C9F2D9DC24DADEBBED200F8F9269 /* FIRVerifyCustomTokenRequest.m */; }; + B9DA2133E2B341D098A96A90FA4F6AB7 /* grpc_ares_ev_driver_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2365850ABBE6EDE8C5DC3E53CD3D64D6 /* grpc_ares_ev_driver_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"; }; }; + B9EFBF25AD7A2919C09D4ED0F97A0C5F /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = DBDEDE9AB4B16852F9F44D21698692B3 /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9F3F2AA9049F7350AD5C4749EE5E294 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B10AE260DD1CD28D3AF1D2436CAF94AD /* udp_listener_config.upbdefs.h */; }; + BA02F470D30C9DB16F546338352C8F11 /* timer_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AFE1A0DB8051D3C1EA049C4B54CC7AB2 /* timer_custom.h */; }; + BA4CBBC6824F9392A9EB8A79CF443DDD /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 72EA8DCD42512897C0EF310A5BD1D87A /* message_decompress_filter.h */; }; + BA4E7BDF92CAEE2D956F23DD933BB0F9 /* path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 02592D9B0222C5EF6A2B0838BB1940DA /* path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BA5ACD8278A1C92AC90F7517132290D6 /* check_gcp_environment.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D7B642DBBFC8855AA92F401A5394F4A /* 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"; }; }; + BA65257AEBEB32771531CCDD1EB00C59 /* aead.c in Sources */ = {isa = PBXBuildFile; fileRef = FD43BC099C8B74F7A494EC90F4D1AD1D /* aead.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BA6D088016728C7CABA55E4E80FCC435 /* FIRGetProjectConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = CCB17755FE79D3644838238EF45A2A58 /* FIRGetProjectConfigResponse.m */; }; + BA6F8A466F29B2FD2D31B2BDBFC92F12 /* alts_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DE7350C9BE67FDB878476E06F1B18EB /* 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"; }; }; + BA6FC8E8EB8B8AC30D022E47967E56E8 /* subchannel_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 0052729435F79E558EA2A4605778A9B7 /* subchannel_interface.h */; }; + BA7877A21F83FCE3CE0697717F0A3CCC /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 002E293BDF3750B77F88893D7AF16764 /* transport_security_grpc.h */; }; + BA78C669AF5E4A233F62D44446E0253F /* FIRUserInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B0EDBCD8C226A77650A55FD44F506476 /* FIRUserInfoImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA8D60204AD6EF6406503086AB9A012C /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = BFF3A9F1169983E682305EE6A95DD333 /* mpscq.h */; }; + BA93C0806CD2C484DCDFBD16FE7FB764 /* cord_rep_consume.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB804895B5DF75977FAA6CA854BB594 /* cord_rep_consume.h */; }; + BADD33D778BFB37569519E82B53EBC59 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CBD4EBBC8434D3600C301F73169E9F6B /* resource.upbdefs.h */; }; + BAFD0DE5ECFCCBBA52B9FC171575BB90 /* stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75DD8E4F8E6CBC2B0481C530DB70826D /* stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BB0037C75A9A9BC32CCDA2F847E0CF5F /* byte_buffer_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0CED8E1344B32A921026E75B3C1A32E /* 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"; }; }; + BB025C910C02CC85E51427AFF05FD31B /* windows.c in Sources */ = {isa = PBXBuildFile; fileRef = 29C38EFF725A32910E9F02EB1AEDBB67 /* windows.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BB049E09022D0CA85DF2C55F12B18717 /* http_filters_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA2968F993473CC9613F8CB73260C186 /* 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"; }; }; + BB10FDD1F94C3E662F5A71CA59169C28 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = A1D2ECA061DFA3050BC9F153F9ABFC3B /* port_undef.inc */; }; + BB111206BD42FCB8A7E5A1F322C3F8BB /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = C0C3B265B944168433D31B78C72A59EA /* md4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BB1526266C44ED3492E62F8731D26F7B /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB3772FA0CFC6FE664C881C261302DB /* hash.h */; }; + BB23302D8B8B4A4E7B04B1B937813D66 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BF6B2AED08B7B8325D2C3E00110A8AE8 /* percent.upb.h */; }; + BB29337B0ABC427A42346371A90B7B05 /* executor_std.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3E4C7E829110656B7D0D89B70D33BE54 /* executor_std.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BB2B4318B17BCB6A1B10CD4BE8729CF4 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D60C152F48B68B781AF5C39486BE073 /* time.h */; }; + BB2BC14126AD75D0BCFB9781573DFD66 /* FIRMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 75FB01168CEEE27FDD56EEF60AADACA8 /* FIRMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB42D74E29F95B07B211A361C1AE4E18 /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = A481A804862AC9632FFE812C9E592E9F /* xds_listener.h */; }; + BB4EEA7C9CBD5FC971621A7803A5A8C1 /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 09E22F5BBA2821892FAE4BA5F29673E5 /* versioning.upb.h */; }; + BB4F09AFA46AB6261F70028A061054C0 /* srds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F8A847C8D1A7DD0D7E3C3FD2BBFF7D /* srds.upb.h */; }; + BB55CE97F763BC40E5CC0067FE71B7E5 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD48BB29CFBDBF99649B7B31601B1B2 /* substitution_format_string.upb.h */; }; + BB656F0B1E22886E2EDF8DDAE3AA30CD /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 58FEA1A780B83E853DAF4F70D9FC54AE /* tls.upbdefs.h */; }; + BB74B1681958A2E4B030E82E4A54AB25 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 359D731067F13BF105D9BA28817FB2A0 /* cert.upb.h */; }; + BB7528ADEFB7A6F52A75B7647BD325B3 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = BCDAD635D272845EA15B9510042A2246 /* transport_security_common_api.h */; }; + BB7AB92C30317FC194842B114AD5D9F4 /* e_aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BC1CEAB855770C98427CF981FF0B492 /* e_aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BB81EE27307406488D8D67C6B186C9EF /* optimization.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB6B1AC62511A94BE481FB3593CA606 /* optimization.h */; }; + BB932DAFBC68AB631C7C0F215A14CDF2 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDAE5285DDF8A5FEE9A3585E992E336 /* async_generic_service.h */; }; + BB9AFBC2892F4DEC0D0BABFC7E866659 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 25B85E37ECC402FEBB103BADB23FA683 /* bootstrap.upbdefs.h */; }; + BBAE133121BC957D658FC511641841D5 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A9AFB7FE6AE452B55617783E794CB5 /* fake_resolver.h */; }; + BBB4E0FA4B494E96794FA10860EE7C7A /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D1CF84A38DC55E9BA304BF0D47D4FA8 /* 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"; }; }; + BBB52CFDDD0B51C08B255E39E59423CC /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E07A650FE7160BAB9DACE08C394D98 /* certificate_provider_factory.h */; }; + BBB5E085A6760EEB4979BC05F976ACCD /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C5F988C03E0959C610A627039F9D1FD9 /* stats.upbdefs.h */; }; + BBBBA06D3BF32449DB9C78DB7E407EAD /* latlng.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7869C40B95CE31A8445F55BD2687C8D7 /* latlng.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BBC40598E541C684B1B0FDF3550E6416 /* elf_mem_image.cc in Sources */ = {isa = PBXBuildFile; fileRef = A72B3E41AA162406450C089488B6FEC6 /* elf_mem_image.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + BBC67402FC9EA1DE92132CCAFCD05746 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A9B6F0A90CC5BA7B33CF2237F9C9BE /* slice.h */; }; + BBDAFD761823E5D4053202E0956B8565 /* internal.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = AEC9B5C91BBD74CD70E57417459CCF89 /* internal.h */; }; + BBE5C0C9FA64287B2F9BF7A845F3F7E1 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 47A48BA2C9E10B0F9E1DC021C6593150 /* client_authority_filter.h */; }; + BBEDC7E7B32A33B5C6C1CD5930BFC3A7 /* GDTCORMetrics.m in Sources */ = {isa = PBXBuildFile; fileRef = FE7C588F999A8E110EA451FBDA8EA670 /* GDTCORMetrics.m */; }; + BBFCC60AA5C5B800198126B1C89CAB9D /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 31762A74C2BA97BCAC41C45C3EAC24D3 /* xds_listener.h */; }; + BBFD2C7CA600969F9D9A8BEE46519732 /* uv-common.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB59C5A9A17D79DBB88D695B114CA39 /* uv-common.h */; }; + BC0D09BACCD5AF0C8BAC8687DEC1BE04 /* grpclb_channel_secure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4985B65829FE3B7A8AD4E1AA559626D0 /* grpclb_channel_secure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BC22B946B58B6DD78D3EA64EE8969DE3 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E8982C846BF733048731B9C5489A17 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC35384C973A4AE7DBFC7D99F05643B7 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7A7A35D2FD55AC6076A5ED6600BEBA25 /* huffsyms.h */; }; + BC37F12E60EEF92EAA60DFE90C7052D4 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 67589FAA91F55B2DA2016014453B2117 /* load_balancer.upb.h */; }; + BC4C8754EDE63927CFC91A9FD632E608 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + BC4E3D6088E84E7AAB34485990A93686 /* create_channel_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = B2379B2C6D2F0F2F6314B58CE7353DE0 /* create_channel_binder.h */; }; + BC54E398BBF194A14F3286C7A7BCAD03 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF1979D8929617FAEF348191A2E06EE9 /* format.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + BC5E2699EEB80EBE2C486C41204C2583 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = E2ECF6C2E5835032E5396D6E76540AF8 /* retry_filter.h */; }; + BC5F0DE64680E5A31D195C62944CFB78 /* jwt_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8FC28C51467CE70661D52A8F3E742373 /* 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"; }; }; + BC640459EC0A2735B30D773495D9D762 /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7890FE3703D80D553218BB2FCC38A893 /* global_subchannel_pool.h */; }; + BC68B66527CEF4EC2C0AD9BFB98CA5A7 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5527AD8626D33637FA54D0A39292870D /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCADDB8145E79A60C9FFFC0A238927F9 /* filesystem_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1DC8938FC1BF8681D158C98E3380835 /* filesystem_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + BCB1686FD7D604902545636BF5E86776 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = BCDAD635D272845EA15B9510042A2246 /* transport_security_common_api.h */; }; + BCC1552B7A1B37CDDC5B8E349B2BE430 /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6D9566A5C0F6BB475438957CA385E999 /* stat.h */; }; + BCDAA4B0C37E815ED3FEB64DE7BDF0FB /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 730DD5E67DDBA111BECCEB74FC7A0053 /* httpcli.h */; }; + BCDE3B116B9BA739F28B258868D369AB /* local_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABEB41AA71C95E5107014797EB035498 /* 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"; }; }; + BCE88F4B34C38C53934D9C3BEE539485 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB0A385FE4DC4D30F86505F542818A0 /* message_compress.h */; }; + BCF8CFB1860281CDF9C618644DAC6154 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 763961238FDB0238DA1A42718AC7D25D /* ssl_session_cache.h */; }; + BCFD18DE1D8B706AB5360628B31D5059 /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = DAEB608CBE2323707CB13BCA93CFC92D /* view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BD04C86CB04B3F250D5147F623E9EED8 /* inlined_vector.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 651389A6C373E3A2F8445934C5E6B4A6 /* inlined_vector.h */; }; + BD09DC0D246B6F6230D66083267511C2 /* decode_fast.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = F1264FB8E80312972C194247C7A7BF40 /* decode_fast.h */; }; + BD0FE1997C11440EB1F5B9566C24A25C /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E7BE90EAEC4900541C84DA446337B9 /* rls.upb.h */; }; + BD18BCF044782F1D8DF77401A9BE12D3 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9979BB597EE6C4B79BAC85F623FAF21F /* transport.h */; }; + BD241818A96DEA8659AC8BF77ED8D211 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D63C471852D75F593755EB4EE6EFE07B /* tsi_error.h */; }; + BD3231FDB742FF9ADE72F23B3F53B172 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EB850A2DE46F29DB2E41E627503B4B8A /* typed_struct.upb.h */; }; + BD342C625DE496796C9D3C92FB695CE6 /* FIRStartMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = B48EC21DC51F83B43AFCF673086917BD /* FIRStartMFAEnrollmentResponse.m */; }; + BD40C689B48D793906F3A049EA42142D /* refcount_c11.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B3289AC074C52822E31A367F21C9A6A /* refcount_c11.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BD5A43C7828C09B870D86160A4E27234 /* FIRAuthExceptionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DFD83B014E45EE47DFF2DEC599671CE /* FIRAuthExceptionUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD99DAA9C4B9C38D80411136110DDE66 /* spake25519.c in Sources */ = {isa = PBXBuildFile; fileRef = C658698CFED74C3658759C1999F489D8 /* spake25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BD9B0AC64DF73C3165FDB3F48A4C71E2 /* chttp2_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C7A7095D5CD0446D8D8A783372AD861 /* 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"; }; }; + BDAA7BBD74B0293828AC7806F530A300 /* cord_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 133C6133923FD69428B12B73DD9D55C9 /* cord_internal.h */; }; + BDB210237DC717609C8F3E03E9C9035F /* pretty_printing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F8E251FFD37006AA9B04A1BDA6C6F90 /* pretty_printing.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BDB9C9181B89B0324FC72C2F9EE108B5 /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D7950CC2AEABDFD5A7412F38A98C8862 /* semantic_version.upbdefs.h */; }; + BDBA27497B0042BC4D0EC8115BB14882 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = ADCFC3DB92BA3F61AD2B0A282BC91E0F /* ssl_transport_security.h */; }; + BDBFFB0967EF141E5CD0EA673E23A1BA /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2EC831F5805DAC385FF95CF951B6EA /* load_report.upbdefs.h */; }; + BDC68918A81BABC11808B0FE670D0B5B /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EFA836A419AD8F3FB1535F98F899942B /* 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"; }; }; + BDCC4D185F45EA57CBD5C2D538C4B0FA /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C353511EEB33ACEEB6EFDE44335FCE7 /* stats.h */; }; + BDD76360D3AFDEFEEB4656A8F492C702 /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 778944EF90E0AF6A8F76FC1C448D3DA3 /* combiner.h */; }; + BDD8A9845A4BC1C7578DEF1F98DB7D35 /* x_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 56ED4D63820B762D5019EFE0A7762675 /* x_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BDF72785C2DAA94A8091832B5C00B3BF /* FIRTwitterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 349759C76FDED862A17E3B0E68A23820 /* FIRTwitterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE18A5B53F2451E33002A9825C57750A /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EBE553AAE7AC5CD57E21E9BF474A802D /* status_conversion.h */; }; + BE1EA71EA43369A12A251F1810A10C80 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = FDED8CA1A863A892DC54D8801FBA581C /* xds_credentials.h */; }; + BE1FB5AD0B98EE1FD58AFE9CD344099F /* sdk_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 5E5A4E92379536DAFE52CF2D7FE8A1E0 /* sdk_server_authz_filter.h */; }; + BE347E09FA72CFBE5DF2DF59B3A8337B /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = F068C8027FEED50109D6A4B529672C23 /* builtins.h */; }; + BE38897D17A240378DFCC38B354EA756 /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A320C40973853310B12442B3F0EE31D /* stub_options.h */; }; + BE40D7E7977FC5A221CF473660FF9DD8 /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D49FCA81535286187632C7AA6E4268F /* chacha.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BE4914AE8003EBDD2D0221DFD57512CB /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF552252F6F9AA31D017F3E97A5AA8F /* resolved_address.h */; }; + BE604C0CF8A3D537473844114CD99078 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3132C87EF9727DF1E2E73C7611959107 /* 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"; }; }; + BE76375189DA2BCDCE30735DF492B13B /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CD12C11143FF64F755770566177A3E0C /* syntax.upb.h */; }; + BE7B390049ED34DD970019F06D9CBFEC /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DD4E9400C20E1C6BBF2559F178EE0606 /* lrs.upbdefs.h */; }; + BE7F84629C961C8CC28C944F75EF440F /* FIREmailLinkSignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 69554C42615EE5BBA4920EBC13FD1F64 /* FIREmailLinkSignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE88FB76737E8C60190A5DA8DBFF6765 /* cipher.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EB0F032EC69A7D0081E03956C191F605 /* cipher.h */; }; + BE94CA6FC85DC01438A57E8E350C2D51 /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 349E8CDE793B2CE932F468BEBEFD1386 /* completion_queue_tag.h */; }; + BE95E65C35E1F0B8BFD9B9FE42DB1F94 /* binder_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21FF7B5C6347E698893351A6AB5487AC /* binder_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BE99FADD34C5C4786E2625375AF02115 /* decode_fast.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C90747DB81AC465985B192149AA7505 /* 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"; }; }; + BEA0998322C91CFFB63C238DE7909F59 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3ED48C48EEF76302A1F3A1EEC1BFFA /* security_connector.h */; }; + BEB3237B631EA658C0A4DE8E27DED581 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CA85223E8FB7D38B6D9C4DDD12F5618F /* discovery.upbdefs.h */; }; + BEC01EEA5AF3AF3BB874773602195F77 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CC65A6BBB36F189EDF9C5655FD5494 /* ev_posix.h */; }; + BEC0FF36ABDC084C202CA3445B95AFD9 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CD5439BFC642CF6B549988DCBDE5440A /* error_cfstream.h */; }; + BECC04E3AC160404EE3DC481FEFA562F /* FIRSetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F07C77D37BBEB966B0CE90240AE06DE /* FIRSetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BED19D7DDE2503505746FE94C907D0EC /* chacha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ED0F27A12D8EECBA0E30D9A2244C42E1 /* chacha.h */; }; + BED52455922C188E7060C3F37C23B606 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = C780C23EF2208591C3E842433F5658E4 /* executor.h */; }; + BED9608BDC365687702B0E1C74973ACA /* exponential_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 236D2DCCD30F4B4A7BC4444B0857ABD9 /* exponential_distribution.h */; }; + BEDF793A41BD9D94D75703B96B4D1859 /* siphash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CB4D6582FDDEEA3C33E6762AE59500D1 /* siphash.h */; }; + BF086738AEA646D37D290F692E0AF9D7 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = EA552F08AA3CEB33A3D1B895A325400E /* format_request.h */; }; + BF1121644D936DCFE62D621B874B4A52 /* not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8DB7628E9FC4B9701C3BC641342B4A2 /* not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BF11E0637B6AFFBE4E6A5250442FB232 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A590B4C068B532984A690705AE30ACBA /* orca_load_report.upb.h */; }; + BF21A42119B4DF34B5C9A4666E58A52B /* x509rset.c in Sources */ = {isa = PBXBuildFile; fileRef = 798BCF1941D6B7591BF4BA1452DF2855 /* x509rset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BF23C801AAE7E65F51A7C3752BD17A43 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7B133F87D98A84DB5CC78D2895AB25 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF28D81AAF563BD1B9E0C8336E560AD6 /* filename.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5199E32BCE5C570B66FA0F57B6D682ED /* filename.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + BF301E0D91AF2C37B74111A5E7911744 /* delocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E4B98F3697B5B943A8154D389EB65B /* delocate.h */; }; + BF3D96B99583C0F3000C0EE0C4916B2B /* int128_have_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8E0A7645FDF394A22A20A5E5B468EEFD /* int128_have_intrinsic.inc */; }; + BF41B35603363527A1507CEF3E7E31D9 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = 7C665D1FC2400C7FBD0985A56412D91D /* client_authority_filter.h */; }; + BF57DC8D85E7FFB011D18FA3958FA5AC /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 91FF92BDAE6FCBBE8D38CE5DDEE72E0F /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BF5BE5ACE356059EF31E336BB516841E /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5803ADE7B3AB6FB872E2B2286B208C3E /* chunked_vector.h */; }; + BF6FBFA2219D9BABB7FD38FDBA51FE0C /* pollset_set_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = B7CD5CD31F4E652A9357587500D385FD /* pollset_set_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BF948BC8A2F911A20A4C7F1F07C3ACA2 /* config_source.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 824ACA31A49C961E34CEE26C94515B59 /* config_source.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BFC84A911A6AD018C2364D7FF5FC0A36 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = D9ED6DFC01AFDF930B2E6EAF8B62A328 /* closure.h */; }; + BFD9F44D2F289FCEC6BD6FEE62C8C1E1 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4618B6384304D5C44FD318CC9CF960D2 /* frame_rst_stream.h */; }; + BFDDCE7F2E4801FA9781971227F57774 /* grpc_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B27B0D0CB9B474C889C3D1697A35 /* grpc_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BFEA096855025E8604061EF38359D6FD /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4991E31C6D3E641142B9E9D56823DAF0 /* struct.upbdefs.h */; }; + BFEC5F769D8A62C2C6440F0EC38853C1 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB7B8147038BF1175402ACD2895A616 /* grpclb.h */; }; + C0018E6C9B8B1999EC479D07AB9FA074 /* ext_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 80406B32B70F9D6F3E9DD1FF3A595592 /* ext_dat.h */; }; + C018B0DB518789746469268E1767687E /* GDTCORStorageMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 370F83BE4EAAF3C550E082FC6D6DAAC9 /* GDTCORStorageMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C028F9A39AEFADB9B037143F062ECCB5 /* montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = A35B79EB0D3EFF7B97DD845599FF25DF /* montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C02B5290D0D7BC7436C9C4D9137E959C /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F31A74823311E90FE61D5C1788EFDA2 /* resource_name.upb.h */; }; + C0328DA4CF1530B37C24780454FA20C4 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B3360E488D0504D1641A5A332E94E6 /* secret.upbdefs.h */; }; + C03F4EE05ACAB496180CEE3524A00A64 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7894D79CB3F0575E5741F981F8A991F6 /* lb_policy_registry.h */; }; + C040300F63E1C5DD43576F679F43A71F /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = C31ABE5A506EAAFC6D614E6722359819 /* xxhash.h */; }; + C04B8C9762D74AD18CE6AD32F3BC309A /* dynamic_annotations.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2EB24F97021E7DE0A5E11AFDC2B63B1C /* dynamic_annotations.h */; }; + C04F0AC58430175C51256C791838FB7D /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 267C2810B9F8E1E4F4D99EB8713EA979 /* arena.h */; }; + C05569F204DCD9F5D2263DA2341DF9CB /* FIRFirestoreVersion.mm in Sources */ = {isa = PBXBuildFile; fileRef = 74A7921A42FA7E95FF4A48499FDF2F2E /* FIRFirestoreVersion.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + C05CA430885962E2A6DE9A597CAC3257 /* s3_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8C54DA6F1A92B60BA31D5455A6691DF /* s3_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C05F10D2887CBA869DAC97C5CC41E707 /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A65A56AFFEC3C9F0AE54C0FCEAE76102 /* base.upb.h */; }; + C075E37A28263F29B2544151C5F21FE5 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D5841F8520AA8E5E142712400F2B607 /* channel_args_preconditioning.h */; }; + C086F3BB54E82311CDB91603C760B2AE /* mpscq.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBF101E79C7875F99D92BBEA1ABC72BC /* mpscq.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C08C35BE69868F02F44BCE27EAC71D51 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D677C309DC7A4598A885B09B74166C1E /* extension.upbdefs.h */; }; + C08D9EB9F216866324923DDCC24C2451 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DF2F603DF81AAB0CCDCB04B75162B522 /* endpoint.upbdefs.h */; }; + C09262F64AD9A5067F74FCE8889403DC /* cpu_iphone.cc in Sources */ = {isa = PBXBuildFile; fileRef = 724BD849C8EEB14B5E2F02C50FE1421C /* cpu_iphone.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C0CA483C4FAB55BF0D7210F87C829153 /* FIRAuthAppCredentialManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4BF35E68828D6975FFCC44A1B34A77 /* FIRAuthAppCredentialManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C11DF3172770DEAF5CDF95329BF613FF /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = CA236160B250DBC03987657357527F86 /* json_token.h */; }; + C12DE639E5CAECB81DBDF15885C10A45 /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = B1489C57C2D740CF8F0FB7881F160FD1 /* lame_client.h */; }; + C12ED69BB78D6E5CC2A0B17CE5053FE9 /* interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D806BC6E3AC9A90601B95EA95C3C6A14 /* interceptor.h */; }; + C1390C0E71338801D29117E3AB1DE65B /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A7939C380950AF9C80BF3538AD3569 /* dns_resolver_selection.h */; }; + C149C3B886733BC9FE54D5F95D56A62C /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6032C1E83060EDC635D637E9042FD938 /* cpp_impl_of.h */; }; + C15DCC277D0B8512CACD26925A6BB23C /* cord_rep_btree_navigator.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF1C2EBD0C8D8241C1F95AFD4A886F55 /* cord_rep_btree_navigator.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + C16138A9F23408291867A980CFEC6678 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 336AEA0D478579AD0455B11FEEAC47D4 /* gethostname.h */; }; + C164436DC5588E85AC7AADD6895DCB05 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F424470EFAB364140FB72FAA7F35855 /* 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"; }; }; + C16C55EFAD5A218686AFEEE9CEC99539 /* listener_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CC9A447ADE521D437042E901C5495EC /* listener_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C16E50BDEF80111D44005C7BC9E2AE65 /* output.h in Headers */ = {isa = PBXBuildFile; fileRef = 897D44C94A75ADF2B2A6476EF9035A40 /* output.h */; }; + C1712AAC5B6D310B860E68AAE76B6F75 /* spinlock_akaros.inc in Headers */ = {isa = PBXBuildFile; fileRef = 96EA1014529F136E06820A11DF557C0F /* spinlock_akaros.inc */; }; + C17B484FD9A7E11B86EBFED880999161 /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = 9D2D0B809D7F772E23E7BCBFF7A91477 /* ring_hash.h */; }; + C18AAD2812F3E59A253E8B4014B8B5EF /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 6882255841D4F9B10CB68867864064F7 /* alts_record_protocol_crypter_common.h */; }; + C18F17AE85817DDA2AFA904F6073526B /* FIRAuthDataResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ED4E9B594F2EF1387350F8A7F070D4E /* FIRAuthDataResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1909DA65AC4F777D3CF2E098A9DD946 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1FF4C24B8F3D8AEA6D6B6DF20EE5810F /* resource_locator.upbdefs.h */; }; + C1C186F526FBECDC487677E6701D3B7E /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 58076D9E0F17E46B6AB73FB3F6A727F0 /* config_source.upbdefs.h */; }; + C1C508A0ECCECA7239F7FAE48FEA42EE /* tls.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 528D8C22EFC92F9C6B6033E1FCC2A23A /* tls.h */; }; + C1D0B635B86B889A7D6B5527B3553E53 /* seed_sequences.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = A6B9672067D3C678E9811DAA28EACAF3 /* seed_sequences.h */; }; + C1DB502EA5A1B6D2AD239EE8261471DF /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4499246A540AEF224C151AF576A8A51D /* stream_map.h */; }; + C1DC6C72054A723FC25C3D4899608AD4 /* FIRAuthErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EDFC08C7A5E9BA4465E4E0368C7F6F9F /* FIRAuthErrorUtils.m */; }; + C20EA614B9CAB3FB424418F351379F9E /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 854A24B8B40EC74722FFDFAB92716C3A /* proxy_mapper_registry.h */; }; + C2124E8D2DA325C57E7CF0A101C031C4 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 34BAA9CFE82C4136E17331565A543E6B /* percent.upb.h */; }; + C21DFA367135319400B694B699B52DDB /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 42BF5DE423D00ED5D6A8889DC095038C /* tcp_server_utils_posix.h */; }; + C22A28627ED03077B8C186E76718CDE1 /* watch_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12DF719AFB5C67913CD5F8E568B47A7C /* watch_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C23953DABA3FDAD01A0C813FB4E1A3E2 /* zone_info_source.h in Headers */ = {isa = PBXBuildFile; fileRef = E93275DC56AE1D49F78FDF09D1F496FB /* zone_info_source.h */; }; + C24A8E00CF03B180AA8CA1C3B694EC17 /* const_init.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E13F21644CB7F8EE99B8EAB5205CF4 /* const_init.h */; }; + C24E8DAD52B83CE2955E9364F10EDAF6 /* alts_zero_copy_grpc_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFC5F518EAD7FDF7AF14F9346F4E5F64 /* 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"; }; }; + C2582F16EEB0F5DB515322AA4E20246B /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A130193EDE174AD63252F7BDD616DE /* rbac_service_config_parser.h */; }; + C27CDA3AFC80407F0AC8A8DF63D930A4 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 72182DAA485BA61009AD0E25141ABFA9 /* ring_hash.h */; }; + C28D71CEC9D385C607F85977C7937E2C /* repair.cc in Sources */ = {isa = PBXBuildFile; fileRef = F15F6A517CA7BA8ABCD8C867C74A5B1F /* repair.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + C29C295AFFAFDEB14D6A4D6C76AC626E /* queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1526622BBE214154302C8B3AA42F3B6B /* queue.h */; }; + C2A73B1A730DD54B056847031ED34A1C /* channel_stack_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05711C93F4D9C8238D2EE5C91C99A58D /* 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"; }; }; + C2B3058AE26065A6F5835ACCD0910E51 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B685E3D71363DC21693DBF44033EAE9 /* bitset.h */; }; + C2C2677E06B7256EFF7C4885CBCCCDE4 /* s3_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB7644B3B8B5BFCE590A66FAE4A07C05 /* s3_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C2D0553D224B6978F37BCF351B8FE0EA /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5F96B73C87B74A710538088CC3CC42C8 /* xds_bootstrap.h */; }; + C2DD5517716AF5E332D4344A13986B3F /* array_contains_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C80D9620B533F5CC8B7143725F5E4E77 /* array_contains_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C2EFF39062F4A17F7F59EE7EBC7FF6BF /* stub_options.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5A547B8A18E1D0E42C8ADB695A04ED8B /* stub_options.h */; }; + C2FBADD2AECB84B941D3EAAA1301CABC /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 48D8265656FFB2A95AC849DF5F1BBF70 /* completion_queue_factory.h */; }; + C2FF508491EAA16647D3B086894BBD49 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = E1838FC4A4A4EFE513DF31759F6F7F3B /* match.h */; }; + C3056142551AED36A9857B7AC125D2D3 /* uniform_real_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = BC93175DD24DC4CB4EA66B5EEC92AC8C /* uniform_real_distribution.h */; }; + C322CCD47740C5B41DB2B33F2C3A3956 /* pool.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 415AA5B587E40F73B5F16C8C72030CA5 /* pool.h */; }; + C3249EBA62BC5D7C5B4C56652818A657 /* ec_montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = DDACF698F62C15D302EC066C251FD3AF /* ec_montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C33BB660F5E3A649C2C7CAB37FDFC343 /* cord_rep_btree_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C7366ED0E8F6BC89A59225C4DCD483B /* cord_rep_btree_reader.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + C343B57FCD8850C8A90D0B46540E5584 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 31AAB36AB80672070D4A20E260A19077 /* table.h */; }; + C355F410F50C8E2BC0989D8C84B2F4DD /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 212546C840FDB70C540C95566D66E1BE /* secret.upbdefs.h */; }; + C35B803212B158920B8660352449CD11 /* FIRAuthStoredUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 298BA738ADB1D61E877A43293E89B169 /* FIRAuthStoredUserManager.m */; }; + C37C5EDBB096EFDB74B0E59F258B2346 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 36540E334219492265103DE5E0358D25 /* frame_goaway.h */; }; + C38BD6DF6AAC6981019D105C59EFC8B4 /* message_allocator.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4B12C2321E0D337A40480C526BEEDACE /* message_allocator.h */; }; + C3A623EACF0B34080631C1CB85000F7E /* call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 857D08E60D8CB5BC175923097FB528C3 /* call.h */; }; + C3B4542EF75F6DEAEF99F0A60A1026B0 /* secure_server_credentials.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 8891128A7E3C0456DC9B5DB1ABA0E365 /* secure_server_credentials.h */; }; + C3B5D73E99A940D1664EB5D7FE0B7D20 /* path.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B661693A70976B945D486A2E272A77D0 /* path.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C3CFDA62C9039FA5DB4601BB01F63DE0 /* blake2.c in Sources */ = {isa = PBXBuildFile; fileRef = 220776543426E88CF12EEF9A8DE10F3A /* blake2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C3D991785A92EAE8AAB3F37450379670 /* gpr_slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9E9A66CC635D1A9FF2F776CA93E7088B /* gpr_slice.h */; }; + C3DB8CB743A94718F00C30D0E59B4873 /* exception_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = F0024B5CF37C4D98BBC16E6CFF9A7D13 /* exception_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + C3E75D01DA0E6C13516E8C44AB461E42 /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = F97B32F463E2C5EACE7D8468D433E84D /* string_ref.h */; }; + C3F9F6D2D6D46B285ED7AA901EEE9B46 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = E1D5E1D287122207DC6E949C078FD696 /* credentials.h */; }; + C403A2144F93F3EA35BA7CC1E85163A3 /* charconv_parse.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D198033F014ADC43BC5501664D54E2 /* charconv_parse.h */; }; + C407915EE3801520E211236BFB669507 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD095D61CD762988F69F2547176BA3F /* auth_filters.h */; }; + C410E4F975F4DAE8090B7655BE403336 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E58C81289A917C9C8CE1312F6459BC03 /* csds.upbdefs.h */; }; + C41F7388320E7DC0C82C1325A603A14F /* scalar.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DB097F61E076F0BD4E82FF623CF937D /* scalar.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C42DA8BC73D79507A040D2B5949734CC /* opensslv.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA15A7032FCE43008EB6A1B20991D5E /* opensslv.h */; }; + C436EEB9634687A3F6E56DED1F272A0C /* connectivity_monitor_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = FDC59F25F96582A99F509412F39647AC /* connectivity_monitor_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + C43CB99909C54051886CD0CEA7806249 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 06623FA63AFC0B81C8AFA3991287469B /* def.hpp */; }; + C4570FBB5F02518957B39BBA095C0CB9 /* ecdsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 09A3558FFB8CF545CCB09A6AE8BD0467 /* ecdsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C45CADC7E6181DEA88C026A6F0B129C0 /* internal.h in Copy crypto/cipher_extra Private Headers */ = {isa = PBXBuildFile; fileRef = D02F71B44EE5976963C8A736FA15B876 /* internal.h */; }; + C46F71ED3D114AA98956E46659B326B5 /* abseil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C96448A0F25D46E3935E853CE361C7A /* abseil-dummy.m */; }; + C474A004D8B0E6CB0B48BDD329E54824 /* message_allocator.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = EC749BA5CA64F3EB128BC0F0391BCAE9 /* message_allocator.h */; }; + C475DA534D95DC62A45D589A6A2926FC /* benchmark.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 44DB22EF141FC0320D8A50C4162ED541 /* benchmark.h */; }; + C4827C41F9F5DA4561A51E2656499C33 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE02372DB1C641C1931FA7D4C85099D /* call.h */; }; + C48A2DA06AE4CBE906FD088F55255EC6 /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = A5298F5507196E30966765AEF9A12C81 /* client_channel.h */; }; + C48A39DC8994DAD174D368AF65140925 /* rds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B5F3A0BA70E884D7CAF02006F257B70 /* rds.upbdefs.h */; }; + C4A22496B89586E9E6AD94736263007C /* grpc_ares_ev_driver_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87C37E0F74E90802B4C198C52406E500 /* 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"; }; }; + C4A2A9AB74689635B526EB0AEF59E77F /* hard_assert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B97F58C704AE38EAB30E3A54A4904FB /* hard_assert.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C4A4FE88CD4C91C9F732ECA7173BB7FD /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = 93AD197C74B4BE8D8CF97AF3ED68D0DF /* notification.h */; }; + C4AA8F732581D635BD29BF47E7B088F9 /* distribution_caller.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA9C33BE6453F6488929BDDF12BB588 /* distribution_caller.h */; }; + C4AAA66C76F7FC5D77251F66CA92DDD0 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = D07D685E707E7F242C354E361F8076AD /* annotations.upbdefs.h */; }; + C4B4AE4A180C57C43ED83985FABFCA16 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = DF06DE0B6B56AAEFDE8FF6EAECA194DF /* url_external_account_credentials.h */; }; + C4C43F5D49E46178233EB7D92871711A /* ssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A2A03D081AA6F1DDB577BFB8BDE069FC /* ssl.h */; }; + C4CD160E494E5FEEF15F93728D3A2505 /* leveldb_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73431018B41E18B97DF055246F3EEBAC /* leveldb_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C4D669DC0B4A8D593FD15EF4B2D4C5B0 /* memory_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 403C3AB3414115AD58E217898C0621D1 /* memory_request.h */; }; + C4F2B98C1C9D421466FCFF1CDD9D9CAA /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = E005303BECE7BBDE0659498D611FADB2 /* kqueue.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + C4FBBE14EE2434828BE42FC1BB106CF8 /* GDTCORUploadBatch.m in Sources */ = {isa = PBXBuildFile; fileRef = 58041368FDA16445A76501955566DCFC /* GDTCORUploadBatch.m */; }; + C50BA8077A30766A1DB648091F6A4D75 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BA202995629A2A49F55056D1EDCA7174 /* health_check.upbdefs.h */; }; + C514F77AB612FA4E30DABA184B6A0EA0 /* core_codegen_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 294F3668682383F451A9A8112D5311A5 /* core_codegen_interface.h */; }; + C51739E3C918999BDA5715787EC9359C /* strutil.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 78938AE84B4B0CD3E092DB5BFC209BE3 /* strutil.h */; }; + C51E0C38D0B9BDDDFD7A81CCF16969F1 /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1B8995363BFA50249B4FED9E5267CF36 /* route.upbdefs.h */; }; + C5272CE46396E7DCA47981120D5EFDC8 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 70C85EF373FD87205BC5E879DBBEDDE3 /* authority.upbdefs.h */; }; + C53607689AE5849C3EE4E45965E59BA9 /* ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = C74410554AA386F56ACE904C266EB31C /* ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C53CE4090ED4AFD1AD67FF107C1EF329 /* trust_token.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F807C88C8D946C4AE0858F82C1669D92 /* trust_token.h */; }; + C53CFFA4AC86EEAF149722737F0AD645 /* FIRAuthURLPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BEA5CED217FE4E1D219573C4ACA749F /* FIRAuthURLPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C551F97D88476F0D05B44089519FB35E /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 0E67C8FDD242BE3A0B13CEFFFCD3B17A /* empty.upb.h */; }; + C552BED15CC43BBECC597E127D05ED45 /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 84C76D688AAC5A1CD64D289A14CE83CC /* binder_transport.h */; }; + C553C79501A7E4560EAAA86B05CD0AD6 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF91ACDB9EBEF6759C545D91491A17 /* transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C580EDEA48D171285F0733F34D34864D /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B79B40B94165084BE2B90DB925E978D3 /* examine_stack.h */; }; + C5843936956336D732E73AFA5EEAB889 /* CLTypingLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D73791B31D6274270AEF1C7B81094D4 /* CLTypingLabel.swift */; }; + C58965AD8F5DE776B91D6E2688509FA9 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 738AC6A787B65F7CF70CFAEC95B76ACE /* rbac.upbdefs.h */; }; + C58D713F8236C312A9256D141C06D3AB /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = C31ABE5A506EAAFC6D614E6722359819 /* xxhash.h */; }; + C5B2B218BC419B0F4390DBDD7ECBBA17 /* node.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 61CD4B7CD2101D99DA77109FEB66D5C3 /* 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"; }; }; + C5B6C45B5C21D49400A7A4447B14F766 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = DF06DE0B6B56AAEFDE8FF6EAECA194DF /* url_external_account_credentials.h */; }; + C5CD093D9D244A65C0323D9C7F5F2D87 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 652F158B81A24E5BD410FF6854B9DA29 /* fault.upb.h */; }; + C5EAB17C1AB5D831816EFD794FD440B9 /* tcp_server_utils_posix_ifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 668F69D63E6602990F4176032A89E1BB /* 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"; }; }; + C5F3C7D16AE0FB7D9133EB34629412B9 /* container_memory.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 98E9EBEE6E9751792167D11CB8B834C1 /* container_memory.h */; }; + C6002E7519427FF66117DFB744E9F86F /* upb_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BA30B576B1BA480374C2BEDDF57E47F8 /* upb_internal.h */; }; + C60378883ABA9B312F5CC1C0E4A796DA /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5E0B09B8E39DBD7B2561AB2BFD17FB5B /* bin_encoder.h */; }; + C6095848F699FE961691650B888E4677 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 609D8229DC5796383B372B11BA4CE4F3 /* descriptor.upb.h */; }; + C60B734272FA9AB5F3ADBCA8661BBF68 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = D9D21B7F89E0D6FC0FD1112FA64C83CC /* inproc_transport.h */; }; + C6172DC117B1E34354C797EE1E8DAF1C /* unaligned_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F564CC2B91600E34BDD4B0384D34637 /* unaligned_access.h */; }; + C628C2CC93925EE09EBCBEA95B458A01 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A2EC831F5805DAC385FF95CF951B6EA /* load_report.upbdefs.h */; }; + C64E1D911447350ABA9EF54146D371F7 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C21671B040C5E0E61F6549AC5C4962 /* iocp_windows.h */; }; + C65292D4172905F77AEBB3A5390E8186 /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB55B75F8FEA78EBF2DF722BC85D349D /* channel_create.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C6684F10A32AB484F68C99D0C0FA6DB8 /* sync_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = EE2AFBC39DAED75A56A3132E5775A9B8 /* sync_windows.h */; }; + C677BB7955D8D57A291D6E21A4F42A9A /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B4DBCB3412749625EEC3A30195E590A /* GULSecureCoding.m */; }; + C67CC59A6E7A60C3AE9E08DBD4252FD9 /* byte_stream.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 82A014C0E83F78E507B018268BFE8856 /* byte_stream.h */; }; + C68789BB71BF51759927AF6221019C27 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F49B4FB642AF64CEE861ED7BC34E15 /* basic_seq.h */; }; + C69683B342A8766DFFB6ECE25CCF1845 /* symbolize_darwin.inc in Headers */ = {isa = PBXBuildFile; fileRef = 6FAAF56264CE98B1859A2EC38441CA4D /* symbolize_darwin.inc */; }; + C6A70C7710D61FF9EB1EDEF541D48B27 /* bundle.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F658875261BCEB7316C087B32F44135 /* bundle.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C6ADC0A0FA16E8D7623D66F38548CF28 /* exponential_biased.h in Headers */ = {isa = PBXBuildFile; fileRef = 639638A2531BF5E805B566F3CB456357 /* exponential_biased.h */; }; + C6BBFE245AE10F5379CB46841A1D5AF2 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D3C95DC3E93F043B54A480FF49EF1672 /* resource.upb.h */; }; + C6C47EF097B21156E9354B333CEAD049 /* handshaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E39B1588A3667C7C222A061377B7C4C2 /* handshaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C6C9C6A2A197CACAD326530A454C344D /* gcd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CD6349A1823831EC106C8F9D0192E8C /* gcd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C6CB919E02A1336A50A63ABF435BF9B3 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = E7A9F15C5AF4C3A29A9FC06FDF9BF54D /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + C6D8F2FF408271DF43DC5F766A2A03FB /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A3A9FCABB5C99D8EBE66BAC40F62FB4 /* IQTitleBarButtonItem.swift */; }; + C6D9FFCA679740F50EBD5DB0193D5617 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B12C6C6C56F70BD556C855547CAD39F /* internal.h */; }; + C6DE6F2A532765314AF3B5F86D57E5A3 /* dtls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D94B8E8C0E0119FD1BC1609617F4E60 /* dtls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C6DF13324C9B0889D81CDCEFE879A0A9 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = C9C6FCCA5F7B9BED686D8D5124DF6EB5 /* file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C6E4B4BE64E5723B88EA7E277E53E1CE /* crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = DCDD5D1A254E5BA13E241BAE74B85A7E /* crypto.h */; }; + C6F737C6D260795576DC00EC796BCB6F /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = DC7062B0EB4486D0F9C08C7AE84B4973 /* upb.hpp */; }; + C6F91CA0FB0A34A5662A691886F1C243 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D1468D1C803576335FC81D21922C9E /* cpu.h */; }; + C6FE18A2B9C9B5BC12FB1A4FEFF46D83 /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = C4138AF48FD95F99619C33DF0D042ED2 /* completion_queue.h */; }; + C708D5B2C6884E845F17A303F0DD5FDF /* FIRGetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 47A8498570BEB4875B3F1B6365EEA9EC /* FIRGetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C720514F8EEBAE8A848FA154A8B99635 /* boringssl_prefix_symbols.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 310DAF67CBD5C72F475096BB20B3F6AA /* boringssl_prefix_symbols.h */; }; + C721CD8F6369F6F8445CCCB180CFAC9E /* binder_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DC2455AF37775A57CF18B34D380CCFE /* binder_credentials.h */; }; + C73A0811060A497137F32BB825188B36 /* FIRWithdrawMFAResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA5392354B9AC3ABE144B7D433B22B7 /* FIRWithdrawMFAResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74C2770958A113576FEB13D2B35BBAC /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = E467C5222696F19EFE394E9FA1EAF738 /* authorization_engine.h */; }; + C74FC424D713420BE94C454AADDDA9DE /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = 3C47F293D49C30B3E0290BBF2DC9CEA5 /* message_size_filter.h */; }; + C750003100B17F1EB186A3D16FF50D9F /* ec.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E043879D480C8F7A101ACF87C6182CB /* ec.h */; }; + C753F604932823A8B2F777CFCC0F5077 /* auth_metadata_processor.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = AABB9408CA7882A2C975D53814794902 /* auth_metadata_processor.h */; }; + C769E113560153C2FA421EA4579A75B3 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = CE0DA6294A1F394195D5C458BBF4E3F7 /* fake_security_connector.h */; }; + C773F6061DCC224B9ECB2DBA84316D1D /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = CC59AAC0894304666F3DB450A030C448 /* threadpool.h */; }; + C7744000080E5B1B42341AFAB72BB976 /* ssl_aead_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35F4BB0B1C9B09FF40778227CD7AEA80 /* ssl_aead_ctx.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C7756D5A772C175C25216BC67F1E484E /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5288621737CD47050C406C8761597C /* api_trace.h */; }; + C785B1C2D9001D4F312FBD43BD0AEF85 /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = BA49FE0C4CDE50779437A81F7E5E8C8C /* cmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C785E31B9BEB063D590EE5F87380B6C7 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B982740FEDE20A5B630B710AECD2054 /* socket_utils.h */; }; + C7888EF99BEE210DDBDB74338BC01812 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EF375D0F95249AF8180A517BBFC62C8F /* resolver.upb.h */; }; + C7935D69E6156DB064D2807E11FA47A9 /* method_handler_impl.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0EEEF532676816FF3CCEE669CDA0A179 /* method_handler_impl.h */; }; + C7940F9FF8CB5DC35715501B9E7B37DB /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 405A12FB51047FDE28B4FC9E5B0ABBB8 /* security.upbdefs.h */; }; + C795C8BA79A6D05C94B25629F70B1638 /* float_conversion.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 2FAA3D5D002C374322680FCC7D54B64B /* float_conversion.h */; }; + C7AD98BAAB94EC2B7BE425AFDE7E36D1 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E8C20C03AC3B8E521758C20B1C85CDC /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C7AEE045453AE038FACB7B50803FCC2B /* x509_vpm.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DD6FB5BB8D62AF84A694AF6B04B260C /* x509_vpm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C7AFA564B5946D62DA620F81DBDB7A1C /* health_check_service_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 34A2A0D4FE749206479626D6608F02BE /* health_check_service_interface.h */; }; + C7B05582D122AEE22CC081A6BBFE7A7D /* a_strex.c in Sources */ = {isa = PBXBuildFile; fileRef = D6A392EC8A59CA278492C3D708EBA3CD /* a_strex.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C7C07C8F7D9D0D986B3E183B8233D247 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 410A02A7A8793A3207ABBC47D9829925 /* context.h */; }; + C7DD356A1C0F8BC01A8F025958F3899E /* pretty_function.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6E1CF0CF101F4040390066149F6CCD54 /* pretty_function.h */; }; + C7E212A2EAFE6114D55A0D9AA8A74D97 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 63460B2B494F427AE6F587B816106346 /* validate_metadata.h */; }; + C7ED5902C817D5F0F5F8D625BED7499F /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB1F8C47463C6721CBCA00D749E0BFE /* metadata_batch.h */; }; + C7ED93D1A8232D49977A727E70E34C13 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 7760EB3569504B2BE667954F0E622034 /* config.h */; }; + C80D7D19FD48E967F73A2A47970F9E81 /* write_batch_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CA57871C8D840E07D16B64F6D4103272 /* write_batch_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C80E957EBB611E258F8B4B1D7D71619B /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D0C52F83102EC7ED35242EAEAE3F93F /* secure_endpoint.h */; }; + C81239B98E1ECF3ECBBCE2C4B49BD627 /* atomic-ops.h in Copy unix Public Headers */ = {isa = PBXBuildFile; fileRef = 88FE02D7AE28CDF1F7EBE77EE8446860 /* atomic-ops.h */; }; + C8285B00E8C1DE05E9E1B3AE8A6D19FD /* eval.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 325EDD8F5946E6544DAE6BFA35B43A4C /* eval.upbdefs.h */; }; + C83715FFFBA8932B5B2352AEDB8FC570 /* fake_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC6EA39A7CEA95090CB3735B4F464EDC /* 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"; }; }; + C8379682E05DF677B7921E6D25818F19 /* cordz_functions.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 78C4D796153F4FBE4C8AE94FB1566618 /* cordz_functions.h */; }; + C83C9A411E19D0B8A862CFD42C3A9A99 /* name_print.c in Sources */ = {isa = PBXBuildFile; fileRef = E6B44525D0250EF680C44D74BA2E369E /* name_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C844B82A0B779875D2A4D20E97B3F627 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB2652C8B6AA9C465C8F9C5F17C105 /* alts_handshaker_client.h */; }; + C84C62F915FF267EF2725CC072C6CAC0 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BAE58DCC88D406362C6583666854E38C /* fault.upbdefs.h */; }; + C85954FECFE548BC81D312C845AD862A /* rpc_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2364B2393F1AAB8A305532A64870EA9A /* rpc_method.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C85FF419798E084A9D42564296F957AA /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 1718F57490A3DF6DA7EA83B04D801B1D /* wakeup_fd_pipe.h */; }; + C8638C3B23C5281B6D1A074F4B236238 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 744FD330FACC2569A4859FC9F49D0E80 /* dynamic_annotations.h */; }; + C873BDEF8E725BE7BA1244281BEB897B /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 53B4A0DB90F0A089EE202EFBF4448746 /* http_uri.upbdefs.h */; }; + C87FBD999A021B4357F50D43E305D0AD /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FAB9226871DFD8EED6D114B30C2BB97 /* function_ref.h */; }; + C88B88FE4DA8D53D4209514F139CC1BF /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3774C4542B6C507E5EAD504513669F21 /* http_connect_handshaker.h */; }; + C8AD310BE6C77BFE5FB099DF6DA7446C /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 8E023981F9B188B33FE9DEEA957C6D97 /* status.upb.h */; }; + C8AF3874250D951A0224ABE2C270DF76 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D359CE8CB3DC0FD7B140401414AD13C8 /* stats.upb.h */; }; + C8AFAAB3CA2EE6E9B5BD7AE5DCDF1FF9 /* FIRDocumentReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99CF657E87CF22DD81D33BC5A6FB9577 /* FIRDocumentReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + C8C14A283C449B9A9E7CF028C6AADD1F /* transaction_runner.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDA2B5FA75E56C2F1CA13969B50F9D26 /* transaction_runner.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C8C2033B4D2941E777F8D24744D83352 /* slice_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = D209503ABF2DFDCA5EBF6823B1CF78EF /* slice_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C8C6B92760929680F54AFC641A807F75 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = FE1B461DD8FB42EFE382F301978AD4FA /* executor.h */; }; + C8C7A08790692AE79F9686BB1AB570EC /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC1CE77C59F8F7806F4191395CB303D /* text_encode.h */; }; + C8E02DA9587CF8C847E4C2EB1624F691 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B07BACDECDE6605E9E7576DA543F2976 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8F561188E2DD28016CCD2FFCC46CAF3 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = C9A0730473ECE7E6D796BE448B056586 /* composite_credentials.h */; }; + C8FAEEECE453A396FA203BFCE0E4891F /* encrypted_client_hello.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92231E0D2DF3032400268E65AE5CA8F1 /* encrypted_client_hello.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C8FDA0EFFCB8D415216AAF617FE2307E /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 79EA410E7DF81FC7428509ABB882C156 /* http.upbdefs.h */; }; + C90960EC6C5B9D91A2C1A5CF9DE83DF7 /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 79AC40B4FA4CBEC2B00045AE929EC044 /* binder_constants.h */; }; + C9172F46866F606E795DF728DF8F02C0 /* json_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8CF61761DF2A588E248A08DD0E0B4DC /* 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"; }; }; + C91820634886D990EE7364F6FFACE549 /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB076FFE6C1664CF4B31BA9DBD36A76 /* atm_gcc_atomic.h */; }; + C9382DF9E654A090FA26FF177FD3CB89 /* raw_hash_map.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5D7D8191C7D44D29FD318C1BE6AC7B58 /* raw_hash_map.h */; }; + C9393EBC6ECE5F1ABB3B2C29F319F0FE /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = E6720827ADECF10E452CAB236C96F245 /* timestamp.upbdefs.h */; }; + C9398FA769D3194B465B0B2225712434 /* resource_locator.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C9917FD6C52304012269DE3BB11CE7B8 /* resource_locator.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C93FA86BB0CE5F47886A94F1AD3480F1 /* upb.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = DC7062B0EB4486D0F9C08C7AE84B4973 /* upb.hpp */; }; + C942BB5C5DFBD7294446E8EBA4A18606 /* obj_dat.h in Copy crypto/obj Private Headers */ = {isa = PBXBuildFile; fileRef = 8744DA8827C8B2359FFD2A6F8FBFA83C /* obj_dat.h */; }; + C947A5CAB0BAA86AFA2C6E073258458B /* channel_create_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0337C4810FF047FA9FF7C5557AB9741 /* channel_create_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C94B4D407DE0C71B8EDF37710F7AB5DB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + C952D335643F688D4077407A986E8263 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = D21CA2E32F37DFDA5BBB2E97A1D718B4 /* service_config_call_data.h */; }; + C9534160F7854D7E51E1C9B718D3702E /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = AB707B7445C8ABA916FED612057CC9FF /* sync_abseil.h */; }; + C95399D6597806327B211BD7DB12DC90 /* tmpfile_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F4B4FEF5E72B2BCB3C00855E3F44495 /* tmpfile_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C9706D6690ACB7E0385FDB4BBD2136AC /* low_level_scheduling.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8915AEFB88DF8D74B5CB9576C55792D9 /* low_level_scheduling.h */; }; + C9727DC93BCB1E522B554457DD2A7A8A /* channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA654FB05A53DBC89801F3A99AF0FE18 /* channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C974348BB39C20233098BE04974817F4 /* memory_eager_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B72B34523D0070F5DDFC241D790198B /* memory_eager_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C97A64A9CD13ECF15DACBD7CCEC1A74A /* version_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 04FF8C1CD67447ECD74BA2B277663D77 /* version_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C987602279DEBB0409581C77088330CE /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A589EB5B36B16429CC2324C505DBDBBA /* resolver.upbdefs.h */; }; + C992042BDE19E734A27F3DC875EE016A /* settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF463CF92DAB5894702B771496620A0 /* settings.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C99E3C66FFB19621CDFDC95D48653F2D /* blake2.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBFBB1A8C819905817A00DCAE371CC5 /* blake2.h */; }; + C9C27B847EDA758411D52062F39ACD59 /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5DB0CBCC6D9D5ACCD5B3C22384F861BB /* 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"; }; }; + C9C30D4ACEA338ED6B30638E0130AADF /* clock.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA7BFB1BFB0F6887BE57A30D1EF55D2 /* clock.h */; }; + C9C657C04259BAFA7FAC6110FEACC1C3 /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9F6123768C733BF2D6B87CF04AA8502B /* endpoint.upbdefs.h */; }; + C9CFD63AC5A689217E4DE072E5664F34 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = C3EFB0ED11280C1E41A8A1D9B7D1E204 /* channelz_registry.h */; }; + C9DD5A2E0777B42D9C0060964EF8670C /* FIRStartMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = B4106416E9A18B90FA106750EC6622A8 /* FIRStartMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9E21A08A7F1DD518F07509EEFE15D0E /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = A306AB4ED438BEA0DFFBB16B7F30A79F /* server_interceptor.h */; }; + CA01BB80B63FB578C7212F783B6647C2 /* generate_real.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F6D32FDD67CABDC8E6FD4735A297DDB9 /* generate_real.h */; }; + CA01EF622957A1BFB6AABB8D1B24EB23 /* t_req.c in Sources */ = {isa = PBXBuildFile; fileRef = AD684F740DC4279C4A03E98E842E8AB8 /* t_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CA083FD9ED21E69EDFBC35CFF58DDE3D /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 444954F4ACD1A30472226959F2A84942 /* resolve_address_impl.h */; }; + CA13904448C8F81BDCA28E4882536BFC /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6B3F5D9726A6E35E2694A088F72FBC /* socket_option.upb.h */; }; + CA13B2BD5088277A394CBCF8E91B68F9 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 162643445CD199EAFDE2348B6B554257 /* alts_tsi_handshaker_private.h */; }; + CA27F1C6BBEDA93134C58E41EFFB38D3 /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 06CC698B0FAB17DE34B480F086167D08 /* status.upb.h */; }; + CA524FB35C089D51A7A13FFE33A920E1 /* slice_refcount.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7212B845226AFA2FDAD5863D12046450 /* 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"; }; }; + CA67AF2A0BA534A5A3E941A95851DBE5 /* per_thread_sem.h in Headers */ = {isa = PBXBuildFile; fileRef = 863135B62D7BEA25601D4D6919F9F414 /* per_thread_sem.h */; }; + CA6F9B2A9F923E149C0ED96EF584CDD1 /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 76E848596FA67D95D4AA7402689FD0A0 /* api_trace.h */; }; + CA7D86EA2D00DC23884D957D42E8F5AD /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEDC810B1D43E393454A6622C5DACBD /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA80867EEB2B89335453B8B789A2C4B2 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = A7CD411E0BF99D427E9E2D714CF77398 /* grpclb_client_stats.h */; }; + CA80C445903710D8472F56C74E2D70E6 /* distribution_caller.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DCA9C33BE6453F6488929BDDF12BB588 /* distribution_caller.h */; }; + CA85AE100288A6BE1303CD206149FE86 /* int128_have_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 8E0A7645FDF394A22A20A5E5B468EEFD /* int128_have_intrinsic.inc */; }; + CAA599C6791A1675B1E2CB36E42FD98C /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 7374C9BE75E299EBBD473AB2D8209DB6 /* server.h */; }; + CAB8E37BAD086C978EC68574830253FD /* arg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8993AFD5F19A499A909D9B16E6EE5E88 /* arg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + CAC9BCF5DDB77598E08EBD8C66D422D0 /* async_generic_service.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = 3DDAE5285DDF8A5FEE9A3585E992E336 /* async_generic_service.h */; }; + CAD203BE8B4F06E85651F64B7604B50F /* message_decompress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = CE49A2017D10686059D6F0F8F7C7ADD5 /* message_decompress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CAD503124D06EFD33C844C187962CE37 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 85489F6700C73CC4D6870F413D6C1B82 /* validate.upbdefs.h */; }; + CAD97F674D69F6AA5BEFC2B17CAAC763 /* wire_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = ECA148A240B38E8ACD8B1A9E9618F3CD /* wire_writer.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CADC27575B13575E2D41F83222E47078 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2F6E3475A9594FA195C20D959FE7D9F1 /* channel_args_preconditioning.h */; }; + CAE239303CC18EF87236E323E05DA67F /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B13F0FBAEF17735A4523662506F3914 /* 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"; }; }; + CAEE03BB929F2D0448BA80B359722C25 /* obj_xref.c in Sources */ = {isa = PBXBuildFile; fileRef = 648C8964EE54040A5890ED253F80D39C /* obj_xref.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CAFFE1A9526BF0A596FDBA7FF811709D /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 0243BFC51D0FE9BABFBC22D2AF3CC1DB /* activity.h */; }; + CB06458498F0E58C660C26E29702CEA2 /* hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FBB3772FA0CFC6FE664C881C261302DB /* hash.h */; }; + CB1124D4A6B352D882D8E28C24A3A87A /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EFC22609D6812930E3601D2BD74F2B /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB17D59515730543286F7C10A707553B /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD7EA9C9F42563B6BC440EAB8AAE188 /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB1DDE4C9D46BB1952C358BB5479B4A4 /* unscaledcycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A80B90084263B286C2B9BC140688CB6 /* unscaledcycleclock.h */; }; + CB2632EA60A30DF8C7DE0873040F070E /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 448E5C3BEAF8FFD3514B2747523F9606 /* substitution_format_string.upb.h */; }; + CB2782DB30E5928BB77F2A461C71BF04 /* switch.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 715276421DBEED576448CC1444534199 /* switch.h */; }; + CB2B66D341C0AAC124C176D7A359340C /* FIRFacebookAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 864F49F71A38068C775E72856B75BA11 /* FIRFacebookAuthProvider.m */; }; + CB3DD98EAC97323F314D84AD4042E720 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 396DBDDCB905DB57DBCB4BD46C24ED3E /* cluster.upbdefs.h */; }; + CB3EBA2D829DB67D06D257FAEEF0F055 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BD962883F1E2CC018715E58E6F58E9 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB4D7387D21C93B6016D52827C888C98 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0AF2E9A3F6083D84A9BAC44CB43310 /* fault.upbdefs.h */; }; + CB4DC609D997879EAC7A9A8AA672BCB3 /* FIRActionCodeSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 879EB36DAEAD524BBDA2B9CFA6182EF4 /* FIRActionCodeSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB4FC3B0CFB53A04BB0AE0ADD80316FE /* upb_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = BA30B576B1BA480374C2BEDDF57E47F8 /* upb_internal.h */; }; + CB6DE3761BAC8F4CF9B0F2B5546B3E09 /* security_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64A56DF7864275EAE4410DA073BCE087 /* 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"; }; }; + CB822CA5FACF3F757F37EFA5FB486BAF /* FIRAuthUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A7B8B6DBAE0538F17EB2DAB7E5DFED /* FIRAuthUserDefaults.m */; }; + CB95D12F68DB8D1D39B9375EADF6DF8C /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF98ABBA75103345A5890C2B7D1E881 /* resource.upbdefs.h */; }; + CBA01BF5FE94431AE29484D8E547B4DD /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 3D4D6BFF9FFAD8A0B2B952DA0D7C0645 /* validate_metadata.h */; }; + CBA47289EAD2B58D5EF26B0B4FEC3BD8 /* jni_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D2B53496312573E585E4DF06D556D5 /* jni_utils.h */; }; + CBB6B3912C671B744B68141900C24800 /* log_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F58D31E9E1E34322F82E81D519B3E4D /* log_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + CBB889971EE7420CA4D0F926413EFD9A /* voprf.c in Sources */ = {isa = PBXBuildFile; fileRef = BE2FD637962AAF867E1FA428AE88D9AC /* voprf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CBBB66CD4B1BF570E0D6B6CF67DB9CA1 /* md32_common.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = 04B6D0A84A33F2531C58DF18E9DFC5AC /* md32_common.h */; }; + CBCC377112B5730AC497B30C1BAE736A /* FIRGameCenterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1DB3DFE1F6E9AA1ADA0F536309E35E /* FIRGameCenterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBD02524825BA1DBD1DC5810C1A75882 /* cycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 626EFE6B15D6217369658CF38C59FD06 /* cycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + CBD1FBD62936F20FAC958D65E8DD907F /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 289009D0A76AB9270AE11DBD1A470ED0 /* IQInvocation.swift */; }; + CBDEBF5DA841DB631710060C56E9A655 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0019FB7094896803003559673A97BC /* http_connection_manager.upb.h */; }; + CBE56068A58F8353FC25AAD9C9CDED69 /* address_is_readable.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6F5E13696F4586FD19BB57DDB63251 /* address_is_readable.h */; }; + CBE8A3F3512AA34AF2020A07A37AB867 /* security.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 82720EE919EC12A4CE0169CCB97936A8 /* security.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CBEB8DE8237A71626E089386F5B3AAAC /* global_config.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 3333EA7F312E1EA6226237E3F0DB9641 /* global_config.h */; }; + CBEC8FA661FF5F3BC7B7A868D8B8CFD0 /* FIRSendVerificationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 96572DFF9523581D6A99FBAC33B61583 /* FIRSendVerificationCodeRequest.m */; }; + CBF0183085BED710DE45FFAD46352DCA /* server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6876370D7276848422512DADE7E20C3 /* server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CBF77D0B7E7BE58655777EEF9A627C82 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3642375BFB3A7FF907CD0C33DECD85 /* env.h */; }; + CC048C23E09A282E0A0B1F1C59EFBA0F /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 695354E011B4785914545C7878A1D405 /* resolve_address.h */; }; + CC05208546E5C92AB27CCCF573A44C6E /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 5B79D2AF181F21AC6D0214D2E5B8AFE1 /* alts_zero_copy_grpc_protector.h */; }; + CC07B7242C13929AD0E9CBFA82FA5573 /* dumpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9CA1C767D40D3B5E20E960BD370548C /* dumpfile.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + CC0F096D2A7DECBB636B7A6216B688FE /* optional.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 345652508477E4EA8900CC27A52000C9 /* optional.h */; }; + CC1549B06AC582C1245E20F9460B5084 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 72F4FFB3C62AEADA83E764B0CBE11311 /* alts_grpc_record_protocol.h */; }; + CC21361A0C0B2898CB783E37AD7FA37A /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1FC86FE8E910ABE8A8BCBDCD433D9C /* xds_certificate_provider.h */; }; + CC32CDD5B87E717A50F109FCED75DBCC /* FIRStartMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B844374A4F1A180C70C5CE73E953B94D /* FIRStartMFASignInRequest.m */; }; + CC46B600F9765A38E17C87D0B6869224 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 912F7093A813CBD76A294FF378F6E19D /* checked.upbdefs.h */; }; + CC4C85C6D01BBF0AC99C9B3B9CCF67EF /* bundle_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3950FD39A0C3194511848628B78EFF70 /* bundle_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + CC5BD17E284054B940F1DC6CAA83628C /* graphcycles.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 222542F7A5F0F55C44B5116723671F1C /* graphcycles.h */; }; + CC5CA0DD673882FAB528D17F613B9FE7 /* invoke.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F3446DEC6109C3FE2B6943960B0EFD67 /* invoke.h */; }; + CC61B03565F3883DB17718E5C75A0870 /* FIRAuthDefaultUIDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FFC6C80631658133A66CF1F125F5FE9F /* FIRAuthDefaultUIDelegate.m */; }; + CC70967CA3F370EA278C9FB697BA65F6 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 276AF1CBBEE1544ADE18AF5606A90C6D /* percent_encoding.h */; }; + CC8A15E995091348950E7855B07BD4DE /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D9E1CF00AFF7FC9675A9C34B7B8A868 /* resolver.h */; }; + CC8EBD8E44B0C02827BB56717C84B7B9 /* siphash.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CCC07B0CCF352197BCA376696736EC4 /* siphash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CC9596D141D3A5F968585B1F83354200 /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 7CFDA0297CCAD54F719481836E14E1FB /* time_zone_if.h */; }; + CC9853D11404895E43A7002BE1276C09 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = A8EC8AF43E0C4DC3B289328DCDCC08F7 /* GULNSData+zlib.m */; }; + CC9F9E445B16409F2DD41D335C49B39A /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9A30E4D69D5CA645AA2905BB09E506 /* annotations.upb.h */; }; + CCABF6A69C134657884846351B094CB3 /* FIRAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3AE5A31B5AEA6AB4C30BE04DA5F00A /* FIRAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCB05B6ED63EE662B9BF7AE2023338FF /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 91859C984A1BE240D368BF6064F74BCF /* FBLPromise+All.m */; }; + CCBDD666A0C00EA4407F9F87C8EED74E /* FIRPhoneMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = DC13FD278763C3F982C3DABFF1AB1649 /* FIRPhoneMultiFactorAssertion.m */; }; + CCC54ABF249FBD769748AEA2C5E30095 /* eval.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 8F0833A0809587A3E2BBD871FDBA7B9F /* eval.upb.h */; }; + CCD5C44961BCEE237839B03E14966363 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E7102C7BA76F3346AC2E89CDF54D281E /* exec_ctx.h */; }; + CCE4105B833E2678C4CADD340EA3EEF7 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7DD4D2285193FBD94561970A93CADA /* http_tracer.upb.h */; }; + CCE913A47AE759E7DB41AA9FCD2F55A9 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 34D28D3A405D888584AFA9814535F9F6 /* xds_route_config.h */; }; + CD0C874E3D015452524454F1214C5712 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = FE86F5C36629FA2E79F4E65DE4973094 /* parsed_metadata.h */; }; + CD1B3C86DEC378A8000199567220CE75 /* v3_pmaps.c in Sources */ = {isa = PBXBuildFile; fileRef = 05011D8AFBBF196ABA67525ABA21BC5C /* v3_pmaps.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CD1F099E19F6F83CAB6ACE1881600AA8 /* ecdh.h in Headers */ = {isa = PBXBuildFile; fileRef = A9583E049EBBA340166F70F14C4A595B /* ecdh.h */; }; + CD389D7066EBBBC1DBF3D45BF7B2A69C /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = B3AA16E575585AD11C88B0058A32E070 /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CD40AEE8927181E4F9FCC51494C80EC1 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 35E26A23E0EC6AFAFEC2EB6AB1D7F5AD /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; + CD545C9BB0FA8796BCEEC7C774CFA8D2 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD079B9A6103ACA3EB4CF51BFE0DBC7 /* strerror.h */; }; + CD5D8D77C06BDFBDB4440236699F1E0C /* transport_stream_receiver_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBF019511DB1D12F6B423551AD46FA04 /* transport_stream_receiver_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CD72CD6D210EF5048D511C861A391C6A /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = DC1FC86FE8E910ABE8A8BCBDCD433D9C /* xds_certificate_provider.h */; }; + CD7707AD8F71A4835418C3C12226F994 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8837D5D326B1FFADCBEA8814537B3113 /* endpoint_components.upbdefs.h */; }; + CD78073DAE910CF09A959E711811CC31 /* binder_android.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E40EBC1855C8EFAF5BD5E47F26E9B8B /* binder_android.h */; }; + CD84CD0A5886E11D3968EF1FB0D7654F /* FIRStartMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A6DD4469D7AEE305F861A6E4E0C1DB /* FIRStartMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD87ECE41250B45A92077ACCC133BA65 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E8049D8E79947706765171C6577C117 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CD8B672A7B825A0D1C7A2667EB724D45 /* FIRFinalizeMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 18C9098F0AA10D81D38432D8F0D001AA /* FIRFinalizeMFASignInResponse.m */; }; + CD8C447E8EA04039834B19554CFEEB98 /* kernel_timeout.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CAA7BE784A76795F672E38B9933C257F /* kernel_timeout.h */; }; + CD9249C9FB2EF5A4BBC72EF40C460EA0 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2465DF4B6EE830DE9169C9B86D2D721E /* cfstream_handle.h */; }; + CD95B85BC1F8ED6E61D91DC2C764A0C9 /* endpoint_pair_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 971E8D8964B43658FA29AA67920C9F22 /* 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"; }; }; + CD9CD162CA94FA8D681B218C964387F0 /* mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A13B55C4EA76634DB5FEE91AB5F30F2 /* mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CD9E54043ABED94550ED680257DB1E87 /* file_watcher_certificate_provider_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29FCB186AD77D8DF86397C4CC449F96F /* 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"; }; }; + CDA7531A6B116419378E504CB3C06EC8 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = F08DCB8DFCDB30C21FA1134455BD354F /* grpc_authorization_engine.h */; }; + CDBD07D233A27AC575A4C31D14E50AAC /* server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3FE24130314C63F638FB7E800F35692A /* server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CDCFC80903C222B0C8F422A662335D09 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = D65E50A6E2055A0DAE2828664C16334D /* transport_security_grpc.h */; }; + CDE267C6A34E3EF40B4610E00A234276 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = CB14276897DF5D6F7E900533E4E6A13E /* hpack_constants.h */; }; + CDE45667AF3298D07093194CE7FB41C6 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C2D50CB54DD9E731EE5BFB3DE731AD8 /* lockfree_event.h */; }; + CDE45B0FC6BF5D290C3EC25C2526B38F /* health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC6C2809A58ECCB5F595B10F26E501C6 /* health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CDEA3C008FB96E8076CCC23CF66E8AB6 /* stap_timers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2771190208E108C4435A375D231C89C5 /* stap_timers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CDEED2FA516856CA4E44DC714E707F94 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = E2C94B3B5862469CC683367DAF30B7F2 /* alts_record_protocol_crypter_common.h */; }; + CDF5ADD9499AC4DB2ED52EB7263C1811 /* dl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BAD236D539E6BF688941098C07304E0 /* dl.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + CE096B31D213CAC570B373261CA36DD4 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEF8D669655BA0208EFF9CC50D2E500 /* sync_generic.h */; }; + CE0998CDBCB5F99D1B6CF3419418708D /* atm_gcc_atomic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = DEB076FFE6C1664CF4B31BA9DBD36A76 /* atm_gcc_atomic.h */; }; + CE34566102E7CF0BB5A064FFF59336F8 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = F0F6484DE0549E65A4DB351A4FEB7820 /* promise_factory.h */; }; + CE4866967768812E9B1F79EDA56E9A90 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + CE4D69EFBC9F32EBC77DE5CD6D6F8913 /* completion_queue_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15060E5D1AC87590BF1DB6D4711416EE /* 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"; }; }; + CE68B1DE8834738BF2C5D2A54C6E03E8 /* hkdf.h in Headers */ = {isa = PBXBuildFile; fileRef = 58839003DEF2533060B8357A5A7020A2 /* hkdf.h */; }; + CE7CC281F116575B6A2A2C7D2ECE1B4F /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B07EEA98F541CDF7351A3304EBB6947 /* IQUITextFieldView+Additions.swift */; }; + CE82A395DE0F479C0F1CBF639E71550C /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A8D6F54224E9124D8650200B84B472D7 /* metadata.upb.h */; }; + CE8981F7413E54BA67282FC1E5A98D5D /* evp_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD77FA9B3989CC597C705A75CE524AC /* evp_errors.h */; }; + CE8A7DF7B8C8F3DA24FF8C6F03261B06 /* match.cc in Sources */ = {isa = PBXBuildFile; fileRef = 939CCCA1C2D40D64D237663D83FAD147 /* match.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + CE8F5E5CB55FE670B803CECBE113CB77 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = FD7D211322B5D3D691BD340D297086FB /* xds_http_rbac_filter.h */; }; + CE9A74BAC95823F3D23E427C4197E11F /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A590B4C068B532984A690705AE30ACBA /* orca_load_report.upb.h */; }; + CEA79C6791383EEA01220E8720DA13C9 /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 37E04BB2F4FAE36E40FA6E84D4832EC3 /* exec_ctx_wakeup_scheduler.h */; }; + CEB0595D16E4652770BF010DC719EE33 /* create_auth_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 67539DBFAB6D7470EBB4B81CD395A2D0 /* create_auth_context.h */; }; + CEB4DDF4648BBF4C978CEF43641DAF8B /* hexdump.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D42CF64B96672A9F47053793C26482B /* hexdump.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CEB6530D9B5743EBF9DA9401D44E7410 /* descriptor.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 56057FB488A750ED673ADDA72344E7CE /* descriptor.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CEC2E81D624CAB95AA2DA0B267079A59 /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 44D989A4ABD25F5EC4EF560B78B91872 /* stats_data.h */; }; + CEC80EDE84EF1AFE2F905C0ACEBC0F55 /* pem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CD38C659AC4C361C642DD18142A6EFB7 /* pem.h */; }; + CEC8E258984E4320F37E8A912752BB37 /* e_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BCC4AE2536A59C6FD58DFEE503475A /* e_tls.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CECA754339E5FF5F9CFB4716742F5028 /* cert.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 135B8B0CA70D96984E3DC15DFB332A8D /* 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"; }; }; + CECBBFFCDA77795D4F6646ED3B4A5FA8 /* function_ref.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1FAB9226871DFD8EED6D114B30C2BB97 /* function_ref.h */; }; + CEE6256568A46A36C42E4969F3D8AACE /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD86E17D37EA0CEC576516DB45D4C4D /* duration.upb.h */; }; + CEED6EF2100B36BB87D1F78A1E6D771E /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CC3CEC9C57ED25004EF4BD6269028BC8 /* resource_name.upbdefs.h */; }; + CEEF1538109BF77FCB043C12C87EF889 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B95E26F5DD0E0200994946BB75423CF2 /* base.upbdefs.h */; }; + CF19972BD6D11F437CD365FC90DE86FC /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = CC95201DF4B580BFBB30742544ED0158 /* hpack_parser_table.h */; }; + CF1AE9B55D76E7713264CC09AA923AFB /* FIRQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECABC7D7AADA09AFE62CD64834BBD7E3 /* FIRQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + CF2C56E2F3F4161DB684C2E7A3252C2E /* bernoulli_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD0ECFC306E9D9F3D591CC23C302745 /* bernoulli_distribution.h */; }; + CF31A9ADDC14CF6732228E5A7E9AAD51 /* address.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3FAA18511C34D208F7D35CF2BFAF4224 /* 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"; }; }; + CF3AD4DCB3FD9D34EA2F8D93EA5B4512 /* platform.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 19E58619A905A60545E7361436CEC842 /* platform.h */; }; + CF444B762B4AB565852BBD8AA2B48A97 /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F6B3F5D9726A6E35E2694A088F72FBC /* socket_option.upb.h */; }; + CF4CB0B316C1C2DC417597EF4BD986B4 /* route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = DEF0ACA15C0C17EB696B6265209894D5 /* route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CF4EA809218283A4CEDE4F15485A79B0 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 03CAD07613933D09F7AE52AB328A46FC /* transport_security.h */; }; + CF6876324B6ECC9767A09693A3643F95 /* uv-data-getter-setters.c in Sources */ = {isa = PBXBuildFile; fileRef = A524D397E70310B2E0229697A13AB1AB /* uv-data-getter-setters.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + CF6C4A807FF3D61ED9F57DD9779E03B3 /* upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F25BE28D3A44A3F0D3F7C326C30FC68 /* upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CF7E21742BA14CC02C846DE4B021503C /* curve25519.h in Headers */ = {isa = PBXBuildFile; fileRef = BC77F18C7F68FEA5CA73A88F15CC7759 /* curve25519.h */; }; + CF81D9B152692661B54E3D55FAA1ABE1 /* type_traits.h in Copy meta Public Headers */ = {isa = PBXBuildFile; fileRef = 18CF02946F92A54A130D3B825555C008 /* type_traits.h */; }; + CF91DBBE2AEFA08258097D918A2A41C2 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 493954DBDE29FD4570756388741CAD04 /* credentials.h */; }; + CF9240BFB205ADB782F5CD2E736FD614 /* platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 19E58619A905A60545E7361436CEC842 /* platform.h */; }; + CF9F1554C789192A5F94ECE0E86593C8 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 2914F5E8E2267E4A8BAF8D191F4AAF5C /* call_test_only.h */; }; + CFA48AD80E040EEAE86B10888FA4A8F6 /* GDTCORFlatFileStorage+Promises.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA7CA0E48AD50D3AED4F17046D3AB9B /* GDTCORFlatFileStorage+Promises.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFAD613948A73AE51915B32B22AE79FA /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 140C13A72EBDE3E5621FE3B0134B8FF0 /* socket_utils.h */; }; + CFB5954E3EA046DED9C89B23C89B5ED3 /* secure_random_arc4random.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EC351A0B08F944AEFCEC58A0179B133 /* secure_random_arc4random.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + CFBC6141139EB5502230A6065BA457C6 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 600EEAEC4ED6D644F6542CA87A100B95 /* port_undef.inc */; }; + CFBD2D8D988A10D3C0C74D7ABA7CF03C /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EBFDE66E0994FBC2676A5EC03E46FC7 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFCD7D28F54C3084958C6547532BF215 /* atm_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 300CC38DB0B5158CC7DA24851D85D915 /* atm_windows.h */; }; + CFE2C43043941292B5A5E958CB41EC59 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = B23FD13FE224A936D0261009BB69C601 /* parse_address.h */; }; + CFE2C552162A5ABACFEF2FF979883FAF /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAC7979171866E44ED6649805355B9E /* ssl_credentials.h */; }; + CFF46C2379B9C751AFDA2CBE04443733 /* field_mask.cc in Sources */ = {isa = PBXBuildFile; fileRef = B7308CFBA25EE9ECC2D5092FD3966760 /* field_mask.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D001D907ED203B3132E59E81F627E68E /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 820E2EAC0F61C0F66E2FA35B975ED290 /* python_util.h */; }; + D0022BE763DBCB5E8F3073A3C0D6FBF3 /* get_current_time_chrono.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3C1F147E0487A0FCCAD1986DA59699C9 /* get_current_time_chrono.inc */; }; + D00288D96B16B3E743EF709A25DA776F /* graphcycles.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBBDB68610B579D2E518AF9B49C8907B /* graphcycles.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + D024EFEF500093D230866412E406D79B /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = CD5439BFC642CF6B549988DCBDE5440A /* error_cfstream.h */; }; + D03A3E289F997E7CF81653AA032C8041 /* semantic_version.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AC33586939174D1419C097321225B57 /* 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"; }; }; + D03F753578EB540440D209D53880EA62 /* seed_gen_exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D2AD8116D335BB0A74097EB509FA2C0 /* seed_gen_exception.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + D0429F48AD2F176F7E27C0A40FDBE1BC /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2AABB73BB82723F79E422921B9CA907 /* IQUIViewController+Additions.swift */; }; + D054DF94611F0DFDAD045FC4D3A21290 /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9348ABAFD3447D445B4FF87D9287A5BF /* number.upb.h */; }; + D05FBE96408ADD2BB3DD8A2F8CA9802A /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D7C444F6FDEEF8094244CDA322A3BDC /* histogram.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D07D2E7ED363F8AD40C29FD471DA9397 /* timestamp_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = EE758278EBD30183DD68E659E6114CC9 /* timestamp_internal.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D08ADBBC105343CBC7600D2C52FC7639 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 259AA94ACB87C797446F50D98DDE29E7 /* port.h */; }; + D091F26E5EBE563BE48D79C45E2FA224 /* alts_frame_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED00133570DACEA6B2BABAADC608C385 /* 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"; }; }; + D09DED8576CE37A93400C8CF7770F204 /* barrier.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 2CBEEDF021F79CF3D24C4CCB7651ABA9 /* barrier.h */; }; + D09EAADE8581B1AA757D115E31F0AD6F /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A0730473ECE7E6D796BE448B056586 /* composite_credentials.h */; }; + D0A1186D70F7C0656BEF9CAE4961B3E3 /* grpc_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = B33F243B1FAF414A52B92D523434B4E4 /* grpc_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D0A2625965AF59C92EC14A586EC43E20 /* local_documents_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 479B6FD574DEDFF92947605E6EC1AF75 /* local_documents_view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D0A620E04CFCC5B71C1B36B9351A7EE0 /* event_engine.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 0AB166A86A15C9A6168BA580967CF507 /* event_engine.h */; }; + D0AA08D0DD88913910E14EE5EB25AFFA /* tls_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DD775C228B77D19382CEAD806C14BCD /* 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"; }; }; + D0AF6434E782F7D29E9C36D8392DCBA0 /* comparison.cc in Sources */ = {isa = PBXBuildFile; fileRef = 802CB8635B1F10971B3859038D444C8E /* comparison.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D0B201A519EF1B416C799DAFD42CDE5B /* grpc_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F6395FD60FD3776C43DF65880FFE8819 /* grpc_posix.h */; }; + D0B9EA2324A5CF33EDBC76BCC93A22B5 /* def.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 06623FA63AFC0B81C8AFA3991287469B /* def.hpp */; }; + D0BB1A3B3C1CACD68796BA1D019AB4F3 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = A1778B16B7F012004270639F0A0A79F5 /* FBLPromise.m */; }; + D0C21BB6AB0540051D8DCB35CFD8D08B /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 198EA4AFB67D47868AABDD1A8301B6DB /* unix_sockets_posix.h */; }; + D0CB8838F4C0BC4BF2964947BAE15F6F /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8A541BA5FA6A3CE99602CEF52D1A94FD /* wakeup_fd_posix.h */; }; + D0E8E73591691F67E4B5D60098EC8B49 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = DFE07933A04C0722304262517A731B5A /* varint.h */; }; + D10020CA8268C8F26800B63C4927BED4 /* json_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0EA23B100238C72A77EB89D40FDA2A18 /* 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"; }; }; + D100C9020565B1F667CF480E49ABC629 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5163AB855D61BB5AFD9C8C6896554FDB /* internal.h */; }; + D1114345D86B55A83F701F9A6292C9D0 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A65A56AFFEC3C9F0AE54C0FCEAE76102 /* base.upb.h */; }; + D112AC18A0E8D99979FAEBE444B5F333 /* channel_argument_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 7C276AE3088683A164B97EB9C7C6F22C /* channel_argument_option.h */; }; + D11564AF4282DA99E926128E49DB1DE6 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3874B77F56584C8582A6FED538C523B5 /* security.upb.h */; }; + D12053C89679C8C820A5A7D2F9276A34 /* validate_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2B2A55F055DCB8AAF7AEE4E408666839 /* 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"; }; }; + D12216603C9FAE912DE7FAA7FE919592 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C312C2156B3EF34C50EBF092ABF23D /* syntax.upbdefs.h */; }; + D128DFB66F30E37ECBAF7BBAA0AC7FB7 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = A05465B9E12D78FD43F7A73E4E6B3F14 /* frame.h */; }; + D12F01FA2FD7F06E462AAC1A897587BA /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = BAFD412FDD2286D101551673E224839E /* block_annotate.h */; }; + D158548901A2DFC84FA7FD8BFBA7AD1C /* strip.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B205205CDE45E431788D7A0A12CC39A /* strip.h */; }; + D161C0087F079D5C0AE6B6FB5B89F323 /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = C296C5E349BECEBF19D3BB0380C89B28 /* FIRHeartbeatLogger.m */; }; + D16D033C6CD587F6ED5D54EC00DF3604 /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8539645961A2E14D040E589CCAAD8A52 /* mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D16F40CD2D2AA0841E133A4160245D1C /* filtered_re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE629906350B1134E3C1F6681F78F4B /* filtered_re2.h */; }; + D17283C991072CB46A790F96ACAF4763 /* s3_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99D73E0918E534395896982111030230 /* s3_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D175295B995767E19F2C7F351FB0EA52 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4026E53AE81A7A1FD6DB893ED084676E /* duration.upb.h */; }; + D19D785F603A1298EDC00D44B635574B /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 399E51C93DF60A489E484E4EF8386834 /* tls_utils.h */; }; + D1A550B9FFF9ED07F332EE4EA978CA2E /* e_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = 7089E82C27954B63258494BE969DAF7E /* e_os2.h */; }; + D1AD1513F11C2A615762C66A6AEC4059 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 613B0D3859FAFBD69DD8EF2121CF2F7A /* descriptor.upbdefs.h */; }; + D1B995D18CCBF028330C5E5A4B15523F /* firebase_metadata_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4EE670011E8A7D6174BA15BC3C07CDD9 /* firebase_metadata_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + D1C34A0B6893C288ABA9E85E23C0427E /* serialization_traits.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = B8E55544382FB77DD1064F492B7567FC /* serialization_traits.h */; }; + D1C41EDAD64DAA0859C2F293FFCA3DDC /* rsa_pss.c in Sources */ = {isa = PBXBuildFile; fileRef = F838E3EEAFE0A62FEC4CE93D5C6D9C19 /* rsa_pss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D1CB8E90E730C4070E3671C810D91132 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + D1CDB18E3DC1F846DA5F02A26E82E4B2 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 08EB99F26F7D35BE29E373EA799789BA /* logging.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D1F19158FAB4BEB61D99D73C93D84010 /* call_combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B16156FF014C01D83F102F5C887C479 /* 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"; }; }; + D1F23641476084C25E237CBEEAA3F0A7 /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3A9B3F493B4EDDCD98FCA40CAAB479FB /* range.upbdefs.h */; }; + D201F9EE8765AAA9E1D6FAEF27A88041 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E18FA9FF8A595831D9B9590E13D802 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */; }; + D20CA702B0FC9633701FB124C7C30F5A /* by_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = CA5F7D582ED0EF76BB2FAAE033805727 /* by_dir.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D20F7F9958E5C2EDC226F8BCB6F0DE12 /* base.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BF62FBF57F7BEECBD1E57458F58C79A9 /* 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"; }; }; + D2143A275A7117E9F9E983AFBCC3F4CA /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E56ABCE2943C8B93CFE60CDEAAA61DD1 /* internal.h */; }; + D22EDE54D6B81AB54B7C707A9DBD4E11 /* health_check_service_server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B13EC77F2FEED477A102B965DC9FA2 /* health_check_service_server_builder_option.h */; }; + D23CDFB8918AD16960185EAB07B6F4D8 /* sparse_set.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0BACD880BA194D84ACE595AB85B11F /* sparse_set.h */; }; + D23D3969D7B481795DEC7B8A28A70BC9 /* GDTCOREvent+GDTMetricsSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 424213B257FB2AAB6CEE24F8288922DA /* GDTCOREvent+GDTMetricsSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2485BF8E0B223D54BC5F0827F92463D /* unicode_casefold.h in Headers */ = {isa = PBXBuildFile; fileRef = B55BA53A8C2E3F0DE8D3D80641291C57 /* unicode_casefold.h */; }; + D257D495726192F6D65126BD6E60F509 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D1C824C4D900253027727CBD5D73F9D5 /* secure_endpoint.h */; }; + D26420405C704E9797BB50E7CFBE84DA /* cpu_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA0F2F4F285D42BF2CFB6BCE4B858952 /* cpu_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D265EF8126EA9E2264DF221A26C5C00A /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B23DC7B656E3396815463C2E5A2088 /* channel_stack_type.h */; }; + D27EB2E7BA58C112D16A6743EA9C4D58 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2656ACBCF3C6F21833E2CE96110EF667 /* fault.upb.h */; }; + D2852A690FE76A020D7075FCCD060F5D /* safestack.h in Headers */ = {isa = PBXBuildFile; fileRef = 377D2116DDE02A4493547BD2A68F6C03 /* safestack.h */; }; + D293F9FA7CF458F7942CE31A59DD0BD9 /* FIRPhoneAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = C2BF957D6662E4477A4518C82A7380F7 /* FIRPhoneAuthCredential.m */; }; + D297630887DE2C95999D6AC232E914D0 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 59854A68E95665241C4163B3F0631BCF /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D29B123656AC7FDEF3D412824FD85B9D /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 510285E4877BE07331DD7620323B6718 /* file_watcher_certificate_provider_factory.h */; }; + D29CC8DD2FD4A55DBA617F110766DC03 /* timer_custom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95217393FE89317F66049807680095B3 /* timer_custom.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D2A4E752BC6F6CC4339334FDE332883E /* rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 961DCD1F25FFEB7072C6B1AF80D9729D /* rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D2AA2B171F4FD08EFF58B8BF177D8F17 /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7CA141588C83E1DC9DEB8C5366BDEBDD /* api_listener.upb.h */; }; + D2AAD9ECFB2DEBFBDBEE89C51785F33B /* eds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 97347F8569ED71CE39BEE9D484175D6B /* eds.upb.h */; }; + D2AF0C54A5FF04E8B7607E4B74A7B355 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 244C209FBC79E6BB73F7A7E0E5F53D63 /* scoped_route.upb.h */; }; + D2BF9045BB133BE649DBE653AC9C3DFF /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 5497FEAFC542025412CC1664379ABA61 /* socket_factory_posix.h */; }; + D2C098E820D15D64AD7AF124EFAC0FAF /* md5.h in Headers */ = {isa = PBXBuildFile; fileRef = B56EB8828B7E6C33165D70EA2F9A9ACF /* md5.h */; }; + D2CCB8C6DF33CFA4BDAE7B205BB61EAC /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 17709BD907C756BB74CF73420D01051D /* sync.h */; }; + D2CE239EF710D24A75E1F9DD4C11EB43 /* exponentiation.c in Sources */ = {isa = PBXBuildFile; fileRef = D727159889609B46A8D62E40EC74F7AC /* exponentiation.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D2D0C2FE6AC86B3ED8D1DDD0BDDDA0E2 /* get_current_time_chrono.inc in Headers */ = {isa = PBXBuildFile; fileRef = 3C1F147E0487A0FCCAD1986DA59699C9 /* get_current_time_chrono.inc */; }; + D2D301B8C9B9BEE879EF2B1214A6CA98 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3D77C530658F53FAFEA226D83A90A7F /* env.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D2D69D503FF07A6963726576A24A038A /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B60E266A09859B3D011723E8A5AB7BC /* health_check.upb.h */; }; + D2DE9FF82B9ADC3C26F3584EEC9BAD48 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 10C8359BFC350D204571F3FF56B69D7C /* value.upbdefs.h */; }; + D2EDA12B184789737C42D6F19C084CFB /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = D801DD5175E00D9FEE5AA45CA3A911B2 /* backend_metric.h */; }; + D3056DD11E6B19C9AAB44C7FADC0C7BE /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 3874B77F56584C8582A6FED538C523B5 /* security.upb.h */; }; + D31A3ED9980570957BA04994EC072F6E /* fork.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA66DB0A77FF700AF7A1963B28569A71 /* fork.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D322DAFB4B523D9D74C03D472E176516 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D67FF6EDBA9EB3C5C4A871B7FED5C7B4 /* duration.upbdefs.h */; }; + D32CE2F947845FE0FF952656D64089B7 /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1000DC36A6C7933EABF1DB7E0C95C009 /* fork.h */; }; + D32DFA2BA4BE324A5ADFD030AE80B1B1 /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E00793AF2FC1C23F2EF4991F2C5F2F95 /* nameser.h */; }; + D33E45C05518A42CAEC57EA53B52E82D /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = D4BF27C591D9E0653E7CC81E8949400C /* api.h */; }; + D34007D0D382E4F0250289E2E97C4126 /* thread_none.c in Sources */ = {isa = PBXBuildFile; fileRef = A438524329ABC4AF04FAD58A5F3FAE6F /* thread_none.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D3407BBD34CD733540CCA81376932BF0 /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 00879357934899F0C8BA56AC5A95A09F /* backup_poller.h */; }; + D35573D303F0A6BFD4DBF34B276D6ACB /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = AB916CF7DDB009115D08B1AC15BB2C18 /* xds_channel_args.h */; }; + D363D8BBD8FB24B23F4F5C934FE7D946 /* slice_utils.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 2470C9D1B5C531B52E827D6C7FF7E5AC /* slice_utils.h */; }; + D36BB1E8EC1E3AD11598CFA9A2D43A83 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9018AE5E2C963954DB8A8CAAD664FA0F /* empty.upbdefs.h */; }; + D377BF261A1A751A13873208F3ABF5D2 /* hkdf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 58839003DEF2533060B8357A5A7020A2 /* hkdf.h */; }; + D37F7379500AEFEF0BFA24034FB60836 /* seed_gen_exception.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 80B41DFB40D427DEFB68B040A2189B9C /* seed_gen_exception.h */; }; + D382EC4470DC34A3C1BF37F0763E2BB0 /* FIRMultiFactor+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A364CB3A6B417F7A3D69445D36C9FC22 /* FIRMultiFactor+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D38A1EEF5648D23B08A40EC5EA3A138A /* heap-inl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E50EC0C9B5933F5F2677892B60458CA3 /* heap-inl.h */; }; + D38A23EED2BC59590990B86E56D3194A /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F9EB54DBC921829EC3541C0EE26EA3B /* 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"; }; }; + D38BEA618C9969FEA2414DC0A72838E6 /* symbolize_unimplemented.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2A372A0C9F80AD87724D280D1BE7EB81 /* symbolize_unimplemented.inc */; }; + D38C7ABDCC759F8AE13A67895216FDF8 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2656ACBCF3C6F21833E2CE96110EF667 /* fault.upb.h */; }; + D3A028CA48F92596B4941AF40BF9567E /* http2_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 289BA2375C442A3A461998E58831FFC4 /* 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"; }; }; + D3A6E65778F656043E6CF35A1B2CE448 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CC3E8F9F3FE65DFDFC7B18ADD341327 /* FBLPromise+Retry.m */; }; + D3E193E7B0E7B772E9B603DD7CD609D3 /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 410A02A7A8793A3207ABBC47D9829925 /* context.h */; }; + D3F718A5C077624811F0A34597A490D1 /* cord.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA992609998A06D48AB905C980A8A653 /* cord.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + D3FE102624F993E3D905BEC9776132CF /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B44BDD24C0C5179C294AA148F294B59B /* metadata.upbdefs.h */; }; + D405F02EE5A249B83031D3E72E6EC041 /* connection_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2C95C3C2A0FD2BB8DD06D6DAE3EA066D /* connection_id_generator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D417F08CE8B4BBEEE23A29AB60CF60B8 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46350F2833D14D2EBEBA40304B0A170F /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D42CBAC8F490DC1F1410867A2A1E93B6 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 97ED18C78A80B95465644D5DE6CB03BF /* sockaddr_utils.h */; }; + D44B5435A0D49A9CCFEF15280492D9AD /* FIRMultiFactorSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1601C89FB6C32B2F1828CFB4A663E0 /* FIRMultiFactorSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D453B2906123D2E53E63039031F221EA /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = F760C6ACD2C371EA4C41B055C08FF1BE /* client_unary_call.h */; }; + D47F3C9A0B78E06E05AB2606FEA36009 /* core_codegen_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 294F3668682383F451A9A8112D5311A5 /* core_codegen_interface.h */; }; + D47F50D2488A2ACC6B3A8C33CD052CCA /* a_octet.c in Sources */ = {isa = PBXBuildFile; fileRef = 78D23FC5F16960DA217D3361C61D3284 /* a_octet.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D4858213BA1C2F3F3F9020CC12812E4F /* query_core.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E0077B879B329B8C3DFD7E9D75BD698 /* query_core.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D4982E0F2516777C37628843CF8B53DB /* binder_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D8F550974F11AF5EABF9D96ED3AED9 /* binder_connector.h */; }; + D49C2CCA93137F12D89CF20B08BCE08A /* d1_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1BEF7DBEB754B90E77033BF43382F05F /* d1_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D49CC1D5358D1C6AFB8B11ADAAC94225 /* leveldb_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 002D32355052CBC02FAE1A92DC157148 /* leveldb_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D49D72784A00B613E6ADD5B78F8591A0 /* srds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 07EED25C4AD60E02DD317B24DCA55C35 /* srds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D49FF52864EF1A16ACD9E4A2A81524F7 /* FIRTwitterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 441E390BED00ECDBAD143E8ADC407525 /* FIRTwitterAuthProvider.m */; }; + D4A0320DEDEDFEF3B03A179C792451D8 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = A574194E513FB51B9833E63744D57C5C /* rbac_filter.h */; }; + D4B3E90D9B3A9522BEBA0DF997CD10DD /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FEF38F474D7E723A2E0AE559B86DD7B /* udp_listener_config.upb.h */; }; + D4C5C0A32C5F8504D2748D57197E8644 /* reference_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = D57E08F14DBB1077AC132D731DE4E4B4 /* reference_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D4CBEBE92B08F4AAAC81C9730CA98B4F /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3990CBEE55BF68E8726FA882C3E50A2 /* write_batch.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D4DACEFEA64C54424A142A668ED9D1F4 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = CA236160B250DBC03987657357527F86 /* json_token.h */; }; + D4F2F779303CB8C2167C464A76F55BE1 /* server_builder_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = FEE94F79FE7127AA158E61CC4225D145 /* server_builder_option.h */; }; + D503E8409AF05A0017C21C02AA7D1F42 /* converters.mm in Sources */ = {isa = PBXBuildFile; fileRef = A010BC44D6C5625A0F7407A01D7EE408 /* converters.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + D52169BA70015F10F551F3E0EDF6B611 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 67DAA88D18A635D9E46AFD6D8B97DE23 /* config_selector.h */; }; + D525939DCE764AB107DBCDEECBAB504F /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = CB14276897DF5D6F7E900533E4E6A13E /* hpack_constants.h */; }; + D525A2F6587DF04B3F8D4896C4924EB6 /* huffsyms.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57AFB6CACF2ABBDC0F29D4CBB7295BBE /* huffsyms.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D55E026F990CF9AAE866EE4E9353749F /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1910744D731D8D1DE5D406923944F5 /* encode.h */; }; + D566BB0036EFDF127C25062D9B9C74F0 /* db_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A65C0B477975BA37D09B734D955E8D4 /* db_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5705415F41643343644CD617773140C /* compressed_tuple.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 705F100A728668F0DF00FBDD3C907CB3 /* compressed_tuple.h */; }; + D582FCF076360A52D36FB7E4B8B35245 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 92C8590F86762CED5B8F806111C082D2 /* internal.h */; }; + D583A45440835205CB47D9C94A6CB0FC /* string_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = F18E3D047CE6EEB7630C2A5F5A938499 /* string_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D583D4CA0BB5A21089FDBC5639B6331A /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 586812315DD91E7234B03949EF011EC3 /* cert.upbdefs.h */; }; + D586C99FE5BE64ABABDBB8BB1D66BC87 /* x509_trs.c in Sources */ = {isa = PBXBuildFile; fileRef = EFF9BF17C4944FF6C723BF042E02F1D1 /* x509_trs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D5935C9AC1C8F6563D809EB214FED5A1 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = FE71C6010C11F3ABD587C08B796665BA /* thd.h */; }; + D5A9F79544ADDD8F998FBC10285A515F /* x_exten.c in Sources */ = {isa = PBXBuildFile; fileRef = F369BA72BC7AD41AF104B76B5C176506 /* x_exten.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D5AB0C996F49784530A0921A472BD397 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = F577EB6166E335961FE1C2B06914CDA5 /* versioning.upbdefs.h */; }; + D5B955A39D1197FDFB3EF7D88C44361B /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 849C02D7041F661F4B3866E9502F5A07 /* load_system_roots.h */; }; + D5CCD52F8000E14AE47ECD6CED21A3EA /* FIRSignInWithGameCenterResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = AF4621DC259B3BAEA8D4A7BE864041C7 /* FIRSignInWithGameCenterResponse.m */; }; + D5CE28BD64F4801E474E8EDED92B5BB8 /* const_init.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = A2E13F21644CB7F8EE99B8EAB5205CF4 /* const_init.h */; }; + D5D29815218E0DCD8E0ED3E3DE629C47 /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EA73EACEF607FDCAC0D2F319DB96BC /* FIRFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D5D9F88E0A56985A0499B5A94917F19A /* grpclb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A8E71C1E843F42C9B8A15417A36247E /* grpclb.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D5DBBD0F8873C8B1ECF47788FE2E1D06 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + D5DBD366A38D1D6A21EAA4EE8176BD7F /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 1B70087CC033B6B7F50AD0D8C3BAEDD4 /* wire_reader_impl.h */; }; + D5DD195CF009A7109FE0B60E7C7F0C6C /* internal.h in Copy crypto/fipsmodule/modes Private Headers */ = {isa = PBXBuildFile; fileRef = 7B24DF331B199DC71FEC338397503F97 /* internal.h */; }; + D5DEAE2AE4F68A691000460CA031D9DF /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 56086DD8C914204EAD42BE9137D76CEA /* env_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D6149F3D140CC132F69941D958869654 /* arg.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A4806B0988C8B8EADAA9BAADDAD30F /* arg.h */; }; + D61929F71F9E675A453D4D4F7DAF58E9 /* nonsecure_base.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD9F8EDA37D573B615E3E91B6C834EA /* nonsecure_base.h */; }; + D61B4348321DAD9E3A73F8A130C1D0BB /* query.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CF25BB7AEFE3EE86F390512455ABCBC /* query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D62B7F69E13C2627CE16843A0B365BD0 /* cordz_statistics.h in Headers */ = {isa = PBXBuildFile; fileRef = 49BFF34B5E2A96F249DE8E6CB07C7537 /* cordz_statistics.h */; }; + D630C033EDBA61AE547943F93179289B /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 959F0A7992D04F656F1D1378D9381315 /* http.upbdefs.h */; }; + D6368C1F2F3A1771B4C2826EBF145F4B /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = EC53C91F199D4793C36DF4E2FB119F8C /* FIRLogger.m */; }; + D637A459501F3428E29ABC96510D84E7 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 806D89885BFC7E5DF1C298DD4C7A714D /* alts_counter.h */; }; + D64319B5F63FADE0FD62F030E56C9B4B /* tree.h in Copy uv Public Headers */ = {isa = PBXBuildFile; fileRef = 933530FA9348CAEF73564D0671656304 /* tree.h */; }; + D658E4FBF34BB64B0C0D09B5BE221BFD /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 6D340931AD1ACBE50D367F7714D0085A /* service_config_parser.h */; }; + D664DF49191FAEE1A52302A5184C20E4 /* crypto.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DCDD5D1A254E5BA13E241BAE74B85A7E /* crypto.h */; }; + D675F9AE6BD15542A6809FBDD5D4EECD /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 538C5B477539D111D6BF27DA0237F8D0 /* _ObjC_HeartbeatController.swift */; }; + D67F0E4731C632DB62BDE7C1007017D7 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = EAD6839A4B66CA9058F3762710A8C52E /* aws_external_account_credentials.h */; }; + D68EB6BF2F15A2C7EF6B589939CAFEC1 /* pollset_set_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 53266F3E4A6C38A63464E4BFDB662845 /* pollset_set_custom.h */; }; + D696A5307F312B96FF7ACA58E6A53CBF /* socket_utils_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF39244B6FEFC7E2F530B26A4A58BF5C /* 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"; }; }; + D6A16A5E32B14BBECC494850DA3F05AE /* clock.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = CBA7BFB1BFB0F6887BE57A30D1EF55D2 /* clock.h */; }; + D6B05DFD9E2972071C0C1DF37EA92C9A /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E391DE91602C3AD845DED1E075A0D9DD /* 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"; }; }; + D6BBB986933CFEE6D542AF6B8C2C3826 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1F48C9248CAC723C8B9BF925790608 /* lb_policy.h */; }; + D6BBD18F26710106FEA9166E5F2B5FEA /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E87F5100ADC1233799FF3EC2ADDA82 /* deprecation.upb.h */; }; + D6BFE4095AAE8FE0B9A6BB4E8348ED69 /* obj.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CB48E2033BC8D5A675C38624F637662F /* obj.h */; }; + D6CA942E596C1C4F0F2531C99658A12D /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = A302C1A329B7547ACA9610A0E5D97229 /* sha512.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D6E1B8B28F23CA71B2FEB4C1C652ACFC /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2AB1F8C47463C6721CBCA00D749E0BFE /* metadata_batch.h */; }; + D6F80A15A53A45DC20BCB3A7040DCAE8 /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 56D5D8F5A884BEAAC976329B01817876 /* grpclb_balancer_addresses.h */; }; + D6F97D40CE1E504241FFD323A11B5022 /* v3_int.c in Sources */ = {isa = PBXBuildFile; fileRef = E00E431C6179EA19CDAA28C66E69B801 /* v3_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D7382E868C5B303383A94A8DC715B9DA /* table_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = E4244F940DADB07C9263186B7844DFC2 /* table_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D741D6E40F06CCEC66B74502B3E93A64 /* fast_uniform_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 76FED6B6F154E081C7C535EDF5F62F5F /* fast_uniform_bits.h */; }; + D74688141347888D7FA828D6D77E12BC /* strerror.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1AD079B9A6103ACA3EB4CF51BFE0DBC7 /* strerror.h */; }; + D76DF2D7E89A4457C388AA90C6FDC01D /* x509_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C7E9998E63938F4092E3EEA2FDF9036 /* x509_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D78025582643E8153BA44EDA457C32C4 /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2975F41161A709BB2DD91C78C66278 /* grpc_tls_certificate_verifier.h */; }; + D7842CA3C11CF85C9F33A618C53FD364 /* timers.h in Copy src/core/lib/profiling Private Headers */ = {isa = PBXBuildFile; fileRef = 820BA2CE621665F48E8756C22D9EE4EC /* timers.h */; }; + D78C97E7A40868D0AD8D0C11F44D3D91 /* filter_block.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9788943FC7DB8E2ADB55B65E8F8E0BDD /* filter_block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D7900B8F8956F3FEB63EEF76F67F0351 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 35AD2C99758DAD9E42EBFA31E4911CB0 /* http_uri.upbdefs.h */; }; + D79A1D3ECF030B475314BC138A32B8A2 /* client_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A875C914E0049F3F9B16804307836321 /* client_context.h */; }; + D7B5DA962A67286040C38A9A4D6139CB /* tzfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 43032D4882273A07DE8A7654F1C4BAFF /* tzfile.h */; }; + D7BD150172789AFB3FDECA0030D3FD09 /* variant.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7882FDD12247B86650EF81C6BF395E76 /* variant.h */; }; + D7D121041D2FCE52A3099F77CC3D059D /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 335D624CF6D6FB7C309EC768389861AA /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7D89FCEEA10193AFAED48B6347AA336 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 349BA6408FE27319939D143F449200E7 /* xds_common_types.h */; }; + D7DB259B4F53E3A83A7683C6CB602695 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = BDFEAAFA1B15857D7D2008957A008CEF /* file_external_account_credentials.h */; }; + D7DF28530B6063CE04261FCA61355E12 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = C38130318F5AB1D4AA51736E617E0C6C /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D7E2AFC8AA957F80B2778294D6E78F05 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C29E28355E14AE9A7D4348F5E9BF3F /* flow_control.h */; }; + D7F31201D8B28445BCD8B3E3666E0DB8 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 66F6F322987E1625E381BDCC3AB53230 /* trace.h */; }; + D81DDB2F36BC2F95144CE589F5C9E70A /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = AE6A6F1AF18E38D907AE9FE3EB2340D0 /* race.h */; }; + D8205E5E5F00E28BF53B285581B470B4 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCF72BAF98210BA2D49A68D2B9139B1 /* frame_window_update.h */; }; + D827ED86B300AC30E97CD1291180759D /* byte_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14084DFEF25675C6B4B7269904E8C7A7 /* byte_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D82B6B36989DFF373582C40E14145C07 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2765BB061255BDBF94EE79E5872143F1 /* 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"; }; }; + D83A683ECC20FBAA40F2236D557EF166 /* p_ed25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 974C2A361B6997A048B4B4A506ED0F69 /* p_ed25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D84589C5FC2FA89B4A7D74EAA5D12BDD /* log.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = CA840E3A087AEFC0F15D539A7094600D /* log.h */; }; + D84E1D16A87BB2D8527C4686188F2477 /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FE71CB28FE35F07DB90EE91B9A4EF980 /* status.h */; }; + D85ACBE43618A2A05737AA678F0DD578 /* eval.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6803AEC8CE42020AADAC373F34D1B0 /* eval.upbdefs.h */; }; + D88307B5C253F901AFC75FA04EC5FA1F /* gcd_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 38ECD1635081526C85D9B7F1F39E3F75 /* gcd_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D88DD560B51AF06BA73A5D7B17D145E3 /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2843361DC8984047607235C06B4311EF /* route.upbdefs.h */; }; + D892B240664940AAB7EF070FB4E9373E /* database_id.cc in Sources */ = {isa = PBXBuildFile; fileRef = C3ACBB7E566FDC8F3068FF86E61D8B19 /* database_id.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D89EAD364BBA26C4C476A472D51B96CE /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C579B2042565ED6A5B0CA497951F52EB /* http_tracer.upbdefs.h */; }; + D8A45967AC28DF34DA24EB3CCEBBD635 /* sparse_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 255509EDCBC1B216299A27803BE6275F /* sparse_array.h */; }; + D8BDBCCAA61BFAC457385A5AE16244AA /* x509_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = 88EE707B1CB626C8421DC306A10720E1 /* x509_ext.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D8C8C80159C138185A604242E52A10F8 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8A7A510C0D687C6BB71C1332B797B5 /* resource_quota.h */; }; + D8CBE86383F037933AF0853CBB6F808E /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = D92C37A8968CA8FE58EADC429BDE7E49 /* bits.h */; }; + D8E3150447E8F650BDC151FF934065F8 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6FC84C2D9C7AD4F1CD742375F966DDEA /* file_watcher_certificate_provider_factory.h */; }; + D8E96FACCF490659DA9C0867794DC70F /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 972ADBCE9AC8D64B492448AF497AE8B4 /* error_utils.h */; }; + D8F0546C6B6FD2662F89BD7630F494A0 /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 31AAB36AB80672070D4A20E260A19077 /* table.h */; }; + D934D433B71288B34FE234F2FC35F5D6 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 492648A11C172B7FD87BC647777317A7 /* 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"; }; }; + D939F5DAECD1589055C61A69BE38A37F /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = E7631C6857E1FCAD4E94B8437BBC3425 /* channelz_registry.h */; }; + D93AF2D035A954C204C14D93C89D040E /* server_chttp2.cc in Sources */ = {isa = PBXBuildFile; fileRef = C8D0E6AAC5235812E294025696E9570D /* server_chttp2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D944F240926817535C016C9C9ECE73E5 /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E87530FB01C3F204CD3BF8DEA67B806 /* xds.h */; }; + D94C4327B05FCAFC48152232702C434B /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C1F69F35DD6E593DCB74A3AA13ABBD /* context.h */; }; + D95A2FED19B9EB240394ADAAD23E1459 /* call_op_set_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 307F79BD8E072C96401D9524CEE36EF3 /* call_op_set_interface.h */; }; + D97B5592DBE8803FF007A16C0503674D /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = D45BC8AE37036860B9C7C7FE332F977D /* GDTCCTCompressionHelper.m */; }; + D992543760A0C93B4861CE9605158CB9 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C47F293D49C30B3E0290BBF2DC9CEA5 /* message_size_filter.h */; }; + D99526DBE08C688B65F856FE6B2BAB2A /* strip.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 0B205205CDE45E431788D7A0A12CC39A /* strip.h */; }; + D99AF55F45F29340EB2CF58602EA6635 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3DE822A415380A04861E03AD6B163F /* rbac.upbdefs.h */; }; + D9A672721524EF7ABE5FAAFFB093045E /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D81653BF9F1A673F7092B8DBC3C29E /* config_dump.upb.h */; }; + D9AC91CC103F1E6DB566BF08292CB2B8 /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 73DAE0328E7FC880D14EBA7FF9ADB39A /* seq.h */; }; + D9C1C7510E6CFF16D02DF9D288B9CFD5 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C9C026D1D43CF542627D0CEEF3F19B4A /* listener.upbdefs.h */; }; + D9C1E4A403D3E8A21E2BBB7AA31ECB68 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 846E4B27F82DB6D413EE2FE58A2C8412 /* unix_sockets_posix.h */; }; + D9CC9F78AFBA391D256B6C5CFDFA2730 /* sys_epoll_wrapper.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EF6B65448CF0B79235BFDB077BDD7D28 /* sys_epoll_wrapper.h */; }; + D9FA85FB6D57F59869E2C4EE2F592929 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F45A35347768D0326C16D8A0940ACF1 /* subchannel_pool_interface.h */; }; + D9FC43BB04FB5F569D53268DB7B44468 /* x_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = AED619B4D6A2DB811F625FE8C6BB7852 /* x_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DA267132C718858AA678ACE8A934947A /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D563A37FCB837032CC6816203AFB2AE /* authorization_policy_provider.h */; }; + DA4F0919830717655451E480427D58B8 /* tasn_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = F06668C8E61E0C198436F6329E8D1B2A /* tasn_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DA5D9F4E6BCDBB8B8DFCFE90473E3BA2 /* d1_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58DA41251C315C48A47FCEF5926DFD17 /* d1_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DA81D22662E9CC4C4B2B6EE9E67869CB /* resolve_address_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A79C1FD9D5E49DCF20306E7E6B80AEB7 /* resolve_address_custom.h */; }; + DA857281CCC559C1E5D504A1DCA0BCD7 /* xds_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9248441D9003531B1ECF2AF753EB95CD /* 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"; }; }; + DA9B1D347B19708C1210D8405FD2EBC1 /* thd_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1160A49E3C6D7555FB189F4252876757 /* thd_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DAAABB88A89AB03BD3C04E44C643E953 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 413E3D73361C2269037D45CE8AD34851 /* basic_seq.h */; }; + DAAC4C27C7DE341C11BF8A82EF7A2007 /* atm.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E620F75B4A9F300C31DAFF6E0BD181E2 /* atm.h */; }; + DAD3566E89D308769E43EEB640E6C993 /* patch_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD46B033C0014C564E010C826B1FB7C0 /* patch_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DADECAA9BED85FCFEA66F02515FA7953 /* error_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D59D30EE8FEC9F2B562D40BFB1A8E90 /* error_internal.h */; }; + DAFB22D8387458373D01E89D8CBCF613 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 27065E4D8ACC86A453FDD3106E950F4B /* alts_security_connector.h */; }; + DB109CD819648B9549E90F2636EBDD74 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 87797C848BD4CB4D3F2998180CA0E047 /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB1F848A9EC7EE9257FA5E3A53883CC4 /* pkcs8_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = FB0B9B27A6EE6CB65F67C1FFC47B15A2 /* pkcs8_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DB20202EDC859CA03EC2482B262076F3 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 2D1840C3A3BDEAB8AC286D7A8907A08E /* fault_injection_filter.h */; }; + DB2328B6B145A201CB4891B7BB47CE49 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 42CC879F729CF2725DD87F5DCE7E06F6 /* context_params.upbdefs.h */; }; + DB42BDF580529AF23BAC55B3BFD40630 /* compression.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = AF0192C801E381D3AACAF8E7028B72BB /* compression.h */; }; + DB5FDEAEB2A0E522467263F2F242DAF6 /* prog.h in Headers */ = {isa = PBXBuildFile; fileRef = 411245A94573E0146371EF8E7004EDD5 /* prog.h */; }; + DB84674B342B7D82AA4AD1C0EE734483 /* server_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B7687F639EA004D3E834587C5AC8762B /* server_context.h */; }; + DB8AA75AF392B999FBEB5A00C3CA0A42 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D28093562E3AD4577A45CFD0D1A7616B /* accesslog.upbdefs.h */; }; + DB919697493161ECDD9CCF65D3C65854 /* statusor_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0A5781B5A4EF2B6E5EAF94AC803D29 /* statusor_internal.h */; }; + DBC0EE7D6A163059A9C393F75F12338E /* hide_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 7348FD04A460077BA76DDABEEB8593B6 /* hide_ptr.h */; }; + DBC957F2CDD0F231865B1BCB8D2F5CAE /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B591BD44488D1E7D5910CF9452C12F03 /* ads.upbdefs.h */; }; + DBD00D67DBDFB5FBB655768F577EF351 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 298EC841485A28BF76A38AD0264552FE /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DBDFC302725A01EF8B2A54AE2231967F /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 377DA236AB03F2BAEE4F557B1579EC84 /* decode.h */; }; + DBE07A701C44EBAEAA635A53E0D24405 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AE5BD4AB2FE880F958ECBED48682DBC7 /* struct.upbdefs.h */; }; + DBE0C8408F0CBC002C0CCA091D3F9F9C /* serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DD1A4CF4842DE1E3C687CFD315D0FF4 /* serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DBE97DD80C6099B11C9205A1F2DDA14C /* http_server_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAA7990389FDF245F8D711F5BBB3369A /* 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"; }; }; + DBF356E53E005FCA89DD898817019743 /* x86_64-gcc.c in Sources */ = {isa = PBXBuildFile; fileRef = F31AFCEC3CF4B8560E25D3060CBF9355 /* x86_64-gcc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DBFB76BE2ABC420BBFCD7370DE6D809B /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E5CC7F641F436DB1282A0357EFA81E /* substitution_format_string.upbdefs.h */; }; + DBFBF8C76BDA8D8F8400092EC7918A4A /* FIRAuthRequestConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = D94425EB1D3A5AA867FEF18E733240E9 /* FIRAuthRequestConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC02A83D0274E89134594D5887A4E500 /* explain.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = D1B73FA74579E80BDBDD2E69EA8B4603 /* explain.upb.h */; }; + DC0AC251FC0EC570DBC96B184A6BD18A /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5F273B70495F0FAA39045538F2C804A7 /* status_helper.h */; }; + DC1113B59E8B6B34EE5B3A8705AA789C /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 845D25547CFB827A33FA7CD82DCD1A68 /* memory_quota.h */; }; + DC1B7D1BABBAFFBEE6E28275992EBAB3 /* error_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29EF70B8A0DC18518680E65B2178F41D /* error_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + DC288CCD91630F374FD571C234114A2D /* mimics_pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA30F8C06E619CC55B085DF645542476 /* 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"; }; }; + DC3BF2CE0DA1D4FEC8C34C27B4FF199D /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = A71133C43848C32F798FF7225E4E9C01 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DC48EAF070F07228073BAB27C602A8AF /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1BD7AEAFC9279838D18F7EA69E9430FE /* crc32c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + DC492E2A19B7B34A402BD99CE8278862 /* http_uri.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 46492E723D9D610960667AB9A9F5D317 /* 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"; }; }; + DC58AC47D6654433D5216DDA6F9EB908 /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */ = {isa = PBXBuildFile; fileRef = C7A9A1921E856E2A3029045F9CBFE1C6 /* default_health_check_service.h */; }; + DC596F2598CD52E01A3C849079341C21 /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 6D9F280597D57C6D3E455A588E4C156C /* backoff.h */; }; + DC5B789B08F942A89E2FB07660EC6223 /* FIRStartMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A08B53D0578E12601473FF4FE53ABF55 /* FIRStartMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC63ABF1FC84C8C6E71CEC19A7E0CE3F /* gaussian_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 5ACBC6730B7C5A478FFBF73FEB242400 /* gaussian_distribution.h */; }; + DC764557F767EBD3D36A698D240AAB2B /* eval.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A2945DC03E0F587DAFE51AAAC3CEDB6F /* eval.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DC779155310546D3BA5468C8F6826BDD /* FIRSecureTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 96FAC6858622270B2F1AAF166048DF64 /* FIRSecureTokenRequest.m */; }; + DC79D813A03D9B37B8C953D4573F50DC /* FIRAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = B23AE3F60167E893AB927FB4F1D7510D /* FIRAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DC7F11260586F0E9AFBAEB4DA4563642 /* grpclb_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 41950B925144F8DAC6DD365736BAB556 /* grpclb_channel.h */; }; + DC819939C5810A751B2BF13297158CF1 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = FE71CB28FE35F07DB90EE91B9A4EF980 /* status.h */; }; + DC88CD11C1643C1E0BD742188048CAE5 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 845D2DCD64F94846EDEA586E33704AFA /* overload.upb.h */; }; + DC9392AFBB9CD3A8F6F4969B1C4396BC /* host_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA84D14CAA88BA3D6F0FCDD38ACCB9DE /* 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"; }; }; + DCB9E51F459CB1DA0317073EE1B765F9 /* asn1_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D492A5B92BDDDAD7C19F8A596805D162 /* asn1_mac.h */; }; + DCBBDCAF8A7B562055F0C724682BA910 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B591BD44488D1E7D5910CF9452C12F03 /* ads.upbdefs.h */; }; + DCCA6835132C56EA1B684CB1CD9C044D /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C43E3B31216E05531D22105ECFD7DDF3 /* wakeup_fd_posix.h */; }; + DCCC4DE79EDB3B282B6D988C93110E37 /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 7F928376AACDA275738F34450038DC04 /* child_policy_handler.h */; }; + DCE1C9C2353036489DC7E9FC2A97348F /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D240863EF0AD60E5406EDABE5F1B968 /* protocol.upb.h */; }; + DCE3034B3F4A3081D0343AC127F7C8BB /* time_averaged_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = DFEDF66CBD59687CB311776859E52ACF /* 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"; }; }; + DCE69F169CF7F4CFD38819A874DD5B36 /* timestamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C47AF9D3479E57EC3B0BC3C0FDC7AEB /* timestamp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DCF343C50EDE8ABA09F7A03EB919EFBB /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 2A7129E41AF5610CD59C78ED31085B69 /* fake_security_connector.h */; }; + DCFBD1717EA4682A36950DF0B75C93A3 /* FIRTwitterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 16B71C91BC7BBEEEDA06D84190BFA53F /* FIRTwitterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DCFCC1373AFD45A43901C8574D1AE4F5 /* event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4FA7A6D0AA2F98D94B5FE10BA0741DA2 /* event_engine_factory.h */; }; + DD005AA413752910044D65CEE54FBAC0 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = C79E522BED35A820FB29B191CE6A652F /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD102B50325822244854641CA405676C /* memory_allocator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29B98E664D12A493E78F0E45CD3C61A7 /* memory_allocator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DD10AF0E27D3E44239D7029E76CD0D45 /* shift.c in Sources */ = {isa = PBXBuildFile; fileRef = 614E061E10B30F837967FE19A240DE50 /* shift.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DD198E564061F8F0CFB80271B1A7BFA6 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBA37C445628D1DDEC56CF0C0D006D1 /* discovery.upb.h */; }; + DD37611CF184E3F98CF7FAF13E292F8A /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0406507199D904BDBED7C13AEF78965C /* path_transformation.upbdefs.h */; }; + DD38D5247465BEFE509A58ABC6796577 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 93FD45C0379AB56C320890B481E0F25B /* grpc_if_nametoindex.h */; }; + DD39D4FB35E4F45BCAF67C9C92F88539 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ED4E196EACEDA89C19CEB1555B75046A /* wakeup_fd_pipe.h */; }; + DD457469C7B79D57AAADBA481FB4154E /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC2B28850898308399BDBC2962B21B47 /* 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"; }; }; + DD60BDA894716C2C4EC097210A0122E2 /* FIRCreateAuthURIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 31ADCF55E097F295B6CF83A4F8650A98 /* FIRCreateAuthURIResponse.m */; }; + DD62A0AF55F662A70109587426E86BF7 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C53DA64571379C8C591E440D024F8E6A /* outlier_detection.upbdefs.h */; }; + DD8DF4E1DB38BC52BE1DCEFEF443669B /* time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = E3BA8D00021AA1CCC4F50C99457D31F7 /* time.h */; }; + DDA0E49039B5120F6DD2ACB267482DB9 /* load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E4EECC067F84800BF94B85BB6A166CF1 /* load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DDABDD4B075295DD722E977FAF54EAD5 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BB01BE7A6353C26BB4B2A77292C93EE9 /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DDCF07D0BFAB9F5F7607C539E1F3DAC6 /* self_check.c in Sources */ = {isa = PBXBuildFile; fileRef = FD5A9E431DABAB19AE25E002315A4BEB /* self_check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DDD22C8AA948A0AC26C528890A34BF11 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA13424FD925EC7888C2E33D9E26B86D /* event_service_config.upbdefs.h */; }; + DDEA897575B3F3ABC5C0B47C31578345 /* syntax.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CB5B93E9C1B162258DD762BDBC8B33F /* 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"; }; }; + DE0A647129811A32D60AD458AA81C678 /* v3_akey.c in Sources */ = {isa = PBXBuildFile; fileRef = A4F4AC7CE28D780EF5C601866021A8B2 /* v3_akey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DE0D108E15E9D537F8B3DC8E463182D0 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8CE964626F35AB0631199A33A0649D /* range.upbdefs.h */; }; + DE0FCB3FCAD59156002550CDAAED0435 /* alloc.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 142BAC3E00F92DDA8AC50C4894D1CEBC /* alloc.h */; }; + DE145FEBCB1FF7C2A096AC5A11868EAD /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4D713C2D01046042F563D47361ECA4DE /* debug_location.h */; }; + DE1D3FD111086A44C4B7149269DABD84 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 682D2A63DBF9975DA26FB307A40E1E78 /* iomgr.h */; }; + DE1EB5B7976477093851074D1CD6D10E /* table_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 95D94DC5EB10EB24B17D5E1B44ABA40B /* table_internal.h */; }; + DE1F231EDA96D00749F4810ABA1998F1 /* FIRWithdrawMFARequest.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B6E6F781558B7591CD661D84A45716 /* FIRWithdrawMFARequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE26A5EA6551E406689F1AB84B78632A /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CA53B9F49A9BFFEE15799E33954F4A46 /* struct.upb.h */; }; + DE3765061ED5F611FF2884DA2C5D858D /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 6E0E5DB93718DEE01AEFB4F749167C72 /* grpc_alts_credentials_options.h */; }; + DE39D85AE3CA808507E69C20043CD876 /* bind_front.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = F212BA9FFB5A28E0D76AE4446168A7F9 /* bind_front.h */; }; + DE4352D8E9E1D4B29F33C3B302D11157 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 29E03EA70BBFA58F0095601A7AFAAD78 /* metadata.upbdefs.h */; }; + DE50B27DCEF52DA90BB413FB57C7217D /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 40D2B8E95257152412E5DF689FE7AAB9 /* bitset.h */; }; + DE55DABB6377E84F2DBBF87B0888D520 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A6EC7CAFAA5C3A2DC6F364A8D59D3DD /* socket_option.upbdefs.h */; }; + DE5B5E937459A81F08C4078AD82AE847 /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 4C394F11DE2D57CE916E89F5D66298DC /* http_proxy.h */; }; + DE5C857478C8261127F30506A47630C6 /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = F6ED0B0B5095379956BF16B23EE805E0 /* subchannel.h */; }; + DE607F09F9F8E039165D58EDCFAD7202 /* FIRAuthAPNSToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 75657D8E204963652AE48744EA47754D /* FIRAuthAPNSToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE673E0E73A8B0A1F634685A9577EED3 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FDED8CA1A863A892DC54D8801FBA581C /* xds_credentials.h */; }; + DE6BA370908308F5DBA5B81F79BB181B /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B73E5707E6FB413A7D32BF38A22CE23D /* filter.upb.h */; }; + DE715D40708B14E46D1A93BCEF41A6CB /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = 9B70A676789C4036F45575C5400D5CAB /* deadline_filter.h */; }; + DE88474843709EA46FF4B80AFE10BF58 /* backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = A10072035B5A053F75D0F472BD4D2A04 /* backoff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DE8A9DB50C2B7263FD6613A0F427952C /* query_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0A868A091AB132A44525680EDBE57BC /* query_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DE8AE8277CCEB36F85C142099B4B1C8E /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 3182329ECB517D3B918932194D3E7784 /* load_system_roots.h */; }; + DE8D9DE36CB7F43F3B1340579E6E73FE /* cds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1012E2A551E352D40D82BE29DFC29234 /* cds.upbdefs.h */; }; + DE964FEF393D23C107EA50FC2D85CB35 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = F592EFAB282167BEA02F2D825BEB5072 /* channel_stack_builder.h */; }; + DE988C91B8B4F4AE407D9F16D1009BE5 /* passive.c in Sources */ = {isa = PBXBuildFile; fileRef = 685E6D33D6050AA0956550C7D4C71FDD /* passive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DE9F6D50BFC9328C67E95913A2F39C91 /* proto_buffer_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5098FDF29A1ECEBA473D667406424987 /* proto_buffer_writer.h */; }; + DEA5DD9E4D585C58C63FE3391FF18BE4 /* xds_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A17BBE0CD29A162BE14DD34DFE6AF7D /* 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"; }; }; + DEABD1860F5DF1E7BDBBDD8FEF6E9CFE /* filtered_re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D40DCA681F0722E521C04D416744FC5 /* 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"; }; }; + DEAD8A876D88914D3EB4DA697053FFDD /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = CC59C91458601AC2EB638F6AA167A20A /* status_code_enum.h */; }; + DEBCA2BDBD74754592FAD86BBA9BC166 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 0E91AEC2BC41558828140FFDAC5544AE /* lame_client.h */; }; + DECC4960F6B0FC9C0CFF278D92F03050 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 78447660FAE3FC793AFA0E4C888916E1 /* lb_policy_factory.h */; }; + DEDBE2DB6C2709713EA0131F1B8DC9C7 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = D54C6B4437D484FF319583FCCD27B0C1 /* 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"; }; }; + DEF78FB50702AE309BA70433AC54113E /* event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB166A86A15C9A6168BA580967CF507 /* event_engine.h */; }; + DF04E3A5889B7DF78AF9B8063D9C01A3 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = C3D5B832E4B32AA1E544140497AFB731 /* client_interceptor.h */; }; + DF12B7FA9168D9F3D286B4391582CCDD /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F2DE8FFA91C2EBA12484B685554F55 /* GDTCORFlatFileStorage.m */; }; + DF138C93690BD4E125D71648A4339ABB /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 24C4A45B486A03422B6A2B27F2ADF62A /* xds_certificate_provider.h */; }; + DF13C578794DB0AE859EB348069019AB /* hpack_parser_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0EA828250FD680F9A84D1970911EF0D8 /* 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"; }; }; + DF1634F44C64BFB6974C7829EE7341D8 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AE3B9D1B0C92E1EB29B6DCF9651D39 /* resolver_factory.h */; }; + DF177E9CFB8E40A5A83BC44046D8D6B8 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7506595E1A717BB3A9F6703838620EEB /* cert.upbdefs.h */; }; + DF1B64CC7C1DAE4E6EA11DBD5C6E79DA /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E91AEC2BC41558828140FFDAC5544AE /* lame_client.h */; }; + DF1BB8DE63F4E6BC6B65ED1A228DFB4D /* tls_certificate_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 2F1BACC607AF3B082CA3AA766D0C1CF9 /* tls_certificate_provider.h */; }; + DF20E8D7A3056F16335C43BD45D3F6F5 /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AA3B5914D6B0D2E44D359BC34A4FA48E /* status.upb.h */; }; + DF26857010F293AF8E5DFE3C0EE274FC /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 582DA92D9E02573E166CF86393FE4E01 /* jwt_credentials.h */; }; + DF283538FA7F90C304FA8B31838F866D /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DB2BBCBF9518BA3AA40F08FD664980 /* sync_generic.h */; }; + DF29F01E3D18FE764A332CFD13922DF9 /* gethostname_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AC5B4FD6BC35B4C7B4CB1FDCE633C8A /* 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"; }; }; + DF3EA7254162BBBD76A3C58192FBF8C3 /* max_age_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46DE872B0050A0BE3E96703126ECF66F /* max_age_filter.h */; }; + DF3F59834BE460CA6E062B2DBC630300 /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 57B50E314A574C569D8F89C169D2468C /* outlier_detection.upb.h */; }; + DF4F4AB093EADC842D90380F6C87E0C7 /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D9AA0A5067796AB2F599C2EB79483457 /* GTMSessionFetcher.m */; }; + DF5132B94AC28644C91A854D8082A0A6 /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F11D02011EF5B75BC559C250C5539C3 /* xds_client.h */; }; + DF554A1AC89A4352CE94B42A2626BAAF /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D0DCB4D87AEB162B62039EB34D2C87 /* sockaddr_windows.h */; }; + DF81AF55064431276309A1F95D602892 /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0E09081A4FD8ED14E5FE10495EB159A /* GTMSessionFetcher-dummy.m */; }; + DF899F25310665A2C2C526F345DBE330 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C416ACD31BDE9B0B51D1E74D7D296E2 /* client_channel_factory.h */; }; + DF89EA0F35F5C53B181DB62D4B4F20CC /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 013B743A93E8962FA126FF160E6FBCB2 /* lrs.upb.h */; }; + DF8CB2E5BE29D4925C6034B6D920480E /* lhash.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8A84C72D151166A74D3B6A79AA8490 /* lhash.h */; }; + DF8FCDAF2987BF88039E090C30EC24AB /* FIRGetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 26F8A69679E852A4E9B7F6FB03A51956 /* FIRGetAccountInfoResponse.m */; }; + DF915F934FC2A2AC4AE7101ADBFB2BA1 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E504EA23615955675EBD96AF8D7D6A1 /* resource.upbdefs.h */; }; + DF9837D45CDA55A9DDE36A90528DB3E1 /* hpke.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B61B4D08803D7C38D7787DCF0530917C /* hpke.h */; }; + DFA3AB5C75AC75D39FE50C8815D6121F /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = F4D62B773DB53025922B293C0273A9FF /* config_selector.h */; }; + DFA4016AFE227A00AF3D120D74CC3D9C /* FIRUserMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE222D90681D945A7875E9256C6E5A0 /* FIRUserMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DFC6D98EAAE9A442E7B60B306A800613 /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 3333EA7F312E1EA6226237E3F0DB9641 /* global_config.h */; }; + DFCE2E3EE42AFAC5E16F2835CC72CEF4 /* bloom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 627F348A709184931C81C7DC6243D335 /* bloom.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + DFDB52EAE42B771BBE2788C05C757EAF /* any.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 705B1D73FA5618F22265BA6880A19556 /* any.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DFEA2F93479558209AF8713E171B9ED0 /* port_undef.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 600EEAEC4ED6D644F6542CA87A100B95 /* port_undef.inc */; }; + DFEDCCEE6A71544E0D68D78CD24F1AC1 /* port.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = B10851A33C44B4EC8C8E607B2DE362C7 /* port.h */; }; + DFF2265256702FF959BD9ECD71B8D59E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D02F71B44EE5976963C8A736FA15B876 /* internal.h */; }; + E00239CB12E9DFE177ADC7FC11814FE0 /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 490F71E4D42C8D5B386EF3E2752A953C /* local_transport_security.h */; }; + E00CD9213BED21C24087EC854E581D6B /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1210CE283772A28E7CF653F032DE1200 /* path_transformation.upbdefs.h */; }; + E01A82FE9E4D54D8A3F86B622E1D2CDE /* builtins.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7132DE232F85CFCB70E56BE252C3A4EE /* builtins.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E040D06FE6A598AEED83505F51496DB5 /* regexp.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 2216972EA04C05B04C0645B1BBC93DB5 /* regexp.h */; }; + E0483311332D25129BA83288BDA62D15 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 45CF1D6176424B8001AA00B201E8750D /* endpoint.h */; }; + E04F90FFA146A691350ECF97026EDD38 /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 81E9D9ABC1BDD1408A467293D25BDD4B /* prefilter_tree.h */; }; + E059A71492913E3A58A88CC0C1FA3475 /* uv-common.c in Sources */ = {isa = PBXBuildFile; fileRef = D2E8DDF817DCEA13DECA000B455CF0EE /* uv-common.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + E05A7CC17B35E80389243298C95BA459 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB101F27CBBDDEDC48CC31E7B9CD218 /* config_dump.upb.h */; }; + E066F7802E878123BBF6B6FDE799E5A1 /* errno_saver.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 783FAFEBB4F3765E41AC93CBA8311C55 /* errno_saver.h */; }; + E076899AE628A68D42776E920229E267 /* endpoint_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F08A0D25742710B0B4C354EB51BC35F6 /* endpoint_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E0792187EF154624D9BB27EBD702C070 /* client_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = F47D396799EFF46107DE16CD61E55989 /* client_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E089D6DB1A259331A23A07FFF805B88F /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = FE6F896254E8E816BDEDBCCC409E6E2A /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E09415B0DBB9046105A2E6D0815401B8 /* call.cc in Sources */ = {isa = PBXBuildFile; fileRef = F456401E236AB8A6F0725BFB197AFF7D /* call.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E0A69D54BE2D70D7C055C07ADFFE01FB /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F577EB6166E335961FE1C2B06914CDA5 /* versioning.upbdefs.h */; }; + E0AA82B430711CDDCC67A195EC332DC2 /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 13743C53A4F9FB6AC87CCBA6AF9C035C /* stacktrace_generic-inl.inc */; }; + E0B93A797D941F4A141BB31FA7B46890 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 517871A7A6AD7891E694D83320BB59AB /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0DA442002FC0CFB3A999EFD7B9EA528 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F70C991E3001830588C1EBEF6AAB5517 /* iomgr_internal.h */; }; + E0DA4D910A24139A81B2BE8D19453C8B /* env_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDE92FF333BC8CAD95393C844FDABD52 /* env_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E0DFA6E9462F07EB0E59BF74C32D5626 /* iomgr_posix_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3EEDF6368E08A6BCD4137A180189CF20 /* 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"; }; }; + E0FE85AABD920739B5004849E52160B0 /* precondition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05890FCFD712ECCCB0C53BB53F8F6ED6 /* precondition.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E102C7540CD16F7A531D467B40538C4A /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 158ADFD30912CFECEB65E075D3CC1331 /* spinlock.h */; }; + E120493DD0473BCFFF6A2479CB2D6BC5 /* cert.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E8FE79EB3890AFB95FCFE2A919F02167 /* cert.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E131EE7CAEE6AE1715C345A98D93DEF3 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 30949AB31E938072A3E89FBCA6C2B6E1 /* grpc_if_nametoindex.h */; }; + E136B97E8C44EFCB3D3C70A993E24FB8 /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = CE4581D24C43A1FA130A6D0FA9F59447 /* global_config.h */; }; + E142631B3BCAE46173DF5364C0AC9769 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C5F988C03E0959C610A627039F9D1FD9 /* stats.upbdefs.h */; }; + E14714F55B6EC80BD6A6B65E2DF8F63E /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = BC1920D969E10B9A607326A637566D9A /* http.upb.h */; }; + E15D8C95DEE5E666FF01E0334BB415F1 /* export.h in Headers */ = {isa = PBXBuildFile; fileRef = 20BA2C217877C918003B2B98FEF8511B /* export.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E15F94A98EB63E5C85CE9ACAC9FA06FA /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D9F0AF9299D6AAB91D45AA5A4799A991 /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E17CDC9DD4F61BE79FA7C37111C908BD /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C0E54EC9767B1069A725D44C80D1268F /* nameser.h */; }; + E18BEFA9B1300AB2AA0036392FF8A222 /* slice_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C1A43C770F0E82FB48D84F4EB3501B7B /* slice_buffer.h */; }; + E1936EABA565EF501CBF86920E8E79D6 /* endpoint_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F45A1698308FCB29D391C5B6CD5E3A5 /* 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"; }; }; + E19D8AC3009EE85D132833D87C03C493 /* FIRAuthAPNSTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 44723D065C9A8A4D2C38CE4FFB9634CC /* FIRAuthAPNSTokenManager.m */; }; + E1BCCF9FB74C421B4965B19D077D7FFD /* xds_channel_creds.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 750F6C4D528695305EDE1B157BF14683 /* xds_channel_creds.h */; }; + E1BDC2AC214AC75D08D0CD86118A5962 /* flags.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4793D4FB08E017F36672C625C1B442 /* flags.h */; }; + E1C036F90167C0F33092BB34BB45CA3E /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F93FB085A4BEF25B32E9DF109FFBA472 /* value.upbdefs.h */; }; + E1E40756F6F1A06A1F1D071CC6E27F49 /* rds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEEA2A09150DDCD5716B7FFCE5F33DD /* rds.upbdefs.h */; }; + E1EC8AED3416896653578BF11E689F96 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA84FBB831E18DAEED6780BEC07AA8F /* FirebaseCoreDiagnostics-dummy.m */; }; + E1F33C4A22A7C9A7B10F212D62591917 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = AF36D0A14EA7174365C2D5C6BCE9303E /* resolver.h */; }; + E1FDAB4A68D22BED2FA5AB3565E6FE0B /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9392D1B69EDA15DCF84E39203D3E8A67 /* socket_windows.h */; }; + E2021D31F73AD3289F5314907196BD37 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 142BAC3E00F92DDA8AC50C4894D1CEBC /* alloc.h */; }; + E203DEEE3533247E367DE01903A767BD /* server_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 747F5398DD2517835079DEDFB1AD1BB2 /* server_interface.h */; }; + E2129FE9AEFB230BE8D722D00AC65594 /* stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93C09273543042C1B7ED9B8A0F876EED /* stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E228411E7C18A468759832AE332951D3 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC366CF27ADEC900D1116A2BC1475D2 /* env.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E22F3832B330C492FF53C3DF62883ADC /* FIRMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 932D34888131B3A6D230A3B5967F2788 /* FIRMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E238B88FC295DE59DA262FCA15FC5EBC /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = F4D29F66AD6E89740C27AA0D4C0B576D /* avl.h */; }; + E24B74FCAA1A1A9E80AFD9D65A1E848F /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 543A65492B40E5159C7D45DFD719A1AD /* listener.upbdefs.h */; }; + E24C197A639A46F1EFD5DE5B9BFC1B42 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 145004F69577554E27FFC4C38782A33E /* time_util.h */; }; + E2560A6A58274EFDF6058EB8A4C526BC /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 96400A779A1FA998E3130C99F0E430FC /* filter.upbdefs.h */; }; + E25BFD08FC557FDE032F0F2544C71F91 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 87F2DE9B7144CDF1B1CDD6ECCACC74A4 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E2604CF73F2472299C3DD66CA26CE654 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AD309C486B0085B236F6C02877B670DA /* status.upb.h */; }; + E26715D8509024B58A1B316636D104FA /* internal.h in Copy crypto/lhash Private Headers */ = {isa = PBXBuildFile; fileRef = D66AC3130F7636C95C6FB4010BD7F853 /* internal.h */; }; + E271E45EA784B7602C5ABDDDCC39E296 /* rds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A7692299C7A761674EC972450ECB93F /* rds.upb.h */; }; + E2743382D64DFA7361D5B300B96FC2C3 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 725D353BE6A25FC2F52FBB2AC226E80B /* thread_quota.h */; }; + E278B436C8B848C3A1026A2750AB532E /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 79CCD076FDACB345396DDC61B5569A98 /* grpc_ares_wrapper.h */; }; + E28530D56E453527B10A9EAD5D0C3634 /* GDTCOREndpoints_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 49E7A01795E810D8830F421B2E52C8E1 /* GDTCOREndpoints_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E29FF511D3722AB790610FB62513162B /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 1CF9D6D2B5415928BF1B33A46932DC17 /* security.upb.h */; }; + E2A01F0F5504F2192BFDDFB1D9898512 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */; }; + E2A085AA0734D274BBD12E60DC625270 /* randen_traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0DB1513C2F7F8453BD3E9AED62A6A0D6 /* randen_traits.h */; }; + E2A1ECC2BB28CF29E70ED523D4002FF0 /* threadpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 43068C97EE9FA2EA49CBE0B443056E4A /* threadpool.h */; }; + E2A83BAA0230B1EDE44725C4CA8D5AFD /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 06E092424B003E7B0667FAE0E04B7D7A /* struct.upb.h */; }; + E2C8DDEA127DEC35674913783BC54B3F /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 733E1CA7C71F7950FF73F6837C5546BE /* tls_credentials.h */; }; + E2D1F5A150261FB14ECB1B55DD98262D /* document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = D1E2895321BBA843443F722097CE3CBC /* document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E2DEE4EC26667C6E19F77B078519DB90 /* order_by.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93DE09F6B0938B9A4CF750933C71615C /* order_by.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E2E388DAC2B7F9129DDF305C27FE06F5 /* channel_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8CA2D21358AB3D8B1763C378CEFD64F /* 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"; }; }; + E2E6FCA86305EC232864197542452FDA /* tls_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2BE641C335300342D11BC21AD50BAE3 /* 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"; }; }; + E2EB1DED7456377B9C9BC74D7F627F25 /* FIRVerifyPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC372F2C46820D841CF199C69F954E7 /* FIRVerifyPasswordResponse.m */; }; + E2F2154503889FF8708A1B61119DEEB6 /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 30869874CF99E787A83C44EE7F69EF44 /* 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"; }; }; + E317865A6EDCFA0A7291D920D5A8A2C4 /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = FE29B99AB49861FC7138440CF3F53333 /* resolver_factory.h */; }; + E31B3FA40E746AB0964CE2CCDF5355CD /* binder_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F44D9F31CB94014634D341019E1ABF27 /* binder_stream.h */; }; + E31BC6354FC36A10033916B3B29146D0 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = EA746CA91047F98307F850B98BC40558 /* FIRCoreDiagnostics.m */; }; + E32DF7ACF4B79734FBE5EDD939C7A260 /* GDTCORMetrics+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = AD8D3BB6BABFFB28CDD2F2E8B8276626 /* GDTCORMetrics+GDTCCTSupport.m */; }; + E32EA264776B6A4743230A12492F01EF /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4991E31C6D3E641142B9E9D56823DAF0 /* struct.upbdefs.h */; }; + E330765AFD7F9D5CBDD520F404CE0817 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 16AE8D8956A420D88D796D777467A2ED /* sockaddr_posix.h */; }; + E3396EE913FE512E1D5542C63A9C3877 /* prefilter_tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E9D9ABC1BDD1408A467293D25BDD4B /* prefilter_tree.h */; }; + E3530C146370303BD5503799560CA39F /* internal.h in Copy crypto/hrss Private Headers */ = {isa = PBXBuildFile; fileRef = 956B95854D679C341FABE2A6D285D2AA /* internal.h */; }; + E35407EF325962D3445EA8FE728D42CD /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1718F57490A3DF6DA7EA83B04D801B1D /* wakeup_fd_pipe.h */; }; + E36D6D8B57BECD70327A8DAC7CB4F952 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48C5E4E5599C0326958185410FD3C31A /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E36EB6FB5A8DB9BF659E0D16EE180A5C /* dynamic_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 744FD330FACC2569A4859FC9F49D0E80 /* dynamic_annotations.h */; }; + E371C1B18135C37102683AFE5F6013CD /* pollset_set_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 27C7D84AB0688CF0D6A1973FB29EA0F9 /* pollset_set_custom.h */; }; + E38934E464CCEE54B3F50332AEB1844D /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = E7929FBC54D2EBD1B237C549DA8FD255 /* channel_init.h */; }; + E38C99333E6D9106064768EB0F205985 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 80DFC757C71021B15B6C3C05A215D574 /* span.h */; }; + E393AE833CD77CD9F524F4E755739C34 /* is_epollexclusive_available.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30A5CA2A1D39466D67AE1A6F566FB11D /* is_epollexclusive_available.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E3956EBC259B6DD79A8EB43A05F4E94B /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 912F7093A813CBD76A294FF378F6E19D /* checked.upbdefs.h */; }; + E39755552FE254AE6F769D8CEB23B0E9 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 56260DBAA0F9BD43B745A48DEA138C1C /* server_context.h */; }; + E3AC17931514686BD73E51C4525936F4 /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = 99CF319969081F2A5C1B0E8831D1650B /* matchers.h */; }; + E3B8CD95520EAEEC72D7682F7277EAEB /* memtable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0D99BAF98C0BEBBC672D91723DD3BC /* memtable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BA4FFB07064CB3571A9A247A14F380 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D3A047081A1C37353133DDFEA02AD17 /* loop.h */; }; + E3C1B3F7EFEF165A65C1307A2F53F57A /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C19C66C81F43400E6B7F3A1A6332C07E /* cluster.upb.h */; }; + E3D9E8767A2E8AB93740FC20452146A5 /* unaligned_access.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4F564CC2B91600E34BDD4B0384D34637 /* unaligned_access.h */; }; + E3E35E98660F1FB404DC7C50804CCFA8 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D599469E42946FF0C5167BDBE014198 /* internal.h */; }; + E3E6886D6A08854B42EC4584B7A8BC67 /* cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34FEA3E610E827405AA5544188088986 /* cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + E41177D05D8B2E22D03EBB73E5F2CD27 /* thread_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D4A0297B0DE49DC4BB155C61F7CD00C /* thread_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E416AF5583594924FA1AF5C36E06A392 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D5DD29E5A90125973A285D0ED42E24 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E41F1A58BB9B878CA96BB201D08D9DBB /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 02084469FB2D895A0332629EF7EBCD59 /* ssl_session_cache.h */; }; + E420CA6CAA7FA1853E865FE90988E75E /* socket_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF4AD51EA04E5DDBACC14BDB5BC4E926 /* 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"; }; }; + E42359E6F22986D2E2595E86FC268EA8 /* demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = C326E59137784B375EF1E2CCA8621DE2 /* demangle.h */; }; + E423EB9F438E20069FEC8F7D8D600E14 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 197FE6916163BD0C008EF8193DA5BDED /* resolve_address_posix.h */; }; + E424745EE77BAA900844B75EF5A19895 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F22DF64BA2F1A14D74813715DE2394 /* http_connection_manager.upbdefs.h */; }; + E42505A6BF53DA8806B6E7A57214BA0F /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B743115E61809D3AACDACD4BE8F49239 /* tls.upb.h */; }; + E4274C6279BD844B46C3479918BDDE1F /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2AC0E36EE9018FEC5A11B2BD8B6E2EC6 /* rbac.upb.h */; }; + E442FA1E4AE071D21D3ADC20D7C29708 /* asn1.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A31B32D40BAB1FE1F132EB85134B31C /* asn1.h */; }; + E445D60AD1B76A8C89C7E67D87B0718F /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C77C8C358148481DED102534EC051A8 /* pollset_windows.h */; }; + E4557987D0A5C3DD2C8F72C7E2DCB98A /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 638B7695EC6F1CD6D44BEC11D1DFE44F /* auth_filters.h */; }; + E45CB47296E3D376B0E18689C8F636FE /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B4EAC746E9A821140B46676A1924A11 /* 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"; }; }; + E467238E5F32F070DADC8155EF493A35 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DE43F0B95AC9933832AEE1106F6AA4EB /* internal.h */; }; + E478D9D5237A077A8FA94326BC1C6294 /* memory_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = D42B3AB9160698E7425FCCD0152E596E /* memory_allocator.h */; }; + E47B6D15575B29C9D68068A1486DC86F /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FE62FAED0B82D41029BFDB7AAA32A6BB /* endpoint.upb.h */; }; + E48A61E2449A5A7C53DDC59C4C245437 /* nanopb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF526D765996B86AFB7B9FAC9D627088 /* nanopb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E4A59F571AA5A13473AAFADC35EBC0D2 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 6D3814C1269878D5B32600D028F2AFD7 /* alts_shared_resource.h */; }; + E4B08B502646BD5D33D17160F708EE0E /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F28D00F3186C8C08E29AD6644B287C1 /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E4B1887527F08B973392E58738E54056 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E625E60169FFE650103F1022492C6D8 /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E4B37E3EAB09B0275B487F2CF607BB86 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E54A65A2EC49C88D13B982FBD555AFD /* grpc_service.upb.h */; }; + E4B411B972D61896DDE28B8BCED6E8BA /* switch.h in Headers */ = {isa = PBXBuildFile; fileRef = C2C62FDC134D55EE0909F4F199BD41A3 /* switch.h */; }; + E4BA36A41438076B1189E5AF2899E52C /* fd.c in Sources */ = {isa = PBXBuildFile; fileRef = 7584896C40A793F6F3AE1A581E786E97 /* fd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E4BB5A5D6FD170B71388A584C42603D9 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BAE58DCC88D406362C6583666854E38C /* fault.upbdefs.h */; }; + E4C1166AA3F9123A97D839125D0C7F1C /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 6DFAF9B53518753656AE8F939DDC8C5A /* url_external_account_credentials.h */; }; + E4C276A00558302100F662295BBFE0B1 /* accesslog.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 32FF9A95BC61747B387449B0212A6666 /* accesslog.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E4C3086EE4C2D9A7E847648B0F4EE4AB /* transport_security_common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B278E5FAD18C8EA038B4FAF1D213B7DF /* transport_security_common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E4C6E1D615427BA29278CF6EE6677590 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = FD33F30B2FB49CE7048394F59294EBFC /* grpc_tls_certificate_distributor.h */; }; + E4ED624A1D7FA9245076FE1C678A717C /* internal.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 0299B5DCAACC5C5282D69FF5DB8E1F34 /* internal.h */; }; + E4F5D13E2DD54A4CC9E5B5CF0402C7E5 /* FIRAuthSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ABD160F1091AD7CF9EB4B9C9A3932DB /* FIRAuthSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E4FBB828B318D07D1B8D9C3F3327B11D /* attributes.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 9E8E3F8B77B723DB6AC0A3AF53A49375 /* attributes.h */; }; + E502245CD16303D131771F9F240A6DC8 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD9FA229759D28F5D2BEF588C96B06E /* proxy_protocol.upbdefs.h */; }; + E51B31731C6E72C68E5D30F4CB102341 /* FIRGitHubAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E2AE9A876DFD772F87DBD1C715318B0E /* FIRGitHubAuthProvider.m */; }; + E51DA1393F26A113B9B704B1EABEEA2B /* blinding.c in Sources */ = {isa = PBXBuildFile; fileRef = D456399111568A392E68B3B24DD47E8C /* blinding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E52299CEF848F6E934AA9C89190DB7D7 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 806D89885BFC7E5DF1C298DD4C7A714D /* alts_counter.h */; }; + E52D3D0704E7C3CE289C1795FACD3ADC /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 54AF541A6B3213A6177848801664F754 /* compression_internal.h */; }; + E542357E4203420D6985C36F1999080E /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 65FD40FA10E1F2AF6995B2EF0AAAC97A /* channel_stack.h */; }; + E542A322358EFE103F727FC018349CDD /* server_config_selector_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2910A547CAFED325878987C83937C91C /* 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"; }; }; + E5432B08AA69EE37E9E7140642467511 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C18E3FD7F2341479AE24F24A7ADB425D /* backoff.upbdefs.h */; }; + E570AB5A9CE7DAB7C3556ACD0E99AD29 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 87A4C65A5A10C9E21C560E8B98D3943E /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E573214F5B6DBB43DA7FAE4B5227124C /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C84159350C081455E5B835937ECCA41D /* resolve_address.h */; }; + E585D5B9979BB39FAA13B33815A3D1D5 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 942E8E3C0283C3BD288698D96178731A /* jwt_verifier.h */; }; + E586E7060DEBFDC519C0FD3427C7CAFD /* grpc_tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82374BB87E7C7DD902CFF6354380C71C /* 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"; }; }; + E591043515205D2A9007D93645501A8A /* p_ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = AB945A961CCE39200F9B7A61A735C888 /* p_ed25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E59214E0C93F01D5157FA7769ED622C7 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 6ED2FBE98224920237BD3DEFC52428A9 /* alts_grpc_privacy_integrity_record_protocol.h */; }; + E599FA24FDAB3837440143150DBEA50D /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 40251BC4BA5D224ED709E620C05C2379 /* frame_handler.h */; }; + E59D989DBD241A195D28D0773181B667 /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 6EFED1EB7904940E57293695D1FB106D /* child_policy_handler.h */; }; + E5AC8C873602265E65F722DAB069CF6E /* fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = B93B38345C542A8AF51F25E79B36C1CF /* fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E5B97CC92850848A7581E9785A726163 /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = 805E5F18BBCCC676978A3CB5EE7D2C2E /* des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E5C60843365BD15B5FED7F77E280DCF7 /* is_epollexclusive_available.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EF2F0C97F1D9CF3CA234BC13964EFE5F /* is_epollexclusive_available.h */; }; + E5CB2A7F454FC7CA7E862AC30D7ED02F /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 781CFE7BF46E5D0702850B2E0631EBF8 /* grpc_ares_ev_driver.h */; }; + E5D8531B7FF5028FDA5CD90F0BB08F17 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BFD97307A56651615D2D945105452D50 /* timer_generic.h */; }; + E5DA6B2402C6A7B44B94FB89CF303A27 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E7399D7828226A4A12D3CFEE4FE72855 /* xds_channel_stack_modifier.h */; }; + E5DFEBFBEE14AF5CA6986F0F705D1F36 /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D1964D920690D6BC66477832572B1AD3 /* dynamic_filters.h */; }; + E5E7391F72A18AC28D3EB6654F24B920 /* blake2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ECBFBB1A8C819905817A00DCAE371CC5 /* blake2.h */; }; + E5E85DBCC5D93F0C4A17FEB607E5AF94 /* p224-64.c in Sources */ = {isa = PBXBuildFile; fileRef = AFDE60160C80749FB6A3A7D7EB59FB4A /* p224-64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E60CC44384429739B12B352A405C7AD2 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 604286557E9CE4D862024F4ADE68E839 /* http_uri.upb.h */; }; + E6209298F7D436B8056C5BB8635F9FAB /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = AC804C7AC738C2FEFF3CFCAC76FDCB0F /* alts_grpc_record_protocol.h */; }; + E621BA4996F30F038592AAA9D96358EB /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = C4790882F294F39BDD533F41E918AC39 /* matchers.h */; }; + E622671DE151BF39B1E019620B8C34D9 /* substitution_format_string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FE30EF06B491C97160BC13D9E9C05400 /* 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"; }; }; + E626C86CFDB289270809F402113BEDD5 /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 8099F38C1FAC2720EC57C0783A005C79 /* useful.h */; }; + E63F517474101C45F0501B0C563FE1E8 /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = 050C5D6CE7CDB637D0CDECF2049FB34A /* NSURLSession+GULPromises.m */; }; + E64FE4A3490F21E47ED6E83CC5DE5803 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EBD130E1500A13073B025DA6F72BFEF2 /* context_params.upbdefs.h */; }; + E65671B0EDB0DDEAB06DFF7DA9950DFF /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D3DD53AA4FC87F50475CFA80C04DCD3C /* any.upb.h */; }; + E657AE887F0029D50FD3BDDFEB3F9E5E /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 02825FF3FF46AAAB26D9F0C99194FD69 /* config.h */; }; + E657CB0FD70719B0C05B02D6F700FDFD /* two_level_iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A92270940A15FEC6C6751BC8558C25A /* two_level_iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6802FFD056E376CE059DD4AB5CAF393 /* numbers.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A1C94895BD2E41F4BBF6932858C072 /* numbers.h */; }; + E6847E29B0D6ACF6DF51F052362B9838 /* channel_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = 784684E7B5949AEC5486ABC77D2D65DB /* 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"; }; }; + E6858E1DB93CF989BEDE5EAC4DC98381 /* stacktrace_riscv-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 3D4DCE849C7AC8497FC8AABED6DB0ABD /* stacktrace_riscv-inl.inc */; }; + E68A74C949310D3F8FB339AEFFE3F0A1 /* executor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20AC0CD7ABA9A0950228102872F92492 /* executor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E69031535D969E819AB749BCB3676DC5 /* bad_optional_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 7312C85CA4748F406EEDA4500DD8DB1F /* bad_optional_access.h */; }; + E6967D88BEA687A69B9AB191438B6266 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C4BA9BCA705A4117158D4086C88287EC /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6A0F52FC003AF31D4174E223CBC5B5D /* macros.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 956AACB7C5BDC297F5C379DB0198F13C /* macros.h */; }; + E6A50A9553A6221C2D903DBC81966A57 /* reflection.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 8D64C48152A6AD8DAC186AC84864C66A /* reflection.hpp */; }; + E6AD68E3BA1048F255F692340EE47E8F /* p_x25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 05D67614BF757CDF57583E2011D65ECE /* p_x25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E6B716CBB67CD28D3EC8B541E961C753 /* string_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 933F733BC59FD4CFF9E425C8596CBFF2 /* string_windows.h */; }; + E6B7F2773C40FAACE7384AD0E5D538EB /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F3BDC65CB66DB3C6CCF50CDF798258C /* rbac_policy.h */; }; + E6BD9502602F63D293D2162B752F3A31 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6B8284E07202C75CF12909F6248B03B0 /* socket_factory_posix.h */; }; + E6D523C7F35D18FAEE444C0F6A00D160 /* zone_info_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = CF91DB9E4CE1003B5B0D201ED268716C /* zone_info_source.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E6E4572682220EF72B4A2D465BAC0108 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = A9DB8990B2A3BEFB85485420AAEB9F5D /* jwt_verifier.h */; }; + E6F2FE2614BD03FC6FED1B37D15386D7 /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 0E43E0640447A49184F89B50011ED238 /* ssl_types.h */; }; + E6F3388DAEE1F114D13CA11B1D76F6EC /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BEE120EF00AA9CDE2F1DD3DDDBA5C263 /* internal.h */; }; + E703D13D332C21BC3B84ABD7111C915D /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 7819D4D3EE92CF6D15E6203497B80CCA /* call_combiner.h */; }; + E70A8F6E8B0F7470D2BFB949F388301B /* civil_time_detail.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB3C513795C9F950E138615E8D59D59C /* civil_time_detail.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E70C9A5BDCDB35302ECC8EF850651DD6 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F01A7D0217CE8010BDF5743529779C /* local_credentials.h */; }; + E7127181D76CF5F227506D292D339DFC /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 46FD6EA8B3CF0B9F1E0FA67D28EFF8F9 /* closure.h */; }; + E717E3886E669C4B0546C892CA964D7A /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2A26D5DA9D23D45D2B4F240A0A6E4923 /* dynamic_annotations.h */; }; + E720F22E0663D696DB090A591FC4DB48 /* call_details.cc in Sources */ = {isa = PBXBuildFile; fileRef = D31FE068A127C302D8F7F5D7C76D98C5 /* 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"; }; }; + E7322E97CDB432680395E977B3AA3135 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = B25CA275CD71214CCA50293281D337FB /* alts_tsi_handshaker.h */; }; + E73B8CEDC1BEC0D6098FCEF02372F3E5 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 7194109719C1344EE7ED556CEF056D92 /* alts_zero_copy_grpc_protector.h */; }; + E73CB093997CA3ED08312BBB2958BC2C /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 67539DBFAB6D7470EBB4B81CD395A2D0 /* create_auth_context.h */; }; + E744CCB0DE23158A0DDB947AD60D155D /* poisson_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = BC72EECEE7E3BB5401671DA6A316914E /* poisson_distribution.h */; }; + E744D22CED1E5A4336931E75A3BCBBBC /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = 7FE94FDBC6214D20A441583351D621DA /* gsec.h */; }; + E76F14920432236D8622CA6794D66FEA /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 79CCD076FDACB345396DDC61B5569A98 /* grpc_ares_wrapper.h */; }; + E776B78A00C8D7679F1ABA86EA79F4E3 /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D0FC19AF7E30E1EE0611516B3047469 /* 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"; }; }; + E787332A74C7B8F43345B63D6952E5A1 /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 6FDEE7B96072B088D68D10306D615233 /* client_channel_channelz.h */; }; + E78A2F2AA136816411F7EE6E2C873008 /* heap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E50EC0C9B5933F5F2677892B60458CA3 /* heap-inl.h */; }; + E7B6B87D213CD0AD2395E5064D036B5A /* firestore_index_value_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = A450E976C638C4C2B34D8983ADDE7EF3 /* firestore_index_value_writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E7C6D111A8AAC7511D9DB3F545CA13D6 /* document_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34F1B69144C04AF4B5887DD2A93D7141 /* document_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E7D310FCC9E274D6AD69D89F84B7CF05 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EA4A4BBC8AC14AF4ED27FBB7E9A6153F /* chttp2_transport.h */; }; + E7DF8D4C196C871BF1B2681D55CEC5FD /* FIRFinalizeMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = EA2740E451367A01589EA044F23D158B /* FIRFinalizeMFAEnrollmentResponse.m */; }; + E7E2212206F47477D0F18107929C6D1C /* parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 243E411F0BBE46610F4DF84B5B8F2D50 /* parse.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E7E6F534769843F1CAFDA3FF25A6A83C /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 3DF7220F9AE1ECC253DDFD8C68BFC64B /* grpc_tls_credentials_options.h */; }; + E7ED43C016E400A8188DE76BCCC28377 /* cipher.c in Sources */ = {isa = PBXBuildFile; fileRef = 4238824FCC101FB9FE13D072497BFBDA /* cipher.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E7EE0BA17503040BB24277673BC43CAD /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CADFD2E9C9E9D0FA1119A0312A0CCF4 /* def.h */; }; + E7F849FC2594574D7101D182C7EB42A1 /* secure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12788084A63E94EB146B6FB49F5DBECD /* secure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E81218B14C39EC676F47B74695C7FD9A /* mutable_document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17CB02934DE998D4F38A000C8A51D960 /* mutable_document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E821A0233B6DE57D2441EA3E85AB6223 /* load_file.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CC1DCD05491EFCA8A659AEB63F5CFD85 /* load_file.h */; }; + E82E6B812E27C1D0EC5CA37D91F3234A /* safestack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 377D2116DDE02A4493547BD2A68F6C03 /* safestack.h */; }; + E833B8048C6F3EF6C9B4859284AB7EDD /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 781CFE7BF46E5D0702850B2E0631EBF8 /* grpc_ares_ev_driver.h */; }; + E862C3AB1648D6E10640FDEE2665F268 /* listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = AE576357FEB6F45DA403E80FD9989363 /* listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E8641E0B07DF5D31E369038CFAC5B0D5 /* fast_type_id.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AB967AC814DD7BDF14A489564ACADB92 /* fast_type_id.h */; }; + E86B137D426DF17889DC9594D3D73876 /* core_codegen.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B08F8FF9A8A0E11F0C2E909CFE65D0B /* core_codegen.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E8745C87957C5CC48FF59F8BB3BC3164 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A26D5DA9D23D45D2B4F240A0A6E4923 /* dynamic_annotations.h */; }; + E87CE2624E4380B16AD53F8AD1652F68 /* pollset_set_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 53266F3E4A6C38A63464E4BFDB662845 /* pollset_set_custom.h */; }; + E887E6BD76FD0ED65DCA66722B1092FB /* rsa_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F6FEE6CA8EBEF7D2B808C55CDA44B7B /* rsa_impl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E89FA599293E30DD1D6A23ADA0471A71 /* x509_def.c in Sources */ = {isa = PBXBuildFile; fileRef = D0FBF33938E6726F2A111CAF54B650B3 /* x509_def.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E8A8C50579CF2CCD1C944DF7F66CD0F8 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 88D8E8EB449E5FF259371BE8BF84503B /* http_connection_manager.upbdefs.h */; }; + E8BB64100AEB8151654D0BCF42A966DF /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB8AAFF8D14709D6DF2941E63605F4C /* resource_locator.upbdefs.h */; }; + E8E4CAC3A186EE9D202A705091473183 /* cord_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 133C6133923FD69428B12B73DD9D55C9 /* cord_internal.h */; }; + E8E9E0F500251E0563096E0BA7E9EBFE /* tcp_custom.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A3CCFBAFBBDFBEDA3B381E7478DF01B9 /* tcp_custom.h */; }; + E8F88B13C0F5F454C888036935871523 /* opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = D5121F42EDF3CB2B838C2174C5E29478 /* opensslconf.h */; }; + E905AA34BA8E02149E9AA4C96BCA13EF /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 16AE8D8956A420D88D796D777467A2ED /* sockaddr_posix.h */; }; + E90B1D5ACF1647E2FC2A67A96286F2C9 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7D6FA8081B12F306D3960C3D23B9EF /* quic_config.upbdefs.h */; }; + E90DB94A684076269586BBB479353D70 /* pollset_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED09D5A2A1D89F9F5B167E3728CB76B /* pollset_custom.h */; }; + E90FCA31644B2383146C7D754E79E5C1 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80C57F179BFC42A798C67E22CB90D5ED /* percent.upbdefs.h */; }; + E90FF91B8964853975CD47747A75350C /* secure_server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 8891128A7E3C0456DC9B5DB1ABA0E365 /* secure_server_credentials.h */; }; + E9135C960E23BE8890178FBA4240BB74 /* randen_slow.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EC4A96E752A1513781C5EF55AC17F5EB /* randen_slow.h */; }; + E915E965A0DB97E7EF53EC94A7A2E3B6 /* async_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = BEDF664DB16A959C39F6ADE0982DAACE /* async_stream.h */; }; + E92C5EAC99EC9398D5671F9233960A55 /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = A0E87F5100ADC1233799FF3EC2ADDA82 /* deprecation.upb.h */; }; + E944BE473ECA8DA35AA66A71CC8BE6FD /* GDTCORStorageSizeBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1754AC18FAE3D357AB4DAA81DB5728 /* GDTCORStorageSizeBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E94781EABB2F564E9113CA6396EE210C /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 81E806B3541DB451F73D7DD5A39A3A5A /* alpn.h */; }; + E94B3DAB205CDFFCB8E7E84B8D7F4671 /* alts_record_protocol_crypter_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0F3984CA713818B460B6CEAFBDDBB2B /* 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"; }; }; + E954D5568063970088A4E690226F1C67 /* grpc_unary_call.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCDAD064366DB6F53D24F6EBB986C868 /* grpc_unary_call.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E95E33AC907D674C8788FE53B966927E /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = DF07A4029516D12629925D465E1A510A /* ssl_security_connector.h */; }; + E96633967B63B6D8C8B48A0044920113 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C2A9A58EF080DB671CD159B73866D874 /* empty.upbdefs.h */; }; + E9741068F229F654564BFEED0CA474F8 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 91AE9EE569472E395A9D36E4ACF8A48C /* hpack_encoder_table.h */; }; + E975286975E1C10D903F65C5C1011600 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CB243670593D683E62616F35A00BC1C /* http_server_filter.h */; }; + E9807903E4B839180B2DD0E0FC69C7A0 /* internal.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 53326FF73FF8F5F9E3C96FAE75D25FE1 /* internal.h */; }; + E980BB5438D24C92BC0FE99385E7DF9D /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = F1264FB8E80312972C194247C7A7BF40 /* decode_fast.h */; }; + E9829FF85B046F2636493027075C6E79 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = A814A92CDA18032C88AA1D37CEDCFD97 /* wrappers.upb.h */; }; + E984A5CCB2B29FECFEAECF7323371922 /* dynamic_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF57A95FE24A6492671FF625730034FF /* dynamic_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E98E4C90E4A4D6FE72CF237B9D44B21E /* server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C3A16AC189AD201D2EBA52EC6AFCA5C3 /* server_builder.h */; }; + E993370F3795EACD9CD24840EFC32B8F /* FIRAuthBackend+MultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = D499FC2C2EA1EA16DC2B666670E97C2E /* FIRAuthBackend+MultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99421C79B22DA79C117FB10A2940C22 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = D548C5C39A726A11AC762B31FD04D125 /* fake_resolver.h */; }; + E9AB714A9D2D2C7B631B39B16B599684 /* FIRAuthErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D48695A91ECA100ABC640B5C018E6DF8 /* FIRAuthErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9CD12F46993362733992D47CA1C6CA1 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E67C8FDD242BE3A0B13CEFFFCD3B17A /* empty.upb.h */; }; + E9D45A38F108E1E7537958C8B72A6EA9 /* timestamp.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = CE1C349D748807CD073DDF23BDDD49DB /* timestamp.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E9DD859C2CF9FEFEC270C3029B109E45 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 744588BE50B70EC86CDBA607F4426EDB /* xds_route_config.h */; }; + E9E254EDAB4E1C9FA10B0A2CD65167DD /* leveldb_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = E41A3E258FEE62A0254B8E29EE72A84B /* leveldb_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E9E3B113CFF5709384B65297778F39F7 /* FIRGetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F725FDA8784B5A8178AD286A4B87538A /* FIRGetAccountInfoRequest.m */; }; + E9E9B93A6DB36EFEB49F6C47252CAF93 /* auth_property_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD69D10B189C6344EC511B4232C175F7 /* auth_property_iterator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E9EE018C7DABDB14D3F6C931194B0FCB /* encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = CF1910744D731D8D1DE5D406923944F5 /* encode.h */; }; + E9FCA831A1D578E257AFBB7C2996BF34 /* symbolize.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 38D298BCCDFBF6F5A131F2F74529E894 /* symbolize.h */; }; + EA007901F3CEF567FB303BB453D019FB /* FIRAuthInternalErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB8A24539B9AA5078F48DC60784A68F /* FIRAuthInternalErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA0A1DCAD22A82F76F33FEE0BB07CC68 /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4D28233D4CB29F7EF88CDD713352D611 /* route_components.upb.h */; }; + EA1BA5D286BD6E835CC86EFE8912C5F6 /* barrier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89C49F37F82119FF371F6F0DB8543209 /* barrier.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + EA283049ACECBE5E3ECC8049D9AA15CD /* ssl3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DFDCE1F0D4E68CDD61E4BDFE7B633FA2 /* ssl3.h */; }; + EA2C6C40BCECD9E04A93717E240FB24A /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = CC2975F41161A709BB2DD91C78C66278 /* grpc_tls_certificate_verifier.h */; }; + EA2E501F1827A34590B608CAD1BB71C7 /* fixed_array.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = F772031CCD8FC7FBB7FCB07D3A11A4EC /* fixed_array.h */; }; + EA34035CF555BC45C7D27B67CFA860F5 /* remote_objc_bridge.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B29BA9383B5C37A5AF9197862D8ECE2 /* remote_objc_bridge.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + EA5E61298718CFFC4E99B8EF50F18324 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A438890524DE6ABD2A7A03027D111EF5 /* 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"; }; }; + EA5FAFE1026A2009542F4D8DB85D9098 /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 0FFDD1633DA780D2E1B55E1818FEBA88 /* service_config_call_data.h */; }; + EA662DABA1F249D145DCC0EABD0CC061 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E33BBEAE7D9E78940C9F05199516105 /* filter.upbdefs.h */; }; + EA8EE066C8BD274C451E214ABF14B7CE /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF9D6D2B5415928BF1B33A46932DC17 /* security.upb.h */; }; + EA908F09A9CCA9118F1AAF45CB8BEAF2 /* eval.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F0833A0809587A3E2BBD871FDBA7B9F /* eval.upb.h */; }; + EA97486844D910BEF9CFD47B1E4D44B4 /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BF937D26B63B99A2470A313D9EC50C /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EAA7C8B62E6A2CB52BCCA1F1AC50C8A7 /* timestamp.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 182BE69470AD1E636F77EB00C6F36428 /* 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"; }; }; + EAC6E3E9AFA8F16F30797953FD990115 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BFF3A9F1169983E682305EE6A95DD333 /* mpscq.h */; }; + EACBB5DC8D5721FC4792128A9A7E286A /* flat_hash_map.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 07BD01F84009288BECF85674D22D6050 /* flat_hash_map.h */; }; + EAE9816AA02F01AD7CE2FB365F53587C /* config_source.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C62BBC0332111AE4487B73BFDC845BB0 /* 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"; }; }; + EAF3EAB445692001652465CE355CD190 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = 01E4A4FEE82EB285236C12E3188E6205 /* inproc_transport.h */; }; + EB134ED85102A45AB78251E1E1640EA6 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A49E815324E7A045D0A234B8AC5F6B0 /* internal.h */; }; + EB146D500EF6D44C26B2A1F6375F911E /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = AC8A7A510C0D687C6BB71C1332B797B5 /* resource_quota.h */; }; + EB1877681586EA3F77EC81C23B1848D4 /* rls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A1DF3AFB51F6B4EE74955460554113B /* rls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EB19DAD573225F0943714C093A4F51A3 /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = C567DF76E868873AB8711A2216EACCD0 /* time_zone_posix.h */; }; + EB19FA64078E6A61425E59F1BFD1DBC8 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D4DA7AE45C5A2BBADADC9FA8311E9E1 /* channel.h */; }; + EB1C91756170AF80EB5158B6192F4670 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = F84035A1EB615E4B076FFB63108745A7 /* FBLPromise+Reduce.m */; }; + EB4789F98465D2E346357F7FB9EFCDC3 /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F11E073EAF48F7AACC47F18BAC36DF3A /* http_connection_manager.upb.h */; }; + EB648B6B09292EA27B4D692AF294B2C4 /* sensitive.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CAB003C14FE22662B5D4165FA2F56FA4 /* sensitive.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EB6B50F1F46C4FF8C63D21DAE993B104 /* internal.h in Copy crypto/poly1305 Private Headers */ = {isa = PBXBuildFile; fileRef = 3352DD7E9B32DA32FD0938088A06E613 /* internal.h */; }; + EB844F0212C2EA5D442100A04B0EA260 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03EB39BB6C3BA4D31A87BD4D92559F44 /* QuartzCore.framework */; }; + EB884E2C373A5CA5B2AED28323633B86 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = AD7F7496A542BBA77E6FF97069DE3D89 /* base64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EB8FABD47F0A23A3ADDBBC52713A1F1C /* charconv.h in Headers */ = {isa = PBXBuildFile; fileRef = D2564F7D167827D88EB0EAB6805C59F0 /* charconv.h */; }; + EBA94E9BCF752DBDE946399EF44912DB /* max_age_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C520F246B7C82D3BBBC969D2AB0E518 /* max_age_filter.h */; }; + EBAD87CF62C8994D96FEACFF6A6818B9 /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E54A65A2EC49C88D13B982FBD555AFD /* grpc_service.upb.h */; }; + EBAF91E6525190E73BF02901B9877132 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2F29F306315360662F87534E6F560F13 /* channel_args_endpoint_config.h */; }; + EBB9C6A8ABBFC10870E6D92213A0D9B1 /* discrete_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 31F4323F6371A2D3B91916934F8DE5C5 /* discrete_distribution.h */; }; + EBBAAA5CA3103EEDF57A1F9D60267A7F /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B8D2606A7860B8C389C2F0C68B582E27 /* stats.upbdefs.h */; }; + EBC40777C2E8C28F31E04BFF25290442 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = E88D524B148079DD23ABB081E5B9FDFD /* rbac_filter.h */; }; + EBD89EDAAD4D2D0D89EC7FA278208F56 /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = D79C2181AC03C784171C27E13A02A92D /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EBF3B70CF216F55F26A3A3478488EE67 /* container.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = 1DFE7754F77E8D7CA4D567D75FD5E678 /* container.h */; }; + EBFE853AE72ADE8FBDF5465DB8ECDD25 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = 6CB243670593D683E62616F35A00BC1C /* http_server_filter.h */; }; + EC018BCFA007B69950EBFC0337312B25 /* explain.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = F479BCB7EBF03A2A870C2996081DC1A3 /* explain.upbdefs.h */; }; + EC04382BEC47F3EE67FA8185249C4087 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 467B8B19B598DADEBFCCF1AFF4725057 /* GDTCORTransformer.m */; }; + EC1483A2F248A44B29C038697EA03AEE /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 29D75BD93CB111E10CB5FB61FB5E8193 /* csds.upb.h */; }; + EC14EF7CC64FE72CD1D8167490CE47C5 /* alpn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DDDF0F1CEBDFA8806A37A31E237B099 /* alpn.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EC1E784230CBAB7DB73A6120774E89A1 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6691DE6916DD7B3E50CC466797F82D27 /* timer_heap.h */; }; + EC1F2FA642C3811C56D0A0C189EC1DAB /* resize_uninitialized.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F5763691672D70E1DF660250E90F67D2 /* resize_uninitialized.h */; }; + EC23764397870E6134D83EBC40190B37 /* bad_variant_access.h in Headers */ = {isa = PBXBuildFile; fileRef = E22F844D60F529F5134801ECC367A985 /* bad_variant_access.h */; }; + EC273248BE07152EAE900F30403EEB5E /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = B31E493DE8DE83242F803FD0DD0041F6 /* uri_parser.h */; }; + EC29BF9B6383CB454C0E365B7F870397 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EE0AF2E9A3F6083D84A9BAC44CB43310 /* fault.upbdefs.h */; }; + EC2A9C314081E92C6C5E4D1A45AE4F7E /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F91E13FEC3C0614FDA44D6EAA6DD5A /* sync_posix.h */; }; + EC2BF4BB1A937A716D5A0FFDB1235D46 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAFB0099F62BF51790DC54FBAF2E0195 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EC44F00E933254491B8B688B674A11F8 /* FIRAuthWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5197A5BB51C676A7E2D142CFBC76CC3E /* FIRAuthWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC46155ACCB7442FA44E29E89F0289AE /* byte_stream.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5973C9D8C59541173331872A11564099 /* byte_stream.h */; }; + EC4A9242EE3E2AE19566035F965877D6 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = 554C08C67E86F0CB79FCDB0E27DF2AF0 /* security_context.h */; }; + EC587A36F87F0B1363871D684709D9EA /* http_tracer.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D2719F00215B987763C41B360250EC1A /* 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"; }; }; + EC7C54E178D69892D34DEFCFFFBD6A03 /* function_ref.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = D50DC06CDFCDEB0D1D0762645FD18DE4 /* function_ref.h */; }; + EC95A9FE1220070B636BF606A09220D7 /* iterator_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B7D2CA49842CAF0F5C8A63B458418C0 /* iterator_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECA17B0879D4CD9F73F56ECF8C6D958B /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 627CF6264B5E0CB198AF480C714B6318 /* client_channel.h */; }; + ECB64A4CAEA9AFFB7866E1889DA81057 /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = F321BAD48247D42A7D478B93DFBD3ED1 /* stats.h */; }; + ECC1E6A3F8C20076138AA705ECA1AED9 /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = 48A7939C380950AF9C80BF3538AD3569 /* dns_resolver_selection.h */; }; + ECE265C6D312349B6FFF23002725D881 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 484DA31ADCACFCF47E5220521550FF3E /* frame_window_update.h */; }; + ECE86405B68F6249EE5BE7AB90A3B513 /* connected_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 596254AF98AE198BB3766F558BD4B779 /* 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"; }; }; + ECEDDA050585FAB2D77B601A0FA644D1 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = CEAA5456D2C906E466F988613D321E4B /* sync.h */; }; + ECEF632B98385AB2259F5199618B0613 /* clock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EBE6FA3968CFC72C496AB4F41739B0F /* clock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + ED03F2F6DA0D8D5E18F848CC788A2876 /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F57DAF752B104388493F9381E10AE0B1 /* byte_buffer.h */; }; + ED0ED2304DB20B891CCBB8A64110A983 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = DF6BC080E1C49276809A3A3A20803233 /* descriptor.upbdefs.h */; }; + ED17DCF5676E306162267DDA151EE8F4 /* tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EDEA4B672BEF332C5AB18AC0B9034FD /* tls_certificate_verifier.h */; }; + ED29E3D03BFCB5BB55D343BDB6FBF9AC /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7FEF38F474D7E723A2E0AE559B86DD7B /* udp_listener_config.upb.h */; }; + ED2D90C2673E1BA846564A4C0092D138 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 41AC9AF7A36BFDEF1AE07F4DCD877B21 /* parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ED43887E46CF0310C76914A00A8D7BEC /* FIRAuthTokenResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 347236CC35C107AB1AB78F5169C4B556 /* FIRAuthTokenResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED572E39B2FA21DC05048F83445E3BD8 /* asn1_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = B9705A22F3262369BAFA33FE4F3246AE /* asn1_compat.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + ED69785A51D5FDC8AAB2465086FC12EE /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A4C28C5DE55D4E6BDDED6B0F165DEE9 /* time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + ED7C9A733629C9B1FF3E9A33BAB559DA /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 53B321657BF2CF0B5BE76A98027CA70E /* ref_counted.h */; }; + ED80F3C1D25A8DCAA7E9A8BC8713F903 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 01AF25EF722D3914BF9F97D6A7484E30 /* resource.upb.h */; }; + ED82E2E1833535BA7C1DCB3844E3CB58 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = BFD97307A56651615D2D945105452D50 /* timer_generic.h */; }; + ED89E27C442EE37F772A2487CD2035D7 /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = EFFE699E68466EC9A5C593E5D9EDC027 /* pool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + ED8E17AB48D6D8BEA9FE26F0CD2F6D6D /* buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15C97B12DC98C9967D92ED8337225EF8 /* 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"; }; }; + ED9320B9297A684CCD6397B7B0EAB145 /* iomgr_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23A367FE81EE60BD8BE332CCD04E955E /* 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"; }; }; + ED95664CC44210246DABDDC1545D887D /* server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 297FF06C68058D0F2AE5344DAF07B0DF /* server_credentials.h */; }; + EDA7F079BE0D1BC18008CAEE5D7D75B8 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEF0F83D632BA61BC77FB1E12AAD094 /* extension.upbdefs.h */; }; + EDADA680DAAF02175421B489039B92F9 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AF29D9D90837C068695EEC13D6D749F /* router.upb.h */; }; + EDB1EBAC81CCEAAE13164A7F3D95AC0B /* x509cset.c in Sources */ = {isa = PBXBuildFile; fileRef = B500D4F941472498E3F9456ABED7749B /* x509cset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EDBB72A55513C4A6EF6ED6B2B5924B4F /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B44BDD24C0C5179C294AA148F294B59B /* metadata.upbdefs.h */; }; + EDC0A037FA3E7BCCEB2E43C4D6204C35 /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 72575879F4DC1A1A2E136BA6ACC4E0DE /* json_util.h */; }; + EDC311924854127037540BEC6C6EF743 /* FIREmailAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D57196BC18A2CFAD5928D02AAA1AA73 /* FIREmailAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDCFC1172693DE2EBD5C3A3DD1B14359 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F08BA25679EF1CD8BE2EE7C4FB7A25B8 /* fake_credentials.h */; }; + EDD13361738164CA427426787A3495AA /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 77C64C6002643A0A3C3B48D77789BD83 /* parser.h */; }; + EDE2FEC912DFB8D6CDF8058EB223B054 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = ADF5883BB998597174345EB23C5871A4 /* 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"; }; }; + EDEA27BC0C0FAD4DCDFABF9D41E11617 /* pkcs12.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 843DFC541C4225B1A26D34C45132D306 /* pkcs12.h */; }; + EDF4AAA2F8A1962B6A9D3FB052820E1B /* fake_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53CF56B97347B06CB9F69B1EF3B426C6 /* 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"; }; }; + EDF94227DADEAA226F03254BAFEEFE64 /* iomgr_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3E2E4D857DBE3DDDF9384F40AB3FB28 /* 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"; }; }; + EDFEE318A5579AE04ABBBFB9F4ABC511 /* local_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBA57E1A6B526DDE632C5B5DC4CD9567 /* local_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + EE0B77DBD1A8DB2793152534ECE4AB0A /* server_builder_plugin.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 953FEF398311C9BE9A0D296346A778F2 /* server_builder_plugin.h */; }; + EE0C9D3869ED289B0FD8F8B5C2D5ACB4 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 809CD436344167C509DE2A4EFA647373 /* promise_factory.h */; }; + EE37BE0241E0C0C885F2F00F6A1D8328 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F950E9FC973A2770F7B1460286EB4C /* gethostname.h */; }; + EE3A2A5952F6BC24FE8BAE9B6160176C /* ssl_x509.cc in Sources */ = {isa = PBXBuildFile; fileRef = B78624FE5A1DD4220B27584AD7AB86E9 /* ssl_x509.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EE5070A7069B3723A4DC8A10DFB214E5 /* str_replace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57546376472B90DE81C00D2A64798A66 /* str_replace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + EE5DCEED40C62A3848FA3F3CE429FE2D /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E37AA8DEA0AAD92413F3D4762A3FF6ED /* pollset_windows.h */; }; + EE70689EDE81D82D395953F63FBD5A74 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A963028A6ED07940143366C6815FC0 /* validate.upb.h */; }; + EE745D34797F3DF7A91B4FFEFFAC45FC /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 7975E31F0C8EBAEBBE73151E99AF94B7 /* config.h */; }; + EE7D5BC764FD5948A9B27B82AF0E6495 /* discovery.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = DF8F6E6F7ABCBE5FC9BF034F55A2C170 /* discovery.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EE8D640A71CB46F79465635E5655A4B8 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 0166B6B5604FA8960C0A0795A637ECA7 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEAE076DDDF8FD43463E01D88C6B6E8E /* re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E118E2CCE673570D15354FC58A70E95 /* re2.h */; }; + EEB8B8A5C70304ADA50AE2CEDB7E079E /* document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5552ED910BD4273BAA15616EC18C9022 /* document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + EEC063EE8535D591090A77437DC796A5 /* internal.h in Copy crypto/x509v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2484DB461B84FEF1ADCF6BCA0F071A5A /* internal.h */; }; + EEC88E2A5489528A206E3CE342795231 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 89219B24124C1EA0EDCB9934EF49C6C5 /* stacktrace_powerpc-inl.inc */; }; + EEC9999AC38023F60E6A923FF6AA233B /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 7D8FB42255FF02ABF43AA485C778403B /* authorization_engine.h */; }; + EECC46F348A7375824EC28EA01FE0B28 /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 031527DDC738BD83E9A0ECF5C9D969BF /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EEDE9ED40F3E6FD709ABDB56C5E2C8B3 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7EB9DA88EA599C781F3AC59D73D48539 /* security_handshaker.h */; }; + EEDFC6983E8F08066ECC3488F41F82B9 /* byte_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 622F6DEC6B803A3EA0D4FE7279B72B20 /* 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"; }; }; + EEF0AB36913A085699EC00A6D0BC4206 /* credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4C3864BF98BE105781E475394D65B5D /* credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EEF22EEDB87AA9A68A2696C0ED70CBD8 /* stub_options.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 3A320C40973853310B12442B3F0EE31D /* stub_options.h */; }; + EF0E43DB3E3AD3DAE4D5B66666D71390 /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2B3418F0E37EFE0A2E7BBB05E0D601D9 /* channel_args.h */; }; + EF288BE5FB68517EEF053DCC0C27819C /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = C48B24C6C25047B9C23D66D6C8CC09CE /* port.h */; }; + EF3919B729A155EBB95BE6B18BCAB9BD /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3A908152B7B2D5531DA8798A30739E48 /* router.upbdefs.h */; }; + EF3ECD84A03260B9F910F8C769742ED4 /* inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22FAADBE9161C41F969EC7B33D3F731B /* 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"; }; }; + EF3FD09DFF70524E69C105773955A770 /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A5DF75113F4185F5EEFBE5EF2AD41B06 /* path.upbdefs.h */; }; + EF467219E9C3ADA2878084DA970F4449 /* server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DEFB7554EEF13EBDB29DA72D2624D1F /* server_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EF492088005609438493EA8282B3D4F5 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = CB029FC3D64CCC86FA19B6EB8F2FF958 /* insecure_security_connector.h */; }; + EF4A56CE88481772773A7DE93375AD3E /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B90F15E60881E22092AEF3BC52CD7DE /* node.upbdefs.h */; }; + EF67343668E82F98CE0FAE2B7377AB52 /* memory_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78777920D6D73F548D7A65D0125D67EA /* memory_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + EF6B2717298F587DD6BE71F529E2BEAE /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C7CAF10C22A23D622C7AFBAF6349D373 /* xds_client_stats.h */; }; + EF6C9E305B9057A4DC2ED5E39E01E2D9 /* tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1BACC607AF3B082CA3AA766D0C1CF9 /* tls_certificate_provider.h */; }; + EF6DF2F3C742FB472FBD5A95EE888EEE /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 383F744E37406F5D7B9AFA63D9CDA094 /* channelz.h */; }; + EF7AE510A6A1C2ADE3AC759E1D24B53C /* idna.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1B51F9282D3B8773AD78B1301431BE7E /* idna.h */; }; + EF7BB64EB1CE0C4B1DAD4E51643C4AE4 /* tostring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 24955F4CC62D3C300B7C8506BBB5DD6F /* tostring.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EF7C4FE9E4DBFB0425B3FB640BA544D4 /* lds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A7E4563046220F18248154A24B1EA08C /* lds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EF89C90F8CC9A379C304B4CBC87D9CA0 /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 4C86B60C37497122EFA11C28477DCA0D /* slice.h */; }; + EF96058DC34B8E25B0A3A83830B6E410 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9D43F253405F60D294BDB61035F6814C /* resolve_address_windows.h */; }; + EF9B555BB90C7F2B34A34AC6161ADE9D /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = ECE20E52A132177D7F657454BF8E7C1C /* core.c */; settings = {COMPILER_FLAGS = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_DARWIN_USE_64_BIT_INODE=1 -D_DARWIN_UNLIMITED_SELECT=1 -fno-objc-arc"; }; }; + EFB04E272432603C25058E2B389628F0 /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 15800B0EE834E5EFEF6D530B72BF7C01 /* subchannel_list.h */; }; + EFB5C17A0CA78B7A35B39A6146153C5B /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9DA0038BC773B41686BBE6972DE7EA86 /* retry_service_config.h */; }; + EFB70B721163EE6EC4FC9048735E7D7D /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 30949AB31E938072A3E89FBCA6C2B6E1 /* grpc_if_nametoindex.h */; }; + EFB7C75EBDEE6DBDEE57D78BA4513212 /* FIRTwitterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 497B38044A3B2E213929A7AB30CB92F0 /* FIRTwitterAuthCredential.m */; }; + EFBA2F90C3D709FA5E15C6A6BEA05ABE /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C56A6FCBA1E36A6BC205CD9CAF7489 /* GDTCORPlatform.m */; }; + EFBD601B055049461178FB1C8A433E9E /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B30D39911306059B5C85DD6C6767DF1 /* promise.h */; }; + EFC462358FBC8AC504384E9508BB47C4 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 0052729435F79E558EA2A4605778A9B7 /* subchannel_interface.h */; }; + EFD19A64E91D5FBC4586A0EF779A9553 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F16AF4276DECC40BB2F6A01E008B332 /* grpc_service.upbdefs.h */; }; + EFD6E6B35E54045B962A0E5B78D0E867 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E6BA021FE48666B3CDAFA6323EDAD2CA /* route_components.upbdefs.h */; }; + EFE2D6AC8EDA8F58A7220988EC9A510B /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 652F158B81A24E5BD410FF6854B9DA29 /* fault.upb.h */; }; + EFE35D2758310613E709C76843279808 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = C60B04EA53FDB2E30B78E6828FCCEE9D /* resource.upbdefs.h */; }; + EFF8200AE6C3503099ECE6E7B7152A14 /* handshake.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2034B39682533B208E6260217ECEA2D1 /* handshake.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EFFD1F9ADBCBFFD4463AD85A12DA1F4D /* firebase_app_check_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8B966F5469625D2AE2843A647591C5E /* firebase_app_check_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + EFFDFC46B91EA314A020D9431F2BEA56 /* http_connection_manager.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E46E71EB194B72EBE2CD3DAF8AF8B56 /* http_connection_manager.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F006BA40E6CF92088DD9751BA6638BB5 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = A6BF954226F3C86469A411A6478CC4DF /* atm_windows.h */; }; + F00ABE08C754D151B6CCCBA96D2C5BFB /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = B55BA53A8C2E3F0DE8D3D80641291C57 /* unicode_casefold.h */; }; + F010F880451E76EAA0876702261275CD /* writing.cc in Sources */ = {isa = PBXBuildFile; fileRef = E73406809630E5B914C51CF3A3BB440C /* writing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F02CCB43088A51099B17E47555BED183 /* blocking_counter.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 1DA07E3922A26ADD36E05DBBE0F60F03 /* blocking_counter.h */; }; + F039D7A144D4E487A4BCC13AB937F471 /* handshake_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E9153C6AD38072B143FB80FC99645EA /* handshake_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F0442D2E2F04A54D8BB508BE59A4C459 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D28093562E3AD4577A45CFD0D1A7616B /* accesslog.upbdefs.h */; }; + F04DB6ECD3AAEA8AE5B1734F873F5B77 /* charconv_bigint.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2F0A9DC7D59052BF3F1AFDE8E4D68D31 /* charconv_bigint.h */; }; + F04E16C072F3AB0E16C79308B5621789 /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BC0019FB7094896803003559673A97BC /* http_connection_manager.upb.h */; }; + F04E1D77092D834271BFF843A968BBA0 /* cordz_update_scope.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AAFC3D390499839CC90583698B0FCEC7 /* cordz_update_scope.h */; }; + F06556948F3199F21034EAAFDBBEAB44 /* server_chttp2_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7FF26D5467153BD1283BE0286DBBC338 /* server_chttp2_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F0662CF824E3B58D47C4059E2991B953 /* text_encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 1AC1CE77C59F8F7806F4191395CB303D /* text_encode.h */; }; + F06C0AA43875B837A83E3C3B88633CED /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = E866D5C11DCCEB4847206E4C901BC3F1 /* hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + F08A5947B28C3AAE8BA1EE352799447E /* unicode_casefold.cc in Sources */ = {isa = PBXBuildFile; fileRef = 763B8673B66E20EE8807F080845C7278 /* 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"; }; }; + F08E203199E0F39EFFF2921705F5C35E /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2744F25B64103423574268D739E8BF /* channel_trace.h */; }; + F09C6E436778CA258F046A97CD3F6AAB /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE34445A0DAE4FBA8733D9C802AA7B2 /* altscontext.upb.h */; }; + F0A2989B10E049192032C327D51B3CAE /* thread_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 084DE8F2876486094F9CAE017C66B9B2 /* thread_annotations.h */; }; + F0B23FB9D2A21C052182EEC53C984623 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 58076D9E0F17E46B6AB73FB3F6A727F0 /* config_source.upbdefs.h */; }; + F0B77731323CA8D4D5E59B948AD496C4 /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F84781EEEA6845FEB19422F9000FF5B2 /* FIRHeartbeatInfo.m */; }; + F0CEDC3715E7011D590E4A7E41114255 /* cpu.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 08A90E8EA63519502C99AF43F65E1EC9 /* cpu.h */; }; + F0D26AF1181CB2CA978042BC3B4A826C /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E72BBE7A201A7E58EAC6CDF21FE608A1 /* listener_components.upb.h */; }; + F0D6A39540B8036AD285E2DBA92EA687 /* scheduling_mode.h in Headers */ = {isa = PBXBuildFile; fileRef = BD56056812D152C3191F327C00983F29 /* scheduling_mode.h */; }; + F0D98B96D92FC53B59B4481CEE648124 /* geo_point.cc in Sources */ = {isa = PBXBuildFile; fileRef = A925A6ABA92ABCCDCA0399A5ABFA5840 /* geo_point.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F0E0D4145A049F20F5B04EED2CB2EA4F /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 2D6CA8F2BB1C640C922CCDE5CDE5B2D2 /* time_precise.h */; }; + F0E6A5CCB8085D987469B0CDD901B695 /* layout.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE546FB51AEFD1A39B580521C203882 /* layout.h */; }; + F0E9AA4C1A4231A3008F029766FBB531 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 61B312742C5B5B307E5AE236256D240F /* duration.upbdefs.h */; }; + F0FBA6A1B41EED94077236ACD3C2C413 /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = C33FFCE12E841F4D422156626D2EB150 /* backend_metric.h */; }; + F0FFE00B82243CA77F7A029724D9320A /* FIRVerifyCustomTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 23EB8461FE9A5920EB1054D7523B84A4 /* FIRVerifyCustomTokenResponse.m */; }; + F1088FB9DF9A9BA5CFAB81BCDD9E2ACD /* FIRAuthNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF8EBC9309AE8A177D8BEABE31D0A98B /* FIRAuthNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F108C83FD535964292140BE7FABEA74A /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 2631D6E1D13D75FF2CE956EF87A51DE9 /* client_load_reporting_filter.h */; }; + F121A3A52426BC41CF67083D87192D18 /* ecdh.c in Sources */ = {isa = PBXBuildFile; fileRef = EDB7C56FE241CE837755DDBDE6596487 /* ecdh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F12A187DBEAD7DC3E9E575050F512C4E /* str_cat.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4F61E0E65173FB7D6D802CEB3DA7950 /* str_cat.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + F12A480DB3A919037D3356482900434A /* FIRFilter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 954069AEDAAC546361B3E50D08241B11 /* FIRFilter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + F137E1F19303F96578A9FA5814C81180 /* stats.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F549B47C1CE0D40723AF220761E385D /* stats.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F13E2121F05F66113F1095FEA9079014 /* gethostname_sysconf.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1023A84DCEDD89D1D36F01D451EFB345 /* 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"; }; }; + F15A0723D224998E330B972372E28C4B /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99E5B9384D55FA6A2BD92539EB67666E /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F16368FB9301557AC3DD7C9BAEBB50BA /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64FE2E264AD3E279593F90ABFE9BBF78 /* Security.framework */; }; + F170AE3004F637F14A5F11A09B120282 /* bad_variant_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 931431E6DF51F21A745BDDF263049BE4 /* bad_variant_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + F177FE3ACDA4E8E9EE0A79C4E3C1DDCF /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = A608A42A171C22F314D75A2603BB484F /* status.h */; }; + F18F6031DDB35548FB1F1DADB441CA31 /* ecdh_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 5007F81986657D56B490A0AE23DD69EB /* ecdh_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F19C069F5FCAC0D7E616E21125AD4CB5 /* atm_gcc_sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 72EB6E8123424B7353248FEE6438E9DA /* atm_gcc_sync.h */; }; + F19E4FD40079BC32B10F48D7E677FB61 /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9571256BA6CB453BCBF4F3EF8C5EEFFA /* IQNSArray+Sort.swift */; }; + F1A3D3AFC3FA7B19C35F48325DA3716E /* api_listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = ACB19832AC5DD190E0FD6D0ADE5DCE03 /* api_listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F1B1B0BA2704238558198EB0F6E00691 /* randen_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F97F096CE1E84B2B7D21901D3C56B38 /* randen_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + F1BB9B7A00E5911BFCC3B190C4516A50 /* server.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2D3B8EA09BE3F4E53FF2A9D7B6AC2096 /* server.h */; }; + F1FC892B4F161299DE95036CBFE6C087 /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3769EBD9F895C2674A207DF500AED3B6 /* filter.upb.h */; }; + F1FE1FA92F4117C61359D1D30F56F31C /* target_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 04D435635C67762543409BFA5157E160 /* target_id_generator.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F2028EDD5A2B3FAC5DCC9F822853476A /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 522EEC6EB39210AC7D2EA76AB081C34C /* socket_option.upb.h */; }; + F20E2B3DD5E63EB2E4FB4BB0B880A9C5 /* db_iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4871B46F2DA745D913A50C049CD99D1 /* db_iter.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + F214E500AC603837F251F699CECBE3C7 /* memory_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C452A7C29524C6EA2F3E7C8BD9B440D /* memory_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F216C31E95E27453E3D438C2F00C9DCD /* eds.upb.h in Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4B646F91E0AFE8ED3A71A02AF4589A29 /* eds.upb.h */; }; + F218ED65F903CCDDFF57C28FF6CDB423 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 9117F129DEFA75ED8A5DC8BF41A3C486 /* tcp_client_posix.h */; }; + F2200968D17CBEAF0218E010F5E20610 /* socket_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34BD4DCEDEC1E1F332A79C29D8CCC5A2 /* 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"; }; }; + F221D73D0BE6CC05A9509B57B5AC208D /* fork_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = D334B3828F4F4767196F23108BB5846C /* 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"; }; }; + F238E57B45200CA35448FD3012C3CFF8 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F745270746B4C000235CDF6E67C12A /* format_request.h */; }; + F2443BEE6A973029E09FF8F62C5AE5E2 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 948040A0D6D6F64CEA32D4F6F01D13F3 /* bootstrap.upb.h */; }; + F24CA61CC091938C617B86B9E9CA72B2 /* wire_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD56F360B8048474973F95E6595E647 /* wire_reader.h */; }; + F26E4711CE5E87E8E71EE1E24F59C9ED /* rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0D56A007E4D3A6DFA2BEEC05957FCC0 /* 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"; }; }; + F27D7947FFCCFB4C40E5CFA384056EC6 /* client_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 036A9E9E9BFA9504041DA98C1D65A333 /* client_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F285BEC8CC293F4BE23D9FB7D258428D /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0C247CB8F9C91C722C551A75D2C643B8 /* string.upb.h */; }; + F29DC1BB6933E9B1A8F1F21B5B3C8712 /* common.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E9D185BE21E7EABFE79FBEE3A207D578 /* common.h */; }; + F29E55C582F7CC29298FAE15D91BEF9C /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 48D8265656FFB2A95AC849DF5F1BBF70 /* completion_queue_factory.h */; }; + F2AB4E4A232E8096940752DE6EF2C53F /* lb_policy_registry.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3E5E8BA21D9F1638EEE94FC9B32B4A5A /* lb_policy_registry.h */; }; + F2B2C8055E0C7767D63DFBF8473DE691 /* composite_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A94F90F7F288FA4CD24208DFF7A1DB9 /* 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"; }; }; + F2B96D5BF52A985DD2EBD200D829F90A /* engine.h in Headers */ = {isa = PBXBuildFile; fileRef = A93CE75F45729286AEE8124F6D145706 /* engine.h */; }; + F2BDEFEDAB4C6CF3530CB6786D81C195 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A204A0CA3281063585747D75D3DC0052 /* internal.h */; }; + F2C7A81C7B7B63E8858666B2A1B2B3DC /* BoringSSL-GRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78898DA0880A6CD33F5C26E3D76B4285 /* BoringSSL-GRPC-dummy.m */; }; + F2CA195A325ACAECC296C13D452CC90E /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 229DA5C38ECDEDF43ED5927FE1273B72 /* socket_option.upbdefs.h */; }; + F2F4025701A4F116A3166F53875D6F2A /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C4A45B486A03422B6A2B27F2ADF62A /* xds_certificate_provider.h */; }; + F2F48B929AB1573A7027A557BF4D1405 /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6020A818941C7158C7D06DE82B68E8BC /* quic_config.upb.h */; }; + F2F8AA04FCCC07645293B9EF15250DF0 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 984785F87CE833DC837D41FED974BC16 /* http2_settings.h */; }; + F2FA7EE9AD09D5D32EE1F29C77E6C8E5 /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B2176F8D282A3427D5188FF3D84A6D /* callback_common.h */; }; + F30FC87570527501719A61F0D153D041 /* cfstream_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 446B8C05915B2EA7BC4DD869CE3DD222 /* 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"; }; }; + F32E4C41611273393D35146326BF9277 /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = FED5109C8E4512A06486763331BE451C /* transport_stream_receiver.h */; }; + F33A8810ECF877F5312D1104DDD8033D /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 084DE8F2876486094F9CAE017C66B9B2 /* thread_annotations.h */; }; + F33B06193EBB0221F31CC5F4C7BEB99C /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = CACB85BB6B18ADBDE11D5F2E96BCEE91 /* fake_credentials.h */; }; + F33B862210076BE4442C1D1DAEF33EFB /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB24F97021E7DE0A5E11AFDC2B63B1C /* dynamic_annotations.h */; }; + F3519538EA55158D4FB2C8AA2D67A827 /* version_edit.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA33063B918A2ED89801D6DCEF1DE7D1 /* version_edit.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + F358A136D7C0F5A50C1DBCBDEC17E221 /* deadline_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33CC137C078B1C7033561A34382A5F6E /* 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"; }; }; + F35CA4B1FCA02D5D43D72A2FB664E660 /* aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1184778F3E53194194C498FA283B029B /* aes.h */; }; + F35EF0707932F083945A24E809C3E940 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 778173FC20F6C801F5CBC3ED92A4CBD7 /* server.h */; }; + F379BE2580691783284B3EFCAC123B21 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 24437CC2BC4649F4243DFCC14E1DAE09 /* alts_crypter.h */; }; + F37D564ACA01ADB436F1BE553D4C0F21 /* weighted_target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09B6666EC9A0C08622EA201A0E08F5E1 /* 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"; }; }; + F387A6E71614A5FE51812A9EB1721FF6 /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 392BB8539BEAF514B949281B459BABA2 /* address.upbdefs.h */; }; + F387B232AA639A5B8FCB42B734CDC7FB /* set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8888187E6FFFB35BAB353167AE07E37A /* set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F38C34165BF4707549D33C8A9B18C38E /* byte_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = A165A5E9CE0006207D5CA271C32294B5 /* byte_string.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F38DB8723AB7DBE072CC97DA03E9A664 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 942E8E3C0283C3BD288698D96178731A /* jwt_verifier.h */; }; + F3A2507805BC6FCBD28D41B531174F03 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = D494A11D43248225F158629F7A68458B /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3C238651B3B166DD131B4380E14E24A /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2A28A31A9FFA7ED3682395CB06658486 /* sockaddr.h */; }; + F3DDA8F2B850A8784920D8A6609A71BB /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1E72981128DF99B536C689AA588FC97C /* tcp_windows.h */; }; + F3DFD8EB7F1DC07B84922865D134E3E6 /* grpc_tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20BDF532A4A95CBF9B8A01DE1E9508AA /* 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"; }; }; + F3E0527B309770F823D8D3DFDDD4BD5E /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 444954F4ACD1A30472226959F2A84942 /* resolve_address_impl.h */; }; + F3F8F1356204F4E9299D007923D58B48 /* stream_lists.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6396116F4FEBEB9360503BBF9978CB8B /* 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"; }; }; + F3FE9C791326C3A98B2973F896B34254 /* call_hook.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B81F965BF413D73610690E9DF52126DF /* call_hook.h */; }; + F402983C9465EB0618E81BF95C531104 /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E22CC4B855064617E67E959A27ABA80 /* IQKeyboardReturnKeyHandler.swift */; }; + F40EDBC20AB7FAC4B4F3FF65411D64E4 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 53B4A0DB90F0A089EE202EFBF4448746 /* http_uri.upbdefs.h */; }; + F4113B60B9141E1121C75C7CEEE474E7 /* sha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 24BAC47328C1C9181CE9C233BE3B8E7B /* sha.h */; }; + F41FEA5B62B4EF1EAE7D9DD326C5349E /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = A35EEED096D1927031D2A2E656B22BD5 /* channel.h */; }; + F422E26ADAF7B441F94F77A4DA5682FC /* GDTCORDirectorySizeTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E3A6D54396280E38747A24D22EF2926 /* GDTCORDirectorySizeTracker.m */; }; + F425EA040BEF271CCCF9E82B327FEADE /* vdso_support.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA25BB35EF0DD0B7FDD42E853FA6383 /* vdso_support.h */; }; + F427906BD1D525E7B1BD1B9C1876DD20 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B12C2321E0D337A40480C526BEEDACE /* message_allocator.h */; }; + F43995CC416DC28120FC2DF581CA52D8 /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 99209FFCA2CC3411FBC2243B07127272 /* memory_allocator_impl.h */; }; + F43E61F88C09312FE320CE11BEC81AB1 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = A5265DF14ABE675F239483F3A05DD65C /* buffer_list.h */; }; + F465BB1407F874EF2487930C4AF21FB6 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 92387A676D8ED841D760841B167C8E06 /* xds_http_filters.h */; }; + F48C3E85C6B2DF14BB64BBCCFA033605 /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = 926A512B945681BC9FF1DA81E2B5F32D /* xxhash.h */; }; + F49AEB013F6C2EDF88C7322FF7B7F48C /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FF50389AA628ABB808CA4F98D2AFD5D5 /* ssl_utils.h */; }; + F49ED7285649D05E485BB1541D12A7A8 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6659678F74F091AEAA980474E5005B11 /* byte_buffer.h */; }; + F4A3BA33F8B22787AEEA7A927C41DAE2 /* srds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7004524BFCB1C39091C7A2B20D6F9B0 /* srds.upbdefs.h */; }; + F4AB15543A57B3E82D6FC67596F7AD54 /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E17A26765EC010979E39EF987B0D5CD1 /* global_config_generic.h */; }; + F4AC7E20BDFBF0903E1B401E3BF84B2A /* init_secure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 206906A0938FB14D1ACBC98E98230F9F /* init_secure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F4B4F20871DC004BD9948414DD2BDF27 /* lds.upb.h in Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0E761B9427A79B15C7FE15E0B479590A /* lds.upb.h */; }; + F4C3B3F2D11A0C656381EFF301F4087B /* error_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 460A395B99F62B1F22F4C0BAB3509D73 /* 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"; }; }; + F4D402236256924500343B7A7A8F4C6E /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 41106B6D5A056B269F476E360E205C8A /* transport_security_interface.h */; }; + F4DE2BE00A3A9C7E0433F6FD3635BDC6 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = 47A48BA2C9E10B0F9E1DC021C6593150 /* client_authority_filter.h */; }; + F4DF5530E4984CB90D1778FAC5440EB8 /* dynamic_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAFE69347C9C9CA51175A905DFEFF37 /* dynamic_thread_pool.h */; }; + F4DFEDF32C2DE5205AEAE97136720F5B /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 00CCFDDE8D218C5C1A3E507359207336 /* arena.h */; }; + F4F70CCE95E4F3CCD7B986CE4F4C1DA6 /* compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B9078ECB6F829D851FD6DCA7E526E5 /* compare.h */; }; + F50B9339D7E4C07DF41568494A2E9D05 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = E17A26765EC010979E39EF987B0D5CD1 /* global_config_generic.h */; }; + F50DCA7F3FF3262F409452502D097C3D /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D55F3E7EC07CAB9AA780456A2D19703E /* address.upb.h */; }; + F5207DA20DBA836B745646EEF1A4A53A /* oauth2_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = E65C30B2BE80BE8ACE88E13D7D22710F /* 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"; }; }; + F5238DFD4CDEF75B31E8E5C86E21E0EE /* rsaz_exp.h in Headers */ = {isa = PBXBuildFile; fileRef = 18883C160D574315685EC1BB725FC8B3 /* rsaz_exp.h */; }; + F52705F3AE88919FCC6A10201874C953 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 281E42975152E5BED409E8A175D94A2F /* spinlock.h */; }; + F54D372051F05D628AF1FF2FFFA70A60 /* ctr.c in Sources */ = {isa = PBXBuildFile; fileRef = E5EB2F54EC53670336345A9B14498B1A /* ctr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F5615D25D4362F6FB8F8AA767D08E4CB /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2FBC38EF41D5C4CF059A39B202910E /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F562B0AF6A0C78DD2065A0C3D7497B42 /* default_health_check_service.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A9A1921E856E2A3029045F9CBFE1C6 /* default_health_check_service.h */; }; + F564DE981A5ED77FD775485719609AA5 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A90E8EA63519502C99AF43F65E1EC9 /* cpu.h */; }; + F568C0E11346C813AAFFD35598D4175C /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 9619DE816C44176FC6421B31D867A284 /* health.upb.h */; }; + F56D3C47A2ECB09D42C9CFE5DE30852C /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 78DA39A4531D719ED9349175AED2FE7A /* xds_http_rbac_filter.h */; }; + F5774A0E4318DB120E9D6DB8C1C1D0D7 /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 4D8BCB168CEA2973C48A5E16CD76B396 /* json.h */; }; + F57904A68E84A1CCCC4EE4BFA50D0988 /* p_dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C47BEAF8E46DC904F72BB726BAC2BFF /* p_dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F57B1883A9757DE901EB3E517B073EC3 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D69D1FB058E741B878E2EA0AF11B3B /* log_severity.h */; }; + F58985CBF4697B00493F9184DDDEAE98 /* status.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FE7AD42B54146B924E4B47C584A8E70F /* status.h */; }; + F58F4B29F57BCD42BF7AB0101DFE19A7 /* hrss.c in Sources */ = {isa = PBXBuildFile; fileRef = A72C0A8B580630F6FA7191DA88514174 /* hrss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F591C12DD334B71E7ADBFDAF4E8BB95E /* trust_token.h in Headers */ = {isa = PBXBuildFile; fileRef = F807C88C8D946C4AE0858F82C1669D92 /* trust_token.h */; }; + F5935C1713EDE5795F8709F640DD791A /* srtp.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BAF3C079858BAEAE7ECAF1E9EB3BF24 /* srtp.h */; }; + F5AE55544BC987BFD0B0122E173B526E /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB47805342E7A90CB31798A18F1E70A /* rbac.upb.h */; }; + F5CF499967153E3DBE2FCDCE3F43BD64 /* pkcs7_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 264ECA18DB4BCE1787F2A8D4B412CD6E /* pkcs7_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F5DC5E65EC5B08BFD1F5A2A6382B1490 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = ED65DFF9F6A363A8F74668B1F2E7926E /* resolve_address_windows.h */; }; + F5DD4AEF5E7D553F38A1F56DB015E006 /* FIRSecureTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC3BAA571FBF68C4B2494866427D388 /* FIRSecureTokenResponse.m */; }; + F631E4013BC232839EFF5A5D43D6171C /* ssl_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 925CA7E7FDBE6EE2291E759446E66FF3 /* 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"; }; }; + F64447BDBB9022BB3B0E53048D66CADA /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C551BEC5E9F578374192C51A0CA631E /* json_token.h */; }; + F652FEF66BF57064D3D530D5CCFDD3A3 /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = F6809995FA08D0A56E48B41021600834 /* http.upb.h */; }; + F6688BE16F0BEE518077A00F7418C642 /* p5_pbev2.c in Sources */ = {isa = PBXBuildFile; fileRef = 26C3DB743312655A2C92DAF47A60BF93 /* p5_pbev2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F673A31FDE3BE940A70F5D87DE995B26 /* blocking_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DA07E3922A26ADD36E05DBBE0F60F03 /* blocking_counter.h */; }; + F699207392F7B34EDFBAECD68777C27D /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 2B5C27C52BF568DFDF1AF4B53997D8D5 /* struct.upbdefs.h */; }; + F69BF2394FCF3C711A34587028516864 /* p256_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = DC022933E3292FF6FAF8AF37F5F3485B /* p256_64.h */; }; + F6A08ED5AF598E0A7185AE6234BA860D /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C2BA60FF682D3D5FE784C92EE0D78F /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6A0E1FAB7DFD99338AE348A1B12C34F /* value.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = B7202EFCF92A26B903E03337FD622E68 /* value.upb.h */; }; + F6A30CEC4AD912808360AFADC5B43634 /* v3_akeya.c in Sources */ = {isa = PBXBuildFile; fileRef = E1821704FD7119472F4C40C6B4959A65 /* v3_akeya.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F6A62C5592834227AF5B317061DBE640 /* digest_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = B6A1BBC8FC7B4BDF635F51ABB76587D7 /* digest_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F6A8B9E3A53EFA60FD10FD9FBEEAAFD4 /* hpke.h in Headers */ = {isa = PBXBuildFile; fileRef = B61B4D08803D7C38D7787DCF0530917C /* hpke.h */; }; + F6BE833FF1A8AD0B5DD5AE8EE4EB426C /* slice_split.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 6E7F6DE1B54194B24326EA48EB0ECD15 /* slice_split.h */; }; + F6CAAA981EDF6EB244A36BA60EFDBEA7 /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D4B64B102E996DC9605FF21A838751A3 /* 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"; }; }; + F6E6E632F14B54FFEEA778141D9FFF5E /* pcy_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 74C87F9D896DF54AB753DCD7F19434F5 /* pcy_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F7045ED9E4D6D6D54132A1FB854FC9CE /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F81AD0386B5067773E2C30B36570E46 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7197484EAFF58759F70BC45E33FD71B /* GDTCOREvent+GDTMetricsSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DDD509BEFF6D1104AE87C0AD4A47A43 /* GDTCOREvent+GDTMetricsSupport.m */; }; + F72BB234F885064C6E52819A5F814615 /* binder_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EDA997AF26146BE99371FB2A016685D /* binder_android.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F7367D5D6BE0D81EFB3AA90AF20519ED /* lhash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DD8A84C72D151166A74D3B6A79AA8490 /* lhash.h */; }; + F737B91F4C1FE0C84DD5F7CAFC68ADDB /* resolver.h in Copy src/core/lib/iomgr/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = BB77292601473E9A170636A1AA174E03 /* resolver.h */; }; + F739D86C1A098CCC448335FF0BCEC24C /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EDAFF821C8C502AAC716571F79D85D75 /* metadata.upb.h */; }; + F74F4864169D508A3FEB4B29B002BEDD /* event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADB6752C944E0D899CAA1B175EE52BC1 /* 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"; }; }; + F750BC027E72A6B375B096DF8EAE0C81 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A588735D33B9410B0E7E3BA2B42ECA5 /* status.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + F7520B01CF59315292ECD8218F8B94E3 /* endian.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 315277415A9A34154F99B049F2D43DF9 /* endian.h */; }; + F78AFCF1F4605083DCD667D3F90F784D /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = 94BC6A18087B326095A636959A53FB53 /* google_default_credentials.h */; }; + F7980689FEA2262BA2E0707989342E62 /* ssl_cert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C4D9C624DCC8220873962FD2728DA19 /* ssl_cert.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F79B93D5B898742D5AD58D487C061888 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD2DBB335FDB80A89F6676079F6CAF7 /* core_configuration.h */; }; + F79BCDD3B927C80EEBFC9FF5ED29383E /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 7890FE3703D80D553218BB2FCC38A893 /* global_subchannel_pool.h */; }; + F7A700D8623D1E30EEA99FC7769DFF86 /* ssl_session_openssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = E12A8ACDDFAE3C205308833A30573E7B /* 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"; }; }; + F7A878BA8638B19F28A14ED7E0816CB0 /* range.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8818478001D272E336997914DC6C1767 /* range.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F7B8F58A02A2B88D2E9E78BAD7679AF0 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D6CD9FDBAD9C4F285C5DAEA6B1B47CA /* sockaddr.h */; }; + F7B9858D1B340C70B46E92E3F9D2C665 /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 059F43CCF5FC232429B49809FBCDF5CA /* chttp2_server.h */; }; + F7C8A8FC883C18C212F99CF2D5C70F44 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C0EF4305A9FDADCB8678097C6FF6FE6F /* examine_stack.h */; }; + F7D03C0B3FFE374CEF535C3B0C680160 /* rc4.h in Headers */ = {isa = PBXBuildFile; fileRef = EC8E4A862AB12839CDBBEAF02AB541E3 /* rc4.h */; }; + F7E250C1CFA3BA4C4E10C378C2E832B3 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = C67ABC7E8F3F52C2022DE6B6F0B95425 /* tcp_windows.h */; }; + F80AEA4EB35325C5D48192FC61921923 /* util.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 985E21E84662452DCB94526D7FB112AC /* util.h */; }; + F82D3C825B6E3ADDFADD433FA33405BF /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 319EBB9904E3DB737CD831F84DCA675E /* FIRDiagnosticsData.m */; }; + F83277481D03E7EF2947412AD6EEEFFB /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E7D270746FB452F796128CA38B9F1E /* matchers.h */; }; + F84DE915B34C81B6EAD38B58F72598F6 /* FIRAuthURLPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F88FF690853FD7851D3E61081F57FC8 /* FIRAuthURLPresenter.m */; }; + F84EB6D5C82E301C977BAA9EFFFC8229 /* alarm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EA914049B77FD58C15602EACBAF4ABDF /* alarm.h */; }; + F8602CAE896CA66D6CB05AF30BF6174A /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = D05C050174DEC044CD74071CFCED5D28 /* transport_security_common.upb.h */; }; + F86D2FC19752A4CE233667196C047BBF /* jni_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF6DE32A196E55EC9F8BEABB1DB36C1F /* jni_utils.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F871C9FCFC3534F3646E3C04202565B5 /* FIRSignInWithGameCenterRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4B7CA9BF2D3C222DF08D472B4D12D1 /* FIRSignInWithGameCenterRequest.m */; }; + F874F05F8E98C15D43513EE49C3288FF /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C85EF0D08D2FF11034DA87C23F94731 /* csds.upb.h */; }; + F87738CE6FAD04347E0F3B2926DF1161 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A814A92CDA18032C88AA1D37CEDCFD97 /* wrappers.upb.h */; }; + F8945FB9503495FFABC9BFDD7F861BDE /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D6F54224E9124D8650200B84B472D7 /* metadata.upb.h */; }; + F8A09B9934765E933869082627C21700 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 73A73D17771BBAEFEBBFE5724EF32F1D /* retry_filter.h */; }; + F8B184FD1024901F1C6F47DC951EB54B /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8837D5D326B1FFADCBEA8814537B3113 /* endpoint_components.upbdefs.h */; }; + F8B191CB20CE20F8A5463F4D03A6515C /* opensslconf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D5121F42EDF3CB2B838C2174C5E29478 /* opensslconf.h */; }; + F8BD52DEF9179BC7A0EBA86E854FD75A /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5BF11D03159A73A25B80FBDF634D8B /* rbac.upb.h */; }; + F8C4AC530E4AEE0FB14D50AE05BC29E3 /* duration.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 58646B88661D5D3A973664E34220D43B /* duration.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F8DE96D3311431C373601950631F2A5D /* log.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 23E3230EDDB33B21720A74DDD06C8F32 /* log.h */; }; + F8DFD7AE08C78BB600B430022E3141E9 /* global_config_env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 808479517641C3A8C5C0941B066FFA0C /* global_config_env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F8FD3FF4A5C4E776AD8D27E4B5B50ADD /* v3_purp.c in Sources */ = {isa = PBXBuildFile; fileRef = 64CBB8792878997852C6291602FDA42B /* v3_purp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F904915FE63FD6256A6CFEF3225C3D44 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8E12ED139BA28B1E37DA0A59314B8C /* certificate_provider_registry.h */; }; + F9167C0615CAECCEC3725783997F32E3 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = 944859D49FF85ADB6CD028421F09B1C0 /* http_server_filter.h */; }; + F91F893C829724A3F9B1FFC9C9DDB71C /* srds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A7004524BFCB1C39091C7A2B20D6F9B0 /* srds.upbdefs.h */; }; + F921B7DACA0BA267FE50DFCD21404B84 /* cfb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B54F5F3C5BA438C2813337CB6085409 /* cfb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F94755762647A9AD2A4D0EB471CC74BF /* raw_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7D8191C7D44D29FD318C1BE6AC7B58 /* raw_hash_map.h */; }; + F94FC14AB8918A364D2971B1BF464C17 /* scheduling_mode.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BD56056812D152C3191F327C00983F29 /* scheduling_mode.h */; }; + F953AF196499B26D5F4227C9522A19A8 /* substitution_format_string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BA87148D17BC321FAF29EE1B004D62B /* substitution_format_string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F96EA21230FAD4A9637B814C276D1117 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 55A7E306843BBF9740DD3498CEB9873A /* alts_security_connector.h */; }; + F97629FAAB51EC43986AC1935B5D40B3 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A13E6CA2407CBDC57E189D6980E82D /* hpack_parser.h */; }; + F98ADFD5C2274F98499BD75B104CBC6A /* ev_epollex_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B641524A57DEDE4FD658ADB4E6F40DC /* ev_epollex_linux.h */; }; + F99AF1A1CC12A6D676F006DEA457416C /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1904031C54D94AF4E4DC7064ECE58AFD /* tcp_client.h */; }; + F99E1A355A84F4018C8606B946DB4009 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = F07C634F2E5B9CA70579B7B818A319BD /* slice_internal.h */; }; + F9B17C038BDC7B2F4B51705BB733B268 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 62CDC71CAA741FAA16FB284AE08DA8FF /* chttp2_connector.h */; }; + F9B4181E2C53B740F0460A6D9F15239A /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BE0D23A5D5765304560022F42EE13C28 /* socket_mutator.h */; }; + F9D2CC47C2AA100921A5BD47627B97BF /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A541BA5FA6A3CE99602CEF52D1A94FD /* wakeup_fd_posix.h */; }; + F9F0ABC6ED312526E2A76F1F67DD0F37 /* call_log_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3DA6A57FFFF5160D75A42F983AF7487A /* 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"; }; }; + F9F4486D13CDCBFC4FC94D6B6377AA46 /* timer_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = AFE1A0DB8051D3C1EA049C4B54CC7AB2 /* timer_custom.h */; }; + FA08512B043B87A3C2E0398A79031EE3 /* set.h in Headers */ = {isa = PBXBuildFile; fileRef = F42742954F5F438E444EAC53A3A9B888 /* set.h */; }; + FA18759BB34CD10565D4E4902DB60DB6 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = 059F43CCF5FC232429B49809FBCDF5CA /* chttp2_server.h */; }; + FA26D0F665A47C4A26847BBE7CAE1B6F /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 05A12DCADF2010275BF065C130BBAC83 /* http_client_filter.h */; }; + FA27354DC0BE74DE07B7B70F858A6987 /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1982CD77FC83B105C24BBD999DABAB38 /* call_tracer.h */; }; + FA32BD375660120DFC69D05F9DA7F2AD /* GDTCORStorageEventSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C64A3E3D577C85EF2306F902967C810 /* GDTCORStorageEventSelector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA46FE48A45065F39861811F5F863403 /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 143B53D7DE25B883F9C47A16B13588FD /* message_decompress_filter.h */; }; + FA56AF97C6050564B2A342357FBA49DC /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 60660BFC635B76416DC9904483AFC9D5 /* client_unary_call.h */; }; + FA66278AF6EA777D96842FB76D5E695E /* p256_64.h in Headers */ = {isa = PBXBuildFile; fileRef = DC022933E3292FF6FAF8AF37F5F3485B /* p256_64.h */; }; + FA7BEC7F77139DAD4EE86D336EE6AADC /* x509v3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C73A5ACA65C331B4671916330457A6C3 /* x509v3.h */; }; + FA7C7B3BD1DEF91EE4D8C762E706D6A2 /* online_state_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C3F35CADFC8B90CECBA8DB80363E6CF /* online_state_tracker.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FA85302A21E7E9BEA4D4CA0A867CC98B /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 46EB2652C8B6AA9C465C8F9C5F17C105 /* alts_handshaker_client.h */; }; + FA8AB9C4B334F408FBDD5416EE94B954 /* server_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 56260DBAA0F9BD43B745A48DEA138C1C /* server_context.h */; }; + FA915DE0317BFD9AF9A479DC9860E716 /* FIRDocumentChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD0ACE76704E6FDE22C9C618982D9683 /* FIRDocumentChange.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + FA9D70E489EC5E98975332392397FAA0 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F2641B223DC241AEE22BAAFB9CC5979 /* 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"; }; }; + FAC73A7844A1B8D7136B831E386EAC73 /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = FE71C6010C11F3ABD587C08B796665BA /* thd.h */; }; + FAD6AB78407F18E4BD36C6ACD7A516F0 /* numbers.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2D8326C7EA23FBC3B0AA3B359F05227 /* numbers.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + FAD7E84CFE22012E98D3413059FDF0AD /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 7FF5A0B8EFFB565299FCBB477AB565A4 /* httpcli.h */; }; + FADAFD19A2041C1FA2B17CD549D8A06B /* e_chacha20poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = FCC1F3F2DC312DC808B208B202CBF86C /* e_chacha20poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FAE22421DA67D507DB11028A4B7E83C8 /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E39A632940037D7148A63ECFEBC7A2C /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FAED3312B59365E857895BBEB79855D2 /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 006B361EF0DDA63FEA280C8DBC84677B /* address_filtering.h */; }; + FAEFD67BDF6F293A1713E39D32436E8F /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DB085E33BA3949B0A03FCE79AB8F1FA7 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAF0116933FBD88AAB41613431714C12 /* attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8E3F8B77B723DB6AC0A3AF53A49375 /* attributes.h */; }; + FAF4050658045E5323546A51D48A8D5C /* transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF1AA395BF38312767C218235922183A /* transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FAF9388AEDFB23D47CB70507A03773B8 /* frame_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = C579DE30B2031FB334B688C12290A2F5 /* 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"; }; }; + FB1152984F00A41D8EFD25320AE640CE /* resolver.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = AF36D0A14EA7174365C2D5C6BCE9303E /* resolver.h */; }; + FB1F2232BBA040332CDF66208343474D /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D043CCB711AD8C7E6D010C7B1906A4DC /* udp_socket_config.upb.h */; }; + FB2D34E8CF55398DAD9FB8EE2D7E42E6 /* srds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 34F8A847C8D1A7DD0D7E3C3FD2BBFF7D /* srds.upb.h */; }; + FB40BA58F467029F7F11853F65CBE44C /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = DE582E4F72274D3CF9E0C7E72DA4C274 /* service_config_parser.h */; }; + FB52D252BFB1B499B969E3640D3D2597 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 109B9E8DEF6E02099373D79A6B08F095 /* tls_security_connector.h */; }; + FB5DBDA8D1149044622C25F946FC622F /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C57F179BFC42A798C67E22CB90D5ED /* percent.upbdefs.h */; }; + FB75D2319DD64400BF881885FA30D95B /* x509_d2.c in Sources */ = {isa = PBXBuildFile; fileRef = 025B72D377693569FBA67D95C614E9EF /* x509_d2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FB982357FF72C68CB45E864A4C7ADCE9 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 092457B81476DBBD3C716DE7074940D4 /* FirebaseCore-dummy.m */; }; + FB9E3F4D066B9745599D9727E5C74D74 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E743000A70E8D991D7ADA9D7CFF58CA /* sync_stream.h */; }; + FBA2D71F2B1CF4B3D4379F34A74C9499 /* c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69AF57F8DF6E3DB946A1BB3D1CBA7725 /* c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + FBA345F84F89F6557C84A82F0AAC207E /* http_connection_manager.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FFA8AB854FBEA8254B954427C957D9A2 /* 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"; }; }; + FBA6537E9B780288BF3E12A638E8ED19 /* digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 4955739B6D33BB938351246733C7BB09 /* digests.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FBB24C7CE59DA9528CDDACC8A188267F /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2DEA38EB7A0DC4708E23315BFBF57B /* def.h */; }; + FBBCFE0CBB631E3FB8842B785BE49D22 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5120C5825D365733032564F8F7BBCD12 /* bootstrap.upbdefs.h */; }; + FBBE0909A21737EBCB14C72B8EB6E427 /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 309CBD8BB74EDB1932BF53FA1FBBA230 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FBBE18AF540E12A40AEB17A140D371AA /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 180E90F16A68DD95194B4D6F687F8608 /* mutex.h */; }; + FBD499D2B5786125B14D587FD540D344 /* path_transformation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 776C3CD077E12B0B20C9426E1A8F4F52 /* 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"; }; }; + FBFCAE5F918D993E001A018FB3B4B59A /* examine_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 664F2FF1956DD241358DCC9C1C6439D8 /* 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"; }; }; + FC030970D1A47EB3802DA94CF9077825 /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4215CBD6B65F5339C83938B61508FE /* grpc_types.h */; }; + FC0822D62350AAD43611A21CA4C52BDF /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A13B1A242B4DCC250E43043F247B8E /* timer.h */; }; + FC08FF2E70BFCC171C308EE9B196CD4C /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 1DFD1873DBAF346A39AE6655E4C2F7BD /* insecure_security_connector.h */; }; + FC0FAD51649139DB805BEF377E1476F5 /* eds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B646F91E0AFE8ED3A71A02AF4589A29 /* eds.upb.h */; }; + FC2A7DBB32D75DF5BBC7E924F0349828 /* ossl_typ.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C50FACC187D57AED31D9E13EFD7184EC /* ossl_typ.h */; }; + FC2D671B77B8108E7DE11313FE9C6C8E /* seed_sequences.cc in Sources */ = {isa = PBXBuildFile; fileRef = AFE910F44A1BB907BE01EAC14FCDC0F2 /* seed_sequences.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + FC37FCCE988EC342B9E5B1CAF7321404 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C18E3FD7F2341479AE24F24A7ADB425D /* backoff.upbdefs.h */; }; + FC40CCE8857160F5E87EA4E4021D1EC1 /* FIRAuthNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 86DFFCCC7E7FBF799135A6010B45A3F4 /* FIRAuthNotificationManager.m */; }; + FC4967DC090A71369DFA107A56E7699F /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BB952D963F7A967B498C2A24D239E85 /* unicode_groups.h */; }; + FC4D14DB85977C7F6DD1F799B42F9944 /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = ECDB16D56F4307BC842215F4A960A93F /* channel_trace.h */; }; + FC51CA8144AF7F521FF07D490E27C95C /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = DB750341229EF0193FB051A0DD01945A /* timer_manager.h */; }; + FC585903DC9FB2C8961A9B8C32582FA2 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0126B52F1141B03D61C3F41D44B994C8 /* tls.upb.h */; }; + FC6A69FBC2F67BE6EF46DA94F812BD94 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 86E5CC7F641F436DB1282A0357EFA81E /* substitution_format_string.upbdefs.h */; }; + FC6B62ABFB5D7AED81FD147F61FCE603 /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 4CB0A385FE4DC4D30F86505F542818A0 /* message_compress.h */; }; + FC7A8A78CA7EF8016D0DC47465C76EA6 /* hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BA938DD9044A6892587AFA1F7EAF756 /* hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FC8D49C5A39FB99B982891B8714B9554 /* query_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A1BA2040A34A82E9DCC29026731C2F3 /* query_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FC8E05463F3445E2B8F1AC74D26B4DDC /* grpc_if_nametoindex_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C83812C10B2D52B02085F80B6848F02F /* 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"; }; }; + FC906E298FAD3A4F827B38E3F1EFCFB5 /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9661672C0188C0FA91EBE4F7D17DF119 /* intercepted_channel.h */; }; + FCA49D42ABF1EB3AABF0117129582618 /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = EC4CE2894263ABCB3E3AE8098AA3D881 /* sensitive.upb.h */; }; + FCB545E2F1884D4DB868E77B47F71DC8 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E99CC9EEFE9C5E325F63C1723699E6FA /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FCC057DD40979C1E80840FFD4C5C2F16 /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F782281BC26A1B05582437F9ABC3CC42 /* common.upbdefs.h */; }; + FCD29E3D0E759D5D3AC983FDFD6E61D9 /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5F0C27B4FFA4320EFE23323AED954F /* udp_listener_config.upb.h */; }; + FCD9F036AA21F51A612896529F08A69A /* leveldb_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1392DEE3196EBD48BE8D727F56F5552 /* leveldb_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FCDFF725CD40498F4F514B459B60AF9E /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71C059396D79BE130E0CBFF2831DCCE3 /* string_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FCE78A12EBF1596BE1235351319FB979 /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EAA2C67264E8FCAC1FC3D26BBC0C9E1F /* extension.upb.h */; }; + FCF53709A7B38157CBE93FAF2683F739 /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 4026E53AE81A7A1FD6DB893ED084676E /* duration.upb.h */; }; + FCF7AB7C573C7F11648B6467157F1BAE /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EA4827BC54E088A1C91C0F51BC8063E5 /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FCF7ED82C27EDC5CFEB18F11C0D30E4D /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 6499B3A0501BFA989CEAC7A7C2811AD8 /* subchannel_pool_interface.h */; }; + FD07026C5B38B4F083950AD62227A476 /* randen_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB1513C2F7F8453BD3E9AED62A6A0D6 /* randen_traits.h */; }; + FD20056B3203B4E7767E24A23E0632CC /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 41CE5CCD52BF239731484BBD5209F70D /* bdp_estimator.h */; }; + FD53FAF72369F05820C148CB329AADDE /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D989A4ABD25F5EC4EF560B78B91872 /* stats_data.h */; }; + FD62300CD53839BBC3D4BEBAD5A72F47 /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 00CCFDDE8D218C5C1A3E507359207336 /* arena.h */; }; + FD7BB710DECDCF17B5FF336111E5B635 /* hmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A37D336EF74ACFFF654DB4942C02CC4D /* hmac.h */; }; + FD9903D2EEE581D6BD6CF514DB651534 /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 09F8F64D8949332C56A38E3F1FE2E302 /* collection_entry.upb.h */; }; + FDC0DE541782CCFE565ADA4432586ECF /* memory_allocator.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = D42B3AB9160698E7425FCCD0152E596E /* memory_allocator.h */; }; + FDC665F82674453D50FA8AE32680FE2B /* validate_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82229B5ECDBB2AABD9861F13B2D9F901 /* validate_service_config.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FDC6C4BEC185635B007189BAE8284602 /* hash_to_curve.c in Sources */ = {isa = PBXBuildFile; fileRef = BB8936BC8C24A80862A42F83F9F06905 /* hash_to_curve.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FDCFE8D186D074835CAB6A2C9F74AEDF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B24DF331B199DC71FEC338397503F97 /* internal.h */; }; + FDD043A7F9BB503B71854BCE384A3DC3 /* firestore_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 51D328A0C077CADA9BA68222CBD31D55 /* firestore_client.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FDE60A91343E417FC85C3338BF350300 /* tls_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 037CE7D8799949627D7F03AA644D92C9 /* 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"; }; }; + FDE736B937C1AF4947D407F069C4CA42 /* FIRFacebookAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 154E416EF39A403550F51DA81A0B32B4 /* FIRFacebookAuthCredential.m */; }; + FDF250E7D8A315B8A20220BECF894930 /* is_epollexclusive_available.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B971A02D27FBE26BFA9BF16706726AEC /* is_epollexclusive_available.h */; }; + FDF3D4C51F9A8E1A49E249210AC1A04D /* per_thread_tls.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 66A452EA3D24A2C5F5FF4C0D56834ABD /* per_thread_tls.h */; }; + FDF7B93FA6C5A9B3F84E116F5EE5769B /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = A84E7F226E3C004C5461E352E1F2A5A6 /* event_string.h */; }; + FE0067842689E74C556768BAFA1E5A05 /* FIRAuthErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFD2D88B73783F06582A9C7710BE467 /* FIRAuthErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE2E481B22FCC2E21512D814260BA1C3 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BF6B2AED08B7B8325D2C3E00110A8AE8 /* percent.upb.h */; }; + FE3371479E4FB3EEF7C8823F1C934ADD /* cds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1012E2A551E352D40D82BE29DFC29234 /* cds.upbdefs.h */; }; + FE3A618829CF5A9438811089505452AF /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 877965113A7A741215891D68DE9D45C4 /* resource_locator.upb.h */; }; + FE47CA1528AC8A10AD2D011EC3EF2D75 /* xds_server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CE9DE2957DC9E5479BD03AC0EF64406E /* xds_server_builder.h */; }; + FE4938F7A873A7AD8E35F0CEBFF7D1C4 /* FSTUserDataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = E8CE084A8AEC04403318EFDA0056A937 /* FSTUserDataReader.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + FE4DD9D665BC7FB28F1976759AFEA909 /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F17777EAD8BDD682D13AA0F1E06A28E5 /* context_list.h */; }; + FE52754A66A4C084C0B1CC3698605D33 /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = C548C055488BCCA3FC5C1C309AB1A094 /* retry_service_config.h */; }; + FE5A1EAC496FA47A51E5D5FD8ED61D82 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CE314F3BD47892F514EA0B7D26AF3C8 /* authority.upbdefs.h */; }; + FE63A974B93970161BB07F8A3A74138E /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = 05A12DCADF2010275BF065C130BBAC83 /* http_client_filter.h */; }; + FE6C956B82D88578E9F426B43F67523D /* mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F975E9596667E5BD797F569EFA7501 /* mem.h */; }; + FE836090CD64AB3F9D63BB24000E94E3 /* statusor_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CF0A5781B5A4EF2B6E5EAF94AC803D29 /* statusor_internal.h */; }; + FE86F4FA06D82D27D556CA0664A54872 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 75043BCBD0E8257C1EB6CC913D1921A9 /* chttp2_transport.h */; }; + FE97D5A1D1630CE5E77C0C1D76374607 /* secure_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7BA7A83A1D08EE02799D9CC3063B029 /* 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"; }; }; + FEBC97C576A4B506A5713E1BF95C390A /* x509_v3.c in Sources */ = {isa = PBXBuildFile; fileRef = 3206DC71A33E682E65CEB0085F23E65D /* x509_v3.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FEC2E5F2063239768317FEDCAC13C08A /* log_uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 2659DE91DA348E79C2761757C6B8F7BD /* log_uniform_int_distribution.h */; }; + FECD7A1192EC557322DFD890A7F4D65C /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C5B3DFB69F3749843207BB70517664A4 /* cluster.upbdefs.h */; }; + FED660EEE1E0A4BA934A6A2DC5D56687 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 494092AD735B85454D60DB6E474A6BA2 /* matchers.h */; }; + FEE9078FFE5094A0F4678E230B5B5CC1 /* strscpy.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F68A522557564E4AAB4DBE58A6A1FC57 /* strscpy.h */; }; + FEF484793481191CC9E7A3D3534F0141 /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 666E9966EDBE9BEB538B4943212E9D46 /* socket_utils_posix.h */; }; + FEF9AB978013926AC17AD0A5E77D3A4E /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9619DE816C44176FC6421B31D867A284 /* health.upb.h */; }; + FEFC6EA0ADD4D27332FF1742E1136EEA /* spinlock_win32.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B0A6C83A9B970807250C58F83C214595 /* spinlock_win32.inc */; }; + FEFCE517BACC840D416EDF911017EB23 /* uv.h in Headers */ = {isa = PBXBuildFile; fileRef = B438E00EE2302FFAB47FF1C055E1333D /* uv.h */; }; + FF058F4F822963BE9F8D1022F4B8E48C /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = EFA41B7180704E364FC7085DE7AA41AF /* GULNetworkURLSession.m */; }; + FF095BD48EC4B13E12E208DAABC78275 /* ec_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 76855A2E8A4B077A9A0E4091976F98F8 /* ec_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FF0C767BAFA9E025E14A649C0B9FC287 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E061617839A02E725F607D4D09D0207 /* IQBarButtonItem.swift */; }; + FF25EB7A849676F4E1B5B958A4D78E30 /* threadpool.h in Copy src/core/lib/iomgr/executor Private Headers */ = {isa = PBXBuildFile; fileRef = 0366E26FD67CE451C4FEA7F53141CC29 /* threadpool.h */; }; + FF280879CEA03C45A265934701B5AE69 /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */ = {isa = PBXBuildFile; fileRef = 61F4D90A66553ECB5B8FBD7AEBFFE385 /* binder_server.h */; }; + FF2939C4C35ED575D91053FAB875C89D /* str_cat.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 5742684EC1615FE2F7E77176288E43F1 /* str_cat.h */; }; + FF33352600E8A4FB7EE582469D7F00F1 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5E4BC5D37F2CCF687305ADB6AB5BE2 /* alts_crypter.h */; }; + FF35465ED9F3C2FFFFC8F19AEA039AB1 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F27CE39E14DAE847144E02398A4EF6 /* FIRDependency.m */; }; + FF42D99234EF67BF0AD979A2BF2225C4 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 586812315DD91E7234B03949EF011EC3 /* cert.upbdefs.h */; }; + FF5DC778A3600CCE31B3ED89A40D1262 /* eds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 995E7BF357E15220AE93194C1C3E2AB3 /* eds.upbdefs.h */; }; + FF9137AB8350941657F3471A3A685757 /* FIRTransaction.mm in Sources */ = {isa = PBXBuildFile; fileRef = 59250A8AD0324F1039172B545A76E233 /* FIRTransaction.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + FF93C4B0F1C14CB37738D90B2A48FCF3 /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0761DA0584D292762B1C9B221B77E850 /* secret.upb.h */; }; + FF9D06C1B63722318703631645A460F6 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 751518CFFD5287DD2EDA4424BECDB6E2 /* frame_ping.h */; }; + FFAE53F8B2BFCB6EAFF9587A2AB8AF0A /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = DBEFB06ABB0547FCBC68B8243D928339 /* variant.h */; }; + FFAFEE061BB5615739B61B03E832415F /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B819813C8087E3C90A97749F0D41EDB0 /* bdp_estimator.h */; }; + FFBC55FDF0E42F9AA8427CAC351142BC /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = B022821111E61F489BC52E4BCE4C9B3F /* pollset_set.h */; }; + FFBF073B21E9AACD137009AA34DE9068 /* salted_seed_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 583DFBE6D4A137F69A4B9368A742D1F0 /* salted_seed_seq.h */; }; + FFC098B7146C68D42787293E874DFACE /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A0AAEF727687C88D648A8CC8E8E034 /* listener_components.upbdefs.h */; }; + FFD56310F1BECBEA70D3E4636486FEA3 /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DCBBB295CC84238735D6707ED2C1C215 /* health_check.upb.h */; }; + FFDD195B768B71139B8DF60E5F341CA6 /* endpoint_binder_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0A9044DFCE3D735ADC731CF58598CC0 /* endpoint_binder_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FFF6B2F2BFC5DCFCFD724FB92CAEADD5 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A93003B5E5DB89A84967D70A216EF942 /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FFF8AA500A08CE8BAD18A05F9FFAB601 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 813B88885DA9DE97E9BA345D551F8C51 /* alts_iovec_record_protocol.h */; }; + FFFF367B9A91442BAB589B255D5BB6A0 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AFA08182C445DAD5AC15C787A3BA4A5E /* timeout_encoding.h */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 025FDA2CBEA49714C5A0F28969C84995 /* PBXContainerItemProxy */ = { + 00625D505013DE0120D44C7D303C98A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; - remoteInfo = "BoringSSL-GRPC"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 039647ADA34CEBC1175FC65872EAC7C2 /* PBXContainerItemProxy */ = { + 03DED42F7EEA8E2965E0EC8F8923BAE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; + remoteGlobalIDString = DBA2B63E3A5FE83FE89E731664C9269F; + remoteInfo = FirebaseFirestore; }; - 03DE8636B09B74BDD423664B8327F323 /* PBXContainerItemProxy */ = { + 054E80D6C34E45B95D8949BCE72DDE0E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6F8A929BDB6E633BE35459804508532F; - remoteInfo = CLTypingLabel; + remoteGlobalIDString = D676E21115185671D7258A56944ABE98; + remoteInfo = GTMSessionFetcher; }; - 04037E62F285911CE3CA7E6A6838DE4A /* PBXContainerItemProxy */ = { + 06D6A49CA96E8541084C9C2839361516 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; - remoteInfo = "gRPC-Core"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 0B8FB03254E1452CBCA9AB33528660A4 /* PBXContainerItemProxy */ = { + 06F35C885DAD97C377DAE82B5D9849E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 6F8A929BDB6E633BE35459804508532F; + remoteInfo = CLTypingLabel; }; - 0C7B384DAAEAFC9E697B7C167FF78380 /* PBXContainerItemProxy */ = { + 1026F5BA5A7DBD7990660FDE5F697363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; + remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; + remoteInfo = "BoringSSL-GRPC"; }; - 11B511826761BF9DAFDEF5D04FBB2DE4 /* PBXContainerItemProxy */ = { + 2596F52C852068A8427F0C947D0CD9F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; + remoteInfo = "BoringSSL-GRPC"; }; - 13B8459B433D98A6E242A556598823BB /* PBXContainerItemProxy */ = { + 282F276BD704D2510AFDDE6AE1B81E13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = D676E21115185671D7258A56944ABE98; + remoteInfo = GTMSessionFetcher; }; - 13C806F685C4402855BE92AB423C5FDF /* PBXContainerItemProxy */ = { + 287059DBA22800093B2936034B3C5CED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3B8CAC3956E59F928387D0C6310E3B37; - remoteInfo = "gRPC-C++-gRPCCertificates-Cpp"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 13EF123D84618E4BFBC03EEB51BCF7C2 /* PBXContainerItemProxy */ = { + 28C4647C633A360CC3C790A661A2409F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 14B0CEEFCE09FF154F78A1F037EF58A2 /* PBXContainerItemProxy */ = { + 2EC6F767300EADB22493DE684B38AA45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 190ED68DD1159142762167FE44A65648 /* PBXContainerItemProxy */ = { + 334F9B1C893DE4F971B98668A7261616 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; + remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; + remoteInfo = "leveldb-library"; }; - 193F57525468EBCC81A4CCD781958706 /* PBXContainerItemProxy */ = { + 33C28F6A903EFE70518E2D016FEF180B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; }; - 1FF7B62514728B07D060688DAE02919E /* PBXContainerItemProxy */ = { + 39A1B97EF5474397685B3B08FD51D9E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 29595AA35469785ABA9D164CC0816C3D /* PBXContainerItemProxy */ = { + 3C9570688802DE0B601EE064196791C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; - remoteInfo = "leveldb-library"; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 33DE5A882829AA54FF26C208A0E5C944 /* PBXContainerItemProxy */ = { + 3E139DFA1F7BF1814A34FFC69018592C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; + remoteInfo = abseil; }; - 36E6ECB0D1593281CF28D969F5C8D194 /* PBXContainerItemProxy */ = { + 3E879C1EAD088D553BE4E248B0A8BFBE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 3A3628934A22A6894AA6EC9F99F5B0EF /* PBXContainerItemProxy */ = { + 3E9AA18CFF12E0C375E00796717FF1B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 69AA1CD97ADEF721EFB8D16AF3E96CDE; - remoteInfo = "Libuv-gRPC"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 4790F09C3E95C1F9483E0D03148EEA52 /* PBXContainerItemProxy */ = { + 4197473F5744FC6A59C6A941CE597030 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; + remoteInfo = "gRPC-Core"; }; - 4B9E88D1151F24A708E597C68CA8D34F /* PBXContainerItemProxy */ = { + 52DEBE09BE096BEAEEFF9437DAC29E91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; + remoteInfo = IQKeyboardManagerSwift; }; - 59C3AB1D4A6B1A868A85C8E21CE05936 /* PBXContainerItemProxy */ = { + 5DE59AB5CAD33E493749A3A4E6F1B62C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; remoteInfo = abseil; }; - 6D783A70B66D28D151342002597DE814 /* PBXContainerItemProxy */ = { + 66259941AFF02E90A07205A87A385F71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 69AA1CD97ADEF721EFB8D16AF3E96CDE; + remoteInfo = "Libuv-gRPC"; }; - 6EA90345BB3D7E9A7C724E921AAACAF3 /* PBXContainerItemProxy */ = { + 727C396B65E0CC33453873E154DDEC1D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; + remoteGlobalIDString = 3B8CAC3956E59F928387D0C6310E3B37; + remoteInfo = "gRPC-C++-gRPCCertificates-Cpp"; }; - 70F462B08085236373876A69EABA5FA0 /* PBXContainerItemProxy */ = { + 7647C102502657916F329EC7D5A62F8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 6AE4A3D573DED275B034E20506596C62; + remoteInfo = FirebaseAuth; }; - 719470C653BA5DF3920694D98A7818CE /* PBXContainerItemProxy */ = { + 7788F1C2E8E5FFF3AA06C10AAB26A073 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 69AA1CD97ADEF721EFB8D16AF3E96CDE; - remoteInfo = "Libuv-gRPC"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 75BE9161B2AEC2EE7B70CE2B0F99E81E /* PBXContainerItemProxy */ = { + 7802D8FBBDC848FA90A6EB4C1897EA70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; - remoteInfo = "BoringSSL-GRPC"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 7F05B1312BA9D1174CA976336FEA7BC0 /* PBXContainerItemProxy */ = { + 7FC6614F6FD4010ADCE4D710A793BD20 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 81CDD84199E443500AE8ADE4ADF9F62A /* PBXContainerItemProxy */ = { + 8419CAD0C44843012FB042480337585C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6AE4A3D573DED275B034E20506596C62; - remoteInfo = FirebaseAuth; + remoteGlobalIDString = 69AA1CD97ADEF721EFB8D16AF3E96CDE; + remoteInfo = "Libuv-gRPC"; }; - 8AF6E6F3C369376DAF34C34343D361AF /* PBXContainerItemProxy */ = { + 886BFF850ABCBC5C699BD5E37B918996 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; - remoteInfo = "gRPC-C++"; + remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; + remoteInfo = "gRPC-Core"; }; - 95E077F3A3BC4E41DEC794E88B0C2F02 /* PBXContainerItemProxy */ = { + A1C75CA69FDD7C6A2D1AECCA3B35A0F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 966865C98BAC8BE061CD4125B77B1116 /* PBXContainerItemProxy */ = { + A4B4386EC6152C3A0DBEB92F34DA2A37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; - remoteInfo = "gRPC-C++"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - AB14B1C60DAE69609D343EC6DAA2AF2B /* PBXContainerItemProxy */ = { + AB02DBE4A74540245EAD021DA65D153C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBA2B63E3A5FE83FE89E731664C9269F; - remoteInfo = FirebaseFirestore; + remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; + remoteInfo = "gRPC-C++"; }; - AC2FE4DA0CC69A9254CC8F4F96ED10A3 /* PBXContainerItemProxy */ = { + B87291627484BDB1BC3EC014AFB817A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; - remoteInfo = "gRPC-Core"; + remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; + remoteInfo = "gRPC-C++"; }; - B3F5575CC21B5DB629B22FB8D6460889 /* PBXContainerItemProxy */ = { + BCD6F022DD482FDF14785CC4E1EFD076 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; + remoteInfo = abseil; }; - B68CFC611E2D0BF3A4949F574C69209D /* PBXContainerItemProxy */ = { + BFAFEC30A1B4A83100DC3A100E68AD26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - C3A3A59519BA04F14DAD99D0BE67C7ED /* PBXContainerItemProxy */ = { + C705194CF019320E2F0E6063E84D5711 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + CB6CE81833D14C13B32CFD8EF081F6F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - D237DA5E1A3DD185E867D8E77AC9A702 /* PBXContainerItemProxy */ = { + CC913FBBAE5F5F73F08F9B971D5D111D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - E3DFFBF698ABF473E5394B3B7BD3F04E /* PBXContainerItemProxy */ = { + CCE51FC9149AEB72560BDD3166C29826 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - EB0075A4F5618ACD620551F905B18C2D /* PBXContainerItemProxy */ = { + DB726FDF0923B63BD94D70382CD77819 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; - remoteInfo = "leveldb-library"; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; }; - ECA4E89D4183C03EBC35C423DEE676C7 /* PBXContainerItemProxy */ = { + ECC937480B4DB4ECE3E4C36FE2D4CAA5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; + remoteInfo = "leveldb-library"; }; - F53E4BD49F40F8AAFCFB428173FCA544 /* PBXContainerItemProxy */ = { + F23CFD2D627A8950389F8102AD8F51F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; + remoteInfo = abseil; }; - FF131C57B062D833EFE6FC653111D853 /* PBXContainerItemProxy */ = { + F4D8E55330A39B7E6A8A1D0C72A98B92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ - 0046D73CC2CE733041FAF75A752752CD /* Copy src/core/ext/transport/binder/client Private Headers */ = { + 006C18E6844C25947E7B5C2081C17B96 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/client"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3"; dstSubfolderSpec = 16; files = ( - 67001F5D34B86147385C97F2B8F843E8 /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */, - 37F0527B0FF39B2B15C68F9CEC7C34BC /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */, - C265385103CA77FE476DDA15AD2DEBD2 /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */, - B1473FA61A62365510FCDBD74FC84737 /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */, - 2263E92FDEFAC1F9743CE8C53CD59ABF /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */, - 0D976A78670714C9A160F1E90349A401 /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */, + E8A8C50579CF2CCD1C944DF7F66CD0F8 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, ); - name = "Copy src/core/ext/transport/binder/client Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 00AB53D3437715DEF526E867602DDF33 /* Copy utility Public Headers */ = { + 022BED5EAC449B4C5FDB0B1B776CE814 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/utility"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3"; dstSubfolderSpec = 16; files = ( - 8A17172D8132B2A72D8B73F82DD6D47F /* utility.h in Copy utility Public Headers */, + B7423249F545D5B08837CB70B48DA35E /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, ); - name = "Copy utility Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 01F3642B1B83EF494FED9184AB34ED38 /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = { + 023AFD0FB31F9FE4D39038835CC8AB58 /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/v3"; dstSubfolderSpec = 16; files = ( - 6F47736A5873E0DD6CDB65CBF509E297 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, + 7E1EEB4EF426F5103F166E99CD076EA4 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + BB23302D8B8B4A4E7B04B1B937813D66 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + 495FE0229E1C4185A6818D981D34DB62 /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + 6212D8A325E5184401EA50428901938F /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/xds/type/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0210D9366902A508C4B023F72D2E8D00 /* Copy src/core/lib/promise/detail Private Headers */ = { + 024FDBE17B645F6D82F707D0DE40A5C9 /* Copy crypto/cipher_extra Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/cipher_extra"; dstSubfolderSpec = 16; files = ( - 7C8CDD9924C3BC62EB4EC7385BCE1CE6 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, - C869D7C2B4D709E49E056FE2DAD3B494 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, - 15495E903D4D57C360B8283CEA6AF482 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, - 7AA900A2B734840B1B5781B813187044 /* status.h in Copy src/core/lib/promise/detail Private Headers */, - B5969898FD0422D49F8562C47D04B23F /* switch.h in Copy src/core/lib/promise/detail Private Headers */, + C45CADC7E6181DEA88C026A6F0B129C0 /* internal.h in Copy crypto/cipher_extra Private Headers */, ); - name = "Copy src/core/lib/promise/detail Private Headers"; + name = "Copy crypto/cipher_extra Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 024964611C894C96B424DE4BD794A8BD /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = { + 04E20203D14BD1B5641328958FEFD71F /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/gcp"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3"; dstSubfolderSpec = 16; files = ( - C321FF7477058E5BE8F727220EA11A2B /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - E05707733978B3B469E7F0D1DB21AC29 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - 182917711E966554150ADCE48C99C921 /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + FBBCFE0CBB631E3FB8842B785BE49D22 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 024FDBE17B645F6D82F707D0DE40A5C9 /* Copy crypto/cipher_extra Private Headers */ = { + 058E8B076E1E1796B3EF407BC1652B54 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/cipher_extra"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/core/v3"; dstSubfolderSpec = 16; files = ( - C45CADC7E6181DEA88C026A6F0B129C0 /* internal.h in Copy crypto/cipher_extra Private Headers */, + 8498982B6349B5F77FD913760F187F05 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + FD9903D2EEE581D6BD6CF514DB651534 /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 9327AA3CA25F8153CFA5B99B6433E748 /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 378D2C56DB9A7C1D3D0C1833BA4855E2 /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + FE3A618829CF5A9438811089505452AF /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 1271F611576A80789844A067E436B01F /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, ); - name = "Copy crypto/cipher_extra Private Headers"; + name = "Copy src/core/ext/upb-generated/xds/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 02503A582BAFC101C8E9771273FF4974 /* Copy support Public Headers */ = { + 0738E83640FCA41D0CF93CA4F97DFFBF /* Copy third_party/fiat Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/fiat"; dstSubfolderSpec = 16; files = ( - 22378BCD48B0B4A53A0621ABFEF11420 /* async_stream.h in Copy support Public Headers */, - EC9AD9EA0EB84C0AE2F0D96AAD850E83 /* async_unary_call.h in Copy support Public Headers */, - 46702A48B6D1EFA14909BDA85EDAF5D8 /* byte_buffer.h in Copy support Public Headers */, - 5A3B3916C8DA9500C00B43B000611B0C /* channel_arguments.h in Copy support Public Headers */, - E2783BA20F486D872095EAA880367B8B /* client_callback.h in Copy support Public Headers */, - 36B000F74F10A91834DE85A07E1FBAC3 /* client_interceptor.h in Copy support Public Headers */, - B033B522C1EFE386BDC824F1E03D1D51 /* config.h in Copy support Public Headers */, - 5D64F96839740CB5D450591F0B3049CD /* interceptor.h in Copy support Public Headers */, - BA5C9C7536BFC1A9546EBBA1366E27D7 /* message_allocator.h in Copy support Public Headers */, - 982BEF50638514728330187AC9DE55BB /* method_handler.h in Copy support Public Headers */, - FEA567697DCA178C52EAC90E790AF08C /* proto_buffer_reader.h in Copy support Public Headers */, - AC5D18FFCB6DCF4902F9A945F1EE4124 /* proto_buffer_writer.h in Copy support Public Headers */, - 73F29457928172183DBF7F2B268189B5 /* server_callback.h in Copy support Public Headers */, - 430F802FB07494863D831C39E76C4C34 /* server_interceptor.h in Copy support Public Headers */, - 744717B443BA06808DFCD9BC8EB8B5FD /* slice.h in Copy support Public Headers */, - 5D4FA83E8C215DD14B89BB75182C4945 /* status.h in Copy support Public Headers */, - B8D0D6D2322901B6CC85D7402122E1D2 /* status_code_enum.h in Copy support Public Headers */, - 91A3B6823A277FD7EB7F3C4ED15BD95D /* string_ref.h in Copy support Public Headers */, - 710D107DBF011E7F84016ADA2200E3A3 /* stub_options.h in Copy support Public Headers */, - 298DA9E987EF6D2FBA74A6C77378BF3D /* sync_stream.h in Copy support Public Headers */, - 76DBB268A375777277EEAC3C69B99B80 /* time.h in Copy support Public Headers */, - 87A38D8B91AFD38F138F504978D4F6AB /* validate_service_config.h in Copy support Public Headers */, + 51B39D8474146A6DD42E7A66A86CA183 /* curve25519_32.h in Copy third_party/fiat Private Headers */, + 453A522CF3A29BBE9A0A908CE9DDBC89 /* curve25519_64.h in Copy third_party/fiat Private Headers */, + 650D67F045C415E988E6A666B09CEC7F /* p256_32.h in Copy third_party/fiat Private Headers */, + F69BF2394FCF3C711A34587028516864 /* p256_64.h in Copy third_party/fiat Private Headers */, ); - name = "Copy support Public Headers"; + name = "Copy third_party/fiat Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 03FFEA97F4047BF4C9753BFBEECF75D8 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { + 07E528F9BAE0CD00E78A6784C984108E /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/xds"; dstSubfolderSpec = 16; files = ( - 1038F78D706926CD5491965295E50607 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, + 8715AC4D78A95A82A38471079FE91F25 /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, + 882CE5C972174424A4A2D04AA9331372 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; + name = "Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 042853B584B93C59215A502F5F671DAE /* Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */ = { + 0840A939189420EFFFE1DA363082C1A1 /* Copy src/core/ext/transport/inproc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; dstSubfolderSpec = 16; files = ( - 7F2AD0EBE52351B3132C64B534D9EDE3 /* eds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */, + C60B734272FA9AB5F3ADBCA8661BBF68 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers"; + name = "Copy src/core/ext/transport/inproc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0544D0CA9E39ED69F819DC967451EB71 /* Copy hash Public Headers */ = { + 096725FFF3431918E0C62584240D300F /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/v3"; dstSubfolderSpec = 16; files = ( - F7723623C5DB16EEC2918013FC6977A4 /* hash.h in Copy hash Public Headers */, + 233FF58C6767D5A1180B1A18B5A23CA3 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + 180505A50CAC70C494F565291F8DC853 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + 565A52FA82BD2E68D62A0E39E98EE5DE /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + 641B522D628AD4DD54A266F0FEDB8FCF /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, ); - name = "Copy hash Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 05CA60940EBCB5E792BE21F9147A5DF5 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = { + 09730DF148D934E6A9ADFFB61337C550 /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/http/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/tracing/v3"; dstSubfolderSpec = 16; files = ( - DF4DE43DEE84B506C831F563D764EC26 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, + 101E15E591963A7A14917E0B4AF235EC /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 06BCCDFC910AF521DF0EA61DD7495307 /* Copy src/core/ext/filters/client_idle Private Headers */ = { + 09B999915BAE64BBC69B12CA77BCF472 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_idle"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/route/v3"; dstSubfolderSpec = 16; files = ( - CE38C65216092FBB91A59200F8536B4C /* idle_filter_state.h in Copy src/core/ext/filters/client_idle Private Headers */, + C51E0C38D0B9BDDDFD7A81CCF16969F1 /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, + EFD6E6B35E54045B962A0E5B78D0E867 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, + B0535A378A07F57FA7ECB2E39A46EC4D /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/client_idle Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0738E83640FCA41D0CF93CA4F97DFFBF /* Copy third_party/fiat Private Headers */ = { + 09D13A87442D9CEEEDEDA7AA5F905C1B /* Copy src/core/lib/json Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/fiat"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; dstSubfolderSpec = 16; files = ( - 51B39D8474146A6DD42E7A66A86CA183 /* curve25519_32.h in Copy third_party/fiat Private Headers */, - 453A522CF3A29BBE9A0A908CE9DDBC89 /* curve25519_64.h in Copy third_party/fiat Private Headers */, - 650D67F045C415E988E6A666B09CEC7F /* p256_32.h in Copy third_party/fiat Private Headers */, - F69BF2394FCF3C711A34587028516864 /* p256_64.h in Copy third_party/fiat Private Headers */, + F5774A0E4318DB120E9D6DB8C1C1D0D7 /* json.h in Copy src/core/lib/json Private Headers */, + 158523FE0D198F4222F9212D9DAEF143 /* json_util.h in Copy src/core/lib/json Private Headers */, ); - name = "Copy third_party/fiat Private Headers"; + name = "Copy src/core/lib/json Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0791395CB8E7FA03304C98D36E04E43A /* Copy src/core/ext/filters/http/server Private Headers */ = { + 09FE269E18ADEF9DB211CE0CC88FA6B9 /* Copy crypto/bio Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/bio"; dstSubfolderSpec = 16; files = ( - 9279E885AA5561BAD0032A8E59F55364 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, + 496AB22D61C596349406BD430F91B883 /* internal.h in Copy crypto/bio Private Headers */, ); - name = "Copy src/core/ext/filters/http/server Private Headers"; + name = "Copy crypto/bio Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 07B840527EADC9CA68FE65FF6BEE239D /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = { + 0AB753DD52A4CC0B9B06E962EC32C392 /* Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/data/orca/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/route/v3"; dstSubfolderSpec = 16; files = ( - BE6D33C490E8EED5353B99C452035DDD /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, + 5EA004FE6F8FE851CC34DC0F2136C702 /* rds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, + B19A3122BFE0620A09E9DF2C22B533AE /* srds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 08CCC753077542CA1B3C75376D98F910 /* Copy src/core/ext/filters/fault_injection Private Headers */ = { + 0BE838B407BCA7B6DA254B1AF77C4845 /* Copy src/core/lib/config Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; dstSubfolderSpec = 16; files = ( - 9A71FAC9DBD7223155096DF500E6BE94 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, - AB71CE2F3777F4FE79A58344E5721D50 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, + 1AB1261B47AFFEE810FA62880160FED2 /* core_configuration.h in Copy src/core/lib/config Private Headers */, ); - name = "Copy src/core/ext/filters/fault_injection Private Headers"; + name = "Copy src/core/lib/config Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0944B12A21635548AB9CD2CF558E5C38 /* Copy src/core/lib/security/credentials/composite Private Headers */ = { + 0C2EC0277B67F16FF243C0B9E4C550F6 /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/ssl"; dstSubfolderSpec = 16; files = ( - E3C134A551419105ABF34099617F7C00 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, + 71FE12C75A9EAA6F0AE6C98D607E4B02 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, ); - name = "Copy src/core/lib/security/credentials/composite Private Headers"; + name = "Copy src/core/lib/security/credentials/ssl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 09F7F41E8DA025DDD955690255720995 /* Copy status Public Headers */ = { + 0C50E023AF798C51C7248F97A3AF8F5C /* Copy src/core/lib/resource_quota Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; dstSubfolderSpec = 16; files = ( - A647574A6DC13BF4A8BDC683FD1C2E92 /* status.h in Copy status Public Headers */, - 29C9F860294E9262272D5573EF39B5E3 /* status_payload_printer.h in Copy status Public Headers */, - 6DB4436E3AD5126F576F6F597DDA56B8 /* statusor.h in Copy status Public Headers */, + 969966F847A05575481C5678E391AF8B /* api.h in Copy src/core/lib/resource_quota Private Headers */, + 6734458916F51034B715337249C4D2ED /* arena.h in Copy src/core/lib/resource_quota Private Headers */, + 5B2BC127127CC19BD0B09D31A16304B0 /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, + 84A47F34A3828DACAD6A31E132BCC6D6 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, + 242533DD698416818DC4BCF16F571CC8 /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, + 605A576D16AB9A5DA524D94178C2527D /* trace.h in Copy src/core/lib/resource_quota Private Headers */, ); - name = "Copy status Public Headers"; + name = "Copy src/core/lib/resource_quota Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 09FE269E18ADEF9DB211CE0CC88FA6B9 /* Copy crypto/bio Private Headers */ = { + 0D4445F88E54DE03CA49096205338E64 /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/bio"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/fake"; dstSubfolderSpec = 16; files = ( - 496AB22D61C596349406BD430F91B883 /* internal.h in Copy crypto/bio Private Headers */, + 1D2FA6F045BAC64775FA65DDA83734E2 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, ); - name = "Copy crypto/bio Private Headers"; + name = "Copy src/core/ext/filters/client_channel/resolver/fake Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0A706228ECB234C6127957FD1B73E2C9 /* Copy src/core/lib/security/credentials/composite Private Headers */ = { + 0DEC26470C0E3AA89E1811FA3B447EE4 /* Copy event_engine/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine/internal"; dstSubfolderSpec = 16; files = ( - BB7941B769165103C2360F6402D0BC1F /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, + F43995CC416DC28120FC2DF581CA52D8 /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */, ); - name = "Copy src/core/lib/security/credentials/composite Private Headers"; + name = "Copy event_engine/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0C5DB54FE048A2A5179A70AD30289189 /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = { + 0EA68739D21F3759DB63AE470A86E439 /* Copy crypto/trust_token Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/trust_token"; dstSubfolderSpec = 16; files = ( - 13A48F3DA0F232C2F8568266F28D6341 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - 59FA9908020D6EC76D12FC283E72CB27 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, + 8E590B666E2BCD81AEB499499052A05F /* internal.h in Copy crypto/trust_token Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/google/api Private Headers"; + name = "Copy crypto/trust_token Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0EA68739D21F3759DB63AE470A86E439 /* Copy crypto/trust_token Private Headers */ = { + 0EB6905E7C8A2CDA4A063C9BE0E38D5F /* Copy src/core/lib/channel Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/trust_token"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; dstSubfolderSpec = 16; files = ( - 8E590B666E2BCD81AEB499499052A05F /* internal.h in Copy crypto/trust_token Private Headers */, + FA27354DC0BE74DE07B7B70F858A6987 /* call_tracer.h in Copy src/core/lib/channel Private Headers */, + EF0E43DB3E3AD3DAE4D5B66666D71390 /* channel_args.h in Copy src/core/lib/channel Private Headers */, + CADC27575B13575E2D41F83222E47078 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, + E542357E4203420D6985C36F1999080E /* channel_stack.h in Copy src/core/lib/channel Private Headers */, + 247AA22782B8B3861ACE11C8478B2725 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, + 730D0A0EAC73A182E63DA298F11A689E /* channel_trace.h in Copy src/core/lib/channel Private Headers */, + 077D2D2344F6E0FEE8814B2BF86D786F /* channelz.h in Copy src/core/lib/channel Private Headers */, + 4B2EE2686C91B9AEF9E1A0101A7CB595 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, + 2AC47C408E067B78427A21E2BA942700 /* connected_channel.h in Copy src/core/lib/channel Private Headers */, + 9383EE5C14BACB3E3F6DCCDDE4F6C563 /* context.h in Copy src/core/lib/channel Private Headers */, + 5491C20C7FC93DE3D5DBBA80696CD569 /* handshaker.h in Copy src/core/lib/channel Private Headers */, + 4D10E3AA5980B7DE2F45A06DFCACEB1C /* handshaker_factory.h in Copy src/core/lib/channel Private Headers */, + 2B8D8DE04DFB131600E923BBB90CE9F2 /* handshaker_registry.h in Copy src/core/lib/channel Private Headers */, + 2D93AC08335E9417CF150935F99F12C1 /* status_util.h in Copy src/core/lib/channel Private Headers */, ); - name = "Copy crypto/trust_token Private Headers"; + name = "Copy src/core/lib/channel Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0FD47B42387051C392ABBD143D80F46B /* Copy ssl Private Headers */ = { + 0FA316C1F25FA7D66CE45BC2E8D8AF3E /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/ssl"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/metadata/v3"; dstSubfolderSpec = 16; files = ( - 69395100B12F00A4A7E661EC14752654 /* internal.h in Copy ssl Private Headers */, + CE82A395DE0F479C0F1CBF639E71550C /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, ); - name = "Copy ssl Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1011EBE194F60EFF0A860D531208C051 /* Copy src/core/lib/security/util Private Headers */ = { + 0FD47B42387051C392ABBD143D80F46B /* Copy ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/ssl"; dstSubfolderSpec = 16; files = ( - 15852A726A7053087D18D02B60F04EC4 /* json_util.h in Copy src/core/lib/security/util Private Headers */, + 69395100B12F00A4A7E661EC14752654 /* internal.h in Copy ssl Private Headers */, ); - name = "Copy src/core/lib/security/util Private Headers"; + name = "Copy ssl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 10E1EC7BBF1DBEDEA1B796D04D72D4EB /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = { + 0FE858BA0B30D3A58DAB2DA9F94ED686 /* Copy src/core/ext/filters/rbac Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/metadata/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/rbac"; dstSubfolderSpec = 16; files = ( - B640E0DF410046C28CF7FC95E4F22BBD /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, + EBC40777C2E8C28F31E04BFF25290442 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, + 670A0DB9E31356B32D85BED5BED23835 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers"; + name = "Copy src/core/ext/filters/rbac Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 111375EF2D34AB46C6C48D4AA5CE9484 /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { + 1045E100340E73195E59BBE58D4614AB /* 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 = ( - 67FA83D3AD43BC5BB149BECDF4CFC1E3 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, + C769E113560153C2FA421EA4579A75B3 /* 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; }; - 1179495A182CD1FF4906EAA7EE107EC3 /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = { + 10F5369B1AA8E1530F45D6FA1BEE02E1 /* Copy impl/codegen/security Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/rbac/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen/security"; dstSubfolderSpec = 16; files = ( - B504C4184BD81AD10833065903ACA588 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, + 432D834FB8283459627673E2EB1FEA28 /* auth_context.h in Copy impl/codegen/security Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers"; + name = "Copy impl/codegen/security Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 11D5DFCDE6EA99D4815DC8FDCB827AC4 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = { + 114430F530577759A41E7EAEC4BC7134 /* Copy src/core/lib/security/credentials/alts Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/trace/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; dstSubfolderSpec = 16; files = ( - 4E294F2124B170F5670B28FF6DECC371 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, + 23A401569762FC284FEA589F92436F38 /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, + 812C4581F6D1C17887D25B2AAB9CC83F /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, + DE3765061ED5F611FF2884DA2C5D858D /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/alts Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1294A613F16F3B3EE7E6E987DB8384C7 /* Copy impl/codegen Public Headers */ = { + 123DFB770ECA8BE8E0A33BBA8695C341 /* Copy src/core/lib/security/security_connector/local Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/local"; dstSubfolderSpec = 16; files = ( - A668DA1699B67B48D0680C45DF75DFAC /* async_generic_service.h in Copy impl/codegen Public Headers */, - 3C700E51BD9999B74C17DD8F72A9B88D /* async_stream.h in Copy impl/codegen Public Headers */, - 0B43C5D962E8086DF7403404842E9666 /* async_unary_call.h in Copy impl/codegen Public Headers */, - F4F8D19DA100AC5AF1923A4CAF37F3D1 /* byte_buffer.h in Copy impl/codegen Public Headers */, - CEA6D4D6AABE1FDBC21D27A5BC86916F /* call.h in Copy impl/codegen Public Headers */, - 785173B473108B16693273A56ECD679C /* call_hook.h in Copy impl/codegen Public Headers */, - 932A8682598C9A41F778EBCBC6D832CC /* call_op_set.h in Copy impl/codegen Public Headers */, - 1D4C826BC387230CC53B89CDA875DCBD /* call_op_set_interface.h in Copy impl/codegen Public Headers */, - 2D07132630155F415A5CFFBDC47785CF /* callback_common.h in Copy impl/codegen Public Headers */, - 77E031B1549B39B8B399CA4B7C70CCD1 /* channel_interface.h in Copy impl/codegen Public Headers */, - DCFAD37A09EA0A12BE344542FC15CF28 /* client_callback.h in Copy impl/codegen Public Headers */, - B15E636DD34B1BF9B853E4FA22BC8BF5 /* client_context.h in Copy impl/codegen Public Headers */, - FB7FCCAE171A9B6B5759E7E78D14E76F /* client_interceptor.h in Copy impl/codegen Public Headers */, - 2A8932B7D585484DC305892C4D65065F /* client_unary_call.h in Copy impl/codegen Public Headers */, - 57FD1D64E580E05C3F194724429B2C45 /* completion_queue.h in Copy impl/codegen Public Headers */, - 68FC54467EB8C017235BBBCB0998B86C /* completion_queue_tag.h in Copy impl/codegen Public Headers */, - 96A058DD11A45AEFE68EDE05FD9108C6 /* config.h in Copy impl/codegen Public Headers */, - 742099E2C39F2D4C0CA9D08693A32DB7 /* core_codegen.h in Copy impl/codegen Public Headers */, - 3FFDBD506DCEBA6D37B4A7AD9904596D /* core_codegen_interface.h in Copy impl/codegen Public Headers */, - 3F6E06B55C45A8278C5AB7203CC1CDBB /* create_auth_context.h in Copy impl/codegen Public Headers */, - 8E29A903F3FC5D0D3626FDF37D50DA85 /* delegating_channel.h in Copy impl/codegen Public Headers */, - 47A8C235F04DCEEAF91D90EAEA4E192D /* grpc_library.h in Copy impl/codegen Public Headers */, - D4A4157F2C568BC79A3C05167C0D17CC /* intercepted_channel.h in Copy impl/codegen Public Headers */, - 02C1DDCC89B6BBEB39B075A538B4B3F1 /* interceptor.h in Copy impl/codegen Public Headers */, - FB124F984FC67B77FE67E811AB11C324 /* interceptor_common.h in Copy impl/codegen Public Headers */, - 12A37513CACCA0902895C3935FD427CE /* message_allocator.h in Copy impl/codegen Public Headers */, - 1CA18272D76CF5F10679E7138DC53A5B /* metadata_map.h in Copy impl/codegen Public Headers */, - 1ACA6207D4EB6C5EEE0BE827B15BEBD9 /* method_handler.h in Copy impl/codegen Public Headers */, - 00CCD8E464CB6DF25EC835C4FC140B53 /* method_handler_impl.h in Copy impl/codegen Public Headers */, - C8212086127ED980FCD12BBA88EE8259 /* rpc_method.h in Copy impl/codegen Public Headers */, - 8AA5D09250B2F467DCD0C9D891821D5D /* rpc_service_method.h in Copy impl/codegen Public Headers */, - 3ED8FD7F6500FA769DE38BBE1515C476 /* serialization_traits.h in Copy impl/codegen Public Headers */, - E54F2A3E52CE685AB55C24C06B4396B4 /* server_callback.h in Copy impl/codegen Public Headers */, - 69DB5E5A9417C694D8889098EB131E6F /* server_callback_handlers.h in Copy impl/codegen Public Headers */, - 4C1FB105A695DCBD3DC0E99520949B97 /* server_context.h in Copy impl/codegen Public Headers */, - F842805FAE8DB2C72D3131A8937A95F6 /* server_interceptor.h in Copy impl/codegen Public Headers */, - 34AA520D7BD6C5E217D46D28D49008F2 /* server_interface.h in Copy impl/codegen Public Headers */, - C0E78EB9ACFFCAC00B56A95E62A4FB15 /* service_type.h in Copy impl/codegen Public Headers */, - 9698E201EEAC6D1A8DD829B27392BE05 /* slice.h in Copy impl/codegen Public Headers */, - 975297BE9FD8A573A447A96A0A66BBAB /* status.h in Copy impl/codegen Public Headers */, - CA19944183B05E2337DB851DF783F86B /* status_code_enum.h in Copy impl/codegen Public Headers */, - 3988A6F7BB74E06AC79D4C6BB17350F5 /* string_ref.h in Copy impl/codegen Public Headers */, - 79BF189CE1289A9FC7FF777CDA03D7B7 /* stub_options.h in Copy impl/codegen Public Headers */, - CE822F830CB1C92539268BB0671634F2 /* sync.h in Copy impl/codegen Public Headers */, - F8DF00ADE5CAA319A2645A497878DBC3 /* sync_stream.h in Copy impl/codegen Public Headers */, - AD29D09D47BC3F890517184E24C68256 /* time.h in Copy impl/codegen Public Headers */, + 755FF189F8AFBF6AACF224336703110C /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, ); - name = "Copy impl/codegen Public Headers"; + name = "Copy src/core/lib/security/security_connector/local Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 13DEBF358131D3040BF1041DFD704EDC /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { + 12A54B6CD3B518D3044B65F3A211F32B /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/server"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/core/v3"; dstSubfolderSpec = 16; files = ( - EE4797C18929789EFA8456A69B19AFC2 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, + 1088DB9A2758C4C583AA5FF5E6FB916C /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 3AF1E35113563D186235685C9CF06275 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + B896F3752496A748F53579B98AA074D7 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 68C9505448AC3C1D5AE5E373159C5466 /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 15C15C1EE961A41B93058C752E4D0D19 /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + FCE78A12EBF1596BE1235351319FB979 /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 280C902BA97C8C7C1502F81CB301383F /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + FFD56310F1BECBEA70D3E4636486FEA3 /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + E60CC44384429739B12B352A405C7AD2 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + AC6BE19459017AB63761478F08B89EE1 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 2DD1A4827A6BCF24C53744F9E5FC4B69 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 1A06A0F7FD64D983FCF1175922BB8197 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + CF444B762B4AB565852BBD8AA2B48A97 /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + A3DF475C8558E0A8FCF3ADA375FBB72F /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + FB1F2232BBA040332CDF66208343474D /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/server Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 142E41C591C6D00D6819871D09C3CF2B /* Copy synchronization Public Headers */ = { + 13FA5BABCC48DDF0566930B6CEF20CE2 /* Copy hash Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash"; dstSubfolderSpec = 16; files = ( - 4B474BCE09A8953CCD936115567E7757 /* barrier.h in Copy synchronization Public Headers */, - D271EC169459AC451A50E2388667A71F /* blocking_counter.h in Copy synchronization Public Headers */, - 9FCC401C766D213591E5815FD298397F /* mutex.h in Copy synchronization Public Headers */, - 098E07F8CC4203C042330BBF127348E3 /* notification.h in Copy synchronization Public Headers */, + 63748FF8A2D980DCC6F55CBE3E5A10EF /* hash.h in Copy hash Public Headers */, ); - name = "Copy synchronization Public Headers"; + name = "Copy hash Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 14751B5ABFE28BC952A43E9E8988AD06 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { + 1418EC806B40EA4A2BF167AAB2D966D1 /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/alts"; dstSubfolderSpec = 16; files = ( - 89C379E9D59794E268A826D36B60A3DA /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, + F96EA21230FAD4A9637B814C276D1117 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers"; + name = "Copy src/core/lib/security/security_connector/alts Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 14C2501B3857E1B3C5A97441C6DF8229 /* Copy src/core/lib/promise/detail Private Headers */ = { + 1466F9246238161A5510815064625E71 /* Copy src/core/ext/upbdefs-generated/envoy/service/status/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-generated/envoy/service/status/v3"; dstSubfolderSpec = 16; files = ( - C61A0E75F516A03A2E559E2CD90650D0 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, - 99CC26987DCCE9A2DE3DDA50BEA74194 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, - E5E793C36AD4499621C67AF4B5B17153 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, - 2AAD97CEBCA42522451366E766C71613 /* status.h in Copy src/core/lib/promise/detail Private Headers */, - BFB79F6324591A48BEDF7F2E4AB95E95 /* switch.h in Copy src/core/lib/promise/detail Private Headers */, + B45673364B1641A2DD0385052CE6D0D4 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, ); - name = "Copy src/core/lib/promise/detail Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 14F43F8C7386371C74F0426C05A20EC4 /* Copy src/cpp/server Private Headers */ = { + 15EC5ABC72771189A73967266C097B8A /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/insecure"; dstSubfolderSpec = 16; files = ( - 9AFE394FEC76C1A77AADD54CC860B6DA /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */, - 2F490287F553DCE1577014DEA431BEE8 /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */, - F0B61518D887D01F42C59F5F7854208E /* secure_server_credentials.h in Copy src/cpp/server Private Headers */, - 7AF3B05E62A333057887ED1C8DB10EC6 /* thread_pool_interface.h in Copy src/cpp/server Private Headers */, + FC08FF2E70BFCC171C308EE9B196CD4C /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, ); - name = "Copy src/cpp/server Private Headers"; + name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 15F1A614B778E2108D43852DB16167D8 /* Copy src/core/ext/filters/client_channel/health Private Headers */ = { + 162E0A8C3FEB80ECFC410C74A7E7D59A /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/health"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lookup/v1"; dstSubfolderSpec = 16; files = ( - CAE1850651759AF28F288396C4D26F80 /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */, + 0B4237A50367F6E028880BB0F142FB00 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/health Private Headers"; + name = "Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 183F84CF45DACDB5C16065AF0B05FEA9 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { + 169689D7B11E3B33C20AD067E666F2B6 /* Copy support Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; dstSubfolderSpec = 16; files = ( - 66CCF21034573F52009153D98B820130 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + E915E965A0DB97E7EF53EC94A7A2E3B6 /* async_stream.h in Copy support Public Headers */, + 23A6DCF31935700ED30D2FACD8E76C42 /* async_unary_call.h in Copy support Public Headers */, + 2C06BDD6E62907E34A81176711741174 /* byte_buffer.h in Copy support Public Headers */, + 04F13C271ED1D932D834F7F09D574E41 /* channel_arguments.h in Copy support Public Headers */, + 0BBED6CB902D3EC702BC1D63EC1DFC50 /* client_callback.h in Copy support Public Headers */, + 399B5A337E1DCA17F5293C8169738ACF /* client_interceptor.h in Copy support Public Headers */, + 2BBC037086C8BD1D1E5AB4038DFBDFB2 /* config.h in Copy support Public Headers */, + 139629B3E48DDB28FFD4814D361158DE /* interceptor.h in Copy support Public Headers */, + C474A004D8B0E6CB0B48BDD329E54824 /* message_allocator.h in Copy support Public Headers */, + 24973B89F5C83379C0D8C23E67B1467B /* method_handler.h in Copy support Public Headers */, + 267012F7A3DE89D76926CDB22868E450 /* proto_buffer_reader.h in Copy support Public Headers */, + 644093BCFAB68CA85D7D1CC61FDA05AF /* proto_buffer_writer.h in Copy support Public Headers */, + 09EDEAA95B68ACD174B9FEDDB51B06DE /* server_callback.h in Copy support Public Headers */, + 5CD113FB22E9B06EACFC9BADFA9FE878 /* server_interceptor.h in Copy support Public Headers */, + 6E02A95313686950570DCEB8639BEACD /* slice.h in Copy support Public Headers */, + F58985CBF4697B00493F9184DDDEAE98 /* status.h in Copy support Public Headers */, + 0871BA97EC9C95942C61E82545C52A8B /* status_code_enum.h in Copy support Public Headers */, + 97B639C9C62F93C30288DB74CD57463E /* string_ref.h in Copy support Public Headers */, + EEF22EEDB87AA9A68A2696C0ED70CBD8 /* stub_options.h in Copy support Public Headers */, + AEC5913983A00741F835E3CC353A34F2 /* sync_stream.h in Copy support Public Headers */, + 20026DFD4423EDC2773F1025DB82CB75 /* time.h in Copy support Public Headers */, + 7BEF36569C1769EB7E23A4A81FB5C243 /* validate_service_config.h in Copy support Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; + name = "Copy support Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 18450C727173224D9D83EB0409FE6AD3 /* Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = { + 17FC725AF408BD254497ECF5CAB7F4D7 /* Copy src/core/lib/security/security_connector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/route/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector"; dstSubfolderSpec = 16; files = ( - 874F72EAEB063FABEABAF95D89124AF4 /* rds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, - 0E6645EB83A2A8725BFD5D1A8FF0796F /* srds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, + 4F106E395E65EDC19CCEEDA39FEDF4B5 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, + AA5AC8FA0BC974D82D926B3233598540 /* load_system_roots_linux.h in Copy src/core/lib/security/security_connector Private Headers */, + 21791A50A4FB810AC5EC5DD21E1C3AE8 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, + 0B826FCCEC07556974FE0563384D715B /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, + 43316BB5DE231BA9884AB5A330FCF5C0 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers"; + name = "Copy src/core/lib/security/security_connector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 184FA3AB6CACED59D50BEFA19F48844B /* Copy base/internal Public Headers */ = { + 1862BF99FD2C47D4A2F85D2BBA47914A /* Copy src/core/lib/security/credentials/external Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; dstSubfolderSpec = 16; files = ( - 0E260357FFC92C64B25CBBB91AE98F4C /* atomic_hook.h in Copy base/internal Public Headers */, - F25FEB7BD6936D288CC530E5F2C44811 /* cycleclock.h in Copy base/internal Public Headers */, - CDE07253CC3C6619DA0CD2056B2F2233 /* direct_mmap.h in Copy base/internal Public Headers */, - 93DE580241FE0518DA5C7F19A04F9834 /* dynamic_annotations.h in Copy base/internal Public Headers */, - E8E9E717AEF699FC5CA4D9A3FD9FB295 /* endian.h in Copy base/internal Public Headers */, - F314BF13B07E816EDF8C0947C94ECD6C /* errno_saver.h in Copy base/internal Public Headers */, - 16A16C902B7E3BF0B0A12417E7802A23 /* fast_type_id.h in Copy base/internal Public Headers */, - AA7EE0548237602A8AF3949FEF84EADF /* hide_ptr.h in Copy base/internal Public Headers */, - A046BAB6F590DF9B572C8AE0E7A78DE7 /* identity.h in Copy base/internal Public Headers */, - FAAA3E8BF6F6E08E6A66A7B946C73CB8 /* inline_variable.h in Copy base/internal Public Headers */, - 4D99BB896FFF20C81E5421B3F201086A /* invoke.h in Copy base/internal Public Headers */, - 3842615A81C4BFB45B9F5A390BCBB8B0 /* low_level_alloc.h in Copy base/internal Public Headers */, - AB64C26763AA054E80FF31F9AA4D2526 /* low_level_scheduling.h in Copy base/internal Public Headers */, - B0E001D0DBCC13D3962B7C4DA9FC6ACA /* per_thread_tls.h in Copy base/internal Public Headers */, - 9421E3BA65D1E7C3CEC80B731EB2AFB0 /* pretty_function.h in Copy base/internal Public Headers */, - AEF55FE1AB3E32EBA0EF99A6BAECAC1C /* raw_logging.h in Copy base/internal Public Headers */, - D2C6DB5CA31D3FF92707798C5955A0C5 /* scheduling_mode.h in Copy base/internal Public Headers */, - 0D1EE56817D9E4CA4391C8630A0A1379 /* spinlock.h in Copy base/internal Public Headers */, - 091E21B54966DF2B2E038A2CF505F7FB /* spinlock_akaros.inc in Copy base/internal Public Headers */, - 3614D72121B6C76988011BC2222AED74 /* spinlock_linux.inc in Copy base/internal Public Headers */, - 02F6C0079CC1DB2094B4D5540DA0251B /* spinlock_posix.inc in Copy base/internal Public Headers */, - DCD804425E9A148D30A30F71695F7E96 /* spinlock_wait.h in Copy base/internal Public Headers */, - 3953096E003B4D7D294F03933A657962 /* spinlock_win32.inc in Copy base/internal Public Headers */, - 4E657885A2DC63EDDBF05E635C22B029 /* strerror.h in Copy base/internal Public Headers */, - 64FD5FB12E2970F405C3EF3DADE5C6A1 /* sysinfo.h in Copy base/internal Public Headers */, - CDB761F9D7CD92B8AA91DC894291A9C7 /* thread_annotations.h in Copy base/internal Public Headers */, - 25CACF2008B191A6EB4C23BF8DFC3676 /* thread_identity.h in Copy base/internal Public Headers */, - E13CF5174E847F2FCC17F4D0BBD6B7E3 /* throw_delegate.h in Copy base/internal Public Headers */, - 11D93C5F5ECB3F62D3CC8D8225936DFF /* tsan_mutex_interface.h in Copy base/internal Public Headers */, - 62142D1A10C5BC2E3D877E93E32AA848 /* unaligned_access.h in Copy base/internal Public Headers */, - E2F28411F1FD15AC928BB94EAF52A101 /* unscaledcycleclock.h in Copy base/internal Public Headers */, + 5DD2E77AF0DBBAC47807FD6CB56ADE06 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + 24D259780FC66B4C4BB75B8D7F50A08D /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, + 25D8C6C47B58F2FE63C039D70DE96FBE /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + D7DB259B4F53E3A83A7683C6CB602695 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + E4C1166AA3F9123A97D839125D0C7F1C /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, ); - name = "Copy base/internal Public Headers"; + name = "Copy src/core/lib/security/credentials/external Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 1877EB95A35D090DF1BD4AFE41204D3E /* Copy crypto/chacha Private Headers */ = { @@ -6670,2230 +6681,2238 @@ name = "Copy crypto/chacha Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 198C71472690565BC4B1CA867F2E022F /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = { + 18BFA978615F7EB25900EA6D7AF92AF0 /* Copy base Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/status/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base"; dstSubfolderSpec = 16; files = ( - B462DEEACA8001C6E4F6A57480BBA967 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, + E4FBB828B318D07D1B8D9C3F3327B11D /* attributes.h in Copy base Public Headers */, + 5895D5917375D2F55265562815012678 /* call_once.h in Copy base Public Headers */, + 6AEC82A16D8FD875B19D6125C13938E4 /* casts.h in Copy base Public Headers */, + 457DFCD62305327524FD341B64C6E680 /* config.h in Copy base Public Headers */, + D5CE28BD64F4801E474E8EDED92B5BB8 /* const_init.h in Copy base Public Headers */, + E36EB6FB5A8DB9BF659E0D16EE180A5C /* dynamic_annotations.h in Copy base Public Headers */, + 565C9557C45E555F49526354BE2C3AA2 /* log_severity.h in Copy base Public Headers */, + E6A0F52FC003AF31D4174E223CBC5B5D /* macros.h in Copy base Public Headers */, + 0866ED917EBD5A008647844CCC6EDEBC /* optimization.h in Copy base Public Headers */, + 019087DEE4AFF492164DB113B8CB2BA5 /* options.h in Copy base Public Headers */, + 042922002F4114D8A0A1900C3DF41997 /* policy_checks.h in Copy base Public Headers */, + 8A518A77D4498F342C580285EA9D1F63 /* port.h in Copy base Public Headers */, + F0A2989B10E049192032C327D51B3CAE /* thread_annotations.h in Copy base Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers"; + name = "Copy base Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 19EB2608B9D4A46265D5D653320B99DC /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = { + 191D39DEA2307452663E4A2D1FD51D2D /* Copy functional Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional"; dstSubfolderSpec = 16; files = ( - 4BCA2E9FF2F7545871A39FF4C581CF32 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - C385927543F9556F05100582AFB9202B /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 36B6A5EB6D42A40CF5CA0B3065EC5055 /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 2CF249DA6A2DC11FDF51898652A83A8D /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + DE39D85AE3CA808507E69C20043CD876 /* bind_front.h in Copy functional Public Headers */, + EC7C54E178D69892D34DEFCFFFBD6A03 /* function_ref.h in Copy functional Public Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers"; + name = "Copy functional Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1C002D1B78276E573426B7F166D9E1AC /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { + 199544F010FA039199F0D532EF8C9B63 /* Copy ext Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/ext"; dstSubfolderSpec = 16; files = ( - 569D343B3E8EC2D74A45BCBA1C47D4DC /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 80055716AE2BE8371D1E342AE6233CB7 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 8E9774FDB268D96FF5ED95DA932B7FD2 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 2F74A2CA7080118A65F68630C29D6FCF /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 635E84035FD82E27D3A1188B9E0B22DA /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 716812314D795C8637BD998113B694B9 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + B761FC70E80FA246C270C2BB1000E5F6 /* health_check_service_server_builder_option.h in Copy ext Public Headers */, ); - name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; + name = "Copy ext Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1D209F11F802B7D7DE105EFF3B630001 /* Copy src/core/ext/transport/inproc Private Headers */ = { + 19B05D20BBA262E48E8450D26F95863F /* Copy third_party/re2/util Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/util"; dstSubfolderSpec = 16; files = ( - B75D705C7F4CC879C85A117362FEE3EB /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, + C475DA534D95DC62A45D589A6A2926FC /* benchmark.h in Copy third_party/re2/util Private Headers */, + 2A5917D2400253584FBA1BE066C83DDE /* flags.h in Copy third_party/re2/util Private Headers */, + 4B6062D915EB94C878C11EAD4AB0CBBC /* logging.h in Copy third_party/re2/util Private Headers */, + 8F46B32230F86A027B24E9D402E0D584 /* malloc_counter.h in Copy third_party/re2/util Private Headers */, + 736F4367EE920240A64A5159BA38F412 /* mix.h in Copy third_party/re2/util Private Headers */, + 387B34C593CD667E89357B3375375230 /* mutex.h in Copy third_party/re2/util Private Headers */, + 098948EF810747DC5FBEAD6C31DBC01C /* pcre.h in Copy third_party/re2/util Private Headers */, + C51739E3C918999BDA5715787EC9359C /* strutil.h in Copy third_party/re2/util Private Headers */, + 3E36A4CBF9703A1C543FEEFDD05BB927 /* test.h in Copy third_party/re2/util Private Headers */, + 7C6EE8EA8B70DAB756E01746269300AD /* utf.h in Copy third_party/re2/util Private Headers */, + F80AEA4EB35325C5D48192FC61921923 /* util.h in Copy third_party/re2/util Private Headers */, ); - name = "Copy src/core/ext/transport/inproc Private Headers"; + name = "Copy third_party/re2/util Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1E76C800298E714981C2A2C05A139DBB /* Copy crypto/fipsmodule/tls Private Headers */ = { + 19D90A4A3B5A2DF2FFA059B95FCC5CA9 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/tls"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/core/v3"; dstSubfolderSpec = 16; files = ( - 36C1B5A328A4A2183CEACE5BF9DE3D06 /* internal.h in Copy crypto/fipsmodule/tls Private Headers */, + B4EA714B07B8DD3981DEDC8A4840C938 /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + E5432B08AA69EE37E9E7140642467511 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 20F969A60E1C0DECFDDED62C2FB3D1D4 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 4A051C035C9F5FC2663F733AC726A85E /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + DDD22C8AA948A0AC26C528890A34BF11 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + A8F3EB1AC7FFB23EF2BE3B6D373EB368 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + EFD19A64E91D5FBC4586A0EF779A9553 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 781F7B6B69787917F89869A8A8426847 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + C873BDEF8E725BE7BA1244281BEB897B /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 30CAA0F6FD117E80439F6941D7BEE147 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 52BA3424F82D2A0BFFBE43CECAB383D6 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + C987602279DEBB0409581C77088330CE /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 600BDFBEB08CF329D0B44D5E3F788C63 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 9ADC0A004F6FD5715441FF6BA1FF3744 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 4F3EBCC0DCE59FE500089532AAD3D370 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, ); - name = "Copy crypto/fipsmodule/tls Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1EBEDA8935375520D3C88AE76890E20B /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = { + 1C09930DB22FAE5A8EE7836FFD9B7DBD /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/core/v3"; dstSubfolderSpec = 16; files = ( - 8429E4203D054C5F1C41F96A7F5E8C04 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, + C5272CE46396E7DCA47981120D5EFDC8 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + 9E8A8E32B3179EF0864C9A13FBC889F8 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + AA882052975097BCD536DAE8CACB472E /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + BADD33D778BFB37569519E82B53EBC59 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + 87AFE35D7AE6E3AA8036F5F26FF9E220 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + B4614E6A6391B4000BD0454C1E70750F /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1F736D1B51E39698E34287724D681B11 /* Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */ = { + 1C7DD5E8EF30DC018927239BFAF20E5F /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/endpoint/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/udpa/annotations"; dstSubfolderSpec = 16; files = ( - A5239FBB67F1A6621BE1DB7D6979815D /* eds.upb.h in Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */, + 3DA7298AC11EDAFAFAC7805672BC8C25 /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + E29FF511D3722AB790610FB62513162B /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + AB0294561613A917683F5839EAA8E7D6 /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + C8AD310BE6C77BFE5FB099DF6DA7446C /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + 6B01C3C28D5FB2783B5F88C8021AFC8A /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/udpa/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1F90AF98AF45682122EDEC624A28C0C0 /* Copy src/core/ext/filters/rbac Private Headers */ = { + 1DD253F56A7FA8E11379B125EA504166 /* Copy src/core/ext/upbdefs-generated/google/api 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-generated/google/api"; dstSubfolderSpec = 16; files = ( - 9418067FDBA9BA34EC983509985FE2C1 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, - 43DB686AFA70DD418428BDEC4EDC315D /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, + C4AAA66C76F7FC5D77251F66CA92DDD0 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, + 8AFF20BDAA84FBF9CEE1FC070FCAC2AC /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, ); - name = "Copy src/core/ext/filters/rbac Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/google/api Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1FC7893A7B3BA47952C7B5057C6E11DA /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = { + 1DF3ABCC5E6CB285E0FF8AA8FAF11ECF /* Copy src/core/lib/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; dstSubfolderSpec = 16; files = ( - E03AC9D0C384ECF3AC29F130C036B57C /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, + FD20056B3203B4E7767E24A23E0632CC /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, + EC46155ACCB7442FA44E29E89F0289AE /* byte_stream.h in Copy src/core/lib/transport Private Headers */, + 36A51BBDAF74E824E4F67AE0E571E235 /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, + 6BD3DD3067E3B3A0895A133152101919 /* error_utils.h in Copy src/core/lib/transport Private Headers */, + B270B26DA3DDBA69CFAEEEAC469987C6 /* http2_errors.h in Copy src/core/lib/transport Private Headers */, + D6E1B8B28F23CA71B2FEB4C1C652ACFC /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, + 94994DC5D8FE6C62FB6A8C456C76F79F /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, + 379545B032E175D65C249F4C1152D8A2 /* pid_controller.h in Copy src/core/lib/transport Private Headers */, + BE18A5B53F2451E33002A9825C57750A /* status_conversion.h in Copy src/core/lib/transport Private Headers */, + 0FCE1A167EB2C86FC0E257F1231789F2 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, + A6B7D0FFCF05D5EEF6B90D1B37C0D322 /* transport.h in Copy src/core/lib/transport Private Headers */, + 621A03901CFE8B84EEC73BF231852BBD /* transport_impl.h in Copy src/core/lib/transport Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers"; + name = "Copy src/core/lib/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 20887C69A3CA293C1281D75B67FEE407 /* Copy unix Public Headers */ = { + 1E76C800298E714981C2A2C05A139DBB /* Copy crypto/fipsmodule/tls Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/unix"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/tls"; dstSubfolderSpec = 16; files = ( - CE4BB628367E396FB49C7801056747FC /* atomic-ops.h in Copy unix Public Headers */, - DCAFF94D1D7AE1BCBABEF5BB1521EF92 /* internal.h in Copy unix Public Headers */, - FD20B0C7F814A33929A5674850575421 /* spinlock.h in Copy unix Public Headers */, + 36C1B5A328A4A2183CEACE5BF9DE3D06 /* internal.h in Copy crypto/fipsmodule/tls Private Headers */, ); - name = "Copy unix Public Headers"; + name = "Copy crypto/fipsmodule/tls Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 210856522E2CECCAD55CD564A94329DD /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = { + 1F126D5BFD7D3DDBBBA8731DBBA93D23 /* Copy src/core/lib/address_utils Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; dstSubfolderSpec = 16; files = ( - 1F85F53D04390A3F94023075DD174F2A /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - 7D9F3A9355E6E8D0FDCFB2C81B019D9D /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, + 4F6876485BF556184F5715C28B4FBEC7 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, + 24BDC64AF3EF6512285CE18E77C97722 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/google/api Private Headers"; + name = "Copy src/core/lib/address_utils Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2155870B75D2EE4DB833B873A8033828 /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = { + 1F32341A1161891515D5782D55CDE814 /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api/expr/v1alpha1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; dstSubfolderSpec = 16; files = ( - AB7299DCB5D7CFAC2C7BDDB01AC08210 /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 1ECD97D4C156D0CC9E9303DA04837D46 /* eval.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - DAE03B68E7E623F69370C61DAE710AB2 /* explain.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 45217357ED1645EE34121619A1577AE0 /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - CA5AD4E8F3C7DA35221BA34B05B9F49C /* value.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + F78AFCF1F4605083DCD667D3F90F784D /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, ); - name = "Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers"; + name = "Copy src/core/lib/security/credentials/google_default Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 21AF5AA70D72D51B87C942EB333E0740 /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = { + 1FCA80CFDA153252E405DF9FD9071CFD /* Copy src/cpp/common Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/overload/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/common"; dstSubfolderSpec = 16; files = ( - 02C12F6BE9606FA735F2BF600FB6AD71 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, + 710616B9EE47F9D7A5A702A1022AC5BA /* channel_filter.h in Copy src/cpp/common Private Headers */, + 96CE35ADAAF3B89F5E60092A3A90167B /* secure_auth_context.h in Copy src/cpp/common Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers"; + name = "Copy src/cpp/common Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 22DFC0251DF8CFD1D75531E9DC757394 /* Copy src/core/lib/address_utils Private Headers */ = { + 20108B6DFB47A6605F576340300B720E /* Copy src/core/ext/upb-generated/udpa/annotations 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-generated/udpa/annotations"; dstSubfolderSpec = 16; files = ( - C414AB0FFC10830C563B1B9B6CE0A7CC /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, - 56C2EE490895E8D08D306C79A94C2F60 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, + 8D2B5C637E898877B48411FC64E87E14 /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + D3056DD11E6B19C9AAB44C7FADC0C7BE /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + FCA49D42ABF1EB3AABF0117129582618 /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + B15404842197DA76D46B220C4F2DC3DD /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + BB4EEA7C9CBD5FC971621A7803A5A8C1 /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, ); - name = "Copy src/core/lib/address_utils Private Headers"; + name = "Copy src/core/ext/upb-generated/udpa/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2352D1CC48530FCE578B806EE11A2549 /* Copy src/core/ext/filters/client_channel Private Headers */ = { + 20E6E9246F3A70F5F87E8F340FCA8876 /* Copy src/core/ext/filters/http/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; dstSubfolderSpec = 16; files = ( - B7E95FFCDCC49FB4BA037C9622200DB9 /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */, - 6253FE3B48D00CB01A68864770B9415A /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */, - 1ED146D9807208607437B42F55837CCE /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */, - 62CA63D5BC42479E556409F37CCBF3CD /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */, - E6B4AB02B263EA2809E313C87C78E0AE /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, - 473B15FE4E093E91D46E841481F9160B /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */, - 6423DB8CAA905534D4FFEEC3812F2B23 /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */, - 254DE8DA21B5707C75E1638980EC913E /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */, - 2429C2967F88062C423C742B521003A0 /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, - 1803501F21FC02F09230C1C2C3EFB06C /* http_connect_handshaker.h in Copy src/core/ext/filters/client_channel Private Headers */, - 7DDF0079DF368A492BFB71DC23C385F1 /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */, - C455A565762A1CDA2C9B848B2534FEB4 /* lb_policy.h in Copy src/core/ext/filters/client_channel Private Headers */, - 05885FC7F49CD7AA4D770EC9BB19C994 /* lb_policy_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, - 2ECEE91F0841433348DA30122A59DC0E /* lb_policy_registry.h in Copy src/core/ext/filters/client_channel Private Headers */, - 16D6D8257FCB279D08AC611BE9A5E8B8 /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, - 38823D751723C05F2434247FC5EF2742 /* proxy_mapper.h in Copy src/core/ext/filters/client_channel Private Headers */, - E9443B712B258D804360C43167DB9D3B /* proxy_mapper_registry.h in Copy src/core/ext/filters/client_channel Private Headers */, - C8E72493602E8C9D2BEEF96DD98FE95D /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */, - 368856C3CBFA44E471C0D699EE285218 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */, - A78EE0546ED51F140FEA4E8EB56E8D1B /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */, - 00BAF681F541DBF93EB784DFF64FDAFB /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */, - 668317B9E73EF2472B5DB3D6C79D2848 /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */, - 69A68B6BEEB626662BA4655B0BC39853 /* subchannel_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, - D510F02C086C2641D963DD785A82DB16 /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, + FE63A974B93970161BB07F8A3A74138E /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel Private Headers"; + name = "Copy src/core/ext/filters/http/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2452B2F5DFBCB1BABD4B666D043BF09B /* Copy third_party/re2/util Private Headers */ = { + 20FE3C3087D64EF07E449F11245B113F /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/util"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/metadata/v3"; dstSubfolderSpec = 16; files = ( - C42461933FC6F227A5A1495D5A39CB15 /* benchmark.h in Copy third_party/re2/util Private Headers */, - D8D045ACCABB6C0E083CD7555B5AC3AC /* flags.h in Copy third_party/re2/util Private Headers */, - F130875FF48A24ECD0D11697252C2A70 /* logging.h in Copy third_party/re2/util Private Headers */, - 957EE0ED5373189AA63C72B409FD8416 /* malloc_counter.h in Copy third_party/re2/util Private Headers */, - 2EEFA1B2F2F67535B3C9560E7667C911 /* mix.h in Copy third_party/re2/util Private Headers */, - 1ED813DDEB20A2C8C2297ADE6B7F351B /* mutex.h in Copy third_party/re2/util Private Headers */, - 9E5FE3574D56B34865481C81AABDE887 /* pcre.h in Copy third_party/re2/util Private Headers */, - 6DE2B091B8D2DBAE4A200F39625ABA13 /* strutil.h in Copy third_party/re2/util Private Headers */, - F413EA6964C44D1A9CF983BA929E82B0 /* test.h in Copy third_party/re2/util Private Headers */, - 8C1F416685DA625A6C53CB7A1AA91ACD /* utf.h in Copy third_party/re2/util Private Headers */, - AD4698AC4B526F94770B47B9368B08F3 /* util.h in Copy third_party/re2/util Private Headers */, + 8F6B8A1FA78E566F94B30F743DFDACD0 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, ); - name = "Copy third_party/re2/util Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 249E2F31B6D9469C5E42ECD0EAA96A54 /* Copy src/core/lib/security/credentials/tls Private Headers */ = { + 21876D1748D86F224602AE7BC9BFFE64 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/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/upbdefs-generated/envoy/extensions/filters/http/rbac/v3"; dstSubfolderSpec = 16; files = ( - 4F822EE81B26D2250B48F0214217670B /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 72A6FBB70BD7C6DE1651B08752131F8D /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, - FD00D5D533B54912B8A256752A09782A /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, - B61B380E5E5F5CD5A1CEE07B951D4C0C /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 3713330582E68AACAC841E58681AF39D /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, - DFC22F8E4B6AC4BE1BA40FA22DB1B390 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 1D556AFD5E542AA1D082CEED483FC6EE /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/tls Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2542F091447FD12C9B2AF647286363C9 /* Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = { + 218ADDBDAE6E09999256735461D848B5 /* Copy time/internal/cctz/src Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/route/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/src"; dstSubfolderSpec = 16; files = ( - B60F9B206C9DF4A675D70F9F7723CB9A /* rds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, - 2D12206C4229915532CE4137789ADD76 /* srds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, + 211A186A3C8D831A089EA81210E5925B /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */, + CC9596D141D3A5F968585B1F83354200 /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */, + 9F847964A120A53CBCA44DAB3F314C44 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */, + 84C3EB340A8021FF882967EC29715425 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */, + 49FD20742EC89EDD8ED9A4B553128348 /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */, + EB19DAD573225F0943714C093A4F51A3 /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */, + 93C6BD00121B4717A2CFFA7D69DFB8BF /* tzfile.h in Copy time/internal/cctz/src Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers"; + name = "Copy time/internal/cctz/src Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 26059B1DE2D56A889D2D34C55790612C /* Copy src/core/lib/security/util Private Headers */ = { + 2316CC21ADABE0C54F8B5358DEED60E5 /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; dstSubfolderSpec = 16; files = ( - 70C8FB86F1B7EB5B8303FB8A990D31ED /* json_util.h in Copy src/core/lib/security/util Private Headers */, + B212DC6D4D25C00736E6E0D7BB1BAF47 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, ); - name = "Copy src/core/lib/security/util Private Headers"; + name = "Copy src/core/lib/security/credentials/google_default Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 26A540D61B23A65C3D3912A489E25ACE /* Copy src/core/lib/security/transport Private Headers */ = { + 238CC1A577E846EB279D8D18372F435E /* Copy src/core/lib/json Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; dstSubfolderSpec = 16; files = ( - E1B882D66E47B4C977470029E6A49BD7 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, - 953256E8D3F36D4F6F9E77CEF0D19A29 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, - F2E7B26A662CEF25EF5FD0DA21558E65 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, - D3C4808243D786C6577A48D3FF006D0D /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, + 1234C7DDDCB261ADDC0B87C8047C2F81 /* json.h in Copy src/core/lib/json Private Headers */, + EDC0A037FA3E7BCCEB2E43C4D6204C35 /* json_util.h in Copy src/core/lib/json Private Headers */, ); - name = "Copy src/core/lib/security/transport Private Headers"; + name = "Copy src/core/lib/json Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2851A5163F56A7EC0F241E580ED5AB2B /* Copy src/core/lib/iomgr Private Headers */ = { + 23E26386223F7B9B72706174A5D403DC /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/rbac/v3"; dstSubfolderSpec = 16; files = ( - FCFC683C47A6B4A5EA5F2A68D773782A /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, - F587F730C45D2139E0D80EAB361C79CA /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, - 7042631D9FC892C4180359B73FBE1140 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, - 19D5166F283A0D442BE59681B47E8F48 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, - 4388293DA6A0F492A1BBEAE99EB6A917 /* closure.h in Copy src/core/lib/iomgr Private Headers */, - 3AF57FB01B5DBE1DD92D1680CAFA045C /* combiner.h in Copy src/core/lib/iomgr Private Headers */, - C8376AF2B52D6972FA6A05F128E2780B /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, - 314CB8CF7B9C42DDAF0847517286303D /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, - 8C47A023DA5F5BF675E45799A47DE95C /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - 1004DC2454B328FBC8C0A063C173BB7A /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, - 803B3972EA9D739B6A22D038585706E4 /* error.h in Copy src/core/lib/iomgr Private Headers */, - 3549D2CB72FDA49A503CE2C6FE8F4B15 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - 6420E693153583FE9A49D7B9A6E45559 /* error_internal.h in Copy src/core/lib/iomgr Private Headers */, - 7A9A5CAEFEC22BC22E056A74A46193DE /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, - 82841CF969A1118723DE0684C7BE3658 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, - 76B7A487B93A57D8EADDE8ED8EB4B9CA /* ev_epollex_linux.h in Copy src/core/lib/iomgr Private Headers */, - 08A88B578595F7B73050DF40A7FABCE4 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, - F758A1E513D75432EDB2BF79AC01214D /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, - B4F4C34926299A55E65FB76208479666 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, - 5A0060E218B0202639400498380ED0D8 /* executor.h in Copy src/core/lib/iomgr Private Headers */, - A2D7785DD86FCC372ADA0CDF10613CDD /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, - 0F74CFE8E0AA5FAA9D4EB56F19EFB9E9 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, - 6F59A4E46700AC74304DC0C7B39DBD50 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, - 340EC15A3C2820AA56661E8F896121C1 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 357D5F0FA372025F12082290F5BFD072 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, - 0D690D587E2BC6C277B3CB5AF4089389 /* iomgr_custom.h in Copy src/core/lib/iomgr Private Headers */, - 1031BFACD0B24BE28CB16B547821EB45 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, - B74D5B3149CF0E6371763EBA98E3AD80 /* is_epollexclusive_available.h in Copy src/core/lib/iomgr Private Headers */, - DC5F715BBFDC2E85000EA293CB3B2190 /* load_file.h in Copy src/core/lib/iomgr Private Headers */, - D5ADE745983992C794ED5334C5CB4A6E /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, - 3091D71D37CF3576D1ED6CBADD3AC729 /* nameser.h in Copy src/core/lib/iomgr Private Headers */, - 4DE77C90E1BE1DB726161FB1B1BDE3A6 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, - 1592C45486297FF71F62304C17EA401C /* pollset.h in Copy src/core/lib/iomgr Private Headers */, - 2316E1BF174DF5D5FB18288D6E1AE548 /* pollset_custom.h in Copy src/core/lib/iomgr Private Headers */, - E58AF8EBE5B1557AAE938D124BB16C7A /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, - C8679F3D44031397F56E3A937ED484DD /* pollset_set_custom.h in Copy src/core/lib/iomgr Private Headers */, - ADA5EF5F978E4CB027E52461E212DA44 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, - E79A4F782D6827B1B885A1A852F09A97 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, - 2E85EDAA361CF793C20B30D6F51DD4A3 /* port.h in Copy src/core/lib/iomgr Private Headers */, - D73D9E3475D6343562B21FEF66375146 /* python_util.h in Copy src/core/lib/iomgr Private Headers */, - 99E3B370CE7444982BF29302B21348A3 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, - 77A318E27B1C59A4E43E28A7D933D13D /* resolve_address_custom.h in Copy src/core/lib/iomgr Private Headers */, - 7DB4B6658BF0C7DFD8269DCA11D6C50C /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, - 5FDEA6D6A78A21C22064F8025C24FF0C /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, - 62CE42F3130BFFAEBB4FB7C70E5F8995 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, - 269BE54300FAB03C2722F847146E4808 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, - 5766DF23AAEF40E6ECAD8AF7167CDE9F /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, - FD4585C3AC58E0C4ECAB8E9B2239995B /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, - 4D095D3485A0C437590DD7AC2E171B40 /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, - D08E75E9C7E419F78A226349E7E48418 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, - 6BA35414E7C0C2CC56CDF4F271F5DC27 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, - 7DB08627239FCC36BDCD5BD48B2F390B /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, - AC7AE4B77B5F11798E13664DFECBF041 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - 9454C90958F6D142545F146024AFF650 /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, - 3E92C336AB3CEFD1B8BA3BA42C568B2B /* sys_epoll_wrapper.h in Copy src/core/lib/iomgr Private Headers */, - 6377FF455A1E664C1B65D6F55FA8E234 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, - 6C9A002E914D2829711822F69C52957F /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, - C2DEE48A3D891F96629CC5B70FDA72D0 /* tcp_custom.h in Copy src/core/lib/iomgr Private Headers */, - 48F06160CC2F823BE827D2208D212652 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, - 53D2C3CC863A9EE8ED067662F3C9CF50 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, - 6BE5523E0157CE1AA433595D7BAC95C1 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - 9D90DB59FE9E588535F8E15AADB041CB /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 792B5D91C11B9C748185CE67CBF5865D /* time_averaged_stats.h in Copy src/core/lib/iomgr Private Headers */, - FB143E1D7FAB91466652A163C2074914 /* timer.h in Copy src/core/lib/iomgr Private Headers */, - 5770667ACE786EE77C9866992B80AEB0 /* timer_custom.h in Copy src/core/lib/iomgr Private Headers */, - 26FE9D9063762DE0056DDF36BD75F5A0 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, - 46C69B0634B30E137583CA0D0361C37C /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, - 4BE9AE71079EEC057494A9E413A75162 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, - EE6817FCABFB15F096A578FF540CCDE7 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, - A4DD16AFC9E52DD7D2F848B3B88A85BB /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, - C7861AE3F47B298EDEE69E46C7C53010 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, - 6ACB909A3D21BAB8DFE5DA3F12F828BA /* work_serializer.h in Copy src/core/lib/iomgr Private Headers */, + 5116E368B85B4B5901651C2CDA270460 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, ); - name = "Copy src/core/lib/iomgr Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 28EBCCF2F4D8921BB3B5E133185D3976 /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = { + 2523474C4C861D6F0C4487640598724C /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; dstSubfolderSpec = 16; files = ( - 0160151F244D87A5BEC84722B472BEBC /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, + C11DF3172770DEAF5CDF95329BF613FF /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + 994916A7CDEEE98298A1EB422DF90F8D /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + F38DB8723AB7DBE072CC97DA03E9A664 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/jwt Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 290689517D39E167EC1FA40E2FB7BC05 /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = { + 255EABB30907FE2A8E2C39FF9079C90E /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/udpa/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3"; dstSubfolderSpec = 16; files = ( - CF2F6E5BE1BD621BC597F2FF632C0A3E /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 9644D124CAC2ADEAB0A8D626B54EE136 /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - DC772D6087F87E3A260419BF67332DBE /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 635CD065BE3AD12D15B111060D2AB753 /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - DD6E43E4D03883995EB1EF975C03E5EB /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + FF42D99234EF67BF0AD979A2BF2225C4 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + FCC057DD40979C1E80840FFD4C5C2F16 /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 20C18DA00E21D99836AADB1C6F1930ED /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + BB656F0B1E22886E2EDF8DDAE3AA30CD /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/udpa/annotations Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 293FA431445FA3298344C325CC59D748 /* Copy src/core/lib/transport Private Headers */ = { + 258900CD93995078A2A249F119A0C248 /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/health/v1"; dstSubfolderSpec = 16; files = ( - 1EF2C48E64172E7E3EB6C362CA195F77 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, - 3DAB7FCE5439AFFC5AD45D8774E2B2F5 /* byte_stream.h in Copy src/core/lib/transport Private Headers */, - 7D03EBE3892146C715CE1C9BA8AE99BE /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, - C39BB61BBA7DFF3413CEBC8605593F72 /* error_utils.h in Copy src/core/lib/transport Private Headers */, - F7C054735F2581A4526F92DAB1C658AA /* http2_errors.h in Copy src/core/lib/transport Private Headers */, - 142CE90CB93797188D9F4A3C6DB5B1CD /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, - 748DB33DC92756BC6776707F43571FC7 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, - 37F81EEA16C9F69C637ECEC40B287217 /* pid_controller.h in Copy src/core/lib/transport Private Headers */, - C3B5396C023C5BFB9EB5F17F9EA1A3F2 /* status_conversion.h in Copy src/core/lib/transport Private Headers */, - 4234E8ED4B3D2D14DC0D5AEFA3656ECD /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, - 06B9927BD6DB7A46B5307A6CB6B5B1A0 /* transport.h in Copy src/core/lib/transport Private Headers */, - 0BEC9FAB35755B0C7C79A92352DBB982 /* transport_impl.h in Copy src/core/lib/transport Private Headers */, + 3ED735C145F48496776A554EC8544992 /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, ); - name = "Copy src/core/lib/transport Private Headers"; + name = "Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 295B05B87B17A55AA988C8D24F27E011 /* Copy src/core/lib/security/security_connector/local Private Headers */ = { + 25E32506F0BE68B51907D724ACD5EEAC /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/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/upbdefs-generated/envoy/extensions/filters/http/fault/v3"; dstSubfolderSpec = 16; files = ( - 8419B0840837D9F2A25BD66929304695 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, + E4BB5A5D6FD170B71388A584C42603D9 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/local Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2997B21E0D679D134C2B80AC0E98ED77 /* Copy src/core/lib/gprpp Private Headers */ = { + 26FCCD38F6FBB68E7CB61825BAC480BB /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/accesslog/v3"; dstSubfolderSpec = 16; files = ( - C7B3BB0B4E099B2933745AB844F4E31D /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, - 668F93CBA5E58008B07DD9F10AD6B4EC /* bitset.h in Copy src/core/lib/gprpp Private Headers */, - 883B8B62CF1CE9A7189B4250989A7E4D /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, - AB4DB5753C994DD73935322B2CFA54EB /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, - 5A108577553583316A6FE47BA167C836 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, - B1BBFD49A3A0B7F536D8BBF504FCC868 /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, - 4A8B317639EFC483BE85D72BFB2230A3 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - 7B504B6D3F1557FFAC1B4FF453A57A89 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, - CC3F3E0FA31825A57F25E236A0CEA41E /* fork.h in Copy src/core/lib/gprpp Private Headers */, - BD3454C1B11EF2A05C7A3D99B9F52BAD /* global_config.h in Copy src/core/lib/gprpp Private Headers */, - 517451FEBB6B93E1F820144D9BD33ACF /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */, - B90CA9E0D92CE6ED247F0F087733C71C /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */, - 52A33705C1577EB2838A4EF5B1D57B26 /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */, - 32AE4AB6B9B78DD9F6EF407A0C1FF79E /* host_port.h in Copy src/core/lib/gprpp Private Headers */, - 33CF07F1D42D9B50B78C01C9631BA35E /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, - C168BEAC85F0F3D2A190F787C9AA99F6 /* memory.h in Copy src/core/lib/gprpp Private Headers */, - 9C09965AE5D811D1CC5BD9998E47E0B2 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, - DE35EF7F27B44A9896E311C0DA69FAEF /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, - E944F498E82BCF07EF81954C51E18E42 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - E732358801B8F9F973E4C56AE37AA381 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, - EF7595D861B42328236247DEE3E61584 /* stat.h in Copy src/core/lib/gprpp Private Headers */, - 082B9F1D0428B5A43C2CC149D8833653 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, - F367E977D4E4F794A4EED983614B415D /* sync.h in Copy src/core/lib/gprpp Private Headers */, - 2FDAA4880E029DBFFF1D84082DC9CE2D /* table.h in Copy src/core/lib/gprpp Private Headers */, - ABE5EB050FF5C906B0737C252406C5A4 /* thd.h in Copy src/core/lib/gprpp Private Headers */, - 26F4393804F46670D27735D67AF43ADD /* time_util.h in Copy src/core/lib/gprpp Private Headers */, + 31B2A35D0560106DBE1CDF9413FACA52 /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, ); - name = "Copy src/core/lib/gprpp Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 29A7CA7F97B92891CC9089D9B0C532C3 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = { + 2764AC9F47531F0A1F707650B15E2922 /* Copy src/core/ext/filters/client_idle Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/endpoint/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_idle"; dstSubfolderSpec = 16; files = ( - 7A4CE7B3A11F59F2788F09A4C92C3DF8 /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 5E7284B23E1EF889E47F35C734A2ACF6 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - DBC7097E431E6C10553B39DAAF315D1F /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, + 13634F43451C02607AFCDC343DB1A3EB /* idle_filter_state.h in Copy src/core/ext/filters/client_idle Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers"; + name = "Copy src/core/ext/filters/client_idle Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2A8C46A64020222D8A7CDFAC01F357BA /* Copy src/core/lib/security/credentials/alts Private Headers */ = { + 277B00BC99138E6CA5EFC52BEA225BB3 /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/health/v1"; dstSubfolderSpec = 16; files = ( - FAF4FC2A2BE3BB85DA87072D7B1B31CB /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 9CE770A5CE88F539D6C13979F7E1F466 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, - A69C18CDD13CD2C88126910A65D33358 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, + F568C0E11346C813AAFFD35598D4175C /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/alts Private Headers"; + name = "Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2AE9E59E684BADEACFA4DCC92A3E691C /* Copy src/cpp/common Private Headers */ = { + 280AD1D39CA71CC254E70BAA8D5DF211 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/common"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3"; dstSubfolderSpec = 16; files = ( - 18A60DCE11C42CE24045428EF2EF6B9E /* channel_filter.h in Copy src/cpp/common Private Headers */, - 93B5E9E2069365C59C0168FA9B6425B9 /* secure_auth_context.h in Copy src/cpp/common Private Headers */, + 8FBBE79EAAE1DC87CEB7C289660FE444 /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, ); - name = "Copy src/cpp/common Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2BE740634AF9A44D18334566CFEF3093 /* Copy src/core/lib/config Private Headers */ = { + 28B49BDA7AC61725B31A90C6A32172B8 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3"; dstSubfolderSpec = 16; files = ( - 4C086C2E958A3C3BD8222740CD0710D1 /* core_configuration.h in Copy src/core/lib/config Private Headers */, + EF3919B729A155EBB95BE6B18BCAB9BD /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, ); - name = "Copy src/core/lib/config Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2C0F013357CCF7ECCF4AADB91AE49FB4 /* Copy src/core/ext/filters/http/server Private Headers */ = { + 296F8314F13EFAA01EF2081423F3C2D5 /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3"; dstSubfolderSpec = 16; files = ( - FCF733B25BEABDB648DC3FEC7C6BE534 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, + 7813D57A9062059BF74BB2DC166A0803 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/http/server Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2C695E102007DF85CAD024B340324F0B /* Copy third_party/upb/upb Private Headers */ = { + 2980CFA2A94D0117C0652950DF2B6E70 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; dstSubfolderSpec = 16; files = ( - 800CFD1DE65FEA1F71836269463CAC22 /* decode.h in Copy third_party/upb/upb Private Headers */, - 42CC3D74C1C51EA00E7F8022A535D669 /* decode_fast.h in Copy third_party/upb/upb Private Headers */, - E57CB7FA42EAA5E941AAAE394BF01B6C /* decode_internal.h in Copy third_party/upb/upb Private Headers */, - 9048B8503D7CECE3277A5A25714BE920 /* def.h in Copy third_party/upb/upb Private Headers */, - 375C1D91B6AE343A1E7D33B183117739 /* def.hpp in Copy third_party/upb/upb Private Headers */, - 2E21E1261D98665ED4827E4E2168A147 /* encode.h in Copy third_party/upb/upb Private Headers */, - A0EAA80499D72ACDCFDFBE778B2FD85E /* msg.h in Copy third_party/upb/upb Private Headers */, - 9B095A97B807686F9F78BE62DA3CA54B /* msg_internal.h in Copy third_party/upb/upb Private Headers */, - 78C226B9488238F657032F3A42700D83 /* port_def.inc in Copy third_party/upb/upb Private Headers */, - B1DC12B5A3A7F1E25954B28C48843D5D /* port_undef.inc in Copy third_party/upb/upb Private Headers */, - 1D8DF1A2771FEFDECB6D0AC811743B4A /* reflection.h in Copy third_party/upb/upb Private Headers */, - 991F7EE38CC63C02E8B2345C4685F3E3 /* reflection.hpp in Copy third_party/upb/upb Private Headers */, - 13D79345ED0976653D39BCE79D89AE21 /* table_internal.h in Copy third_party/upb/upb Private Headers */, - 521BB7E1BA2EEE9CB0111FDB96B886E4 /* text_encode.h in Copy third_party/upb/upb Private Headers */, - 6E131B5778616DFA8E4A520AEE304B82 /* upb.h in Copy third_party/upb/upb Private Headers */, - A82CCC1ECEF723BAA0D596117FC202AC /* upb.hpp in Copy third_party/upb/upb Private Headers */, - 697591AD6189C6CB683AB7C66966C774 /* upb_internal.h in Copy third_party/upb/upb Private Headers */, + 46B6972881F5DE7306E0BB8A1C3949FD /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + E59214E0C93F01D5157FA7769ED622C7 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + E6209298F7D436B8056C5BB8635F9FAB /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 1371822373293463C69E1B7D8D27FDE8 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 3C79381A5370F4E61BA8B48F5ADA13B2 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + E73B8CEDC1BEC0D6098FCEF02372F3E5 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, ); - name = "Copy third_party/upb/upb Private Headers"; + name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2C910E3F705D8D15320108C602C7765C /* Copy src/core/ext/filters/rbac Private Headers */ = { + 29B35F7CDDF9C88022205A90065DD585 /* Copy src/core/ext/upbdefs-generated/xds/type/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-generated/xds/type/v3"; dstSubfolderSpec = 16; files = ( - FA6D75E61786460ABC8A5EC0321B3181 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, - B36E0AE0D96354A91814D96C9392DB84 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, + B6B69525A34E391899F8B4B96724D748 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/rbac Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2D6184CC5C897B828F5851B2ACC6B1D0 /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = { + 29C9804EF8F7A0190113D70BB1063603 /* Copy src/core/lib/surface Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; dstSubfolderSpec = 16; files = ( - F6DCDE3B3A919D1BD5944789C2A83D18 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, + B5810EDE752137D2C7C8273B6CA20904 /* api_trace.h in Copy src/core/lib/surface Private Headers */, + BE347E09FA72CFBE5DF2DF59B3A8337B /* builtins.h in Copy src/core/lib/surface Private Headers */, + B44D9EF4D43D32527AABCAA4E17D4E08 /* call.h in Copy src/core/lib/surface Private Headers */, + 52827EF77B393C07264350B31CE1D816 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, + 4A60282E530DAF230EB72AC2CA84AEC7 /* channel.h in Copy src/core/lib/surface Private Headers */, + 5B94F59C192858BA71A5C59366ECAAE1 /* channel_init.h in Copy src/core/lib/surface Private Headers */, + 08C0A14137071FAC489723163BD595A4 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, + 9FB54995B8549E636C5893C7897475B1 /* completion_queue.h in Copy src/core/lib/surface Private Headers */, + C2FBADD2AECB84B941D3EAAA1301CABC /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, + 55C5A965F6E9260E93C2FF5E69E85632 /* event_string.h in Copy src/core/lib/surface Private Headers */, + 4D9DAF6A93BFEAC950AEC05E6AC45521 /* init.h in Copy src/core/lib/surface Private Headers */, + 116FD902EF31521015A31261D5AE4EE9 /* lame_client.h in Copy src/core/lib/surface Private Headers */, + 7E5991719C664B494989C60FE79463AA /* server.h in Copy src/core/lib/surface Private Headers */, + C7E212A2EAFE6114D55A0D9AA8A74D97 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/resolver/xds Private Headers"; + name = "Copy src/core/lib/surface Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2F25B6CFFEB185FA835C2E112FF67707 /* Copy src/core/ext/filters/max_age Private Headers */ = { + 2A581F5CB15D5CCFC2193BE6AFE27B13 /* Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/max_age"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 37B65ECC76B123F3E4C751968D4E6B69 /* max_age_filter.h in Copy src/core/ext/filters/max_age Private Headers */, + 4A11DA7980DC50EEB7E18FA9E4245943 /* eds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/max_age Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2F266642838348B3D27FAAD9F8192388 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { + 2B9C5269CCCE72C1C915E432237C62B8 /* Copy src/core/ext/filters/client_idle Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_idle"; dstSubfolderSpec = 16; files = ( - 9AFA0F9B81564378D12CA9FF4EC27B31 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + 548D766B13EDE7D06490B9B4563FA8C0 /* idle_filter_state.h in Copy src/core/ext/filters/client_idle Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; + name = "Copy src/core/ext/filters/client_idle Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3062A88EA5FF0139517AB2C3C791F0AE /* Copy crypto/fipsmodule/cipher Private Headers */ = { + 2BE87689D015F1D6C130E9B2953FC56B /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/cipher"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/accesslog/v3"; dstSubfolderSpec = 16; files = ( - 7FB25F14E090F17FBB1FD9510A0D89A9 /* internal.h in Copy crypto/fipsmodule/cipher Private Headers */, + B57E98895F1A7F8BEA755D260A8F7E57 /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, ); - name = "Copy crypto/fipsmodule/cipher Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 30640622AA3136F62EBA6D4589777081 /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = { + 2C11CFC05D3181B7B38C5C9A0286A628 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/status/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3"; dstSubfolderSpec = 16; files = ( - F7EACDE744D567A1AB5E0091F1667826 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, + 6AA08BEF71E47C39FA32B9447C1065C7 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 30CC2A83628EC386E1D0F3E25A111734 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { + 2C7A35BA1D1C8AFDA00C8C89291E1E62 /* Copy src/core/lib/matchers Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; dstSubfolderSpec = 16; files = ( - 4DCF1C30819197E4D7FEF241C3077D1C /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + E621BA4996F30F038592AAA9D96358EB /* matchers.h in Copy src/core/lib/matchers Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; + name = "Copy src/core/lib/matchers Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 313E4F54750AE6CAF2767B3CF9854F37 /* Copy src/core/lib/iomgr/executor Private Headers */ = { + 2CCA67AC1C3F3DFD7FE0F6EEF7939AF7 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/executor"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3"; dstSubfolderSpec = 16; files = ( - C04FA6A28C555A1202A2B9997F7B8C22 /* mpmcqueue.h in Copy src/core/lib/iomgr/executor Private Headers */, - 50D8E7E19B19029E8AD91949780ADECE /* threadpool.h in Copy src/core/lib/iomgr/executor Private Headers */, + FECD7A1192EC557322DFD890A7F4D65C /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, ); - name = "Copy src/core/lib/iomgr/executor Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 31923AB0D2CDB91477EDBDD902AB281E /* Copy src/core/ext/upb-generated/validate Private Headers */ = { + 2E0970D7CF3DCFD45494C9157FEBE224 /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/validate"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; dstSubfolderSpec = 16; files = ( - 27009679EA9B4F70747891A34DC3FCD4 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */, + 86D9928EBC30A3C51AC0A5606794724E /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, ); - name = "Copy src/core/ext/upb-generated/validate Private Headers"; + name = "Copy src/core/ext/transport/chttp2/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 31D399D3F66299572005600C7652EAE9 /* Copy crypto/bytestring Private Headers */ = { + 2F1A29BD66ACA07EE6EB4C323278ADC2 /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/bytestring"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 394AA4082A2EC3CD7F70C2630980565A /* internal.h in Copy crypto/bytestring Private Headers */, + 0257811EA7CF81CF392380EACA4C092C /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, + CD7707AD8F71A4835418C3C12226F994 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, + 3D5BBA3924F23040B56C726CDCF6F16C /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, ); - name = "Copy crypto/bytestring Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 324FE079BA00584E5B8C20E1755A845A /* Copy crypto/conf Private Headers */ = { + 2FD2227F109B250C8FCCF4090644E9B6 /* Copy src/core/lib/gpr Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/conf"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gpr"; dstSubfolderSpec = 16; files = ( - 5E75A1001E2C53613255C20ACBD8362C /* conf_def.h in Copy crypto/conf Private Headers */, - 22C11A96A7E6AE074B189183BE6236FA /* internal.h in Copy crypto/conf Private Headers */, + 2849C36A73CC248F323CA47112156246 /* alloc.h in Copy src/core/lib/gpr Private Headers */, + 8FACAA00F200F39EECCD0003310EF715 /* env.h in Copy src/core/lib/gpr Private Headers */, + AA8E640D64AAD4F7DDFE05072FAFA02D /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */, + 670DDEEDB4304ECAD07A4AD7054951F9 /* spinlock.h in Copy src/core/lib/gpr Private Headers */, + 3AC42EFD48DBCF593C6BEB57BC87329D /* string.h in Copy src/core/lib/gpr Private Headers */, + 18484F32A8F7B406DC1FC153AB8A0984 /* string_windows.h in Copy src/core/lib/gpr Private Headers */, + F0E0D4145A049F20F5B04EED2CB2EA4F /* time_precise.h in Copy src/core/lib/gpr Private Headers */, + C1C508A0ECCECA7239F7FAE48FEA42EE /* tls.h in Copy src/core/lib/gpr Private Headers */, + A3B50685A4453600F15B276EDECC01C8 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, + 3644AACEFF954D1CAB5967D8F918B277 /* useful.h in Copy src/core/lib/gpr Private Headers */, ); - name = "Copy crypto/conf Private Headers"; + name = "Copy src/core/lib/gpr Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3357C73DF529B475E5CF55448C0193FE /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = { + 305EE96831E0EB8EEF07DF8588310C93 /* Copy status Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/data/orca/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status"; dstSubfolderSpec = 16; files = ( - 873089C55AB2E63E5525A138016A753C /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, + 51A381916635D73D966D28859D01FF31 /* status.h in Copy status Public Headers */, + 538BB36AFA8F61A7587589EADBC8AF7A /* status_payload_printer.h in Copy status Public Headers */, + A659BAA1A925A9E73394F9B5F653BFFC /* statusor.h in Copy status Public Headers */, ); - name = "Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers"; + name = "Copy status Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3453387F08E74B9D334C9BC1158F4D07 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = { + 3062A88EA5FF0139517AB2C3C791F0AE /* Copy crypto/fipsmodule/cipher Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/cipher"; dstSubfolderSpec = 16; files = ( - F3398D9D85AD23EC60EA16D00A2AC749 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 4F040382A6428957D5D1A9496DD58FF4 /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - EC83525C02EE3B9A0F5155501F891D4E /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - F6A627E99CE0263694AED50BA7FFC0DC /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - B894584DBDC5470CBB46500203C1DB36 /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 88C3697F6E44E3490B2C3F1F984F882F /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 7FB25F14E090F17FBB1FD9510A0D89A9 /* internal.h in Copy crypto/fipsmodule/cipher Private Headers */, ); - name = "Copy src/core/ext/upb-generated/xds/core/v3 Private Headers"; + name = "Copy crypto/fipsmodule/cipher Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 355A5EF4069799A89F250E6161C204EA /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = { + 30D8069924646BF1A2FD730242CACF42 /* Copy src/core/lib/avl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/status/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; dstSubfolderSpec = 16; files = ( - 584EF3A085A924D33FE5D03A5D623D01 /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, + B194CD742B47766CB79EB90ADDBB374F /* avl.h in Copy src/core/lib/avl Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers"; + name = "Copy src/core/lib/avl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 36BBF66B7821E6CF1C4C7B66A0F60F09 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = { + 30D8B291F4543AC6038C6AF17A3F6505 /* Copy src/core/ext/transport/inproc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/route/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; dstSubfolderSpec = 16; files = ( - 5E00FD59D9C164E7DEACE2AD27CF426B /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - 6EA172B84A5ECA5F7465CDE847E6914C /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - B40B6AB9FFCFB0EF68F5FB8DBE371BC9 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, + EAF3EAB445692001652465CE355CD190 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers"; + name = "Copy src/core/ext/transport/inproc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 370BF88878795BC33513693F799C2425 /* Copy src/core/lib/json Private Headers */ = { + 31D399D3F66299572005600C7652EAE9 /* Copy crypto/bytestring Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/bytestring"; dstSubfolderSpec = 16; files = ( - A4C1B204A3CB306B4B255D9C5FD689F0 /* json.h in Copy src/core/lib/json Private Headers */, - CEA6E0E17CE48AE09F9A599A4AA705FD /* json_util.h in Copy src/core/lib/json Private Headers */, + 394AA4082A2EC3CD7F70C2630980565A /* internal.h in Copy crypto/bytestring Private Headers */, ); - name = "Copy src/core/lib/json Private Headers"; + name = "Copy crypto/bytestring Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 37B337F671FF0FF29948A9C4EF6F65BC /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { + 324FE079BA00584E5B8C20E1755A845A /* Copy crypto/conf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/alts"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/conf"; dstSubfolderSpec = 16; files = ( - 440D71C88E495CDB027053046CAF4BC9 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, + 5E75A1001E2C53613255C20ACBD8362C /* conf_def.h in Copy crypto/conf Private Headers */, + 22C11A96A7E6AE074B189183BE6236FA /* internal.h in Copy crypto/conf Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/alts Private Headers"; + name = "Copy crypto/conf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 37CAAF478BCA186A3E6DE096DA3D3706 /* Copy types Public Headers */ = { + 3466EB4EE05E66B66EC72B9BF349EA2A /* Copy debugging/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging/internal"; dstSubfolderSpec = 16; files = ( - EE5F0D6A8C8FEF993F5FDCF65888C75B /* any.h in Copy types Public Headers */, - 9A0DC3BBD0585C38AE625896D9DBFFC4 /* bad_any_cast.h in Copy types Public Headers */, - 0D41C91CD1F1479985333078BA857E36 /* bad_optional_access.h in Copy types Public Headers */, - E209DF932DFD57007A2364A70E100F87 /* bad_variant_access.h in Copy types Public Headers */, - 557083C7B5CC0F39765A86B622300A64 /* compare.h in Copy types Public Headers */, - 436826E5EE954774FE11A2241A9CF17B /* optional.h in Copy types Public Headers */, - 1CBDEA5E4221C18AD2B71467011CC336 /* span.h in Copy types Public Headers */, - FCC994633A9D6B4EC0BEECD163E8EF17 /* variant.h in Copy types Public Headers */, + 82CB4822CE50B0E6D50E9787895365E8 /* address_is_readable.h in Copy debugging/internal Public Headers */, + 41CE0FE71043A04AA3F99253E1283A29 /* demangle.h in Copy debugging/internal Public Headers */, + 934CD3CEFE29163660FED7A8936D0625 /* elf_mem_image.h in Copy debugging/internal Public Headers */, + 39BDE214985538E658971BC66AE75AAB /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */, + 81C0FB8DE8EE525F2BBAF809633C16CC /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */, + B7A893D6F711CD147DFB1AC53C9B7900 /* stacktrace_config.h in Copy debugging/internal Public Headers */, + 149D254564CF0361AF21DDF23E2617CB /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */, + E0AA82B430711CDDCC67A195EC332DC2 /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */, + EEC88E2A5489528A206E3CE342795231 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */, + 6FF08E54BB6B8F9AF2744D67F8CEF77A /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */, + 2F3DC32CBB78674B65D4AF2F0D480913 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */, + 07984C21C767AFD3D8D483C3784B5C40 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */, + 47083CD37A0FE15ED6BC28089EEB163A /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */, + 273BECD722F898043B11573224189A70 /* symbolize.h in Copy debugging/internal Public Headers */, + A95C68556DA3D846AC8A190C51A5BAC0 /* vdso_support.h in Copy debugging/internal Public Headers */, ); - name = "Copy types Public Headers"; + name = "Copy debugging/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 389F3065824CB97BC27E328B69AA8234 /* Copy crypto/hrss Private Headers */ = { + 34736FA99A5453DDF4B240B00910CE8E /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/hrss"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/rpc"; dstSubfolderSpec = 16; files = ( - E3530C146370303BD5503799560CA39F /* internal.h in Copy crypto/hrss Private Headers */, + 5FF4B300223AA71D72A45EA7CB8F637D /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, ); - name = "Copy crypto/hrss Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/google/rpc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 38ACE33F9CB21FA89F66D07C5118B704 /* Copy strings Public Headers */ = { + 34B8D126E09A0335177F00D2A564FBA4 /* Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/listener/v3"; dstSubfolderSpec = 16; files = ( - C37B0ED71B735E2783997C0B291F1681 /* ascii.h in Copy strings Public Headers */, - 5F4A124400D883467156D63E88D6AFAB /* charconv.h in Copy strings Public Headers */, - F59DBBB6DCFB90439878AD11EA5AE2A6 /* cord.h in Copy strings Public Headers */, - 43C69A60968AE118F606BA170993367E /* escaping.h in Copy strings Public Headers */, - A56DD7EBD09ABA0DCFAB15C243C142C5 /* match.h in Copy strings Public Headers */, - FB8D263B58D36BD9D632AE39C7F045CD /* numbers.h in Copy strings Public Headers */, - FB8E84851122BA479B964EC0B7DADCB6 /* str_cat.h in Copy strings Public Headers */, - 6BA28C3BA0605CFBD63E6C9E2C19BA8F /* str_format.h in Copy strings Public Headers */, - B725BB756F4A533A969A18BB1362AF5D /* str_join.h in Copy strings Public Headers */, - 527B249E6E77C4F6BE0C82E44C36F15A /* str_replace.h in Copy strings Public Headers */, - 1E7B41A627A42FB51AE554252C17EDCA /* str_split.h in Copy strings Public Headers */, - A8F5B8076A95E6867DE238FE4E2397AD /* string_view.h in Copy strings Public Headers */, - 37D8738F06CAA4D5FA6FB16261FED8B7 /* strip.h in Copy strings Public Headers */, - 37A917DA12FE871D23C12915B6492E10 /* substitute.h in Copy strings Public Headers */, + F4B4F20871DC004BD9948414DD2BDF27 /* lds.upb.h in Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */, ); - name = "Copy strings Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3965E63C8F82A03AA556C8D02EABBBDF /* Copy src/core/lib/resolver Private Headers */ = { + 34D54E1801DCB91D6A2E04DE65640601 /* Copy src/core/ext/filters/fault_injection Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resolver"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; dstSubfolderSpec = 16; files = ( - 42FA722953FB4D5C873A6B6279245CE7 /* resolver.h in Copy src/core/lib/resolver Private Headers */, - 5E1E8A9309D63A50656E565851FE9D59 /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */, - C52E5FFD0E20592B55E29953BDECB728 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */, - 5D166775B3915C99826E9E440476FDED /* server_address.h in Copy src/core/lib/resolver Private Headers */, + DB20202EDC859CA03EC2482B262076F3 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, + D658E4FBF34BB64B0C0D09B5BE221BFD /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, ); - name = "Copy src/core/lib/resolver Private Headers"; + name = "Copy src/core/ext/filters/fault_injection Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 39837E9B638B7536C1CE8A0AF84DD203 /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = { + 354D1942DF181972EB2EFB404835C9A0 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/admin/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/admin/v3"; dstSubfolderSpec = 16; files = ( - AF2FAAAC2C5EDEE73C266C5A602C6269 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, + 12CD1E4B9E00F8537AEC43569122DB94 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3A7246B3E113C1D67DC88B013524F59B /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { + 3593C5641911678AE309E1C6DD86927A /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/xds"; dstSubfolderSpec = 16; files = ( - 72F48901F6C036ECF954093EB8554ADB /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, + 0A2C2075D38435A2107413478EBC02C9 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; + name = "Copy src/core/ext/filters/client_channel/resolver/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3AEB8EFFB2D6B113247F436C5FB69B27 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { + 359A444044E2218033775A32A9EAB5E7 /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/core/v3"; dstSubfolderSpec = 16; files = ( - 0994B7669CB1D452EC77665A77000E61 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + F50DCA7F3FF3262F409452502D097C3D /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + B3847F4C57FB0BFD7443FCA79EC244C9 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + D1114345D86B55A83F701F9A6292C9D0 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 56836D9BCE5677AD77AAC0E434F95BAD /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + B53A52AA6ADFA9CF90E50C2A26480A6E /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + AA4456656E872B2BECAFEA34857906E9 /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + EBAD87CF62C8994D96FEACFF6A6818B9 /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 1D6D9F808470A8BCBECBD098B96A520E /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 8E18B148B8781C55FE02B618E0956A55 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 3073AE496107255644008118D4D78308 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 2F9939E083F0F68F9DBE9610695342C5 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 75950E227BE31919C29A98F73C25D425 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 0EF64277474B54ECB6E5F8C87337500B /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 87CEA0AEE47CE5CEA0D6E26DD2444FCD /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 3BAB0C39074D44D4B584EDFE600D0F94 /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3B7150830F44A53DB459C7742FD6E57D /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = { + 35DCC02C2B68539459F9A823BC2E8533 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/udpa/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3"; dstSubfolderSpec = 16; files = ( - 95ED4D6F8A57C864FE9EA4D4383032B9 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 758CA14031BB743F0473BD9BC5CFD64B /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - CD0FF42C8289CA02371F3A33FE9789A7 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 12F199E651D127087E5B8D74668283EE /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - D5DB86C66151F6DB416E5CC760B7D6C4 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 312F051F190048AE7F45E3627BCAB101 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3BA8DB55B7208E53575D6CAB2D6C8981 /* Copy src/core/lib/gpr Private Headers */ = { + 3645E243B64327753CD17D627A54DE7E /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gpr"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/annotations"; dstSubfolderSpec = 16; files = ( - 8405807ED4E82B15E7A40CED0A5E9A90 /* alloc.h in Copy src/core/lib/gpr Private Headers */, - B0B0D6AE7160F7B6E1B5B7E07EEFBD57 /* env.h in Copy src/core/lib/gpr Private Headers */, - 8E6E09F209E1C156123FB5F6F3506A77 /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */, - 4E592F2F95BE448DC92A78486E4CC5ED /* spinlock.h in Copy src/core/lib/gpr Private Headers */, - 90A6708B421DF3EFA0DC9BF0DFD13F4B /* string.h in Copy src/core/lib/gpr Private Headers */, - 809AFFC884851B74D840BF3B62EFDB4D /* string_windows.h in Copy src/core/lib/gpr Private Headers */, - 2778B56D8760614C1211D47FEA8FD116 /* time_precise.h in Copy src/core/lib/gpr Private Headers */, - CA7993CD8C9B5B59F7A843789356B75F /* tls.h in Copy src/core/lib/gpr Private Headers */, - 036DCC9DB505165E2C4CEA0BECA6F140 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, - 3D545DB9A1C90C953DD0AA49776E2E0A /* useful.h in Copy src/core/lib/gpr Private Headers */, + E92C5EAC99EC9398D5671F9233960A55 /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, + AE24560FB6BFEF4B93D0E823F5D0FE0D /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, ); - name = "Copy src/core/lib/gpr Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3C58618EA51BC6DFA52CBB8CEF717226 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { + 365FB8D4A704A54F68BB8774FD9ADA29 /* Copy src/core/lib/security/credentials/iam Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; dstSubfolderSpec = 16; files = ( - F9A7BBFCE0FF6E3169080BFA78004679 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, + 1700384E7A44AAE857FCFDC0D97DD5F4 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/iam Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3CDC4B95233969F3EC74EBE317A4A371 /* Copy crypto/poly1305 Private Headers */ = { + 372FEA23927D2E3DD43288FAEB2EEE5E /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/poly1305"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/ring_hash"; dstSubfolderSpec = 16; files = ( - EB6B50F1F46C4FF8C63D21DAE993B104 /* internal.h in Copy crypto/poly1305 Private Headers */, + 7C1D60246280769F977752EB5202056A /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, ); - name = "Copy crypto/poly1305 Private Headers"; + name = "Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3DF95AFB7A6F09526EF63B416A8AF66A /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = { + 37BEBEF06FD7FE648EF5142F8B29F841 /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/rpc"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/rbac/v3"; dstSubfolderSpec = 16; files = ( - 654D873B00DE326E619FF7B13F3618C1 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, + ADC6BEC34809CCE50C6EE593C690C777 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/google/rpc Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3E223B9B7F9ADF9ED4B9DCCF911CED23 /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { + 389F3065824CB97BC27E328B69AA8234 /* Copy crypto/hrss Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/insecure"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/hrss"; dstSubfolderSpec = 16; files = ( - 18AA9C87CF7B6C86DC14469375F01C2E /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, + E3530C146370303BD5503799560CA39F /* internal.h in Copy crypto/hrss Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; + name = "Copy crypto/hrss Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 40128FA0586060BFC0D6E1BDD7A17191 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = { + 390244C42C88D1A39A4781EF80632809 /* Copy third_party/xxhash Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/metrics/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; dstSubfolderSpec = 16; files = ( - CF4F78992E1D77DA119B4CDFE39F7B9B /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, + F48C3E85C6B2DF14BB64BBCCFA033605 /* xxhash.h in Copy third_party/xxhash Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers"; + name = "Copy third_party/xxhash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 40C44FF903F2754FBE59404C659185E3 /* Copy impl/codegen Public Headers */ = { + 3A534353011F19B56A95BC13283928E2 /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - 498D38DD62824CEEA022081AE83639E2 /* atm.h in Copy impl/codegen Public Headers */, - 2167DB5720273D06D769F5010F310CE5 /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */, - A2949E482050CF68F9867AA83E3EC504 /* atm_gcc_sync.h in Copy impl/codegen Public Headers */, - A3DE6E0CD981E6C91BE32183D89B0D36 /* atm_windows.h in Copy impl/codegen Public Headers */, - C71A7316F26778AC17CF763AC892BFEB /* byte_buffer.h in Copy impl/codegen Public Headers */, - 42B033900DF2AB35B87BD89CFEE05174 /* byte_buffer_reader.h in Copy impl/codegen Public Headers */, - C1E310867BDF031B82EB5D394FA4DC4E /* compression_types.h in Copy impl/codegen Public Headers */, - 3D01F1AB39AF32D37A9B60584004E073 /* connectivity_state.h in Copy impl/codegen Public Headers */, - 91A6CB6268B031923C90A17E7C58C5C4 /* fork.h in Copy impl/codegen Public Headers */, - B5D8E9E6ED5C9FB6DC0D76C88018DD09 /* gpr_slice.h in Copy impl/codegen Public Headers */, - 0658A1B16A79709084380F28A94B8C2C /* gpr_types.h in Copy impl/codegen Public Headers */, - D1F35AA17603FD60BADEDD993E67160D /* grpc_types.h in Copy impl/codegen Public Headers */, - AB50C798531738CB797A8F3313A6BBB4 /* log.h in Copy impl/codegen Public Headers */, - 43FA87F6B50C2DD54237105B2E5A53BD /* port_platform.h in Copy impl/codegen Public Headers */, - 05FF7BC88C3B8B1868930621B1BA9509 /* propagation_bits.h in Copy impl/codegen Public Headers */, - C125E3500B5418283525E53FCB325EF6 /* slice.h in Copy impl/codegen Public Headers */, - B02472AC22FC0B4C22BE5865A04C7061 /* status.h in Copy impl/codegen Public Headers */, - 3F2897AF49B3176A3B59A150C0B1B6A2 /* sync.h in Copy impl/codegen Public Headers */, - 43C1D21B1FA6271862E0F3E743EAA1ED /* sync_abseil.h in Copy impl/codegen Public Headers */, - 5ACD8FFA0508E6036C7B8FC5683C06F3 /* sync_custom.h in Copy impl/codegen Public Headers */, - 51D2450CC200F95754DE8E500E7AEFCB /* sync_generic.h in Copy impl/codegen Public Headers */, - FAF82E9E170224773E01041048AD13AA /* sync_posix.h in Copy impl/codegen Public Headers */, - 5B92D2D8406B50E0B6D69377C422FA4E /* sync_windows.h in Copy impl/codegen Public Headers */, + EDBB72A55513C4A6EF6ED6B2B5924B4F /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 2DF317CE67BC49422DB692BEFE14868E /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 6B7B175A55CC7583CC29BC22BADA9D75 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + EF3FD09DFF70524E69C105773955A770 /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 815E1BC1436B9A17D808B597680E269B /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 4E88A250BAF2E87DDB871A262CFB720C /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + E32EA264776B6A4743230A12492F01EF /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 31C3606EE1E026FB81FB71528E886F66 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, ); - name = "Copy impl/codegen Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 40D18425A706A0EE70E5BDAFA3DD17F8 /* Copy src/core/lib/profiling Private Headers */ = { + 3AB578E587128960FFA755B39B02186E /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/profiling"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3"; dstSubfolderSpec = 16; files = ( - 9D376070C14AA7AE692D5517AA4CEB5A /* timers.h in Copy src/core/lib/profiling Private Headers */, + BB74B1681958A2E4B030E82E4A54AB25 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 6F95FB8EE3C9874DAE49F2E193E4F89C /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 48427AF9729446583A3539B2FEB3BBA3 /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 2507D60BD5FE8B3926902B76F8FD602D /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, ); - name = "Copy src/core/lib/profiling Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 40EABFE7E52900F2BF69A78A85CC8B88 /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { + 3B62C13FDA0888B3C249743927674428 /* Copy src/core/ext/filters/client_channel/resolver/fake 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/filters/client_channel/resolver/fake"; dstSubfolderSpec = 16; files = ( - 2653B15F43CB0879F985FE23C7B684BD /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, + E99421C79B22DA79C117FB10A2940C22 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/tls Private Headers"; + name = "Copy src/core/ext/filters/client_channel/resolver/fake Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 40FDD646641F3D62C17A479542550779 /* Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */ = { + 3CBE5B9FF0EB64D9C6674435DB6E87F5 /* Copy src/core/ext/transport/binder/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/server"; dstSubfolderSpec = 16; files = ( - 05F5B3B13DCBC6935079997DDBAAB1A6 /* cds.upb.h in Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */, + FF280879CEA03C45A265934701B5AE69 /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers"; + name = "Copy src/core/ext/transport/binder/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4156EECF714D6A9468C460384200B14B /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = { + 3CC11CF7B37C2E5F4880EF28DD42B2A6 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/fake"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3"; dstSubfolderSpec = 16; files = ( - 339A08A124EB995565163A9331EFAEE9 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, + 4369326BB8388666388C301CD5981F4F /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/resolver/fake Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4187498ED17E353C3917FB3E1195BEA5 /* Copy src/core/ext/transport/binder/utils Private Headers */ = { + 3CDC4B95233969F3EC74EBE317A4A371 /* Copy crypto/poly1305 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/utils"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/poly1305"; dstSubfolderSpec = 16; files = ( - E3E3E5788430037EF20F186E76888B3B /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */, - E2251E6CBC32FAB80E303D7479F10264 /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */, - 0D14A89B8BBF39ABA42A6E72949EC3A9 /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */, - 7C1AF0488D3C4161359640D6BD563A86 /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */, + EB6B50F1F46C4FF8C63D21DAE993B104 /* internal.h in Copy crypto/poly1305 Private Headers */, ); - name = "Copy src/core/ext/transport/binder/utils Private Headers"; + name = "Copy crypto/poly1305 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4368FF77DDF977BB354A628C480A2E33 /* Copy src/core/lib/resource_quota Private Headers */ = { + 3F104C7118898980D3ADDEDAE974E5FA /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/annotations"; dstSubfolderSpec = 16; files = ( - 1825D47D21EB737C9208E71FD9087F8B /* api.h in Copy src/core/lib/resource_quota Private Headers */, - 0B3622E8D9C007A1E38344793681006A /* arena.h in Copy src/core/lib/resource_quota Private Headers */, - A35078CEBA013B459857F9956A51FE66 /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 7DAF78D483FAC9218A57B0C06CF42CD7 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 55BDF5CF35774590D7EE12A13E05B816 /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 0C1EF8B6DE4EECD74576FF214BB047D7 /* trace.h in Copy src/core/lib/resource_quota Private Headers */, + 6C75CC0D2FA2C2E5E26413D6DCEF9C8F /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, + EFE35D2758310613E709C76843279808 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, ); - name = "Copy src/core/lib/resource_quota Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 43AA660BE0E1481A95210BC0EAD9BC63 /* Copy crypto/err Private Headers */ = { + 4069538E7BB8035DEC9228DBC285269E /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/err"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/trace/v3"; dstSubfolderSpec = 16; files = ( - 6094DEC218F1BD53CFD40A58570F6A15 /* internal.h in Copy crypto/err Private Headers */, + 315C8AB2D72F0D8CC5CAEC209F2FB249 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, ); - name = "Copy crypto/err Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 43FAA2121C83A3022F896BAE5584F14A /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = { + 412CA0FE16A5D190E391734E51696BB9 /* Copy src/core/lib/security/security_connector/local Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/local"; dstSubfolderSpec = 16; files = ( - D1AFDEE585372DBF326AD82AE7EE2AC4 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - 1FC1AB7B2E84303C5B2262944FA28DBC /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, + 3634B2C2B1164435B0075F0319B8E20C /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers"; + name = "Copy src/core/lib/security/security_connector/local Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 445A36566A1715D40C1C8E64E5955F86 /* Copy . Public Headers */ = { + 437DC183BAF9CA565936CECD538CE93A /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1"; dstSubfolderSpec = 16; files = ( - 5F4662279938911B9B913EF22C7C0C71 /* alarm.h in Copy . Public Headers */, - 8AE34FD264B1714D99B015B23CFF9B0D /* channel.h in Copy . Public Headers */, - 55BEA3D4CFE68EC06F205CE0D0A87924 /* client_context.h in Copy . Public Headers */, - 8B830EBDCBCD43A8463BD5385D3E56BA /* completion_queue.h in Copy . Public Headers */, - 983E5EC3CBAF6F54592645B54D29D247 /* create_channel.h in Copy . Public Headers */, - FFCB093857A463744CDD124036F0B569 /* create_channel_binder.h in Copy . Public Headers */, - B65A9E99C378A11ADCE1350F4C345A8F /* create_channel_posix.h in Copy . Public Headers */, - 72941D2522D826C1DF1028250094A8E9 /* grpcpp.h in Copy . Public Headers */, - 6D99AD5ED201DE863308BE6BE837897D /* health_check_service_interface.h in Copy . Public Headers */, - A72AF6FFD5D869216EEBFFDC69BB85FF /* resource_quota.h in Copy . Public Headers */, - 7B741A8FBA6022975524B8D187F6117F /* server.h in Copy . Public Headers */, - DE55982947FAFF0C43678303D3BA03A7 /* server_builder.h in Copy . Public Headers */, - 59A45D7E7655B3527BB0143F9C3C47C1 /* server_context.h in Copy . Public Headers */, - 4B798BF785C0645DB47EFFC8E448579A /* server_posix.h in Copy . Public Headers */, - 2E3CBDD70824D90BA04D3E7B575A4913 /* xds_server_builder.h in Copy . Public Headers */, + 47CA3AA032E1828E6B47F83D55ED12EA /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 9B0A4B538D155F0188C359F8BC0052A7 /* eval.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 4A0E726A9C3C1053023679054A7F38B8 /* explain.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 28FDC4215AA57A94900D436614DFCA74 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 61F727EC26A35FB51DF630BE694DDDC9 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, ); - name = "Copy . Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 44FFBF60625440C58F5FE01CB612EAF8 /* Copy src/core/ext/filters/http Private Headers */ = { + 43AA660BE0E1481A95210BC0EAD9BC63 /* Copy crypto/err Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/err"; dstSubfolderSpec = 16; files = ( - 87C825D9A1B4335EA9E946A6DA3F400E /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, + 6094DEC218F1BD53CFD40A58570F6A15 /* internal.h in Copy crypto/err Private Headers */, ); - name = "Copy src/core/ext/filters/http Private Headers"; + name = "Copy crypto/err Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 450F7510A82329F5962ACB71D144DDE7 /* Copy src/core/lib/iomgr/executor Private Headers */ = { + 43DD58B46B41A8B240333BBB8D27AD18 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/executor"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/rpc"; dstSubfolderSpec = 16; files = ( - 62BC30C51A86D619875765D75E2E905F /* mpmcqueue.h in Copy src/core/lib/iomgr/executor Private Headers */, - D201319A94D8486B00FCA8D1E555C21C /* threadpool.h in Copy src/core/lib/iomgr/executor Private Headers */, + CA27F1C6BBEDA93134C58E41EFFB38D3 /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */, ); - name = "Copy src/core/lib/iomgr/executor Private Headers"; + name = "Copy src/core/ext/upb-generated/google/rpc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 45FBE9C02D9E12DCAA93ED7AC5266E85 /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = { + 444DF4781F4DB0FFDE6355DAE68E6135 /* Copy random Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/udpa/annotations"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random"; dstSubfolderSpec = 16; files = ( - DD68B38E5718558756F19953BEC81211 /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 25B2895E11B6201FF05598BFF5FCA7B2 /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 375C70A0997A0F37B3A2D3753A914E88 /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - E65AAFE371CE875C9DC7E82E9CFBAF0C /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 54B14F7CD9E683608E154B973D5410EA /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + 2F0B806DF8064140C6FEE1629F210D3F /* bernoulli_distribution.h in Copy random Public Headers */, + 7BF9A2ED245945191EC8DAC672A50AF9 /* beta_distribution.h in Copy random Public Headers */, + EBB9C6A8ABBFC10870E6D92213A0D9B1 /* discrete_distribution.h in Copy random Public Headers */, + 09EC2D354F8434B3ECBEABD897F1DF30 /* distributions.h in Copy random Public Headers */, + 13B42C087FF1FDBB330FBB558F20EAEE /* exponential_distribution.h in Copy random Public Headers */, + DC63ABF1FC84C8C6E71CEC19A7E0CE3F /* gaussian_distribution.h in Copy random Public Headers */, + FEC2E5F2063239768317FEDCAC13C08A /* log_uniform_int_distribution.h in Copy random Public Headers */, + E744CCB0DE23158A0DDB947AD60D155D /* poisson_distribution.h in Copy random Public Headers */, + 613141A84E82AC50B619ABE1C05AAA75 /* random.h in Copy random Public Headers */, + D37F7379500AEFEF0BFA24034FB60836 /* seed_gen_exception.h in Copy random Public Headers */, + C1D0B635B86B889A7D6B5527B3553E53 /* seed_sequences.h in Copy random Public Headers */, + 77AE5C06241C5CBA779D8DB8334CB885 /* uniform_int_distribution.h in Copy random Public Headers */, + C3056142551AED36A9857B7AC125D2D3 /* uniform_real_distribution.h in Copy random Public Headers */, + 0414EB23CB812AD07421B4E7D6557BCA /* zipf_distribution.h in Copy random Public Headers */, ); - name = "Copy src/core/ext/upb-generated/udpa/annotations Private Headers"; + name = "Copy random Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4680DE62032D13517C4A8B36E7FA7681 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = { + 44C4D243837201ACC20A0AB4436F039A /* Copy src/core/lib/security/credentials/alts Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/discovery/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; dstSubfolderSpec = 16; files = ( - FE8E73E481FB66F1E82F6EAB86E9B643 /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - B0C96653DD9CA1531CC0482D3535B375 /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, + 7C8A7AE747CE6AEAB8FCB614A693214A /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, + 8BB698C6ABAFF6D7DAB61D5DB4CE2DCC /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, + 76E3A7EB7A92525623A360E3C3BE0506 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/alts Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 468590C981A42F03CDDC954A2EAC38A9 /* Copy uv Public Headers */ = { + 46E258D77513F8A3B71ED4285F4F69E1 /* Copy src/core/lib/security/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/uv"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; dstSubfolderSpec = 16; files = ( - 35EDAF76F9C76FF1FE069F130169B7DD /* darwin.h in Copy uv Public Headers */, - D9B038AD6A567E852E0852F061CDDF26 /* errno.h in Copy uv Public Headers */, - CBCAD855934899F25B862838561277A1 /* threadpool.h in Copy uv Public Headers */, - C2671141DAE5ED092652F166ED2866CA /* tree.h in Copy uv Public Headers */, - 881441EBB1BF904C6A39842717210825 /* unix.h in Copy uv Public Headers */, - 47CA479EC2913C3D9FA3C9A468D52923 /* version.h in Copy uv Public Headers */, + 11BA9F4690D9697FBB20F3EAF27A5D45 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, + D257D495726192F6D65126BD6E60F509 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, + 1331E123CB2D1C121A8C8EB6A51DEC0C /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, + BD241818A96DEA8659AC8BF77ED8D211 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, ); - name = "Copy uv Public Headers"; + name = "Copy src/core/lib/security/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 469950AC30F6CD1965172BD88411052F /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = { + 46E4BB0F1C3B9BC0063453DC07FC82FD /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/grpclb"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns"; dstSubfolderSpec = 16; files = ( - 02DE7072E7BAB2150FFDF9D1C8218873 /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 545F87980479C1825B882A08A403F104 /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 34253E01D530AF4EEEB34048B7EE030D /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - A94A509CD082D9E29B22149C2A14C580 /* grpclb_channel.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 5BDD599129EDF067483508CCA5965CFF /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 0814A931611886828767B4A7C7E2CCCE /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + ECC1E6A3F8C20076138AA705ECA1AED9 /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers"; + name = "Copy src/core/ext/filters/client_channel/resolver/dns Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 46D2B4B238844B8BB0EA8F8619FCE01A /* Copy src/core/ext/filters/deadline Private Headers */ = { + 471219FBC3C888CA951FB9C83E21C013 /* Copy src/core/lib/security/security_connector/alts 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/security_connector/alts"; dstSubfolderSpec = 16; files = ( - 41A3875B60C38572469C5C8AA85FD0B2 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, + A04D8F231F3EB6FE213354D97BF14886 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, ); - name = "Copy src/core/ext/filters/deadline Private Headers"; + name = "Copy src/core/lib/security/security_connector/alts Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 46D5A87E6BAD84548EB565830003990C /* Copy src/core/lib/avl Private Headers */ = { + 47134EBD135669952F0A372405E41EFE /* Copy src/core/lib/iomgr Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; dstSubfolderSpec = 16; files = ( - 9B0C7664604C2AA1F898A2FBB959E8BF /* avl.h in Copy src/core/lib/avl Private Headers */, + 4DB413F6A24BA2120337282856AFBA87 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, + 488E09A798DBD5E5002A680DF4A669D5 /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, + 66081B20C83A27E2B71481C30E4BC2C0 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, + 527A87CD1B32179397DB64368CAF2969 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, + E7127181D76CF5F227506D292D339DFC /* closure.h in Copy src/core/lib/iomgr Private Headers */, + BDD76360D3AFDEFEEB4656A8F492C702 /* combiner.h in Copy src/core/lib/iomgr Private Headers */, + E717E3886E669C4B0546C892CA964D7A /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, + 3559E5C2D175D3B255CF27B88F780D13 /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, + AB955D66AE172C0E07DE5B464FC1570A /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, + 7336B1868D47E17E1B627260B1DA5CB0 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, + 56619A5E474B20231337F2C7F369CDEE /* error.h in Copy src/core/lib/iomgr Private Headers */, + 8659C3B44ABA1D4AA39B0D1EC5E85FB6 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, + 467ECE65AB9576C21E70CA59F56B11F9 /* error_internal.h in Copy src/core/lib/iomgr Private Headers */, + B1232B61494781E731FFF22D2FBD9886 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, + 70EC54B5D48353435AC45E5E01D7A516 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, + 50FDE6811842D6E385A32A7AAC23C786 /* ev_epollex_linux.h in Copy src/core/lib/iomgr Private Headers */, + 18B0E4ABA98973B940A936DDF2C426B4 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, + 0791B18642FEDD0EB7C50CAE8B0C4305 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, + 899EF3B8E01832FFA9A50F315977B426 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, + 0F6D30A880CD6DC708222FA2A8A0A09E /* executor.h in Copy src/core/lib/iomgr Private Headers */, + 9CBCA503E0BBAF215E74EDB09B42FFF7 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, + 7C6D4CF70147D7053D5D0BB887B1FA81 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, + 055C1C0EBE60F9B75ABDFB3561ECF0D5 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, + B2C5CEEAE45A8BAF07F1823889E575CF /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, + DE1D3FD111086A44C4B7149269DABD84 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, + B950E1E80D4622A95119BB0B81860DC9 /* iomgr_custom.h in Copy src/core/lib/iomgr Private Headers */, + E0DA442002FC0CFB3A999EFD7B9EA528 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, + FDF250E7D8A315B8A20220BECF894930 /* is_epollexclusive_available.h in Copy src/core/lib/iomgr Private Headers */, + 68B1668A3B5DEB7566E7DDF6D869E67D /* load_file.h in Copy src/core/lib/iomgr Private Headers */, + 4A656067B7E40D445B548F088C643264 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, + D32DFA2BA4BE324A5ADFD030AE80B1B1 /* nameser.h in Copy src/core/lib/iomgr Private Headers */, + 06561617194691E6C39AD0DB97D288B5 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, + 79E9E8CE22BAB1DFC2B514FF43A0536C /* pollset.h in Copy src/core/lib/iomgr Private Headers */, + 860179B957FDBFE1412F9B7380FF0ADA /* pollset_custom.h in Copy src/core/lib/iomgr Private Headers */, + 2196B541734E193EF752C4AA288239C4 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, + E87CE2624E4380B16AD53F8AD1652F68 /* pollset_set_custom.h in Copy src/core/lib/iomgr Private Headers */, + A547DDDFF949E828897760893F08799B /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, + 796346F2EC7E6EC8DB06E41EDCCD0518 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, + A524654342A69E1AF46DBAA3C4BDCCC8 /* port.h in Copy src/core/lib/iomgr Private Headers */, + 166E274D8CD1BD9ED376D3B8D0721C34 /* python_util.h in Copy src/core/lib/iomgr Private Headers */, + E573214F5B6DBB43DA7FAE4B5227124C /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, + A6B4FB2953B50F5BE966780B08F06FB5 /* resolve_address_custom.h in Copy src/core/lib/iomgr Private Headers */, + 8EC90B695760389473319AFB6A1E6617 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, + 52083F3BC0F7DA50C3A62B3FD7B1AF31 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, + 9EB61A32D12559EF03F7253D47C00740 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, + 60FDECCE8D8F517D446C1B040132F5DF /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, + F3C238651B3B166DD131B4380E14E24A /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, + 598AF237E363B2F71B4DE0A7DF2E48D3 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, + 6BF3A7588BE64F2F45DFC4B1E9DE48BE /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, + 4540E72C0F86E65AF5DC8CB7BB85F6F6 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, + 02D27B26F08DBDFBF0B0DE0F5729C982 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, + 82C6D6E2FD755C9977A26E51B02489FA /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, + 8F1C0C27BE743BFFB45CE95AF1B8B35A /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, + A3C54278431E43952A2D3414B15A2A8C /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, + D9CC9F78AFBA391D256B6C5CFDFA2730 /* sys_epoll_wrapper.h in Copy src/core/lib/iomgr Private Headers */, + 255EC9B2DDD49974AC11FD26141DCBEC /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, + B14E2F7D99EA712CC8C17060D4837558 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, + 12FA097EF6D65BFCCCF0DD331BC34265 /* tcp_custom.h in Copy src/core/lib/iomgr Private Headers */, + 5C46682B123004C7D7E7934917A4E556 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, + ADC0BF5E0D7AF7A3B63AD52E87D402D9 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, + 5C98DE147399F49FF8BC3DA9343049C2 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, + F3DDA8F2B850A8784920D8A6609A71BB /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, + A8A1BB80A61784CE299A3D34B5E84830 /* time_averaged_stats.h in Copy src/core/lib/iomgr Private Headers */, + 86B8A6EA7F18437D9542924D5BE55813 /* timer.h in Copy src/core/lib/iomgr Private Headers */, + 0491A7F16A762FF2B061EA7C7102765B /* timer_custom.h in Copy src/core/lib/iomgr Private Headers */, + E5D8531B7FF5028FDA5CD90F0BB08F17 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, + 9EDE211B067CCD5CF88A148FF555DF45 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, + 0472A957D59CA3A52E445D22C6BD9710 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, + 49AE1D570991719030FAA518227E5F28 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, + DD39D4FB35E4F45BCAF67C9C92F88539 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, + DCCA6835132C56EA1B684CB1CD9C044D /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, + 90F06A92B580B8A160031C01070E58E9 /* work_serializer.h in Copy src/core/lib/iomgr Private Headers */, ); - name = "Copy src/core/lib/avl Private Headers"; + name = "Copy src/core/lib/iomgr Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4705ABD5F866F72EB4C420815AD01193 /* Copy third_party/xxhash Private Headers */ = { + 472594AE0D9082F5561BFE265A1C6B8B /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/type/v3"; dstSubfolderSpec = 16; files = ( - 4672BC34C1C808F9D5362309270DDAE8 /* xxhash.h in Copy third_party/xxhash Private Headers */, + 913A6B3230730C0B23A48D01B8752F85 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, ); - name = "Copy third_party/xxhash Private Headers"; + name = "Copy src/core/ext/upb-generated/xds/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 48D139FA41C69647E4AE73ADA3440AAB /* Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = { + 473B49652DFECF6AEB740E0D029431CB /* Copy src/core/lib/security/credentials/composite Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/route/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; dstSubfolderSpec = 16; files = ( - 8CB7E491F0D6D61EC057993588344CFC /* rds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, - 379B95ED27BEA56C00F09DA351C40B81 /* srds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, + C8F561188E2DD28016CCD2FFCC46CAF3 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/composite Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 49E404866CB14FDF17C97E2C7A2BB383 /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { + 475BE4BE57C53EA27BD9EAA81400EDAF /* Copy src/core/ext/upbdefs-generated/envoy/service/status/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/upbdefs-generated/envoy/service/status/v3"; dstSubfolderSpec = 16; files = ( - AA98C37FC255136634AE9912088E598B /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, + C410E4F975F4DAE8090B7655BE403336 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/ssl Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 49F50123D40B2FA275B87CEC6CF4AAD9 /* Copy src/core/lib/debug Private Headers */ = { + 47B4A02F5DDA5FB88B4FECBC2A2E4A30 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/ring_hash"; dstSubfolderSpec = 16; files = ( - 325CACB8B675C52FF0238CBD00212FC4 /* stats.h in Copy src/core/lib/debug Private Headers */, - 1135280FAAA7668BAA3E166ED6F82E45 /* stats_data.h in Copy src/core/lib/debug Private Headers */, - 30BB3A98D5F9BC0A14096B3D07341C60 /* trace.h in Copy src/core/lib/debug Private Headers */, + C17B484FD9A7E11B86EBFED880999161 /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, ); - name = "Copy src/core/lib/debug Private Headers"; + name = "Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4B3DC81701D048413E789404F4F5F421 /* Copy src/core/ext/filters/client_channel/health Private Headers */ = { + 48EB6FD4BDCEB9FA7C69E207B9F687F0 /* Copy utility Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/health"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/utility"; dstSubfolderSpec = 16; files = ( - C6B339336CD8B69182020A4D0810C7AC /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */, + 3B426CBA3C0902BD92376CDCA37818BA /* utility.h in Copy utility Public Headers */, ); - name = "Copy src/core/ext/filters/client_channel/health Private Headers"; + name = "Copy utility Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4CD0FE2CE7B0C4E55AA143147F499302 /* Copy src/core/lib/security/credentials Private Headers */ = { + 4985F9C69091E52DB569A6C165CA0206 /* Copy src/core/lib/debug Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; dstSubfolderSpec = 16; files = ( - E3E91FDE799EED0D8CD8E6A0F8986BBD /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, + 83BBAD224000C952B6FA806FA4D0DE61 /* stats.h in Copy src/core/lib/debug Private Headers */, + CEC2E81D624CAB95AA2DA0B267079A59 /* stats_data.h in Copy src/core/lib/debug Private Headers */, + 5595D49B121E9778EDFACC9A37D6757A /* trace.h in Copy src/core/lib/debug Private Headers */, ); - name = "Copy src/core/lib/security/credentials Private Headers"; + name = "Copy src/core/lib/debug Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4DB29949C14E079D38D86335770D957A /* Copy src/core/ext/upb-generated/google/api Private Headers */ = { + 4A1E0E3135F77F5BB5F89FC4F60C2F9B /* Copy src/core/lib/promise/detail Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; dstSubfolderSpec = 16; files = ( - 4F207C755EB20A1406EA26D0A3F9BBAF /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, - 3168102B60AB7F974199AE624176C6FD /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, + 3C41E9753E710395CE3FE7ABBB608B99 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, + CE34566102E7CF0BB5A064FFF59336F8 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, + 5F875C54F4F5789DE457A1C660F24C83 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, + 1C74C7EFDDCB42492F329B5C803D34A1 /* status.h in Copy src/core/lib/promise/detail Private Headers */, + CB2782DB30E5928BB77F2A461C71BF04 /* switch.h in Copy src/core/lib/promise/detail Private Headers */, ); - name = "Copy src/core/ext/upb-generated/google/api Private Headers"; + name = "Copy src/core/lib/promise/detail Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4F3EA87083EAF9D7075F50ED3B9D7773 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { + 4B9512FB4354FEBF2CDA7FBAD4230F4A /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; dstSubfolderSpec = 16; files = ( - 633254FAAF8B9492F80CF9DC8A67C532 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 562450F31B55097C09F7FEA411111B5D /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; + name = "Copy src/core/ext/transport/chttp2/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 50F060635F9FA805F399E00BF6471960 /* Copy src/core/lib/backoff Private Headers */ = { + 4C804E8CFE06EE5B702CE14CB6BDBD22 /* Copy src/core/ext/filters/client_channel Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel"; dstSubfolderSpec = 16; files = ( - 140FC7A6DC87ADEB907F6F12133FE3E2 /* backoff.h in Copy src/core/lib/backoff Private Headers */, + 69E0F5C526CDCDE81BF50C1F216AD3AC /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */, + 8026587B443FB4929CA0DFCE5EC5EA75 /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */, + 074BB99697DBA236E378979645861545 /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */, + E787332A74C7B8F43345B63D6952E5A1 /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */, + 3E6C90DCBC76DB97FF63BFF188473269 /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, + B1FF6C476D5E954D99219431C8F86BE2 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */, + 7DE59EEC2A48458405D1DEC8C45152B5 /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */, + E5DFEBFBEE14AF5CA6986F0F705D1F36 /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */, + BC640459EC0A2735B30D773495D9D762 /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, + 56E8F77D51C108B64ABFDE8D8DAE21D3 /* http_connect_handshaker.h in Copy src/core/ext/filters/client_channel Private Headers */, + DE5B5E937459A81F08C4078AD82AE847 /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */, + 9EA5E6FF3FD51A5D8515DDE82F3AD77A /* lb_policy.h in Copy src/core/ext/filters/client_channel Private Headers */, + 2AF3CDD4923EB42FBADA00645C973F2A /* lb_policy_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, + F2AB4E4A232E8096940752DE6EF2C53F /* lb_policy_registry.h in Copy src/core/ext/filters/client_channel Private Headers */, + 759BE66359C0A103BFB00F97CB9CBBAA /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, + 27219B0BEE2D1C72FD9A59CD4F2F55E7 /* proxy_mapper.h in Copy src/core/ext/filters/client_channel Private Headers */, + 64D3AC1BD1266F009A74C2232645B5D8 /* proxy_mapper_registry.h in Copy src/core/ext/filters/client_channel Private Headers */, + 399ABE73B089548B03071BB949EAF0EF /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */, + F8A09B9934765E933869082627C21700 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */, + FE52754A66A4C084C0B1CC3698605D33 /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */, + 97E06696D0153215636FF56195A7BAA6 /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */, + A63EA625F72AE1F3C8B0CA85E3189C7C /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */, + 19C93A8AFBF2D7141C50BAF42ED08E6E /* subchannel_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, + FCF7ED82C27EDC5CFEB18F11C0D30E4D /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, ); - name = "Copy src/core/lib/backoff Private Headers"; + name = "Copy src/core/ext/filters/client_channel Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5268CF9E504D7A2DBFEA39286FC85FD9 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = { + 4CC0D223849B9DFF705BD53BB513CFDF /* Copy src/core/lib/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; dstSubfolderSpec = 16; files = ( - 4712D9B7DF41988BC12939A076D739D2 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 20B301313868A414EC94FF5D1C243C60 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 2E8481CA6029CABCB4E60DE0B1647E6A /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 73FB7ED37D6C0E226D1E6B5DA4410720 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - B120E20D7279CF498340E32945AC1ED4 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + FFAFEE061BB5615739B61B03E832415F /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, + C67CC59A6E7A60C3AE9E08DBD4252FD9 /* byte_stream.h in Copy src/core/lib/transport Private Headers */, + 97CF68C05D95D8EFEEF1639652846A52 /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, + D8E96FACCF490659DA9C0867794DC70F /* error_utils.h in Copy src/core/lib/transport Private Headers */, + 3987B90F4C504AC3FE0ABFCC914F53B3 /* http2_errors.h in Copy src/core/lib/transport Private Headers */, + 37E3E7B48E8DC7A96E33DE0BEA0F0B84 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, + A41EEDF141ED306A547F52A2B16DF353 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, + 845A62C503C5F8F8041D03A830748196 /* pid_controller.h in Copy src/core/lib/transport Private Headers */, + 61AF96E94BEF9B51002BB1538333DABF /* status_conversion.h in Copy src/core/lib/transport Private Headers */, + FFFF367B9A91442BAB589B255D5BB6A0 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, + 4CC73B6619157FF902A98C1580059642 /* transport.h in Copy src/core/lib/transport Private Headers */, + 8671D7A32B73B2264C532852D278FA8A /* transport_impl.h in Copy src/core/lib/transport Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers"; + name = "Copy src/core/lib/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 527D4C8FD587F2DE5C68D157745007AD /* Copy types/internal Public Headers */ = { + 4D6A477CB81A3C8E7E8988A2F132CCDC /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns/c_ares"; dstSubfolderSpec = 16; files = ( - 5DA11397529D6A93DC11EC4CB3BC2D4E /* optional.h in Copy types/internal Public Headers */, - 2A29E812FED1D4F5A10E1AEFEA055463 /* span.h in Copy types/internal Public Headers */, - 97A458AC021E526E99EAEC2D71E611E4 /* variant.h in Copy types/internal Public Headers */, + E833B8048C6F3EF6C9B4859284AB7EDD /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, + E76F14920432236D8622CA6794D66FEA /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, ); - name = "Copy types/internal Public Headers"; + name = "Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5298FD25B9BB364B71DEFDD264DEECEB /* Copy crypto/ec_extra Private Headers */ = { + 4D8A764D7C5F0D1C288496BF78E21388 /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/ec_extra"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/metrics/v3"; dstSubfolderSpec = 16; files = ( - 18A9770DE1BD620805F0C1F9B643D675 /* internal.h in Copy crypto/ec_extra Private Headers */, + BBB5E085A6760EEB4979BC05F976ACCD /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, ); - name = "Copy crypto/ec_extra Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 531B7D819AC1CCB06702FC93FAA7E0F2 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = { + 4DB2B67A5D1368600529AFBE4D1AED13 /* Copy src/core/lib/channel Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lb/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; dstSubfolderSpec = 16; files = ( - 9CFA0657FCF7E526BA74BD326A0EAE0A /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, + 5A6C22C57B9BA797B6327F03FB15C9D2 /* call_tracer.h in Copy src/core/lib/channel Private Headers */, + 66EBB1E414FEF5AA93ED78F7949AB0FF /* channel_args.h in Copy src/core/lib/channel Private Headers */, + 6ABFEA36940A93AB3814E6F7EFFC75C4 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, + 4AF44F6C9104DB93371A8D36D5AD107B /* channel_stack.h in Copy src/core/lib/channel Private Headers */, + DE964FEF393D23C107EA50FC2D85CB35 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, + FC4D14DB85977C7F6DD1F799B42F9944 /* channel_trace.h in Copy src/core/lib/channel Private Headers */, + 80CFB013343AD5549A81C2831738FD6A /* channelz.h in Copy src/core/lib/channel Private Headers */, + AA8FA15BAEF9FAC93A6C5DFEBB9E10A1 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, + 02C774E1562FA19E759AA72E28B2FF4A /* connected_channel.h in Copy src/core/lib/channel Private Headers */, + 6611E603FFBF33D040A7C6EC367381C2 /* context.h in Copy src/core/lib/channel Private Headers */, + 1B71949F3318E9A9A3840B8EA2E5B27C /* handshaker.h in Copy src/core/lib/channel Private Headers */, + 4CF1BFEDFC73545736E460638EB7E8D9 /* handshaker_factory.h in Copy src/core/lib/channel Private Headers */, + B75897723741C652976BDD5998FA51B8 /* handshaker_registry.h in Copy src/core/lib/channel Private Headers */, + 1319148268508006BBE805FA73CF6B75 /* status_util.h in Copy src/core/lib/channel Private Headers */, ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers"; + name = "Copy src/core/lib/channel Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 534AF1D43A22EB29633FD41A15EC17AA /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { + 4E323EC791728B1BB66E9662248FC50E /* Copy src/core/lib/event_engine 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/lib/event_engine"; dstSubfolderSpec = 16; files = ( - 033061AC89EF6F94E02274538956F7A6 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - 45037BA06C8C89E338E942F9B472A6E9 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, + A944A138BD3EA24C2BD46E392A71F32A /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, + 0F4B99EAD16156CF34ADF34057F3AF03 /* event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, + 39EC58246C5AAC97506975C5A13E66C8 /* sockaddr.h in Copy src/core/lib/event_engine Private Headers */, ); - name = "Copy src/core/ext/filters/server_config_selector Private Headers"; + name = "Copy src/core/lib/event_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 53645846314256953D90E7A0C0B2D6D1 /* Copy src/core/lib/security/authorization Private Headers */ = { + 4E599968FF0BB9F7E4FFD4B7EAD76CF7 /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/ssl"; dstSubfolderSpec = 16; files = ( - 50D95A9AADCBFBE72C9F7E7EC604A3F5 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - C0DB7C878C05E8C849AE1574E330F9C3 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, - 49D9E995394439CC5937C06F3D4F95EA /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, - 8B071CB4EBCB843D72543E988E032D06 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - BB48C4A22087BC1F25A2966C3FAD0863 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, - D4A90C715B34E7366A7F1EBAEF250975 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, - 2B092E54101F285198E196A84DD902BC /* sdk_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, + 40D5821DCD5C9F35C599744CEAF3E239 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, ); - name = "Copy src/core/lib/security/authorization Private Headers"; + name = "Copy src/core/lib/security/credentials/ssl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 53B6CADD064E4A2A1B75B71DFF8063E8 /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = { + 4EA0DD532B242D4ABBA1EAA81CE17238 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/gcp"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/core/v3"; dstSubfolderSpec = 16; files = ( - B2B076EC5EEEA329A0124C8C41CC8A18 /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - E24BF4593D98C72B018C2F9332A057AD /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - C9963CC9967BEA67E2FCE28457D97A79 /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + F387A6E71614A5FE51812A9EB1721FF6 /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 026349F4EB9A6F517B7C672C1C99C661 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 2371F042630FFD124CDE30ADC0123197 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + F0B23FB9D2A21C052182EEC53C984623 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 7EEECC1E62ACF102F87EF3E7BC8C8572 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + B7AE96EC944054401358764D62A075FE /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 3AE278BC0156D2D0590ED867F7734ECC /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 7B067BF99D950F834D26E304710DBDDF /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + D7900B8F8956F3FEB63EEF76F67F0351 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 480A1F8F75D008CF8612F9CFDB7D91DD /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 2C691A7F8052C0C2AC314C6BA53553FA /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 6B22EC573B3CE56654CC227BA899CEC4 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + DE55DABB6377E84F2DBBF87B0888D520 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + FC6A69FBC2F67BE6EF46DA94F812BD94 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 730B00438E54DA93C0A401CE32A8E7E3 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 53CBD2F03A57CF9CF01B232AA2AF3473 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = { + 4EAE31D1393370D5C97386AA19EBB0FF /* Copy third_party/upb/upb Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/trace/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; dstSubfolderSpec = 16; files = ( - AABED3B523761DB961C277BE200C1EE6 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, + 2567124563A2C9D63ACF3BD80F5DF7A2 /* decode.h in Copy third_party/upb/upb Private Headers */, + BD09DC0D246B6F6230D66083267511C2 /* decode_fast.h in Copy third_party/upb/upb Private Headers */, + 2961ED4E3EAA2414B9A200E519269B3A /* decode_internal.h in Copy third_party/upb/upb Private Headers */, + B88EBAC33943E418E84D4524BA8763DA /* def.h in Copy third_party/upb/upb Private Headers */, + 3D46AC030D2F15B66CE861634C61CFAA /* def.hpp in Copy third_party/upb/upb Private Headers */, + E9EE018C7DABDB14D3F6C931194B0FCB /* encode.h in Copy third_party/upb/upb Private Headers */, + AF9F9941E9D2D98C635D6189B0A37596 /* msg.h in Copy third_party/upb/upb Private Headers */, + 8CDCC05D780B8852F545654BFA645BFC /* msg_internal.h in Copy third_party/upb/upb Private Headers */, + 1F1EC9BBCF99F0E985CA8F80A117EBCF /* port_def.inc in Copy third_party/upb/upb Private Headers */, + DFEA2F93479558209AF8713E171B9ED0 /* port_undef.inc in Copy third_party/upb/upb Private Headers */, + 18796A843B9D2B266709616C346368EB /* reflection.h in Copy third_party/upb/upb Private Headers */, + E6A50A9553A6221C2D903DBC81966A57 /* reflection.hpp in Copy third_party/upb/upb Private Headers */, + 53FD14DD41BB53D035C3CF15358C50B4 /* table_internal.h in Copy third_party/upb/upb Private Headers */, + F0662CF824E3B58D47C4059E2991B953 /* text_encode.h in Copy third_party/upb/upb Private Headers */, + 7359709FF3EC9CC9AD182CCC04CB7D7F /* upb.h in Copy third_party/upb/upb Private Headers */, + 27690C0DCAE06ECCA6359E4E1AE52AF9 /* upb.hpp in Copy third_party/upb/upb Private Headers */, + CB4FC3B0CFB53A04BB0AE0ADD80316FE /* upb_internal.h in Copy third_party/upb/upb Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers"; + name = "Copy third_party/upb/upb Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 543F60B7A1C460CB271DBECA3B52C3C1 /* Copy src/core/ext/transport/binder/server Private Headers */ = { + 50CC459EB84D710DADFF61A6DBDF57F7 /* Copy src/core/lib/security/credentials/local Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/server"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; dstSubfolderSpec = 16; files = ( - 1A238D81771E9476F30723056FC83BFE /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */, + 55363E90BACE6669F27EA4E1CD003B4B /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, ); - name = "Copy src/core/ext/transport/binder/server Private Headers"; + name = "Copy src/core/lib/security/credentials/local Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 544BF7DC67DA89E18DC5867934FF2C24 /* Copy time/internal Public Headers */ = { + 51A6EDDB2FF570440CDAE464F3025D09 /* Copy time/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal"; dstSubfolderSpec = 16; files = ( - B29BA6CB6A58EEA87C374D96113A7FD6 /* get_current_time_chrono.inc in Copy time/internal Public Headers */, - AB09D9439B84A37120480673E5FB80F9 /* get_current_time_posix.inc in Copy time/internal Public Headers */, + D0022BE763DBCB5E8F3073A3C0D6FBF3 /* get_current_time_chrono.inc in Copy time/internal Public Headers */, + 3C8EBC840BF3A899DAE66790C42F60C7 /* get_current_time_posix.inc in Copy time/internal Public Headers */, ); name = "Copy time/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5491B7D3A729E6D15486A6F0B9C4FF1A /* Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */ = { + 523D45A0070570EB8B6B31A3F63092D1 /* Copy src/core/lib/iomgr/event_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/event_engine"; dstSubfolderSpec = 16; files = ( - 65F87290F45320238AD38FF6710300F3 /* eds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */, + B17F6A40BC72C2DE07D964AED6B959F4 /* closure.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 2AC42A6E1CCEBCB285C0442DD5CB84E0 /* endpoint.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 2A9C056426F69AECADC70A154CBC0B32 /* pollset.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 80E38DC8B0A95CC311D50789E35B1D36 /* promise.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 088937E0843D1C96DF1C5AC3F45FB431 /* resolved_address_internal.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + B77D278C85E27E303BF8B248FBA6DD00 /* resolver.h in Copy src/core/lib/iomgr/event_engine Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers"; + name = "Copy src/core/lib/iomgr/event_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 55137134783EBCB24855B8DC0B2AF568 /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = { + 529484A02986D944B53B7765E209F9A0 /* Copy src/core/lib/profiling Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lookup/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/profiling"; dstSubfolderSpec = 16; files = ( - 2CDD7E8234782D7704E42342AD30E593 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, + 3CC1264C2770E0F5F1B62C1527DE1492 /* timers.h in Copy src/core/lib/profiling Private Headers */, ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers"; + name = "Copy src/core/lib/profiling Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 55692AD3B95E3E2845773445CCE2B692 /* Copy algorithm Public Headers */ = { + 5298FD25B9BB364B71DEFDD264DEECEB /* Copy crypto/ec_extra Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/algorithm"; - dstSubfolderSpec = 16; - files = ( - 36B1CA9F75182E02B3B16B23DA4B3EAB /* algorithm.h in Copy algorithm Public Headers */, - B3BD2F627C465774EC10E045C1573DCF /* container.h in Copy algorithm Public Headers */, - ); - name = "Copy algorithm Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 566902E74A143EFF3679C74F8F8300DC /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/tracing/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/ec_extra"; dstSubfolderSpec = 16; files = ( - FE01D1A1825E8B55303F33A6AA31FA3C /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, + 18A9770DE1BD620805F0C1F9B643D675 /* internal.h in Copy crypto/ec_extra Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers"; + name = "Copy crypto/ec_extra Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5699161A16E00B8AE65480F4E89D447D /* Copy crypto/pkcs7 Private Headers */ = { + 52EF157B25C99E868556C9D4F2BD825C /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pkcs7"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/discovery/v3"; dstSubfolderSpec = 16; files = ( - AB876C7ADCC70CE9FA8616B846816CD2 /* internal.h in Copy crypto/pkcs7 Private Headers */, + DBC957F2CDD0F231865B1BCB8D2F5CAE /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, + A714D486A62D8A86E9677EF01C533D16 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, ); - name = "Copy crypto/pkcs7 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 56DDC11654CED5D953E36344D34713E0 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { + 53BF64D14FA5F0D1098A53F6D78059F5 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 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/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3"; dstSubfolderSpec = 16; files = ( - 2CA1537B1974023FF937E5640497C0E0 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, + C58965AD8F5DE776B91D6E2688509FA9 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 571E90A659F9DDD6E1CDABFB53BD540A /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = { + 546BB3C10F286C98AB354053B666D305 /* Copy . Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/admin/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; dstSubfolderSpec = 16; files = ( - F7E4EC59417BD21B443DCD5C38F4D6BF /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, + D38A1EEF5648D23B08A40EC5EA3A138A /* heap-inl.h in Copy . Public Headers */, + EF7AE510A6A1C2ADE3AC759E1D24B53C /* idna.h in Copy . Public Headers */, + 02F5AA72413D7BD17814730F2E955490 /* queue.h in Copy . Public Headers */, + FEE9078FFE5094A0F4678E230B5B5CC1 /* strscpy.h in Copy . Public Headers */, + 73DD76857A617311C8CAFE7DEDC57E6B /* uv.h in Copy . Public Headers */, + 020FB3543104C01563BCCA25845CB391 /* uv-common.h in Copy . Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers"; + name = "Copy . Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 576599D8D6EC845F49C78F3BC87F55E6 /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = { + 54A706852E87F85B72A5B966F41E04A7 /* Copy src/core/ext/filters/message_size Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/message_size"; dstSubfolderSpec = 16; files = ( - 1583084827207B73CADA25F138D8FF86 /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - 266B9431AD0CF3F5833E26402D89D5C9 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, + 0EF8834987E23250F7CE55CDEF365BE9 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers"; + name = "Copy src/core/ext/filters/message_size Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5AC5BC7BED048F166825FBC43EE4F51F /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { + 54B6AEE55B5009B8AE8AF61E486317BD /* Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/server"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/cluster/v3"; dstSubfolderSpec = 16; files = ( - 237F0B27E6C549F459082793E4690157 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, + 201A311A63345E584B642A637D53A6F3 /* cds.upb.h in Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/server Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5B124402FCAA851E182BA2755EC3D0EC /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = { + 550A32FAAAED15E7E49E27E4CE5B210D /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/discovery/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/admin/v3"; dstSubfolderSpec = 16; files = ( - 2910824F9A35756F9D049C1911E306A0 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - 6DBEA72946087E137005A0AF3FC4CACE /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, + 2DCC0A1BF58BB70B4471ECBB54EE4DFB /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5B375F7CEDD2DCA4B4784DFF2E4EB921 /* Copy src/core/lib/http Private Headers */ = { + 568A2EC212AF185DDBCDEBD7CC072A77 /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/xds"; dstSubfolderSpec = 16; files = ( - 8396524927BE33C6639F2EECE7F8AD3E /* format_request.h in Copy src/core/lib/http Private Headers */, - E58EA45BBAA215FDFBF0CCA2453FAA53 /* httpcli.h in Copy src/core/lib/http Private Headers */, - 2BC940B2FBD9A1D368906E20692AAEDF /* parser.h in Copy src/core/lib/http Private Headers */, + 9A610FF5EBA5134C0BF237956EC35BFD /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, ); - name = "Copy src/core/lib/http Private Headers"; + name = "Copy src/core/ext/filters/client_channel/resolver/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5B6B092895D90123C3DF78C50FDF5507 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { + 5691A93B0F24E7E535C45C392F7246EA /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3"; dstSubfolderSpec = 16; files = ( - B2EFEE0014E722C784145E705C4DC19A /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 575F6C0402E1F0C6CC11C9079D3B352F /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - F8C5415C5C9017491183B6833658E9D2 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - E92FDF36A4C3A04D19C0F26A90EBAD02 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - DD3A24CA76533FD6A7CE1D69F1042E8A /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - CA50E0E5869F4186AC4C0F079498F867 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 87157D88029FB936D49FDE1E8CCE30EF /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 29E23B66ACBDD0C03066F46065AB52C6 /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + FF93C4B0F1C14CB37738D90B2A48FCF3 /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 971B65C6F95AA778F13AB01AAD3E90E4 /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, ); - name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5C70499B2BC80B9057003EBE42937AE0 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + 5699161A16E00B8AE65480F4E89D447D /* Copy crypto/pkcs7 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pkcs7"; dstSubfolderSpec = 16; files = ( - 1BC4897707F243D62EAE99832A290618 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 1D5F6B0181523767E50DDA531F79817E /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - CCE16967B02FFB53CB64FF3FA80DAD94 /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - CB12E04E116354D1D0D6AE1483C20283 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + AB876C7ADCC70CE9FA8616B846816CD2 /* internal.h in Copy crypto/pkcs7 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + name = "Copy crypto/pkcs7 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5C86CA660D1BF6A9BA0FC26D539D2C96 /* Copy src/core/lib/matchers Private Headers */ = { + 56C448B4D63F6ACFB87F580834117380 /* Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3"; dstSubfolderSpec = 16; files = ( - A2D68AD627CC3D959695427188805291 /* matchers.h in Copy src/core/lib/matchers Private Headers */, + FF5DC778A3600CCE31B3ED89A40D1262 /* eds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */, ); - name = "Copy src/core/lib/matchers Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5C914CCD1FE99F99D1C7EEC0D84059C8 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = { + 5812C10EBF00DDABF3A50DA6F21DFB9C /* Copy src/core/ext/filters/client_channel/health Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/protobuf"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/health"; dstSubfolderSpec = 16; files = ( - BD62F54270791B456A75F64015A1B6E7 /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 90A2E34CBC527A2BFAF7F2E1D4E6712B /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - E29A3B32F2CB035E731AC07A9A33F806 /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - A44C9CF6A99C696AB1C3F2E3206172D2 /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 68455E1F2CD95B3C90B6EDAA9BA5D7FA /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 5C1F98398DE44F545DBB0A32230DC328 /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - BE8CBEA57AC7EC7A84E1F9A3F1A6A5D8 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 75CBFC3B6A99D01D27229D99EBE2C84F /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */, ); - name = "Copy src/core/ext/upb-generated/google/protobuf Private Headers"; + name = "Copy src/core/ext/filters/client_channel/health Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5D6118DE39ED2924BF571FB7921BD5B3 /* Copy crypto/fipsmodule/ecdsa Private Headers */ = { + 5830E8C40342044AAC556FF1589506B3 /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/ecdsa"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/fake"; dstSubfolderSpec = 16; files = ( - 2418E9C682C8C2DBD8B51AC54E31BED4 /* internal.h in Copy crypto/fipsmodule/ecdsa Private Headers */, + DCF343C50EDE8ABA09F7A03EB919EFBB /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, ); - name = "Copy crypto/fipsmodule/ecdsa Private Headers"; + name = "Copy src/core/lib/security/security_connector/fake Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5DB1C47CC77F546DD9B32DE1CE428299 /* Copy . Public Headers */ = { + 586706350B2062C1B2785F7575CE8761 /* Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/route/v3"; dstSubfolderSpec = 16; files = ( - B1F697990515F1F94EE7C54CC21B048D /* heap-inl.h in Copy . Public Headers */, - 806FBED66DCDF5364B13F23714F6F8DA /* idna.h in Copy . Public Headers */, - 24E2D935C694BFA314919E87F923F8CB /* queue.h in Copy . Public Headers */, - 3AD1DAA02C6D93FA7754EAE7D9D27AF6 /* strscpy.h in Copy . Public Headers */, - F5B87FA25F58A4BC57BF0AFE19E35C85 /* uv.h in Copy . Public Headers */, - 224460620E8A1FA039DC40CC5D6EEF01 /* uv-common.h in Copy . Public Headers */, + AAAD1C4E6B6C5CABE34E439D0B497546 /* rds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, + 61196B5304441428CD0C771AF3015591 /* srds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, ); - name = "Copy . Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5DBB1C18E33D720C6F52281A4B64E861 /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = { + 58D7F5D7B6E8EC03304BEB4C706242FA /* Copy src/core/lib/iomgr Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; dstSubfolderSpec = 16; files = ( - 61D27579BACB0DE6270B68F3220D7C4E /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - C817A85634BB6A4B4D65036A63A1E96F /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 4ADE3FDA8E8F1CBEF42327C0811020F1 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 8750F045E73FE48FCE15F01B3435D1D4 /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 929702649DEF8A20244D90EA2AAD79BE /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 2EB4EECBB7B9B2A5684E673DCE226D14 /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 022C564A9AF5533825C0C57F4DE248FD /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 2558196BAA852E3B0E26B60F5D1ABA45 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 7E748CE6716CE30787ADFE78A4128A07 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, + 042B3E26947546EED7A3BEEC9CEA49CD /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, + A2C2AF9AE8F37ABBBCEAA74D9BADC6E9 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, + AFDA29EDD3103641C57D84A6B54CF59B /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, + 8103FD2137BB596D8E6559ACCDC9F766 /* closure.h in Copy src/core/lib/iomgr Private Headers */, + 22183846B39EEFDCE18A8EF8E4027772 /* combiner.h in Copy src/core/lib/iomgr Private Headers */, + 59E9A68F6EE135F3CAF031E898ABB335 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, + 98E6847CA8EF72B4094B5BE0A488B0DF /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, + 04C33D66A9196D6911D58F9C32068B6D /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, + 89B0FBF3ED51D6339D086B9470D43123 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, + 49A0C55D425782B3FA57420969790368 /* error.h in Copy src/core/lib/iomgr Private Headers */, + BEC0FF36ABDC084C202CA3445B95AFD9 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, + B8220F6B8A6D6E8A784AC1F9885BC67D /* error_internal.h in Copy src/core/lib/iomgr Private Headers */, + 567650C64F3774F57E2F3B661FC985E2 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, + 67728A18D59154EFBC03D2C508913182 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, + A1F9793A9981C1F63C9F6D88FFF4F26E /* ev_epollex_linux.h in Copy src/core/lib/iomgr Private Headers */, + 490631526ECDC90C692E58372360F8E6 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, + B48CF765477F5D1EFD3B549239A43477 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, + CCD5C44961BCEE237839B03E14966363 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, + 9ACDA14A0A27B84C21E9613916145A16 /* executor.h in Copy src/core/lib/iomgr Private Headers */, + 2BC9C50F1A313D6795D2CA5936B3E328 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, + E131EE7CAEE6AE1715C345A98D93DEF3 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, + 5378A9473FBBC0954ABAD18C45743B68 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, + 3B656AB699D58E693AF36CFA4A645708 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, + A66EFD158414242312EBC23EFD86F3A8 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, + 5F46E577282F34EEFB4DCA330DC88113 /* iomgr_custom.h in Copy src/core/lib/iomgr Private Headers */, + 7AC92558298E1A24FE6CC17B5C6DD88F /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, + E5C60843365BD15B5FED7F77E280DCF7 /* is_epollexclusive_available.h in Copy src/core/lib/iomgr Private Headers */, + E821A0233B6DE57D2441EA3E85AB6223 /* load_file.h in Copy src/core/lib/iomgr Private Headers */, + 5268D61B316242F8D4F64C334F20DFC0 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, + E17CDC9DD4F61BE79FA7C37111C908BD /* nameser.h in Copy src/core/lib/iomgr Private Headers */, + 742F975F8CF48626B8BD7752B7CB178D /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, + A191B4A906B245C18A22B74882ED5F6E /* pollset.h in Copy src/core/lib/iomgr Private Headers */, + 414E7D8137139402E1D966B8E8448A7F /* pollset_custom.h in Copy src/core/lib/iomgr Private Headers */, + A806F27F78BA22B05ED1A97D30A017B7 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, + 1014A0A676D94E617A91E7AE233E9D74 /* pollset_set_custom.h in Copy src/core/lib/iomgr Private Headers */, + 02AAD7D9EB9F26E2D0280C075437FC48 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, + EE5DCEED40C62A3848FA3F3CE429FE2D /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, + 140BFC74118594932E48AA1275ED0FE8 /* port.h in Copy src/core/lib/iomgr Private Headers */, + 5DA7493AFEB4DA7213F559571E6989E7 /* python_util.h in Copy src/core/lib/iomgr Private Headers */, + CC048C23E09A282E0A0B1F1C59EFBA0F /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, + DA81D22662E9CC4C4B2B6EE9E67869CB /* resolve_address_custom.h in Copy src/core/lib/iomgr Private Headers */, + CA083FD9ED21E69EDFBC35CFF58DDE3D /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, + 7EF6A83953D43177CFACBA1C27E21AA6 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, + EF96058DC34B8E25B0A3A83830B6E410 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, + A78118F904204240E8B5C4F0C50367F9 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, + 6BDCAAE75E0C21BB6ECDC0B32AC44CBA /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, + E905AA34BA8E02149E9AA4C96BCA13EF /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, + 7BFAE4856B8EA5ED5F5BCB19049770FD /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, + E6BD9502602F63D293D2162B752F3A31 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, + F9B4181E2C53B740F0460A6D9F15239A /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, + 55DE328F3A3CC7F23512078C95CF3AF5 /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, + 523121B884AEE04094F864DF81F9C6C7 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, + E1FDAB4A68D22BED2FA5AB3565E6FE0B /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, + AEC8F9D640E4D5F0C857086B474A2D59 /* sys_epoll_wrapper.h in Copy src/core/lib/iomgr Private Headers */, + F99AF1A1CC12A6D676F006DEA457416C /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, + 7ACD87529C5C1AB3A755A7D87F9A98A5 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, + E8E9E0F500251E0563096E0BA7E9EBFE /* tcp_custom.h in Copy src/core/lib/iomgr Private Headers */, + 69307937F32CD640798AFA08EC25CC69 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, + 61DA6AB85488DCE6E4FF4C76A655990F /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, + B945D62D82F43E8B36A7BCAA77D8680A /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, + 073568A6AE7B6224D171AC975E1A9596 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, + 7F8D1A381FBAB4134E6611987DD882A4 /* time_averaged_stats.h in Copy src/core/lib/iomgr Private Headers */, + AB0A50F79D1AE61496737262675761C3 /* timer.h in Copy src/core/lib/iomgr Private Headers */, + BA02F470D30C9DB16F546338352C8F11 /* timer_custom.h in Copy src/core/lib/iomgr Private Headers */, + 6CA68AB8A300C3ABAC8443C55BAAA758 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, + A54F89C5AE853B295889F5455173F405 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, + 24ACF4826A72787CE2882BAD5E2ECB26 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, + D9C1E4A403D3E8A21E2BBB7AA31ECB68 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, + E35407EF325962D3445EA8FE728D42CD /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, + D0CB8838F4C0BC4BF2964947BAE15F6F /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, + 65301E3E9914AE20511EE6B704826B19 /* work_serializer.h in Copy src/core/lib/iomgr Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers"; + name = "Copy src/core/lib/iomgr Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5E1BDB79DBAB1417D50FBCDBCCAFA095 /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = { + 59A957FC919E44583B0FE02727B3C25D /* Copy synchronization Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization"; dstSubfolderSpec = 16; files = ( - 59D2B977B598DB71327F3C041336EC76 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 008AF439874C941D6E17F92ED5F2046C /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - DB15CF4C4B00FD255948FF49EA44C15F /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 3D141DEDA7432EB0DF61C55DA7DBAD44 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + D09DED8576CE37A93400C8CF7770F204 /* barrier.h in Copy synchronization Public Headers */, + F02CCB43088A51099B17E47555BED183 /* blocking_counter.h in Copy synchronization Public Headers */, + 9A4D2E02E728810A1398A75710B2717A /* mutex.h in Copy synchronization Public Headers */, + 38DDD6C39229BCAD100BF314C160CDE5 /* notification.h in Copy synchronization Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers"; + name = "Copy synchronization Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5E6CB48747C60DA28CEB04F2E047DA99 /* Copy src/core/ext/filters/max_age Private Headers */ = { + 5A679D05F562FD2281541073A3A05667 /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/max_age"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/server"; dstSubfolderSpec = 16; files = ( - 54408204A69DE0F8FDA5FB3A6738E6A7 /* max_age_filter.h in Copy src/core/ext/filters/max_age Private Headers */, + 9ED6D7A0A4C08986EB42C09B8A61981B /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, ); - name = "Copy src/core/ext/filters/max_age Private Headers"; + name = "Copy src/core/ext/transport/chttp2/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5FA463E00B301FF04F53FD7015B0476B /* Copy crypto/fipsmodule/rsa Private Headers */ = { + 5B7CE7F5D28F372FB71C2CAFAAE3F2A4 /* Copy src/core/ext/filters/http Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/rsa"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; dstSubfolderSpec = 16; files = ( - 11082BB596E4273ED910C25C8DDC0201 /* internal.h in Copy crypto/fipsmodule/rsa Private Headers */, + BF41B35603363527A1507CEF3E7E31D9 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, ); - name = "Copy crypto/fipsmodule/rsa Private Headers"; + name = "Copy src/core/ext/filters/http Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 645CB4149D0ED4E1C6E09CEF40FBF68F /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = { + 5BCABFD247B405621C131B2BC1084882 /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/overload/v3"; dstSubfolderSpec = 16; files = ( - FB6F11FA0354E9E4EABBA1871B4FD4F1 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, + 56A497E8A1958402A4F60AA0E1F711E1 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6470543A3B4BDD84336706FC9C715605 /* Copy src/core/lib/matchers Private Headers */ = { + 5D6118DE39ED2924BF571FB7921BD5B3 /* Copy crypto/fipsmodule/ecdsa Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/ecdsa"; dstSubfolderSpec = 16; files = ( - 09B4F78B0A5BF4ABEA46D1EAC23484FA /* matchers.h in Copy src/core/lib/matchers Private Headers */, + 2418E9C682C8C2DBD8B51AC54E31BED4 /* internal.h in Copy crypto/fipsmodule/ecdsa Private Headers */, ); - name = "Copy src/core/lib/matchers Private Headers"; + name = "Copy crypto/fipsmodule/ecdsa Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 64C01889F86B23D93859FBBFA3A1FBEB /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { + 5EC7CFEFDC515B0A7B02DD75F5078B7F /* Copy src/core/ext/upb-generated/envoy/config/route/v3 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-generated/envoy/config/route/v3"; dstSubfolderSpec = 16; files = ( - 170A2DD99A27F4D9C16DCF8C3B0F5C7A /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, + 6C62DE38711E5B6C39354882774CA824 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, + EA0A1DCAD22A82F76F33FEE0BB07CC68 /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, + 1AA969D66519DDAA17D7BEAFFCECCD3D /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/plugin Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 64E006A79A7446B2B5023E44418ABAC7 /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = { + 5FA463E00B301FF04F53FD7015B0476B /* Copy crypto/fipsmodule/rsa Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/rsa"; dstSubfolderSpec = 16; files = ( - 7FFAB155F73C4F4B09B15A5532062860 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 54305936E87DD7D3FB7CC1548A2923AE /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 49028A63B01EB3EAD612CC2C1C4F0085 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 82C1AE383BA5422F9562F38E1702F3AA /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + 11082BB596E4273ED910C25C8DDC0201 /* internal.h in Copy crypto/fipsmodule/rsa Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers"; + name = "Copy crypto/fipsmodule/rsa Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6503EAAB3BDEE297AD1D90B79904559E /* Copy memory Public Headers */ = { + 60F10D7B3AFCABACB3E4F75ADE8D65D4 /* Copy src/core/ext/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/memory"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; dstSubfolderSpec = 16; files = ( - 9A5AF424E98D4F0DAA274555925D87C3 /* memory.h in Copy memory Public Headers */, + ADA6F8D18D22882702FE5A581E91FA7B /* certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, + 801B2D4550A18A8AE2B49B977C897867 /* certificate_provider_registry.h in Copy src/core/ext/xds Private Headers */, + 05F0EFFEF2CE1E0D2190A548DE688C20 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, + 0E17DBE76EB288EDA103B3A7CB793881 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, + 07535904923A0C685D8B8A847673A4F1 /* upb_utils.h in Copy src/core/ext/xds Private Headers */, + 1A84573311603EF90D1FAFC47B2B49A7 /* xds_api.h in Copy src/core/ext/xds Private Headers */, + 24932CA35831E5FFBCE52A5951207FFE /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, + DF138C93690BD4E125D71648A4339ABB /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, + B7CDAF6EFD978B5836E1E7DF06DAEA4E /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, + 6AFDD1928E7BE1B6D92675817212E5F2 /* xds_channel_creds.h in Copy src/core/ext/xds Private Headers */, + E5DA6B2402C6A7B44B94FB89CF303A27 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, + 30ABE77D3DF6190408EED9F214A33E3F /* xds_client.h in Copy src/core/ext/xds Private Headers */, + 88A1BE3CBF1CB4EB3A9E208B9A13310E /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, + AF654DE9896A379E872A2EECD310DCC8 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, + D7D89FCEEA10193AFAED48B6347AA336 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, + 75E0C9BF6E1D1EE7E7F2D02DF3988B19 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, + 5B9DAD2800E1490E2800C4F773F6FACE /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, + 184CE7C18AD6D4D7C057A071F882CE7A /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, + 9B75616ECA0768F51B31D5396F314328 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, + A0D04685AEE47367F04F8143E7860D8B /* xds_listener.h in Copy src/core/ext/xds Private Headers */, + 7BDE3BE93E1BDA72C14825022FF4C78F /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, + 42106D942C01DBC97DC6BBF0B5480889 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, + CCE913A47AE759E7DB41AA9FCD2F55A9 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, + 1D31735692E74473433A455144133BA9 /* xds_routing.h in Copy src/core/ext/xds Private Headers */, ); - name = "Copy memory Public Headers"; + name = "Copy src/core/ext/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6541F28A94473452EB8F803C14098D3D /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = { + 612855A1149DB428B0A82FB8C3AA0E63 /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/status/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/load_stats/v3"; dstSubfolderSpec = 16; files = ( - 7F1EFAE0C8A9848E1DD9DFA11D1D521F /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, + 49E793E7B0AB075A529795C61C2BF0B4 /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6774D56889B04445FA16F262E74AB86C /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = { + 6344C60B040790ADCB279FDAB8133172 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/annotations/v3"; dstSubfolderSpec = 16; files = ( - 72CC814BED0DAC89E4E380B4E05B1844 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - F41A8FAF886C1BD4C7FBADA699038722 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - CB0EFF43A1CC87ACD4212556E83EDC08 /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 56DA8A943C0A543F9FEADA598A055EF2 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + 09A7218FA9DC070872D6458EBB835966 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 67F1964271929FBD4F4221925B32A932 /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = { + 64A5F4C1018CA7334F7FA0C3E444BC28 /* Copy src/core/lib/security/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/http/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; dstSubfolderSpec = 16; files = ( - C8D0043200EC398E10EF5F04C68E9930 /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, + 8C10B068D81F50AB5193E00449664A79 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, + A309E75C53C05940A2A8FAFEFA20A61E /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, + EEDE9ED40F3E6FD709ABDB56C5E2C8B3 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, + 5D296B9810D25B28F44646EC4A2A3B37 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers"; + name = "Copy src/core/lib/security/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 698B5B3FB489DADFE392B6D3C6E5447A /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { + 650EB3CC09FBC60E1B6F1EF120503234 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 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/upb-generated/src/proto/grpc/lb/v1"; dstSubfolderSpec = 16; files = ( - A3BE378E72C60F3227F38A5A7F5B1F5B /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, + 3E3E1CFF8651D7B38ECF1A8806B909AA /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/google_default Private Headers"; + name = "Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 69A3B1ED9372025D67A2B55E8255F81B /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = { + 65230F833A7F4A3557B48E5E22FF3E20 /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/cluster/v3"; dstSubfolderSpec = 16; files = ( - 8D67BBE4FE3D1019C54A0A30B2E46436 /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - DD5DEBABE0FAE2987FCF6148078B1E1B /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 910F306F4E5F48ACADB50B144ABBD838 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 8286E5882A446EAC280927F75E6415FB /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 07107742EC68BDF0995BFBDAF7A45EF9 /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 2D7DFF8A2FD8762364D1B389A8E6E48C /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - BCAE95CDF1264E3405205895F85A29C5 /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 39F152801BDFB84CBCD57FCD73A4C63A /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 86B2BB4023E997DB742C8ECC3D589988 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - D542C8146BF2820472B090E9D6F3BE72 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 5D1E21C6D2764A22845F9D8C74FEB45F /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 6973583BA3ED5EA6BA6C6152459C83D6 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 6C6C8259D5D2D9CA6CD1763C38EFD9A7 /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 90C72016A7D64DBC2C3BA26DF428B9FE /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - E342527BE8F5C5B46B40E2E4E23B003E /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 05BE1DB527FFF15635D30B9A8F40818F /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + 916D85EFB3CF479F72C884ED10CDEBD3 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + EA662DABA1F249D145DCC0EABD0CC061 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + 45E48E7EB02461142CB85C1B6A101E74 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6A32E1D276E93B5DF3D40CA05D13DD3E /* Copy src/core/ext/upb-generated/google/api Private Headers */ = { + 6523EA464828014D7B56539A05C4AE41 /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; dstSubfolderSpec = 16; files = ( - 8DDD984AD9DBDFF9B50793C96CA666D1 /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, - DF8F4D51FDB6498C9D32324A91D9428C /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, + 4F7190D7AA4D2CEA6EBDD654C1D1DA50 /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, + E41F1A58BB9B878CA96BB201D08D9DBB /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, ); - name = "Copy src/core/ext/upb-generated/google/api Private Headers"; + name = "Copy src/core/tsi/ssl/session_cache Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6A7BF68C8805FAB0983C5A5AE0DE2E14 /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = { + 660CA45C36A8D689BDB058DEF7ABDF04 /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api/expr/v1alpha1"; dstSubfolderSpec = 16; files = ( - 2EAE378C4149DDD299788BB1B4D37CCA /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 48DB67AB86768973DEE0BF7637C222C4 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 53A56CC4FB231ABB770E686311CAE620 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 18AC8C5ABF9599EFD53275E00FEFB9FE /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - A979AC9A1627DF21D514BCA8ECE5DDDC /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 017EA3313C914AD7E2B6B02E2FC7A0CB /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + CCC54ABF249FBD769748AEA2C5E30095 /* eval.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + 2FFBCCF9F2FEFFA79670138E60915239 /* explain.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + A4EC93C1900803C1918F0D53491E590C /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + B5F29360B429A6CE2A334DC06B425D10 /* value.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6B2D725944C9105E599BD694383DED1D /* Copy container Public Headers */ = { + 6680024773E282C691F6FE4CCEDC537C /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api"; dstSubfolderSpec = 16; files = ( - 052C6057C535CBD1FDB602577A416223 /* fixed_array.h in Copy container Public Headers */, - B827C7494D025728F01EF7225C09F5F7 /* flat_hash_map.h in Copy container Public Headers */, - 84B58B422BA67CCEA7900D072290514A /* inlined_vector.h in Copy container Public Headers */, + 7B415318EE477988C1087E91E9173502 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, + 3B3834C9FD8B2AB7C481746FA41AB826 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, ); - name = "Copy container Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/google/api Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6B3AB4B95BEB3E10AE650FD57CF23A38 /* Copy src/core/ext/xds Private Headers */ = { + 67CE152501C85E3A6C30D6AC5C1E8EF2 /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/discovery/v3"; dstSubfolderSpec = 16; files = ( - F859C0292C0DF002107026598A397AB7 /* certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, - F5FE31C957DE634FDF19429959092827 /* certificate_provider_registry.h in Copy src/core/ext/xds Private Headers */, - EE3F4790A101909B863846F1B378DD2C /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, - FFEF3582D73860461DCA6EEA6833DE20 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, - 2DF50F23C12F28F06D97F4B677F7189C /* upb_utils.h in Copy src/core/ext/xds Private Headers */, - A4C28BEBB6EC2A288475C7991ADB7AA2 /* xds_api.h in Copy src/core/ext/xds Private Headers */, - A968966EDDD5C9E68535309171E343B1 /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, - 9BD9FD4D70615C84A2249BBA1D3D8CE2 /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, - ABBCC3B964073BD63BE28D72085C2741 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, - 6C04BDD0277328C6E142BDD65A72EB1C /* xds_channel_creds.h in Copy src/core/ext/xds Private Headers */, - 9267ADBFA747D6887D6468CE929FBB63 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, - 040EA8A6E2A2057943767869877E5128 /* xds_client.h in Copy src/core/ext/xds Private Headers */, - 5673B443E0FE3169196FF9FEC1F0F93B /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, - 4C0F4AEB89206AA2EF06665974075533 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, - 7C2485FA43EB6D6499FFED3F4E27BA73 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, - 29DE95D6EF3A8C52C27B455210D611E7 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, - 31F726F4E3BD21E2E997ACCB89271E43 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, - 2F1D28D685FF1934D28326336EEF899E /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, - 06C80FD17802C5407522322E4A26B87C /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, - E8CA1B1B5B6E56FD0F99F67C0744A693 /* xds_listener.h in Copy src/core/ext/xds Private Headers */, - 395AD92FBD69B09459461E93AE76F19B /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, - 7A13DAA3B1EED3368AD3A297F49B3162 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, - 2F125F8768017A4D4713774DA469E850 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, - 7318D5BD2529B18D5687D66A3C40FBE4 /* xds_routing.h in Copy src/core/ext/xds Private Headers */, + A6F82DE6F3E419513D0D52D0697057C3 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, + 9C2D465173CDA80A17A78363FC848D6F /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, ); - name = "Copy src/core/ext/xds Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6BA21C475F561A3A5B3079EEF6C3D980 /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = { + 67F852D73F2B8AB5FB55BB2BF77A8CA9 /* Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 64C5425CCEB0C18FE1CE5FD183877173 /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 9933C7F1D16994D5BC1277FBA436E360 /* eval.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 0896C0BA895FF9AABF7BA33227E3621C /* explain.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - F4300E7E0D413502436EEAF2940BAD14 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 765A772FA8F5B9DCCF134E702C7F7835 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 24B8F50C2CA72891A400D758B64AD131 /* eds.upb.h in Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6C06E089AC2519F740AD756BBC96A64B /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = { + 6897FB12FE32BAB8775D657E00C9F76E /* Copy src/core/lib/service_config Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/service_config"; dstSubfolderSpec = 16; files = ( - 1C81F06733A036FEBEF8E79B74AFC8F4 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 9E7295C22D640DAF89A3D60859426A83 /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 516F50CBBA23AB911EA40886EB0397E5 /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 61296125C20DEC8FD87E8A759705947A /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - C3CF0C9893F2F2D97484F09E9C184F22 /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 87A23FDADAD0A30AFF226DA1029221F7 /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 914307172FA90149B0890581F16B87FE /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 47AAA4A1FCC0BBA8E9F45E40CDE5616F /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 2AF5A71159570499E2E8EC22E86FD3C3 /* service_config.h in Copy src/core/lib/service_config Private Headers */, + EA5FAFE1026A2009542F4D8DB85D9098 /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */, + 13B0D66794AFD7D5D8DBA4E3052E1439 /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers"; + name = "Copy src/core/lib/service_config Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6C4C5D92597ED3681F12901B915EFE89 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = { + 6942822D6418B515E63CBD576A7B7D28 /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/admin/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/rpc"; dstSubfolderSpec = 16; files = ( - 1A9E0883C222FE3D2E2DA4D07A1E5E24 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, + 7A0C425AB1BAC2A66A98B6AA9A6BF521 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/google/rpc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6C9E1A256438DCBA45F9D817ABAC1740 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { + 6AD2158EAE14D07E4678C91D82D97C80 /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3"; dstSubfolderSpec = 16; files = ( - 4FD1E9DF5D301B30D183FEF517F242B2 /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + BE7B390049ED34DD970019F06D9CBFEC /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6D3FEE5BA884C7DEA28E04976445A607 /* Copy src/core/lib/avl Private Headers */ = { + 6AEED967347C8CCB2FC77A275C570C67 /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/v3"; dstSubfolderSpec = 16; files = ( - 02798DA776B83B0CC2464CEB9C74180C /* avl.h in Copy src/core/lib/avl Private Headers */, + D630C033EDBA61AE547943F93179289B /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + E90FCA31644B2383146C7D754E79E5C1 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + 9A71000F6738DB427BAED401396B3304 /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + B27B107439939078C71E3C3D33E4FE0E /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, ); - name = "Copy src/core/lib/avl Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6D4CFD33B7C2D3DB0E40B69CA45E3986 /* Copy src/core/lib/resolver Private Headers */ = { + 6B090F4F7A086BBEFF3D5727DB0E44F0 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resolver"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3"; dstSubfolderSpec = 16; files = ( - 6CB34C661DE31A711954E56FC33E046B /* resolver.h in Copy src/core/lib/resolver Private Headers */, - 2C5AFB28D8FA8B3CFB0D4CD3640B9F16 /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */, - 3E7B9317522F4A97E692A0687E96C7C5 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */, - 8F39A3F74C955A81B4D93E1A69F42BF3 /* server_address.h in Copy src/core/lib/resolver Private Headers */, + DB8AA75AF392B999FBEB5A00C3CA0A42 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, ); - name = "Copy src/core/lib/resolver Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6D73DB8A5CBF9DC029C5F22287176564 /* Copy src/core/lib/json Private Headers */ = { + 6B2E83F6693540FE3E42B2F18785A033 /* Copy src/cpp/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/client"; dstSubfolderSpec = 16; files = ( - 956E70E0178E3C45FF672DDB47B79F32 /* json.h in Copy src/core/lib/json Private Headers */, - 0CDB8B9428CACAA498AEEA594F4DC5EC /* json_util.h in Copy src/core/lib/json Private Headers */, + 19A08D4B7C1976DEE6F557B4D49E4D46 /* create_channel_internal.h in Copy src/cpp/client Private Headers */, + 67921E11A5611FF644251E0860893847 /* secure_credentials.h in Copy src/cpp/client Private Headers */, ); - name = "Copy src/core/lib/json Private Headers"; + name = "Copy src/cpp/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6D8DB5D9947F8E72F3586DEB6322A0A4 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { + 6BD09F1AA5655E0EF2B765AEB5650CC8 /* Copy meta Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/meta"; dstSubfolderSpec = 16; files = ( - 67F72A5E5E572C98BEB4DEF80AAF1055 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, + CF81D9B152692661B54E3D55FAA1ABE1 /* type_traits.h in Copy meta Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; + name = "Copy meta Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7052E961FD09C7834ACE488777F3A4F4 /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = { + 6C3D93DC3956B50C8AC01A8BE079B078 /* Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/annotations/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/listener/v3"; dstSubfolderSpec = 16; files = ( - 1E5E876423B32321347DA17B58F99BEB /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, + 34774DC37FD0F6FF79524E6DEE41E47C /* lds.upb.h in Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 70ACD2CAAC64A4A8B266C8D0211C5D39 /* Copy src/core/lib/channel Private Headers */ = { + 6C914DF32637D3EDCF5861DA769C8940 /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/trace/v3"; dstSubfolderSpec = 16; files = ( - 8483B987EA1CDF7456066C2FD3869548 /* call_tracer.h in Copy src/core/lib/channel Private Headers */, - EDA675BEBDEF735A14F3FAE97EBB011C /* channel_args.h in Copy src/core/lib/channel Private Headers */, - 60D266119C1CE6C62FB4A905E35E5249 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, - 6989859E32D2719B6102D6F74C817389 /* channel_stack.h in Copy src/core/lib/channel Private Headers */, - 8D98877514A3FEB5DFCE0CADE4C2DFD5 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, - D408DFB685E3243724E1C7C5F42B85B8 /* channel_trace.h in Copy src/core/lib/channel Private Headers */, - 351E92984B4FCECE03B8F274A7FDA6D9 /* channelz.h in Copy src/core/lib/channel Private Headers */, - C698C0883BC937F0FC47EA15B21907D9 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, - EE1367452032B741523B3F552AB1FE27 /* connected_channel.h in Copy src/core/lib/channel Private Headers */, - 8C7E7111427C45DE1706D6AA76228CDE /* context.h in Copy src/core/lib/channel Private Headers */, - E12D2C8A2E1FBF13173E354AD29A5B60 /* handshaker.h in Copy src/core/lib/channel Private Headers */, - 984B490B182541C6806DDD227630B1CE /* handshaker_factory.h in Copy src/core/lib/channel Private Headers */, - 197B64A8519AF7DAC853D2E1B85E3789 /* handshaker_registry.h in Copy src/core/lib/channel Private Headers */, - 3A70E47EBCBD20406EB657D9BD8E53D5 /* status_util.h in Copy src/core/lib/channel Private Headers */, + 2F015485A77DD62404F7160A1434BD69 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, ); - name = "Copy src/core/lib/channel Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 70CCFD72E666DA594EBBE9B5F311421F /* Copy src/core/lib/security/credentials/fake Private Headers */ = { + 6E6A9FE80256864AFB9848ED3FF8D298 /* Copy strings Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings"; dstSubfolderSpec = 16; files = ( - 752CBC047F3DC81D067767391F81EEB6 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, + 4B6BA8CE8ACBC2110C586042785C590B /* ascii.h in Copy strings Public Headers */, + 9F21852608D2388CAC2D7CF13AE03C44 /* charconv.h in Copy strings Public Headers */, + A6F783AF11C2D9A94785C50A6C8B3008 /* cord.h in Copy strings Public Headers */, + A8640D1523AE433F159825EFA53D5622 /* escaping.h in Copy strings Public Headers */, + B622C93D87F5F8C0AA6B38C6D1C1B568 /* match.h in Copy strings Public Headers */, + 9DC5A2152C2AE0D0599800EAD648F694 /* numbers.h in Copy strings Public Headers */, + FF2939C4C35ED575D91053FAB875C89D /* str_cat.h in Copy strings Public Headers */, + 68DA797782CEE6D3564785D1C7907D88 /* str_format.h in Copy strings Public Headers */, + 1615E48EDA18E1FE297C2FC7E6BBBF03 /* str_join.h in Copy strings Public Headers */, + A2ED43787C41E8E91D523C890789E609 /* str_replace.h in Copy strings Public Headers */, + B24276FE2DC54A7EE3626404574A1DB5 /* str_split.h in Copy strings Public Headers */, + 232C72B1C2353204382466A18027E059 /* string_view.h in Copy strings Public Headers */, + D99526DBE08C688B65F856FE6B2BAB2A /* strip.h in Copy strings Public Headers */, + A9EE15366CF3D221185C03F472194DC5 /* substitute.h in Copy strings Public Headers */, ); - name = "Copy src/core/lib/security/credentials/fake Private Headers"; + name = "Copy strings Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 71A048A694DCA313478479614DBA7B86 /* Copy src/core/ext/transport/binder/wire_format Private Headers */ = { + 6F8EFBA8C495A13B2238A7D679B4E84E /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/wire_format"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/type/v3"; dstSubfolderSpec = 16; files = ( - F65426FFA46BE57E134E0CFFF7F7484E /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 2F9A1F78EE9565E6B7F7581BADBB3F62 /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - A1E11A80DEE1F24DD198828CFADDFA99 /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 362C4391683691CA7B7410C27B03BD2F /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 77816D5644EF1E18BF67A88F4B363EE1 /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - FABF7876128BA0B844E8E13698B019B9 /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 3195A7F673AD1EE12086600496947B6D /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 364AB4E764C28EACAEE59760ED5E9DC8 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, ); - name = "Copy src/core/ext/transport/binder/wire_format Private Headers"; + name = "Copy src/core/ext/upb-generated/xds/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 72211A3AE06A781D4609A9C6D93EF7F4 /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = { + 7122A3CC397FB77E066A8611C89FF222 /* Copy unix Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/trace/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/unix"; dstSubfolderSpec = 16; files = ( - 2F69F9F158422BF84D07A5C1EC07866B /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, + C81239B98E1ECF3ECBBCE2C4B49BD627 /* atomic-ops.h in Copy unix Public Headers */, + 83DE50721B7E74FAE52B4159456CD0D9 /* internal.h in Copy unix Public Headers */, + 7F5437CC0174EE48855FE8F86131E142 /* spinlock.h in Copy unix Public Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers"; + name = "Copy unix Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 726A78B325FE7CAAF06CBF92C7A65FD9 /* Copy strings/internal Public Headers */ = { + 717FD5CE92DA4E5DD922E573856EFF64 /* Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/listener/v3"; dstSubfolderSpec = 16; files = ( - 96BEFAB79E1689E4108639FC2E4FE1DF /* char_map.h in Copy strings/internal Public Headers */, - 33EF2C27938B95B8615D3B7FFC50BB42 /* charconv_bigint.h in Copy strings/internal Public Headers */, - 0BEE19BF90920C1389334C44803B5B79 /* charconv_parse.h in Copy strings/internal Public Headers */, - A7DE0D42FDA94E73EF1538F31AA1B968 /* cord_internal.h in Copy strings/internal Public Headers */, - A45726282F41190A49DFD9833DC1CEEB /* cord_rep_btree.h in Copy strings/internal Public Headers */, - B5025F2F5AD5F141B42FE86BE5AB38FB /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */, - EEEB206FD35C9773A01DD4923DB2080D /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */, - 9513A735DD413DBE4DFE1874EEA8F8D7 /* cord_rep_consume.h in Copy strings/internal Public Headers */, - AFC719723868DEE9E08AF52ACC6E2E15 /* cord_rep_flat.h in Copy strings/internal Public Headers */, - 49D0E8BEF718E228181AE8454C62867E /* cord_rep_ring.h in Copy strings/internal Public Headers */, - D3FDE130E63028DCFD38E8A93EF4FF34 /* cord_rep_ring_reader.h in Copy strings/internal Public Headers */, - 87C8ED6038417B5624813BCC5A23AC99 /* cordz_functions.h in Copy strings/internal Public Headers */, - 224A475CEFA911C8327DFBACB9C014AF /* cordz_handle.h in Copy strings/internal Public Headers */, - D2CE33FF60B1E5F32925A400F3F623D5 /* cordz_info.h in Copy strings/internal Public Headers */, - D1252B9C0CD4346C42D2F629F7D088C8 /* cordz_statistics.h in Copy strings/internal Public Headers */, - 797AC89FBF2977E05F4AE77B4E16C662 /* cordz_update_scope.h in Copy strings/internal Public Headers */, - E47A33C70EF77EBC16553229C68F0023 /* cordz_update_tracker.h in Copy strings/internal Public Headers */, - 7BB97DD828534B75EEDBBB1D080728D1 /* escaping.h in Copy strings/internal Public Headers */, - 1A77BF593555926456FB041B3DA60686 /* memutil.h in Copy strings/internal Public Headers */, - 23DF611490D0C1E27C37F3A891C2E6C7 /* ostringstream.h in Copy strings/internal Public Headers */, - 00783C0E657F9CB87D88356B3B1FD113 /* resize_uninitialized.h in Copy strings/internal Public Headers */, - 296A025AE1D19088023BADE56AAD3A78 /* stl_type_traits.h in Copy strings/internal Public Headers */, - B971A7F51671CF549767FF9839246BB5 /* str_join_internal.h in Copy strings/internal Public Headers */, - 14E64BDF9086F1F49813916905D4E303 /* str_split_internal.h in Copy strings/internal Public Headers */, - C278E2840FB89822B8F46A3A4BA97518 /* string_constant.h in Copy strings/internal Public Headers */, - 9256FDD12B5696E00216001552E95011 /* utf8.h in Copy strings/internal Public Headers */, + 8C80E8302533DAF172D30E4C38B0A714 /* lds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */, ); - name = "Copy strings/internal Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 72875C8035BCA49DB63E517A9352BED3 /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { + 720C6C02D81AA99164C38E03EAA478D2 /* Copy src/core/ext/upb-generated/envoy/config/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-generated/envoy/config/rbac/v3"; dstSubfolderSpec = 16; files = ( - EC335F0AFC095C984FD05BABE9D709A1 /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, + E4274C6279BD844B46C3479918BDDE1F /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 73D8858DCB038CF6D8731CCD40A5162E /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { + 72FE5336D3451EBA98B24CDC625984BA /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/overload/v3"; dstSubfolderSpec = 16; files = ( - F18B1F4324D529B8F8DB87CA23749649 /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - 349C5DA9E68EC4338D5427DD0B070D74 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, + 966DDB3BD0EA08915FF8AC0C7C567B2C /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, ); - name = "Copy src/core/tsi/ssl/session_cache Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 74E2BD9AFC6F4CD8CEE9DCB09CA59802 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = { + 739DB7A54FD61CD99BF848F215DCFFCB /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/frame_protector"; dstSubfolderSpec = 16; files = ( - 63E9C8DEA0F1F0B19A0D5B73E157DF2F /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 195CD409B98301020160D17D5256F7F9 /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 7BAA10CD5E855A4C698A51B182D3911A /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, + E52299CEF848F6E934AA9C89190DB7D7 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 74C76EE0FD67F6DD5FB0A0781C846484 /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 233D8837D00F0F072FC7E6FD27E75444 /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 1A6BE2423D21D9643C17B7255B8EC833 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 52798D14FC923F416113CF9A989DF3FB /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/lb_policy Private Headers"; + name = "Copy src/core/tsi/alts/frame_protector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7509B2926F7DEF8B5EFD7BE589CDB525 /* Copy src/core/lib/security/credentials Private Headers */ = { + 73D641C9A5075E490C45C132AB8128F7 /* Copy src/core/ext/upbdefs-generated/udpa/annotations 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-generated/udpa/annotations"; dstSubfolderSpec = 16; files = ( - 14DBCDE47459BE7932E810600CF07EE5 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, + 84E1BBDD2156E86CC054E89ED881483F /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 03FE9643F3A55E7711D9A3370EF8F996 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 4E65C657C882FC79C0E4826C0E5E0A8A /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 0919519C7113DFDDDCB907510797B1BF /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + D5AB0C996F49784530A0921A472BD397 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, ); - name = "Copy src/core/lib/security/credentials Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7539A9B6B8BA0F8AFFA022338EAB4513 /* Copy src/core/lib/security/credentials/xds Private Headers */ = { + 745EA355228B3CD12BD58B9036095723 /* Copy src/core/lib/slice Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; dstSubfolderSpec = 16; files = ( - 37A5E580D5500BB84791993C39F5BAAB /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, + 4CE62B6C4DB7D7A8110D5FF7E4EE9FC7 /* b64.h in Copy src/core/lib/slice Private Headers */, + 51C1989FB39643EE7D913950E4DF0112 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, + EF89C90F8CC9A379C304B4CBC87D9CA0 /* slice.h in Copy src/core/lib/slice Private Headers */, + 25C2C981915F94D1611AADADA4FCABC4 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, + 2A01326B691280E59FD1A313B8CF2E91 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, + 388868E73B510AF358AFF3ECB3E145A9 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */, + 584DF964728E6ECB8E532E52FA093C0C /* slice_split.h in Copy src/core/lib/slice Private Headers */, + 9D7F43F40A551A4500A67D9FC91B88CE /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, + 218644A418D508457D75AF08A2AEE440 /* slice_utils.h in Copy src/core/lib/slice Private Headers */, ); - name = "Copy src/core/lib/security/credentials/xds Private Headers"; + name = "Copy src/core/lib/slice Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 76323DF086E46D9622403967B42729D9 /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = { + 746C29E8DC5A1589CF48AF4D958AEDB2 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api/expr/v1alpha1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/http/v3"; dstSubfolderSpec = 16; files = ( - 1D930C588FB22AEB478C27C40B0AF6F6 /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 3062731089F8227222302D015895FB79 /* eval.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 054FFDD34CD638A136A06F1A22DDB196 /* explain.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 0448FE8B6C651B9A02C1320657737C27 /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 5E7F041059944D8625C1B5205A467F4F /* value.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + E00CD9213BED21C24087EC854E581D6B /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 765A79D4E5415B3911F31ED632F71000 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { + 761CC55BF6253EB2A3678AC8986DA2FC /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; dstSubfolderSpec = 16; files = ( - DC9321CA39455E2EE09B8C48EDFC5595 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 706674995B9BFB2DB6C9D9728767640C /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/plugin Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 76AFA26A09E9A0BBDE9D5FECD886FC2C /* Copy src/core/ext/filters/fault_injection Private Headers */ = { + 76EE89FEA4B0EF02E81FDC12A9CB531A /* Copy crypto/pkcs8 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pkcs8"; dstSubfolderSpec = 16; files = ( - C01A438B2CD9ECD47D556A14BCE309C8 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, - A73D97A056614FB5855A0239F5B34D28 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, + 815B4C27156D443E0E988043A8765B40 /* internal.h in Copy crypto/pkcs8 Private Headers */, ); - name = "Copy src/core/ext/filters/fault_injection Private Headers"; + name = "Copy crypto/pkcs8 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 76EE89FEA4B0EF02E81FDC12A9CB531A /* Copy crypto/pkcs8 Private Headers */ = { + 76F618C01CFC3143B55B2244222C0214 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pkcs8"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy"; dstSubfolderSpec = 16; files = ( - 815B4C27156D443E0E988043A8765B40 /* internal.h in Copy crypto/pkcs8 Private Headers */, + B3004E3EEC1622F9360E055A6D98C8B3 /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, + DCCC4DE79EDB3B282B6D988C93110E37 /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, + 4C3ABD9326C75C5418DEE6252DAAE62A /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, ); - name = "Copy crypto/pkcs8 Private Headers"; + name = "Copy src/core/ext/filters/client_channel/lb_policy Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 76F8901072DFB523C332F54A060BEF3A /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = { + 778B87E74BB8ED418817CCBA0D2701F6 /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; dstSubfolderSpec = 16; files = ( - 2C775EB392FBB7CB4AC8BF371D22591F /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - FE13B2C55D8497AF7CC53257A32F4463 /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 5FA820F203E8D9F09D1EC41F3F76D2B8 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - F186E3878A580E8D388F9E63CC2D0A29 /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 581B57536C413357B1CA93091BCF7A51 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 0263F3B8DD0C90551FF48A46DA7E5A1F /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 3D5E643008DEF9004143B948E9A63D6D /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 978A0E2367365AF83B7A564FE5F05AB9 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 556B5B8D8AE0C81D331AE8F7057B8203 /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, + BA4CBBC6824F9392A9EB8A79CF443DDD /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers"; + name = "Copy src/core/ext/filters/http/message_compress Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 7796E089F4B5173EFD422AB0C08F6555 /* Copy crypto/fipsmodule/aes Private Headers */ = { @@ -8907,476 +8926,410 @@ name = "Copy crypto/fipsmodule/aes Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 780BE108967F5118B00BCC27138C82A9 /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = { + 7799452045F8F6FBC8EFF8D7C6D40455 /* Copy src/core/ext/upbdefs-generated/validate Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/udpa/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/validate"; dstSubfolderSpec = 16; files = ( - A76D33B15FB504A9BE0CC88C9059C2D1 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - B13E9E62CAFB51768A23D4C0236B546D /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 79436229FF9F04F1C28E7218F6B3C0E7 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 0EF8CF6BC1349B7AF9737001BCB81AED /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 470AF9D33A0215CD776813F9931EC4C1 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 19A544D8A14B6BFD93225A4176830B04 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/validate Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 789398BB53EBC9AA18E660C4088B3E78 /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = { + 781B271EC924D65BFC7F31E5F1F9E9A1 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3"; dstSubfolderSpec = 16; files = ( - FE989BA3A961210F9E073FC9BAC99C8D /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, + E3C1B3F7EFEF165A65C1307A2F53F57A /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 78A67BF2EDD2E2BF70F482F2C22F1FA2 /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/metadata/v3"; - dstSubfolderSpec = 16; - files = ( - D82BEF3CC266ACC5AD2E02C33A4AB4EA /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 78DAF31B5B6354F035407817F06E5D63 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3"; - dstSubfolderSpec = 16; - files = ( - E57B2FC1B869B46A17CA96F69C780130 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 793618019645A41514E71473E7986526 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 63888BBAA7A88DDD257DDA0D2F954EC7 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7957DC8442992427EB17DD6B8BEB73E2 /* Copy status/internal Public Headers */ = { + 783627268109E7F8FD5FECAC45D3F80B /* Copy random/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status/internal"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random/internal"; dstSubfolderSpec = 16; files = ( - 2477E06757B202BA418324BDCFBB0F84 /* status_internal.h in Copy status/internal Public Headers */, - B081EB34B3E72298B9895EEACB276202 /* statusor_internal.h in Copy status/internal Public Headers */, + CA80C445903710D8472F56C74E2D70E6 /* distribution_caller.h in Copy random/internal Public Headers */, + 22ABF0739E6C9D7DDF27F203D10AC0DF /* fast_uniform_bits.h in Copy random/internal Public Headers */, + 1BC8C4C433F7A324411E4EDA0F354FF5 /* fastmath.h in Copy random/internal Public Headers */, + CA01BB80B63FB578C7212F783B6647C2 /* generate_real.h in Copy random/internal Public Headers */, + 6B70A79FDE913A24237A8D459ECF4A3E /* iostream_state_saver.h in Copy random/internal Public Headers */, + 78BF20DC61FF1D64DE99004CD63B913E /* nonsecure_base.h in Copy random/internal Public Headers */, + 16872431F8CE1EA5C5110234CB3ADE2F /* pcg_engine.h in Copy random/internal Public Headers */, + CF3AD4DCB3FD9D34EA2F8D93EA5B4512 /* platform.h in Copy random/internal Public Headers */, + 8DBB3229E72BA495418C4E9FB8F20DE8 /* pool_urbg.h in Copy random/internal Public Headers */, + 8BEBCD844C80E7ECC2E01AA1749E221C /* randen.h in Copy random/internal Public Headers */, + 56519FD6A8243B35A209FD1C9245340E /* randen_detect.h in Copy random/internal Public Headers */, + 1909AC7D85BC2E5191963CBAECD21859 /* randen_engine.h in Copy random/internal Public Headers */, + 61C2755F3BE7D5B899B588693B282E55 /* randen_hwaes.h in Copy random/internal Public Headers */, + E9135C960E23BE8890178FBA4240BB74 /* randen_slow.h in Copy random/internal Public Headers */, + E2A085AA0734D274BBD12E60DC625270 /* randen_traits.h in Copy random/internal Public Headers */, + 42977F158BFD7C862EA897E37F054157 /* salted_seed_seq.h in Copy random/internal Public Headers */, + 28EBC1A03EC49023493AC7BF58DF8D25 /* seed_material.h in Copy random/internal Public Headers */, + 260B94B234569F1B48517A742E3DF098 /* traits.h in Copy random/internal Public Headers */, + 8CC663D28D7CA303C209D2D04782BC98 /* uniform_helper.h in Copy random/internal Public Headers */, + 1D58F33584F578FC258C01D944BE7A01 /* wide_multiply.h in Copy random/internal Public Headers */, ); - name = "Copy status/internal Public Headers"; + name = "Copy random/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 798D83DF69F3FB830ACD9F43688DD145 /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = { + 796566CE78A7EF7400ADA893F8683126 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/listener/v3"; dstSubfolderSpec = 16; files = ( - DAC5BB21298CAD4448461BF3C3570386 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, + 67E90CF871ADFF33228EA1FDC4D72A7E /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + D9C1C7510E6CFF16D02DF9D288B9CFD5 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + 1FA5900B5DCACAD58508C8288271D777 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + 5B906EB9D974D476148998F01B127EEE /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + 91843653B90E2C41631C640715F24DC2 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7A52F1FABE338BD957B290F1A3359747 /* Copy src/core/ext/upb-generated/validate Private Headers */ = { + 79AE5341EE27E7996AC225E3D12A9E37 /* Copy src/core/ext/filters/deadline Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/validate"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/deadline"; dstSubfolderSpec = 16; files = ( - E0BA53DE812D1E3CEEA33D4CF350F5BC /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */, + DE715D40708B14E46D1A93BCEF41A6CB /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, ); - name = "Copy src/core/ext/upb-generated/validate Private Headers"; + name = "Copy src/core/ext/filters/deadline Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7A68994A13EBE5A6C4A52AA64458078D /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = { + 79BD25DC74DD852B6397F9087B8B76F9 /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/status/v3"; dstSubfolderSpec = 16; files = ( - 003D2A27B2D79F87B26E81C1D9B814E1 /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - 7ECF9B32BEF95D702C79F4B1BE5F3030 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, + F874F05F8E98C15D43513EE49C3288FF /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/annotations Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7AC3D4666C14D12E55111400B95A253B /* Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = { + 7A3F55AA6E406AD4AAECF28F7620EA44 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/route/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/discovery/v3"; dstSubfolderSpec = 16; files = ( - F78D1E1EDD611D5F0A34EA2B52B1FA1A /* rds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, - 3ECEA3120272B343576591B10051F4B3 /* srds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, + 4F22AF89EB1998AD8F01A8D7F3ED1ADE /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, + 39D707E5998BD32CE228C41E1EC01399 /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7BD2FE3423D3E2AD35F849B587413EEB /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = { + 7A9F80C0516AD3E41A4AF1ADE93C65DE /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/type/v3"; dstSubfolderSpec = 16; files = ( - 4C9078D8D8DF63DF1CE487D694F71CA1 /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - E1B9D4669B2703436FFC6C8CDFDA6307 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 86EEAA998A1E3B9D0FC99E2A28AD6B8A /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 42A75F168A329E4EAE35E2D2629613FC /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + 72ADF246CC96D3217EDD0D99EE92BA69 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7C2EDD7C0F369CB6E2356FB4B9E318B1 /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = { + 7AA88B6B4D829390916C31F9061132E2 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/protobuf"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/metrics/v3"; dstSubfolderSpec = 16; files = ( - C5D4C1A7DDBB976CAA4B9279C05B79C8 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - D6F51E7AC3357B80BCE3BE77F0F391AE /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - ECABF3EA0850E2DAE6F081246E2B7010 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 1DAC20C4D620079751A7E5F867A41CDE /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - DF31812E4A8DA11E0160F7504826654A /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 1B5C25D5D4CB83384F8CBD7EB04689C9 /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 93FB4298FD5B4ADF63F53F24F5F077DB /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 02FDD5E4A6B3A9A96115905DDF80B3A7 /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7D0C73DE0F026C347AC836DCABD3B3C7 /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = { + 7B15B35313485ECBE477205264EB73CC /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/tracing/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/overload/v3"; dstSubfolderSpec = 16; files = ( - 6859006F7551378AE5014588CF897F75 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, + A1E376B8B36D360EA430653D1E306AA5 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7D152869EFA92F3B5C9D7C84659AD8DB /* Copy time Public Headers */ = { + 7B1E55E414756F5CCC19F47FE1143462 /* Copy security Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/security"; dstSubfolderSpec = 16; files = ( - 12A3F85937AC232374455ADD3AAAFCF1 /* civil_time.h in Copy time Public Headers */, - 65C523E19812723857DBF5124DEE8892 /* clock.h in Copy time Public Headers */, - 08E8DF501B638FA23E997257BE088FC5 /* time.h in Copy time Public Headers */, + 5CD9AF79B3C1ABB20ED2129296BE5BCD /* auth_context.h in Copy security Public Headers */, + C753F604932823A8B2F777CFCC0F5077 /* auth_metadata_processor.h in Copy security Public Headers */, + 524481619DAE3DBC0F463F422897CD45 /* authorization_policy_provider.h in Copy security Public Headers */, + 7DE7DEF0BE6A5E8EAE15612A4560B342 /* binder_credentials.h in Copy security Public Headers */, + 7E5A6D014BD9662FF109CEB649D339C5 /* binder_security_policy.h in Copy security Public Headers */, + 7C441F3217A67D99C73008BD06CB3748 /* credentials.h in Copy security Public Headers */, + 19B26711EF3C0562EE62F3E1015DE2C3 /* server_credentials.h in Copy security Public Headers */, + DF1BB8DE63F4E6BC6B65ED1A228DFB4D /* tls_certificate_provider.h in Copy security Public Headers */, + 998FF50326174A4A3177FC4CD6C6E301 /* tls_certificate_verifier.h in Copy security Public Headers */, + 529937041E3E81BF75D238048C0126DD /* tls_credentials_options.h in Copy security Public Headers */, ); - name = "Copy time Public Headers"; + name = "Copy security Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7D9447A9440EADC1D0A6B88533CFF088 /* Copy src/core/lib/iomgr/event_engine Private Headers */ = { + 7B58C4CDF5499F9F14032D311F1331F6 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/event_engine"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/listener/v3"; dstSubfolderSpec = 16; files = ( - 1E9B82508B7C087B8F825AD2D57CDED2 /* closure.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - 87DF9407A4833F01F9A515C191A65004 /* endpoint.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - DD10CF9DB83AF7E8427DBBAC301F0174 /* pollset.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - AA021704097EB55126FE0799C389DE75 /* promise.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - C7A27ECC9D34E7407D9C8D1320005315 /* resolved_address_internal.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - AEA7635D7DE1B2BF2C532043EEBCEFF2 /* resolver.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 53D2B2BB3910D93E4B8CFED30DB013E3 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + 55D90732A43723CDA7AB6AF89628EFE9 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + 0E1DD6EE580C8E8C0712980D21DE92CA /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + 75FC6F45135B959471A58AFF4D971039 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + 0E0A558221C10A9C6BA4BF30B08A1974 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, ); - name = "Copy src/core/lib/iomgr/event_engine Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7E3F61644965D15F1942A9595EA3CD7F /* Copy src/core/lib/security/authorization Private Headers */ = { + 7BBFD5A270FFBAD05C7167D13CCC321E /* Copy synchronization/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization/internal"; dstSubfolderSpec = 16; files = ( - B6D88E84E321B6EACE85A9DB62BA99B6 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - CD2E036B7AD86CB0412ED7C2A0417292 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, - 49D9B5F35EA0D0829AC7774DC34FA2D7 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, - BFC19F1B679251E483C898E3FB81B3BB /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - 12A42C1F16E69A95BDA6F94270168CAA /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, - 14976B67130BEFF9C6D9C1F14F2F8DE3 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, - 856CDCFA3B2647A4E80746A08CB9A2DB /* sdk_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, + 77914A2ACFD1B1BAD0B94D3A566641A3 /* create_thread_identity.h in Copy synchronization/internal Public Headers */, + AC1D9AB21A98A6334548A78BD853E63C /* futex.h in Copy synchronization/internal Public Headers */, + CC5BD17E284054B940F1DC6CAA83628C /* graphcycles.h in Copy synchronization/internal Public Headers */, + CD8C447E8EA04039834B19554CFEEB98 /* kernel_timeout.h in Copy synchronization/internal Public Headers */, + B3FF643D0E636CC841C1E11009429A8D /* per_thread_sem.h in Copy synchronization/internal Public Headers */, + 0DC8742BA8F275C7FA6980363765DBCE /* waiter.h in Copy synchronization/internal Public Headers */, ); - name = "Copy src/core/lib/security/authorization Private Headers"; + name = "Copy synchronization/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7EAAC0D213C91B4A8A16239EB59B116C /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { + 7BEE304CA83BC0A6EE6F21C660DA646B /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/cluster/v3"; dstSubfolderSpec = 16; files = ( - 1A6C5112E7EE4C9F5B191769A697FE53 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 9205A64F7B5C660D7E680834B07EF7FE /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + 1AFDBA707DEBFFA3D3A2F8023E58EC05 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + 8188C73286936222444BC071A7384D1F /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + DF3F59834BE460CA6E062B2DBC630300 /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7EBD6B66BB907E471E0069DECD821519 /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = { + 7D2464680A72D6F96F10E6CF4A3B3C9D /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/listener/v3"; dstSubfolderSpec = 16; files = ( - 0FC4FBE57B13540F0ED0274207816139 /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - FE5D5564A10D13BADB650751C7C6DE25 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - CAD4B5B7D061BB7BFCD89976319693EF /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, + 756781C8FF68C23FC7FCB878F300FA0B /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 8A64EB50601A4977C5B63060BE08EC35 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + A6DA7769F254C97BF87299BD9B05C686 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 7E7170AE488AA43A9E66A322B155C0CC /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 825D1EAF9D997E551EDDBB5ABBF00E2F /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7F731C79FAE083E79C99374E503D5E2F /* Copy src/core/lib/http Private Headers */ = { + 7D949254950437598BC1F8165B63AA1F /* Copy numeric Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric"; dstSubfolderSpec = 16; files = ( - 8406F6332F59CB852D12CA64C7D06098 /* format_request.h in Copy src/core/lib/http Private Headers */, - 983A4E7FBDD9D7F672254B83FFAEA349 /* httpcli.h in Copy src/core/lib/http Private Headers */, - BDE5AAEFE9D7005BF278668EABBD5D15 /* parser.h in Copy src/core/lib/http Private Headers */, + 26F1843FD02D80D1F443D59FB92FD57E /* bits.h in Copy numeric Public Headers */, + 4C74FA3E2CB21AAD0BF02A20F90E4EF5 /* int128.h in Copy numeric Public Headers */, + CA85AE100288A6BE1303CD206149FE86 /* int128_have_intrinsic.inc in Copy numeric Public Headers */, + AAE6B039E446652F1DCAEDD307DE7CA0 /* int128_no_intrinsic.inc in Copy numeric Public Headers */, ); - name = "Copy src/core/lib/http Private Headers"; + name = "Copy numeric Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 80CD732669FA7B9CD6950D0FD8A7BF13 /* Copy src/core/ext/filters/client_channel Private Headers */ = { + 7DC45C2A1C00A97BD8CBC797402F2899 /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/core/v3"; dstSubfolderSpec = 16; files = ( - E46D23A901BDBF763FBEDA24393D72CD /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */, - DB4E4E1BD8740BAAC1A141E7A98D5E35 /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */, - 9BB2AD65E3F5102300FB2B3152E6F3CD /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */, - 9EE505E49EA80EF3CE8895B6B144E3DE /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */, - AA4E3BDD33FBA0EE014AE79B087B9645 /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, - 8BCC3411D73B4ADA83806D29D2A152A0 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */, - F5924FA5E18CD459D2078B5005C83D44 /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */, - 2208108A43D5CA80D47D287BBB248A3D /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */, - FA625A0B9C5B9767176A44087D448BF9 /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, - 2BE0254D86AB8300CE5E574F0EF664E8 /* http_connect_handshaker.h in Copy src/core/ext/filters/client_channel Private Headers */, - D78CCE818BF98C7A538072818F5CEEF6 /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */, - C51F6B544C59060ABB483FF65395917F /* lb_policy.h in Copy src/core/ext/filters/client_channel Private Headers */, - 7611472FC5BA1C877B8A64FA2D3FF014 /* lb_policy_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, - 384D4F310DF0948E157041C5AA451F02 /* lb_policy_registry.h in Copy src/core/ext/filters/client_channel Private Headers */, - B7E114783EDEF93377987646095C5895 /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, - F905A8D0AE7441017F4E68A949C32A3B /* proxy_mapper.h in Copy src/core/ext/filters/client_channel Private Headers */, - 25CE102CBBBC86DBEB24E74492C182BD /* proxy_mapper_registry.h in Copy src/core/ext/filters/client_channel Private Headers */, - F76F7732940F6C191371953567247383 /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */, - 4020824A00442FCD2A0E21EC2E469630 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */, - 9EC8322F61FED76F8E27AF5088864CAB /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */, - 88A52909A5E62106CE918A4AF2F9887C /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */, - 9208A3B34ECF5718E55405E3FBD861C3 /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */, - ECC459DDF19CD4171E9B701ED3E5B109 /* subchannel_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, - DEF3A27896BAF1DC0903F58028EB59FB /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, + 79E6D02A6348658F164F9036272E1733 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + 52277626AE97634EB68D8908725756B4 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + DB2328B6B145A201CB4891B7BB47CE49 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + DF915F934FC2A2AC4AE7101ADBFB2BA1 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + C1909DA65AC4F777D3CF2E098A9DD946 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + 83205F59842E4DC848CDE1C7F53FB005 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8142DD07448B2ED6CA1ACE58C1668305 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = { + 7DDA43A17E0A425610E368A43F222C2A /* Copy src/core/lib/security/credentials/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/xds"; dstSubfolderSpec = 16; files = ( - CA4040E5FC9EFFCD3176B9E22551870F /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - C7D1EABEFB48CC062C52B377E49D9DD4 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 2E537C0F70354E7A427EE5E077CFA569 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 36BB880377A1A0A577E8F877A2C7906F /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 7F6059105C8DF2AC36BE3CA1570096F6 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 59E9B7577618E261AA34BD4569B7B2D2 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 389D2E5EE1BEEA3F54CBAB3627D13115 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 8F958BE4E96BDEA594FFC9E53484B04F /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 941A7ED2BBF773B461466251286BF5BF /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 08FD2DA985C0FC6FF4D09F31DA74DC3E /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - C02C4C8C2CD105696CD43B39B052C2D9 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - F7B826F6E63504B761E87A797D024746 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 31672999A44486CB769B9BC861CFA23C /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 55D0B03D3F424AAE01860146A6387B19 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - E9277240C655F3AAEBE96562243F04F9 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 1167214C657BFF2C1C6BC85FB7B30612 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 81B41D67A5C6D5EACDA04C1766984992 /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + 7E84412F879C59DFD0DE342BE3A35BD2 /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/tracing/v3"; dstSubfolderSpec = 16; files = ( - 7667955E5F6F6C7DA3584B0C98702BB2 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 4469413DCB236B9943BC790E8B5E85F9 /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - DB00D7B4260A72D15DC75B2905028C60 /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 8478747EBDCE3FA5E095F365B7BE8391 /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 467928831EE9199F68C86634A3B18D0A /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 81E2E5F1AFAF3E5268D19C4A3A945D91 /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = { + 7F73D8CE82FFF150DA5A9F9E01F815CA /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/route/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/admin/v3"; dstSubfolderSpec = 16; files = ( - 84DC7C55E08EBA5A998971ABE542804F /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - 548C1F521843F7CF4D2791735015D25C /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - F6EBE1555769044B87926B349E8C3351 /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, + 27F1E73B84B6F457E360081C4F8D54A4 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 82B0B27BC0B5011B000877A7FFE5366D /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = { + 7FF38CCC1CA065E5981FE75AE8826658 /* Copy third_party/xxhash Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; dstSubfolderSpec = 16; files = ( - E6CF714D02BC5BBA996BD05155A5FBC7 /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 754A3EED3FFE422CEC69A1B1CA0344EC /* eval.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - AE3178D32CA8740D672682D7C09FE2B6 /* explain.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 919F6656E2D8A529E93863C23BFB8640 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - A02F8AE37C4D02FB49261FF9B4166140 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + C040300F63E1C5DD43576F679F43A71F /* xxhash.h in Copy third_party/xxhash Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers"; + name = "Copy third_party/xxhash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 83FF019CD065923CE682BF94890217C0 /* Copy src/core/ext/xds Private Headers */ = { + 806AE057B7164E1D2CD3BB9D79CA2A7F /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/v3"; dstSubfolderSpec = 16; files = ( - 4CB4292DD5740F54F6889327989CB226 /* certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, - 89A47F8D934AEC444A36B53617148835 /* certificate_provider_registry.h in Copy src/core/ext/xds Private Headers */, - 8F76108FBBC0154ADCA4644A0F6E51C5 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, - 8D702CE1D6FAFEBA71EA04F530038370 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, - 908AB4C11E9ACF4D614A0B373BB3F6E2 /* upb_utils.h in Copy src/core/ext/xds Private Headers */, - 8CA63960692AB91A0D7D0117079C26C9 /* xds_api.h in Copy src/core/ext/xds Private Headers */, - 174121289EA0A1CAAD16B658E0D718B2 /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, - 4048DAE87CAFF2682CC40626D8389068 /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, - 07FE06361522B402DA33C3649A5BD7FE /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, - 279225982115AF6A186DDEA6D2EE89FA /* xds_channel_creds.h in Copy src/core/ext/xds Private Headers */, - CFA9158A8762B45411F6E87E766D8802 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, - B782D47F8181943BC912A4BC01EDB5B2 /* xds_client.h in Copy src/core/ext/xds Private Headers */, - 24B066D83EE68806CA4F4484F09490C0 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, - 1E6C189FD69F76E48531D298B722CA2F /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, - 12349A5C45EFFC99CA8A83FC2BB6FB28 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, - 28E32B3B791BDBEC86364A66A7F797CF /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, - 26F9F99B2F274539E0FE3C3744C72C08 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, - 156A65B1FE69BE194AA1C7441CB93BCC /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, - 04B1E4C61B9C3D6B2173199E8023880A /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, - 4D3C7CF3B23F994012EC60023BE45F6D /* xds_listener.h in Copy src/core/ext/xds Private Headers */, - 7AE408B6239F3BC37E96C62534272359 /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, - 7823F700827026A02090E92D81BDC334 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, - CF8E956E073FA7DE0962F8D823991B58 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, - 314B1836F7B935DF2709B493DE6F51C8 /* xds_routing.h in Copy src/core/ext/xds Private Headers */, + 3FC77F0A4DBFBFCAF51CD54516AA33D5 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + 14CFB67D1E99F63B8C1D551AC1AF1F41 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + D1F23641476084C25E237CBEEAA3F0A7 /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + 4D68DB91875ABD17096FE434563E9FA7 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, ); - name = "Copy src/core/ext/xds Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8432E05B4F0ADB5FF4E6C62225D05B57 /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = { + 807E6075AD932F12A542F1EFCAAA78A7 /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/rpc"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; dstSubfolderSpec = 16; files = ( - 039F93BFC775E73A24D6A5FA26F991ED /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, + 6DFBB623EF9F01D1A026269F78C8FE10 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/google/rpc Private Headers"; + name = "Copy src/core/lib/security/credentials/plugin Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 84AC02F6363C0F907D228A57D6F47435 /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = { + 809D35365C9DFDE5766584AD46C773AC /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/bootstrap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - 5EEE15189C710265CD4447972369D02B /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, + 9AD76DCDA58B643FAFCF7289DD57E348 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 0C6A6255C6E07AEE180BA46EB80FE9C0 /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 103B87FA441C4EDF897D140FAC80F9F4 /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 48C2E33F789801D15225B713CB631540 /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 405F166685D92F0E4A922688E0BA31D9 /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + F285BEC8CC293F4BE23D9FB7D258428D /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 0844A2DDB7B53FF7A09838B4BC2F4DE0 /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 1A0202059AB594286379DC06F5BB92BC /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 850B1D5C1095F8EA27C72F688A4B2B82 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { + 828F6169E3E5B733EAFAC7CAEA6CD661 /* Copy src/core/ext/upb-generated/google/api Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api"; dstSubfolderSpec = 16; files = ( - DA745A9CA4A5A38B04DFC02C0F04C959 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, + 0C9038027C3F10E5C9F1A5CF09EF36E2 /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, + E14714F55B6EC80BD6A6B65E2DF8F63E /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/google/api Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 85126550EE14F3506445425A76939263 /* Copy src/core/tsi/alts/handshaker Private Headers */ = { + 83BA8B1AB8E0B797050A1F6D102C4D6E /* Copy numeric/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric/internal"; dstSubfolderSpec = 16; files = ( - 51B1B260F42FAB2AB6E57A9AC6AD0ABB /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 972C5F331AC510976F90217F1F9A24E0 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 689D1E4CD1E977A38C5897CB711A14E6 /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 38DCFECE3A85F7203165C963F19C12F2 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 50E5D82DEBB0B8863B9D03685E278DF2 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 3FAA1AF169F208F909C544CB0B94C086 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 6554ECD30852231E700FE1F01E45E7D8 /* bits.h in Copy numeric/internal Public Headers */, + AD166A8E8E4A9EB6F73E22BD3594D63E /* representation.h in Copy numeric/internal Public Headers */, ); - name = "Copy src/core/tsi/alts/handshaker Private Headers"; + name = "Copy numeric/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 853394AB1DB080C30F1F531FE32C4A58 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = { + 841E69DB3065B7D4F3E170B31372BFBF /* Copy src/core/lib/promise Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/discovery/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; dstSubfolderSpec = 16; files = ( - 076CEB913BF5A82612FB332F0BC0A00D /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - A8C4D2F7809A73C29F1AA5912E3EE7E1 /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, + 339A87B01854378764CAF1028072C221 /* activity.h in Copy src/core/lib/promise Private Headers */, + D3E193E7B0E7B772E9B603DD7CD609D3 /* context.h in Copy src/core/lib/promise Private Headers */, + CEA79C6791383EEA01220E8720DA13C9 /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, + 04C2E0056B375AFB83A934B2FD3C61D2 /* loop.h in Copy src/core/lib/promise Private Headers */, + AAEEF1A2A40EB57E63B867CADB2E27C1 /* map.h in Copy src/core/lib/promise Private Headers */, + 7D37FD647286FB8D978C2C3587DA270D /* poll.h in Copy src/core/lib/promise Private Headers */, + D81DDB2F36BC2F95144CE589F5C9E70A /* race.h in Copy src/core/lib/promise Private Headers */, + 5FBD302E670526F59BD32C18FEBC29B0 /* seq.h in Copy src/core/lib/promise Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers"; + name = "Copy src/core/lib/promise Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 85CC7AE7371949BC6116BDAE8402C601 /* Copy src/core/lib/compression Private Headers */ = { + 857ACBFCF2E7E3832BCBFBA518A8EF1D /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/tls"; dstSubfolderSpec = 16; files = ( - 395E9A75C9DD2D8CA6366FFF720FF6AB /* compression_internal.h in Copy src/core/lib/compression Private Headers */, - 1621A7CFFBABCFB910D2D983884D78D8 /* message_compress.h in Copy src/core/lib/compression Private Headers */, + 3792B620F564607C654E6BC31652358E /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, ); - name = "Copy src/core/lib/compression Private Headers"; + name = "Copy src/core/lib/security/security_connector/tls Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 85E601480B4E0E88ECF5E3147FE49568 /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { + 860E248A23FCB01579CE22157F1854D6 /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/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/upbdefs-generated/envoy/type/metadata/v3"; dstSubfolderSpec = 16; files = ( - FC1A62BDA6C3B3FBC2D21677675B746F /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, + 4583C3B7A5F6F026AA81BE67E593E434 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/tls Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 86BE3290010DC4810017F1CE6BCD70BB /* Copy src/core/ext/transport/inproc Private Headers */ = { + 862AF198FF130FE9A545FA6D35D15F05 /* Copy src/core/lib/uri Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; dstSubfolderSpec = 16; files = ( - 92C94959E49B0EB6177A3EB73188E224 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, + 9BA2C1D8C46458FBB1FDD0B00A3BDD82 /* uri_parser.h in Copy src/core/lib/uri Private Headers */, ); - name = "Copy src/core/ext/transport/inproc Private Headers"; + name = "Copy src/core/lib/uri Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 86F141C38AD3D2A3A4F56440676B3A68 /* Copy crypto/fipsmodule/digest Private Headers */ = { @@ -9391,131 +9344,144 @@ name = "Copy crypto/fipsmodule/digest Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 87F7A87A0EC1EE7D204ACCB053154BF3 /* 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 = ( - 6EAAD62D2628C8307DB4E128624B8B56 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - E34D41C8C8F7458CA829A81D20E257B7 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - CB4869270BD86601BE1B20987770D0ED /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 41D5D0E9DA40DEE821376BA53E8816BE /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - F8F9673F7AC29EE137B6117844D1BA40 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 0E1E4B206B6B40BCE2B91F0B72103D33 /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 7F5A6F0914B96B938472EF8ACEB072A2 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 5BBC2DE65664E04F3FEC85709021D298 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 33C0E8F7882FE0C56EC757AF3E77DDC3 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 297278B486991279FB1FC7690764E0F9 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 06C620FAE53C5DBE69A747A5B5D2B3FB /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 59018C417E57C6BF236990C5BC277C24 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - A782BC84B12062E4DC14A2C83E45F822 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - A1F8EC971331C087995572B875712A7F /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 73ADC786E4788A41CF579D68D3266878 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 175899EC8E0299D483CDC9417C87B271 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - E90BA31B9141B0EF5B7B0C47D356DF4E /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 4D2578F7EFDEF3AA22058CB313D7B3E1 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - B1C6541F1E7EB46F152DD35BF3C12B99 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 18F3C358462446C7BA56934DC29CF448 /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 838511A06776F4E44679D132B46AA28D /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - D5AF1C7B3B2DD5D495DFD57B11D1CAE9 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 88405212293FC8E6ED999AE11C9C504C /* Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */ = { + 870C96CCEFB67FAD8FD0F9EB6FBB4137 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; dstSubfolderSpec = 16; files = ( - 515CC697A85D09C9730607F96B3325F9 /* lds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */, + 508AF3A6C37A1DCB128159E8DE77AFA6 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers"; + name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8904C9FC5AED8E77851B6C92BBCA4D73 /* Copy third_party/xxhash Private Headers */ = { + 8762EE22D28E67A38966926FA3D7D462 /* Copy src/core/ext/transport/binder/utils Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/utils"; dstSubfolderSpec = 16; files = ( - 2610B832E80A5070FD6DB7D59226B2BB /* xxhash.h in Copy third_party/xxhash Private Headers */, + 642E2E8E42FFF537A3F5BC9149A04CDB /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */, + A017740EE0755C09EA00ECF2C4C17F4B /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */, + F32E4C41611273393D35146326BF9277 /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */, + 30170154EF9722940800D55679A1A26D /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */, ); - name = "Copy third_party/xxhash Private Headers"; + name = "Copy src/core/ext/transport/binder/utils Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 89497F1C12F85056B3E979C660DD38DB /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { + 87C9BA322A7625760A4636FFE35CA41A /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb 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/filters/client_channel/lb_policy/grpclb"; dstSubfolderSpec = 16; files = ( - 2352E2AEBC7C7D5782C3CF2CA489937D /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - BC7399D6B169CA9A8543AAA025EDD3CA /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 9879B0BEE7A70936CB33F7987FBCCAE8 /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 87A6CE85AC420E31AC682FE5CA3AE9FF /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 99E53AB68A17E18FBB3A66D25C26A6A5 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 133CB0B183E0CED569131236A1070575 /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 67777CA46D3EDE6F04B1B62B701261EC /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + D6F80A15A53A45DC20BCB3A7040DCAE8 /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 318CFB4783FD8B92999BDA1714FB87E7 /* grpclb_channel.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 01A47F62A6F0FF2F336DDDF4235FD7C2 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 25723D21BEF5CDAD28911A533A991A35 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, ); - name = "Copy src/core/tsi/alts/frame_protector Private Headers"; + name = "Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 894F823774F724E0F291875CF28245B7 /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { + 8894136338CD858709DAA4EA8F89177F /* Copy src/core/ext/upb-generated/envoy/type/matcher/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-generated/envoy/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - 6F335BD6C3D9F5111ABF5B03FA4AE1DF /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, + A67FCC0F2C59BED47585F758476FAD70 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 24D8FE53D2B90F3E2F7EA68AB88B4448 /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + D054DF94611F0DFDAD045FC4D3A21290 /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 5DD7AA46A1409C11860BC1D7A0701C5D /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 7885CC5AD145506D2D5DFCABA43C5AC0 /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 4F05E5C0820FC49D58F556E77D859596 /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + A16B6E29228200760458865B970FE184 /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 52217734F5A2D87365B74F2A513591D3 /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/ssl Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8A181F1D0B9688D49D53AA99EDC44D62 /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = { + 88965810301E0DADF82A0B4FBC26008C /* Copy base/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/metadata/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base/internal"; dstSubfolderSpec = 16; files = ( - 8EC149555EA0811D3E5F3F58959412A5 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, + 2CFE74894DF17D9A1484054F1A889254 /* atomic_hook.h in Copy base/internal Public Headers */, + 14207A4DC9C7379EEB66F73AA49B364A /* cycleclock.h in Copy base/internal Public Headers */, + 1FF478E240DFE50FBA07FC2E2B652CC8 /* direct_mmap.h in Copy base/internal Public Headers */, + C04B8C9762D74AD18CE6AD32F3BC309A /* dynamic_annotations.h in Copy base/internal Public Headers */, + F7520B01CF59315292ECD8218F8B94E3 /* endian.h in Copy base/internal Public Headers */, + E066F7802E878123BBF6B6FDE799E5A1 /* errno_saver.h in Copy base/internal Public Headers */, + E8641E0B07DF5D31E369038CFAC5B0D5 /* fast_type_id.h in Copy base/internal Public Headers */, + 0111C9BF97029D4F6277D51B53E82CA2 /* hide_ptr.h in Copy base/internal Public Headers */, + 03DE0B97B318B6D2CE7D688F6564C8EE /* identity.h in Copy base/internal Public Headers */, + 39A5E5B853E89B26FCC4B745B4184ED7 /* inline_variable.h in Copy base/internal Public Headers */, + CC5CA0DD673882FAB528D17F613B9FE7 /* invoke.h in Copy base/internal Public Headers */, + 279F57BE183D90D4AEFACF870E02ED3B /* low_level_alloc.h in Copy base/internal Public Headers */, + C9706D6690ACB7E0385FDB4BBD2136AC /* low_level_scheduling.h in Copy base/internal Public Headers */, + FDF3D4C51F9A8E1A49E249210AC1A04D /* per_thread_tls.h in Copy base/internal Public Headers */, + C7DD356A1C0F8BC01A8F025958F3899E /* pretty_function.h in Copy base/internal Public Headers */, + 8CC3F5B98312529916B4EED0B81D2AAF /* raw_logging.h in Copy base/internal Public Headers */, + F94FC14AB8918A364D2971B1BF464C17 /* scheduling_mode.h in Copy base/internal Public Headers */, + 73070B532F97501D91341ED05F125BF1 /* spinlock.h in Copy base/internal Public Headers */, + 3437F950B3175518050CFEA72FBD86F4 /* spinlock_akaros.inc in Copy base/internal Public Headers */, + 51EB693312F85997561F13BEEF234F9F /* spinlock_linux.inc in Copy base/internal Public Headers */, + 3710701CF0339C4B689576D298188D5C /* spinlock_posix.inc in Copy base/internal Public Headers */, + 2EAF0D2506BD957ADAEE4C53B9F845EB /* spinlock_wait.h in Copy base/internal Public Headers */, + FEFC6EA0ADD4D27332FF1742E1136EEA /* spinlock_win32.inc in Copy base/internal Public Headers */, + D74688141347888D7FA828D6D77E12BC /* strerror.h in Copy base/internal Public Headers */, + 5709D05B053BE1FF13399D67243E3424 /* sysinfo.h in Copy base/internal Public Headers */, + 721D2D11041C3AC2394BC6238A0364E6 /* thread_annotations.h in Copy base/internal Public Headers */, + 11807A4F6CD5DF34B89C2620DE743984 /* thread_identity.h in Copy base/internal Public Headers */, + 1DAE90BCF4F8B251ABA63E9E7417CFC3 /* throw_delegate.h in Copy base/internal Public Headers */, + 2F6E595F97CD2892D7B2081F0A36F48C /* tsan_mutex_interface.h in Copy base/internal Public Headers */, + E3D9E8767A2E8AB93740FC20452146A5 /* unaligned_access.h in Copy base/internal Public Headers */, + 8AEB7CBA1373F04D7ABB297260BE41D6 /* unscaledcycleclock.h in Copy base/internal Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers"; + name = "Copy base/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8A59780672C6A22BB91EE3CBFEE990CE /* Copy src/core/ext/upbdefs-generated/validate Private Headers */ = { + 8908D9A6164E7C92DA8CCC3F15FA008A /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/validate"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/annotations"; dstSubfolderSpec = 16; files = ( - A1C0C5A4EA8A53D40A4D0BCEEDA7D3A1 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */, + 7680213F142AD03924CED417FB5565FB /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, + ED80F3C1D25A8DCAA7E9A8BC8713F903 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/validate Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8B1FD04DB7CA447F60D9D968A05340FA /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = { + 8A5D84A6EDFF9DD945079FF49FCA0F25 /* Copy src/core/tsi Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; dstSubfolderSpec = 16; files = ( - 049D7C84CDE102D945659203675ABD8A /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 6BA091A1C47C7DA7185378A63C86D73C /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 24EFB1A2055BB3B4759502EC0DEE2751 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 856C9F407CA51FFBC2EB9342F1DDABDB /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + 4EB05CBEE192427A399D70C0EEA52255 /* fake_transport_security.h in Copy src/core/tsi Private Headers */, + 30061DB662FE2F73FDE70F6FB62C635D /* local_transport_security.h in Copy src/core/tsi Private Headers */, + BDBA27497B0042BC4D0EC8115BB14882 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, + 4AEEF48A74A3E6FF647B6ED95C2C5822 /* ssl_types.h in Copy src/core/tsi Private Headers */, + 254D7B8F5B8816418E475260950DE39A /* transport_security.h in Copy src/core/tsi Private Headers */, + CDCFC80903C222B0C8F422A662335D09 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, + F4D402236256924500343B7A7A8F4C6E /* transport_security_interface.h in Copy src/core/tsi Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers"; + name = "Copy src/core/tsi Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8B271EA9B30C9E5D4CA2C24C9FB8018F /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = { + 8B769BC3D57A64D4E997DFCEA8CC8F05 /* Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lb/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 5B0F973C83F7D5ED280FCE54AA997017 /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, + F216C31E95E27453E3D438C2F00C9DCD /* eds.upb.h in Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 8B8C5F3D9076EB8FD4DE25D0A9FAC73D /* Copy crypto/evp Private Headers */ = { @@ -9529,15 +9495,15 @@ name = "Copy crypto/evp Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8BFC9D45B12D1ACBEB28CC5C6F392F8B /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = { + 8C06F6AA10D0BECEE13D07BB0C124D56 /* Copy src/core/ext/filters/max_age Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/accesslog/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/max_age"; dstSubfolderSpec = 16; files = ( - FC9C546FDB0BF0BB744C52DE2F5AD97C /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, + 1641943135AEA73B070FC67758687C14 /* max_age_filter.h in Copy src/core/ext/filters/max_age Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers"; + name = "Copy src/core/ext/filters/max_age Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 8C9445BD439779B6ED9CD8369E085D5F /* Copy crypto/fipsmodule/rand Private Headers */ = { @@ -9553,581 +9519,559 @@ name = "Copy crypto/fipsmodule/rand Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8CA65A161A609EA205AEBE72A9D0621C /* Copy src/core/lib/security/credentials/fake Private Headers */ = { + 8D0CAC394E2AD7F6BB65839FDF6740B2 /* Copy src/core/ext/upbdefs-generated/envoy/service/cluster/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/upbdefs-generated/envoy/service/cluster/v3"; dstSubfolderSpec = 16; files = ( - 4F7C7F7BF970868C31D50D20C2A20B45 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, + DE8D9DE36CB7F43F3B1340579E6E73FE /* cds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/fake Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8CA8B9CC2E7277D788EA578466174E4A /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { + 8D58D18C16C14040A9B3290006869FB9 /* Copy src/core/lib/gpr 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/lib/gpr"; dstSubfolderSpec = 16; files = ( - DED780C614180F41083EA5391281EC5C /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - 2E2E80E5FA511CD649E95E47BC19CE51 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, + 8FD1D4C9A28A04355BE5259321E584D8 /* alloc.h in Copy src/core/lib/gpr Private Headers */, + 716D8D3DBA5FEE9BC39D8DDF1C45CD6E /* env.h in Copy src/core/lib/gpr Private Headers */, + B6CAAB8A0D89C1CB2BA6218C51786262 /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */, + 73C2ADDA907FDA6EB36C1612147B506D /* spinlock.h in Copy src/core/lib/gpr Private Headers */, + 44BAB16993C32CF08C60E8D4CDC2A3BC /* string.h in Copy src/core/lib/gpr Private Headers */, + 3713BD8090DE7F56A187D3B582184288 /* string_windows.h in Copy src/core/lib/gpr Private Headers */, + 07130A48BDD67A547BF3B49FAD0A8947 /* time_precise.h in Copy src/core/lib/gpr Private Headers */, + 05213B97E90F242704E1CA5A4643FE32 /* tls.h in Copy src/core/lib/gpr Private Headers */, + 96BC343F7D4EEED91F486A6DE7F98CEC /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, + E626C86CFDB289270809F402113BEDD5 /* useful.h in Copy src/core/lib/gpr Private Headers */, ); - name = "Copy src/core/ext/filters/server_config_selector Private Headers"; + name = "Copy src/core/lib/gpr Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8CCBFE542AD675C20E506A78C16AFF30 /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = { + 8D78954238D4AA865EB3E26AF9C5761E /* Copy src/core/lib/uri Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; dstSubfolderSpec = 16; files = ( - 176FD1B5BFD0CDD15388D905375FF6D3 /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - 2E714EED30B8484FBD26DE4856BB2E20 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, + EC273248BE07152EAE900F30403EEB5E /* uri_parser.h in Copy src/core/lib/uri Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/annotations Private Headers"; + name = "Copy src/core/lib/uri Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8D11FED40E42DB87F35C1666E69484F1 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { + 8F0CB56659042BE434033F16D5D2F1DD /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/gcp"; dstSubfolderSpec = 16; files = ( - 21A72B0FB7A8BF9DCD322D3E4DF054EC /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 9C12811A37F30D21317EFACB7483F69F /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + 23706B090E80C1882DC9201633A3AE21 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + 85B62F5133F3ECAADCDC0E407C75044E /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8F081D7590B3641EB269237C72FDF1D1 /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { + 8FEB2FEC1F8DA0A0D1B791841CF96050 /* Copy src/core/lib/security/credentials/external Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; dstSubfolderSpec = 16; files = ( - E34CECBB98EB83934DFA702B49BC9A4C /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - B59ADFA256DA4BFF26735A3E481BA147 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, + D67F0E4731C632DB62BDE7C1007017D7 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + A850C8938D8B21FD820F6EA63D5190C4 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, + 867540317FEFF67634F6AAFF8C657524 /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + 2356190971088EA1635A3A605FE1B115 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + C5B6C45B5C21D49400A7A4447B14F766 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, ); - name = "Copy src/core/tsi/ssl/session_cache Private Headers"; + name = "Copy src/core/lib/security/credentials/external Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8F7E9E4FB1DCC3A3B6F4842EF1D1F4A4 /* Copy src/core/tsi Private Headers */ = { + 91173F6E7409E1DFDFC2A968681338D5 /* Copy src/core/ext/filters/fault_injection Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; dstSubfolderSpec = 16; files = ( - 25ECF461C5C82C714540913A8504B23C /* fake_transport_security.h in Copy src/core/tsi Private Headers */, - E7903BD0F8CDE1732A7702E5A4181308 /* local_transport_security.h in Copy src/core/tsi Private Headers */, - 64E20D0E5A3AB1A4C2FC9A355A13525C /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, - 7D62DB05F2480EAA450F539427BF5BE9 /* ssl_types.h in Copy src/core/tsi Private Headers */, - 21EA8E6B3A3491C7827E686F6E033A3C /* transport_security.h in Copy src/core/tsi Private Headers */, - 8A1F3E381033A79525DB780F6B3258D3 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, - 8CF306AF3CC73E14C168230D0E543A5C /* transport_security_interface.h in Copy src/core/tsi Private Headers */, + 9E1BBF38C2A2477F0A33827BAAB5DFA6 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, + 0CA26BF4A42742C2363DA749DAF55B05 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, ); - name = "Copy src/core/tsi Private Headers"; + name = "Copy src/core/ext/filters/fault_injection Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 902E4E7E7729DADDAA2BFA0587480BDF /* Copy src/core/tsi Private Headers */ = { + 918B424309CF0C81465E81956FA95E8B /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/tls"; dstSubfolderSpec = 16; files = ( - D655A99877D361EC215DACF1BF25BC72 /* fake_transport_security.h in Copy src/core/tsi Private Headers */, - 91E07AD4DD185D12EAFFCC18D7C11251 /* local_transport_security.h in Copy src/core/tsi Private Headers */, - 020281D73F69A09CCBC603DD438F2AEB /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, - 3759297D462A222AE42B046D94002CBE /* ssl_types.h in Copy src/core/tsi Private Headers */, - 4270ADDE6712DAC8853BABE8AC6483B3 /* transport_security.h in Copy src/core/tsi Private Headers */, - 5A3FCFD9286E26ABF9127A38D634CF09 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, - CAEA9E870AF3F206C8757AB290F570B9 /* transport_security_interface.h in Copy src/core/tsi Private Headers */, + FB52D252BFB1B499B969E3640D3D2597 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, ); - name = "Copy src/core/tsi Private Headers"; + name = "Copy src/core/lib/security/security_connector/tls Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 90862300727078DB7809106F3E15F311 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = { + 91C9D839B1801B3A658C6CEDEF12B802 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/protobuf"; dstSubfolderSpec = 16; files = ( - 8A8D556B863BC4453E474919A09B8FD8 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 858DDBED878AF9931168CF4D49BF8A8A /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 2ECF466AC5B083BD04E15AA3C3A39B75 /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 255549BB481C7F9A39A781CE48615367 /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 48456D353A3B20345423DB25A9C94050 /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 9C752156FC64559DEFCA85EC049726A3 /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 4008948A810114929F9F579ADA2A76EC /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 9387DE09EE78C0F9AA0E9A9FA225612C /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 51AF430D902F682AA6A3DDA8B1F81099 /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + C551F97D88476F0D05B44089519FB35E /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 303B60F21F4D6619C725F0AB5823F2DD /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 318517EB4EAA9AB13A894AEF43FA0F84 /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + E9829FF85B046F2636493027075C6E79 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, ); - name = "Copy src/core/ext/upb-generated/xds/core/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/google/protobuf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 908D2BAA27FCD379A4AB26FAC34095CD /* Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */ = { + 93086B335D5063E5C7DE575783AAD65E /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/protobuf"; dstSubfolderSpec = 16; files = ( - E47127EE84762356148DB7924EAA8669 /* cds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */, + 09265545FAC1D119E8D49ECF66B99C77 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + ED0ED2304DB20B891CCBB8A64110A983 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 013D1655D83CF04CFFB20086AA0CD3CD /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + E96633967B63B6D8C8B48A0044920113 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + F699207392F7B34EDFBAECD68777C27D /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + C9393EBC6ECE5F1ABB3B2C29F319F0FE /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 6C20B2DDF44AAC982BC7F624782422B7 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 91015F28508445F39EE1300305927713 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = { + 932FCF551636E2693ACAC2D66B8A9C4E /* Copy src/core/lib/http Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/overload/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; dstSubfolderSpec = 16; files = ( - 94F0BAEAD7217CC26E7BDB40B42D6F19 /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, + 58830F7D0BA202B8F519EA2C5E72347D /* format_request.h in Copy src/core/lib/http Private Headers */, + FAD7E84CFE22012E98D3413059FDF0AD /* httpcli.h in Copy src/core/lib/http Private Headers */, + A4B070574DF6081DBC299A1B3AFBC1FD /* parser.h in Copy src/core/lib/http Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers"; + name = "Copy src/core/lib/http Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 911EE9FE6D69FF44D78860E2454D84AB /* Copy src/core/ext/filters/client_idle Private Headers */ = { + 942D227AE21792796B86F5F66F2235DE /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_idle"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/http/v3"; dstSubfolderSpec = 16; files = ( - E70BB821C0989A0A8B511EF5F3E81E3A /* idle_filter_state.h in Copy src/core/ext/filters/client_idle Private Headers */, + 6D53C3C3173F8EB2B924F006C26ABBFC /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/client_idle Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 91CC17116EE35A1BEDE32B1C26FA3510 /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = { + 9448A39EB34212308CC2BD759D8BA4AB /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/metrics/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/insecure"; dstSubfolderSpec = 16; files = ( - 0152024DA8A26C3208BAB4CA2C3AE44C /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, + AD0B5B3E5BAC60D48E1A2FA43C646DCA /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers"; + name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 922A0925E117E5BF31D15614E330FDB3 /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = { + 95471418946F46E82574109BFB5767AD /* Copy src/core/lib/address_utils Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; dstSubfolderSpec = 16; files = ( - F87E81B451D9692B162294D99B7C55A6 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - E64D6BCAB48EFB5BC8A1247DC3881598 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - F19E365AE69BBD919CB9CCE4C68D5EA7 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - B8B08D29C48248C0C699884698E4E492 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 6F065652CCBCE03A97F8B9F88AA9FD0D /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 2449BA184A44B2B1C56713DFCDC44FD8 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + CFE2C43043941292B5A5E958CB41EC59 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, + D42CBAC8F490DC1F1410867A2A1E93B6 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers"; + name = "Copy src/core/lib/address_utils Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 92496D38715A96A83C5BEE69A602E224 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = { + 9586ADC0C6084A5EEDD3EA2AD2CD8C9D /* Copy third_party/upb/upb Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/metrics/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; dstSubfolderSpec = 16; files = ( - DAF52503A7855660A8F5FA6F84700882 /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, + B9846DCB3A1A2E62952403C9EE90BA2D /* decode.h in Copy third_party/upb/upb Private Headers */, + 51C02D146BE05B059BB85F21CE010108 /* decode_fast.h in Copy third_party/upb/upb Private Headers */, + 0540369501E1FD232DB39EB0B1D4797A /* decode_internal.h in Copy third_party/upb/upb Private Headers */, + 2E2C4B3A577B0624A24DB0446EE3039E /* def.h in Copy third_party/upb/upb Private Headers */, + D0B9EA2324A5CF33EDBC76BCC93A22B5 /* def.hpp in Copy third_party/upb/upb Private Headers */, + 215BF6ADF1AF48366E23E9B6A9869C77 /* encode.h in Copy third_party/upb/upb Private Headers */, + 8EB6EE9B515786487945D18C218FFDAA /* msg.h in Copy third_party/upb/upb Private Headers */, + 20EC6E15DEC605D7A316E3F3248C63CF /* msg_internal.h in Copy third_party/upb/upb Private Headers */, + AB621FA30B9628B0EC11F046C401E7F1 /* port_def.inc in Copy third_party/upb/upb Private Headers */, + 38B71ABC37BAA9D09E0C089654B6A1B7 /* port_undef.inc in Copy third_party/upb/upb Private Headers */, + AB11D3CFB20E46499B42CE104058BF1D /* reflection.h in Copy third_party/upb/upb Private Headers */, + B2DF606B77EAE048330B98E12C43E7EF /* reflection.hpp in Copy third_party/upb/upb Private Headers */, + DE1EB5B7976477093851074D1CD6D10E /* table_internal.h in Copy third_party/upb/upb Private Headers */, + 02862FB29E17602DB029255453CE4255 /* text_encode.h in Copy third_party/upb/upb Private Headers */, + 854F8481F09D7F12FE433E85AB09F8FB /* upb.h in Copy third_party/upb/upb Private Headers */, + C93FA86BB0CE5F47886A94F1AD3480F1 /* upb.hpp in Copy third_party/upb/upb Private Headers */, + 89026590924B2D8FB3ABD7767C110A8D /* upb_internal.h in Copy third_party/upb/upb Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers"; + name = "Copy third_party/upb/upb Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 926FBBBE7191C27E17F4FD5122BCB056 /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = { + 95B186DEE48102B8D686BCF20ED372DB /* Copy generic Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/generic"; dstSubfolderSpec = 16; files = ( - 5C54C5B543E68C62A74E7507E9B70C06 /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - 27D95D8BA104417A7E9ABCBD68289763 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - 6ECD52133E420A8DC63F9F4AC1ED163D /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, + CAC9BCF5DDB77598E08EBD8C66D422D0 /* async_generic_service.h in Copy generic Public Headers */, + 4E6CD05AC71C369832F5C535B941DCF5 /* generic_stub.h in Copy generic Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers"; + name = "Copy generic Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9286653D5C94B80DFC6EB8AD810B832E /* Copy src/core/lib/security/credentials/iam Private Headers */ = { + 95FE8AEFF7544BABFDF8E3B485014F88 /* Copy src/core/ext/filters/message_size 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/filters/message_size"; dstSubfolderSpec = 16; files = ( - C6BF5C5DF2E026CD63C9C603ECD3ED6E /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, + C74FC424D713420BE94C454AADDDA9DE /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, ); - name = "Copy src/core/lib/security/credentials/iam Private Headers"; + name = "Copy src/core/ext/filters/message_size Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9314E604F4D6F40C40C378CB2C212A41 /* Copy functional Public Headers */ = { + 964193402786ABC4884A0B272031120E /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/annotations"; dstSubfolderSpec = 16; files = ( - 1E95B9757CB8514488CEFF390FD856C8 /* bind_front.h in Copy functional Public Headers */, - C5B59DF206D9B80FF1B553F7D1564135 /* function_ref.h in Copy functional Public Headers */, + 900F8990F88758FC13FD07E971E72424 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, + 2A9807481CE4826568F9CD4A6533814C /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, ); - name = "Copy functional Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 937673F3B87D2BE3D2A5FFB3B0383C81 /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = { + 96B198F33019C70924032D94B473E5AA /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/protobuf"; dstSubfolderSpec = 16; files = ( - AF43E939CFFE0CB3A0DD4ECEE33C8A89 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, + 31F1359F66230EA749E17CD90E92EC88 /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 740B6E085A6B1E363810013F0148B597 /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + FCF53709A7B38157CBE93FAF2683F739 /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 086507B5E5D2190FCE94FFBB5F375718 /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 02FD06E0935CAFA83B9F62DC014A49B7 /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 1F0BC94445156FA62B464081C1A89870 /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 93C612A77C07FDF0C8813BD6C33809D4 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, ); - name = "Copy src/core/ext/upb-generated/xds/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 93B810FB62CB7DB334D653B5945031A5 /* 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 = ( - 43FB4C48F7B9D319C092BA6718322426 /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, - D42C43A4992FEF91749AB2E8E2B07929 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 49906D92327C87C166D20FB6E23BAC15 /* 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"; + name = "Copy src/core/ext/upb-generated/google/protobuf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9475339155D626303CC7D8988AD12452 /* Copy src/core/lib/slice Private Headers */ = { + 96B6B6C5BF0FF95AD115D4D82851529E /* Copy src/core/lib/security/credentials Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials"; dstSubfolderSpec = 16; files = ( - 195BBB45A3AA60AC8A28B28BA0650264 /* b64.h in Copy src/core/lib/slice Private Headers */, - FA7E001E116268A5965FC12CA0A13F25 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, - BB5389067B4DD818E75313C520AE3009 /* slice.h in Copy src/core/lib/slice Private Headers */, - 1B2F961779BF8AB00E65D64C0F30B098 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, - E91F01A528DCA9E0AB1C28E6EA8C987A /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, - 060AFDE542FF737DA9B9FE4EA5BEFCB2 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */, - C675F147A8D73F655319AA4B76C9A4F7 /* slice_split.h in Copy src/core/lib/slice Private Headers */, - 7D3B6BD1AD39411BAF826D99618C0CE1 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, - DD160AB554E6303A6FF7A024B2FCE0AE /* slice_utils.h in Copy src/core/lib/slice Private Headers */, + 08D6763E26702FB7B4B629E3E94045A5 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, ); - name = "Copy src/core/lib/slice Private Headers"; + name = "Copy src/core/lib/security/credentials Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 95DB2F93EDCC318F04F9E8EF3F95D3CE /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = { + 96EB7FADFEEB63A9C9CB9B243623D3C4 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; dstSubfolderSpec = 16; files = ( - 8F62F9EDB257C51F14A0DFD062D53926 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 5DD06379AB6FA874A32841B782388FE1 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 5E23C242AD6072523E017EEB4CF70B47 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - B7CBFCD0C625066631B066BBEAF0B890 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - B7387A7D94CC8F333E710BDC65D06FB0 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 55FE2FB7133EF83215E753B3E8A737BE /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + 6AC559A03FB3DEE9163C88D1ACBE5D32 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers"; + name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 95F849041610C3871212718D2D956FA2 /* Copy src/core/lib/security/credentials/external Private Headers */ = { + 9778B65A493CE325776323BAEC263C35 /* Copy container/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container/internal"; dstSubfolderSpec = 16; files = ( - 332533560EBB47E747CA976F4F136349 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - C360CB944583F3827518E5222172FF46 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, - 3746A07D6767FBF4EB53B55DF884517F /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 374390ECDC611B8DDC652A46CB839708 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 482A13D9A63038B75B98D32E96D1A921 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + F29DC1BB6933E9B1A8F1F21B5B3C8712 /* common.h in Copy container/internal Public Headers */, + D5705415F41643343644CD617773140C /* compressed_tuple.h in Copy container/internal Public Headers */, + C5F3C7D16AE0FB7D9133EB34629412B9 /* container_memory.h in Copy container/internal Public Headers */, + 57EEBA8B68C613108F6DC54C96BC1277 /* hash_function_defaults.h in Copy container/internal Public Headers */, + 6273BD8EBC062A2C3F6CBC4B04F3EC67 /* hash_policy_traits.h in Copy container/internal Public Headers */, + 3FAF8A9D18BAE7E20867E1ED359D9BA1 /* hashtable_debug_hooks.h in Copy container/internal Public Headers */, + A917E482653B6A44C800463822EF89CD /* hashtablez_sampler.h in Copy container/internal Public Headers */, + 2730F251C9A5DE5AA05CDE88558A59FC /* have_sse.h in Copy container/internal Public Headers */, + BD04C86CB04B3F250D5147F623E9EED8 /* inlined_vector.h in Copy container/internal Public Headers */, + 0BD0A91C5AC3850A3F6ECD55A94DD2D8 /* layout.h in Copy container/internal Public Headers */, + C9382DF9E654A090FA26FF177FD3CB89 /* raw_hash_map.h in Copy container/internal Public Headers */, + 9F75DDE7811D7AE05AADAB0B2FD3F44E /* raw_hash_set.h in Copy container/internal Public Headers */, ); - name = "Copy src/core/lib/security/credentials/external Private Headers"; + name = "Copy container/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9669407BE9166F23CD58EDDD1B55605C /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = { + 9811E0DC3A1C13F75B907DCA60103B2A /* Copy crypto/asn1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/accesslog/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/asn1"; dstSubfolderSpec = 16; files = ( - 588701F16E71382545D1DC66E588BF07 /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, + 39DA782DCED398D378A84930E7B8C22A /* charmap.h in Copy crypto/asn1 Private Headers */, + B5EF45343B0ED12E090FE6C4AA2891D2 /* internal.h in Copy crypto/asn1 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers"; + name = "Copy crypto/asn1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9684ADE6B8905DC1CD8491B6B3B32DF8 /* Copy src/core/lib/event_engine Private Headers */ = { + 984CCCE9AC34F22B927976D6FBFF97BF /* Copy src/core/ext/filters/http/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; dstSubfolderSpec = 16; files = ( - 422D78D059602514F9412A20C3842C75 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, - 3598A694C786BE91E30306E6DFE0DABC /* event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, - 0E45B9B38A3DE4B33A824E443E5D755E /* sockaddr.h in Copy src/core/lib/event_engine Private Headers */, + F9167C0615CAECCEC3725783997F32E3 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, ); - name = "Copy src/core/lib/event_engine Private Headers"; + name = "Copy src/core/ext/filters/http/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 96D06D9C71B9D160D788D3C1E919C9D0 /* Copy src/core/lib/channel Private Headers */ = { + 98678583A92A04259632514C56AE0F7F /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/protobuf"; dstSubfolderSpec = 16; files = ( - C2AF452269E8F4AA89B260418DFCA80D /* call_tracer.h in Copy src/core/lib/channel Private Headers */, - 4F5CD7FF06EB4C2910122633649B08AA /* channel_args.h in Copy src/core/lib/channel Private Headers */, - 18B624F63668D2BCAA0AA935E2691661 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, - BAF30714C8799B004E8E8AF8DA07DFD0 /* channel_stack.h in Copy src/core/lib/channel Private Headers */, - 10AC96D14024DB0300B7E3C44B968AD5 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, - 7B1E18828992E8BF686F3FFCA68D7F5C /* channel_trace.h in Copy src/core/lib/channel Private Headers */, - 222C60DFE7B213D8BD5F0850E9E92E06 /* channelz.h in Copy src/core/lib/channel Private Headers */, - F425A8FCF4E0C7EC83E2B5F4C1876144 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, - 7623B5AA81199F40486FDBC731E181F0 /* connected_channel.h in Copy src/core/lib/channel Private Headers */, - 1061F91B1901DAA4586BEBEA28CD9AC3 /* context.h in Copy src/core/lib/channel Private Headers */, - 1C5958F887E1F5795F392DABEC172B51 /* handshaker.h in Copy src/core/lib/channel Private Headers */, - E1F4121A3D1C04B1D9F62C844210F63A /* handshaker_factory.h in Copy src/core/lib/channel Private Headers */, - 2A536D5F5A6D40031B561304D84EA881 /* handshaker_registry.h in Copy src/core/lib/channel Private Headers */, - 3DEE361322209684959F44605D230268 /* status_util.h in Copy src/core/lib/channel Private Headers */, + 20161B5FB2EC4ED5E04AA613E576FD87 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + D1AD1513F11C2A615762C66A6AEC4059 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + F0E9AA4C1A4231A3008F029766FBB531 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 32656E04D0BC2001A5B7767E24D9D6B9 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 7BF1E270FFBA64CA6901A43D735B69F2 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 9084A18BD3A7100F8AB0E6610F296CEB /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 3C1E7364FCB732AB2961E4C16A60634E /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, ); - name = "Copy src/core/lib/channel Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 974B063FE22D3489A2D94E8BA48BCA9E /* Copy event_engine Public Headers */ = { + 98FFE2AF7F60CC283629FC40E2F98562 /* Copy src/core/lib/config Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; dstSubfolderSpec = 16; files = ( - 719C23184846479DA5692CDAFB1B4EFF /* endpoint_config.h in Copy event_engine Public Headers */, - DD0B4371DF13EB1E55B5BD2499B385D8 /* event_engine.h in Copy event_engine Public Headers */, - 98655E772584D7E85FD1499B3365BA26 /* memory_allocator.h in Copy event_engine Public Headers */, - D0595D4A7102FDF278691E7B830AEB7A /* memory_request.h in Copy event_engine Public Headers */, - 0780E875F179B9BFF000C30F39A11AB4 /* port.h in Copy event_engine Public Headers */, + 1D7ADE8862D1F1C2686F5213C72D2F1F /* core_configuration.h in Copy src/core/lib/config Private Headers */, ); - name = "Copy event_engine Public Headers"; + name = "Copy src/core/lib/config Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9811E0DC3A1C13F75B907DCA60103B2A /* Copy crypto/asn1 Private Headers */ = { + 9971B67822564BC823269E70EA006532 /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/asn1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/listener/v3"; dstSubfolderSpec = 16; files = ( - 39DA782DCED398D378A84930E7B8C22A /* charmap.h in Copy crypto/asn1 Private Headers */, - B5EF45343B0ED12E090FE6C4AA2891D2 /* internal.h in Copy crypto/asn1 Private Headers */, + D2AA2B171F4FD08EFF58B8BF177D8F17 /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 9AE1E8447C6BD738E131D794E9A61448 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 598B2B07CC1767D95893F4A338FBB411 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + F2F48B929AB1573A7027A557BF4D1405 /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + ED29E3D03BFCB5BB55D343BDB6FBF9AC /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, ); - name = "Copy crypto/asn1 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 982CBCD56889B55E97F258DCF8CFF842 /* Copy src/core/lib/profiling Private Headers */ = { + 9A2347342A6298EED9C2123BC9CFD461 /* Copy src/core/ext/transport/binder/wire_format Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/profiling"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/wire_format"; dstSubfolderSpec = 16; files = ( - 8D984328A3C938390D8E13352901772B /* timers.h in Copy src/core/lib/profiling Private Headers */, + 66716533FE2C33673E204019EF7FB000 /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + A34B08FD4D8C99C9A3C1D0F8ABBC717D /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + C90960EC6C5B9D91A2C1A5CF9DE83DF7 /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 8037F116FCACE1F86D02314A84E8F31D /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 882E4375E90E76E887E8DA5251D23C8A /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + D5DBD366A38D1D6A21EAA4EE8176BD7F /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 2AF61CA4D69DCABC8821145CD3BB9D9F /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, ); - name = "Copy src/core/lib/profiling Private Headers"; + name = "Copy src/core/ext/transport/binder/wire_format Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 98CBB3DD363B0A2967DB2EC54279E5A8 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { + 9A4AA8DCEFC1B5181BD434F68AAE0185 /* Copy impl Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl"; dstSubfolderSpec = 16; files = ( - 536D9BCB09D86BEE0ADDEA08DDCB865D /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, + C3A623EACF0B34080631C1CB85000F7E /* call.h in Copy impl Public Headers */, + D112AC18A0E8D99979FAEBE444B5F333 /* channel_argument_option.h in Copy impl Public Headers */, + 78D86C4478B6276CD40492AAFB2108C5 /* client_unary_call.h in Copy impl Public Headers */, + 9B7464CB23AF70B6BA9B08EC378BDDEB /* grpc_library.h in Copy impl Public Headers */, + 0D116A6BBF48A114F8C1740E46F7275E /* method_handler_impl.h in Copy impl Public Headers */, + 91B5E625BA72911C39921FBF4D71266C /* rpc_method.h in Copy impl Public Headers */, + 62E241D091E8268327C06B49A5084414 /* rpc_service_method.h in Copy impl Public Headers */, + D1C34A0B6893C288ABA9E85E23C0427E /* serialization_traits.h in Copy impl Public Headers */, + D4F2F779303CB8C2167C464A76F55BE1 /* server_builder_option.h in Copy impl Public Headers */, + EE0B77DBD1A8DB2793152534ECE4AB0A /* server_builder_plugin.h in Copy impl Public Headers */, + 2EE8C151F9640B8E589D4EA56E5CA6FC /* server_initializer.h in Copy impl Public Headers */, + A5136D6E0E47BF9586E49D3402701083 /* service_type.h in Copy impl Public Headers */, ); - name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; + name = "Copy impl Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 99E2D2C66D42D3A5BC5EEEB15425BC8A /* Copy src/core/lib/gpr Private Headers */ = { + 9ADA585F673E80F29781EE5438323BC0 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/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-generated/envoy/extensions/filters/common/fault/v3"; dstSubfolderSpec = 16; files = ( - B29B288B1DFBCFD698E92964EB431963 /* alloc.h in Copy src/core/lib/gpr Private Headers */, - B2D79FFF08A47CE8117310AA8D268C73 /* env.h in Copy src/core/lib/gpr Private Headers */, - DFFD85A2F4883249211F942149E4D658 /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */, - 5325F82117DC0BDDE3D1FAA62DAC483F /* spinlock.h in Copy src/core/lib/gpr Private Headers */, - FAA732D46123FB4DDE8F6536F336EF86 /* string.h in Copy src/core/lib/gpr Private Headers */, - 1275584DF4D9062B93ABD66FFDCD10D6 /* string_windows.h in Copy src/core/lib/gpr Private Headers */, - F3B57EFE6438DB5286A54FBBD857A58D /* time_precise.h in Copy src/core/lib/gpr Private Headers */, - 6CC4EAE9D6EF651EB7E41AC97C0DB7E7 /* tls.h in Copy src/core/lib/gpr Private Headers */, - 70F50F7E2F9561A8752108793C9EBF5B /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, - BD6BEC9012B88F5C949F381F16C6AA75 /* useful.h in Copy src/core/lib/gpr Private Headers */, + EFE2D6AC8EDA8F58A7220988EC9A510B /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, ); - name = "Copy src/core/lib/gpr Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9A2F27B77632509D456103FC1B316F1C /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = { + 9B65D36F4795ACAF2659DCD2A8DBD171 /* Copy uv Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/uv"; dstSubfolderSpec = 16; files = ( - 74467673EA499B03495E93E3880E6793 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, + 707CA9A87E8850A0E18AF81CCB9F3417 /* darwin.h in Copy uv Public Headers */, + 460C29770C219CDCCE245AA0394EEAC6 /* errno.h in Copy uv Public Headers */, + A76BEAF9B39098F5C57472F69D2BA08B /* threadpool.h in Copy uv Public Headers */, + D64319B5F63FADE0FD62F030E56C9B4B /* tree.h in Copy uv Public Headers */, + 990605F225C8E0117127ECC50D9A978B /* unix.h in Copy uv Public Headers */, + 67A262CADD108EE658F078B05E0382CB /* version.h in Copy uv Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers"; + name = "Copy uv Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9ADBDB485FF0BD64E2FBB05444281179 /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = { + 9BACC3D4CF899A47BC19BF0C6B1DB408 /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns/c_ares"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1"; dstSubfolderSpec = 16; files = ( - 22A1F32F280E854B1A01D2D075D3E02F /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - A5475B57FF7216D21F6ED7E77E7A2E3B /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, + E3956EBC259B6DD79A8EB43A05F4E94B /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 908BD70D5D97624830E7331D37B3441D /* eval.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + EC018BCFA007B69950EBFC0337312B25 /* explain.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 2875C18B282B50E28496C01E9D4F4AEF /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + D2DE9FF82B9ADC3C26F3584EEC9BAD48 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9BD1ECB30947B75CC92C1983D89C7BAE /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + 9CAB53B38B8C5FE32171624BD867A8FE /* Copy src/core/lib/backoff Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; dstSubfolderSpec = 16; files = ( - E28CC888C0FE84E747F16EDF51A202C7 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 84930F1F073BAF76D422FA30DB3A058A /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - C92CF1341E8B87E3A56D5FFC7AC467E0 /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 6F5D141CFB37C2091D45649F96C6FAA2 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 9AFE40FE958961D361C9D41306799B6B /* backoff.h in Copy src/core/lib/backoff Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + name = "Copy src/core/lib/backoff Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9DC0348262A0DBA1480D3EBACE0D32AE /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { + 9CEC9FE41F274DE3C0A473F1C17E1F2C /* Copy src/core/ext/filters/max_age Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/max_age"; dstSubfolderSpec = 16; files = ( - 3E2BAF46ED852E0728F4E3ECD57F2042 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, + 37592DCB645017A9450549707907C22A /* max_age_filter.h in Copy src/core/ext/filters/max_age Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; + name = "Copy src/core/ext/filters/max_age Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9E2FE2F70AFE5A6465D24E2886A9F111 /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { + 9DAAC779509B5CD9D7FCB4F6B6AF8C6D /* Copy src/core/lib/avl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; dstSubfolderSpec = 16; files = ( - 8790DD2BEBE238DCCC192CB20A3EFC6F /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, + E238B88FC295DE59DA262FCA15FC5EBC /* avl.h in Copy src/core/lib/avl Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/client Private Headers"; + name = "Copy src/core/lib/avl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9EAC5792C6FC417FBDD1DC2BC843FDCD /* Copy synchronization/internal Public Headers */ = { + 9F16CD22031AB697EAF2AEDC54263771 /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/frame_protector"; dstSubfolderSpec = 16; files = ( - A25CFEFB7FE18C98F5D0C1D9FA903F47 /* create_thread_identity.h in Copy synchronization/internal Public Headers */, - EBDEA275F3A03E1F6F5DA432409C076B /* futex.h in Copy synchronization/internal Public Headers */, - EF0E43B2D8F2BF69A0D19ACB3203A7D8 /* graphcycles.h in Copy synchronization/internal Public Headers */, - 85ACBAEEFCEB1AA6FBB658AAC8453EFA /* kernel_timeout.h in Copy synchronization/internal Public Headers */, - 96587A1A3F8C6CFB4E3BE84B909882C8 /* per_thread_sem.h in Copy synchronization/internal Public Headers */, - 4F0656B190ADA51E31E31A027F7737B1 /* waiter.h in Copy synchronization/internal Public Headers */, + 3FD0D3ACBAEC627062E553318A3D7978 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 09E944901C48475710B455FE6F00D2B3 /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 68F0A3545972A5A6A2283517FEB3F5DA /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + CDEED2FA516856CA4E44DC714E707F94 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 7E603CE1E638A2BF5801B333A9CE38D8 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, ); - name = "Copy synchronization/internal Public Headers"; + name = "Copy src/core/tsi/alts/frame_protector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9F73EA3475568E4C9D3A3EAA6B6CC136 /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { + 9F411527DF7F73B4B9C580BCF2E3AF51 /* Copy strings/internal/str_format Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal/str_format"; dstSubfolderSpec = 16; files = ( - CAB3D34405A523FF2689331D110830B5 /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - 8231C98897FB019B5F2DD7A04A9FFCB0 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - C13FF350EB7A04F00ABE3CE25F81D226 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + 04B34BF8FD7B40F28A90CB34E8F1A639 /* arg.h in Copy strings/internal/str_format Public Headers */, + A631916EF24D8360B0A575E81E457E35 /* bind.h in Copy strings/internal/str_format Public Headers */, + 0367C694B30029674141F24EA1D3050E /* checker.h in Copy strings/internal/str_format Public Headers */, + 0794882190C0B35A04E73FDB437BB7D4 /* extension.h in Copy strings/internal/str_format Public Headers */, + C795C8BA79A6D05C94B25629F70B1638 /* float_conversion.h in Copy strings/internal/str_format Public Headers */, + 9452E64CAE5673751EDBD321F6F7243A /* output.h in Copy strings/internal/str_format Public Headers */, + 453C2C565D15117BDF6B41FEA7E4C40B /* parser.h in Copy strings/internal/str_format Public Headers */, ); - name = "Copy src/core/lib/security/credentials/jwt Private Headers"; + name = "Copy strings/internal/str_format Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9F9E0E44030DB86EC36BD9EBC05D53BD /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = { + 9F485D534FC89AF094654A1F3D191ABA /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/route/v3"; dstSubfolderSpec = 16; files = ( - 587BAA7929E6FC594F7C044BD09CCA8D /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 2F89D18A947E4BC26D805FD984F44393 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 2F75677AEC3947A95F8F5FB564D0D308 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - B8492C92E2FC63BBF7FC406208FC6AC8 /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 5604E0813421E1DE32D86193A8DDD4CA /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - B31E584530AFEC9F847D494DF96D4106 /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 82ACF11C9FEA4C612C9A256FAFC1B6F1 /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - C0D1D5776F5835C7B8B144396308232C /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 0E02CF68D4973D15AB3951D13F94206E /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 8ADB44B9DBCAC3044D7FD0074E29A370 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - F3F28CC3663D607E20DBE62DCF2A4236 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 24E30AB419973D32D13926C3227DB440 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - CC3EA216C0AF14645A58256944A994BC /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - D5F38307DE0E380C4D9A960C85393FF6 /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 2F4F5CF12F2800F245B145749C4CD85F /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + 2B790708746B308DCE12E2EC70541CF1 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, + 26E279DE76AB5316FDA9A0ECD5D6A07D /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, + 49A33A5E1D0653C218EE62A02625A504 /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A09A2CB529330854F092126131D5992F /* Copy crypto/dsa Private Headers */ = { + 9F68EE17A86952B21A313A380796D660 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/dsa"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3"; dstSubfolderSpec = 16; files = ( - 8339B5472DD45F2D9AC5A64EED308D2B /* internal.h in Copy crypto/dsa Private Headers */, + 5175DA5DC6C30E4A3B4FC6E3B7F32053 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, ); - name = "Copy crypto/dsa Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A0E2C963DAB2083B6BE045A5F979B7E9 /* Copy support Public Headers */ = { + A0446550DD253C67B61113D566A1B9D9 /* Copy src/core/lib/security/credentials/fake Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; dstSubfolderSpec = 16; files = ( - C443343985C859CE61EDD66DE3A64E46 /* alloc.h in Copy support Public Headers */, - 0C881ADC7B8FF1E44F5C619798BAEED4 /* atm.h in Copy support Public Headers */, - AA0B084A428F70FCF500B5AEEDF1944E /* atm_gcc_atomic.h in Copy support Public Headers */, - 27FCB19055855DA571D67B7F43EF4A0C /* atm_gcc_sync.h in Copy support Public Headers */, - 2535D895015BD67CB0D61E9DADCD7F1B /* atm_windows.h in Copy support Public Headers */, - 947A026D926E1D5FBBF031C27EF9266E /* cpu.h in Copy support Public Headers */, - C4609A7CF275B99119F7904CC7C89445 /* log.h in Copy support Public Headers */, - 49293B7E37D1693808772AA115F1640A /* log_windows.h in Copy support Public Headers */, - 896F4FF2B5DED5B75AC40EB7ED0CC398 /* port_platform.h in Copy support Public Headers */, - 239F7B206E310A374614A82EAF3D1033 /* string_util.h in Copy support Public Headers */, - 3D700C3ECB56A7FEEB003CD819336B64 /* sync.h in Copy support Public Headers */, - B50B510B81A089CD5D40FFF7775BAF45 /* sync_abseil.h in Copy support Public Headers */, - E7F420356F89301F41E20681CDDED32B /* sync_custom.h in Copy support Public Headers */, - 9436FE0437DDA78052284234CE0A784E /* sync_generic.h in Copy support Public Headers */, - 95F5C04E40734F3D1DB1DBB84BEA8644 /* sync_posix.h in Copy support Public Headers */, - 669A15CB9A6FD684E8EAE07BE01E3CF3 /* sync_windows.h in Copy support Public Headers */, - 5D17B82AC2BC8C6EDAD5372F8B6CCAFB /* thd_id.h in Copy support Public Headers */, - E10897FAA0718F285009DA715D722C39 /* time.h in Copy support Public Headers */, - 34E42EF4CD43DA10BB3CCDCCD8D66265 /* workaround_list.h in Copy support Public Headers */, + 763B932A70DEAD120C6EFA1FA0527BE4 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, ); - name = "Copy support Public Headers"; + name = "Copy src/core/lib/security/credentials/fake Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A0F4DE6268E86B1F46C63614DF13F38F /* Copy src/core/lib/promise Private Headers */ = { + A09A2CB529330854F092126131D5992F /* Copy crypto/dsa Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/dsa"; dstSubfolderSpec = 16; files = ( - 0542315780A1E608B9283D71DF98BFAC /* activity.h in Copy src/core/lib/promise Private Headers */, - 09CEBC6FD3181270C1D647154977F99A /* context.h in Copy src/core/lib/promise Private Headers */, - 03AD48B47C726ECBA7E15FA66843835C /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, - C395B5F7BE7E0B593CDB22985C31BEA5 /* loop.h in Copy src/core/lib/promise Private Headers */, - 0DCB789EE3F1216D15B8638BAB3489C1 /* map.h in Copy src/core/lib/promise Private Headers */, - 4098D467E1AFE06181F0C2A4A62C5244 /* poll.h in Copy src/core/lib/promise Private Headers */, - BFB65183FD99512401FFD902BFF9F219 /* race.h in Copy src/core/lib/promise Private Headers */, - 3B74FF2363CC833BEF25B4E3F4F0F3B3 /* seq.h in Copy src/core/lib/promise Private Headers */, + 8339B5472DD45F2D9AC5A64EED308D2B /* internal.h in Copy crypto/dsa Private Headers */, ); - name = "Copy src/core/lib/promise Private Headers"; + name = "Copy crypto/dsa Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; A1816F8C93AFD0027F2E855E1DE9A87E /* Copy crypto/fipsmodule Private Headers */ = { @@ -10141,1436 +10085,1535 @@ name = "Copy crypto/fipsmodule Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A1CEC06347036D9A29336235350C4CC4 /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { + A1EF385C18B6AA34B3C7BEA871E35DDF /* Copy crypto/pool Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pool"; dstSubfolderSpec = 16; files = ( - D38794281E7AE228C6D7E1B42591D911 /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, - B14DCC40E75C5FC2F4CEE2D8995FC255 /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, + B6F1F20378275F4FBAE84D07948A5484 /* internal.h in Copy crypto/pool Private Headers */, ); - name = "Copy src/core/ext/filters/http/message_compress Private Headers"; + name = "Copy crypto/pool Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A1EB432DE017B5F0278B94AB2D3B46BF /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = { + A226524D1AABBA03B4C6E1CB6C4B9557 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 522C1B6F4A6C4D136B0AF4D1E7E580CA /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 0952C576F3F4D374224B9E5F453953CF /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 70FC673C722349F4E9E0D3D0FBDA1A48 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 193BFE7E1E63FEDA3D50F3BA592C51E7 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 2D346BD4529791D0546D458D799EFAAB /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 7C01935046D4D21DE76DADFEA9769096 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 13BA3D70A45B82993EFA00C072050BD3 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - B0A409FCE3453AE736A6268366E2A217 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 3DF280B623EB04D821C7ABEFDFFAA33A /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 02AE8B4207C5AD02C92F7ECEE3E8D0E6 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 0364DE5CED923105CC8BF9BF91F248B3 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 4F43AAEEA419DBC68ED2F2008480363F /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - F2415426FC64D1BB0120B05327D33E5B /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 445CAA09D3BB99FDBBD32A48C961EB03 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - FF413A003F1EBF05F077CADECBEE343C /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 92F88957F1FF8F9188C227B37DA71C2C /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, + 5C3784AB39A5E2FDC6E568D47C191968 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, + 043914CB299FDBB6C28681FBE8D8CBBE /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A1EF385C18B6AA34B3C7BEA871E35DDF /* Copy crypto/pool Private Headers */ = { + A3432B450A7F56793A0F7719FF410940 /* Copy src/core/ext/upbdefs-generated/validate Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pool"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/validate"; dstSubfolderSpec = 16; files = ( - B6F1F20378275F4FBAE84D07948A5484 /* internal.h in Copy crypto/pool Private Headers */, + CAD503124D06EFD33C844C187962CE37 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */, ); - name = "Copy crypto/pool Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/validate Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A2C051AF1804F7F1A9B5047255435495 /* Copy src/core/lib/security/credentials/external Private Headers */ = { + A41F994D45941A877C3A287CFEA8A3AD /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/xds"; dstSubfolderSpec = 16; files = ( - BC0114D3A8773025AEE0CA7F54C8770A /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 55C958C3237728FDCABC31EDBDB303D8 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, - 0430621FF85DC8D38006240618B3CC17 /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 55A3A4EE0F598D90E8C7F7EBB908693C /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 0574DA285B689A91E36041C8CA784A33 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + 9BC1205E4C63E0431643D0CA0501EC65 /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, + A5AD8BC383069364C9E871EA3A8006E8 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, ); - name = "Copy src/core/lib/security/credentials/external Private Headers"; + name = "Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A44421F0C09C33F8CBD7ACC8D0A35DB1 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = { + A7615FDF2C24C9D880DC14BA6574DDCF /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/ring_hash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/rbac/v3"; dstSubfolderSpec = 16; files = ( - 25DD5704BD5FD0352AE13092DE521BE7 /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, + 71BF2C0A42B67094872452070F601193 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A5ACEFFE7A6A9B7A98383B3CC3917CF2 /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { + A79FF84DDEDEFEDE5B09B58AE84E8AE6 /* Copy src/core/tsi/alts/handshaker Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; dstSubfolderSpec = 16; files = ( - 1E4430EB4632C9463EEE5D5E67824AD1 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, + FA85302A21E7E9BEA4D4CA0A867CC98B /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 6CF13DB71DFFC0BFF272840CE472EC66 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 4C509D24381E25D695496F859642869E /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, + CA13B2BD5088277A394CBCF8E91B68F9 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 9D497B67509DD7CB4E3C7B7216ECA510 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, + B67A67E466A129F9F5FCD6AAE7DD63CD /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, ); - name = "Copy src/core/lib/security/credentials/plugin Private Headers"; + name = "Copy src/core/tsi/alts/handshaker Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A794262DAC31553ED0C0C8F312C639A6 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { + A7C5B9D6117B7EAD005EB198F6F1B583 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; dstSubfolderSpec = 16; files = ( - 28CF7831FBB992F75711FFF69C7EE4A5 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + 18084F3D5145C15D17F777C1560DD52F /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; + name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A7C7129B5F4EEC1E540768FE0833BAD6 /* Copy src/core/ext/filters/deadline Private Headers */ = { + AAB51B0A0B5F006A64CCD1F75ADAA222 /* Copy src/core/lib/security/credentials 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"; dstSubfolderSpec = 16; files = ( - 2F2BB8FAFB29279B5EBE7746E42FD9E1 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, + 891F73B06A3A25F09DC093936E67041B /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, ); - name = "Copy src/core/ext/filters/deadline Private Headers"; + name = "Copy src/core/lib/security/credentials Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A8CDEA1CA7BD7C6AE29236992D44769A /* Copy src/core/lib/gprpp Private Headers */ = { + ABB7B18B6C727964CE896D6FABD9B2A7 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; dstSubfolderSpec = 16; files = ( - B938218CC99A036AD798FBF7F0D946A8 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, - 108976C4234BB6B74BF240CCA89CB153 /* bitset.h in Copy src/core/lib/gprpp Private Headers */, - A0BD3AFEBCA816307E276F05CBAF208D /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, - 395DAC4C9C1D67F0AE9E9A1639B918C4 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, - ECCB71EBFEC2FCFA9D0AC37C2D79340B /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, - C37D2CA2C9DAFF450B6763B2AAFDA30D /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, - 8B644B7E485D04E6C7D2E1ED2C80DF80 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - 79A70757BFDD5C79A31A13A81F37124E /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, - 12562D97180E9D7EDCB8FC8670352196 /* fork.h in Copy src/core/lib/gprpp Private Headers */, - 5C2ABE12A25BE5D807E94FAB7E62B315 /* global_config.h in Copy src/core/lib/gprpp Private Headers */, - 08CB7BE8972EC1D5FAF5DCF250958AA1 /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */, - F3BC86DDF042185E6A2988A10B1D0BA3 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */, - 024D778E1693734620529C6D8FB8ADB2 /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */, - 8205B162CBC838F86C83445B479BB77C /* host_port.h in Copy src/core/lib/gprpp Private Headers */, - 17FC96ADA902E04835E083D5A5B00FA5 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, - D87605364E6C6D63F3A85D0EC899A5BC /* memory.h in Copy src/core/lib/gprpp Private Headers */, - 0D654F4B7D3B1660147B28B8F06C2D32 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, - 68F23DF802766B688B55E9EE4DEF13C0 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, - F436E4A099D350ACD0DD4EC8CB917569 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - A5C39CB100F18A6439789D09A963577F /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, - 3129DD4B08A5BC27442B2C5B87FF982C /* stat.h in Copy src/core/lib/gprpp Private Headers */, - BD14AE4C5ABA7B5773AC233D9EC8A9F0 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, - E3B859133E99F31EC59579F71C7ABF9E /* sync.h in Copy src/core/lib/gprpp Private Headers */, - 6199E6CA0FC99A5F3A64561ED7BF5849 /* table.h in Copy src/core/lib/gprpp Private Headers */, - 95B91336468B71E3068958DFC0E47920 /* thd.h in Copy src/core/lib/gprpp Private Headers */, - 366AF83790CCD5537EB3AA3334870858 /* time_util.h in Copy src/core/lib/gprpp Private Headers */, + B93FFC217220627AAE767A28D754CDBE /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, ); - name = "Copy src/core/lib/gprpp Private Headers"; + name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A8FE1B694D895FBA47F0EDEB82D9A2BB /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = { + AC2D0AD9BE723D8996AD82014B15B2C9 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/bootstrap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3"; dstSubfolderSpec = 16; files = ( - C917C514D6F4693E07FA137961484253 /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, + EB4789F98465D2E346357F7FB9EFCDC3 /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A9469E69243979E449B82B5F719811B3 /* Copy src/core/lib/promise Private Headers */ = { + AC39BDC42068DDFD4991F870FB9B7288 /* Copy src/core/lib/iomgr/executor Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/executor"; dstSubfolderSpec = 16; files = ( - 9F1D4D5C9E1FEFF74B818815F53176FB /* activity.h in Copy src/core/lib/promise Private Headers */, - C6BC5148820EA91E1A8278CDE3B10C7E /* context.h in Copy src/core/lib/promise Private Headers */, - 17DFC3B49B7FCB28508C1C1C0C564EAB /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, - C3570A68EA532B0E9DA668C2D76DE4D5 /* loop.h in Copy src/core/lib/promise Private Headers */, - 29A2FA3FCEC288D6E4FA5ADD1EB29101 /* map.h in Copy src/core/lib/promise Private Headers */, - EBFB82AF4F8FA6AA58646CF6FE6927BC /* poll.h in Copy src/core/lib/promise Private Headers */, - 960F59F8EE7E1901CD48D3AD173EF6D9 /* race.h in Copy src/core/lib/promise Private Headers */, - 02FE3E549A30689ADC18494B9EE21217 /* seq.h in Copy src/core/lib/promise Private Headers */, + 4D6517B5190696997AB0E4A3FA8AD5EA /* mpmcqueue.h in Copy src/core/lib/iomgr/executor Private Headers */, + 008447E0A5A7F9420E5C105EFF7C2BE3 /* threadpool.h in Copy src/core/lib/iomgr/executor Private Headers */, ); - name = "Copy src/core/lib/promise Private Headers"; + name = "Copy src/core/lib/iomgr/executor Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A98D1965C97E517944042A59F91330D1 /* Copy base Public Headers */ = { + ADBB18AB6BA9228A6E2CA76DEF0CEDE0 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/http/v3"; dstSubfolderSpec = 16; files = ( - 3D154DF65A0E6EB1CCD21FED9833471F /* attributes.h in Copy base Public Headers */, - 513D50D45A4EF8DE21B404F97E54F027 /* call_once.h in Copy base Public Headers */, - 6625767A2D809BBBF2DD119FF16A8FB7 /* casts.h in Copy base Public Headers */, - 6D8A5F8BA1F66F49FE5A01E33A60F736 /* config.h in Copy base Public Headers */, - E8B5C05CDD5FC8BFC82B19D50FB2EAAD /* const_init.h in Copy base Public Headers */, - 566AB4E21BE4057D394126F82D5F9049 /* dynamic_annotations.h in Copy base Public Headers */, - 534E647E05B2FD8CEBBE82EB98BBA369 /* log_severity.h in Copy base Public Headers */, - 60FA7007B4634577D9465491BB8CEBD9 /* macros.h in Copy base Public Headers */, - FFEE19D8B2DB2635B8D29ADA64122F55 /* optimization.h in Copy base Public Headers */, - DD5F7F03DA492DD8D3F169A3CF91F3D7 /* options.h in Copy base Public Headers */, - C7EB0B87AD814680FC2AA88515429513 /* policy_checks.h in Copy base Public Headers */, - A4268EA4D8A4FD03FB3CECBBC95B15C6 /* port.h in Copy base Public Headers */, - 2A497D9F4DCA650EA046F91C6E0BD021 /* thread_annotations.h in Copy base Public Headers */, + DD37611CF184E3F98CF7FAF13E292F8A /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, ); - name = "Copy base Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AA114866FC2065AA2DA561916E8851A1 /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = { + ADE2A1C49C362A75F3398C6C92BA72F4 /* Copy crypto/x509 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/grpclb"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/x509"; dstSubfolderSpec = 16; files = ( - 74D852B9C2EAD5FEFFF310D7AF006976 /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 0DBB0DA5B2EE4FDBC370EB05FF67EED9 /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 40F2BB30E367545120CE5F667D492184 /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 3405EC26F45B6758B283C1D5B90FA7BB /* grpclb_channel.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - DDED9972078AE3FB44510EF3A39DC9C9 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - D9B25962F30B9D521CC15DEDB50DA073 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 1FE84DEDA6A3EEA968F2F6084579B87B /* internal.h in Copy crypto/x509 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers"; + name = "Copy crypto/x509 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AA2F7856B9F033B07C0971F77466A06A /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = { + AE14FEEB284D687F42AC38593B69216D /* Copy src/core/lib/slice Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/metrics/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; dstSubfolderSpec = 16; files = ( - 61CDBEB7FE41100594BE1E32EB2B1F51 /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, + 7B2B0FBA7AB86A8757A7E0A9945594FB /* b64.h in Copy src/core/lib/slice Private Headers */, + 58B9D2670DBF69384716F6C51D28A432 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, + 82DE92AD3EA6AD47ED3BCE78AA7D2D46 /* slice.h in Copy src/core/lib/slice Private Headers */, + F99E1A355A84F4018C8606B946DB4009 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, + B230DE48D4EF2E7709425822F702DBFD /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, + 9EC1CF6069201F872D4B1C6E4DB451C7 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */, + F6BE833FF1A8AD0B5DD5AE8EE4EB426C /* slice_split.h in Copy src/core/lib/slice Private Headers */, + 353FD66D8339EE618E04C6CC2F74698D /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, + D363D8BBD8FB24B23F4F5C934FE7D946 /* slice_utils.h in Copy src/core/lib/slice Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers"; + name = "Copy src/core/lib/slice Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AA4CC905B516A2BD355DFB7D931D6ADF /* Copy src/core/lib/security/credentials/tls Private Headers */ = { + AF143A5DB43E74E4CDC0F4277C48F844 /* Copy src/core/lib/profiling Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/profiling"; dstSubfolderSpec = 16; files = ( - E31151DF435503EEFCC9342CEE8025BF /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 060298B32CD43512842D941D50A20DE4 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 26E1398CE81F728A6D682196C2183700 /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, - A3C1F6F839ABF50D3E80C624774F25D1 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 9DFC33DD87943B464B073553B320E441 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 375394821024D371BECB4E24A75C0513 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, + D7842CA3C11CF85C9F33A618C53FD364 /* timers.h in Copy src/core/lib/profiling Private Headers */, ); - name = "Copy src/core/lib/security/credentials/tls Private Headers"; + name = "Copy src/core/lib/profiling Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AA531B756B0AC8F179F5D561AC4CDBB0 /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = { + AF73A6DCB3A8CF6DF656AEDC4FAA3BDE /* Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/listener/v3"; dstSubfolderSpec = 16; files = ( - 007FA9DC910BD26935A58992B4E62C1B /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - F579DE28DFBF3C9E530BC428E90F7D2F /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, + 1C7C3971D2464CC2C9DF72208CFED75A /* lds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AC602188D85BF3A38A0923B6224251CA /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = { + B0137505F6464AFAA281FC5E77648D5C /* Copy src/core/lib/service_config Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/annotations/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/service_config"; dstSubfolderSpec = 16; files = ( - 6B719246BC14E53A6BAC71B7FCFAA853 /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, + 9166C786C579D418D822721D89B53ACF /* service_config.h in Copy src/core/lib/service_config Private Headers */, + 0836B0101BBFA0148B22B57EAC77F209 /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */, + FB40BA58F467029F7F11853F65CBE44C /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */, ); - name = "Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers"; + name = "Copy src/core/lib/service_config Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AD5C0DF0833DC6F52C882643130FA535 /* Copy impl Public Headers */ = { + B080A9E5C475A733C20DAFD6311D85CC /* Copy src/core/lib/security/authorization Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; dstSubfolderSpec = 16; files = ( - 1B4052CE7395B0E4DD2F03C553D2BCAF /* call.h in Copy impl Public Headers */, - 2069B2B2793B76C9F8C406CBEF26B682 /* channel_argument_option.h in Copy impl Public Headers */, - 9257346BDDF329688084B446402E6625 /* client_unary_call.h in Copy impl Public Headers */, - E75B18E08D6A2773AF33043B1BD14DEB /* grpc_library.h in Copy impl Public Headers */, - F7346417324985C625D33D833727FA4D /* method_handler_impl.h in Copy impl Public Headers */, - 38C0A66B35C2A99D9D963C684FDED44B /* rpc_method.h in Copy impl Public Headers */, - 945A73FE87BC9144D02B49C8D39D05B3 /* rpc_service_method.h in Copy impl Public Headers */, - 384BAC66F63E4A80E438CB7510E161DD /* serialization_traits.h in Copy impl Public Headers */, - C7356C0098AA549C22B8054D19D8E2D3 /* server_builder_option.h in Copy impl Public Headers */, - 01F7FE2B118FFF74DE914D5CAFCA2843 /* server_builder_plugin.h in Copy impl Public Headers */, - 6D6223F352647C4A4EB5002EB64622BF /* server_initializer.h in Copy impl Public Headers */, - 948F2647727175ABCC7E835E36A38060 /* service_type.h in Copy impl Public Headers */, + EEC9999AC38023F60E6A923FF6AA233B /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, + 71E2206E0152CB5D42FFC34C0EC358AE /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, + 4102ABC4A30322660C9D1BCDEBE7A1BB /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, + 7D2D674D9D8A4D139ADC583890F0C3C5 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, + B3EE5F46949C7B9BC50BB4AAF51C3645 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, + 81B191C212A6F7747CA06306F14D22BD /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, + BE1FB5AD0B98EE1FD58AFE9CD344099F /* sdk_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, ); - name = "Copy impl Public Headers"; + name = "Copy src/core/lib/security/authorization Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - ADE2A1C49C362A75F3398C6C92BA72F4 /* Copy crypto/x509 Private Headers */ = { + B0D0D352B5A4CBCADC596DF8B96FBDF8 /* Copy crypto/fipsmodule/modes Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/x509"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/modes"; dstSubfolderSpec = 16; files = ( - 1FE84DEDA6A3EEA968F2F6084579B87B /* internal.h in Copy crypto/x509 Private Headers */, + D5DD195CF009A7109FE0B60E7C7F0C6C /* internal.h in Copy crypto/fipsmodule/modes Private Headers */, ); - name = "Copy crypto/x509 Private Headers"; + name = "Copy crypto/fipsmodule/modes Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AE76E7DCFFE432307749B5B1484C48C4 /* Copy src/core/tsi/alts/crypt Private Headers */ = { + B10C0A31978033AB1AA94EA3E638BF8B /* Copy time Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time"; dstSubfolderSpec = 16; files = ( - 63473547158814FF7AE7722BB9793754 /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, + 47C14BD26FCB09C5473E58A62165835A /* civil_time.h in Copy time Public Headers */, + D6A16A5E32B14BBECC494850DA3F05AE /* clock.h in Copy time Public Headers */, + DD8DF4E1DB38BC52BE1DCEFEF443669B /* time.h in Copy time Public Headers */, ); - name = "Copy src/core/tsi/alts/crypt Private Headers"; + name = "Copy time Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AF967229EEFA14B9B485EBF803AF93B7 /* Copy src/core/lib/address_utils Private Headers */ = { + B211611FE2FD74427B332D10D3920739 /* Copy src/core/ext/filters/client_channel/health Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/health"; dstSubfolderSpec = 16; files = ( - 63182A325D95759963B192CE7A8FB45A /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, - 9BC757AEF41CBA8FA4F272FF740790E0 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, + B0F8F1871972848E3E19AC805345B1A7 /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */, ); - name = "Copy src/core/lib/address_utils Private Headers"; + name = "Copy src/core/ext/filters/client_channel/health Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B07502884A8CF2FCF44BDF9A26EC4F21 /* Copy src/core/lib/debug Private Headers */ = { + B27989F7950929960B9FB4EFBF27F26E /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3"; dstSubfolderSpec = 16; files = ( - C5D8355FEAE8514FE47CBE12C35CA3E4 /* stats.h in Copy src/core/lib/debug Private Headers */, - 31564C2CB21AE93FA906495573B51FC0 /* stats_data.h in Copy src/core/lib/debug Private Headers */, - 1F1E6B9E05A590EB21CD5DE79EE9E974 /* trace.h in Copy src/core/lib/debug Private Headers */, + 86C2222C48B52000AE0B8E93C1A6DBC6 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, ); - name = "Copy src/core/lib/debug Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B0D0D352B5A4CBCADC596DF8B96FBDF8 /* Copy crypto/fipsmodule/modes Private Headers */ = { + B3EB572B01A44789369430C1D6725F75 /* Copy src/core/lib/security/credentials/tls Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/modes"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; dstSubfolderSpec = 16; files = ( - D5DD195CF009A7109FE0B60E7C7F0C6C /* internal.h in Copy crypto/fipsmodule/modes Private Headers */, + E4C6E1D615427BA29278CF6EE6677590 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 28BD9A1A3A992E6ED0060FE7CFB43E98 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 9A9D02075F5AA5585BE5CEB2916BA563 /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, + E7E6F534769843F1CAFDA3FF25A6A83C /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, + E2C8DDEA127DEC35674913783BC54B3F /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, + D19D785F603A1298EDC00D44B635574B /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, ); - name = "Copy crypto/fipsmodule/modes Private Headers"; + name = "Copy src/core/lib/security/credentials/tls Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B1E033A6D45A6D2DC7C27E568753D3EF /* Copy src/cpp/thread_manager Private Headers */ = { + B49A37AB89D97E3090AE36815F5F1FC9 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/thread_manager"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/route/v3"; dstSubfolderSpec = 16; files = ( - 8DA104D58491FBE999582DC50584AF11 /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */, + D88DD560B51AF06BA73A5D7B17D145E3 /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, + 45632F98B15C83C9A8944E77FA6BD964 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, + 90E3ACEEDD654B54E6A1BC35F12C3DA3 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, ); - name = "Copy src/cpp/thread_manager Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B22884FBE9A20C736B823AAD8884B75A /* Copy src/core/lib/surface Private Headers */ = { + B6101A1E72308EF79804684A292A380C /* Copy src/core/ext/upb-generated/google/api Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api"; dstSubfolderSpec = 16; files = ( - AE4D2C762B2DE18F9430137E16912297 /* api_trace.h in Copy src/core/lib/surface Private Headers */, - 3A3A9651334855223D373ACC0F7AF9B2 /* builtins.h in Copy src/core/lib/surface Private Headers */, - 94B771206CEC938FE6CE6A70224A48AE /* call.h in Copy src/core/lib/surface Private Headers */, - C5E41CF50D29E80465C319A188AA7A13 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, - 6C1AE618484A6A0FEEDA7EBD49E06A23 /* channel.h in Copy src/core/lib/surface Private Headers */, - A680C263B3A9807883BE99090F52D702 /* channel_init.h in Copy src/core/lib/surface Private Headers */, - 40732E52A7C82E10CFEF53451DC85B54 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, - 9A189F80E9390435B470990FE6E4EEBC /* completion_queue.h in Copy src/core/lib/surface Private Headers */, - 5FD986ECE1C7934FDE891E6837290F12 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, - F5991C539464922495EE44BAB097A29D /* event_string.h in Copy src/core/lib/surface Private Headers */, - 71AE57D1BCD858C6541D3C0C10185FE4 /* init.h in Copy src/core/lib/surface Private Headers */, - 90BB93313C13A5187556DBCF4C489374 /* lame_client.h in Copy src/core/lib/surface Private Headers */, - 2E0FD6715D566FCE8F81220FA5CDC9C3 /* server.h in Copy src/core/lib/surface Private Headers */, - 80DF401BEC8E202EA7C91D83111CDC13 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, + 356222A12A42F2F94399DD6C2A6FE78E /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, + F652FEF66BF57064D3D530D5CCFDD3A3 /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, ); - name = "Copy src/core/lib/surface Private Headers"; + name = "Copy src/core/ext/upb-generated/google/api Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B300093E763BB0FCE581BA48E8A1BB1F /* Copy src/core/lib/security/security_connector/local Private Headers */ = { + B6DC99EE078ECE0F15DC87DFBD7C3125 /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 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-generated/src/proto/grpc/lookup/v1"; dstSubfolderSpec = 16; files = ( - 5A182A78AC99E78DC721F24B377EB1D4 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, + 646DB8E4D2E553B6156F8C2967943DA1 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/local Private Headers"; + name = "Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B3122616A7FBB9971A199E8D28EECE67 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = { + B6F6D6AC8F19A0C07252184B6EFB872F /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/http/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3"; dstSubfolderSpec = 16; files = ( - 7D53475EB9A3610D1590186B54F749A3 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, + 6538FAA8EE9012F171BAD3589FA62ABA /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B388987E64D86F892C71F9B1BC6A6D30 /* Copy src/core/lib/security/credentials/local Private Headers */ = { + B793CAA2B81D4CC868E15ABC573D1D6D /* Copy src/core/lib/security/credentials/xds 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/xds"; dstSubfolderSpec = 16; files = ( - 58C01AD95A4B09AED6C25E2A3C237703 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, + DE673E0E73A8B0A1F634685A9577EED3 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, ); - name = "Copy src/core/lib/security/credentials/local Private Headers"; + name = "Copy src/core/lib/security/credentials/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B43B051017C299076B46A3A052669A8E /* Copy event_engine/internal Public Headers */ = { + B7C73C5D271E069F68E673AE9FF41508 /* Copy src/core/lib/security/credentials/tls Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; dstSubfolderSpec = 16; files = ( - A91559CC98AD921D6D2E3C3D065EC5AB /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */, + 9AEC32F224D3DB21D829D8B6356AD297 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 8F2B519A636B8C8584292B7A91A58B18 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, + EA2C6C40BCECD9E04A93717E240FB24A /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 2D64644671C87B1D1BBBF4C18B357635 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 764D7D4C44007C45563A0AB0B361CF05 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 8E6D9FF4C4D0D22ABB0D01C637663DA1 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, ); - name = "Copy event_engine/internal Public Headers"; + name = "Copy src/core/lib/security/credentials/tls Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B448C9470F28B327C1E91AAC8A283FEB /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = { + B8129780782A041455A765F99B769BA5 /* Copy crypto/curve25519 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/tracing/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/curve25519"; dstSubfolderSpec = 16; files = ( - 609581DAAE8BADC0DB2983E1B896BF5F /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, + 1492475F0AAFC6E745A00549F73D08A0 /* curve25519_tables.h in Copy crypto/curve25519 Private Headers */, + 351E039C861CCBC8BE5B3FF481FF3078 /* internal.h in Copy crypto/curve25519 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers"; + name = "Copy crypto/curve25519 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B4E9ED65D69C1B35E9B9157993146612 /* Copy src/core/lib/security/transport Private Headers */ = { + B81BF01AA120ED9F9F51AE8E6168B8BB /* Copy src/core/ext/filters/client_channel Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel"; dstSubfolderSpec = 16; files = ( - 5BA50CA0421929E732783BB5BC2B5156 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, - F1142CC475E9FF96B7EC05CF484985EB /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, - C9F374BEEE58BEAE6690B0D92371E889 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, - 620D90A387727807780758C61AAD92DD /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, + 392253B56B609630B12B5BFE30E35BBB /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */, + D3407BBD34CD733540CCA81376932BF0 /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */, + C48A2DA06AE4CBE906FD088F55255EC6 /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */, + 4D7153DCE913392EE7C224BF32EFF64D /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */, + A2888CD71D000D682FC84E286B7D9761 /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, + B7ED3F839C85914FFABAB730EB0372D1 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */, + 3E644CE6CAFD50E154DEFE3590CA754A /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */, + 4F6AFE249FB6A5746C596C0870699B47 /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */, + 68D4CBDA579BC41DA7AEBDBE36BAF9E7 /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, + 4B7ACC7091A76E5E1B2F5F808FE9FB01 /* http_connect_handshaker.h in Copy src/core/ext/filters/client_channel Private Headers */, + 621A4FFE6E4513CA2E70AAAAA5A96D4D /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */, + A5BEBBC2C2865654A9F221C874B08266 /* lb_policy.h in Copy src/core/ext/filters/client_channel Private Headers */, + 77417DD8F55B21725621D705114209C2 /* lb_policy_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, + 077EB1DFBBC37FA1F111515399879CD0 /* lb_policy_registry.h in Copy src/core/ext/filters/client_channel Private Headers */, + 80EDC5C0FBD349AF272D38EA70BBBBAE /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, + 9D2CDE32141D253FED598BE7DFBC7E87 /* proxy_mapper.h in Copy src/core/ext/filters/client_channel Private Headers */, + 07859EB7CC9D30DBF5BDACC5C5A36F21 /* proxy_mapper_registry.h in Copy src/core/ext/filters/client_channel Private Headers */, + 220020C29A3B07D37416F5C1DBFF01E0 /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */, + BC5E2699EEB80EBE2C486C41204C2583 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */, + EFB5C17A0CA78B7A35B39A6146153C5B /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */, + 13799D70D7D21E0A12172DF9C8C48AB9 /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */, + DE5C857478C8261127F30506A47630C6 /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */, + BA6FC8E8EB8B8AC30D022E47967E56E8 /* subchannel_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, + 656A59C2E1DD52D2A6D6B75019F92484 /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, ); - name = "Copy src/core/lib/security/transport Private Headers"; + name = "Copy src/core/ext/filters/client_channel Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B4FA25A13840BAA0053D68949EB51845 /* Copy profiling/internal Public Headers */ = { + B84868E3D3A0568830AE7E71F652754A /* Copy src/core/lib/gprpp Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/profiling/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; dstSubfolderSpec = 16; files = ( - C47975F7319BC2A90F9A0DF446100577 /* exponential_biased.h in Copy profiling/internal Public Headers */, - F4EBAC1501F5C675716AC02A81115075 /* sample_recorder.h in Copy profiling/internal Public Headers */, + 93F95C2292C52133619FE49AE77FC87E /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, + DE50B27DCEF52DA90BB413FB57C7217D /* bitset.h in Copy src/core/lib/gprpp Private Headers */, + BF5BE5ACE356059EF31E336BB516841E /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, + 0F23E218C3FF7FA0183BD945DF2A9C01 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, + 1B8ECAF9958A2A773A5F33F7CE302963 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, + 47CC7F5F417C56AB12E0891CE3B1A51A /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, + 1B632B2D6668751C9826B68690B80D16 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, + C580EDEA48D171285F0733F34D34864D /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, + 066F383BCFFB8991CA6D58A39F900F7F /* fork.h in Copy src/core/lib/gprpp Private Headers */, + 342703B2E4ED43D26EAC145031782FEA /* global_config.h in Copy src/core/lib/gprpp Private Headers */, + 4A2EBF958821C696B099B98454E64C2E /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */, + 9A16DC4BB986D7326F2124D1B07B01E5 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */, + 40B6334E0C3E284C49A3E8AC1A8BD8CC /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */, + 660C64E9788399122527CC25076AE203 /* host_port.h in Copy src/core/lib/gprpp Private Headers */, + 1F512FB3C1EB014E1F09D17567FFA953 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, + 77B3FB6AE06B9FB8FB9D14DDDACC757F /* memory.h in Copy src/core/lib/gprpp Private Headers */, + 0815AF89866530CB9BF30CD7EA5EEAD4 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, + 8603FD9F1ABA022444057C3DF7FD1FCB /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, + 5CC175917ED0C50AFFAC64B9E5DAA6DA /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, + 15FCA27CB02820BCC27F30CAC142B204 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, + BCC1552B7A1B37CDDC5B8E349B2BE430 /* stat.h in Copy src/core/lib/gprpp Private Headers */, + 69684CBAFA4A6BF95147457AD04B3CC4 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, + 77390A729BF7DAF513654376E0B9FFD0 /* sync.h in Copy src/core/lib/gprpp Private Headers */, + 1F1DB9850A7BC695314A2D53E67530DC /* table.h in Copy src/core/lib/gprpp Private Headers */, + 8E37CFC889448FED6732BBCB62E4CA7D /* thd.h in Copy src/core/lib/gprpp Private Headers */, + 5AB137FC7B6F92D7168C3C05DE51AB33 /* time_util.h in Copy src/core/lib/gprpp Private Headers */, ); - name = "Copy profiling/internal Public Headers"; + name = "Copy src/core/lib/gprpp Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B54772A87F25E4D82C93F99780C021A1 /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = { + B89469B2F0835D8C3A97252997C2D443 /* Copy src/core/lib/debug Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; dstSubfolderSpec = 16; files = ( - BB02ABD371E8412125EA1EC3ED818880 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, + ECB64A4CAEA9AFFB7866E1889DA81057 /* stats.h in Copy src/core/lib/debug Private Headers */, + 77DFA732478B1FF4E33CFBE915F1455F /* stats_data.h in Copy src/core/lib/debug Private Headers */, + 71D6B5CAD5AAD8EAC790740D57738BBB /* trace.h in Copy src/core/lib/debug Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers"; + name = "Copy src/core/lib/debug Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B55CAD7DD0DD396E4E79850C298C64A9 /* Copy src/core/lib/backoff Private Headers */ = { + BB2EEE427449B716B2803F716E0AB246 /* Copy src/core/lib/security/authorization Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; dstSubfolderSpec = 16; files = ( - F24497412E8CAC50D0230A3C654524F2 /* backoff.h in Copy src/core/lib/backoff Private Headers */, + 5238B8EE4B10384B41D5F3259AA59396 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, + 514300DD097E2FB436CA9C2FBBF2A96A /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, + 78AA2DA95A0396DABDF1009FCE91F417 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, + CDA7531A6B116419378E504CB3C06EC8 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, + FED660EEE1E0A4BA934A6A2DC5D56687 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, + 3AC09D08766D207F4CF81C5923428D8A /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, + 008940C05007BEE09392B46A228E5539 /* sdk_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, ); - name = "Copy src/core/lib/backoff Private Headers"; + name = "Copy src/core/lib/security/authorization Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B62E45B0969C87128B213F69776A3917 /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = { + BB4422D0911C6D4E3F636BB7484A11BA /* Copy src/core/tsi/alts/crypt Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; dstSubfolderSpec = 16; files = ( - 3F4292C0B1DE6612D733A7C97BE8264C /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 72003D148CBCA6CB0B9E25C6527336D1 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - F91EB189D6986127D986749FA8A21966 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 3DF62F455D5661045DEC06C4733A3E56 /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 2EDEEFC6FDA435945AC662A2E028DC30 /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 17A718A39CADB85FD7877310EC966D9B /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers"; + name = "Copy src/core/tsi/alts/crypt Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B648E3CCE5A222016D8C29490AD50525 /* Copy src/core/tsi/alts/handshaker Private Headers */ = { + BBB7EA6696E73A40DC53324F1E240237 /* Copy src/core/lib/gprpp Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; dstSubfolderSpec = 16; files = ( - 32AEB99AAF2374C0357DBEA35C10D0C4 /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, - D610FF689559A5B2628AB3A1402A2954 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, - C2E9D319329543B2ABBAAEEF40A8307D /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, - FF2F692EE417AD36E3B6A4395F8355EA /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 05191F2D0E475A87CA0AEECD699B0207 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, - A88A3D7E8DD8FE49CCA91F6D0073FD5E /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 3A738E780EE6263C99F62817B6E06184 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, + 00A34551F5345275F5761C9DC8277782 /* bitset.h in Copy src/core/lib/gprpp Private Headers */, + 6E6F438C299FF0D91A47FB15E64451FB /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, + B66D541DCF55A55B09E0DF5EAD568FF6 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, + C149C3B886733BC9FE54D5F95D56A62C /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, + DE145FEBCB1FF7C2A096AC5A11868EAD /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, + 1D192E9A387ABD6A8433FA049F6B146C /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, + F7C8A8FC883C18C212F99CF2D5C70F44 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, + D32CE2F947845FE0FF952656D64089B7 /* fork.h in Copy src/core/lib/gprpp Private Headers */, + CBEB8DE8237A71626E089386F5B3AAAC /* global_config.h in Copy src/core/lib/gprpp Private Headers */, + 8D9227B5995D06F7CAA80EE39FEE3BCF /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */, + B0C297C617D71938B71AFE4C41763670 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */, + F4AB15543A57B3E82D6FC67596F7AD54 /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */, + 05FE0BAAFE7C97B40C518BAC258DF5AB /* host_port.h in Copy src/core/lib/gprpp Private Headers */, + 0EBB62DCF8332CAC6630733BB82E792A /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, + 4FCACC0B279CDD6E65F709CF8D75232C /* memory.h in Copy src/core/lib/gprpp Private Headers */, + EAC6E3E9AFA8F16F30797953FD990115 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, + 73C893F726AEAB2E970E84674DCBD09B /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, + ED7C9A733629C9B1FF3E9A33BAB559DA /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, + 0AAFC6F78A93ACEEA0227F98D0E0C943 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, + 06AD37EDF0841F1F8DA7E54AE596B342 /* stat.h in Copy src/core/lib/gprpp Private Headers */, + DC0AC251FC0EC570DBC96B184A6BD18A /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, + A06B68270F9458DA85B27EA54CEAC277 /* sync.h in Copy src/core/lib/gprpp Private Headers */, + D8F0546C6B6FD2662F89BD7630F494A0 /* table.h in Copy src/core/lib/gprpp Private Headers */, + FAC73A7844A1B8D7136B831E386EAC73 /* thd.h in Copy src/core/lib/gprpp Private Headers */, + 9E0C08D7C33042E7C3488D391B00980D /* time_util.h in Copy src/core/lib/gprpp Private Headers */, ); - name = "Copy src/core/tsi/alts/handshaker Private Headers"; + name = "Copy src/core/lib/gprpp Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B66F950930D8139A3B3D6D2DFCAA8D80 /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = { + BC27F37E1EC372DF5C1567630ED92D70 /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/discovery/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/metrics/v3"; dstSubfolderSpec = 16; files = ( - 24E561B0C76618292383D9731295DF82 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - EEA00D40FA78229DF8B493D086144091 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, + EBBAAA5CA3103EEDF57A1F9D60267A7F /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B8129780782A041455A765F99B769BA5 /* Copy crypto/curve25519 Private Headers */ = { + BC537DFBE1242D27E42D36E251E08DB3 /* Copy crypto/x509v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/curve25519"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/x509v3"; dstSubfolderSpec = 16; files = ( - 1492475F0AAFC6E745A00549F73D08A0 /* curve25519_tables.h in Copy crypto/curve25519 Private Headers */, - 351E039C861CCBC8BE5B3FF481FF3078 /* internal.h in Copy crypto/curve25519 Private Headers */, + 3D675715FB684536BA9E54677A57D3CF /* ext_dat.h in Copy crypto/x509v3 Private Headers */, + EEC063EE8535D591090A77437DC796A5 /* internal.h in Copy crypto/x509v3 Private Headers */, ); - name = "Copy crypto/curve25519 Private Headers"; + name = "Copy crypto/x509v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B8DAC8C690234278CBD9726B9CCDDE27 /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = { + BE75C62CB65E441F6805D9B019DD8DF5 /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/server_config_selector"; dstSubfolderSpec = 16; files = ( - 32A241E35C50DFB5287BD6A97A0F0832 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - F89107E05A4AD09CFDCB8EABFFDAD440 /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - B3C94AED0D5E64CE23B08EF91AA5A28F /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - B9D30ADD45F68E8261C9F72BD0ECD1A2 /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - AC8B9604523DB02D96786889682D27A0 /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 4077FCD0004D5AA9A160A6FF139A4A59 /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - CD1B4D6C3FFB31C42EF4E25718933B6F /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 9E001677D3B5C8DD0F642555CD5D2A12 /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 882583EBF3056A71B3A902A695EA22F1 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, + 9BA748A53E5B9C61E39AC97313D3B505 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers"; + name = "Copy src/core/ext/filters/server_config_selector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B8F10E71E52B1924C6A19B2B3ADA4617 /* Copy src/core/lib/surface Private Headers */ = { + BECB1FAF553B4C003508EC315BC292E0 /* Copy functional/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional/internal"; dstSubfolderSpec = 16; files = ( - E55C7801F58B4F6113BDC9B63E81357B /* api_trace.h in Copy src/core/lib/surface Private Headers */, - E2F2F014E45505AA121C951F0E8D9FC7 /* builtins.h in Copy src/core/lib/surface Private Headers */, - AA1CBE69AA9637E2DE57503A09C9FC19 /* call.h in Copy src/core/lib/surface Private Headers */, - EE209143808ECB59327E86C200D70FA5 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, - 5565767F4776914DBEEA1F4F89F0A859 /* channel.h in Copy src/core/lib/surface Private Headers */, - 74723143C78328CD51003E8D1B3468A6 /* channel_init.h in Copy src/core/lib/surface Private Headers */, - 7C12C070A37C3B1B006F55FE4B8170D6 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, - FC8ACDFF8B1468020F7D4513665837C0 /* completion_queue.h in Copy src/core/lib/surface Private Headers */, - CF045188773E115A69B414FBC82E4A56 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, - 4302EDBCFF58754576919CEC625E00AB /* event_string.h in Copy src/core/lib/surface Private Headers */, - 209E81EE89C386497C45B3383E691E53 /* init.h in Copy src/core/lib/surface Private Headers */, - 9CD1FD566509D560C9F44924A0CEEAF4 /* lame_client.h in Copy src/core/lib/surface Private Headers */, - 9DF188CF5FE0C8866EB7102312799799 /* server.h in Copy src/core/lib/surface Private Headers */, - 730058CC14DCCCD386B2A33FB36A0F5B /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, + 71713C5A556791273FB667E26ACE2CA5 /* front_binder.h in Copy functional/internal Public Headers */, + CECBBFFCDA77795D4F6646ED3B4A5FA8 /* function_ref.h in Copy functional/internal Public Headers */, ); - name = "Copy src/core/lib/surface Private Headers"; + name = "Copy functional/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B93BAE1DE57960D01E486DF663ED1796 /* Copy hash/internal Public Headers */ = { + BF3C13A5ACED2ED3C9766F12AE01C476 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3"; dstSubfolderSpec = 16; files = ( - 681F97A3593FFC0B1874D439B7DEDE0E /* city.h in Copy hash/internal Public Headers */, - F7C5540A8C76B35CE6E524AB90EE14F3 /* hash.h in Copy hash/internal Public Headers */, - 6FD98C0E5FF2760CAE16C620946889AB /* low_level_hash.h in Copy hash/internal Public Headers */, + 8E6D212DC2099482C6534188BE966554 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, ); - name = "Copy hash/internal Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B9580E43190B500D061EC94FC5101C6C /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = { + C0205ACCFBF09DD1F9F3C48237798514 /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/load_stats/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; dstSubfolderSpec = 16; files = ( - 489ACDAD8592DD0B0F0B3014D2139D27 /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, + 3A70C566EDC9E208DA27E370A50F23FE /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, + FA46FE48A45065F39861811F5F863403 /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers"; + name = "Copy src/core/ext/filters/http/message_compress Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BA148A9538DCDB65893ABD21DB9B439D /* Copy security Public Headers */ = { + C05061F02BA96B3D1E2C75C627CCF447 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/security"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy"; dstSubfolderSpec = 16; files = ( - 887FC33AA65F062572ACF75AABA91644 /* auth_context.h in Copy security Public Headers */, - 47FE6B59FB827C9564B94CBB9B08838A /* auth_metadata_processor.h in Copy security Public Headers */, - A38477B47D90E9778859D05E4B9DB2C9 /* authorization_policy_provider.h in Copy security Public Headers */, - EE9881F18BDEAB91A57E4AF8E7929216 /* binder_credentials.h in Copy security Public Headers */, - E380AABD16CF05B8ADB492D7C3BD6240 /* binder_security_policy.h in Copy security Public Headers */, - 4923451C2888B3A32EBF97C16E55CE78 /* credentials.h in Copy security Public Headers */, - 01CCC66FB0BBC30600D6C975D08A39AC /* server_credentials.h in Copy security Public Headers */, - 7BD44AED3397B12235E46E2EB507D51F /* tls_certificate_provider.h in Copy security Public Headers */, - 254828A45A685B3A88D8596DB9080F15 /* tls_certificate_verifier.h in Copy security Public Headers */, - 65ACEDD634B85412F30C02B677724D43 /* tls_credentials_options.h in Copy security Public Headers */, + FAED3312B59365E857895BBEB79855D2 /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, + E59D989DBD241A195D28D0773181B667 /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, + EFB04E272432603C25058E2B389628F0 /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, ); - name = "Copy security Public Headers"; + name = "Copy src/core/ext/filters/client_channel/lb_policy Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BA7CFCF5AA4AB340C71C4797F803ADA1 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = { + C07E1020955AB6263791B3B2728B3720 /* Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/overload/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/cluster/v3"; dstSubfolderSpec = 16; files = ( - 5682CA7EDB3E0552D39F610853E0AE76 /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, + 7077BC524D619BDF834EC30C8119ADD6 /* cds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BAC9E2027FC1009A2BC8D65D28C1A13F /* Copy src/core/lib/service_config Private Headers */ = { + C32476D765BE831117913954C0427AAF /* Copy src/cpp/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/service_config"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server"; dstSubfolderSpec = 16; files = ( - 77B8F79841FB3F855B1434B3D8198B6F /* service_config.h in Copy src/core/lib/service_config Private Headers */, - 79D176FA4D31FDA08EBA20840053F52B /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */, - FF5E4F3C5459682DF8F06A7DC531B5BF /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */, + A576940997F20DE885B5D920274A9005 /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */, + 7ADB3FEF70C1456C7DACDEB176915A57 /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */, + C3B4542EF75F6DEAEF99F0A60A1026B0 /* secure_server_credentials.h in Copy src/cpp/server Private Headers */, + AE1EBCCDE9C890360AAAD8C8986355B4 /* thread_pool_interface.h in Copy src/cpp/server Private Headers */, ); - name = "Copy src/core/lib/service_config Private Headers"; + name = "Copy src/cpp/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BC537DFBE1242D27E42D36E251E08DB3 /* Copy crypto/x509v3 Private Headers */ = { + C37647092D8D366FAB34FC3B4C78459F /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/x509v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/status/v3"; dstSubfolderSpec = 16; files = ( - 3D675715FB684536BA9E54677A57D3CF /* ext_dat.h in Copy crypto/x509v3 Private Headers */, - EEC063EE8535D591090A77437DC796A5 /* internal.h in Copy crypto/x509v3 Private Headers */, + EC1483A2F248A44B29C038697EA03AEE /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, ); - name = "Copy crypto/x509v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BD41D20124D16F376431F2519009D64B /* Copy random/internal Public Headers */ = { + C388BD24B05E2B1BD8DB9C0884A4D3C7 /* Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/route/v3"; dstSubfolderSpec = 16; files = ( - BD8A086F4BBF13572C0E91D615263A15 /* distribution_caller.h in Copy random/internal Public Headers */, - E13B4FC4A09ACCDECA5E450080B06560 /* fast_uniform_bits.h in Copy random/internal Public Headers */, - E9FCDD7E212568941FEAD41231221E9C /* fastmath.h in Copy random/internal Public Headers */, - E30CBBC825AE61EF928200382F167C66 /* generate_real.h in Copy random/internal Public Headers */, - 603B46CE09CC8B804D1A4DA725FB66C5 /* iostream_state_saver.h in Copy random/internal Public Headers */, - C017A3AA4A4FE81482DBF5A905C2F2AF /* nonsecure_base.h in Copy random/internal Public Headers */, - 308F2E86D042DE61F4528A78FE8013BC /* pcg_engine.h in Copy random/internal Public Headers */, - 827A89C41155BDD09AD4B7AC328CCAA2 /* platform.h in Copy random/internal Public Headers */, - 651BA2C83F3ABE05DD11C43BF05D2F15 /* pool_urbg.h in Copy random/internal Public Headers */, - B86E490CEECBD62EDB06A91937F62100 /* randen.h in Copy random/internal Public Headers */, - 4EF88F7427A42940FD54A7B6266A97D5 /* randen_detect.h in Copy random/internal Public Headers */, - BB409EB239A6F54140B94106C77314C2 /* randen_engine.h in Copy random/internal Public Headers */, - 3BCF8F256DA24774E1751119DBF7ACC9 /* randen_hwaes.h in Copy random/internal Public Headers */, - 9BA6607406462B5E6BCFDD47F2F106C4 /* randen_slow.h in Copy random/internal Public Headers */, - 6BE20A244B4CB8769B1E572332F82945 /* randen_traits.h in Copy random/internal Public Headers */, - 837587CC2058B0F3AD2EC0D5315B4F76 /* salted_seed_seq.h in Copy random/internal Public Headers */, - C24A798DA1DC030FF021C0A487050970 /* seed_material.h in Copy random/internal Public Headers */, - 04925CECD5189A3E60B6FEF7EB8E144D /* traits.h in Copy random/internal Public Headers */, - 283E02C273B79A1BFF54968C1379A4A2 /* uniform_helper.h in Copy random/internal Public Headers */, - D8AC49EAE00D963AE06395494742249A /* wide_multiply.h in Copy random/internal Public Headers */, + 565530321C47CA77D7413421575611FA /* rds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, + FB2D34E8CF55398DAD9FB8EE2D7E42E6 /* srds.upb.h in Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, ); - name = "Copy random/internal Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BDCA0D0A819F5759B0DAE79D2A20CA4D /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = { + C3D6CE8C1B5EAD55E4BC075B121C75E8 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/admin/v3"; dstSubfolderSpec = 16; files = ( - 93A6CBA2A24CE3057613391495DCE7D8 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, + 2560B548D3B6C5E17329EE3070FDDFC0 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BDD38B7397D14DD6F0325EC63DF96FD3 /* Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */ = { + C449B98D4FC564830E83ED83913715A6 /* Copy src/core/lib/promise Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; dstSubfolderSpec = 16; files = ( - 986AF91BCCC6E7C53B65FFF3E6A9036C /* lds.upb.h in Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */, + 0CA3B7CC3360F8EBA6626C7932F323B3 /* activity.h in Copy src/core/lib/promise Private Headers */, + 346C3ABDC9C4EA49F1192E67FE81F583 /* context.h in Copy src/core/lib/promise Private Headers */, + 4732595E421C6D02B8E3A2A78D6E0569 /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, + 7B350333736B15495F96CAE2A5BF4F6D /* loop.h in Copy src/core/lib/promise Private Headers */, + 3478505778714B31C2C2637719E792DD /* map.h in Copy src/core/lib/promise Private Headers */, + 9DA0785E0C3FD90076D767EC9EB9E832 /* poll.h in Copy src/core/lib/promise Private Headers */, + 1F385540FEFCF0E67DB2BAB0350C1387 /* race.h in Copy src/core/lib/promise Private Headers */, + 04A1F05BABECF3360C031656AF26C314 /* seq.h in Copy src/core/lib/promise Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers"; + name = "Copy src/core/lib/promise Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BE649FEDD39FDB9113FD8E18B1F176E6 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { + C47003401CB3112E817A43DDCEB5FF40 /* Copy profiling/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/profiling/internal"; dstSubfolderSpec = 16; files = ( - 34B271C07861D72DE8218F95B6BA86F1 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 43FDA1ECDFBC31EF76D7D6674F6B116B /* exponential_biased.h in Copy profiling/internal Public Headers */, + 2DAC08C0A72C406D4839ADEBA695D1A2 /* sample_recorder.h in Copy profiling/internal Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; + name = "Copy profiling/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BE97994E8B88B6157C5AA7964B1C84FB /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { + C5A6888E5838EE0F02A68649F3B76807 /* Copy types Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types"; dstSubfolderSpec = 16; files = ( - 80F783ED1B849D6D3072B930FC348A1B /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 4E5F2B912F75F32F3FAC8A8EE086A8D1 /* any.h in Copy types Public Headers */, + 84B791A758F6948E93814219BE4C570F /* bad_any_cast.h in Copy types Public Headers */, + E69031535D969E819AB749BCB3676DC5 /* bad_optional_access.h in Copy types Public Headers */, + 474D5373B35EC8C4C3BEA5B51C311365 /* bad_variant_access.h in Copy types Public Headers */, + A81EB397A57E8D3DAE22113E558B4AE8 /* compare.h in Copy types Public Headers */, + CC0F096D2A7DECBB636B7A6216B688FE /* optional.h in Copy types Public Headers */, + 67092AA0659A8A42F1EC2C03A0AEF6CC /* span.h in Copy types Public Headers */, + 0D43516888F8543802D87DD03267F927 /* variant.h in Copy types Public Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; + name = "Copy types Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BF3018C40035919459E3E9CAF9B30CBB /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = { + C5EEDB2AA54F063117B5F854C1318182 /* Copy src/core/ext/filters/http Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; dstSubfolderSpec = 16; files = ( - 233D595433841FFD7933E6B207919FFB /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, + F4DE2BE00A3A9C7E0433F6FD3635BDC6 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers"; + name = "Copy src/core/ext/filters/http Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BF8EA09464527CA99E345779531F8C44 /* Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */ = { + C62B9588B74941CA445ACD2E6084983C /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/trace/v3"; dstSubfolderSpec = 16; files = ( - CE2811B71326ABD8D4BCCF15CD7D55BB /* cds.upb.h in Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */, + 4E30CA270CA6263E663356DA3964F364 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BFB5F2B4A8663BBB5172F0CACDD90394 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */ = { + C651052912C759348C3B3BBE97AD2013 /* Copy src/core/lib/surface Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/rpc"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; dstSubfolderSpec = 16; files = ( - D7E1D7EB2548908B3EA0DE260BDD88A8 /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */, + CA6F9B2A9F923E149C0ED96EF584CDD1 /* api_trace.h in Copy src/core/lib/surface Private Headers */, + 83EDB3FC34CE02525FE7A3EE88B28CCA /* builtins.h in Copy src/core/lib/surface Private Headers */, + 0AC43E9CB5D48CA33CAF8BD59868B519 /* call.h in Copy src/core/lib/surface Private Headers */, + 36D354C005DF62D2E51F471BB8AE2BF8 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, + 1797C1A727A4510BA6F9EED7B209C195 /* channel.h in Copy src/core/lib/surface Private Headers */, + B926732492270E8B66574CA7B7FB9450 /* channel_init.h in Copy src/core/lib/surface Private Headers */, + 5F4517F4524186E347201875F3A20E19 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, + C6FE18A2B9C9B5BC12FB1A4FEFF46D83 /* completion_queue.h in Copy src/core/lib/surface Private Headers */, + 9D2FB831B4ACE10926E0DAFED7105AB0 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, + 8349F688095D8ECCA4F6BBADAB497DA0 /* event_string.h in Copy src/core/lib/surface Private Headers */, + AF1A44DC334486D2DC5C8B22FAADB881 /* init.h in Copy src/core/lib/surface Private Headers */, + DEBCA2BDBD74754592FAD86BBA9BC166 /* lame_client.h in Copy src/core/lib/surface Private Headers */, + CAA599C6791A1675B1E2CB36E42FD98C /* server.h in Copy src/core/lib/surface Private Headers */, + CBA01BF5FE94431AE29484D8E547B4DD /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, ); - name = "Copy src/core/ext/upb-generated/google/rpc Private Headers"; + name = "Copy src/core/lib/surface Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BFC59F86D07EC21AC77097E4BFD9E467 /* Copy debugging/internal Public Headers */ = { + C695191E66D5D2A10253792E5D45A1D3 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 6E4E35577ED4C957CE0D9AC6C4106F67 /* address_is_readable.h in Copy debugging/internal Public Headers */, - 0A7FF6C9A60B964167115D73C51C3C7F /* demangle.h in Copy debugging/internal Public Headers */, - 4307285EFB52A82F2268ADE5A3B8E04B /* elf_mem_image.h in Copy debugging/internal Public Headers */, - 833FE396294B0C9031D198CCA820BD58 /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */, - DB2B36A18192A804B41FDA4B864A5271 /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */, - C70709654934561FA059E760B7A1BD09 /* stacktrace_config.h in Copy debugging/internal Public Headers */, - 20909109F489F83FA2C7CF14B208E9E5 /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */, - EB837868F5F41B7BECCC2631D456BFE8 /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */, - 54CCCF78C0671ABF7D58552038371413 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */, - 7D43D6D1CEB6B06D6B936AAF9F155055 /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */, - 63B66E930E1038736F441D74BCD5E8C5 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */, - 34129BCB516F758DEAFED2E31193F825 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */, - 487B4338B7CCA5C1257FB4B09D2298EB /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */, - 9B9A02121E7FD67DCBE6403AB368856C /* symbolize.h in Copy debugging/internal Public Headers */, - 1119D23579AD1AEB7A3DCF4DACD7C435 /* vdso_support.h in Copy debugging/internal Public Headers */, + A44C59DE0886EE9920C695628591F11A /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, + 85F4EB98E4042065F2736619583BE682 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, + 49E123A83E79EE5AF2EA2099C6C65522 /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, ); - name = "Copy debugging/internal Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BFFA2A5A69153173D93BF4D67E2BA5A9 /* Copy src/core/lib/uri Private Headers */ = { + C7CEEE593CE845F82CD75425B9A664B9 /* Copy src/core/ext/filters/http/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; dstSubfolderSpec = 16; files = ( - 4FDDA415F3C2355CA5D181FD11C35225 /* uri_parser.h in Copy src/core/lib/uri Private Headers */, + EBFE853AE72ADE8FBDF5465DB8ECDD25 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, ); - name = "Copy src/core/lib/uri Private Headers"; + name = "Copy src/core/ext/filters/http/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C16529FDD442F3C75F56939CFC021D6A /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = { + C7DE63AADF3A5D6689527D496CBD1EC8 /* Copy crypto/obj Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/admin/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/obj"; dstSubfolderSpec = 16; files = ( - 3A3A850E75E2DFE4C0252A916CA5BE33 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, + C942BB5C5DFBD7294446E8EBA4A18606 /* obj_dat.h in Copy crypto/obj Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers"; + name = "Copy crypto/obj Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C1798E474795CCCB6434121E678D8FB9 /* Copy numeric Public Headers */ = { + C8AEB46845FDEB1EB2F27A986F9B36D2 /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/bootstrap/v3"; dstSubfolderSpec = 16; files = ( - AF66D87C6454FBA81C6FF99970D47263 /* bits.h in Copy numeric Public Headers */, - 60B270B904BF2FE1A8B7A24D7AAF88DF /* int128.h in Copy numeric Public Headers */, - 66416C5284BB9A2EDBFD86D9DA3AFD89 /* int128_have_intrinsic.inc in Copy numeric Public Headers */, - C60DA430138CE6FC0FAB56A1F332C6BB /* int128_no_intrinsic.inc in Copy numeric Public Headers */, + 754979EBFCCB0F0084325E7E5F68F240 /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, ); - name = "Copy numeric Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C2D989EE85ED698E69A734C4D9B28872 /* Copy third_party/re2/re2 Private Headers */ = { + CA09761704B5EC3BD247D16AA893360E /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/re2"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/cluster/v3"; dstSubfolderSpec = 16; files = ( - 20C0831415895F4757305A4184B118F7 /* bitmap256.h in Copy third_party/re2/re2 Private Headers */, - B99B97CF2CFB6401CBF8042AEC4E14D6 /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */, - 6870C477B30C6E016AABDD9A8CEFD3A6 /* pod_array.h in Copy third_party/re2/re2 Private Headers */, - C77869043A9F9C616F70C5D65C011808 /* prefilter.h in Copy third_party/re2/re2 Private Headers */, - 72961E71F056CBD0BBB4B29086B383E0 /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */, - 5E7CB868EBDA16B5B4812875D505260F /* prog.h in Copy third_party/re2/re2 Private Headers */, - 40633367C07C99B39A62A249D581634F /* re2.h in Copy third_party/re2/re2 Private Headers */, - 9198A4F194FC3E4CE98E64AF49277FB5 /* regexp.h in Copy third_party/re2/re2 Private Headers */, - 9A9187555656B81F569B56AF648A0F99 /* set.h in Copy third_party/re2/re2 Private Headers */, - 3F9DD52843896B9EE918A54EA5F4BB25 /* sparse_array.h in Copy third_party/re2/re2 Private Headers */, - 1FE487CB90023B3FF839F77EE9D19EB7 /* sparse_set.h in Copy third_party/re2/re2 Private Headers */, - 0C5C0C41D0B431D2BCFDD55F2F79B130 /* stringpiece.h in Copy third_party/re2/re2 Private Headers */, - E0BC35F0E4A68A331B1BE6DED624998C /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */, - B3EF17B65BE672F52567A84A5A9D32EA /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */, - E4730CE8162880AE600908E8DF027AF7 /* walker-inl.h in Copy third_party/re2/re2 Private Headers */, + 66553CF06D20DB3198C09A008B745217 /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + 55B99EC29AF69671A53358B5F02CFC51 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + F1FC892B4F161299DE95036CBFE6C087 /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + 65CD2C238EFB6EF252814E2370AE20ED /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, ); - name = "Copy third_party/re2/re2 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C2E3407409BEACE0FDD3BE0296AC7CB2 /* Copy src/core/lib/security/context Private Headers */ = { + CB08D0691A7C3ABF2B3B5FA77E2E102C /* Copy src/core/ext/upb-generated/envoy/type/http/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-generated/envoy/type/http/v3"; dstSubfolderSpec = 16; files = ( - AE02B2C46A957C55EB3524AA3216ED17 /* security_context.h in Copy src/core/lib/security/context Private Headers */, + 5735EC932B5AB8361C9B7F2DE71FEF92 /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, ); - name = "Copy src/core/lib/security/context Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C46492546454C11A8FB5B9F61F8FC9D9 /* Copy src/core/ext/filters/message_size Private Headers */ = { + CB38587433C2FE5075E1D1D808470DDC /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/message_size"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; dstSubfolderSpec = 16; files = ( - 292B3E3A3E971BDED21AFB9D2C667605 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, + 7142C4C0E23E9ABA96F43EDF2E2419FA /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + 3D0967FCF26F36F35AF3EE94773D5279 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + E6E4572682220EF72B4A2D465BAC0108 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, ); - name = "Copy src/core/ext/filters/message_size Private Headers"; + name = "Copy src/core/lib/security/credentials/jwt Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C67C6B3024B4A1A1237886D9294D2C53 /* Copy numeric/internal Public Headers */ = { + CB8D96D7E55AAE51E5FFCD865056DDAB /* Copy src/core/ext/transport/binder/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/client"; dstSubfolderSpec = 16; files = ( - 9930FF9166AABB844C25608F750453ED /* bits.h in Copy numeric/internal Public Headers */, - 3A3E006962CB5E597F2411CEA6D5D0EC /* representation.h in Copy numeric/internal Public Headers */, + 999C3B35A01F0CCD9B7C7D8E4EBCC687 /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */, + 2EECA94B114E46BDE89FDCCE3E743BCE /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */, + 2740F2286BC03ABB0D32331092D56B63 /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */, + 2527C21214666E16887C5153E880AF8E /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */, + 4A54AE1EF80C280C731D03266EEDD537 /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */, + 630F7C9E8250006D3490363565DF615B /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */, ); - name = "Copy numeric/internal Public Headers"; + name = "Copy src/core/ext/transport/binder/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C6CE716DA2855FF4AA42AB7DB55F93E2 /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = { + CBA3A747DC32B9488C9A07FABD6A88A4 /* Copy src/core/ext/filters/rbac Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/tracing/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/rbac"; dstSubfolderSpec = 16; files = ( - 28BB7FB0F56CFFFCC3ED44C891D5594D /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, + D4A0320DEDEDFEF3B03A179C792451D8 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, + 702D155F8C2ACF670AF9924DD92DCC87 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers"; + name = "Copy src/core/ext/filters/rbac Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C7DE63AADF3A5D6689527D496CBD1EC8 /* Copy crypto/obj Private Headers */ = { + CBB3195EE9111E4BBDBE9E46446BE4E8 /* Copy src/core/lib/security/credentials/local Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/obj"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; dstSubfolderSpec = 16; files = ( - C942BB5C5DFBD7294446E8EBA4A18606 /* obj_dat.h in Copy crypto/obj Private Headers */, + 95E8DD9617B64F260D90F63343FB69A4 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, ); - name = "Copy crypto/obj Private Headers"; + name = "Copy src/core/lib/security/credentials/local Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C8D3610801FAB8F29739D9B2E1363314 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = { + CC4278B21548F28A1154113A20C00626 /* Copy src/core/lib/http Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/annotations/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; dstSubfolderSpec = 16; files = ( - 4FDFBB138C32CAB14B065582AC99429A /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, + 6913F5E5D5992B66F0D0CC964AA30FEC /* format_request.h in Copy src/core/lib/http Private Headers */, + BCDAA4B0C37E815ED3FEB64DE7BDF0FB /* httpcli.h in Copy src/core/lib/http Private Headers */, + 86A79A9A0B2B8E628643493514B57A07 /* parser.h in Copy src/core/lib/http Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers"; + name = "Copy src/core/lib/http Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C91E7537C1A39F06EA08C7B9992F52CC /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = { + CC548BEF7AACBB31F7BB651AB264F9C9 /* Copy src/core/lib/security/context Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/context"; dstSubfolderSpec = 16; files = ( - AF6FE4B22A2900B044A232F6EA76DF25 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, + 42895DAAA2DD1CB6D3A79F6A38626038 /* security_context.h in Copy src/core/lib/security/context Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/resolver/xds Private Headers"; + name = "Copy src/core/lib/security/context Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C92C17CFB9706596074371910455163C /* Copy src/core/lib/security/credentials/xds Private Headers */ = { + CC594F1B031387D49A9216AF1BC4AA21 /* Copy src/core/ext/upb-generated/envoy/service/cluster/v3 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/upb-generated/envoy/service/cluster/v3"; dstSubfolderSpec = 16; files = ( - 45A08D8385810340285D8B4DCFB0767C /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, + 95F0BA1907032DAA1E998889A5FB7DB3 /* cds.upb.h in Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/xds Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C92FAF09ABDA995F8E70BBD9276C15AA /* Copy src/cpp/server/health Private Headers */ = { + CE0DB6AA09412BF8B9D85FA7F0776E16 /* Copy src/cpp/thread_manager Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server/health"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/thread_manager"; dstSubfolderSpec = 16; files = ( - 5B9E3FF4D2FC0EB1E4ABE69E58279CD2 /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */, + A321EE8D5AC9539E9C764CFF57DE677D /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */, ); - name = "Copy src/cpp/server/health Private Headers"; + name = "Copy src/cpp/thread_manager Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C978F5D909F166211E5A483AB3A934CF /* Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */ = { + CE7B8BE024E093A26F018F6F86801E28 /* Copy impl/codegen Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/endpoint/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; dstSubfolderSpec = 16; files = ( - F558CA0E9AD5C6903603BCB6183F998F /* eds.upb.h in Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */, + B26DB4C217168CB559B7697FD8A2C265 /* atm.h in Copy impl/codegen Public Headers */, + 50296C7D1E6E0AE9C4757A3F981295CC /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */, + 6CFB77626DCCB39422942404FE3C05D0 /* atm_gcc_sync.h in Copy impl/codegen Public Headers */, + 95B9D1CD171A3913A5BD687199BBECAD /* atm_windows.h in Copy impl/codegen Public Headers */, + ED03F2F6DA0D8D5E18F848CC788A2876 /* byte_buffer.h in Copy impl/codegen Public Headers */, + 79760D3F1B1A39692A0A26741B7654B6 /* byte_buffer_reader.h in Copy impl/codegen Public Headers */, + 9368F8570D70FB4FD5F7A872407766E0 /* compression_types.h in Copy impl/codegen Public Headers */, + 1D2A6E12CB7BA232FDA4C22B093C5549 /* connectivity_state.h in Copy impl/codegen Public Headers */, + 11DC4DF58D0FFFE4262671BD42869CC7 /* fork.h in Copy impl/codegen Public Headers */, + C3D991785A92EAE8AAB3F37450379670 /* gpr_slice.h in Copy impl/codegen Public Headers */, + 3CEB20263F19D7EACB2AA0DB9C6DD817 /* gpr_types.h in Copy impl/codegen Public Headers */, + 6562F302237E2F38313327E83EAE87EC /* grpc_types.h in Copy impl/codegen Public Headers */, + F8DE96D3311431C373601950631F2A5D /* log.h in Copy impl/codegen Public Headers */, + 79D14201C047E7532825B703D97BEF01 /* port_platform.h in Copy impl/codegen Public Headers */, + 6E293E9319036FC6B42AAD12C813F103 /* propagation_bits.h in Copy impl/codegen Public Headers */, + 1B5EA325D919708E38458F00A509C5C3 /* slice.h in Copy impl/codegen Public Headers */, + 8721B7B7B35C36F0A5AE597520D3316E /* status.h in Copy impl/codegen Public Headers */, + 99E2B06A117FF88621A9DB5A6FFAB490 /* sync.h in Copy impl/codegen Public Headers */, + 15834FB3BF217C2196C57CC5C6C60321 /* sync_abseil.h in Copy impl/codegen Public Headers */, + 857F7543A0232281EB08837119839044 /* sync_custom.h in Copy impl/codegen Public Headers */, + 01A53732AEC615189963A3BFE06EA56E /* sync_generic.h in Copy impl/codegen Public Headers */, + 0C8FAB4CF2B3059FAF01A0AD1298024B /* sync_posix.h in Copy impl/codegen Public Headers */, + 5B56846607A56F16E839CC7E70511989 /* sync_windows.h in Copy impl/codegen Public Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers"; + name = "Copy impl/codegen Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CA0C617B5A55AB745D76887690DEB3E8 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { + CE86F877F56207F9BB5074C9DB0F1200 /* Copy src/core/ext/filters/http/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; dstSubfolderSpec = 16; files = ( - F724264DA50EBBA4D19145A394B74D7B /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, + 8C1B32CD38241CADFC8BEA079F76C857 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; + name = "Copy src/core/ext/filters/http/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CB43423C462A8055B71B69469235C564 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { + CF43949D2C757A379BE23BE7EA4BDF75 /* Copy time/internal/cctz/include/cctz Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/include/cctz"; dstSubfolderSpec = 16; files = ( - 9D71CC98DA884922AD0A5060F6E88199 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, + 17206EECFAD0BD280AEE421D6B761E85 /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */, + AAEFDA21044822D2E71C4483D83E2E99 /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */, + 06237EE0BE4696DCA879809B744DAE9C /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */, + 24811CE70B167FC30E4301FD5EF68669 /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */, ); - name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; + name = "Copy time/internal/cctz/include/cctz Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CBF7B006E7BFCFAC8C38FCA960A48583 /* Copy third_party/upb/upb Private Headers */ = { + CF8AE3632487504D841EACAAB4619A48 /* Copy third_party/re2/re2 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/re2"; dstSubfolderSpec = 16; files = ( - 9553B21217CA4452E77644E1A7507DEF /* decode.h in Copy third_party/upb/upb Private Headers */, - 4A2C1370FAFD2E81934BEA86EEAABAF5 /* decode_fast.h in Copy third_party/upb/upb Private Headers */, - 9DDD2F4E8F123214A69767FFA5FAB4FD /* decode_internal.h in Copy third_party/upb/upb Private Headers */, - 892EC6195FD5A5495FD694ED1A33798C /* def.h in Copy third_party/upb/upb Private Headers */, - 0AE6B538DE6FD0715D273649BF9C8003 /* def.hpp in Copy third_party/upb/upb Private Headers */, - 49692AB75398C9BE15351BD214D0F34E /* encode.h in Copy third_party/upb/upb Private Headers */, - CD3EA83FE45DFF85EA1F3D8C3A5C951C /* msg.h in Copy third_party/upb/upb Private Headers */, - 81C581D177A8DB7C6317253764C89E21 /* msg_internal.h in Copy third_party/upb/upb Private Headers */, - A08E2D563FDBD4FB7BF82F01B5C3889D /* port_def.inc in Copy third_party/upb/upb Private Headers */, - 16917D8EF717CB9AF4F1F9BA8F61A2E5 /* port_undef.inc in Copy third_party/upb/upb Private Headers */, - 959A5DBD5FEA48C0CA40BEFB9FE1A18E /* reflection.h in Copy third_party/upb/upb Private Headers */, - 9BD26F28386EC11BBA3A90CE1183FEEF /* reflection.hpp in Copy third_party/upb/upb Private Headers */, - 3336F1C3232ECD8257C7F8CAD1E6CC76 /* table_internal.h in Copy third_party/upb/upb Private Headers */, - 3CEBB3B4C412FE1CBA231EB06793825E /* text_encode.h in Copy third_party/upb/upb Private Headers */, - 09F8121C62B00B116C320B4180BA986A /* upb.h in Copy third_party/upb/upb Private Headers */, - 1D4A6E9C37D4DDD9871E2F9741067E66 /* upb.hpp in Copy third_party/upb/upb Private Headers */, - 64BAB70560E1A1560749C9F93B047F7C /* upb_internal.h in Copy third_party/upb/upb Private Headers */, + 259D1D5AF059E7910194299868733761 /* bitmap256.h in Copy third_party/re2/re2 Private Headers */, + B0616C687028A6E0C35735C6C22F9B31 /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */, + 4A0E226E37C7D2D1D100F0365612EAA8 /* pod_array.h in Copy third_party/re2/re2 Private Headers */, + 029FE18E39F8CC29400556D976E985BA /* prefilter.h in Copy third_party/re2/re2 Private Headers */, + E04F90FFA146A691350ECF97026EDD38 /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */, + B7A9B1E73039BF4760AB7AF018338EB6 /* prog.h in Copy third_party/re2/re2 Private Headers */, + 1C2957A558FA239715531BBD74A137FD /* re2.h in Copy third_party/re2/re2 Private Headers */, + E040D06FE6A598AEED83505F51496DB5 /* regexp.h in Copy third_party/re2/re2 Private Headers */, + 18FC430C03ECDBD2A8B53D01090BFD9F /* set.h in Copy third_party/re2/re2 Private Headers */, + 339F0B68F33744CDB781FF843509E94F /* sparse_array.h in Copy third_party/re2/re2 Private Headers */, + 3C562365128DD2CA25BD67D2BDF2F7BF /* sparse_set.h in Copy third_party/re2/re2 Private Headers */, + 7F29D6BBEA89E9DA8B141CEE3CC59606 /* stringpiece.h in Copy third_party/re2/re2 Private Headers */, + F00ABE08C754D151B6CCCBA96D2C5BFB /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */, + FC4967DC090A71369DFA107A56E7699F /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */, + 41B7D0704ED205688AA17F4D7FB5EF85 /* walker-inl.h in Copy third_party/re2/re2 Private Headers */, ); - name = "Copy third_party/upb/upb Private Headers"; + name = "Copy third_party/re2/re2 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CC990D7025B12FC0A4C61ABBC6221D1F /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = { + CFADF0AA4DBC51575D3A1BA30BB91DA5 /* Copy crypto/fipsmodule/ec Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/health/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/ec"; dstSubfolderSpec = 16; files = ( - 262F80871565D2F606CEDC5893D46F84 /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, + E4ED624A1D7FA9245076FE1C678A717C /* internal.h in Copy crypto/fipsmodule/ec Private Headers */, + AAA6E29D530278E66A1E907597482E42 /* p256-x86_64.h in Copy crypto/fipsmodule/ec Private Headers */, + 470CEBAB48829F8F8571FC7843275A9F /* p256-x86_64-table.h in Copy crypto/fipsmodule/ec Private Headers */, + 05289EB07AE5201FE43CB1969C2B008F /* p256_table.h in Copy crypto/fipsmodule/ec Private Headers */, ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers"; + name = "Copy crypto/fipsmodule/ec Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CCC65D676679A952D33E2CEB6D57F05F /* Copy src/core/lib/uri Private Headers */ = { + D0F4934C0C66F0A64895BA3A8854397E /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/data/orca/v3"; dstSubfolderSpec = 16; files = ( - DCD4EC1EB53EC0ED7B463E0256842C89 /* uri_parser.h in Copy src/core/lib/uri Private Headers */, + 9156879C26151526CDF35D0E6BAD9A96 /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, ); - name = "Copy src/core/lib/uri Private Headers"; + name = "Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CCC7E9E3DBC93BE96A2A53C2CE5D60EC /* Copy src/core/lib/resource_quota Private Headers */ = { + D0F67C4DB0E1FFD1C0D32760C94CD6DE /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api/expr/v1alpha1"; dstSubfolderSpec = 16; files = ( - 196B2047464E9E8CE2F1C301CBE26491 /* api.h in Copy src/core/lib/resource_quota Private Headers */, - 6401DC3B44C2FD7A1CA861EA355A1A02 /* arena.h in Copy src/core/lib/resource_quota Private Headers */, - 6D9FD4A25F7DC8886E1BB427669392FD /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 191718181DBBBCF50BFB3470EF9634BF /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 4AB6EAE89B02D059978C940AEA1156D5 /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 46DE7348EA58FAB99D5CA67D70658331 /* trace.h in Copy src/core/lib/resource_quota Private Headers */, + 8D24DB0FF92FC3746183D4215D72F6CF /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + B52BF8A5AE2D21D69C5091A52B5F28D7 /* eval.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + DC02A83D0274E89134594D5887A4E500 /* explain.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + 52F23987AF60A2B5FC2AB2FFD336F68F /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + F6A0E1FAB7DFD99338AE348A1B12C34F /* value.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, ); - name = "Copy src/core/lib/resource_quota Private Headers"; + name = "Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CCFB7E242B73994D87A9259F018F2AF7 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { + D181836CF01642712EA19F7EBF40D3CB /* Copy src/core/ext/filters/deadline Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/deadline"; dstSubfolderSpec = 16; files = ( - 62C8AF218CE70F68A310ADA8E54B64B6 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 951D23899AEA1930D9AE4ED4808B397C /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; + name = "Copy src/core/ext/filters/deadline Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CDFD39688EC61B7DA0CFE45DDCC68C8E /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = { + D26B7EC30EC3148D766078B73DCDE2EA /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/fake"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3"; dstSubfolderSpec = 16; files = ( - 6FC1CA684D951ADE5BA6EFE5EA98B154 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, + 8CDBAD48306C01EA468F09DE79081240 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/resolver/fake Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CE196728C6BDE9880A14D2DAC27640AD /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = { + D2CE2E17190EE8EBE765947820CEE735 /* Copy . Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/overload/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; dstSubfolderSpec = 16; files = ( - A7341A117379261D8550E03BF3580DCF /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, + F84EB6D5C82E301C977BAA9EFFFC8229 /* alarm.h in Copy . Public Headers */, + 1F7ED72A93EE8F8C9CA7EF0AFD087C50 /* channel.h in Copy . Public Headers */, + D79A1D3ECF030B475314BC138A32B8A2 /* client_context.h in Copy . Public Headers */, + 5D656825B7891A1C468C96FE38E04D7C /* completion_queue.h in Copy . Public Headers */, + 778ED26A2600577E18C9A7D37989B93D /* create_channel.h in Copy . Public Headers */, + 74738659A429D2D0A8DC4FBF1EAC599F /* create_channel_binder.h in Copy . Public Headers */, + 4B08D7983E5E412440FD44A311B8F279 /* create_channel_posix.h in Copy . Public Headers */, + 8D4AF63B2A9211FBE0A7E1E99FF40491 /* grpcpp.h in Copy . Public Headers */, + B9356788ABDAFEF227F2937F7FF376C9 /* health_check_service_interface.h in Copy . Public Headers */, + 3E8FC4C50D31313CC2C7F86FFB1FF2BF /* resource_quota.h in Copy . Public Headers */, + F1BB9B7A00E5911BFCC3B190C4516A50 /* server.h in Copy . Public Headers */, + E98E4C90E4A4D6FE72CF237B9D44B21E /* server_builder.h in Copy . Public Headers */, + FA8AB9C4B334F408FBDD5416EE94B954 /* server_context.h in Copy . Public Headers */, + 8B7ED6270964BD7E07C2AEEE7E814640 /* server_posix.h in Copy . Public Headers */, + FE47CA1528AC8A10AD2D011EC3EF2D75 /* xds_server_builder.h in Copy . Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers"; + name = "Copy . Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CF2A08E28839316BD36217D41A685DD0 /* Copy src/core/lib/compression Private Headers */ = { + D329EDF6DF95D8BE235EE6E2F8D78956 /* Copy src/core/lib/compression Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; dstSubfolderSpec = 16; files = ( - 1104CED56D7845FEC736B804110F61E1 /* compression_internal.h in Copy src/core/lib/compression Private Headers */, - 835145442A1188B43EE3664AA282CEF0 /* message_compress.h in Copy src/core/lib/compression Private Headers */, + 234777704382D014D938470C3A863395 /* compression_internal.h in Copy src/core/lib/compression Private Headers */, + 129C290CE2D0F59EEB64391860854440 /* message_compress.h in Copy src/core/lib/compression Private Headers */, ); name = "Copy src/core/lib/compression Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CFADF0AA4DBC51575D3A1BA30BB91DA5 /* Copy crypto/fipsmodule/ec Private Headers */ = { + D361DBA2462C6F7AAD6C5677433F90DC /* Copy . Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/ec"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; dstSubfolderSpec = 16; files = ( - E4ED624A1D7FA9245076FE1C678A717C /* internal.h in Copy crypto/fipsmodule/ec Private Headers */, - AAA6E29D530278E66A1E907597482E42 /* p256-x86_64.h in Copy crypto/fipsmodule/ec Private Headers */, - 470CEBAB48829F8F8571FC7843275A9F /* p256-x86_64-table.h in Copy crypto/fipsmodule/ec Private Headers */, - 05289EB07AE5201FE43CB1969C2B008F /* p256_table.h in Copy crypto/fipsmodule/ec Private Headers */, + 073AD8783DB6B80E10978E0F5AC1BD45 /* byte_buffer.h in Copy . Public Headers */, + A72283012A0676253E44B4FF633D7C0A /* byte_buffer_reader.h in Copy . Public Headers */, + 23638E2EE48E1BB278F33F30A91EF4CE /* census.h in Copy . Public Headers */, + DB42BDF580529AF23BAC55B3BFD40630 /* compression.h in Copy . Public Headers */, + 89EC792CF434894A427D5226934B7EBB /* fork.h in Copy . Public Headers */, + 7D67DA59E6A7A49803CD2A53E962A699 /* grpc.h in Copy . Public Headers */, + D0B201A519EF1B416C799DAFD42CDE5B /* grpc_posix.h in Copy . Public Headers */, + A773E9D87DC7308E4EC26502FDE34FF6 /* grpc_security.h in Copy . Public Headers */, + 1C20D0F00B84D2959101CE3BFED3955F /* grpc_security_constants.h in Copy . Public Headers */, + 98114647B86A2FCC7EA59ADA1C4EFA8B /* load_reporting.h in Copy . Public Headers */, + 912DC9FA95A3059208A537C867A9E280 /* slice.h in Copy . Public Headers */, + E18BEFA9B1300AB2AA0036392FF8A222 /* slice_buffer.h in Copy . Public Headers */, + 31A8D75A33ED62293BA6008DD6751A9B /* status.h in Copy . Public Headers */, ); - name = "Copy crypto/fipsmodule/ec Private Headers"; + name = "Copy . Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D0A1698782C27F0B957B231183B6E187 /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = { + D37A956A8AE25B073FE50A089A28D160 /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/load_stats/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/annotations/v3"; dstSubfolderSpec = 16; files = ( - 2375B42494C7DDF012F650EFD52B4AA4 /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, + 9AA0600511243924C54B10C8176F8C7F /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D102E603DD9EFF4E73A0ABC9369A80F5 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = { + D3CBFAAF8D434A6DCA5A63F75F6E28C9 /* Copy src/core/ext/upb-generated/validate Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/validate"; dstSubfolderSpec = 16; files = ( - F45FF26B1453A66ACF53A82DAA833AE0 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 8572DAA23E4AE714A1808C07D2CEB46B /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 9C9799CD9CB39C8C24F8CE309D433934 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 24A8DAB16C79AAF5F4596248AD77F262 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 41078018A6CB5FFD3D855D7D0FB50541 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + 2F7B497BA001BC845DEDEE885AB315C1 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/validate Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D1ECBAC4AFC7ECCB81AE8CA4923255CF /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { + D3CECDE03724EA831A86F2B9244C26B7 /* Copy crypto/fipsmodule/des Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/des"; dstSubfolderSpec = 16; files = ( - 15DE04DB5FBB4ABEBFD0C665323916E4 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, + 00DDDCE4C2E8BB0968F5C7849464D18D /* internal.h in Copy crypto/fipsmodule/des Private Headers */, ); - name = "Copy src/core/lib/security/credentials/google_default Private Headers"; + name = "Copy crypto/fipsmodule/des Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D2B826DBB4D179D3C4DDB15FEAE13FD3 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { + D3E4CBDAE92C4866BB2D69FF27B38CB4 /* Copy src/core/lib/promise/detail Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; dstSubfolderSpec = 16; files = ( - 279AA4BBFAE7A7A1A1BEA6937DF90F63 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + DAAABB88A89AB03BD3C04E44C643E953 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, + 259F0FABE27E82121D81AE4FFAAEA940 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, + 549C8E55E978E05CC71BAC9A592E0E5A /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, + 77671219063527D8B538DEB62A39AB56 /* status.h in Copy src/core/lib/promise/detail Private Headers */, + 869E589207D5A204D318FC35610E5367 /* switch.h in Copy src/core/lib/promise/detail Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; + name = "Copy src/core/lib/promise/detail Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D2E00E1658398E609A3B8FC41B0A26D5 /* Copy src/core/lib/service_config Private Headers */ = { + D4CD3551D0F770197E8DC3026B7679F9 /* Copy src/core/lib/resolver Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/service_config"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resolver"; dstSubfolderSpec = 16; files = ( - DF7FEEE763E48EA51C45AB7F62396C9A /* service_config.h in Copy src/core/lib/service_config Private Headers */, - 45A64A09821C9931479E463C2D804CF8 /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */, - DBA84A4A2E6880543DF0C8BD0A6D3C8F /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */, + B5BD3EAB3FF3CF928D93B195420E9A97 /* resolver.h in Copy src/core/lib/resolver Private Headers */, + E317865A6EDCFA0A7291D920D5A8A2C4 /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */, + 645038F5BB9C763997730204B9ABE6EE /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */, + 9EAD144322D07AA0587C109DD2CCEE07 /* server_address.h in Copy src/core/lib/resolver Private Headers */, ); - name = "Copy src/core/lib/service_config Private Headers"; + name = "Copy src/core/lib/resolver Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D3909F3B29B603F9D46FF87B1485D899 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { + D5217EEEC742DBBCB80A98A41C2DEB96 /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/tracing/v3"; dstSubfolderSpec = 16; files = ( - 55CFBAB8775304D4A6EB0BB94B3BA5D8 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 8BB9371BABE97C7C1882C947973A6517 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D39D7A4B57CA744AB01E1722655EE1C0 /* Copy time/internal/cctz/src Public Headers */ = { + D538FC4B2C4062EF526EC3E0C9AA52EB /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/src"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3"; dstSubfolderSpec = 16; files = ( - A14125D316F98849901E049C0901BDB2 /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */, - 6E61B3E83B7AC2B8096B76BAB6698349 /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */, - 2916EE905CF5C868F16B31411657D563 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */, - 68A6527B413D4AE175F28FBECB2E5357 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */, - F088998D78DCD1B92C32750EB3D3092C /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */, - 6742EB48367E810678C515502E92BAD7 /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */, - 40BA7FD6E3EFEF2F92BC9C562FCE0D43 /* tzfile.h in Copy time/internal/cctz/src Public Headers */, + 58E92865E3D1062F251A94F9046B2F2A /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, ); - name = "Copy time/internal/cctz/src Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D3CECDE03724EA831A86F2B9244C26B7 /* Copy crypto/fipsmodule/des Private Headers */ = { + D548E28FC1B3ABDB477B94A89ACD1660 /* Copy src/core/lib/event_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/des"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; dstSubfolderSpec = 16; files = ( - 00DDDCE4C2E8BB0968F5C7849464D18D /* internal.h in Copy crypto/fipsmodule/des Private Headers */, + EBAF91E6525190E73BF02901B9877132 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, + DCFCC1373AFD45A43901C8574D1AE4F5 /* event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, + 358EA6F444DB1DFD66741801F57370FB /* sockaddr.h in Copy src/core/lib/event_engine Private Headers */, ); - name = "Copy crypto/fipsmodule/des Private Headers"; + name = "Copy src/core/lib/event_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D3F0A70349C1DEC7146DF1002592EE2C /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = { + D57E9710195C26C2FF842DBE67C8D832 /* Copy src/core/lib/security/context Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/trace/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/context"; dstSubfolderSpec = 16; files = ( - B90A062D16230B4E4C513B43312E9AC0 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, + EC4A9242EE3E2AE19566035F965877D6 /* security_context.h in Copy src/core/lib/security/context Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers"; + name = "Copy src/core/lib/security/context Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D4C62B861F219A20D396697FCF35E4D6 /* Copy debugging Public Headers */ = { + D8491C8FA717B74F3913EDB524FADFD9 /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/grpclb"; dstSubfolderSpec = 16; files = ( - 7B1721A0C4E2926D2C0A465BB2A2D16E /* stacktrace.h in Copy debugging Public Headers */, - 60C354754208BDE52F1BC7821ED50BFF /* symbolize.h in Copy debugging Public Headers */, - 565BA296546814298F0B362CE7AEA392 /* symbolize_darwin.inc in Copy debugging Public Headers */, - 27CC543D4DBB22830E70A6D3204510A1 /* symbolize_elf.inc in Copy debugging Public Headers */, - CF423790F1679389FA1C7F12BC5988AA /* symbolize_emscripten.inc in Copy debugging Public Headers */, - AECB860B24ED96BB91A23F98915F49A1 /* symbolize_unimplemented.inc in Copy debugging Public Headers */, - BB5806CCA4EF1E15CEB997D4718AA394 /* symbolize_win32.inc in Copy debugging Public Headers */, + F108C83FD535964292140BE7FABEA74A /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 94E7A915F5A6A285837C6802220626DB /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 6EDC88F1AC63300108C77D6F93CF7699 /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 6A11FE2FFF003FBD20E2F4349F7806C9 /* grpclb_channel.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + CA80867EEB2B89335453B8B789A2C4B2 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 610DB60897D8DD580B16342DF711D8E4 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, ); - name = "Copy debugging Public Headers"; + name = "Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D847CC125336B7AAC69A5D7F7CAFE5BD /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = { + D90A4BEE748817C6719BCA6E952D304C /* Copy strings/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns/c_ares"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal"; dstSubfolderSpec = 16; files = ( - EAE2BFE57B784A5B052B88F7F0ED9948 /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - 3EF8C1B4D5D7B84071F9989EE7E1BADF /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, + 5DC1EE6947C4C9EB9838CFB84C3F6797 /* char_map.h in Copy strings/internal Public Headers */, + F04DB6ECD3AAEA8AE5B1734F873F5B77 /* charconv_bigint.h in Copy strings/internal Public Headers */, + 1D877F02414CC8E309ABB430D2482456 /* charconv_parse.h in Copy strings/internal Public Headers */, + BDAA7BBD74B0293828AC7806F530A300 /* cord_internal.h in Copy strings/internal Public Headers */, + 8DAC29C13D3B417F07E588893FD3BE9F /* cord_rep_btree.h in Copy strings/internal Public Headers */, + 3EA3025D8172BADAAFDD0A4A6C07B6DC /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */, + 3999C19884B6F5D511A965D59A1C3988 /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */, + 748972C048878484E70F039C52A1EC32 /* cord_rep_consume.h in Copy strings/internal Public Headers */, + 3FD9E838DDA570C2DCE06B015A720C10 /* cord_rep_flat.h in Copy strings/internal Public Headers */, + 0DFDF0AAC3138062D7DDC9FADF026635 /* cord_rep_ring.h in Copy strings/internal Public Headers */, + 35AA8C314A4A16CB3BA8DA0F8DBD3DB8 /* cord_rep_ring_reader.h in Copy strings/internal Public Headers */, + C8379682E05DF677B7921E6D25818F19 /* cordz_functions.h in Copy strings/internal Public Headers */, + 9A14C68F1E3BE1A6F6150C11EC9B7406 /* cordz_handle.h in Copy strings/internal Public Headers */, + 8D08B8A34DC7854F26A0CEEDD80E9282 /* cordz_info.h in Copy strings/internal Public Headers */, + 1B5F59BC90B1B17969A7C5D836DCBABB /* cordz_statistics.h in Copy strings/internal Public Headers */, + F04E1D77092D834271BFF843A968BBA0 /* cordz_update_scope.h in Copy strings/internal Public Headers */, + 76A2B239E06289A96291C0E5E2FF8D30 /* cordz_update_tracker.h in Copy strings/internal Public Headers */, + 12CD19A10E4895569429339E5DD4118E /* escaping.h in Copy strings/internal Public Headers */, + 44FB16780866A86A48B7ED2BD94209E9 /* memutil.h in Copy strings/internal Public Headers */, + 1C67276BE85F69617F471CE0D51AC381 /* ostringstream.h in Copy strings/internal Public Headers */, + EC1F2FA642C3811C56D0A0C189EC1DAB /* resize_uninitialized.h in Copy strings/internal Public Headers */, + 53B12F58E80E072FBF6433D7CEC0CC95 /* stl_type_traits.h in Copy strings/internal Public Headers */, + A4516CE8AE7D6AF201E8730A65CA749E /* str_join_internal.h in Copy strings/internal Public Headers */, + A1DC442851E27EE6BAE50529C93EC7E3 /* str_split_internal.h in Copy strings/internal Public Headers */, + 9AA434A6C9E0B28DCF5B43E951D303FB /* string_constant.h in Copy strings/internal Public Headers */, + 6BA49F11E9F3F868B24B9E1584C0B6E8 /* utf8.h in Copy strings/internal Public Headers */, ); - name = "Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers"; + name = "Copy strings/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D8766110D193116B6F885ED22CEE06DF /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = { + D96024A6B6BF721C850D5AF92D90C989 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/http/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3"; dstSubfolderSpec = 16; files = ( - 625AA667556D6AA44BB4D8B52F817DAE /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, + 6D49F5C0AC98933C24E8BF0E01A98419 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D888706E5D984ED72BF617573F0B3299 /* Copy src/core/lib/config Private Headers */ = { + D99DAA23BD8CD9CAE429DCCBE3AA02FA /* Copy src/core/lib/matchers Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; dstSubfolderSpec = 16; files = ( - 01EFF5428A416EBB3F5FA8CA05AB95B7 /* core_configuration.h in Copy src/core/lib/config Private Headers */, + E3AC17931514686BD73E51C4525936F4 /* matchers.h in Copy src/core/lib/matchers Private Headers */, ); - name = "Copy src/core/lib/config Private Headers"; + name = "Copy src/core/lib/matchers Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DA4C6D822813978FD3F0C2BC8AD10515 /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = { + D9BA0EC226C3C74776E6FD6DD1C31DCE /* Copy src/core/ext/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; dstSubfolderSpec = 16; files = ( - 6FB205F4054D90F00E0A78ED24B4067D /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 88D813A6448FC0E747FADC9E2328D008 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 2D334531D776D0824684BD424B38E072 /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 110A548CF5E9D316C7259FA71467ACCB /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + 774B852C127D04E32C43AD7960D6DB63 /* certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, + 99AA642DB79A356EC60A9979B4651A2E /* certificate_provider_registry.h in Copy src/core/ext/xds Private Headers */, + 6C1C37FCE2F7815957893EF11524D8B8 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, + D8E3150447E8F650BDC151FF934065F8 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, + 7B1E820030F8DBB2B593617E28E5D72D /* upb_utils.h in Copy src/core/ext/xds Private Headers */, + 3E632C851BF0EA62DE18F99FCD8CD690 /* xds_api.h in Copy src/core/ext/xds Private Headers */, + C2D0553D224B6978F37BCF351B8FE0EA /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, + CD72CD6D210EF5048D511C861A391C6A /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, + 594D79C0C81B80D6F83AA2FCECF21B4F /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, + E1BCCF9FB74C421B4965B19D077D7FFD /* xds_channel_creds.h in Copy src/core/ext/xds Private Headers */, + 1E254BFE8ED72FA67F3EF2D27031ABF9 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, + 3AC2BAC3528A508CD71046A44C762A1F /* xds_client.h in Copy src/core/ext/xds Private Headers */, + EF6B2717298F587DD6BE71F529E2BEAE /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, + 55E8C8C9D2CFDD8A42C3D62F215D0A5F /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, + 7A0B88AC24D55C226C11A0CC5B49093F /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, + 9B99AC414A195D5488020F5F67431723 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, + 605A563E7E4C773F64B539A6A17226B3 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, + 1E1E7FA490ADC79A53F41C7B53263C62 /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, + 5165CAC91A5208FAABDF43E1F1F40211 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, + BB42D74E29F95B07B211A361C1AE4E18 /* xds_listener.h in Copy src/core/ext/xds Private Headers */, + 3939E6F78A8FC999E986CD6F97E0E2DB /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, + 8B310BD1542D2E7C382720035A5D60D3 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, + E9DD859C2CF9FEFEC270C3029B109E45 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, + 252A0C1212BF1A09375D0D4AB9E30209 /* xds_routing.h in Copy src/core/ext/xds Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers"; + name = "Copy src/core/ext/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DAA0843D63CF9926ECB58571E23DE2B8 /* Copy src/core/lib/iomgr/event_engine Private Headers */ = { + DA54D0AA705756E9CBA7C46BD5403FA6 /* Copy debugging Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/event_engine"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging"; dstSubfolderSpec = 16; files = ( - 8E4DF8EB11816CE9EEE9D8EC884CBF81 /* closure.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - 9345046302A1E6267FF9C1F91BF5E120 /* endpoint.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - B1B64B69EF2F8714EB0126E3104BCBDB /* pollset.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - C5AA7A140BADCD75D97958C82A360F33 /* promise.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - 2DEA4D196AE68D705A0B6877AEE3D2FD /* resolved_address_internal.h in Copy src/core/lib/iomgr/event_engine Private Headers */, - 28FD216413BE649CBCCCC9E9147AE7D7 /* resolver.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 7C192E05406E4A32D9CEED0783D6D38B /* stacktrace.h in Copy debugging Public Headers */, + E9FCA831A1D578E257AFBB7C2996BF34 /* symbolize.h in Copy debugging Public Headers */, + 18F65F51CA59DE9700CC55AC3D15CD8B /* symbolize_darwin.inc in Copy debugging Public Headers */, + 9F9EF20B759912DE4A80A0145F214E67 /* symbolize_elf.inc in Copy debugging Public Headers */, + AAF49B1865A6D4F6653E252E2A371861 /* symbolize_emscripten.inc in Copy debugging Public Headers */, + 7853CF5D2A0AB395DE8D951709E0C618 /* symbolize_unimplemented.inc in Copy debugging Public Headers */, + B633A29D021FD71AC52B8D2ADD351294 /* symbolize_win32.inc in Copy debugging Public Headers */, ); - name = "Copy src/core/lib/iomgr/event_engine Private Headers"; + name = "Copy debugging Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DB4A35650254F74FF56DC6D0D95AB90C /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { + DA6985D3C7B25B778EAB91EA2F0A0197 /* Copy src/core/ext/upb-generated/envoy/type/metadata/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/upb-generated/envoy/type/metadata/v3"; dstSubfolderSpec = 16; files = ( - 88408B612F9B1538868A5456D0758FE7 /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, - 8229D31EA041A9E97086C65F9DDCDCDC /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, + AEA0522CBEFCD7DED616C926304365D9 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/http/message_compress Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DCB81611BAC61BF78A776D3C51C8DB6F /* Copy src/core/ext/filters/http Private Headers */ = { + DBB072948C51937501B21CE9502AEE01 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/trace/v3"; dstSubfolderSpec = 16; files = ( - 2CD777C9DB50590DF0E3869D403EEC3C /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, + D89EAD364BBA26C4C476A472D51B96CE /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/http Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DD006602D09E34F51EAA02CB13DA350F /* Copy functional/internal Public Headers */ = { + DBB782B3D6030E415CF1C5402B04BE3A /* Copy src/core/tsi/alts/crypt Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; dstSubfolderSpec = 16; files = ( - 43123D0ED81849355617845A2C0AE0AE /* front_binder.h in Copy functional/internal Public Headers */, - BB7114F66AEBCCBA5A0DA39B97E00F52 /* function_ref.h in Copy functional/internal Public Headers */, + E744D22CED1E5A4336931E75A3BCBBBC /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, ); - name = "Copy functional/internal Public Headers"; + name = "Copy src/core/tsi/alts/crypt Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DD3BAAE54353D4D1A141E823707A1A6F /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { + DD0591C4D66B1C3B7664D94924CA2C03 /* Copy src/cpp/server/health Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server/health"; dstSubfolderSpec = 16; files = ( - 03D0248CB3A7BA040DB48A291EAF97FE /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, + DC58AC47D6654433D5216DDA6F9EB908 /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers"; + name = "Copy src/cpp/server/health Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + DDA466EDF8DD47DDB7A5E8337E31EE79 /* 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 = ( + E94781EABB2F564E9113CA6396EE210C /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, + ); + name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DD742EA82BB0A9CA3A368D71F6AC4CB8 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */ = { + DDD0400EC9365C7763E271A46525DC73 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/rpc"; dstSubfolderSpec = 16; files = ( - FCD3E1B99D262E029CFC6D61AC99CAA0 /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */, + 559DB8B0C6996E22D90B6E6B51BACECF /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */, ); name = "Copy src/core/ext/upb-generated/google/rpc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DE44495C32DA96485374265955947C19 /* Copy src/core/ext/transport/chttp2/transport Private Headers */ = { + DDEDC3C0A9E1E354986D6385C9A3AD23 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 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-generated/envoy/service/discovery/v3"; dstSubfolderSpec = 16; files = ( - 331C9E99324F21F618ABF61FF26042A8 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - A9275FFEBC7D7B28B31DA85954954794 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - B5C0D7FCED16AC5E9D2B0C7E145ED7B5 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - F1A57C958F2615298932C06D92E51395 /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - F200830376BDAE4B5D7391F903E616F5 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - B84D12D104FB10433070EDC1B4D7E4DC /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 86A364384E964656429BB0DAC46A1F9B /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 6F083758156B63680252F177E639FC49 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - CEA46A7AB3007A33CFB91354C86B1203 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 2FC4940798834665BDC16B3B8841BA9A /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 15FAE5EBADD40C46DB38FF899F161C75 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 1CA9623CE76FFCEF5042B63D3CBC77CF /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 2098479D0553AAB69A265003144F96D9 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - F7754AB0E7FC1C75CA5E1AC516A49701 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 52CAA7AAC7EB0569205D8B04CE623EA1 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - A4B663C31EA4BFC066FABEF31757F424 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 726F23A0C0DE4CBA7219D88C78D68BA5 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 81D945352345CAFAAFD56A96A007E599 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 24B6FAE4876DE52320459AEAC2E54E92 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - E9C6B2D89A6592009B62F1BC000F2F7B /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 63F83471783AEB7C6ABA413D8F4FEE27 /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - E502B0C0AFEE4D2A23C63936BBE81AE9 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 1C30C101AC79B2AF5E847D027A059C01 /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, + A9C0B8BC45158C10BF488701D94FB2DA /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DF80464C8928705F000391BC5810DFC8 /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = { + DE06208D07C1B280B9F18A4DA3A97C02 /* Copy impl/codegen Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/annotations"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; dstSubfolderSpec = 16; files = ( - 061C7F7525CC1B6FB9F4484E461962AA /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - F19F6E3CA6216932929D0BF85B6B1125 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, + 402C0B4C17C67B3265AC8B0D2BF5A462 /* async_generic_service.h in Copy impl/codegen Public Headers */, + 93600E40B414A4EF4D6221F8544D13A0 /* async_stream.h in Copy impl/codegen Public Headers */, + 28DE9D990C74217DD321623CE92A6FA0 /* async_unary_call.h in Copy impl/codegen Public Headers */, + B168997FFF3979DDD2526F9A7B79E76B /* byte_buffer.h in Copy impl/codegen Public Headers */, + 6528F3599F0D49A4D50A9904615BEF25 /* call.h in Copy impl/codegen Public Headers */, + F3FE9C791326C3A98B2973F896B34254 /* call_hook.h in Copy impl/codegen Public Headers */, + B89193A16A5DE838376F11DE9E17B62B /* call_op_set.h in Copy impl/codegen Public Headers */, + D95A2FED19B9EB240394ADAAD23E1459 /* call_op_set_interface.h in Copy impl/codegen Public Headers */, + 8F1C34052CB9AFA27E7C40171C99FCC0 /* callback_common.h in Copy impl/codegen Public Headers */, + 17E2ADF9445C0348AD539179F0BBD641 /* channel_interface.h in Copy impl/codegen Public Headers */, + 9B10AD56D8C37E4E417FB55DC8EF5AFA /* client_callback.h in Copy impl/codegen Public Headers */, + 7303F4981B44F9B5C60FB7A4509D7E56 /* client_context.h in Copy impl/codegen Public Headers */, + 0F3F9A3B24984FC487EBA44372BE083C /* client_interceptor.h in Copy impl/codegen Public Headers */, + B17B448DC7BC3AF41554A8E06BF4EB36 /* client_unary_call.h in Copy impl/codegen Public Headers */, + 8597FE800605684AA53886FD55F03A93 /* completion_queue.h in Copy impl/codegen Public Headers */, + 6BCF87421AECCF8AC431830F0D0B087C /* completion_queue_tag.h in Copy impl/codegen Public Headers */, + 1FC8C313530078B4787B9918FA40F528 /* config.h in Copy impl/codegen Public Headers */, + 82080502E518E4B1AB400691A5F0FB3D /* core_codegen.h in Copy impl/codegen Public Headers */, + C514F77AB612FA4E30DABA184B6A0EA0 /* core_codegen_interface.h in Copy impl/codegen Public Headers */, + CEB0595D16E4652770BF010DC719EE33 /* create_auth_context.h in Copy impl/codegen Public Headers */, + 025EE8FF0BDF03CDD20C0AFB36219352 /* delegating_channel.h in Copy impl/codegen Public Headers */, + 35BC03AE61FD95A93698A500EBD76EB6 /* grpc_library.h in Copy impl/codegen Public Headers */, + 83B4CE5C381E883DEC4B499680DECE69 /* intercepted_channel.h in Copy impl/codegen Public Headers */, + C12ED69BB78D6E5CC2A0B17CE5053FE9 /* interceptor.h in Copy impl/codegen Public Headers */, + 1AEF4874A0C7BD2D737B12658E841199 /* interceptor_common.h in Copy impl/codegen Public Headers */, + C38BD6DF6AAC6981019D105C59EFC8B4 /* message_allocator.h in Copy impl/codegen Public Headers */, + 1D23C1AABEFC3E2DED41D1711D846912 /* metadata_map.h in Copy impl/codegen Public Headers */, + 5C84B9DB3E7C0F585A0888959905397A /* method_handler.h in Copy impl/codegen Public Headers */, + C7935D69E6156DB064D2807E11FA47A9 /* method_handler_impl.h in Copy impl/codegen Public Headers */, + 4D6C9517283972D722616392939CAD95 /* rpc_method.h in Copy impl/codegen Public Headers */, + 5AEB43D134FAA9606752F763ED632ED2 /* rpc_service_method.h in Copy impl/codegen Public Headers */, + 6C74FBA7C37DACDBF7CECEA5E75D3753 /* serialization_traits.h in Copy impl/codegen Public Headers */, + 8E90C7631BFA265F042870114155FCC2 /* server_callback.h in Copy impl/codegen Public Headers */, + 2E9F455879B47CC10545A96AE2E59782 /* server_callback_handlers.h in Copy impl/codegen Public Headers */, + DB84674B342B7D82AA4AD1C0EE734483 /* server_context.h in Copy impl/codegen Public Headers */, + 9A6C1A75FA39F0F842CD04206E1E4484 /* server_interceptor.h in Copy impl/codegen Public Headers */, + E203DEEE3533247E367DE01903A767BD /* server_interface.h in Copy impl/codegen Public Headers */, + 8DE0FF364170DDB35A8CDD14F21FC43F /* service_type.h in Copy impl/codegen Public Headers */, + 8B169B60512967ED0D530E0692FEE1DA /* slice.h in Copy impl/codegen Public Headers */, + D84E1D16A87BB2D8527C4686188F2477 /* status.h in Copy impl/codegen Public Headers */, + 83C8631B2A42E5E8991C21460B637E06 /* status_code_enum.h in Copy impl/codegen Public Headers */, + A364DED6D8263EB1A42337B8B7631222 /* string_ref.h in Copy impl/codegen Public Headers */, + C2EFF39062F4A17F7F59EE7EBC7FF6BF /* stub_options.h in Copy impl/codegen Public Headers */, + 8051857206DE7917407FF882186B0C33 /* sync.h in Copy impl/codegen Public Headers */, + 227C3C3F42F1B372DC0A4D65B7F0F34F /* sync_stream.h in Copy impl/codegen Public Headers */, + 681C43F9189A26A9C5F011B13EFF9000 /* time.h in Copy impl/codegen Public Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers"; + name = "Copy impl/codegen Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DFC29BBB897ECBD260D7484CE9C42F93 /* Copy src/core/lib/security/credentials/local Private Headers */ = { + DE9AD26AEF2FB1B64DE8578D63746F25 /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/load_stats/v3"; dstSubfolderSpec = 16; files = ( - E5067F3E8D5F01C665F52744DA939ED0 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, + DF89EA0F35F5C53B181DB62D4B4F20CC /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/local Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DFDD1033E2E8E562BC9B0EE6146EB5D2 /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { + DEE8E7F39D4BAF9D275B391A624E3E8B /* Copy src/core/lib/resolver 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/resolver"; dstSubfolderSpec = 16; files = ( - 5CAB67E000C85DA1436186AF337FB285 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, + FB1152984F00A41D8EFD25320AE640CE /* resolver.h in Copy src/core/lib/resolver Private Headers */, + 030F7A21EF1D9AA3C4980FF7A52120BE /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */, + 2CB70BC0DF1FC4E65F6FF820987524E8 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */, + 9A45F3D2E811EDB79CD22AA4C573A621 /* server_address.h in Copy src/core/lib/resolver Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/alts Private Headers"; + name = "Copy src/core/lib/resolver Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E015AC12A5B02FB1351E60F675BA0F14 /* Copy src/core/ext/filters/http/client Private Headers */ = { + DF6FE676B5369F15A91803718215EAD5 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 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-generated/xds/annotations/v3"; dstSubfolderSpec = 16; files = ( - 25ABB4F040D95DECF9AA7F4F0FA08FB3 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, + 4768E7926823A5B30E47DAECB938501C /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/http/client Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; E031035D64610F4470636831B3DCE02F /* Copy crypto/fipsmodule/bn Private Headers */ = { @@ -11585,182 +11628,204 @@ name = "Copy crypto/fipsmodule/bn Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E174D78003FCA60C1DD0EE436020C1C6 /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = { + E1D2469914929899EEB83A5ACFB9A86A /* Copy container Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/metadata/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container"; dstSubfolderSpec = 16; files = ( - 5114D1C27D161EA0237C9D0DECA737A7 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, + EA2E501F1827A34590B608CAD1BB71C7 /* fixed_array.h in Copy container Public Headers */, + EACBB5DC8D5721FC4792128A9A7E286A /* flat_hash_map.h in Copy container Public Headers */, + 0ECAC02B5D1C51092DBB20D0FE45D8E6 /* inlined_vector.h in Copy container Public Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers"; + name = "Copy container Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E17E43BBC64206791BE57725BA322EFA /* Copy ext Public Headers */ = { + E1F27F44DF66C87C53657C5EB31D6845 /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/ext"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 2EE1A5AFE5879AEE547E309B66F7C00A /* health_check_service_server_builder_option.h in Copy ext Public Headers */, + C9C657C04259BAFA7FAC6110FEACC1C3 /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, + 8976550027A6ABB8AA80D6D1A7C4E07C /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, + C628C2CC93925EE09EBCBEA95B458A01 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, ); - name = "Copy ext Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E1D76B357577CEBB7016AE8ED7593783 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = { + E26A79C72D60ABDB8421659CF3AEC7AE /* Copy src/core/lib/security/credentials/iam Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; dstSubfolderSpec = 16; files = ( - 4D73E71D69AD920E8BE3094C7904EED3 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, + 4CA24D71A907C0F45B0053681DE7D25A /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/iam Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E1DBFE1DE5950DD2BE5C298C8D6C1768 /* Copy src/core/tsi/alts/crypt Private Headers */ = { + E29EF7FBBBE94400CD85741E0FBAB52B /* Copy support Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; dstSubfolderSpec = 16; files = ( - B617F0C2B48033E73FD32913ECC8649A /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, + DE0FCB3FCAD59156002550CDAAED0435 /* alloc.h in Copy support Public Headers */, + DAAC4C27C7DE341C11BF8A82EF7A2007 /* atm.h in Copy support Public Headers */, + CE0998CDBCB5F99D1B6CF3419418708D /* atm_gcc_atomic.h in Copy support Public Headers */, + F19C069F5FCAC0D7E616E21125AD4CB5 /* atm_gcc_sync.h in Copy support Public Headers */, + CFCD7D28F54C3084958C6547532BF215 /* atm_windows.h in Copy support Public Headers */, + F0CEDC3715E7011D590E4A7E41114255 /* cpu.h in Copy support Public Headers */, + D84589C5FC2FA89B4A7D74EAA5D12BDD /* log.h in Copy support Public Headers */, + 6A070718F99CA8F3632D9E7B7460C1EB /* log_windows.h in Copy support Public Headers */, + 0987B7C4D6E287A63019AA31845F9B23 /* port_platform.h in Copy support Public Headers */, + A666FB9C508169110B411A6BDF993743 /* string_util.h in Copy support Public Headers */, + 662FE3CCC305A3A0B9508F2990DE9DC7 /* sync.h in Copy support Public Headers */, + 5D9D5CB11E468906F565F199B4B6DDE9 /* sync_abseil.h in Copy support Public Headers */, + 6324D0C6613F46307FA7572F5AC66A4F /* sync_custom.h in Copy support Public Headers */, + 204AC60E7C1F8E567F4A3A5ED0AFA9B9 /* sync_generic.h in Copy support Public Headers */, + 7043AFE4626B2F2C58FBD201E41C9928 /* sync_posix.h in Copy support Public Headers */, + C6684F10A32AB484F68C99D0C0FA6DB8 /* sync_windows.h in Copy support Public Headers */, + 4540C4843E8AB78C92B19D319256DB79 /* thd_id.h in Copy support Public Headers */, + 74F9B1844DB9E49DC0C990EEC9185197 /* time.h in Copy support Public Headers */, + 98257C13881E26405C7572DAC5D0949B /* workaround_list.h in Copy support Public Headers */, ); - name = "Copy src/core/tsi/alts/crypt Private Headers"; + name = "Copy support Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E2D9FA542A0AE851941B5F86DF7E0DD0 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = { + E3D36A372609B89D091E2CEEF64D77F4 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/protobuf"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3"; dstSubfolderSpec = 16; files = ( - CD0AA890A671B3D3B705A4FE916C3D7F /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - B4130D56B41E15BAAE51AB8D6B0555E6 /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 8EDD6F8A6CE6FB6B93591F57B9F0DF5D /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - A6B9A5E497FFC8A98E9842A1C14C920F /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - FD6D37BA9149E41AE6DF5786943B73AF /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 3F31A7025E183B150735CF8DF6985451 /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - BA4539CBC1FF5EF8C48669465ED72A65 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 623517A3A727841A968880C0BDCCE494 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/google/protobuf Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E34E6C9739EEA50D5A33E6F92486562D /* Copy . Public Headers */ = { + E407DE113A7FF45EBA6275F9DD8B4F2D /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/bootstrap/v3"; dstSubfolderSpec = 16; files = ( - BF469652F77CED8FEE30878333177793 /* byte_buffer.h in Copy . Public Headers */, - 85320EEEEFEEA8B3BFD97326F96F2930 /* byte_buffer_reader.h in Copy . Public Headers */, - 1F0421A41674A7ADD9280D4E67DA612D /* census.h in Copy . Public Headers */, - A654155CAB80C6FA8F28F7A879616C09 /* compression.h in Copy . Public Headers */, - 83E0D44E3DE32FB3BA171B7F61135704 /* fork.h in Copy . Public Headers */, - F9505AF7B80AB691BC679F185DFD12A9 /* grpc.h in Copy . Public Headers */, - 305A3AF809F73796047D02FE74862C16 /* grpc_posix.h in Copy . Public Headers */, - 5669A713DFE57D72B6118C1233AB38D5 /* grpc_security.h in Copy . Public Headers */, - 6435388839A9C4191EBC5B84185C319B /* grpc_security_constants.h in Copy . Public Headers */, - B38D5F68C78FEE85A073C1EAB87C7401 /* load_reporting.h in Copy . Public Headers */, - 53033F0E3E3DD9239059FC300AECDF91 /* slice.h in Copy . Public Headers */, - E377DAFC9F00CBEA0FF5E529E2CFBCE1 /* slice_buffer.h in Copy . Public Headers */, - A450FE3CD182D33F965E059A2A32E404 /* status.h in Copy . Public Headers */, + 250932F10AB650B2D842D659A7AD054A /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, ); - name = "Copy . Public Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E49328F23C6CACBA4CA96B03AF3256C9 /* Copy src/core/ext/upbdefs-generated/validate Private Headers */ = { + E40A5D58C4EAAA72BA9F15C6C5846765 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/validate"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lb/v1"; dstSubfolderSpec = 16; files = ( - 73759AE31D880A5125DFDCCCAFEF04D1 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */, + A5EC7DB73DEC5BD7212D0513E7CEE286 /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/validate Private Headers"; + name = "Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E4F74C962094E864206555905483830C /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { + E42CD0FA8972246B6B9711D6A58B708C /* Copy src/core/ext/filters/client_channel/resolver/dns 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/filters/client_channel/resolver/dns"; dstSubfolderSpec = 16; files = ( - 4AF745D3B1905954F1A4B7E5E3918172 /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, + 6B01949208DAD69CA2975DC9B26B28E3 /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/client Private Headers"; + name = "Copy src/core/ext/filters/client_channel/resolver/dns Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E5799F1250C1E4B9A70B19E8BD458832 /* Copy container/internal Public Headers */ = { + E46285979B4E3B48F3F10D48186EDFAC /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3"; dstSubfolderSpec = 16; files = ( - 7F3367BFBFFBEDEC9976AD7DBBB3CED6 /* common.h in Copy container/internal Public Headers */, - E9422D7F181E2504336509899F771E98 /* compressed_tuple.h in Copy container/internal Public Headers */, - 9851E64C401906A115A4E7A134817216 /* container_memory.h in Copy container/internal Public Headers */, - B0F28171827CC9FD248869949CE4681C /* hash_function_defaults.h in Copy container/internal Public Headers */, - FB619C70CE05919DFF27629E8A3F4D38 /* hash_policy_traits.h in Copy container/internal Public Headers */, - 8A63012F95C2C28E3B0095AD2BD4AA06 /* hashtable_debug_hooks.h in Copy container/internal Public Headers */, - 1A8301F742553E955A52CCA1E9E52173 /* hashtablez_sampler.h in Copy container/internal Public Headers */, - 8C6964EF92D7F5CA59D537A443F2ED6A /* have_sse.h in Copy container/internal Public Headers */, - 10E985BF5DA98086BB5AB04C25D0D56C /* inlined_vector.h in Copy container/internal Public Headers */, - 0686E49BEB7B662748A59E70DC354FA9 /* layout.h in Copy container/internal Public Headers */, - 18538B6F70ACA8D8F578AF5896D85BA0 /* raw_hash_map.h in Copy container/internal Public Headers */, - BBF5936113184162C29C2BB34F47051C /* raw_hash_set.h in Copy container/internal Public Headers */, + BB9AFBC2892F4DEC0D0BABFC7E866659 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, ); - name = "Copy container/internal Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E57DC7FEF1131064A010318967B3354C /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = { + E4B7B63EEFF431AD93728E27D9E58AE2 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/route/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; dstSubfolderSpec = 16; files = ( - 11F37EA1EA3EABC8237985E70DA04C62 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - 23925BC438AC5056922F37F2F98C52CE /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - B5F4E60B072526DAEF7B113CE7D755A1 /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, + 979BDAD25FBB8ED976D798E7F495F741 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 2ED5F650C07AFBC36CCFF9AF7C9C933B /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + CC1549B06AC582C1245E20F9460B5084 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 2C7F0D0D78221F14BA62D5D01731E24A /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 8C600138625573EE97341168F1CFB7C0 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + CC05208546E5C92AB27CCCF573A44C6E /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers"; + name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E613819C22C2F779B1D0DE95C3BFFE8E /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = { + E654E770830C3E04BD1C21ED591815D8 /* Copy src/core/lib/resource_quota Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/route/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; dstSubfolderSpec = 16; files = ( - B7AB1646DB8B423E74C1C9F626C21BBB /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - DDAD1A789D307FB83EDF9A421F747CCE /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - 69312140D87F6C939CC6E6F567F6E983 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, + D33E45C05518A42CAEC57EA53B52E82D /* api.h in Copy src/core/lib/resource_quota Private Headers */, + FD62300CD53839BBC3D4BEBAD5A72F47 /* arena.h in Copy src/core/lib/resource_quota Private Headers */, + DC1113B59E8B6B34EE5B3A8705AA789C /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, + EB146D500EF6D44C26B2A1F6375F911E /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, + 4A3525924E86CBA7964FA8E56CBDBF1B /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, + B2831652D295AED9A97918C421D46E28 /* trace.h in Copy src/core/lib/resource_quota Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers"; + name = "Copy src/core/lib/resource_quota Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E66F4EAA66DDFA0564916A5AB20FF0D0 /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = { + E6873B1DCBAECE82EF6653CDF4BD3A73 /* Copy src/core/lib/security/credentials/fake Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; dstSubfolderSpec = 16; files = ( - 07D00818EA42DB465673EED7913AF0A0 /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, + 81338651AF8C56A84CC5FF103E610544 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/resolver/dns Private Headers"; + name = "Copy src/core/lib/security/credentials/fake Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E7EFFDE9E3431857720CD0F30D020888 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = { + E6B3438732426E061919095B9A32690B /* Copy src/core/lib/backoff Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; dstSubfolderSpec = 16; files = ( - 07183354803FB5D03083EC4D51FD387F /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 2F6FFFF790BFF11B68421F863B9449CD /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 8587AA6A74BD3C4D179A3322CAF67169 /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, + DC596F2598CD52E01A3C849079341C21 /* backoff.h in Copy src/core/lib/backoff Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/lb_policy Private Headers"; + name = "Copy src/core/lib/backoff Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E7711B8931317E064C9E573DE6F43443 /* Copy src/core/lib/iomgr/executor Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/executor"; + dstSubfolderSpec = 16; + files = ( + B2A083749B361AF9C4C427148A8DE6EA /* mpmcqueue.h in Copy src/core/lib/iomgr/executor Private Headers */, + FF25EB7A849676F4E1B5B958A4D78E30 /* threadpool.h in Copy src/core/lib/iomgr/executor Private Headers */, + ); + name = "Copy src/core/lib/iomgr/executor Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E88CCB686D970EB3C0A098ABD8A65712 /* Copy types/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types/internal"; + dstSubfolderSpec = 16; + files = ( + 1426C6DC49C59DBA1461929C0A61077E /* optional.h in Copy types/internal Public Headers */, + B5436B6877D13402B567D91F5348695F /* span.h in Copy types/internal Public Headers */, + D7BD150172789AFB3FDECA0030D3FD09 /* variant.h in Copy types/internal Public Headers */, + ); + name = "Copy types/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; E8B726A2A5E5414E399BA38102E2FF14 /* Copy crypto/fipsmodule/sha Private Headers */ = { @@ -11774,142 +11839,148 @@ name = "Copy crypto/fipsmodule/sha Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E93B40E17CF532F7EF5EEF9F31EAF385 /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = { + E8C325E5AC594C9DE1114271B251D13B /* Copy src/core/lib/compression Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/protobuf"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; dstSubfolderSpec = 16; files = ( - 80469DD22D129126CA2413DCE559F526 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - D04FD1503C989C7E4423C2FCC6AF801A /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 2DDA382111850294A63B7B4B772C35D5 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 4479C845043CC747BE7FA8771D4C9F3B /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 0506838246CF0F302F60B3BAC3D98646 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - EEACEA16AF1A1F4A4775FE3B314670CC /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 93C1B92E51BBC8B948FE2F38F657FFCF /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 5D844AB019280C9832AC910451EC1028 /* compression_internal.h in Copy src/core/lib/compression Private Headers */, + FC6B62ABFB5D7AED81FD147F61FCE603 /* message_compress.h in Copy src/core/lib/compression Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers"; + name = "Copy src/core/lib/compression Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E9970374A93EF40CE7A5AE73C97390B6 /* Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */ = { + E97F8638D9FF8D4E26D1904487BE3BFA /* Copy status/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/listener/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status/internal"; dstSubfolderSpec = 16; files = ( - A88B17E6094AE3622C0A579E950676DB /* lds.upb.h in Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */, + 84E4FB817C7A1205CB534D4DF2B8E8EC /* status_internal.h in Copy status/internal Public Headers */, + FE836090CD64AB3F9D63BB24000E94E3 /* statusor_internal.h in Copy status/internal Public Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers"; + name = "Copy status/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - EADAA826FFDAD9F71AC0ED3EA888406E /* Copy strings/internal/str_format Public Headers */ = { + E9B04506F6D0CED5184C1D237945AEE3 /* Copy src/core/lib/security/credentials/composite Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal/str_format"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; dstSubfolderSpec = 16; files = ( - B90DC09AB8531D2276FE85A527A74691 /* arg.h in Copy strings/internal/str_format Public Headers */, - 7C77707D4B39FCABEA757E73C723C4A6 /* bind.h in Copy strings/internal/str_format Public Headers */, - 0C5538D4861F6175D5D1E1A970F0D6C3 /* checker.h in Copy strings/internal/str_format Public Headers */, - 7D99E5E442DC66E3574BE51E299CEDC7 /* extension.h in Copy strings/internal/str_format Public Headers */, - B87347CDC928C55B991D4D3068D4C9D6 /* float_conversion.h in Copy strings/internal/str_format Public Headers */, - 8F93DFC972460E33E33879B1A84AC766 /* output.h in Copy strings/internal/str_format Public Headers */, - 82A45F3A5835E4306E1A7B3F2DC1AD1D /* parser.h in Copy strings/internal/str_format Public Headers */, + 6074558F6287A012BBFEF593BF3F7FEA /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, ); - name = "Copy strings/internal/str_format Public Headers"; + name = "Copy src/core/lib/security/credentials/composite Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - EC3808116B3EA5E300FF8B843D4A9A69 /* Copy src/core/ext/filters/http/client Private Headers */ = { + EA625A255CD4433E6F514FC20061C65C /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; dstSubfolderSpec = 16; files = ( - B2228277C7125FC58F4C6414EA50E2D1 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, + 895A291B630228F58175037F87905DC4 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, ); - name = "Copy src/core/ext/filters/http/client Private Headers"; + name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - ECB8B3B7F44C8E65AB133E7346361320 /* Copy src/core/lib/iomgr Private Headers */ = { + EC1B97B31A0B35E91E6233280346B0DF /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/data/orca/v3"; dstSubfolderSpec = 16; files = ( - E3EAB023D089C52A3832FF17F6C5D5B8 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, - 027E5F1B3B995073F568A836078FD13D /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, - 47C73673D4BA95A5914F7888DE9676C6 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, - C311BBD527764F054112D37C8ED5B296 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, - 7F1659DC5BBE2A48A5235D24BB23B203 /* closure.h in Copy src/core/lib/iomgr Private Headers */, - FB66E2E54697DCF76B15CF1BA481E542 /* combiner.h in Copy src/core/lib/iomgr Private Headers */, - CB0E2D824B3EF72C61A82B2ACA98E721 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, - 784479BD0527128B005A5C7CCABF48B3 /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, - 5EF7149F29B9E4E036F9AAB80E0ECC19 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - CFE29FA26CFAF1E59A5099711331EA3A /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, - DF1C96F07F9BC8E102945150D4A8290F /* error.h in Copy src/core/lib/iomgr Private Headers */, - EB8468529A8297E943C4D76012F0B274 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - D265BDC378448FFC014F4A36D50AA363 /* error_internal.h in Copy src/core/lib/iomgr Private Headers */, - 87FA41B5C175BCE2B3146E1EB24FBA45 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, - 8A7E40FAF0D49791745EEBE0F3469EB1 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, - CFF6B02014FE46E67C94B649B881EC47 /* ev_epollex_linux.h in Copy src/core/lib/iomgr Private Headers */, - 1BF6252EE5FB9D82A16555B6B41D3D3F /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, - C4190B3185FAD20EDBE7195D900F32FC /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, - DA808B3A5CA5801EEFF1F7B5DE088217 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, - 8BD5FC0197FF5B5CF9D3EABF2FC79442 /* executor.h in Copy src/core/lib/iomgr Private Headers */, - CD87C4EC8E921C6C77EBDCD7D4D25C4A /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, - 3352C627AEB95BD0940284A1AA422C98 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, - 13A71514498AAB31CE8B0119B833184F /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, - AB0B803AE79E4FC454E22D55F5E851F1 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 6A9B9C634CD4D094687CCB664493B1F7 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, - E3F02C88B5B17EBF2EC15F5A676FC230 /* iomgr_custom.h in Copy src/core/lib/iomgr Private Headers */, - 28CC6FEE482E8B18FECD98DA80460A20 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, - 8E42060E7B7E8E3197487880410ADA9D /* is_epollexclusive_available.h in Copy src/core/lib/iomgr Private Headers */, - F36666FC49BEA1D85ECECA3CBFCF96A2 /* load_file.h in Copy src/core/lib/iomgr Private Headers */, - 226CAE441091A856B409B7BBD9C8E6AF /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, - 1B2524061B105501D8054BDC97E658C2 /* nameser.h in Copy src/core/lib/iomgr Private Headers */, - 71D585D62EF810D780FB2AB05945AB84 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, - 7DC8F79340108C5835F325A6373C274F /* pollset.h in Copy src/core/lib/iomgr Private Headers */, - 46E386E776F5E199BED358399FFA072A /* pollset_custom.h in Copy src/core/lib/iomgr Private Headers */, - 9BCF53CBE0CA7DB9ACFCF6D296F8CEFA /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, - F2807051526D4CA4C236BDB26A89738A /* pollset_set_custom.h in Copy src/core/lib/iomgr Private Headers */, - 8D00FA36373EFF598773CDEBE7D702F6 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, - F4A86B97E582A6B7E685B73F9073439A /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, - A1F3D4F9099385FDA26FBC1D86F29F9D /* port.h in Copy src/core/lib/iomgr Private Headers */, - DBC2957B722D4FC7F6F7EC31534F797A /* python_util.h in Copy src/core/lib/iomgr Private Headers */, - 121E72DC276DE3614EC877058E1CD8DB /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, - 3BB264E4B1AA9EA4C1E43F01024519A2 /* resolve_address_custom.h in Copy src/core/lib/iomgr Private Headers */, - B10B5B5B02A30D380C03BC2504B41D99 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, - B530F467CBF182608A25F08C42789A25 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, - 243E38980A538CFC6E50871C055BDD13 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, - 4C0C3FFC6FB29864F86C2DBEEDC9CEE9 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, - A496FED18C119CBBAA8D53923DE9353B /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, - D6ABC9AC67E22267842113014D197F8F /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, - D2EB0C29FA33781196BE5A08490FCE3A /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, - B9F61E5639F1127307AA76957B5308AC /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, - 68D0D10720E8536A10ABE93CD4A4CFC0 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, - 38CF238C55224F613B049EE717DF11AC /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, - 13ECC6987245555D5F19E4B1761FAE69 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - EA453D18A468C4427BCC929103A4CADD /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, - 2FDED504EB1C70E3F5F7B889386B01CA /* sys_epoll_wrapper.h in Copy src/core/lib/iomgr Private Headers */, - DDC9678CC01109FBE4D9ACC7D3666BFF /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, - 9DEC599E5D36F84D4FA4521785026769 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, - 31758C685C8BE462540F76956BB95ADA /* tcp_custom.h in Copy src/core/lib/iomgr Private Headers */, - B7455085A27E4D3A3FC2AC5F4767D1DA /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, - 3BDBAE301AC9CB7992C6F90067B0BAF8 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, - 2E0A2ADDCA31D2F94CFFA2CEA593EC2C /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - 559E1AE512D395A9D30137236DE47F40 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, - DCCE9D62EB57F221791AACE829B19192 /* time_averaged_stats.h in Copy src/core/lib/iomgr Private Headers */, - E2257F0B0226B14FBF5FCD2D2B5CE36D /* timer.h in Copy src/core/lib/iomgr Private Headers */, - F8987A77BF441DAC8E41834FCCE6B91F /* timer_custom.h in Copy src/core/lib/iomgr Private Headers */, - EA02E801A00E729331D16E41EF38AEB4 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, - 2FC849AAC4DA212B94513CBCB5501F5D /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, - E6A3D43A8AFBB1EE1B8BB92476810740 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, - E9F1404DBA99AC49D5521781653DC577 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, - 9297D27B0FEF97C32413014855222DE4 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, - 9DFA3C39B3CC3B938CD1F888967A28B7 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, - EF54535077E7C837E997F293B7399885 /* work_serializer.h in Copy src/core/lib/iomgr Private Headers */, + CE9A74BAC95823F3D23E427C4197E11F /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, ); - name = "Copy src/core/lib/iomgr Private Headers"; + name = "Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EC5B48A78F0019172F0A32511CE7F040 /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/gcp"; + dstSubfolderSpec = 16; + files = ( + 4CD15E031499620B5107525292C12E8D /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + 2487A961E513C08364913DD646A2E042 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + F8602CAE896CA66D6CB05AF30BF6174A /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + ); + name = "Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + ECACA9EA33DF93363646901A9CE7EF80 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3"; + dstSubfolderSpec = 16; + files = ( + DF177E9CFB8E40A5A83BC44046D8D6B8 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + AE23C58F39FEC612C77F7A184C0EA642 /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 3470F30492CEDC5BF9C1013ACFED2D9E /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 399F0ABB107959270636B223AA3A7A14 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + ED3B5E1606B901551D047F183D94EBAD /* 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 = ( + 40BB7E818AA89AEC8C135E1790461D29 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */, + C552BED15CC43BBECC597E127D05ED45 /* 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; + }; + ED4DA8B6E332E1B79CFE039E023CEDF6 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3"; + dstSubfolderSpec = 16; + files = ( + D38C7ABDCC759F8AE13A67895216FDF8 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + ED652705A83BEB810BC73607F8D26C60 /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/tracing/v3"; + dstSubfolderSpec = 16; + files = ( + 3542826BFF9BD25B04F2C42B2B8E497E /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EDAFA9D3ACF724A30748DDDE65B4DEE0 /* Copy event_engine Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine"; + dstSubfolderSpec = 16; + files = ( + 7CDF0D2DF575ADB2984AFC09DF07CEB0 /* endpoint_config.h in Copy event_engine Public Headers */, + D0A620E04CFCC5B71C1B36B9351A7EE0 /* event_engine.h in Copy event_engine Public Headers */, + FDC0DE541782CCFE565ADA4432586ECF /* memory_allocator.h in Copy event_engine Public Headers */, + AA9FDD9FC4C947A99360DE8383FF4D7E /* memory_request.h in Copy event_engine Public Headers */, + DFEDCCEE6A71544E0D68D78CD24F1AC1 /* port.h in Copy event_engine Public Headers */, + ); + name = "Copy event_engine Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EE1755AE55160FCAEDE3731ED838905B /* 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 = ( + FA18759BB34CD10565D4E4902DB60DB6 /* 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; }; EEF0093BBFCA10B0F98F535C862616E5 /* Copy crypto/lhash Private Headers */ = { @@ -11923,38 +11994,59 @@ name = "Copy crypto/lhash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F0278FDA1A5E8BAEEB75537B6FDF4A53 /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { + EF9CBFF81FC93989BEDB1720847202E7 /* Copy src/core/ext/filters/server_config_selector 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/filters/server_config_selector"; dstSubfolderSpec = 16; files = ( - 104AE8E54CD009ECAF65F73CCC1F4B3B /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 5FDF6AFF091DD7C40D1EC5A16805EE3E /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 0FE340E7C9A2DCDBC67861EEE0EF8A2C /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - D6AFED377DBDB7165D5FACC8D964F419 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 2D4AC873D62E9635E0EDA1A8797914FA /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 051B17EEDCC2D642A7723F966306E4E3 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, + 68102A329B0057D80AD8CD86A61645B2 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, ); - name = "Copy src/core/tsi/alts/frame_protector Private Headers"; + name = "Copy src/core/ext/filters/server_config_selector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F0D727FD6E22001B968A7A18E188D341 /* Copy src/core/lib/slice Private Headers */ = { + EFB09812B25C32FBA37591F44628296C /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3"; dstSubfolderSpec = 16; files = ( - 59FA45DA884DCF5F057A1CC902485BEA /* b64.h in Copy src/core/lib/slice Private Headers */, - 1B1FD5DAFCA3FED28DD855D428895310 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, - C22E3C9F3DC31FC5942802C79E3273FF /* slice.h in Copy src/core/lib/slice Private Headers */, - 4F401B4259D869554E3ED767168EA658 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, - 288B7A91EC465304B6DC80783A45280A /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, - 7E533D3B1B2CEA64D83D4B15DD5C0B47 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */, - 77B620A52150D5DAC78851AB09006B97 /* slice_split.h in Copy src/core/lib/slice Private Headers */, - 06FC7E8758AE22C90DEE50FFA9243044 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, - E60C77851EEB0EEFBF1859442AF1B568 /* slice_utils.h in Copy src/core/lib/slice Private Headers */, + EC29BF9B6383CB454C0E365B7F870397 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, ); - name = "Copy src/core/lib/slice Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EFD5111A82561E4F9327B17495E59733 /* 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 = ( + 2041502118C7CEF1B3DE456B08417420 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + B5732331DDE2AF3D32C04F63CAD9A367 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 7F59DB2B6AF71F52F136D0DBB0F68B68 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + FE4DD9D665BC7FB28F1976759AFEA909 /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 8A1F4145BF428FAC3EF7F71A639E0F44 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + B3F6E6AC4F90239BF460B77EF627115F /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 5C7910425CCEF7BBA85D63CDD806262E /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + C37C5EDBB096EFDB74B0E59F258B2346 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 0245F68E53000A51D68A865BEDA0358E /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 89AB52F2F3E7DD4BF6E8E707DB81F244 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 376A4819862D96173F73BBBE48B99734 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 0CBA0A8309BD890593D027B450B1FBF9 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 22300B6E2A50E2C24E7E72775A0E7D3F /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 57D95ED92699FCC1BB6E509FED8FFC39 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 65B473E753F6B59BD7B52634AAD76913 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 4C6E500A02DBBA24466E0E9690A6BFF6 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 6DD0E78860F30B0E4A071133E530531E /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 42EEB9C2848D370EBEB727343AA46F59 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + BC35384C973A4AE7DBFC7D99F05643B7 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 58087561F18DDF8A21E1F95F9A9F0E8B /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + C1DB502EA5A1B6D2AD239EE8261471DF /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 50F32FB64F058613596D61B1ED12771D /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + ); + name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; F0DBFF551924BAB8276A941B8E6A829B /* Copy crypto Private Headers */ = { @@ -11969,30 +12061,38 @@ name = "Copy crypto Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F118853E051465ECD22B74485BD8D2A6 /* Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */ = { + F24BF2C9D2AEFA66F640FFF77D1FA0B7 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/core/v3"; dstSubfolderSpec = 16; files = ( - 3B70610E067B91C900341071834A5C92 /* cds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */, + 04197F35A25798F88C99C930810EBA52 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 5B0FC2C13A4A9E7155A2BA5CC74B8981 /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 1EFF72E543BE96989A985CDC4E3F28DD /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 99129B375A7C222F698BA0CDAC7040BA /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 29D4F38F294FBD68D93C757DC4420861 /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 1A0A135AC1DCF023C326C7FE5C87371A /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers"; + name = "Copy src/core/ext/upb-generated/xds/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F2C719EBA6E1DD45EF2461283B78A30C /* Copy src/core/lib/security/security_connector Private Headers */ = { + F2E4647779F58AF0F631EC8302AD9051 /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/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-generated/envoy/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - D78633C8743EEB8E421E2DCC1686D63D /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, - C4B1A288D9C2EFE6E1DB9913495F331E /* load_system_roots_linux.h in Copy src/core/lib/security/security_connector Private Headers */, - 7B7EB98DD811122397F68E11559BFBF2 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, - 69429AE5C42708505D1977EB3025B891 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, - C71EEE47CE3531A7DCD806B24D34B0C3 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */, + 3AD7D8D6DF190E358ED35322F865E557 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 125D90D005B61B5F2028BD650F9202BB /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 3F100F926FC4F1088AC7785744808F22 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 486A8753DA57A1E1FCCB3BC2B85329D2 /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 3619238C508B5B8EACD63BB6AE816B36 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 8F47802EFFF18D1480D5A4BD50A5C1B6 /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + B5D2033F10EFC949BFC07E93A845BAF4 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 2E981BD88484A92BACE4F0959FBC795B /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; F2EC21285650B9998000CB90561059CC /* Copy . Public Headers */ = { @@ -12086,9764 +12186,9771 @@ name = "Copy . Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F3378FC457BCCDF63C90541E248A03D1 /* Copy src/core/lib/security/credentials/iam Private Headers */ = { + F33578DB9F5D4C641F6FA8C1F610B850 /* Copy src/core/lib/iomgr/event_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/event_engine"; dstSubfolderSpec = 16; files = ( - 487D0E0DDAAE40D7A2DDA402A0B17241 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, + 9AF90DFBB443B01C2A8B4F487811C986 /* closure.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 80B6C9B3F9F40955290256D003A37078 /* endpoint.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 627480C60F293E43D25EDBC5A9E6F6DB /* pollset.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + 66E9A301210605FD78C7FE8D22FB89A5 /* promise.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + A26855106B71D5B7A720C9677E6A7FF5 /* resolved_address_internal.h in Copy src/core/lib/iomgr/event_engine Private Headers */, + F737B91F4C1FE0C84DD5F7CAFC68ADDB /* resolver.h in Copy src/core/lib/iomgr/event_engine Private Headers */, ); - name = "Copy src/core/lib/security/credentials/iam Private Headers"; + name = "Copy src/core/lib/iomgr/event_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F40C8D44BF62C5AAB6ACBA853AFB41BA /* Copy random Public Headers */ = { + F49D59AD246DD1BAA7C1980D5A074654 /* Copy src/core/ext/transport/chttp2/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/transport"; dstSubfolderSpec = 16; files = ( - CF442E3BAF2AF5516C8718437E993409 /* bernoulli_distribution.h in Copy random Public Headers */, - B7CD056F8CAEA7A04F994A4F1F5BFEC0 /* beta_distribution.h in Copy random Public Headers */, - FF15065F4A661557B3465F8DB6660C7F /* discrete_distribution.h in Copy random Public Headers */, - AEDBBE72521F63D8D2EB75A98213E1C6 /* distributions.h in Copy random Public Headers */, - 040B94D12037EB176048273F260B335C /* exponential_distribution.h in Copy random Public Headers */, - 826537C44E3BFEACEAECB63DEF54E43E /* gaussian_distribution.h in Copy random Public Headers */, - 336F08DC36A9CDE8F156FDFE9C295A62 /* log_uniform_int_distribution.h in Copy random Public Headers */, - 74F19A3D79BA63E32C9CB6EF25EC9F74 /* poisson_distribution.h in Copy random Public Headers */, - 19F160262CD5FFDFE5E16679D5817F42 /* random.h in Copy random Public Headers */, - CA278353F017152CF1640D6442276AB7 /* seed_gen_exception.h in Copy random Public Headers */, - 3EB6C12D72B20360604636D82D09321F /* seed_sequences.h in Copy random Public Headers */, - A7BA498C8BAD90FFD069EE3594C67BCA /* uniform_int_distribution.h in Copy random Public Headers */, - 7622AE114EEC0E229C516FC7CEB72D68 /* uniform_real_distribution.h in Copy random Public Headers */, - 3EDC22968C134A19F05BA35F8316B2E5 /* zipf_distribution.h in Copy random Public Headers */, + 08260A82390F68F4D08AB4C7A18BF109 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + C60378883ABA9B312F5CC1C0E4A796DA /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + E7D310FCC9E274D6AD69D89F84B7CF05 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 773B0A7AEC8E6D7C859B26166E3CBECE /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 82D589CE4925A8BD4FDA6BD7E95D9F3D /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + A641BBFBB1FE87738482A32223620E5F /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 4B4F1EAD19C2D4097E28B090A3E82989 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + B1D971231171ABE09827D45F900F6991 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 4055561C68474163B4F3A36A1D37FFA0 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 392DA9996009EF14003645C32BDE46F6 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 2263740614B87D921D8659C4CF5BFB4B /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 2428C7FC8DAFA2074CBAB6E67064E202 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + D525939DCE764AB107DBCDEECBAB504F /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 6CC42835F5501EDCBC1CEBE89E243223 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 897DD708C6BD4895AFDE4C56BFEE61AF /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 5A47F5E68358732A68A2646E26664176 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + AFE71BF1143D4A4240E53D3AF85B36A2 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + F2F8AA04FCCC07645293B9EF15250DF0 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 5311751A0E9120DC7BD779A07ED41470 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 1A0E68A8555D01D3D94EFD42EDA1D2D2 /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 0932C0AAA000D5634B2DD2EED0481544 /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 45106EA6ED11A8C7674E950E76ABD8DD /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, ); - name = "Copy random Public Headers"; + name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F4367D1E22EF12950CB3D37F9E6C745E /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = { + F4F79988E4720A2A568CB9E4DB75C561 /* Copy hash/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/endpoint/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash/internal"; dstSubfolderSpec = 16; files = ( - DB58D693F243C3B4AB674AA30AEE7567 /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 0436450C606E999F811868C5F19E9C4F /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - B852DA3A3F5B50CB07E0F1B62BE462E7 /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, + 35616097418663D4329A99E2E5AD11D4 /* city.h in Copy hash/internal Public Headers */, + CB06458498F0E58C660C26E29702CEA2 /* hash.h in Copy hash/internal Public Headers */, + 34EE2EB91D4BED654B2DE4B21A2357E8 /* low_level_hash.h in Copy hash/internal Public Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers"; + name = "Copy hash/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F504CA810600C44180E6766AD9F31B5D /* Copy src/cpp/client Private Headers */ = { + F54559673C8235DE321A7A40BAF73F82 /* Copy crypto/fipsmodule/md5 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/client"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/md5"; dstSubfolderSpec = 16; files = ( - 968380A4A5B1CECE557975B35176115E /* create_channel_internal.h in Copy src/cpp/client Private Headers */, - 6D5C3BFD0734FE96A63D8E201E21FF7C /* secure_credentials.h in Copy src/cpp/client Private Headers */, + 1E996295F957C6FE72509894A3C9B1A6 /* internal.h in Copy crypto/fipsmodule/md5 Private Headers */, ); - name = "Copy src/cpp/client Private Headers"; + name = "Copy crypto/fipsmodule/md5 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F54559673C8235DE321A7A40BAF73F82 /* Copy crypto/fipsmodule/md5 Private Headers */ = { + F6DACA8593CA2A058666DDC7CCA85469 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/md5"; - dstSubfolderSpec = 16; - files = ( - 1E996295F957C6FE72509894A3C9B1A6 /* internal.h in Copy crypto/fipsmodule/md5 Private Headers */, - ); - name = "Copy crypto/fipsmodule/md5 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F582A54C87FB0F1E7A28CF1A57502F00 /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lookup/v1"; - dstSubfolderSpec = 16; - files = ( - DC480CB94A4B819589E1744554AF1205 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F5BEB5E1246822455472AF26D8AFF502 /* 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 = ( - 5C47708FE77A6B85CE4AD062B658E217 /* security_context.h in Copy src/core/lib/security/context Private Headers */, - ); - name = "Copy src/core/lib/security/context Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F63DF8250D04F8EC0F4200546BD979E6 /* 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 = ( - 0CB99F160D417D160C85BDFF21522529 /* 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; - }; - F68042B75883B0C7AC128C73A493CE05 /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3"; - dstSubfolderSpec = 16; - files = ( - BF3BCDA0078876E63912C90E90512CF8 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 7ED26C7D37A1BC72479E8D8B81F13D9F /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 70F7D0017F243A3F2FA83FE28C55E2DB /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 4986F72A08EC535967553C97FAC8B8BC /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F74E7716F0FB7E0F623EFDAA236F7DB2 /* Copy src/core/ext/transport/binder/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/metrics/v3"; dstSubfolderSpec = 16; files = ( - 63DC2A839FE84E88EC1C898D4AAE2BC3 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */, - 591FF0720F8471AEB7E5820C4CE8DA0B /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */, + 9C648E1F5FDC930BB6378EA2672283E4 /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, ); - name = "Copy src/core/ext/transport/binder/transport Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F7D79CFA6F8F1DF0232718E508FE48A9 /* Copy src/core/lib/security/security_connector Private Headers */ = { + F6FF4B2B6D876A46C7C0AACC02063996 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/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/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3"; dstSubfolderSpec = 16; files = ( - 3BF9CC358613BEB79B032EF25DA0D4E8 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, - A23ECFB9FC31497D2592274124A6D893 /* load_system_roots_linux.h in Copy src/core/lib/security/security_connector Private Headers */, - 2CFCEE198F212E4353FE6846515610EB /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, - 9ABB3269DDA6680FC892F4384D039934 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, - 641B43275B11A7DCD3A00BD667B6D9F0 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */, + F04E16C072F3AB0E16C79308B5621789 /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F84A017C34057D1B737AA512F35D35F8 /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { + F715CA4A9F2D9EB64B0A1F97E6111411 /* Copy memory Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/fake"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/memory"; dstSubfolderSpec = 16; files = ( - 2A9F46D64077B8690B200FDF4499C6B5 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, + ABEFF5587D1E3CC87752F07E9115EDAD /* memory.h in Copy memory Public Headers */, ); - name = "Copy src/core/lib/security/security_connector/fake Private Headers"; + name = "Copy memory Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F8837CC44040AD3C57B9BF6D2C247926 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = { + F729FAF2273B6AD2E3BF30D5B552C25A /* Copy src/core/ext/upb-generated/validate Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/ring_hash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/validate"; dstSubfolderSpec = 16; files = ( - 9DBA508C7517EB22CEE42471E863C1EC /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, + 582C5B51AB627AE272FF3C8230A863D1 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers"; + name = "Copy src/core/ext/upb-generated/validate Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F88746B664C255F19C53A88B0C0B7C05 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { + F8172A92BE2627F592F4FB9B1801EDAA /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; dstSubfolderSpec = 16; files = ( - 3B854D546BC73E7C4D778D854F50FEF4 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, + 1873659D349363835880BC311CE27E8B /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, + 4B213E74718895EFE775EEC76A73CB6F /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, ); - name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; + name = "Copy src/core/tsi/ssl/session_cache Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F96B8098A60D578E2375A05A2217D532 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = { + F8A7D07ED8CB12BF6E7DEF6A78849AFC /* Copy src/core/tsi/alts/handshaker Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/annotations/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; dstSubfolderSpec = 16; files = ( - 91E9F7C40B628B2D8EABBF41BD6882BF /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, + 8FECB27F1D672047C5736C1F7274E2F2 /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, + E4A59F571AA5A13473AAFADC35EBC0D2 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 179B620C106E991434B9DFFED4BFAA9A /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 1F222B97764EAA9A10AD2D6A5A557B3D /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 9521FADB0E5E6DEBA0E740EA65B39A31 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, + BB7528ADEFB7A6F52A75B7647BD325B3 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers"; + name = "Copy src/core/tsi/alts/handshaker Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F99BA595926592EE29D86D776B325D16 /* Copy generic Public Headers */ = { + F97EEC3DEA8106F15C5BDBDF626F8E3C /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/generic"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/udpa/annotations"; dstSubfolderSpec = 16; files = ( - 3CADA8269D51D07B1A94C6E47D70367C /* async_generic_service.h in Copy generic Public Headers */, - 043715931239F9A0C67EE1DBC4E7DEA9 /* generic_stub.h in Copy generic Public Headers */, + 80F7DAFC0AE31F45D9341AB6318D8F4F /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + C7940F9FF8CB5DC35715501B9E7B37DB /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 8527DFF9E89BB7E5A3F5A91241548945 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 8D675BF4C3D025F56B2AED07C13C02CF /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + AB03BBCDE1E58D4F30E0424315677520 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, ); - name = "Copy generic Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FA406AB4AEEA471E95FBDE9CDD5229AC /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = { + F9D88CDE39C31CEADDAF831CCE53F301 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/overload/v3"; dstSubfolderSpec = 16; files = ( - 93330066DCA43EA6CDF9F83F65A655B6 /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, + 0FD8C7AC06E3D62834551856BC8105FD /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/client_channel/resolver/dns Private Headers"; + name = "Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FAA3DD25ED19A63D5472A8B9645D27F6 /* Copy meta Public Headers */ = { + F9E94FE046EFBB1742194B6D37563EF7 /* Copy src/core/lib/security/security_connector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/meta"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector"; dstSubfolderSpec = 16; files = ( - 7C905410BA31D6EF613A3F8BFF0CF0B7 /* type_traits.h in Copy meta Public Headers */, + 98E39D34170B6F82A9C0078AFF3D9E0B /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, + AB2F7DC2AF4750CD6F11BBE118352BBB /* load_system_roots_linux.h in Copy src/core/lib/security/security_connector Private Headers */, + 5D2889965E1ED1123712639524F57344 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, + 25C7A85B05E0BAE198138979A945435C /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, + 1A373C64CF820F04A2DAF5AAA9D3BD33 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */, ); - name = "Copy meta Public Headers"; + name = "Copy src/core/lib/security/security_connector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FB5F3BE66CA7B6C11FC90D8DE6E49CA0 /* Copy time/internal/cctz/include/cctz Public Headers */ = { + FB5AD9819BD2B504A574806CA56AF769 /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/include/cctz"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/annotations/v3"; dstSubfolderSpec = 16; files = ( - D7C2342458CB73D9216ED80B53EBB07E /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */, - B747EC138F77C62422DF241039CF8510 /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */, - 1BCBF0BDA5E8B8E766E15849F3A26C94 /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */, - 91F054A8A3BA18FB33BB7842D0517F12 /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */, + DF20E8D7A3056F16335C43BD45D3F6F5 /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, ); - name = "Copy time/internal/cctz/include/cctz Public Headers"; + name = "Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FC2606D35CD52DD5531DD0591E0E1A2B /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { + FBC077ACCF8D1E79F8D9947C093D5C70 /* Copy src/core/tsi Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; dstSubfolderSpec = 16; files = ( - 49A02131F7601C77C8BA03D64143DA45 /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - 888E7A64A1711F18D611BE40E884DE86 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - 5578086A628D7DA9F67E42FCE01CD004 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + 0C9EF9BDF3C8FFE0D0EE00453588B417 /* fake_transport_security.h in Copy src/core/tsi Private Headers */, + E00239CB12E9DFE177ADC7FC11814FE0 /* local_transport_security.h in Copy src/core/tsi Private Headers */, + 3CD15DED8A3A66E5E2D29E4D65BB9421 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, + E6F2FE2614BD03FC6FED1B37D15386D7 /* ssl_types.h in Copy src/core/tsi Private Headers */, + 101C52145F746EDBEFCF2DE540062DBC /* transport_security.h in Copy src/core/tsi Private Headers */, + 764A771916E8863DC18D4AFE58614188 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, + A87934A6A0038408F6DE3999DC186FCC /* transport_security_interface.h in Copy src/core/tsi Private Headers */, ); - name = "Copy src/core/lib/security/credentials/jwt Private Headers"; + name = "Copy src/core/tsi Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FCDE5E03E8684D0AAC3F840CC0BF6FDC /* Copy src/core/lib/event_engine Private Headers */ = { + FC1135C94C2CFF3345DD3DEC4EEFB0C3 /* Copy src/core/lib/security/util Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; dstSubfolderSpec = 16; files = ( - EAB729AABF8ED42106C007B24BB0CBC9 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, - B8DAC4711ED02C63B5F34A0F810A9842 /* event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, - 8913B1189D6CE7D19945E4BC450F9D01 /* sockaddr.h in Copy src/core/lib/event_engine Private Headers */, + 528BBEB438D1DC55C674C21176BE91BC /* json_util.h in Copy src/core/lib/security/util Private Headers */, ); - name = "Copy src/core/lib/event_engine Private Headers"; + name = "Copy src/core/lib/security/util Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FEC2D93B4F366C9DC564B114B06C27F6 /* Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */ = { + FC17E631D21690367DC6F3391DFC5565 /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns/c_ares"; dstSubfolderSpec = 16; files = ( - DD4428569DBD113C40057AD67572F926 /* lds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */, + 482B299787226CC0EA7F90FC7B5FA332 /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, + A56475DC0E802BC2D51721546247B785 /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers"; + name = "Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FED664FACCAF91965CC5DE4D16430218 /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = { + FDF6C715FD1D066DD5B9C0AFD3BAAB6A /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/health/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/cluster/v3"; dstSubfolderSpec = 16; files = ( - B9179E87FE887C9543AF0AC21CDA2A9F /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, + ABFC00C2CBFEF0483337094389C847BE /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + 86B131D8B30CE6DEE61A6B54A46112DF /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + E2560A6A58274EFDF6058EB8A4C526BC /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + 36C954E146F3260C8EC49D696B060DBE /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FF11F52FD22D50946FA783C922AECFFD /* Copy impl/codegen/security Public Headers */ = { + FE23377D2EA046F90FCD6782E8AC42A9 /* Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen/security"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/route/v3"; dstSubfolderSpec = 16; files = ( - 5AD5BD230441C61FDCEFD4F2FD8CC1E8 /* auth_context.h in Copy impl/codegen/security Public Headers */, + 9959621149C450322108B2AFC8FED230 /* rds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, + F91F893C829724A3F9B1FFC9C9DDB71C /* srds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, ); - name = "Copy impl/codegen/security Public Headers"; + name = "Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FF5A1982C2E621A8E45F63FDB50EE473 /* Copy src/core/lib/transport Private Headers */ = { + FE3BF0F1A441EAB2E1D165338F16B176 /* Copy src/core/lib/security/util Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; dstSubfolderSpec = 16; files = ( - 1ACCC930A838AA1CE8B386B017933DB7 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, - 3164CCAB4865BC8A89607CA53BB03BAB /* byte_stream.h in Copy src/core/lib/transport Private Headers */, - EB63C925F80D36BD55ACB623CF0F086B /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, - 7AA5CDE12EBFAE48CF7C8A67B27FD4AD /* error_utils.h in Copy src/core/lib/transport Private Headers */, - FF0483AEB78D1224D0726CB14D9731F6 /* http2_errors.h in Copy src/core/lib/transport Private Headers */, - DBC1397B7AA420B8E6CC349E39CBC4AF /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, - C878D97094DEBA647C4366DED0203E3A /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, - FE3C27108D54074F096A4FBA51232BA1 /* pid_controller.h in Copy src/core/lib/transport Private Headers */, - A43EB3E311BB6C7C03A5C7716C269B01 /* status_conversion.h in Copy src/core/lib/transport Private Headers */, - 83D3274152394F8F00812B781B66BCD1 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, - 9A24F1FC699ABFB7DA6706210BA9A82B /* transport.h in Copy src/core/lib/transport Private Headers */, - EB26E115E78CD575728C2D006F338A10 /* transport_impl.h in Copy src/core/lib/transport Private Headers */, + 83444586FA339EE473324FEADA8A3475 /* json_util.h in Copy src/core/lib/security/util Private Headers */, ); - name = "Copy src/core/lib/transport Private Headers"; + name = "Copy src/core/lib/security/util Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FFF56155145F834D1E8459478A0DC35C /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = { + FED67C2182700012CBF69161CAC993FD /* Copy algorithm Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/algorithm"; dstSubfolderSpec = 16; files = ( - 50D92F6FA5ECF7D96B1173977086967E /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 4A68C5858132DC016F6A975643ABF430 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - E28856F7A5D5914BA7CCD9FF2A65CD5D /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 68BEC44CE4466376403E3A398579150C /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + 515304BD77E208D5B816C9E32F11852B /* algorithm.h in Copy algorithm Public Headers */, + EBF3B70CF216F55F26A3A3478488EE67 /* container.h in Copy algorithm Public Headers */, ); - name = "Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers"; + name = "Copy algorithm Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 00196DB86F777EE3545D422DE44E59DC /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; - 0053C09A789A18B70B272E4C7999B5C2 /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; - 006370D3AB38F7A18323959A5B124EBC /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; - 007E478F711A95978A982971A9CE62C1 /* FIRPhoneMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorInfo.h; sourceTree = ""; }; - 008B402552EA81359C03A2F1A123C46A /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 008F4B3C6F0E06E4FD9D7DA2C275B58B /* 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 = ""; }; - 00906BD353BE3993A86E048716F07463 /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_impl.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc; sourceTree = ""; }; - 009EA74778F49391B657C1ADB3136375 /* 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 = ""; }; - 00AAD56CAED7DA6A268CE5099AD23829 /* 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 = ""; }; - 00B301FF6B0D0904B8E79378F6BA801C /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - 00B97DC0B4F0A9A2781B471DD61B80C6 /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; - 00BCD1AAA6A80ED84AED36F68B1A2BC3 /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; - 00CA251CC67B1A10B62249E6F289493A /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; - 010289DABB71A1F8AE36F645B8AEC3F5 /* 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 = ""; }; - 0123B5EDEF4A14D9CE53785D79866588 /* 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 = ""; }; - 01268477E858E2ABCF1131613B5DA3BA /* blake2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = src/include/openssl/blake2.h; sourceTree = ""; }; - 013A3C96BE818C952C2F61253C4447B7 /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; - 0146E1CD2F2087892BF302BEF9ED10D1 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; - 014FC73DC3798CBA3556EF64137339AD /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; - 015628D7908A39BCEDAA4DC667A59F1B /* log_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_writer.h; path = db/log_writer.h; sourceTree = ""; }; - 01781C87CC57C5C88AE2D6A81AC6E2C8 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; - 017B4D3115AFB76F1624CEE3990915EF /* 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 = ""; }; - 01800632BDFA1E468AA8488910C566CC /* FIRPhoneMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo.m; sourceTree = ""; }; - 019E255684CF5E4E67BB030E7BA79D47 /* FIRAuthUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUserDefaults.h; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.h; sourceTree = ""; }; - 01A73D0F5DB33ABBF6E4AC874879FC13 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode_fast.c; path = third_party/upb/upb/decode_fast.c; sourceTree = ""; }; - 01A843A33D35776B086BE103F200DB87 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; - 01AEC015FE1445352B9747AD1ED24B6F /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 01B074B71CF6D4B2259BFB54CB344488 /* regex.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c"; sourceTree = ""; }; - 01D620E45BD3B627CFB5EFB06408CF0A /* 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 = ""; }; - 01DC83CB71CDF7A5E4311BACFCDB6718 /* 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 = ""; }; - 01EDFCF5D02DCACA3EA8AFE078A56372 /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = child_policy_handler.cc; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc; sourceTree = ""; }; - 01EE093E08022F490ED57BBA14ED7A2C /* 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 = ""; }; - 01F6F82C661D7152709701740551DACD /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; - 02173BFC07D0ACF77EFD0440C35F6ADE /* FIRVerifyCustomTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.m; sourceTree = ""; }; - 021CAE0AF549BDF7E56675BDE315D6F3 /* binder_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_credentials.h; path = include/grpcpp/security/binder_credentials.h; sourceTree = ""; }; - 021E812C1CB6B8EED60F900BC62BFBE4 /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; - 0228BFD2D8F7A219960F55844927159E /* fixed_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fixed_array.h; path = absl/container/fixed_array.h; sourceTree = ""; }; - 02308FC28DF717728421322BBB9E69D7 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - 023E7A4FD949DD5A05E54771B81175EE /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; - 024230598FD5AE93CFD3BB4682695DDC /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - 024C89604927D27644723703E868DD3F /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 0267924C8F19F2FEBFEE014398CF5B95 /* 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 = ""; }; - 026CF909AE1FC9038429B4C1362CC194 /* resolver.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c"; sourceTree = ""; }; - 0273057575C7E444F4111D593C90F269 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; - 027585817CA4B742EB65A933E9F49051 /* algorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = algorithm.h; path = absl/algorithm/algorithm.h; sourceTree = ""; }; - 0277278048B10C5B447C256BB4AC9539 /* FIRGetOOBConfirmationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.h; sourceTree = ""; }; - 028EF34AE84526E6C26DE38242962783 /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; - 02B122C13233EF7357BDD2C2048ADBF8 /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; - 02B2BB94E5E99839ADAD523E880D5433 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; - 02BA4924C1398B9F2F4BA5A3721B3520 /* memory_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator.h; path = include/grpc/event_engine/memory_allocator.h; sourceTree = ""; }; - 02BB76AB70FEEB044C2A851E3C5D8D7A /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; - 02CBA8D76D22BE12FB8B493C4E990614 /* FIRVerifyPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.h; sourceTree = ""; }; - 02D2B48E16EEC1144F53F98D6DF73E99 /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; - 030219229BE5BA4A5D3AE7087D1EA6FA /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; - 03281A9BADCE0D3F956492525C03536B /* 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 = ""; }; - 032B23396516DD7A1D65EA615F8B3100 /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; - 034BCB0F41D9A8B27B9EBCF60671A30A /* GoogleDataTransport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleDataTransport-umbrella.h"; sourceTree = ""; }; - 03609EE23B2A58FDA5D12A5ACF25C22C /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 0366B5B04275EA3FB9BFE02F9677EC3B /* FIRGameCenterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.h; sourceTree = ""; }; - 0376345AF21E938726D4C37516953861 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/cipher_extra/internal.h; sourceTree = ""; }; - 039EC92088632A500B7C3599B617F460 /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digestsign.c; path = src/crypto/evp/digestsign.c; sourceTree = ""; }; - 03A7283B85028846B7E4135773D656AE /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; - 03B4748FCF138B7F32F0D3DFEE60261E /* FIRAuthExceptionUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthExceptionUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.m; sourceTree = ""; }; - 03BB18A312AA070D83984098067EF81C /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - 03CBEB05F5C2867A917CFACE48EE047E /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; - 03CC49C3B01DDFAA85DCE5CE96BAC488 /* leveldb-library.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "leveldb-library.modulemap"; sourceTree = ""; }; - 03CF886D35E03504769A922450BA26E2 /* 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 = ""; }; - 03CFAE30300C2CB9B8F90D95DF297431 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/codegen/serialization_traits.h; sourceTree = ""; }; - 03EC09431A21733C761853523EB8F447 /* 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 = ""; }; - 03F12C9E238CE872C4E5AD15A6C3E880 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - 0405A327F66A55E127C175A635EA75EF /* comparator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comparator.h; path = include/leveldb/comparator.h; sourceTree = ""; }; - 0408792A4E03A83D5F5BF0199DC0EDA0 /* FIROAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h; sourceTree = ""; }; - 042477EE03D18F13CA08BC910A4C1C5B /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - 042663A38D86B562E4534551771A4C7C /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; - 043C52BD169975B49DE0110B63349929 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_channel_arg_filter.cc; path = src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; - 04734AB5AF74C9DE20D6D8802C0D9E18 /* global_config_env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = global_config_env.cc; path = src/core/lib/gprpp/global_config_env.cc; sourceTree = ""; }; - 0477AA6CF1B36AB9D8D58B968512BE93 /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; - 048D1F5340C8D142942B39088DF3692B /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 048FEF35773E60377A355722C171880E /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; - 0491067842479745D9A5CAD7353AAA78 /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; - 04B224CEDF61E100299461ECBB4903B8 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 04F5AED04D774AFB1CDCBB0DBAF1EF04 /* delocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delocate.h; path = src/crypto/fipsmodule/delocate.h; sourceTree = ""; }; - 051CFB6A3B8577E17C6BA543DE60655B /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - 051E0706CD1594CB9D0E0EEC0FEF443E /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; - 0531C82DEF32707A12F9BAAD419C0D84 /* FIRAuthSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSettings.m; path = FirebaseAuth/Sources/Auth/FIRAuthSettings.m; sourceTree = ""; }; - 0534BDFCB05C211DF3E7EE6BAFA4C0DE /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; - 055EFA98F92611F06DD3C545A984662D /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; - 05618ED55E3E7779BEAA558D074CE80B /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - 05945181925CD902E93B6CC28DB4AFF4 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; - 05A808793AA18FCA269DAA9351AD071B /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; - 05B52CECB19A59ADE013965B3CF4E76C /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; - 05C92F39C7289C2EAC486EF107DDABC2 /* 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; }; - 05EA13824C8A5CD55A0A214BC6BF4D41 /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - 05EFEE8FC860BAFA424F582FFF89EA53 /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; - 061468C930A9406C41997EBF42AFBFFA /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 06214A3F5DE0E5E97C1063F4E5C4CA1E /* 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 = ""; }; - 065A175D13E9F5A503FB946D1E6E7577 /* poisson_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poisson_distribution.h; path = absl/random/poisson_distribution.h; sourceTree = ""; }; - 0664AB84AF0389F95F3FC70A01619934 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - 067F7C4805B5D6AB5D84D50A8C75A24A /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/internal/thread_annotations.h; sourceTree = ""; }; - 068B3FD6A0B13CF7CCBE5913E3110ADA /* FIRAdditionalUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAdditionalUserInfo.h; sourceTree = ""; }; - 068DD85788D07843FF3FE2DCC0A0345B /* FIRUser_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser_Internal.h; path = FirebaseAuth/Sources/User/FIRUser_Internal.h; sourceTree = ""; }; - 068F4F2AD949B3784C2592596099624D /* benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = benchmark.h; path = third_party/re2/util/benchmark.h; sourceTree = ""; }; - 06926B472FFC0205E8282A2D7A31D8F2 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; - 069431580008CFFAF0D9587C310BBE0D /* numbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = absl/strings/numbers.h; sourceTree = ""; }; - 0694CC8E77BC7242BAA35ABFFC770A96 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; - 06AC0FAC7618637C3953ED6E44B0C385 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = src/include/openssl/pem.h; sourceTree = ""; }; - 06D1CBF5AA64F18DF7A7F11F8C8BAAA0 /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; - 06D7201BBAE66F5F5EB93E1C26B1A9BC /* proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proctitle.c; path = src/unix/proctitle.c; sourceTree = ""; }; - 06E8C0DF14FF51DF74FF293B35FF204A /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/support/client_callback.h; sourceTree = ""; }; - 06EC2F2CF14E9C040A2BD2941944B9AB /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - 06EDAC646F9CB4D8FB7544DB9E4B3170 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 002D32355052CBC02FAE1A92DC157148 /* leveldb_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_bundle_cache.cc; path = Firestore/core/src/local/leveldb_bundle_cache.cc; sourceTree = ""; }; + 002E293BDF3750B77F88893D7AF16764 /* 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 = ""; }; + 0052729435F79E558EA2A4605778A9B7 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; + 006B361EF0DDA63FEA280C8DBC84677B /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; + 007B120B423112F45A3727724D0FF503 /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; + 007F15A5EC4CC06FF5C5B8A8C989F5E8 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; + 00879357934899F0C8BA56AC5A95A09F /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; + 00920AF9A5329398C511ACB2668D298E /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; + 0098A4E3BD46BC9E53D89653525BA4CB /* context_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = context_list.cc; path = src/core/ext/transport/chttp2/transport/context_list.cc; sourceTree = ""; }; + 00C6452C5F9FCECAC8273E733BDFB741 /* FIRAuthDefaultUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDefaultUIDelegate.h; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h; sourceTree = ""; }; + 00CCFDDE8D218C5C1A3E507359207336 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; + 011A747DD6E1D7CD9ABE6373A0BFED98 /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = util/no_destructor.h; sourceTree = ""; }; + 0126B52F1141B03D61C3F41D44B994C8 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; + 013B743A93E8962FA126FF160E6FBCB2 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; + 015A3B24AB9D56778141F2038E656E9B /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; + 0166B6B5604FA8960C0A0795A637ECA7 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 0167C298C9AF396EFAEC955D4EC4AC68 /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; + 017FC1E696F93A970FA94F93FC614007 /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; + 019F83968128F6F24839D3D064259166 /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; + 01AF25EF722D3914BF9F97D6A7484E30 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; + 01C312C2156B3EF34C50EBF092ABF23D /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; + 01D46E00C5F45C6A1A58C776FDE9655C /* load_bundle_task.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_bundle_task.cc; path = Firestore/core/src/api/load_bundle_task.cc; sourceTree = ""; }; + 01DD2AF3DB65653F1F8710B7A28935CF /* server_timestamp_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_timestamp_util.cc; path = Firestore/core/src/model/server_timestamp_util.cc; sourceTree = ""; }; + 01E07A650FE7160BAB9DACE08C394D98 /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; + 01E4A4FEE82EB285236C12E3188E6205 /* 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 = ""; }; + 01E646F778B3EBA695C4BC81397D91F8 /* alts_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_security_connector.cc; path = src/core/lib/security/security_connector/alts/alts_security_connector.cc; sourceTree = ""; }; + 01EB475D0C43B21D1BAD5ED8A9B19F37 /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; + 01F1100AF8018C34A8A962DBF2D89521 /* 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 = ""; }; + 01FDC7A97AFF00DD0D8ABFAFBB0DB2DE /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backend_metric.cc; path = src/core/ext/filters/client_channel/backend_metric.cc; sourceTree = ""; }; + 02084469FB2D895A0332629EF7EBCD59 /* 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 = ""; }; + 022D057408B4775252007A0BFF06053C /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; + 0243BFC51D0FE9BABFBC22D2AF3CC1DB /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; + 0255947B73F9D231FDB1F9468A734938 /* FIRDeleteAccountRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.m; sourceTree = ""; }; + 02592D9B0222C5EF6A2B0838BB1940DA /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; + 025B72D377693569FBA67D95C614E9EF /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; + 02825FF3FF46AAAB26D9F0C99194FD69 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/support/config.h; sourceTree = ""; }; + 029515E0EF6EBE6E350B8384AC34EB7B /* check_gcp_environment_no_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_no_op.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc; sourceTree = ""; }; + 0299B5DCAACC5C5282D69FF5DB8E1F34 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ec/internal.h; sourceTree = ""; }; + 02A3A96FAE5EA108C16EEFAE846F1A87 /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; + 02AB8AC1CC334AAE331BB0343973A9CD /* FIRAuthOperationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthOperationType.h; path = FirebaseAuth/Sources/Auth/FIRAuthOperationType.h; sourceTree = ""; }; + 02CA55E2A62787F06B72E173006E4553 /* BoringSSL-GRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "BoringSSL-GRPC.modulemap"; sourceTree = ""; }; + 02D73A913E0C81296AA5B6889B4DCB54 /* text_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = text_encode.c; path = third_party/upb/upb/text_encode.c; sourceTree = ""; }; + 02D814363943F5E57C4E7D6E4F8CEB8D /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; + 02FC08EB17418E66A5E005DE0F37AE17 /* bootstrap.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bootstrap.upb.c; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c"; sourceTree = ""; }; + 030D9CC2D8A108AC77CF6158C5408A6D /* FIRAuthWebUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h; sourceTree = ""; }; + 031527DDC738BD83E9A0ECF5C9D969BF /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = Firestore/Source/Public/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; + 0351C0E7FAD69A223EB7140D9D84C28E /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; + 0366E26FD67CE451C4FEA7F53141CC29 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; + 036A9E9E9BFA9504041DA98C1D65A333 /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; + 037CE7D8799949627D7F03AA644D92C9 /* tls_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_credentials.cc; path = src/core/lib/security/credentials/tls/tls_credentials.cc; sourceTree = ""; }; + 03B6F105945501615F43F468340BFC9B /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; + 03BD962883F1E2CC018715E58E6F58E9 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; + 03CAD07613933D09F7AE52AB328A46FC /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; + 03CE6012BCA068CD82E776D1832944E4 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; + 03EB39BB6C3BA4D31A87BD4D92559F44 /* 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; }; + 0406507199D904BDBED7C13AEF78965C /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; + 04179AC3B879C20206978EEC815FD882 /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; + 0440A58B534CCD5742E404FDC354C9C6 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; + 04435BB7737DFE0C78B83AA0B59E79E3 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; + 04436C1AE53DD499F7BF43DB35632911 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; + 04958F931B3C3F8124FF420CA40F22F1 /* FIRCreateAuthURIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.h; sourceTree = ""; }; + 04B0CD9888751808B2F391226DD32645 /* address_is_readable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = address_is_readable.cc; path = absl/debugging/internal/address_is_readable.cc; sourceTree = ""; }; + 04B6D0A84A33F2531C58DF18E9DFC5AC /* md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md32_common.h; path = src/crypto/fipsmodule/digest/md32_common.h; sourceTree = ""; }; + 04D435635C67762543409BFA5157E160 /* target_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_id_generator.cc; path = Firestore/core/src/core/target_id_generator.cc; sourceTree = ""; }; + 04DCC796577EDC8863BA594DAE877F68 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = src/include/openssl/ecdsa.h; sourceTree = ""; }; + 04E73DA9DFB71052E0421D6FB6F61687 /* 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 = ""; }; + 04FF8C1CD67447ECD74BA2B277663D77 /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; + 05011D8AFBBF196ABA67525ABA21BC5C /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pmaps.c; path = src/crypto/x509v3/v3_pmaps.c; sourceTree = ""; }; + 050C5D6CE7CDB637D0CDECF2049FB34A /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; + 050DDC4D7F8329EC1EFD2B41631EA067 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h; sourceTree = ""; }; + 0555D00DD1A75BEBEBD60DD89971510F /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; + 055787A302ABC737DE93D69BEA0A6F66 /* pool_urbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool_urbg.h; path = absl/random/internal/pool_urbg.h; sourceTree = ""; }; + 05711C93F4D9C8238D2EE5C91C99A58D /* channel_stack_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_type.cc; path = src/core/lib/surface/channel_stack_type.cc; sourceTree = ""; }; + 05890FCFD712ECCCB0C53BB53F8F6ED6 /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; + 059F43CCF5FC232429B49809FBCDF5CA /* 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 = ""; }; + 05A12DCADF2010275BF065C130BBAC83 /* 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 = ""; }; + 05AAC45C541010E098920C3A7CB5B887 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; + 05B0E2FD160673F9272707AD7732C648 /* 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 = ""; }; + 05C28F3B72B151276555410668D8643C /* c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = c.h; path = include/leveldb/c.h; sourceTree = ""; }; + 05CEAE5F39C72C44F09FFF0479D94BC7 /* pcy_tree.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_tree.c; path = src/crypto/x509v3/pcy_tree.c; sourceTree = ""; }; + 05D67614BF757CDF57583E2011D65ECE /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; + 05D83D0E0C3D491F291B11C287B131FE /* FIRAuthGlobalWorkQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthGlobalWorkQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.m; sourceTree = ""; }; + 05DA15F57C9AA6BB5B02F71D09009840 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; + 05F6DFA326C60FC5485D8DD78CC70DEB /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; + 0646C62C2674B344913002AFC41D6730 /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker_registry.cc; path = src/core/lib/channel/handshaker_registry.cc; sourceTree = ""; }; + 0647D74034C7585F265E71E900324560 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/support/port_platform.h; sourceTree = ""; }; + 064BEC923177682D7555AF96F850F50E /* regex.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c"; sourceTree = ""; }; + 06623FA63AFC0B81C8AFA3991287469B /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; + 066817BADE511AF17107CAC1FCB1F74D /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; + 067835A1DBB77FA191748AC963D2309D /* sha1-altivec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "sha1-altivec.c"; path = "src/crypto/fipsmodule/sha/sha1-altivec.c"; sourceTree = ""; }; + 06A2391CCACB4391A01D3A6DF188A56A /* byte_stream_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream_apple.mm; path = Firestore/core/src/util/byte_stream_apple.mm; sourceTree = ""; }; + 06A963028A6ED07940143366C6815FC0 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; + 06A9CDCE24434CA2EA25945DD7B50187 /* 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 = ""; }; + 06ADD92BEB72399B2C671C9B53526C5D /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; + 06B3274063146539E7E3A5F2D72A5699 /* FIRStartMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.m; sourceTree = ""; }; + 06C376465A570EE31BFA74C78F2631F3 /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; + 06CC698B0FAB17DE34B480F086167D08 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; + 06D183844F0FB96451404D1DE9B7ACBF /* tcp_client_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_cfstream.cc; path = src/core/lib/iomgr/tcp_client_cfstream.cc; sourceTree = ""; }; + 06E092424B003E7B0667FAE0E04B7D7A /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; + 06EBC8B1D097C52B9BEB39D39CA483E7 /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; + 06F0D59D968FE74B17C59C332385F976 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = nanopb; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 06FF34CB5D2A71F22620F073FC69B8F0 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; - 06FFACA6173CC50666E4F1FBB01CEE73 /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; - 07002E4BA9911E20048212DE5F9AFA94 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; - 0705F9ABAC36C590EFDAC7F72B26B23D /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - 0709B52C49A88C084216A76A6F816228 /* 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 = ""; }; - 0722CA38178D3469D4A31A4E2D184724 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; - 0724A62328D18B5FF33F489B2E8AF32B /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - 072500AACD576F7DC05582E9B1DFDBDF /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; - 072F84CD6CCF8A5485861B918443B04A /* filter_block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_block.h; path = table/filter_block.h; sourceTree = ""; }; - 0730AE84D2819641162A6300FBCE6EE9 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; - 073613EE37261B08AE096C4B0237270E /* 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 = ""; }; - 07382E56313C06E32A5F9E349763D60E /* distributions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distributions.h; path = absl/random/distributions.h; sourceTree = ""; }; - 076E8422B2457B1D1A05CF6DEB52DBED /* typed_struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upb.c; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c"; sourceTree = ""; }; - 078EBFF284ED55CA70999B58346EE0E4 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = ""; }; - 0797522F0757818688768EF3E2DDCAF7 /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; - 07A4D675C662616BC90B0903CE156B19 /* 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 = ""; }; - 07CB71535C746BAF1620AA034BBDE774 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - 07E5EF2CFF5AE29412E5C52C1C300013 /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; - 07FF581D6BB3B05C9AF491F90CF4D209 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - 080BF6BA304EA321ACCB99762F26AAE6 /* FIRAuthRPCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCRequest.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h; sourceTree = ""; }; - 080DE6EFA8EC19278A62615B0C71678C /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/support/string_ref.h; sourceTree = ""; }; - 082DF87FA64B8555F0A22DA75AA9F2FB /* 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 = ""; }; - 083EF7D483AD0F08BCFBDC447AC45C24 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; - 0844B64D32D2C69136CAA33112FE2A5C /* cord_rep_ring.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_ring.cc; path = absl/strings/internal/cord_rep_ring.cc; sourceTree = ""; }; - 085C3CC27446B08D4C41619ADA1FFEA8 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; - 086A00C6B82047D630270FA8F2293E5E /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; - 08784A562EE7D4FC1393492470FA3740 /* any.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upb.c; path = "src/core/ext/upb-generated/google/protobuf/any.upb.c"; sourceTree = ""; }; - 0880E5E502915CE446F292A316BD0F99 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; - 088F51DD14C05CBC4BF0EDE08728A569 /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; - 08940229C89D7950A341B63D6AB7CC4A /* errno.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno.h; path = include/uv/errno.h; sourceTree = ""; }; - 0898EA6E1B9E38125C80EF6E982755C2 /* FIRAuthErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrorUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h; sourceTree = ""; }; - 08C312EBBA1FDC1A9251678212F6CDD3 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/support/slice.h; sourceTree = ""; }; - 08C9E81DF8129B2441B49C3B9F58FDB5 /* 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 = ""; }; - 08D11470660AEEBB1A2B43742F4981AC /* 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 = ""; }; - 08DDE828A858C6E4F07FFE0412B333FC /* FirebaseCoreDiagnostics-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreDiagnostics-umbrella.h"; sourceTree = ""; }; - 08E13ECFF2261B5D89C0EE63092ECCAC /* 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 = ""; }; - 08F56A47FD47D730D49C1F0AC250A77B /* 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 = ""; }; - 0910BB72DBDAB252986ABE9082C84128 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; - 091FB50E071D7F52B2E598CBE4CB007C /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - 09219B6965124D7CC583F7CAC19DFB79 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = include/grpcpp/security/credentials.h; sourceTree = ""; }; - 093ABA6BEE3C66EF9CE1EA5CF4CB0985 /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; - 093F493F9F1708A9BFC9D9CC9BC36975 /* 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 = ""; }; - 09400F7221E967EAE32529B40064FBBB /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; - 0944E9991EEBB1536BFF771198D50168 /* atomic_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_hook.h; path = absl/base/internal/atomic_hook.h; sourceTree = ""; }; - 095F41438DE678236B51E05C4C1BCABE /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver_registry.cc; path = src/core/lib/resolver/resolver_registry.cc; sourceTree = ""; }; - 09A090612BA2D7BFA79EFEDE37B18C92 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/civil_time.h; sourceTree = ""; }; - 09B5ED5FF8068FC36343D9D450D40A8C /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; - 09CA4E7C19F69D3FE6A6BF7440C67970 /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; - 09E52E93BE86560301BEE49508E9FB1D /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - 09E7A06DB41077318FAA5DD03E533C32 /* 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 = ""; }; - 09EEFC05621D99984DB106D7160A0F6B /* http_connection_manager.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c"; sourceTree = ""; }; - 09FC723A640A7C6E406509A5D7C99137 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/leveldb/slice.h; sourceTree = ""; }; - 09FE1F9AD0B515229BE968DEFB62C134 /* Libuv-gRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Libuv-gRPC-Info.plist"; sourceTree = ""; }; - 0A0303B9017479130F16A465F2F04856 /* xds_cluster_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_resolver.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc; sourceTree = ""; }; - 0A1F48A2124CD01860DD254F8F89D30A /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; - 0A4786DF96C94BEA793A9C5243A9B166 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; - 0A511B16F2FB557F764FEF88CA4007B1 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; - 0A688A2D2E641068B51C641ABE7E28A3 /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; - 0A712F3423A4271693EE4062740620EC /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/impl/codegen/completion_queue.h; sourceTree = ""; }; - 0A762BAA1F593DCF2C5508248C2A6CA5 /* 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 = ""; }; - 0A79386C98FA637B665D093A6F55CF97 /* FIRAuthTokenResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult_Internal.h; sourceTree = ""; }; - 0A7AAD420E50EEB88CD367F5F33EC811 /* string_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_posix.cc; path = src/core/lib/gpr/string_posix.cc; sourceTree = ""; }; - 0A9302647F77DB9B0C47A2E75BA59730 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; - 0A9F1467DC185EDC5A308A1DBA464392 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; - 0A9F46A999C47653013D3AD854352507 /* leveldb.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = leveldb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0AAEA5BD6F309E1297C47444FDF40F85 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; - 0AB212895931C1B830B838DED31B7217 /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; - 0AB3814B23C67744B7CECFC49B590473 /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; - 0AB859AFBDF808CD70C9D89CA6B9B99F /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; - 0ABE47976C44914C32EDB89690E04A02 /* clock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clock.h; path = absl/time/clock.h; sourceTree = ""; }; - 0ACCE5A9C30AC47F61D3D672E8987859 /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_lib.c; path = src/crypto/x509v3/v3_lib.c; sourceTree = ""; }; - 0ADCA58369C9314BEF7FFB6A8CEB21CA /* container_memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container_memory.h; path = absl/container/internal/container_memory.h; sourceTree = ""; }; - 0AE2E7AF105E233173E49B4CACCBD993 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; - 0AFE4AF6BADEF74CD5AB394132C86502 /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; - 0AFFEBCF57F8E8D177A9585FBF21FD22 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; - 0B024046359A066F10122E255FB19398 /* regexp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regexp.h; path = third_party/re2/re2/regexp.h; sourceTree = ""; }; - 0B0867D9044F28DE7A8D0F3752F15364 /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; - 0B19703192BDEA80C0D6167C677F1992 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 0B201214C661C3A8FD1F30C55195002E /* eds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c"; sourceTree = ""; }; - 0B34697920BDD3E002E685D02B9B736A /* substitute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitute.h; path = absl/strings/substitute.h; sourceTree = ""; }; - 0B44DAC196971F034F3867F3EE421F42 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; - 0B8179009EE4DD7ECDA95B6EFF5C52D3 /* 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 = ""; }; - 0B93226B0B0A22CD8D9078E645982A33 /* 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 = ""; }; - 0BA6652B31A30D9100EAF433066BAB5C /* charconv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv.h; path = absl/strings/charconv.h; sourceTree = ""; }; - 0BAFAE40DB8443E0742EAE7D49932F70 /* 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 = ""; }; - 0BB83BF4747E3E2DC80C6A3D27F17062 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; - 0BC4CA131A02B29CEF60507DB1FB7CA0 /* curve25519_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_32.h; path = src/third_party/fiat/curve25519_32.h; sourceTree = ""; }; - 0BE317B351B87093CD8D68D54373ADD5 /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; - 0BFEA9FB016A5AE331A2240DF946E29F /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; - 0C084BC6B112233FFF6F45D47996A083 /* FIRWithdrawMFAResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFAResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.m; sourceTree = ""; }; - 0C2095D264506F6C53E5E27B74BCD841 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 0C20B6C2076551C65ACE4BD190E6370B /* 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 = ""; }; - 0C2F2A3AFEA0D5D4CE3E81BE0F27E0E0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs7/internal.h; sourceTree = ""; }; - 0C4D1B3173B704482EA24D9558A28E8B /* 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 = ""; }; - 0C5D2D56A0F193DFEAD2D94346235DC2 /* FIRAuthGlobalWorkQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthGlobalWorkQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h; sourceTree = ""; }; - 0C64F12EEE81876D57916AC68BD7D1FA /* 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 = ""; }; - 0C672BF1FEBDD57C63F7CDC1885E5132 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; - 0C7C8DE9C3148DC7DC53B3FC43D7D64B /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; - 0C8A983BD476638DE1C216B609CD70D1 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.c"; sourceTree = ""; }; - 0C99074E38B6B0820675CB8246AEA784 /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; - 0C9DEA443590B430A4E0BA9F624F705B /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; - 0CA261CBF415CADD6F1C0A78F1D53B0E /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; - 0CBD774048CF5B1198B6641A7BD58BA6 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; - 0CBDFA6628F937717EC9AB0E3DF6D750 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - 0CC06ADACEB1AD6CC264389DC5E29D7A /* pcre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcre.h; path = third_party/re2/util/pcre.h; sourceTree = ""; }; - 0CC2DB07FA7217E9ABC8066A6BCC9DE7 /* 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 = ""; }; - 0CCC667FD79B757B4B75C1B064DCA254 /* pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pcre.cc; path = third_party/re2/util/pcre.cc; sourceTree = ""; }; - 0CE331B4A316B5158904BD0AF7046BD1 /* 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 = ""; }; - 0D0BF6EEBE006543AB748051BC0E4836 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; - 0D148EE2BDFF3B88B93A22DB6FC96920 /* 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 = ""; }; - 0D1D9B7FF9B113BD0D08F70177D4C792 /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; - 0D1F365029B9CABA2F3F6E843CE8148A /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; - 0D1FF92140BB1CB967A19E2081E537C2 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; - 0D4CFE1B1B76A3CA107FA023E08C0AD3 /* GTMSessionFetcher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GTMSessionFetcher.modulemap; sourceTree = ""; }; - 0D6973E9FD4602D0EB5B6674ED6FC4A1 /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; - 0D705894742B7AECE42C642F46A004D0 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; - 0D73C62F74C60A0038816BE380CCFB1C /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; - 0D7A711902FAFD58B0D51DE512C7F0D9 /* endpoint.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c"; sourceTree = ""; }; - 0D919EFA463CBC77F2DFA8AE1343A8D2 /* 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 = ""; }; - 0D979F92BDF244F13B3F04D4D97CEDC4 /* 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 = ""; }; - 0DA0F50CCF3ED2684A872EC348D3A902 /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; - 0DB4086DE19DF3D4B5EA8E42A0AE451D /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - 0DBCD24DC3549995F4AFF9F0732601CA /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = absl/base/port.h; sourceTree = ""; }; - 0DC4E75E5DDF106E57A9722F56804C51 /* 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 = ""; }; - 0DCB722C5580C3374611E817F413456F /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c"; sourceTree = ""; }; - 0DCEA46D88606CCB5D800F62EC370C36 /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = src/include/openssl/rsa.h; sourceTree = ""; }; - 0DE70EB1DB433C520CB28E01F35FB98F /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; - 0DEA7A9E2B2A73D4BC2A0E2670F1570F /* FIRMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion.m; sourceTree = ""; }; - 0DEF4D15E45040D73F213FCB8E3E80D1 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 0DF09409695F4FDF672633C9D5849BFE /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; - 0E0678F2283ACC9375BA35241FC9DA07 /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; - 0E23C7BB6473142E7DEC19539D93EE45 /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; - 0E41D4B5CEA53B9599AEAEF856A2193A /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; - 0E4A86F5754EB2CF5721F8EE31369243 /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = ""; }; - 0E52B729C93F31620E4F86CB92E33AFC /* FIRFacebookAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthProvider.m; sourceTree = ""; }; - 0E6E9F7FE8111771743D8A312B998CD2 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; - 0E93FFB691C4C2349B8A0794CA0D9F4C /* FIRAuthProtoStartMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.h; sourceTree = ""; }; - 0EC00C7BC8E5010AB1C694A593AEB2C8 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - 0EC397F569D7D2B5DF68B5054B7260C3 /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; - 0EF741DBBAF3D551A3DDC41183993E16 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 0F00A066CADA55FF51D7D626B01EB967 /* 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 = ""; }; - 0F181B431456C24E0CFCE7C42D099FCB /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; - 0F1C751E0CE7DED158C474DA45E6235C /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 0F71C1A9FAC37518FD3EDB1CDC02041A /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; - 0F73F97959AF9D69E929C6E5757BE61B /* 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 = ""; }; - 0F8B9887C1AD07620725764CEC688E60 /* 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 = ""; }; - 0FB52414EBBC4DA5816C50E7F604E478 /* uv-data-getter-setters.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "uv-data-getter-setters.c"; path = "src/uv-data-getter-setters.c"; sourceTree = ""; }; - 0FE2327D3ABB7E533C6F89E6F421DC8D /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; - 1016B6533B6334EFBB41E2B0CE9C6394 /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; - 10214F472CD8AC6AEF85EFE63A53ADAA /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = ""; }; - 103D92F53A7D5B6EEFCB5EC837F89384 /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; - 103FEFFB2EC36F91DEB028C07461AC3C /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; - 1049A0D6E69B70BEC0AFA43348A93D7B /* FIREmailLinkSignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.h; sourceTree = ""; }; - 10545D77D9C1A01F70E4CF99E617B359 /* FIRGitHubAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.h; sourceTree = ""; }; - 105F6F2140CC8863CCF1D3A3E2F88F44 /* 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 = ""; }; - 10641A04E2D53ADED2BF610738EF0077 /* 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 = ""; }; - 1089C2A3EEDC66C119FFFEFE90A42246 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; - 108BB5CD4241C0B32A859E2013DB7D69 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - 10A7F346BF20586EC4872FBDE4276041 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; - 10AF5FCFDDD0356D5800BBAD7AEE4A7F /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; - 10BD02C45CEC656C881CDDFD5DDBAA2E /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - 10E00607DDE6722CFFD71796198FD0C1 /* layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = layout.h; path = absl/container/internal/layout.h; sourceTree = ""; }; - 10FEF88193B0994E2CA1AAEBBDA1E5BE /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; - 11051F2C2550E6A52CB1022EE4E6A73D /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; - 11182830AC95751FBC2D7BAB97A3C855 /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; - 111E5827F6D4C420280AFC436891B7C8 /* bind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind.h; path = absl/strings/internal/str_format/bind.h; sourceTree = ""; }; - 1139487F571F09B49842A7C5D226CF35 /* 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 = ""; }; - 113E06EC08373C0D0F5E4A4199783EA7 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; - 1140BCB2FCA2D020C4A7274336D89450 /* 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 = ""; }; - 11711EFED4ECA4494FD187B235B8CED2 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 117D757718A4B70AB2CC66799941DE34 /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver.cc; path = src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; - 11AF86F9EF33BD7DF6343A3B802DCB6A /* FIRSetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.h; sourceTree = ""; }; - 11D3F44C7D05DC20BBFDA01D021730AD /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; - 11D542BDE4D613A4E0F0C144F1E103AD /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = src/include/openssl/ossl_typ.h; sourceTree = ""; }; - 11F203843CE6C7F85506A846373E8668 /* 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 = ""; }; - 1201AC5472C2B4881F5AC493870EB983 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - 1205F2889A96427D02569CA6D5C6EBBC /* pid_controller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pid_controller.cc; path = src/core/lib/transport/pid_controller.cc; sourceTree = ""; }; - 120ABBD46E407F53EDDB9B34A20925BB /* FIROAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h; sourceTree = ""; }; - 120F321E499139142877333EE282EFA8 /* duration.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upb.c; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.c"; sourceTree = ""; }; - 12135DF65E1F0C38D520F5E15E5F19D4 /* beta_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = beta_distribution.h; path = absl/random/beta_distribution.h; sourceTree = ""; }; - 122B00E616010981938DF57113539D0F /* str_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join.h; path = absl/strings/str_join.h; sourceTree = ""; }; - 12429A113E4A88203438C07F04B7E0CE /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; - 1245C30E3BBB5BA0EBD6EEF7E7995ADA /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 1245EA7C4914BC48F3409224DF7FF30F /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; - 125E7C9EE2431EDDF575C7D0014726E5 /* hide_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hide_ptr.h; path = absl/base/internal/hide_ptr.h; sourceTree = ""; }; - 128BC5B34F91B957F31D73633B525055 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/ec_extra/internal.h; sourceTree = ""; }; - 129BAE49CC1DFD58DA05B51BD7686FCB /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; - 129DD4B06CDBCBED6594DD40D9AF5C06 /* testutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testutil.h; path = util/testutil.h; sourceTree = ""; }; - 12E4771F2C7E5533F2EB5C0B2B1BE64B /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/impl/codegen/sync_stream.h; sourceTree = ""; }; - 12F4B140B7C4D81DC3382CF6BA78EA92 /* pcy_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_lib.c; path = src/crypto/x509v3/pcy_lib.c; sourceTree = ""; }; - 1305C0B1E6A416895C6478B37E56FEA2 /* malloc_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = malloc_counter.h; path = third_party/re2/util/malloc_counter.h; sourceTree = ""; }; - 131FF3949C22D0E3E07D35ACAC8B2A95 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; - 13274DA87457F27BAA718528E39BE269 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - 13382D730A85BD6B46B67A89B976C2DB /* FIRSignInWithGameCenterRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.m; sourceTree = ""; }; - 1347E56BC088529A1E10AB3717C8D528 /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; - 1360D9522A38AFAB3B1B9BC5E8F4E907 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; - 13718E78D781CAC908AD69A4AB91F365 /* binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder.h; path = src/core/ext/transport/binder/wire_format/binder.h; sourceTree = ""; }; - 137F0BDD0FBCC30B59A95FBC6AAD5190 /* 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 = ""; }; - 1380CA1378FD02FCA99D6BD6F8090838 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; - 1398368D2FCC28ACF4105DAE1E07AD10 /* 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 = ""; }; - 139DD96B689C090DA3A1D2413E0C3867 /* thd_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd_id.h; path = include/grpc/support/thd_id.h; sourceTree = ""; }; - 13B72E44E24DD163410789E57AD9C4CE /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = third_party/re2/util/util.h; sourceTree = ""; }; - 13B7D7297C71BB30F9F2F238C429AB7F /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - 13CB3D02B8DAA0AF8C9CD37D36DA7E73 /* a_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_enum.c; path = src/crypto/asn1/a_enum.c; sourceTree = ""; }; - 13D5B46034460DA584B40760F42C4DAA /* direct_mmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = direct_mmap.h; path = absl/base/internal/direct_mmap.h; sourceTree = ""; }; - 13D8F5B5DC6F45DA97BDDE979B842BBF /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb.c; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.c"; sourceTree = ""; }; - 13EA44A2BB6451D6C319F7A782688203 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 13EB72C9B72C5613092F38C7C7222FF2 /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = options.cc; path = util/options.cc; sourceTree = ""; }; - 13F35B7C63EC49466E0CB66EC7EAF51C /* 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 = ""; }; - 1439354E8BD02F0DCBF6F1E3843F824F /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - 1441803C9A9B4E9C8B17DFA2EE420B4D /* FIRVerifyClientRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.h; sourceTree = ""; }; - 14551A96E7B02E8A89F4E0A37FE0DC54 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/support/atm_windows.h; sourceTree = ""; }; - 146753AD1D969149BF2CBEC9CE315452 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - 146BB52D40F58BF18FD4E0C931AF55D0 /* FIRAuthBackend+MultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAuthBackend+MultiFactor.h"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"; sourceTree = ""; }; + 0710B7069F765DF8F52BCCA73398A9EA /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; + 072D1AB381FBB39A6A8037063331AD10 /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; + 075034EF4575143C83D2DC2385883C42 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; + 075E6496AD3ED2FDA07353D220C39B82 /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; + 0761DA0584D292762B1C9B221B77E850 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; + 0773CA613BEEE144C6B56FA7A7A4F6A9 /* 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 = ""; }; + 077C7B49D7C3D3B7F58E511F2A15C8FA /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/support/method_handler.h; sourceTree = ""; }; + 07A1CF47194A5D7FD4CECFDF9DC2D7FA /* string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c"; sourceTree = ""; }; + 07B22FB88D07228E17B62130C422CC26 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; + 07BD01F84009288BECF85674D22D6050 /* 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 = ""; }; + 07E0092795BD8E928F460DB840A8F13C /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/hash.h; sourceTree = ""; }; + 07EED25C4AD60E02DD317B24DCA55C35 /* srds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = srds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c"; sourceTree = ""; }; + 07F0289768A955BB891AEB439771BF16 /* 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 = ""; }; + 080672C3CDB0A09966240F2293768AEC /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; + 080E8AEE10387A60A13F909676EB2D01 /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; + 0826AD4D55B465E7EF0F9D8A5702EB4A /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = absl/strings/internal/utf8.h; sourceTree = ""; }; + 084DE8F2876486094F9CAE017C66B9B2 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/thread_annotations.h; sourceTree = ""; }; + 0855FCABC5CC29BF405ED80CA5914841 /* collection_entry.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_entry.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c"; sourceTree = ""; }; + 0887F377419852A856F156B9B0AE94EF /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; + 08A061BE510424EAD58EE1D515F81219 /* FIRVerifyCustomTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.h; sourceTree = ""; }; + 08A90E8EA63519502C99AF43F65E1EC9 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = include/grpc/support/cpu.h; sourceTree = ""; }; + 08BDB61916906ECB1F57C6BAC216422D /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; + 08D8F550974F11AF5EABF9D96ED3AED9 /* 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 = ""; }; + 08EB99F26F7D35BE29E373EA799789BA /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; + 092457B81476DBBD3C716DE7074940D4 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; + 09553541E60F0BE59E0E76738074EB32 /* string_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_windows.cc; path = src/core/lib/gpr/string_windows.cc; sourceTree = ""; }; + 096A4577C777108A77FCC83BFD800096 /* 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 = ""; }; + 09984D5C11EC37361F717D7AA935EB30 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; + 099A94D98F7B32784E2D8FDC5219157F /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; + 09A3558FFB8CF545CCB09A6AE8BD0467 /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; + 09B1BE6DE39B375CA74D5E55F3B24694 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; + 09B6666EC9A0C08622EA201A0E08F5E1 /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = weighted_target.cc; path = src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc; sourceTree = ""; }; + 09B7B69AA8DAAECBDDC6C1BC650832EE /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; + 09CA805890B9FB97530A75769790659A /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; + 09D7FD35F673C6E5DD89F5E884D72F08 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; + 09E22F5BBA2821892FAE4BA5F29673E5 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; + 09F5F49D53B9BB3DC563AC80A2EFAB1B /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_resolver.cc; path = src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc; sourceTree = ""; }; + 09F8F64D8949332C56A38E3F1FE2E302 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; + 09FD99D95491898583FF1FE210975D1B /* 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 = ""; }; + 0A19B43A8EEFC3CDC8ECB094A7374160 /* 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 = ""; }; + 0A1BA2040A34A82E9DCC29026731C2F3 /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; + 0A1DF3AFB51F6B4EE74955460554113B /* rls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rls.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c"; sourceTree = ""; }; + 0A1F9F41FD89B3832697BE0FF12833CA /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; + 0A2321910D7457C35B1D8ADE1292954C /* algorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = algorithm.h; path = absl/algorithm/algorithm.h; sourceTree = ""; }; + 0A238F9B7149289DAE6487F74B99A89C /* pcy_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_lib.c; path = src/crypto/x509v3/pcy_lib.c; sourceTree = ""; }; + 0A3370A34A8A42C350A696C7C66D7534 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_channel_arg_filter.cc; path = src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; + 0A41F2FB8125DE50F62D84AB15E5D9D5 /* leveldb_overlay_migration_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_overlay_migration_manager.cc; path = Firestore/core/src/local/leveldb_overlay_migration_manager.cc; sourceTree = ""; }; + 0A49E815324E7A045D0A234B8AC5F6B0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/cipher/internal.h; sourceTree = ""; }; + 0A6B81FFECACC796545E147BE723E4C5 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; + 0A6BECB27E7E3C78D262FAFC88810168 /* grpc_alts_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc; sourceTree = ""; }; + 0A6C043C324359451D4A4E6C0402372F /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; + 0A9F46A999C47653013D3AD854352507 /* leveldb-library */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "leveldb-library"; path = leveldb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0AA469C5A2390D89F888254BE32C63D8 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; + 0AAEA4B59D6A4A5D3AF14E3189117991 /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; + 0AB166A86A15C9A6168BA580967CF507 /* event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine.h; path = include/grpc/event_engine/event_engine.h; sourceTree = ""; }; + 0ABA1EF90595AE460B7F37B0ED35B9D5 /* BoringSSL-GRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-prefix.pch"; sourceTree = ""; }; + 0AD2DBB335FDB80A89F6676079F6CAF7 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; + 0AD4C25D111EBCD7A285BA534D7114AD /* chttp2_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_plugin.cc; path = src/core/ext/transport/chttp2/transport/chttp2_plugin.cc; sourceTree = ""; }; + 0ADE62479BF20A50F816DFECC3C376B3 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = ""; }; + 0AE222D90681D945A7875E9256C6E5A0 /* FIRUserMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserMetadata.h; sourceTree = ""; }; + 0AFAA027FDB8BA806843BB53461DD745 /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; + 0B1041ED09916BD4F1266BC9E45EFC2D /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_credentials.cc; path = src/core/lib/security/credentials/xds/xds_credentials.cc; sourceTree = ""; }; + 0B205205CDE45E431788D7A0A12CC39A /* strip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strip.h; path = absl/strings/strip.h; sourceTree = ""; }; + 0B29BA9383B5C37A5AF9197862D8ECE2 /* remote_objc_bridge.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_objc_bridge.cc; path = Firestore/core/src/remote/remote_objc_bridge.cc; sourceTree = ""; }; + 0B38BF9C1AABD653720CB3B55AEEDCF9 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/support/interceptor.h; sourceTree = ""; }; + 0B407406A297E5821D45097AA84D7367 /* flow_control.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = flow_control.cc; path = src/core/ext/transport/chttp2/transport/flow_control.cc; sourceTree = ""; }; + 0B52BADE309AAFDD6B7278A1DE1A4B87 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; + 0B848B19DE6E79CA2D1FDE58629B177B /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h; sourceTree = ""; }; + 0B943E9756E367B7096BDBB2C5F8B918 /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; + 0B982740FEDE20A5B630B710AECD2054 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; + 0BAD236D539E6BF688941098C07304E0 /* dl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dl.c; path = src/unix/dl.c; sourceTree = ""; }; + 0BB8D97F53536E0D5DEDF06E13062450 /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; + 0BCB60D5B114261EC492AA2D3F7D66E3 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; + 0C0D0FE37BEF51F703EBA8FD1648EFC2 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; + 0C1EAE9B99F5A697F72267446E4519FF /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; + 0C247CB8F9C91C722C551A75D2C643B8 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; + 0C4D9C624DCC8220873962FD2728DA19 /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; + 0C61CFB780920F12A971FB68C2561F66 /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; + 0C620150225E9E4585B1D60E98B2C14E /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = include/grpcpp/resource_quota.h; sourceTree = ""; }; + 0C6AB9A51DF480FD3702398069F47BDC /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; + 0C73A9C5D77E0778594A42F25CF2C2E8 /* ndk_binder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ndk_binder.cc; path = src/core/ext/transport/binder/utils/ndk_binder.cc; sourceTree = ""; }; + 0C75096FD45589E24775540F5BEEBA02 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; + 0C7BE8002CA7F4FCAB0BBA39430E5143 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rsa/internal.h; sourceTree = ""; }; + 0C8A57C3A80422C2E82B0DBA5C51B833 /* 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 = ""; }; + 0CB6326033EA1B1A7C15ED9360D8311F /* str_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_format.h; path = absl/strings/str_format.h; sourceTree = ""; }; + 0CFE2AFB6AE7C484E3568EEB3E713F85 /* typed_struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = typed_struct.upb.c; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c"; sourceTree = ""; }; + 0D02BFBCD5222F59690D9D4DC27E5308 /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; + 0D2AD8116D335BB0A74097EB509FA2C0 /* seed_gen_exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_gen_exception.cc; path = absl/random/seed_gen_exception.cc; sourceTree = ""; }; + 0D42CF64B96672A9F47053793C26482B /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; + 0D59B4B3ECABF4081057E07F604736D6 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; + 0D59D30EE8FEC9F2B562D40BFB1A8E90 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; + 0D642A4424EE091D2DD1246FEE90D046 /* target.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/target.nanopb.cc; sourceTree = ""; }; + 0D81023203E4EE2DA52F4796A0F5A9BB /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; + 0D83085055F60CA17755EDF90A5110E6 /* FIRAuthProtoMFAEnrollment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoMFAEnrollment.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.h; sourceTree = ""; }; + 0D92D6733C37F35C91FECE17257F594B /* 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 = ""; }; + 0D96795D68F536E24CA907C374079640 /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; + 0DA82D8D13A4103C703962C9CFAEDFB8 /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; + 0DAAEB170E49423D012E3A313531F96A /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; + 0DB1513C2F7F8453BD3E9AED62A6A0D6 /* randen_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_traits.h; path = absl/random/internal/randen_traits.h; sourceTree = ""; }; + 0DBB98ED72932F3B131F2BC52EF61DDD /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; + 0DD294B92ECD517E655FB0A17B672024 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = port/port.h; sourceTree = ""; }; + 0DD6FB5BB8D62AF84A694AF6B04B260C /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; + 0DF5884D27AC29DA27D743A63C7245D1 /* identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = identity.h; path = absl/base/internal/identity.h; sourceTree = ""; }; + 0E2333760FD6DD6D07C333E847DC7FA4 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; + 0E295FDBD10E3E6347AA7DA2B1A2C720 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; + 0E3809946146EBFFC1D3D9F81254F8D6 /* resolve_address_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_custom.cc; path = src/core/lib/iomgr/resolve_address_custom.cc; sourceTree = ""; }; + 0E43E0640447A49184F89B50011ED238 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; + 0E67C8FDD242BE3A0B13CEFFFCD3B17A /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; + 0E7066B36086A204BAFF51CBF0601B97 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; + 0E74A9069C4282D4DE7ACB35D340663E /* grpc_tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_verifier.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc; sourceTree = ""; }; + 0E761B9427A79B15C7FE15E0B479590A /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; + 0E91AEC2BC41558828140FFDAC5544AE /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; + 0E9B562BC1288596A3E5062F05CE9CE6 /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; + 0EA23B100238C72A77EB89D40FDA2A18 /* json_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_token.cc; path = src/core/lib/security/credentials/jwt/json_token.cc; sourceTree = ""; }; + 0EA362445C79AEA86F016FB5DB50A1A9 /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; + 0EA828250FD680F9A84D1970911EF0D8 /* hpack_parser_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_parser_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.cc; sourceTree = ""; }; + 0EC2A4F4BFC8B81D8918378B0277FBA5 /* 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 = ""; }; + 0ED117DC8546DEBC99CB7BF17735C451 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; + 0EE1E7BD4756928D0F851341E7E4A06E /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; + 0EEEF532676816FF3CCEE669CDA0A179 /* 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 = ""; }; + 0F19BEFDCA620B0A44BB79C7FC8C78D7 /* 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 = ""; }; + 0F28D00F3186C8C08E29AD6644B287C1 /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; + 0F2F6ED8B55E72E56F11BDB00A2752F0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 0F4ED610D209A731FECDCA1F755C13AA /* 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 = ""; }; + 0F7140E3A88B3ACD475206E7CD166F14 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 0F75956A9C0ABD6732DFB75A97D98D80 /* string_util_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_util_windows.cc; path = src/core/lib/gpr/string_util_windows.cc; sourceTree = ""; }; + 0F76F045B57917451E4B7CBA72C02390 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 0F814C42A3EC2530D6D418DBBDD6995F /* FIRAuthDataResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthDataResult.h; sourceTree = ""; }; + 0F81AD0386B5067773E2C30B36570E46 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; + 0FB8F0DD531BBB892CD003D00247D067 /* tcp_server_utils_posix_noifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_noifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc; sourceTree = ""; }; + 0FBD575224EFDFEB6B5910C74FCE280B /* chttp2_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_connector.cc; path = src/core/ext/transport/chttp2/client/chttp2_connector.cc; sourceTree = ""; }; + 0FD5CCABE31125C9DB07B78E72C489B3 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; + 0FFDD1633DA780D2E1B55E1818FEBA88 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; + 1000DC36A6C7933EABF1DB7E0C95C009 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; + 1002C20A8475BD0EB332200B1073AF05 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; + 100FE90A8B72D75B1436A17BBD682595 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; + 101194CD2C8DE102E3A0F1B9CE9719F3 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; sourceTree = ""; }; + 1012E2A551E352D40D82BE29DFC29234 /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; + 1023A84DCEDD89D1D36F01D451EFB345 /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; + 102F12FBFF72CECAFB0CA4B9E9A41FC4 /* tls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c"; sourceTree = ""; }; + 1041B58E8196CF0D0F0DC3EEBEAD5054 /* 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 = ""; }; + 10622B48EC6FDECF4980D35B60C0B649 /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; + 106C962D55E5E9FD365F1E3420B3E65A /* fake_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_transport_security.cc; path = src/core/tsi/fake_transport_security.cc; sourceTree = ""; }; + 109B9E8DEF6E02099373D79A6B08F095 /* 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 = ""; }; + 10BCA44F44C44BE5FDEC11ECB7288C30 /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; + 10C635B39A61EDC24FA680F668742DD0 /* bitmap256.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitmap256.h; path = third_party/re2/re2/bitmap256.h; sourceTree = ""; }; + 10C8359BFC350D204571F3FF56B69D7C /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; + 10E61A3C03FF41EECC9021B264B8291E /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; + 10E7846E306D2A82EB57ADE332A92B7B /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; + 10ED6BA4F1EA9C7ADEC40AF5BC4ED233 /* 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 = ""; }; + 112074D0FF06DD98C181DE2E969EC055 /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; + 112E00FCF89E2FD26358A05AE1219F84 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = src/include/openssl/cast.h; sourceTree = ""; }; + 11350B25D668B01D5F6C0AE072A85580 /* FIRSecureTokenService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenService.m; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.m; sourceTree = ""; }; + 114A93FEF606BDF65C40A3A219CCC60E /* gRPC-C++-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-C++-dummy.m"; sourceTree = ""; }; + 1160A49E3C6D7555FB189F4252876757 /* thd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thd_windows.cc; path = src/core/lib/gprpp/thd_windows.cc; sourceTree = ""; }; + 1161FC299CA118C5AB65FFB4373F2634 /* GoogleDataTransport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleDataTransport-umbrella.h"; sourceTree = ""; }; + 1178BD3B13A0B523583E2A649DE2234A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/internal.h; sourceTree = ""; }; + 1184778F3E53194194C498FA283B029B /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = src/include/openssl/aes.h; sourceTree = ""; }; + 118F8264C836D074537B3930975AD221 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; + 11AA13F1B294918C6B0559A6AEAA4072 /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; + 1210CE283772A28E7CF653F032DE1200 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; + 125CE49479A3847C09BBCF5A579D0D39 /* xds_http_rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_rbac_filter.cc; path = src/core/ext/xds/xds_http_rbac_filter.cc; sourceTree = ""; }; + 1265EC683547DE07CE4B218B4E47EB0B /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; + 1268E0F9DC9478A9A439BD4FEEF76881 /* gethostname_host_name_max.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_host_name_max.cc; path = src/core/lib/iomgr/gethostname_host_name_max.cc; sourceTree = ""; }; + 126A51B36C106D311BBA22FF9600DF6D /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; + 126AF4997B7141D09E52313EE3366F74 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/support/sync.h; sourceTree = ""; }; + 126E8649D741165D87C9D87A62104E7D /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; + 12788084A63E94EB146B6FB49F5DBECD /* secure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_server_credentials.cc; path = src/cpp/server/secure_server_credentials.cc; sourceTree = ""; }; + 129FAD63C94C83A999DE0048921AC99B /* slice_intern.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_intern.cc; path = src/core/lib/slice/slice_intern.cc; sourceTree = ""; }; + 12B44D813521C1B3E58ABCA17B2FC763 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/tls/internal.h; sourceTree = ""; }; + 12BE2B743BE4A30C2CC5716431158137 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/grpc_library.h; sourceTree = ""; }; + 12C07E7B43D8D4BBC6E37C9D5D10DD46 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upb.c; path = "src/core/ext/upb-generated/google/api/http.upb.c"; sourceTree = ""; }; + 12DF719AFB5C67913CD5F8E568B47A7C /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; + 12E08B96E1AC0086A2909DDA889B3E8D /* 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 = ""; }; + 130C5A824540F219BD15114C2D87982B /* 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 = ""; }; + 132F3CAC3F715125DFCFCC869B568597 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/impl/codegen/byte_buffer.h; sourceTree = ""; }; + 133C6133923FD69428B12B73DD9D55C9 /* cord_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_internal.h; path = absl/strings/internal/cord_internal.h; sourceTree = ""; }; + 133FB577F3DC9FF29E6F7CDF9D9795DC /* stacktrace_x86-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_x86-inl.inc"; path = "absl/debugging/internal/stacktrace_x86-inl.inc"; sourceTree = ""; }; + 1351E34079EC47D7A4D9BFF4F25E7308 /* ssl_session_boringssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_boringssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc; sourceTree = ""; }; + 135B8B0CA70D96984E3DC15DFB332A8D /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; + 135BAC057B53B5E870C3649C9664C3EC /* fork_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork_detect.h; path = src/crypto/fipsmodule/rand/fork_detect.h; sourceTree = ""; }; + 13743C53A4F9FB6AC87CCBA6AF9C035C /* stacktrace_generic-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_generic-inl.inc"; path = "absl/debugging/internal/stacktrace_generic-inl.inc"; sourceTree = ""; }; + 1390E11AC6DACF63251110EC2EC85541 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_channelz.cc; path = src/core/ext/filters/client_channel/client_channel_channelz.cc; sourceTree = ""; }; + 13A4903B887D28A4F360F77F8D02227E /* 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 = ""; }; + 13A79CCE29A52B6D4FD7E7D5C5318DDD /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; + 13A81DECDB45B0513452F97881D5B2C2 /* 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 = ""; }; + 13A8A9C3A3D99493D43FE7E3BE6D9B68 /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; + 13D2BA15C922333B63ED542D87C78663 /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; + 14084DFEF25675C6B4B7269904E8C7A7 /* byte_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream.cc; path = src/core/lib/transport/byte_stream.cc; sourceTree = ""; }; + 140C13A72EBDE3E5621FE3B0134B8FF0 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; + 142446914E7013E7EC0C220E21F38F64 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/asn1/internal.h; sourceTree = ""; }; + 142BAC3E00F92DDA8AC50C4894D1CEBC /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = include/grpc/support/alloc.h; sourceTree = ""; }; + 1430D03B25D104A42F82CE76AD517CEC /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = util/random.h; sourceTree = ""; }; + 143B53D7DE25B883F9C47A16B13588FD /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; + 14466559014F5CA298ADCB555E679C24 /* checker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checker.h; path = absl/strings/internal/str_format/checker.h; sourceTree = ""; }; + 145004F69577554E27FFC4C38782A33E /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; + 145D6E11DA81A21E9A97F366CF876104 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c"; sourceTree = ""; }; + 146FD369F9BED99CA09DCB1567E03720 /* pcy_map.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_map.c; path = src/crypto/x509v3/pcy_map.c; sourceTree = ""; }; + 1482574A051A389DB54596A9609F0B0D /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; + 148CB503D506579430970C22995F370B /* secret.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = secret.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c"; sourceTree = ""; }; 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreInternal; path = FirebaseCoreInternal.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 149F71522D39AD65C4611C373A772AE7 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/curve25519/internal.h; sourceTree = ""; }; - 14AF2DEDAF2B5F381E2B74C997BBD786 /* pcy_node.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_node.c; path = src/crypto/x509v3/pcy_node.c; sourceTree = ""; }; - 14BB0A90551130C509C2157B8D216850 /* 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 = ""; }; - 14E9EE3053D8D4EC207AB9CCB6DD5777 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 14FB3AFD1D96EB8865F674ED16F8F9BC /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.c"; sourceTree = ""; }; - 14FB791CFD1D50E67A6DEBBA1157911D /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cds.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/cds.cc; sourceTree = ""; }; - 150445BDBA63DA02F8A9D99400A7FA80 /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; - 151D3117B5252D9812C5A2E2ECC77483 /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; - 15202DDC387AB84537DCCCEB03246778 /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; - 152C94B565CDFA1CA88FB0B2EA1A4669 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; - 1531EAFD9B94BF49DE0811872AE81E53 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = absl/random/internal/traits.h; sourceTree = ""; }; - 15321B846B04CB1F6A881383F0DB88B1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/bn/internal.h; sourceTree = ""; }; - 15367EA7C9BEA1146813DE3A0264036D /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; - 153B0A74C9969A6DC4C81676C52EFBEA /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; - 153C2CA41EDAE13B8C59C9858FAAACA2 /* endpoint_pair_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_event_engine.cc; path = src/core/lib/iomgr/endpoint_pair_event_engine.cc; sourceTree = ""; }; - 15463D2206CE9BDF45FF9F3C957A5952 /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; - 1579B526F8670F3007B2CBF0B82CB2C4 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c"; sourceTree = ""; }; - 158272B4DFAE0E8688667BC5564BD303 /* GDTCCTUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploadOperation.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m; sourceTree = ""; }; - 1599917140E7483D292ACA488797E8F1 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; - 1599A6F8C155019451146520A7A94AB9 /* 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 = ""; }; - 15BB6E7E26F87757A2EB4F37788D9228 /* 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 = ""; }; - 15BF773627AFF8CA45BA4352D0262F77 /* 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; }; - 15D0A302434364C99AF37CD09B4CC84E /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/support/interceptor.h; sourceTree = ""; }; - 160FF1B64A68C3D8B86C39F366D491E0 /* 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 = ""; }; - 162E2896B50B3D18BC8864E30E9E6311 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; - 164B93CF4BF89AA050D6CF1436CC31F1 /* p256-x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p256-x86_64.c"; path = "src/crypto/fipsmodule/ec/p256-x86_64.c"; sourceTree = ""; }; - 164E08AB20A64EFAA7F2A8B2D5DEE2B6 /* cds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c"; sourceTree = ""; }; - 164E3F644881E2C2242E7291223033B4 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; - 165AF293299953E36888270D3420C4FF /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; - 165DD603E57F15999F1C1F665D769035 /* 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 = ""; }; - 167230493EAB5869464F695EFD915F34 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; - 16879689F72DC8AF3940C9F3C8B7CC01 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/impl/codegen/sync_abseil.h; sourceTree = ""; }; - 16A5313D7B313F88137F8A59086AAF1D /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; - 16A85F6C2100EF7345C885ACD1142D2B /* FIRGetProjectConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.m; sourceTree = ""; }; - 16BF8D2A37975F69B29D91B636352945 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/impl/codegen/client_context.h; sourceTree = ""; }; - 16C6CBCD7F5BAC1B71AB0B1087EB8B8C /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; - 16E16CC3956A82204A9FA94DCB43F459 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; - 16ED48FB8B8CFE8D24F33556B41EBFE9 /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; - 16ED6AC448078AE5BC8D36393271F233 /* stacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace.h; path = absl/debugging/stacktrace.h; sourceTree = ""; }; - 16EEE417B9EE9219567DCAE5CDAC7A6A /* generate_real.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generate_real.h; path = absl/random/internal/generate_real.h; sourceTree = ""; }; - 16F960930908E8DB8DBD6B435D9BEA20 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - 1703CCAA0723A71572E930CB0369F2A0 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; - 170F436A7AE394349E0529630C42DA91 /* server_chttp2_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_chttp2_posix.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc; sourceTree = ""; }; - 1718D18788DABDA40F35E9DBA31BC622 /* 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 = ""; }; - 171BA3B97CD6CB3ED48D6A2E0B877CFF /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; - 171F490AD49757C7C83F7B0E22ACB1AC /* charmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charmap.h; path = src/crypto/asn1/charmap.h; sourceTree = ""; }; - 173E5A4C450048B6C6C6B302691C1974 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; - 1758E1C18988D684BE111C96BDA7C639 /* 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 = ""; }; - 175C317BF8EFE3C4D8C373956A73D82B /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = absl/strings/internal/str_format/parser.h; sourceTree = ""; }; - 176D3E42413213895429CA7ABF70BE77 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; - 1791BD2D278381AD70DEDF0D429E8309 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 17B73653A6E77DBE5B4C4D0CAE6EFFD7 /* unicode_groups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_groups.h; path = third_party/re2/re2/unicode_groups.h; sourceTree = ""; }; - 17BCED408F6BD628CEEC4DA6BAD202B5 /* merger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merger.h; path = table/merger.h; sourceTree = ""; }; - 17C760A7FE09BDFDC990826F5DB964C9 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 17CE8D39CE1F05421B72E10D0F414CDA /* 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 = ""; }; - 17D6DB6DF4AA4B150207E77864495927 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; - 17E6A8E601C57AE36A52B3079F9DCA48 /* FIRAuthURLPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthURLPresenter.m; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.m; sourceTree = ""; }; - 17F11C58B1B9088856035B4F5B4CB2E9 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - 181B0BFD03F5CD3E793CA4720EA9BF49 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = util/random.h; sourceTree = ""; }; - 185ABA0DC179F9A6BCA461B114A1240C /* 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 = ""; }; - 186278B4B3E5C34D3C237CB0FBC9B477 /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; - 186841B5446847B2D2442BE32E6BFEE1 /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; - 18698A808976E119CF4B0AE4CD22F90E /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 186AB981471D537A21CF9D1312C54DF1 /* FIRStartMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.m; sourceTree = ""; }; - 189058C32983FBBDF09FD677C6F662ED /* casts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = casts.h; path = absl/base/casts.h; sourceTree = ""; }; - 18BE2E6F39B4A8181A5196C60C54BE48 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - 18BE6DD368D580B5F84D88AB5E966528 /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; - 18CE6C911AA09F7B71282A834834102B /* FIREmailAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailAuthProvider.m; sourceTree = ""; }; - 18D5C614881B5B957AC21C397F05C4A8 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/symbolize.h; sourceTree = ""; }; - 18F4037BAD085E86E22627E24B18A6EB /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/internal/symbolize.h; sourceTree = ""; }; - 18F4AB179872D100B381C405083401D3 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 18F8F6DB7AC44C59BF6198BA77DA9ABE /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; - 18FABB9F395C08BEAB2D3BB7826E8115 /* syntax.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c"; sourceTree = ""; }; - 190D8C358B73CFC381C6F594D00A22FE /* p256-x86_64-table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64-table.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64-table.h"; sourceTree = ""; }; - 190EFD6CB0B891E1ECD261122E6CAD43 /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; + 149990618120ACC66DAF53C0E2D490A9 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; + 14BE6CBA4A8FD41686C9217B067DBC1B /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; + 14C54013C2025C5A82ABD9741BCAAF57 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; + 15060E5D1AC87590BF1DB6D4711416EE /* completion_queue_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue_factory.cc; path = src/core/lib/surface/completion_queue_factory.cc; sourceTree = ""; }; + 151AC94D7046FCF14DE6DD223CBFBEC8 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/leveldb/slice.h; sourceTree = ""; }; + 151AE99B8D21F573846F6D33F9804E9A /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; + 151D45A82F00DF52927D877C7577CFF0 /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_resolver.cc; path = src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; + 1526622BBE214154302C8B3AA42F3B6B /* queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = queue.h; path = src/queue.h; sourceTree = ""; }; + 153C6D1E0F5FCCCA89FA9B69CE05F308 /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; + 154E416EF39A403550F51DA81A0B32B4 /* FIRFacebookAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.m; sourceTree = ""; }; + 1550D56B8F7D85FBA0010BC48F98C2A8 /* pcy_cache.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_cache.c; path = src/crypto/x509v3/pcy_cache.c; sourceTree = ""; }; + 155BCCC589828DAF3A42306AD6E122F4 /* FIRAuthWebUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.m; sourceTree = ""; }; + 157451DDBD3083BA47AEE89A30BF0885 /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; + 157EA21DB6DBBF871479254BF0D78322 /* 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 = ""; }; + 15800B0EE834E5EFEF6D530B72BF7C01 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; + 15807E1DAA45F1553ED3B84BBC14C2AC /* 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 = ""; }; + 158ADFD30912CFECEB65E075D3CC1331 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; + 15B22F4C4313428AEB70273A9E7B938C /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = priority.cc; path = src/core/ext/filters/client_channel/lb_policy/priority/priority.cc; sourceTree = ""; }; + 15B504B86E720B714D5846F2762C80CB /* aes_gcm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aes_gcm.cc; path = src/core/tsi/alts/crypt/aes_gcm.cc; sourceTree = ""; }; + 15BD7BAA25534572303E6D899BE95601 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; + 15BEF6F33285905E8B6B7FAAC027D0DE /* float_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = float_conversion.cc; path = absl/strings/internal/str_format/float_conversion.cc; sourceTree = ""; }; + 15C67F9B845B390F64CD30079E052E90 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; + 15C97B12DC98C9967D92ED8337225EF8 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; + 15DFA99A1E4FFDD6FCFA2ED7C18EADDC /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; + 15E87C8B481F6FB5098F9D59BAA96EF1 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; + 15EC71C45589ABE710DA61A71E7F579E /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; + 161B486AAD1402A066E0C1AB4FC3E7B7 /* credentials_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials_cc.cc; path = src/cpp/client/credentials_cc.cc; sourceTree = ""; }; + 162643445CD199EAFDE2348B6B554257 /* 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 = ""; }; + 162C6DE9E32FEC142567BDBE275447E7 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; + 163AFFD41610F56B608503DBF261541F /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; + 163E3499E12FCA661CA97B25342D1CA6 /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; + 16538F1A16138CF2E71237C09FFE3781 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; + 16694E90531F4C1FB23E4E41B6B2BDFC /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = ""; }; + 1676F29F6A7DD486CAF302C0EF81D31C /* digest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = digest.h; path = src/include/openssl/digest.h; sourceTree = ""; }; + 167FAD2AAFA32FA89D036C8304E17F90 /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; + 1692AF6574C7F2637F422BC2F560CF77 /* 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 = ""; }; + 16AE8D8956A420D88D796D777467A2ED /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; + 16B71C91BC7BBEEEDA06D84190BFA53F /* FIRTwitterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTwitterAuthProvider.h; sourceTree = ""; }; + 16C3263396AB3ED576CA61AE2F106151 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; + 16D1468D1C803576335FC81D21922C9E /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/include/openssl/cpu.h; sourceTree = ""; }; + 16D42AD6E8DB67B92CA80E83C97666C9 /* stat_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stat_windows.cc; path = src/core/lib/gprpp/stat_windows.cc; sourceTree = ""; }; + 16D81653BF9F1A673F7092B8DBC3C29E /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; + 16E90061D5013D1340BE1AB635ACB033 /* pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pcre.cc; path = third_party/re2/util/pcre.cc; sourceTree = ""; }; + 1712EC8FC1A70831A3DA4C080402A5D2 /* leveldb-library.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "leveldb-library.modulemap"; sourceTree = ""; }; + 171451AD179ABFADC8A281A419A41F47 /* 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 = ""; }; + 1718F57490A3DF6DA7EA83B04D801B1D /* 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 = ""; }; + 1719A2E866C59CB761E7391982451327 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; + 17578BC869E742BB357A3CD1575791C8 /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; + 1765026A58394FF23CBEACD729275440 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; + 17709BD907C756BB74CF73420D01051D /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/codegen/sync.h; sourceTree = ""; }; + 1797587926958D2B47137059BAD1A27B /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; + 17CB02934DE998D4F38A000C8A51D960 /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; + 17E4B98F3697B5B943A8154D389EB65B /* delocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delocate.h; path = src/crypto/fipsmodule/delocate.h; sourceTree = ""; }; + 17E8AC9CA616687A62A1D217EAAA0043 /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; + 17EF716DCA7F21EFDAC2921908E2183A /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; + 17F95E2F98990722F0B6E5C0F79D25E6 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; + 180E90F16A68DD95194B4D6F687F8608 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = third_party/re2/util/mutex.h; sourceTree = ""; }; + 18261E4BAE253A6F6BA582C2E392E430 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = signal.c; path = src/unix/signal.c; sourceTree = ""; }; + 182BE69470AD1E636F77EB00C6F36428 /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; + 1843FF071574EFE4EAFFDA8FB05EA639 /* node.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c"; sourceTree = ""; }; + 185A93251CA76BA6DE2EF2C4136B28C7 /* 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 = ""; }; + 187D6F1846D902EB1AE8F489E3B92712 /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; + 1883CE7E6B62BD54718E10BCD9B1D63F /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; + 18883C160D574315685EC1BB725FC8B3 /* rsaz_exp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsaz_exp.h; path = src/crypto/fipsmodule/bn/rsaz_exp.h; sourceTree = ""; }; + 189BE9F0F9C3B90FF2847B32DA15A742 /* FIRGameCenterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGameCenterAuthProvider.h; sourceTree = ""; }; + 18A6F6C2016365E0F69E9585A6AEEDDA /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; + 18B497E857E3157981E0F07BC7C3AA74 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; + 18BDA5949C07AA38F5C2A6BF4BCE6E07 /* check_gcp_environment_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_windows.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc; sourceTree = ""; }; + 18C9098F0AA10D81D38432D8F0D001AA /* FIRFinalizeMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.m; sourceTree = ""; }; + 18CF02946F92A54A130D3B825555C008 /* type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_traits.h; path = absl/meta/type_traits.h; sourceTree = ""; }; + 190029DD0627717EE904F54D51DA4EED /* darwin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = darwin.h; path = include/uv/darwin.h; sourceTree = ""; }; + 1904031C54D94AF4E4DC7064ECE58AFD /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; + 19076A2C5016C5EE3A67DBC27E848691 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; + 1910D0E26C5FC60D8078C35D348851F3 /* thread_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_quota.cc; path = src/core/lib/resource_quota/thread_quota.cc; sourceTree = ""; }; 1911113E0FBF13CFF9132E5FF7685228 /* gRPC-C++ */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "gRPC-C++"; path = grpcpp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 19171CACBB3AEE462136219C2747D233 /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; - 191F3DCAC92B9D78ABAC07E8A5CB5FE4 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 191F6F794486933834A6A920B289F428 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = util/logging.h; sourceTree = ""; }; - 19435DE142DE1C914D59812EBA19D370 /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; - 194A4A4DA190C984B4CB804B9DAA877E /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; - 194D9E902B5032863A3872DFA38643E3 /* re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = re2.h; path = third_party/re2/re2/re2.h; sourceTree = ""; }; - 1960D9067D5E66F3BF55125055D12786 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - 197F775A96CBA9FF12D0845FF18C85FB /* endpoint_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c"; sourceTree = ""; }; - 19986ED50EFBCBF49E698A69657018CE /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; - 19CCF5110D48217F6AC727BE7DF28C9F /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = ""; }; - 19DD9438E0B2C19378670964B332C600 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 19F7B1FAF653D85B0735308B88B25ABF /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; - 1A2A76BF99EF52992D62D0379718EEBB /* FirebaseCoreDiagnostics-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreDiagnostics-Info.plist"; sourceTree = ""; }; - 1A587CE9582409E4F9F8A18CE9770F81 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/impl/codegen/server_callback.h; sourceTree = ""; }; - 1A6247254B867F3497DF7993E91C7A6E /* 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 = ""; }; - 1A6F5673FB2F36B1D67FCF0357FDA396 /* 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 = ""; }; - 1A72859B749BE05E10B9A733448830F3 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; - 1A7B226E2860EE4A4C2039C99B8C1A95 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - 1A7D1E1EBC55384C3ABA51B3A3FAF830 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; - 1A806E667BE778D74815FCA1EC42366C /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; - 1A8884C73DFDFC7B06F018B8496D3382 /* FIRActionCodeSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRActionCodeSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRActionCodeSettings.h; sourceTree = ""; }; - 1A9428B14F787924821F5CF6A803F297 /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; - 1AA58BB75490621BF68FE5B54FF306C0 /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - 1AC602E91A9265BD8C92854BE65FBDAA /* 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 = ""; }; - 1ADAB5732A0C083A127FF5BFBE807394 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; - 1AE9E31F364445B9B1803AC0FEC39BE1 /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 1B03DD138741DE953FF1480D4440815A /* murmur_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = murmur_hash.cc; path = src/core/lib/gpr/murmur_hash.cc; sourceTree = ""; }; - 1B03E6D535171A4A06590C4066009F2A /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - 1B07088A0727FFC2066081EE02A8EC01 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; - 1B07DEBFBDA24D1D3F2412DF0F81656B /* 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 = ""; }; - 1B104BE6B4F17949616FD4316E82ED18 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; - 1B239BBF54E94500FE09868C3FA904EE /* workaround_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = workaround_list.h; path = include/grpc/support/workaround_list.h; sourceTree = ""; }; - 1B2C8D3AB989E23FB1D5E93C680949B8 /* 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 = ""; }; - 1B3B8A3B521B2D672486E73D221BB385 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rand/internal.h; sourceTree = ""; }; - 1B5D05458B59200757E195D54A4C21DC /* FIRAuthDefaultUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDefaultUIDelegate.h; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h; sourceTree = ""; }; - 1B6718A703B00EB14A073DCFB26491B3 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; - 1B6D451E9D28AD5B6DA5684BA3427B10 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/channel/handshaker_registry.h; sourceTree = ""; }; - 1B73A52E907D3A6B150B21444BBDF190 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; - 1B780970491C760B52EC07420DFDEAED /* 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 = ""; }; - 1B798171AF0544B2942D9ED30CF2C7F0 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = third_party/re2/util/logging.h; sourceTree = ""; }; - 1B86D006209A2606308FB2EFB58A22C2 /* FIROAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthProvider.m; sourceTree = ""; }; - 1B8757EE11A45905CD3C789A32FD30A4 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 1B901BC05BCB1833AAB7767F5E40870A /* 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 = ""; }; - 1BB0A3E584BEF0F85A6C342E357C3BD2 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - 1BB45A6DDE7C6F47DD54F7FEBE6E9432 /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; - 1BC6E86F97EB3A0A9244A0E6A3DBC8F6 /* 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 = ""; }; - 1BC93782BDCC796123A9A98BCDEB70D5 /* 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 = ""; }; - 1BCB8C2ABCAD8DA94966E4B5E657A0E3 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c"; sourceTree = ""; }; - 1BDAA77E4D4E97DF2602DA099F5A30B8 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - 1C18DC46EB1303F2504D3AC050477F96 /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; - 1C25D6A2BE37006EE65C81CC8D71A26A /* def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def.c; path = third_party/upb/upb/def.c; sourceTree = ""; }; - 1C31AC9CEE840BF57B39B2D7E2026AD0 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - 1C31F25B1C421AC8C5E1B06DAF5190D1 /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; - 1C37AB794E353DD50C86E9F36B53870B /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - 1C4396D42440B47D972C429C01F5B858 /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; - 1C4E3D4CC02E345C5BD0D5E5FD013CD9 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = src/include/openssl/aes.h; sourceTree = ""; }; - 1C55468D656DA68A0FEBB52B02448A1D /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - 1C8AD2D5CC93E773F479FD4EFAFA1E14 /* event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine.h; path = include/grpc/event_engine/event_engine.h; sourceTree = ""; }; - 1C8BE7FC0C0D8C3D4E18CDE3BEA5AFB0 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; - 1CA236348EC6D78D789EE5B5434CF7D1 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 1CA4882F4984BEFDC9C47DF4E1CBDCEC /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - 1CBC7A784CB8D56FD8185B16AEB663FA /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; - 1CD343035A33161B83D3029139BDC01E /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; - 1CE7A83080E48FDA75B4EACB16B8D1C3 /* 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 = ""; }; - 1CF483FE30166C6F9C092B78F1DA9732 /* 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 = ""; }; - 1D0BBA69D5C9396D599BF177EC2668EC /* FIRAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h; sourceTree = ""; }; - 1D152EEF95A1B79151411BC6D91C8806 /* 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 = ""; }; - 1D15FB3B94278C883D217A51158C8F9A /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; - 1D1B18550D6F805BD7DC779F15784C34 /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = google_c2p_resolver.cc; path = src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; - 1D1D46CAAD98F49D19E437BF915C6B4C /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; - 1D4084D4193630FD21926688D6848A62 /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = src/include/openssl/md4.h; sourceTree = ""; }; - 1D4811168E4A7A39B2BC5B601D65B9A4 /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; - 1D7F91ABBB27B2B6603C4A42C6795236 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; - 1DE593DAF8F85BA6D4B4D6CDCE8D272F /* text_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = text_encode.c; path = third_party/upb/upb/text_encode.c; sourceTree = ""; }; - 1DEADFADE249FA65EDDB9B9EC3554ABD /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/codegen/channel_interface.h; sourceTree = ""; }; - 1DEBFE4A61DCBA5995E99136EBB60381 /* 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 = ""; }; - 1DEE616058B744730B0D59A55A36A813 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - 1DEF0FE1C57D52046F1679B62D82BBC9 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c"; sourceTree = ""; }; - 1E1076622A68901C6A2041768AD5D700 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; - 1E3D851D11D6B61DD65016960CECCCD0 /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; - 1E4E73ACFC00C2148A3968C43975F0CD /* gRPC-C++-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-C++-dummy.m"; sourceTree = ""; }; - 1E52F4B3EA787624F36715A80D0ED675 /* FIRStartMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.h; sourceTree = ""; }; - 1E5E8D5A2E417044141E107B704A2AFC /* fs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fs.c; path = src/unix/fs.c; sourceTree = ""; }; - 1E99D68AFE1BC93F0C2874C72C6E4A27 /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; - 1EB69F46ABEB0B6AD59483A6A99CE5E3 /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; - 1EC6CC8FEAC7C2A5DF91F812DA05106E /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; - 1EC6D0B2A934D5E1720D46892D868F10 /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; - 1EE6DBBF7386BDD194B872FB77EE4117 /* server_config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_config_selector.cc; path = src/core/ext/filters/server_config_selector/server_config_selector.cc; sourceTree = ""; }; - 1EF4D8A0006A4598309ADE1047F01D6F /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; - 1EFAF1562947C29EB39F3F46749E7784 /* FIRUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUser.h; sourceTree = ""; }; - 1EFFFF6D25138BB3DA03E950E6B4E009 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; - 1F0F1ED998B308C7D5AF20A3BA40232E /* GDTCOREndpoints_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h; sourceTree = ""; }; - 1F11D4EAFD46F076444507B6BBA949EE /* db_iter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_iter.h; path = db/db_iter.h; sourceTree = ""; }; - 1F2C525FAD66DEDFF64B68820F9343DE /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = include/leveldb/table.h; sourceTree = ""; }; - 1F3F5ABE756FFB0C88CEF34B25192312 /* nonsecure_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nonsecure_base.h; path = absl/random/internal/nonsecure_base.h; sourceTree = ""; }; - 1F4ED41D435D163928AFE2FFB17FF36C /* version_edit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_edit.h; path = db/version_edit.h; sourceTree = ""; }; - 1F66012B53DADA982C07E04F86E2CBD2 /* 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 = ""; }; - 1F6FC346A052F9DB23C8B2447686F55A /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ia5.c; path = src/crypto/x509v3/v3_ia5.c; sourceTree = ""; }; - 1FA7EAA56B657EF8C16E2544E895206D /* leveldb-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.debug.xcconfig"; sourceTree = ""; }; - 1FB05CFF0090FD6BD34C158303B2D784 /* BoringSSL-GRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-prefix.pch"; sourceTree = ""; }; - 1FF0051089C60C7E7165197BD3E5A3CA /* 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 = ""; }; - 1FFFF58013F964E342FC7BFA429875C7 /* abseil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.release.xcconfig; sourceTree = ""; }; - 201389BFE7A89264E2E4CA963DED02C8 /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; - 20223C01D2404ED06B88642B8B6A8511 /* 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 = ""; }; - 204A7CA3893FC0E86FC7AF6E7DC09EB3 /* 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 = ""; }; - 205B82C2AE7FB26CE9CC8CABF4CA119C /* str_cat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_cat.h; path = absl/strings/str_cat.h; sourceTree = ""; }; - 20655B60247AFCFFA77E32454DB87EAF /* scheduling_mode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scheduling_mode.h; path = absl/base/internal/scheduling_mode.h; sourceTree = ""; }; - 2073042D8FC0B43DEF5AA93400752DD5 /* aead.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aead.h; path = src/include/openssl/aead.h; sourceTree = ""; }; - 209719DEF4DC58AD4FBCD23512B758EC /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/internal/function_ref.h; sourceTree = ""; }; - 20A0CE992004A9426ABBC87C8A9F6DC1 /* randen_hwaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_hwaes.h; path = absl/random/internal/randen_hwaes.h; sourceTree = ""; }; - 20D46D7A1A5F88080AB5F54DE174971E /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - 20F372708514C259F15778DEF50A5681 /* ev_epollex_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_epollex_linux.cc; path = src/core/lib/iomgr/ev_epollex_linux.cc; sourceTree = ""; }; - 2119AC896E16E18FF0B4C0F4DD01D5C7 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; - 212E4E04C972A790054A66B6563CD0FF /* 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 = ""; }; - 2134484353B50F8458CA0604E5FD1AC0 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; - 213FAC7B282298253E9DE2551076FE8B /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = src/include/openssl/rand.h; sourceTree = ""; }; - 214B04D720FC7B254E359E8C73D2EA34 /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; - 214DEB6E60ED630E65F21ED4FF7FFF77 /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; - 21585847B6ACE5D8A04B10A86825DD22 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; - 21654CCB6253D06B1D4BDDF55434D26B /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; - 2167347ADE2E4333838FEEC3311BA218 /* 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 = ""; }; - 21685A6AAD2642B772F84140E578B0A8 /* 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 = ""; }; - 217C1B0490B92241DB967CA6CA418AD4 /* 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 = ""; }; - 218EE2F0CF0A30A862E8758F5857CE11 /* timestamp.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upb.c; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.c"; sourceTree = ""; }; - 21A5B9C7E61545B76E4EA0DF8218CB77 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - 21DCCDDEFBD25A66AC91F8FCF8ADDC6E /* 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 = ""; }; - 21E0824CE197191EA4748AED5AB0F409 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; - 21EB6379863FC4D3BA6BD07B6E5036BC /* 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 = ""; }; - 220976223099B776CFEE5AEF80B7B732 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; - 221B4E95EBE3473FCFEA9C187412B2DB /* FIRCreateAuthURIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.m; sourceTree = ""; }; - 221D8A8F051385514616E6519F967FCD /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; sourceTree = ""; }; - 222D5CD5D1F9F334073952EAF77795A3 /* 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 = ""; }; - 2239C4362DD148908BD031839107AB18 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = absl/base/internal/strerror.h; sourceTree = ""; }; - 223CBC3027704C73021CD6046B599261 /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; - 22539ED4ED6419590B656234F6A85E51 /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; - 22614C12534A0DA77B903B8EED70F18F /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; - 226D1191440EAC029F2D6D08503B2D0B /* FIRAuthWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebView.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.h; sourceTree = ""; }; - 2275BF8153B0D1D464CAE45994B5BD5B /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; - 22828E6A75C6D54E0FCE59C4261CCFEA /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; - 22A113D06AA76DBF4562F41B3781E9C2 /* GDTCCTUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploadOperation.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h; sourceTree = ""; }; - 22A246B9CD6287F1683AD66E6FE13A18 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; - 22A644ECF56754B4B4DF74E6A40ACAC5 /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resolver.cc; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc; sourceTree = ""; }; - 22AC2D28592341FF9F2FCB5D9E63E64E /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; - 22ACE164D2C00A15FE6817EE0DF044DC /* uniform_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_helper.h; path = absl/random/internal/uniform_helper.h; sourceTree = ""; }; - 22C4EE5E8A8FDDBD29545F1E50629978 /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; - 22C62FCFCF0BCD4614045187C1B27BFD /* 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 = ""; }; - 22D345E76B9E1F74CAB790D4F3760C79 /* 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 = ""; }; - 22E0EF64C357445231796C90CDDB2DC3 /* grpclb_channel_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_channel_secure.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc; sourceTree = ""; }; - 230853402A57B29BFE6552B7D2B51FCC /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/slice.h; sourceTree = ""; }; - 2310AD88DC074D5CA55FDF1C2208A771 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; - 2313BB422A91B3865C047C93A1C13F67 /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; - 231FE5ED1ECABA37FE98975101A24994 /* 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 = ""; }; - 232E972A47C285CFFEBE1576DDBCB1DD /* unix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix.h; path = include/uv/unix.h; sourceTree = ""; }; - 233028B39C6DBA8BBC89EDB37D2B0A41 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/codegen/rpc_method.h; sourceTree = ""; }; - 235CC43425366ED60206A650CBDD7AB7 /* 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 = ""; }; - 2362F1A093F5A0B02C13C48CFCA63057 /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; - 236FDF54EC7750B0F5EF5EEF15485592 /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; - 237003C6E93AE690EEAB407C47E3479D /* 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 = ""; }; - 23B1C5DB10E572DE6A04CD75C2B520C4 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c"; sourceTree = ""; }; - 23D7E87599070B56E740C1C2545B0E72 /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; - 23E70C2685EECF559FD8D1A5B98E6E42 /* 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 = ""; }; - 23EBE03537519CE6BB7C75F49EBA93C7 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - 23EEE0EE5AEC1D97BCB9966C6C910AD2 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/support/sync_windows.h; sourceTree = ""; }; - 23F444C749369E35D8C929DC01DD41D0 /* FIRAuthExceptionUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthExceptionUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h; sourceTree = ""; }; - 23FE49622F05665B444EB1EF40E26AB9 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; - 24032A9C5706531404A71BA4BB02939A /* filename.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filename.h; path = db/filename.h; sourceTree = ""; }; - 240A7D21E041DA464BC39040DA88FCF0 /* 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 = ""; }; - 2410EB361482A60F6EB96C7995A9D9A8 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; - 241985D60215FEF6DE94B3F95DE0AFEE /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; - 241F7BD662A57FAD921F7E51E7A17B80 /* 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 = ""; }; - 24261D04D1AAB92CF8F1244AAFA8313F /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; - 244335E45C8683CDD25A3A32BE814CC4 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - 2483FF59FA39CF3A44053E5C7C678D77 /* FIRTwitterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.m; sourceTree = ""; }; - 248A796EBE99A412DC59BE302B43CA0C /* 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 = ""; }; - 24ACF7FDBEFE569BE1788D2B3CC96992 /* grpc_ares_ev_driver_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc; sourceTree = ""; }; + 1919AF9EADD9D62F6BF5020A84129F75 /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; + 191D71414D48D06EFAA313CBAC1353D1 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; + 193F7ADDA156958CBF17C7CAC7B1FE6D /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; + 197FE6916163BD0C008EF8193DA5BDED /* 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 = ""; }; + 1982CD77FC83B105C24BBD999DABAB38 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; + 198C357C02FEF365AE8234C0CD73A2CC /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; + 198EA4AFB67D47868AABDD1A8301B6DB /* 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 = ""; }; + 199275C966E2ADC325321F0E28F9BD92 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; + 19AF83F9B66111EF9205C8264B70A2DB /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; + 19C8644BD153A68FAE898C7DADAC77E4 /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_epoll1_linux.cc; path = src/core/lib/iomgr/ev_epoll1_linux.cc; sourceTree = ""; }; + 19E58619A905A60545E7361436CEC842 /* platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = platform.h; path = absl/random/internal/platform.h; sourceTree = ""; }; + 1A0C1C88D18FF76E9CFD9C3C69A04DCB /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; + 1A1FF2DE0F03417B3F591DAB71618553 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; + 1A3AE5A31B5AEA6AB4C30BE04DA5F00A /* FIRAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h; sourceTree = ""; }; + 1A4BF35E68828D6975FFCC44A1B34A77 /* FIRAuthAppCredentialManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredentialManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.h; sourceTree = ""; }; + 1A6EC7CAFAA5C3A2DC6F364A8D59D3DD /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; + 1A704E907C2091CBC4CE460092EE6787 /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; + 1A92270940A15FEC6C6751BC8558C25A /* two_level_iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = two_level_iterator.h; path = table/two_level_iterator.h; sourceTree = ""; }; + 1A9520B5273367133F30CCE539AF606B /* resolver.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c"; sourceTree = ""; }; + 1AC1CE77C59F8F7806F4191395CB303D /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; + 1ACB154EBD66395F6831D480F5B7A350 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; + 1AD079B9A6103ACA3EB4CF51BFE0DBC7 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = absl/base/internal/strerror.h; sourceTree = ""; }; + 1AD3A4E4C659DADB746C8E6475CA7A32 /* FirebaseFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.debug.xcconfig; sourceTree = ""; }; + 1AD992FD31B6CA125DC126F00B89A373 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h; sourceTree = ""; }; + 1AF86C8D5EF20E9198FFB39960024140 /* 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 = ""; }; + 1AF8B08ABFF09681BA30041825072C29 /* refcount_lock.c */ = {isa = PBXFileReference; includeInIndex = 1; name = refcount_lock.c; path = src/crypto/refcount_lock.c; sourceTree = ""; }; + 1B0556DAB43405BD390C9C68D59C0421 /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; + 1B07EEA98F541CDF7351A3304EBB6947 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; + 1B16692F5DE3C0A73E926EBBB08409E5 /* 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 = ""; }; + 1B30D39911306059B5C85DD6C6767DF1 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; + 1B393CD861E3F68EA587AE99C2F8D512 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/impl/codegen/sync_custom.h; sourceTree = ""; }; + 1B51F9282D3B8773AD78B1301431BE7E /* idna.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idna.h; path = src/idna.h; sourceTree = ""; }; + 1B54E96D150A757A3AFD6758439BC347 /* transport_security_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_grpc.cc; path = src/core/tsi/transport_security_grpc.cc; sourceTree = ""; }; + 1B641524A57DEDE4FD658ADB4E6F40DC /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; + 1B685E3D71363DC21693DBF44033EAE9 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; + 1B6EA9CEC1EB01C0EBE79ACA724C8434 /* socket_utils_common_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_common_posix.cc; path = src/core/lib/iomgr/socket_utils_common_posix.cc; sourceTree = ""; }; + 1B70087CC033B6B7F50AD0D8C3BAEDD4 /* 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 = ""; }; + 1B72B34523D0070F5DDFC241D790198B /* memory_eager_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_eager_reference_delegate.cc; path = Firestore/core/src/local/memory_eager_reference_delegate.cc; sourceTree = ""; }; + 1B7D2CA49842CAF0F5C8A63B458418C0 /* iterator_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator_wrapper.h; path = table/iterator_wrapper.h; sourceTree = ""; }; + 1B8995363BFA50249B4FED9E5267CF36 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; + 1BB67BB72FC0674B036B79227EC5F482 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; + 1BCF6DEBBF75F2C1690709D0A24141D4 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + 1BD7AEAFC9279838D18F7EA69E9430FE /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; + 1BDFBFCFC84F2930C0291A23840C86FC /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; + 1BEA5CED217FE4E1D219573C4ACA749F /* FIRAuthURLPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthURLPresenter.h; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h; sourceTree = ""; }; + 1BEF7DBEB754B90E77033BF43382F05F /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; + 1BF4AF04F728BA8821EB2D1EC0F73469 /* 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; }; + 1C10F29B244D15ADC7FD05A5DEDEABE0 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; + 1C2750C567685AE956C86EF8B8EE8939 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; + 1C353511EEB33ACEEB6EFDE44335FCE7 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; + 1C3ABEB86788C9BC4944430649D6CE67 /* FIRUserMetadata_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata_Internal.h; path = FirebaseAuth/Sources/User/FIRUserMetadata_Internal.h; sourceTree = ""; }; + 1C41A01919C55C0302768A0F09466A44 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; + 1C49CDCC29CB44D4D0A973F339DF9E99 /* common.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = common.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.cc; sourceTree = ""; }; + 1C4B82517BFE2546A857A801C65C8DB2 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; + 1C959DE385873B396C1158318D2BB186 /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_cpols.c; path = src/crypto/x509v3/v3_cpols.c; sourceTree = ""; }; + 1CBCFBB0EE42C6DF8519FF2E620DCC79 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; + 1CBEDE14DC9EB9B242439F210D6978AA /* 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 = ""; }; + 1CC4ED28ECDE0D8C895E606DF1A4BE2A /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; + 1CD6349A1823831EC106C8F9D0192E8C /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; + 1CEA9A540A7FB773DF80871998673162 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + 1CF9D6D2B5415928BF1B33A46932DC17 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; + 1D0639252D21CB4DD0FB35FB40F888E5 /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; + 1D16D46EC3AC395484AFCB680B7BE5B6 /* test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = test.h; path = third_party/re2/util/test.h; sourceTree = ""; }; + 1D1C850B5184BF26698AB9FB25B10D3E /* udp_socket_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_socket_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c"; sourceTree = ""; }; + 1D1CF84A38DC55E9BA304BF0D47D4FA8 /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; + 1D3271BBF5FDB56348DA67BE051A937F /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 1D71042B9FED0E924E032FC2CBD73AC5 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; + 1D8ECA21E4FB0D8DACD0C720E8FDCADE /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; + 1DA0044453006D2C5CBF5D2D23F519C1 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; + 1DA07E3922A26ADD36E05DBBE0F60F03 /* blocking_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blocking_counter.h; path = absl/synchronization/blocking_counter.h; sourceTree = ""; }; + 1DC39D8F1175E5AED6FC651D797346CC /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; + 1DDFB03E2128FD6392BC9A535F108099 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; + 1DE2308B456F61A5053416DE12A392FF /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; + 1DE6E6755A31DC227B90792B742314D3 /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/codegen/metadata_map.h; sourceTree = ""; }; + 1DFD1873DBAF346A39AE6655E4C2F7BD /* 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 = ""; }; + 1DFE7754F77E8D7CA4D567D75FD5E678 /* container.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container.h; path = absl/algorithm/container.h; sourceTree = ""; }; + 1E0F46DB2E7E772B6C0945211FC3103D /* 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 = ""; }; + 1E11132A5FA4E0699617B44029821CFB /* darwin-proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "darwin-proctitle.c"; path = "src/unix/darwin-proctitle.c"; sourceTree = ""; }; + 1E2500CB9DD4EED57F5C6C3C4DC88E5D /* ads.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ads.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c"; sourceTree = ""; }; + 1E30CC57EEBC812C9E45A5E9010E3922 /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_factory.cc; path = src/core/ext/filters/client_channel/client_channel_factory.cc; sourceTree = ""; }; + 1E47076D997131059520FCAE8CB30167 /* xds_cluster_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_resolver.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc; sourceTree = ""; }; + 1E663C5EEE51907770579F3EE9E738A6 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; + 1E72981128DF99B536C689AA588FC97C /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; + 1E87530FB01C3F204CD3BF8DEA67B806 /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; + 1EA929391E979C6C3610357AA3851912 /* grpc_if_nametoindex_unsupported.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_if_nametoindex_unsupported.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc; sourceTree = ""; }; + 1EC351A0B08F944AEFCEC58A0179B133 /* secure_random_arc4random.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_random_arc4random.cc; path = Firestore/core/src/util/secure_random_arc4random.cc; sourceTree = ""; }; + 1EDA997AF26146BE99371FB2A016685D /* binder_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_android.cc; path = src/core/ext/transport/binder/wire_format/binder_android.cc; sourceTree = ""; }; + 1F018242C8F6124C8CC8FF9433F26F95 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h; sourceTree = ""; }; + 1F11D02011EF5B75BC559C250C5539C3 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; + 1F27EC5B1A5F8DF113FD359C3B115943 /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; + 1F40CF0F20027A9DF393F21990AE779A /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + 1F41C0000CC5C14E085CDEF4E387CD3B /* FIRGitHubAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.h; sourceTree = ""; }; + 1F451B60944121FEFC1FC66A4AFD61D5 /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = block.cc; path = table/block.cc; sourceTree = ""; }; + 1F60678A89679FFFD3C3CA52B98AD7F5 /* policy_checks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = policy_checks.h; path = absl/base/policy_checks.h; sourceTree = ""; }; + 1F838F33E12E6DC68AF33DCD094AAE58 /* snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = snapshot.h; path = db/snapshot.h; sourceTree = ""; }; + 1F9EB54DBC921829EC3541C0EE26EA3B /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; + 1FAB9226871DFD8EED6D114B30C2BB97 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/internal/function_ref.h; sourceTree = ""; }; + 1FBBC2CDF5D1DF33A2E82128A6FC3B99 /* FIRAuthBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthBackend.h; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.h; sourceTree = ""; }; + 1FBFBC0FDE52DFB2152249B660BC787B /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; + 1FE34445A0DAE4FBA8733D9C802AA7B2 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; + 1FF1302302014562FC94BA678BE3F0BF /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 1FF4C24B8F3D8AEA6D6B6DF20EE5810F /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; + 200AE8FE893B253B47778CB2E68F6623 /* snapshots_in_sync_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshots_in_sync_listener_registration.cc; path = Firestore/core/src/api/snapshots_in_sync_listener_registration.cc; sourceTree = ""; }; + 201DCA0D7E33967E0DA8F376DCA5B661 /* socket_option.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_option.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c"; sourceTree = ""; }; + 202B0381245BE30EA25F7C112E0D59A5 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; + 203099FB0E8257AF41C6F891C3C55B6D /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; + 2032024ECD488D25330C9045E0447A69 /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; + 2034B39682533B208E6260217ECEA2D1 /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; + 203572C88C88B28545416EEB7D67990B /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; + 2045982A4D2F97CDD303F4BBB920DDE5 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; + 204688A39C5D245A038A935A011098C5 /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; + 204B6969AA8AB4B7254F7B3780CA30AA /* FIRMultiFactorSession+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorSession+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"; sourceTree = ""; }; + 204DC4204DA867B3F228BE10F537B0B0 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; + 20502864ECDB477A336242904C216395 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/channel/handshaker_registry.h; sourceTree = ""; }; + 205BF1C76A0E9D1481CE6AD28CD46992 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; + 206906A0938FB14D1ACBC98E98230F9F /* init_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = init_secure.cc; path = src/core/lib/surface/init_secure.cc; sourceTree = ""; }; + 2069CC42F6F35499F7782CE6A4B1BFFE /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; + 2085D0E376A3DF92FCA463AD20618178 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; + 208684B9B33542CD9573C1798AAAE64F /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; + 20A44DC14E720FCD39B4281C2FBB611D /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; + 20AC0CD7ABA9A0950228102872F92492 /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; + 20BA2C217877C918003B2B98FEF8511B /* export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = export.h; path = include/leveldb/export.h; sourceTree = ""; }; + 20BA58D3CE652887DDD9596CAE8DA09F /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; + 20BC233FC5E586BC3A206FB53916E509 /* 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 = ""; }; + 20BDF532A4A95CBF9B8A01DE1E9508AA /* grpc_tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc; sourceTree = ""; }; + 20C19B3C458BABD720C789445E1FAEC3 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; + 20C6132682307EC691BC2DE03A3EEA26 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; + 20CCBB8B7E1FF77ED33700685F4876E0 /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; + 20F266EB0176740DB67A0017DA20C29D /* grpc_alts_credentials_client_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_client_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc; sourceTree = ""; }; + 212546C840FDB70C540C95566D66E1BE /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; + 214643DD544826724EA993D9213BA3A5 /* FIRGoogleAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGoogleAuthProvider.h; sourceTree = ""; }; + 214D1C72B2CE741E27B6F3B230C432DA /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; + 217812DDEA1A6A9F50A98540E88FA497 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; + 217E8CD74BA05131F6F4D8CC99945BC1 /* 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 = ""; }; + 2198D6F3ADA69B721E9CEF218CCD4549 /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; + 21B23DC7B656E3396815463C2E5A2088 /* 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 = ""; }; + 21FF7B5C6347E698893351A6AB5487AC /* binder_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_server_credentials.cc; path = src/core/ext/transport/binder/server/binder_server_credentials.cc; sourceTree = ""; }; + 220776543426E88CF12EEF9A8DE10F3A /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; + 2216972EA04C05B04C0645B1BBC93DB5 /* regexp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regexp.h; path = third_party/re2/re2/regexp.h; sourceTree = ""; }; + 221875720F84DC8FDEE1BD4A6EC00D82 /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; + 222542F7A5F0F55C44B5116723671F1C /* graphcycles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = graphcycles.h; path = absl/synchronization/internal/graphcycles.h; sourceTree = ""; }; + 22385A28598D6D8A4BFF5BD2C6AB7789 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; + 223B0017B4C77BE4D604446D11920FA8 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; + 228E366A9D6D040175B01E63369F74EB /* version_edit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_edit.h; path = db/version_edit.h; sourceTree = ""; }; + 22983DF9A1162EA90005A0D80BADF909 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/google/rpc/status.upb.c"; sourceTree = ""; }; + 22999C0770A2A8C2DD0A290033F68E1F /* FIRPhoneMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorGenerator.h; sourceTree = ""; }; + 229DA5C38ECDEDF43ED5927FE1273B72 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; + 22C16AEFFC563905D84755A6A2683E08 /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; + 22C571854FA0C75EF282D6FFAC1AC270 /* FIRVerifyAssertionRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.m; sourceTree = ""; }; + 22CEAA74AB85080A95FEF380DBB86776 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; + 22E2B34670BF782DDEA1810E557343D2 /* channel_arguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arguments.h; path = include/grpcpp/support/channel_arguments.h; sourceTree = ""; }; + 22F5D30C0E112764A41DAE840272B8C7 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; + 22FAADBE9161C41F969EC7B33D3F731B /* inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = inproc_transport.cc; path = src/core/ext/transport/inproc/inproc_transport.cc; sourceTree = ""; }; + 230B38CC0F95584A3C8FB7465C7022CD /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; + 231105B6F76806840920DD259AD9E87E /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; + 2324ECB5A326712897DDD9C76D11F9C7 /* backoff.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c"; sourceTree = ""; }; + 232CA3047B6991CC86BB140F8E7258D0 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; + 2360030921D5EDA7110D07DD65D9E106 /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; + 2364B2393F1AAB8A305532A64870EA9A /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; + 2365850ABBE6EDE8C5DC3E53CD3D64D6 /* grpc_ares_ev_driver_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc; sourceTree = ""; }; + 236D2DCCD30F4B4A7BC4444B0857ABD9 /* exponential_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_distribution.h; path = absl/random/exponential_distribution.h; sourceTree = ""; }; + 2377BF3B9FB76D3DFA2304AF542EDFB4 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/impl/codegen/async_stream.h; sourceTree = ""; }; + 23A367FE81EE60BD8BE332CCD04E955E /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; + 23B216EE179C1F4501083821CFAA255C /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; + 23B2972A80C7CA3212B9FC9FE5814F2A /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 23B960B908E7FDAC2DE97DF0680ED636 /* p256-x86_64-table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64-table.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64-table.h"; sourceTree = ""; }; + 23E3230EDDB33B21720A74DDD06C8F32 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/impl/codegen/log.h; sourceTree = ""; }; + 23EB8461FE9A5920EB1054D7523B84A4 /* FIRVerifyCustomTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.m; sourceTree = ""; }; + 23ECD5385258CBCDF2A438D9384B2EAB /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; + 23F048857840E1552D4EE8BB0345A18A /* grpc_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security.h; path = include/grpc/grpc_security.h; sourceTree = ""; }; + 2403EF933B9FB179636E4156668A1D17 /* pollset_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_custom.cc; path = src/core/lib/iomgr/pollset_custom.cc; sourceTree = ""; }; + 2417D45F1B0CBC31D6E9C142D79C1E91 /* 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 = ""; }; + 243E411F0BBE46610F4DF84B5B8F2D50 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; + 24437CC2BC4649F4243DFCC14E1DAE09 /* 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 = ""; }; + 244C209FBC79E6BB73F7A7E0E5F53D63 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; + 24535C698A0195B571B5CBF6734B6963 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.m; sourceTree = ""; }; + 245CAEA8281F211B07977F7FA592DAAA /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; + 2460D01C3C919D01AB9205DDFFEF40EB /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = ""; }; + 2463678D7A084E5AFC1E97F138982AC3 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/include/openssl/des.h; sourceTree = ""; }; + 2465DF4B6EE830DE9169C9B86D2D721E /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; + 2470C9D1B5C531B52E827D6C7FF7E5AC /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; + 2484DB461B84FEF1ADCF6BCA0F071A5A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509v3/internal.h; sourceTree = ""; }; + 2492C1BBFE9EC02D90B86DE11BB7E7EE /* timestamp.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.upb.c; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.c"; sourceTree = ""; }; + 24955F4CC62D3C300B7C8506BBB5DD6F /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; + 249761F3FACEB2EFD25A150E8E368F14 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; + 24A4B46F0DC31689CFA6FA776753E974 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; + 24A7FF794D74680E79DDB3AF9D3C8634 /* 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 = ""; }; 24B7811AD1417EFD760007BABA3F3809 /* Pods-Flash Chat iOS13-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Flash Chat iOS13-acknowledgements.plist"; sourceTree = ""; }; - 24BB071A53AE872ABC3A9D5797A66109 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; - 24EF0E90A52894A9FDE65FE9F01D4DD1 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; - 250A209FA4A1DACD384D3BB6584B2D67 /* 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 = ""; }; - 2511ACDEA600A7860F4479462B373DE2 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - 2517A8D97C1C3BFC7DDF2D1CEE2601F1 /* refcount_c11.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = refcount_c11.c; path = src/crypto/refcount_c11.c; sourceTree = ""; }; - 251BE7664DFB6CFCDED2BEDC9448B275 /* 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 = ""; }; - 251C9D15ECB381146A595D0AE61D8549 /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; - 254F524B944A594C50A83B4875F42C2E /* 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 = ""; }; - 2553B6B0242BB468D7301153F95211CD /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; - 255697C72A715B47AB9A661A94CBA082 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; - 256CE2BBC3FD4CFC24A11F0AF4E63EF6 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - 2575528806B23DD6726B5F4B9FFBB8F9 /* timer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timer.c; path = src/timer.c; sourceTree = ""; }; - 2579B86C049C5FFA3434D76F294DECFF /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c"; sourceTree = ""; }; - 257F33CF7173065407120D50A63780C2 /* socket_option.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c"; sourceTree = ""; }; - 258B832FB63945A46BE1F8B81F6F4684 /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; - 25E4A7E6BBFBF0EA50EEEE38D563D632 /* 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 = ""; }; - 26044C8A88DBA8070C43339A9D8C66C2 /* 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 = ""; }; - 26132B0505FD1F5C6017C3F830906A0E /* 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 = ""; }; - 2633CB8F25B0870D37571A671A3D11B5 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/codegen/call_hook.h; sourceTree = ""; }; - 26475598C62DA2BA400EEF0977CC14AC /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; - 264B41E145D441C27ED2ACBCF935E7A3 /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; - 26636377EF83406F8696B60416119593 /* 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 = ""; }; - 2670E9783D257D7E43A3104A953C57F7 /* cordz_statistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_statistics.h; path = absl/strings/internal/cordz_statistics.h; sourceTree = ""; }; - 2677578817C44F7EC0A65F90A311093A /* 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 = ""; }; - 2677924889F0BAF829EA6C296F2F417F /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpc/support/time.h; sourceTree = ""; }; - 26783FFD06BDFB3076708698B2BEE932 /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; - 268E8B0F9C65AFCF0500BCA88D7A6407 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_parser.cc; path = src/core/ext/filters/fault_injection/service_config_parser.cc; sourceTree = ""; }; - 26937D15CDA7807683604E02EF6A1847 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; - 26A2410A18AF6C751163F4313DB7FB33 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; - 26B8B4EBA6ACD25E2AB454FBDBDAC6BC /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; - 26C293EEBD555F0093D25E9338CAC79F /* test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = test.h; path = third_party/re2/util/test.h; sourceTree = ""; }; - 26D09F96E4744FBAA1B641E5ADAC5528 /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; - 26E13DD99206CFC900786253FACA018A /* 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 = ""; }; - 26E90942413AA60D17440D86F28422B1 /* FIRMultiFactor+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactor+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactor+Internal.h"; sourceTree = ""; }; - 26EB6670A7BE940E343F862120174E7C /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - 26F520E1CA138A7A296559A144520015 /* 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 = ""; }; - 2711A0841A9A031734E61B68B49B1E33 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; - 27147275BA0B70A69E1075EF4B67F09B /* 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 = ""; }; - 272D43B1469F028934436B767A61C6D5 /* FIRFinalizeMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.h; sourceTree = ""; }; - 272EAB0B07CEF88D86A697C7A8E149ED /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; - 273D56E4F37878B7A5AA1B034B4129CD /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; - 2746AE4958096327AC70E58678BD23B4 /* FIRAuthDataResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthDataResult.h; sourceTree = ""; }; - 274BF973A4BDA252715ED0617D4AA568 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; - 27594DD949E1F1AF56837B70C828F270 /* 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 = ""; }; - 276275BCEAEF50D5205E620B2405F40F /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; - 277CCD76DA7B067320BA681117836189 /* FIRAuthWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebViewController.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.m; sourceTree = ""; }; - 2788C5C4A897FAEC338FEA9DED0482A7 /* msg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = msg.c; path = third_party/upb/upb/msg.c; sourceTree = ""; }; - 278F37A20F9EE3B1A2577D97369A38F9 /* ascii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ascii.h; path = absl/strings/ascii.h; sourceTree = ""; }; - 27AE0460F042D36393F55774BE28F3D8 /* exponential_biased.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_biased.h; path = absl/profiling/internal/exponential_biased.h; sourceTree = ""; }; - 27B0120BD8156120D5B01B0A9DED1493 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; - 27B41D444990669E3462B974E545950B /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; - 27B83CCB6B3B7094AA5781C0E039A723 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/sha/internal.h; sourceTree = ""; }; - 27D3E3E005C028D8C54EF2B9AEDBD7C5 /* 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 = ""; }; - 27EB040C9F6623F53A8CEDBC2A07DE6C /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - 27EED20F777EDB7606ACB8393D53F6EA /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; - 27F4181ADFFDC3F99788E40652CDB660 /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; - 280F12DE9BC85D65A9BE1CD815E0F008 /* FIRAuthKeychainServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthKeychainServices.h; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.h; sourceTree = ""; }; - 281D7CB2C39238AD997A50924356692A /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; - 281DC0E90357AE176BFE2AD6D80A47C4 /* cordz_functions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_functions.h; path = absl/strings/internal/cordz_functions.h; sourceTree = ""; }; - 2847383C53A3F02907B58EBA12C564E6 /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; - 284DA824411F4BCFABD60A0C33573BFF /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 285A0A08A325E8E833899F82592A8BBB /* secure_channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_channel_create.cc; path = src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc; sourceTree = ""; }; - 289A2528AAF51BACA0EE77CA6C863A58 /* 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 = ""; }; - 289CA993EA579980E413B37B337DFB83 /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; - 28A678D600E6B93AA271B7F611DC318B /* 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 = ""; }; - 28BEDF6F585B966C2A9B48BB898EB706 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; - 28C218425C921A293F8EC141469AB738 /* darwin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = darwin.h; path = include/uv/darwin.h; sourceTree = ""; }; - 28F5EAD524F4BBF3F2865235F5FD5927 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; - 28F67E9DEFE42E74DEF2154F9947DB82 /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - 28FBC142C4AA69D45856DEB3ABB67C9C /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; - 28FD653AF6EE2E8E0101B0B496730D20 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - 28FF6F3483284C0EC671060F3A0F499F /* tcp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tcp.c; path = src/unix/tcp.c; sourceTree = ""; }; - 29162625476EED4B899EAA781ED51679 /* seed_material.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_material.h; path = absl/random/internal/seed_material.h; sourceTree = ""; }; - 292127B5970DD256EB9B4D227EC52820 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; - 293EFA39415DA874CC9055DB7E3E2EE9 /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; - 294CD7B9276C69405498746C2F4D395E /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_enum.c; path = src/crypto/x509v3/v3_enum.c; sourceTree = ""; }; - 295EB74E5378050D141386E004672B8D /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - 2964F8AF13523FA15B09EDE310B8B483 /* 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 = ""; }; - 2965F18933BA8826E8718D022CC72933 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - 296B9FB2DB614DAD2BA84C5A83834DE0 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/include/openssl/cpu.h; sourceTree = ""; }; - 297258A7C1F4FAE009597544F8343745 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; - 297FC92917D7076EC5381279B860A3BF /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 298253A9952C4F4EDE1ACCE265869CFC /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; - 299CDEE2553897BACBD94BFE14463D22 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - 299F7B554D383F28DFF7121F9234D97C /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - 29B6A5C8B82E5BB8F65103C56D6EC7D5 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 29BBFB150446397511913BAF16FEF106 /* 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 = ""; }; - 29C34BBE3DDDE111AD578FC8259C3D89 /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; - 29DC2ADCA18C838ACC4D893D940E986C /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; - 29E839E2409C4DEBF613483BB190B433 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; - 29F7778080EB562735F2C40AF72D594A /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; - 2A09129A84D16BC2141876A2ECF39439 /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; - 2A3D6BAECA5BE1975F12C7FCA3B0C62E /* listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c"; sourceTree = ""; }; - 2A45C27079B48D59BF85661F6D3ED49B /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_manager.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc; sourceTree = ""; }; - 2A4DB39031B2F9441E734C5161E5FA96 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; - 2A550B61F9A6CE6ACE773AA5F2734EF0 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/codegen/grpc_library.h; sourceTree = ""; }; - 2A6023FCAA29295E143235996A575562 /* mutexlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutexlock.h; path = util/mutexlock.h; sourceTree = ""; }; - 2A70FB5288867A5EAA0C1F5743344615 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; - 2A7444BC97F1D298FB1712842043CBC8 /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; - 2A76F1906C8853A58783E519A67E1174 /* leveldb-library-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-umbrella.h"; sourceTree = ""; }; - 2A7CA3D6AD61F23A0E12CD6631866A53 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; - 2A90AF16F929756ABD2D82DA0C0D638C /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; - 2AA2D49E46F308C2B9D7AEFFF440297F /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; - 2AA605CFFABB8AFE2AF4D199805E9B53 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; - 2AAAC20468B4EA1FF4A649B57A5A3FA8 /* 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 = ""; }; - 2AC6F4188AEDBDD96CBF8092C5A0ABB3 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; - 2ACC00B7FE338483A04323229E7A25CB /* blocking_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blocking_counter.h; path = absl/synchronization/blocking_counter.h; sourceTree = ""; }; - 2ACDD6D7F925875C5D0B3F4C4C345AB3 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - 2AD7E04B247A048A8B2E9C43B804FDBB /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/slice_buffer.h; sourceTree = ""; }; - 2AF97FCF21560E17B42AB9A924396382 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; - 2AF9EE79843E299C5CA738D793A86666 /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; - 2B108932F308EF62DB064CBBAA1EEAD7 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; - 2B24575716E87E99C692991FFA1C4F6F /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - 2B25468BDC04AEF0C0643FBC675902B4 /* 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 = ""; }; - 2B5D6CFEE2D2D303F915C5B485902924 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 2B6BBC2793907037432260D0054EF8C2 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; - 2B8A4984270A3A0094AD8696AF5CFEC7 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - 2B90957A6D6006C1C1D3FFCEA5391A00 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; - 2B95705859DA0C47A4F47C74AA021174 /* 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 = ""; }; - 2B96B9F8E30E3E523EF8A827500F70E5 /* FIRPhoneAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthProvider.h; sourceTree = ""; }; - 2BA5BA0F46B851E957F968A90C435EBA /* FIRAuthProtoStartMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.m; sourceTree = ""; }; - 2BB3D20A55446593382E747352ED1281 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 2BCAAD5971AD4DC59DD30BFCD0F7B2FB /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; - 2BCBF59C495AE53E708AAD10DC35B022 /* 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 = ""; }; - 2BD137A8AC8A1CB486DC69A50603A5EB /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h; sourceTree = ""; }; - 2BE9CF2096C3004AA4744BD750E3AFEA /* 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 = ""; }; - 2BFF89B8F40635722A0E211E8D2AC34C /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; - 2C162A8765788186600371216F98F67D /* 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 = ""; }; - 2C23DDAC09916FA1C2F317B501B5A9C4 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; - 2C37C2024A74B505A1B63B1BE5BEC548 /* 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 = ""; }; - 2C4551AC6FC31FB427136348DC26800C /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; - 2C57EEA26AD6BBA77AE13C7A4D4FFFC3 /* 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 = ""; }; - 2C60B7A7C032805CF2ADE7B597C33DBA /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; - 2C6AE7A334E057ACCE60193479DD98EE /* 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 = ""; }; - 2C6D86BA89D5C38DF0769CD58B4FFA71 /* char_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = char_map.h; path = absl/strings/internal/char_map.h; sourceTree = ""; }; - 2C6F632ECF7BDA73193731720C29D133 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; - 2C7AA62AE0F3FFB59513C0F688C50545 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ec/internal.h; sourceTree = ""; }; - 2C8C251885ABD3047EBAF2443F9E18F9 /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; - 2CB024760AADDA5047FAE3B20A5C4C83 /* 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 = ""; }; - 2CE893101F2901BF8553CA56AC9EAB06 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - 2CFEA868DA0718FE2E6F5C21105EDAB3 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; - 2CFF16852C2AFC38C831643FC787D0E2 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 2D03D337B47AC826656C9CD58DF6A277 /* p256_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_32.h; path = src/third_party/fiat/p256_32.h; sourceTree = ""; }; - 2D0534E332838F7F012B7DA614821326 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_channelz.cc; path = src/core/ext/filters/client_channel/client_channel_channelz.cc; sourceTree = ""; }; - 2D369DC3002DB936D7ABDE484CD4F9E8 /* 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 = ""; }; - 2D4CA1D2355D777A33E37CB19E837A67 /* 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 = ""; }; - 2D55881B4D51668D099863AD66D35FE4 /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; - 2D558E5CC8F8FF9A279E6FCB823F78E3 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; - 2D6AECE6FE9DF2E2AB2E4B8AF3B9F4D2 /* 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 = ""; }; - 2D89D1CE8725C18039755580DB45ACA4 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; - 2D8E98012D224137DE647D294723AC15 /* 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 = ""; }; - 2D9437CE97B4AB49A4A92D1C11D67C7E /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = src/include/openssl/opensslconf.h; sourceTree = ""; }; - 2DB80BD156C6ED11C149487F60C7C1F1 /* health_check.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c"; sourceTree = ""; }; - 2DB98B4A4B93C6E39540C9E8C9592547 /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; - 2DBC6A7D941C308EA8FF996B1CEE1F16 /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; - 2DCF8F8EA5F27C10634FB81A368742EA /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = absl/time/time.h; sourceTree = ""; }; - 2DF6FABDA9E55396A5A08C2A0A88EEB0 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - 2E0BD66856E6AF55D5C343CBCD359A9C /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; - 2E2092D66C4B88A11CF1BD9D12226F21 /* 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 = ""; }; - 2E25E97677A1F67935E003006B920A24 /* timer_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_custom.cc; path = src/core/lib/iomgr/timer_custom.cc; sourceTree = ""; }; - 2E2E8B06225A868EA146B961E725D102 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; - 2E36560640A07A2A61D6BB28D985EE0A /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; - 2E4F6A1682FB6A646EAD4A871E104DF0 /* 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 = ""; }; - 2E5B07CD3F0EB4A6A7FF7CC9EF0AF6C4 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - 2E5B439F90A941226BD2EF48024DF759 /* 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 = ""; }; - 2E60938E3AC08188BEA5D9EC936593B2 /* 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 = ""; }; - 2E64C988A06069008CBE7404176446EC /* siphash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = src/include/openssl/siphash.h; sourceTree = ""; }; - 2E6E5A9884964163F23FB4EF2D037847 /* threadpool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = threadpool.cc; path = src/core/lib/iomgr/executor/threadpool.cc; sourceTree = ""; }; - 2E7811BCD18DEBE33FDFEBFC5D70119C /* 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 = ""; }; - 2E7C3B971E061CAA4118317470F26C80 /* client_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_idle_filter.cc; path = src/core/ext/filters/client_idle/client_idle_filter.cc; sourceTree = ""; }; - 2E9C813306FE4637E3A1F3F671AE68B1 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; - 2E9E7BC9B124BBAEF0FF9F056080C648 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - 2EAB187A812125CAB25053C6485756D8 /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; - 2EB0FEB99427CEDF311876D733252FD3 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - 2EB807AF59CEBBFEAD5D068C2AF0C15B /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - 2EB847EA7567E480A69A6C979104B841 /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; - 2ECD7C45BD93FA085A307E6852B8D685 /* port_example.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_example.h; path = port/port_example.h; sourceTree = ""; }; - 2ECE464BF00D647D8E8BF568F0CFEBCB /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - 2ED0AC6123468E1997F88580F045E67B /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; - 2EDB2F167EADB2E8637A3DA5B1B162F5 /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; - 2EE4CFF0200FE73D7112F7C9279E1EE8 /* 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 = ""; }; - 2F1E94508EB4E03B4A7860CCBC54B098 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; - 2F261C77E4E04DE5A3675B7EAD8EA528 /* 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 = ""; }; - 2F398789DC69B60337CFAAA89F9C2C2C /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; - 2F503D6A45B2099D96A857507AAFD6D7 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - 2F58B2BFA46E8AB96575505C1596C57E /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; - 2F59D0A701AC559D06CD851A4EF0701F /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; - 2F68E55D20F0EB8F288CBDF8CB4BA9AE /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; - 2F7287B6C3806AC1BFF064656453E95A /* 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 = ""; }; - 2F7A57196AD9F95EE44B2819AA1DC7E2 /* 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 = ""; }; - 2F7C12CE21BB724195A589B8F46ABD86 /* dl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dl.c; path = src/unix/dl.c; sourceTree = ""; }; - 2F89D8C7938A637AA1A669F498A3845A /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - 2FA12178C1547ECC33770020AF8B1C2F /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 2FA6D061555D83FF6B468E3F4FEA90C1 /* randen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen.h; path = absl/random/internal/randen.h; sourceTree = ""; }; - 2FAA5C95A4C739C9F9D5C01AEA8E2FE9 /* 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 = ""; }; - 2FB5B22D1EE806E8722D9A8220E2E181 /* 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 = ""; }; - 2FBD16630C80A72BE52123E66DAB8F4C /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; - 2FD71EC52CB8E6B1C76E04C40B49DECA /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; - 3019D75318370CD3F98D6EC27E1BD637 /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; - 301F5C96FBCB9D74BE64E69DED8C8DB8 /* FIRPhoneAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m; sourceTree = ""; }; - 301F96EF0324E4BB2ABE6AB951938A4A /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; - 302A18CCD614B9AD5B368E47920E56A0 /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; - 3036537CDA0649E0878E8594EB35397F /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 303B101274BBDA3CB492D5B770804466 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/impl/codegen/client_callback.h; sourceTree = ""; }; - 3047FB83474EAFCB097933548DB42C08 /* 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 = ""; }; - 305CAD5D23F53FEEC4B49E2917B19A8A /* heap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "heap-inl.h"; path = "src/heap-inl.h"; sourceTree = ""; }; - 30641BF0C9A6C56579616B86B9CBEDC0 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/escaping.h; sourceTree = ""; }; - 306E4A2A6123F1EE9F9EE17D5D64081C /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; - 309C3640AADEE30CED9436741796BD75 /* 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 = ""; }; - 30A54D8F04C5CC171F121955E24AB69E /* platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = platform.h; path = absl/random/internal/platform.h; sourceTree = ""; }; - 30AC3A8E167308D1D7240D3DE5D834AF /* 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 = ""; }; - 30B3E3E58ECF0A0F7A49A3DFC99C46C8 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; - 30B5D24B68DD6839E1EA306C4838C3A2 /* 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 = ""; }; - 30C3B201B17396A9C773F2DF111BC999 /* config_dump.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c"; sourceTree = ""; }; - 30CCB2159D5C999162A39AB66BBBEBD6 /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; - 311249B28A37ADB26D2F8496EBE1606E /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - 3119C9E31E7411A07B4708EF92B43450 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; - 3120041D8C193654BC3E2BF7D733CE35 /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; - 3128BEDF4F00F8CB1A853FB82AF9B0EB /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - 312CD1C44A9663F11F15772DA1532D07 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = util/status.cc; sourceTree = ""; }; - 3150ED5C74D30FFF0FFD701F245EF0A8 /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; - 315BA1F94307C1F97FD43D2C8B36831E /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; - 315EA5002D682DA429221872CCA3E771 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; - 316FC845923E5D3310C933ADD1C6D738 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; - 3180921B80BB71E5BD48E14F2730DC53 /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; - 3196A6973F0A0600A4A185932D3B0832 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = absl/base/internal/spinlock.h; sourceTree = ""; }; - 31B7DB7266DFE8353372E95262AE99CF /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h; sourceTree = ""; }; - 31C40B607709910E6F746EEE5AF5ABDB /* sysinfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = absl/base/internal/sysinfo.h; sourceTree = ""; }; - 31CB79105C6E07611318E0573FE4D179 /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; - 31CD1B87BECA28E0D1476AA7FFF433E3 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 31CFD08288EAA99304CA81EF453B57DC /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - 31CFD654A9B427BD7D1F2A1B4C52BF1E /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; - 31E8BB4CBB6CC716DFCDE95657E0D4A7 /* 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 = ""; }; - 31F06E334CBB06F34C00DD2B5D2545BF /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; - 31FB8D5B4FC165FEABA997D168908CBE /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; - 32027744A97394A95DC5724E3F25AEE1 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; - 3203273057655BF14A87E80BB9B001F8 /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; - 320B54A3BA2F1AA334EA800DA62CF99B /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; - 32277E5B585B3472A2C9782C3E7147E3 /* 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 = ""; }; - 3228A2741A4C6E799D0B11D846CE6B63 /* FIRVerifyAssertionRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.m; sourceTree = ""; }; - 322D997FA4CDF6864964B05AD7459511 /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; - 32398E89BC47DF807E68FE2F84AEA156 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - 323E902A459BDBDC083ADB54C910C097 /* 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 = ""; }; - 32585DA0E531CAE90EFE97D49B826F56 /* server_initializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_initializer.h; path = include/grpcpp/impl/server_initializer.h; sourceTree = ""; }; - 3261546B3FF64262DFE3888B391CD023 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 32A9E9202EEA853D80E2AF093225EBB2 /* 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 = ""; }; - 32C6FB56F78EB56A627DADA006124E0C /* create_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel.h; path = include/grpcpp/create_channel.h; sourceTree = ""; }; - 32F61F17A57202CF69FADE3454DF795A /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/hash.h; sourceTree = ""; }; - 32F802F6AB37F162D6A36B9BE0562664 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; - 3338EF7CC0F6A7B5B62EFF92A3FA755F /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; - 33467055A1131134E290ED6BA1AFCC00 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 24BAC47328C1C9181CE9C233BE3B8E7B /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = src/include/openssl/sha.h; sourceTree = ""; }; + 24C1F69F35DD6E593DCB74A3AA13ABBD /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; + 24C4A45B486A03422B6A2B27F2ADF62A /* 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 = ""; }; + 24EBC54060D85C73A0359E1AC1AE8BA2 /* ec_key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec_key.h; path = src/include/openssl/ec_key.h; sourceTree = ""; }; + 24FF28E0674B5CA68D1A64E6BFB66B9D /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; + 2512390F87CDBFA15A61C6C56E05373C /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; + 2528C3C880BFEA3EE930B275FE410BC7 /* grpcpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpcpp.h; path = include/grpcpp/grpcpp.h; sourceTree = ""; }; + 25386FB1C6F4C090D700085BA82519CB /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; + 25475A593A6B1686B40F8951AEB0E93E /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; + 255509EDCBC1B216299A27803BE6275F /* sparse_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_array.h; path = third_party/re2/re2/sparse_array.h; sourceTree = ""; }; + 256CDDA97DE535252457CA8A1AF5F4DA /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; + 259AA94ACB87C797446F50D98DDE29E7 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; + 25B85E37ECC402FEBB103BADB23FA683 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; + 25BDC04086F8F801DE64DAEA31138278 /* transport_security_common_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_common_api.cc; path = src/core/tsi/alts/handshaker/transport_security_common_api.cc; sourceTree = ""; }; + 25E8F8CA9D47FBE4D02A871FA5C28366 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = absl/base/options.h; sourceTree = ""; }; + 25F27CE39E14DAE847144E02398A4EF6 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; + 25FDF53685E5436630851E85F4DE2110 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr.cc; path = src/core/lib/iomgr/event_engine/iomgr.cc; sourceTree = ""; }; + 261304909E0B32F44FFE110FA8C58EE3 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; + 261FBBE7FA4EB844936AB2D3BF2EEA81 /* char_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = char_map.h; path = absl/strings/internal/char_map.h; sourceTree = ""; }; + 2628E3421B909EF60D4064F91DB5987F /* 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 = ""; }; + 262B0481D4BE48ED29EF7DE5A6868D73 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; + 2631D6E1D13D75FF2CE956EF87A51DE9 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; + 264577CB833051B51BA2360BE30F51A6 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; + 264ECA18DB4BCE1787F2A8D4B412CD6E /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; + 2656ACBCF3C6F21833E2CE96110EF667 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; + 2658663D9FA7D2F5524BDB67C4E4D350 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_connectivity.cc; path = src/core/ext/filters/client_channel/channel_connectivity.cc; sourceTree = ""; }; + 2659DE91DA348E79C2761757C6B8F7BD /* 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 = ""; }; + 267C2810B9F8E1E4F4D99EB8713EA979 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; + 267CB669FB91A7500E5A02EF2C573020 /* altscontext.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = altscontext.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c"; sourceTree = ""; }; + 26C3DB743312655A2C92DAF47A60BF93 /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; + 26F8A69679E852A4E9B7F6FB03A51956 /* FIRGetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.m; sourceTree = ""; }; + 27065E4D8ACC86A453FDD3106E950F4B /* 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 = ""; }; + 270F5A63E032F374CE90F81F22941A32 /* 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 = ""; }; + 270FF3A8B12425F38CFD22F2846283C3 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/escaping.h; sourceTree = ""; }; + 273FD335D02F9824BB111E9C9D73129A /* resolver_result_parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver_result_parsing.cc; path = src/core/ext/filters/client_channel/resolver_result_parsing.cc; sourceTree = ""; }; + 27486CAEE5F1C6AE56240324BB169185 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; + 2757EF76F5556A9F75638A8B36E167BB /* FIRGameCenterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthProvider.m; sourceTree = ""; }; + 2765BB061255BDBF94EE79E5872143F1 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; + 276AF1CBBEE1544ADE18AF5606A90C6D /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; + 2771190208E108C4435A375D231C89C5 /* stap_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stap_timers.cc; path = src/core/lib/profiling/stap_timers.cc; sourceTree = ""; }; + 2788B911DE2B28C61EB36476DBD51598 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; + 27C7D84AB0688CF0D6A1973FB29EA0F9 /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; + 27E22B5A2AB04D3F3E0EBC5011AE8263 /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; + 27E93FAE5E4169D84B65E57C366F3024 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/err/internal.h; sourceTree = ""; }; + 281A84F8DB9CB877F887499F64ED43BC /* 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 = ""; }; + 281E42975152E5BED409E8A175D94A2F /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; + 2843361DC8984047607235C06B4311EF /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; + 28766E9E6A0C97CEAFCE446EA07B51BD /* status.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.nanopb.cc; path = Firestore/Protos/nanopb/google/rpc/status.nanopb.cc; sourceTree = ""; }; + 2884FD554F251B8BCE0E7AD7CC7BF9A2 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; + 289009D0A76AB9270AE11DBD1A470ED0 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; + 289BA2375C442A3A461998E58831FFC4 /* http2_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http2_settings.cc; path = src/core/ext/transport/chttp2/transport/http2_settings.cc; sourceTree = ""; }; + 28B8E254F935B04DBD8B8DF54132EAB8 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; + 28C4AEE6291F4A2FA8E8DB42E5001A28 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; + 28E9243F27B7634BC89EACE85CB51BC0 /* firebase_metadata_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider.cc; path = Firestore/core/src/remote/firebase_metadata_provider.cc; sourceTree = ""; }; + 28FAE91B102057E191E5B244934E1CAC /* tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_credentials_options.cc; path = src/cpp/common/tls_credentials_options.cc; sourceTree = ""; }; + 2910A547CAFED325878987C83937C91C /* server_config_selector_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_config_selector_filter.cc; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.cc; sourceTree = ""; }; + 2914F5E8E2267E4A8BAF8D191F4AAF5C /* 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 = ""; }; + 291B7588D2B44879CEC511C858E6F4AC /* FIRUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUser.m; path = FirebaseAuth/Sources/User/FIRUser.m; sourceTree = ""; }; + 292BF7C6CFBECA61BEA63D51369D35E1 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; + 29410FDF4D45C382793A0721F6D3268A /* memory_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_bundle_cache.cc; path = Firestore/core/src/local/memory_bundle_cache.cc; sourceTree = ""; }; + 2943E0282918619D43A4D485F20573D0 /* FIRVerifyPhoneNumberResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.m; sourceTree = ""; }; + 29490FDCE98BE2D344510A014D2FC3AE /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; + 294F3668682383F451A9A8112D5311A5 /* core_codegen_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen_interface.h; path = include/grpcpp/impl/codegen/core_codegen_interface.h; sourceTree = ""; }; + 29507664DD519939DA884BBA6135F8AD /* call_once.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_once.h; path = absl/base/call_once.h; sourceTree = ""; }; + 295F48495C088F55FD6B2E874C3DAA14 /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; + 29661B030480BFE3B7104DAF36FE7A81 /* spinlock_wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock_wait.h; path = absl/base/internal/spinlock_wait.h; sourceTree = ""; }; + 2974D433CBCCD3E08730F77A4C78A9E5 /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; + 297FF06C68058D0F2AE5344DAF07B0DF /* server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_credentials.h; path = include/grpcpp/security/server_credentials.h; sourceTree = ""; }; + 298BA738ADB1D61E877A43293E89B169 /* FIRAuthStoredUserManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthStoredUserManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.m; sourceTree = ""; }; + 298EC841485A28BF76A38AD0264552FE /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.cc; path = src/core/lib/resolver/resolver.cc; sourceTree = ""; }; + 299A7D06986AC088A4E87C7B039AF1F8 /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; + 29A14B79E189E7C160640B4B103FC4C9 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; + 29A51310FB6684DF3660C0B33E9A59A7 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509/internal.h; sourceTree = ""; }; + 29ACAFCADF3FF66CC56A1C3D78DB8B2E /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = absl/base/internal/raw_logging.h; sourceTree = ""; }; + 29AE2A81D2F03CD7F2F0B2210A8AB030 /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; + 29B98E664D12A493E78F0E45CD3C61A7 /* memory_allocator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_allocator.cc; path = src/core/lib/event_engine/memory_allocator.cc; sourceTree = ""; }; + 29C38EFF725A32910E9F02EB1AEDBB67 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; + 29D75BD93CB111E10CB5FB61FB5E8193 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; + 29E03EA70BBFA58F0095601A7AFAAD78 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; + 29EF70B8A0DC18518680E65B2178F41D /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; + 29F21C3B2F4A280F9C9170D01F4BF5E4 /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; + 29FCB186AD77D8DF86397C4CC449F96F /* file_watcher_certificate_provider_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = file_watcher_certificate_provider_factory.cc; path = src/core/ext/xds/file_watcher_certificate_provider_factory.cc; sourceTree = ""; }; + 2A26D5DA9D23D45D2B4F240A0A6E4923 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; + 2A28A31A9FFA7ED3682395CB06658486 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; + 2A2AD21DCE6BCF48284E974096BDC2D1 /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; + 2A372A0C9F80AD87724D280D1BE7EB81 /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; + 2A46FC8676E4DF53127F09937C918D4A /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; + 2A4A392088B74EE77B2A3EC002E127CE /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; + 2A52BF253E4C5847F80B6F42E98E8FE8 /* 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 = ""; }; + 2A7129E41AF5610CD59C78ED31085B69 /* 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 = ""; }; + 2A80B90084263B286C2B9BC140688CB6 /* unscaledcycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock.h; path = absl/base/internal/unscaledcycleclock.h; sourceTree = ""; }; + 2A907CC6D7933639291D149B0A7CAEA5 /* alts_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_crypter.cc; sourceTree = ""; }; + 2AA0532207375403CF92AF2C395816E3 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; + 2AB1F8C47463C6721CBCA00D749E0BFE /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; + 2AB865490DA35C0AFB92138DF93F1168 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; + 2ABA1BB21241BABD9B5843658E5E9069 /* 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 = ""; }; + 2ABE74CF13BDE7352E40A1EF617CF20F /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; + 2AC0E36EE9018FEC5A11B2BD8B6E2EC6 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 2AEF8D669655BA0208EFF9CC50D2E500 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/impl/codegen/sync_generic.h; sourceTree = ""; }; + 2B033A1AB06994F5A86D4D7687680540 /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/codegen/interceptor_common.h; sourceTree = ""; }; + 2B137E4DBF66DE6FF1F325B542871865 /* get_current_time_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = get_current_time_posix.inc; path = absl/time/internal/get_current_time_posix.inc; sourceTree = ""; }; + 2B2A55F055DCB8AAF7AEE4E408666839 /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; + 2B3418F0E37EFE0A2E7BBB05E0D601D9 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; + 2B5C27C52BF568DFDF1AF4B53997D8D5 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; + 2B5F0C27B4FFA4320EFE23323AED954F /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; + 2B8F32280889B338E9556ADDBF686BFC /* FirebaseCoreDiagnostics.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreDiagnostics.modulemap; sourceTree = ""; }; + 2BA6E35B74B157113D4445CDF9CE204D /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; + 2BBD00E88D9A4E83D49B88F521C64FC2 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; + 2BC9B624633F09E297AE7E0F849BE807 /* FIRVerifyAssertionResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h; sourceTree = ""; }; + 2BE0C66EE00225CD86D66522CD44A9CD /* throw_delegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = throw_delegate.h; path = absl/base/internal/throw_delegate.h; sourceTree = ""; }; + 2BEDC810B1D43E393454A6622C5DACBD /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; + 2BF3B42A6340059E93A985D000BCD3C6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/dsa/internal.h; sourceTree = ""; }; + 2C1601C89FB6C32B2F1828CFB4A663E0 /* FIRMultiFactorSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorSession.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorSession.h; sourceTree = ""; }; + 2C255764C963350E4763406C1D855388 /* prefilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter.h; path = third_party/re2/re2/prefilter.h; sourceTree = ""; }; + 2C37635D27D01FAE0330CE6722508EFC /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; + 2C3853E0DC5EA6896A116AD6FFDFF67A /* log_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_writer.h; path = db/log_writer.h; sourceTree = ""; }; + 2C4B7CA9BF2D3C222DF08D472B4D12D1 /* FIRSignInWithGameCenterRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.m; sourceTree = ""; }; + 2C551BEC5E9F578374192C51A0CA631E /* 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 = ""; }; + 2C5DABC98FADEABBE529D68A32577D17 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 2C64A3E3D577C85EF2306F902967C810 /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h; sourceTree = ""; }; + 2C7B36BEF4490E7C1FA8A7A8F280A83A /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; + 2C95C3C2A0FD2BB8DD06D6DAE3EA066D /* connection_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connection_id_generator.cc; path = src/core/ext/transport/binder/client/connection_id_generator.cc; sourceTree = ""; }; + 2CB7889117B92468097ED8BC9EC1CAED /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; + 2CBDACACDCC35885E3EC7F6789EF7EFB /* mutation_batch_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation_batch_result.cc; path = Firestore/core/src/model/mutation_batch_result.cc; sourceTree = ""; }; + 2CBEEDF021F79CF3D24C4CCB7651ABA9 /* barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = barrier.h; path = absl/synchronization/barrier.h; sourceTree = ""; }; + 2CC35E62FA38C77AC880C7C3046F6524 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; + 2CC9A447ADE521D437042E901C5495EC /* listener_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c"; sourceTree = ""; }; + 2CCCD23A2078F328966CC394207AC8BF /* client_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_idle_filter.cc; path = src/core/ext/filters/client_idle/client_idle_filter.cc; sourceTree = ""; }; + 2CD950219F348C7EC48D1211809E6117 /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver.cc; path = src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; + 2CD96C498CC7A481D4FA1E46850E70B3 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/impl/codegen/method_handler.h; sourceTree = ""; }; + 2CF25BB7AEFE3EE86F390512455ABCBC /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; + 2D0FC19AF7E30E1EE0611516B3047469 /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_pipe.cc; path = src/core/lib/iomgr/wakeup_fd_pipe.cc; sourceTree = ""; }; + 2D152DDBCC800E6139A84DD8101BDE9C /* leveldb_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_remote_document_cache.cc; path = Firestore/core/src/local/leveldb_remote_document_cache.cc; sourceTree = ""; }; + 2D16F00E439E66A023D5744AA2C89547 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; + 2D1840C3A3BDEAB8AC286D7A8907A08E /* 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 = ""; }; + 2D240863EF0AD60E5406EDABE5F1B968 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; + 2D3B8EA09BE3F4E53FF2A9D7B6AC2096 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = include/grpcpp/server.h; sourceTree = ""; }; + 2D430DC36E369224FE80AA1C779C873A /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; + 2D49FCA81535286187632C7AA6E4268F /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; + 2D599469E42946FF0C5167BDBE014198 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/trust_token/internal.h; sourceTree = ""; }; + 2D6CA8F2BB1C640C922CCDE5CDE5B2D2 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; + 2D8AD11CB45F420996FB36FF740A4823 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; + 2DA242A5B85E864E8DBD2A41CEE95218 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = src/include/openssl/tls1.h; sourceTree = ""; }; + 2DAB5C39646D116D0AD2229811DB3323 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; + 2DAC98092449261BA82F469C1837FEFB /* alts_grpc_integrity_only_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; 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 = ""; }; + 2DB097F61E076F0BD4E82FF623CF937D /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; + 2DBA37C445628D1DDEC56CF0C0D006D1 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; + 2DD38E71CE8D3BEB5228C34708D1E683 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; + 2DFE59557A38BB968888F6CBBDAA35E8 /* stacktrace_emscripten-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_emscripten-inl.inc"; path = "absl/debugging/internal/stacktrace_emscripten-inl.inc"; sourceTree = ""; }; + 2DFEA2C7CC83143DBE5DD4659CA99DC2 /* have_sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = have_sse.h; path = absl/container/internal/have_sse.h; sourceTree = ""; }; + 2E03891E52EE8CCA94BC6FB82313A900 /* 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 = ""; }; + 2E12363CBD194ADA1E2348F272F5ACE8 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; + 2E22CC4B855064617E67E959A27ABA80 /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; + 2E364D57E16639645643FD2CAB2024F4 /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; + 2E504EA23615955675EBD96AF8D7D6A1 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; + 2E5649426DAF95BCF463ED454EC04582 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; + 2E625E60169FFE650103F1022492C6D8 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = encode.c; path = third_party/upb/upb/encode.c; sourceTree = ""; }; + 2E755A98FF924B8B99D499E5A1AA0B29 /* abseil-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-umbrella.h"; sourceTree = ""; }; + 2E8FFFB7075DEEC8E07BC77DE129C678 /* 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 = ""; }; + 2E9C92C3C93711461B1F302470718B6A /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; + 2EAF91ACDB9EBEF6759C545D91491A17 /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; + 2EB24F97021E7DE0A5E11AFDC2B63B1C /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/internal/dynamic_annotations.h; sourceTree = ""; }; + 2EB336BF11A711432F910B52B063C3CF /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; + 2EB8C00256225A9BA8C1B51EC4B203A4 /* FIRGetOOBConfirmationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.m; sourceTree = ""; }; + 2EBA5F0E365A852BBC20AEE91279504B /* 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 = ""; }; + 2EC194437E3F222A1DB87AC6D5192C38 /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; + 2EDEA4B672BEF332C5AB18AC0B9034FD /* 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 = ""; }; + 2F0A9DC7D59052BF3F1AFDE8E4D68D31 /* charconv_bigint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_bigint.h; path = absl/strings/internal/charconv_bigint.h; sourceTree = ""; }; + 2F1BACC607AF3B082CA3AA766D0C1CF9 /* 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 = ""; }; + 2F29F306315360662F87534E6F560F13 /* 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 = ""; }; + 2F3025D0075E7FBEC29538D761FAAD4C /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + 2F3B25C6ACD0648462C1A2B931ACDCB2 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; + 2F424470EFAB364140FB72FAA7F35855 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; + 2F50C49EAD40A5514FCEB3CCBB068E8B /* 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 = ""; }; + 2F540C0A381A4CD3FACA6BAAC0F1AD64 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/channel/handshaker_registry.h; sourceTree = ""; }; + 2F6B3F5D9726A6E35E2694A088F72FBC /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; + 2F6E3475A9594FA195C20D959FE7D9F1 /* 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 = ""; }; + 2F762CDA5FE9DEFA3A1BABCED1730757 /* FIRMultiFactorConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorConstants.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m; sourceTree = ""; }; + 2F967F5BE887A7D146BA84361773A1D0 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = absl/memory/memory.h; sourceTree = ""; }; + 2FA27A60F3529632BBE0A2DE2775460C /* a_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_print.c; path = src/crypto/asn1/a_print.c; sourceTree = ""; }; + 2FAA3D5D002C374322680FCC7D54B64B /* 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 = ""; }; + 2FAD38AFE7BB224C425B7C711C5F811B /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; + 2FBB62935A88ABBAC9F577706066DF9B /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Sources/Core/GTMSessionFetcherLogging.m; sourceTree = ""; }; + 2FBD00947D24CF5785EA0CB5DB2A4640 /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; + 2FE61196D1CC69C548EEF2B0187BBCE5 /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; + 3003F099289984414CED81BE6CCEC1C8 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_credentials.cc; path = src/core/lib/security/credentials/insecure/insecure_credentials.cc; sourceTree = ""; }; + 300CC38DB0B5158CC7DA24851D85D915 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/support/atm_windows.h; sourceTree = ""; }; + 301B180103AF2C8B2204554FED5198B4 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; + 30315E980D315C55E1326F4F751F03F7 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = port/thread_annotations.h; sourceTree = ""; }; + 3069316F90BCBDE497F4832516091635 /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; + 307F79BD8E072C96401D9524CEE36EF3 /* 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 = ""; }; + 30869874CF99E787A83C44EE7F69EF44 /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; + 30949AB31E938072A3E89FBCA6C2B6E1 /* 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 = ""; }; + 3094B075B65B70B3E4496B4CA50A5EC5 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; + 3096D54860191AA7536F3095F77FECC8 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; + 309CBD8BB74EDB1932BF53FA1FBBA230 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create.cc; sourceTree = ""; }; + 309E291A30E56D8B13BBE792D7C21CF5 /* aead.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aead.h; path = src/include/openssl/aead.h; sourceTree = ""; }; + 30A5CA2A1D39466D67AE1A6F566FB11D /* is_epollexclusive_available.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = is_epollexclusive_available.cc; path = src/core/lib/iomgr/is_epollexclusive_available.cc; sourceTree = ""; }; + 30ADE7D86FE79B7209769E41B9B2F663 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; + 30B1BC53D15048019DBE5A986F160113 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; + 30B73ED129AE8AB0157A1E8395F33F34 /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.c"; sourceTree = ""; }; + 30B8747CF4B6991912C14A471762EDA1 /* 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 = ""; }; + 30DBB5E0E9EF475E5CEF957A8593DB08 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; + 31009BED7AAF5A9E454E636103159E2F /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; + 3103D2707A39D8E54EE8A61BA87FE160 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; + 310DAF67CBD5C72F475096BB20B3F6AA /* 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 = ""; }; + 3115FE7A90DBD8CCFBE7780AB549BCEE /* index.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/admin/index.nanopb.cc; sourceTree = ""; }; + 3127AC598F2779B660A46CE00B1E91FB /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.c"; sourceTree = ""; }; + 312BAC6CF8DE4AE1C603E9C22EA8C092 /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; + 3132C87EF9727DF1E2E73C7611959107 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c"; sourceTree = ""; }; + 315277415A9A34154F99B049F2D43DF9 /* endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian.h; path = absl/base/internal/endian.h; sourceTree = ""; }; + 3161FE98E759013EF058F4386C9F0439 /* FirebaseAuth.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAuth.modulemap; sourceTree = ""; }; + 31682EF8984ED45FFB920CD03C8174D9 /* 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 = ""; }; + 3175E8BB3C13622D66AFFD8B387AAEDE /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; + 31762A74C2BA97BCAC41C45C3EAC24D3 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; + 317DEA1DD53EE8F564157910F8FB34CA /* FIRPhoneAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m; sourceTree = ""; }; + 3182329ECB517D3B918932194D3E7784 /* 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 = ""; }; + 319EBB9904E3DB737CD831F84DCA675E /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; + 31AAB36AB80672070D4A20E260A19077 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; + 31ADCF55E097F295B6CF83A4F8650A98 /* FIRCreateAuthURIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.m; sourceTree = ""; }; + 31BC3E811530CFC8F0EF0226B7348954 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; + 31EC79FFC0C2D25B66EE18D8EBBA580D /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; + 31F4323F6371A2D3B91916934F8DE5C5 /* discrete_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discrete_distribution.h; path = absl/random/discrete_distribution.h; sourceTree = ""; }; + 31F49596DE6787F85B343DA7908CA831 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; + 31F550F5C89C025EEC6B4C0B981FD656 /* create_default_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_default_thread_pool.cc; path = src/cpp/server/create_default_thread_pool.cc; sourceTree = ""; }; + 3206DC71A33E682E65CEB0085F23E65D /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; + 321BFECEF6999A994A74CCDDBEE3155B /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; + 325EDD8F5946E6544DAE6BFA35B43A4C /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; + 3264428575B7876E3234C6D9DC705381 /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; + 327C3F7CD52C11727E32EE2AEF37A055 /* server_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_address.cc; path = src/core/lib/resolver/server_address.cc; sourceTree = ""; }; + 329058B2D7C9767BFF63C26857EFA30F /* 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 = ""; }; + 329E482859E043F8419B897E6DFBCA76 /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; + 32B217E6757A64D6899564D0CDC94A55 /* leveldb-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-prefix.pch"; sourceTree = ""; }; + 32CC31E7EB007F583AA305EC87E9BE43 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; + 32D5DD29E5A90125973A285D0ED42E24 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; + 32DE90642C00727EE76FECFC70EAA5B9 /* a_d2i_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_d2i_fp.c; path = src/crypto/asn1/a_d2i_fp.c; sourceTree = ""; }; + 32EF15AF9464B10EB878D6622EB20C70 /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; + 32F532589F28D3D46227FCF234D9B056 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; + 32FF9A95BC61747B387449B0212A6666 /* accesslog.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.upb.c; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c"; sourceTree = ""; }; + 330797191A14DC64D0939FDE3ED486AA /* GDTCOREndpoints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREndpoints.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m; sourceTree = ""; }; + 331C32CDC4285A8C87B67DC6635AFF28 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + 332CABF320340B8B8D7B16E4BE4D57F1 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; + 3333EA7F312E1EA6226237E3F0DB9641 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromisesObjC; path = FBLPromises.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3357F12C6D535E9D39B0257434E716F3 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; - 3377F11FB830CB2910DC9922CF675B8A /* evp_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp_errors.h; path = src/include/openssl/evp_errors.h; sourceTree = ""; }; - 338AD937C5D82034B874829C27B672D3 /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; - 338DCFDF07BF23D05CF7099E55CD03AD /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; - 339451B1E530FE7CBDA9C45BD6ADD87B /* have_sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = have_sse.h; path = absl/container/internal/have_sse.h; sourceTree = ""; }; - 33B7EEF5256573EE04339179405CAD3C /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; - 33D878849C7C735A5538DC91CB06B95E /* 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 = ""; }; - 33E148A32E81CE02789BD5E8B8E6A2F6 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; - 33F6EC1DF8D438D5408BDD437ABB19C2 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; - 34092176C974227E1B825D596BB3580E /* 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 = ""; }; - 34491EBAE4F913D87F311FE88219C475 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/security/auth_context.h; sourceTree = ""; }; - 344E025219EFF315DC636FCB840F7266 /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; - 34632AF358CE4E6CEBFF021A951862A8 /* address.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c"; sourceTree = ""; }; - 34651B372889054CA1EF487B86F7754E /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; - 346711871383A162527FCAD76FE81CC7 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; - 3473FFFF8960559F72A9FB33E8906BDC /* 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 = ""; }; - 3484B2187B50937B04F33D472FC3A18D /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; - 34961D4577F6699640DCBE1FE90D3889 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - 34B5523EBCFB7AD3B0A50EE4F710AF9E /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; - 34CC0BD5618599DE64D5433E71949B4D /* pcg_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcg_engine.h; path = absl/random/internal/pcg_engine.h; sourceTree = ""; }; - 34DA46C8AD75AC54D0AE0F95E7CB5580 /* FIRCreateAuthURIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.m; sourceTree = ""; }; - 34DB73A41B0B3D3E2D58654BF92182FE /* 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 = ""; }; - 34DC42CCEA2E96DE368DF549B28BCC6A /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; - 34EB3707EDF7F049D8480DCB263651A9 /* arg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arg.h; path = absl/strings/internal/str_format/arg.h; sourceTree = ""; }; - 34FBC651550B80DE130C4659DB76FBF9 /* reflection.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = reflection.c; path = third_party/upb/upb/reflection.c; sourceTree = ""; }; - 34FCA4B5D9C8BB7BECC604BFC2D98AD4 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - 34FCD35F76CD3465E5CF8DAE795F964C /* 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 = ""; }; - 350BB5B6ED4023073151A810AFA778F0 /* log_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_reader.h; path = db/log_reader.h; sourceTree = ""; }; - 350F82129B072868F3B3EC0AB835B050 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; - 3514264010C09B881E6399A2067BD9AC /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; - 351C2030094A0B30ED06BA4FB171AD64 /* 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 = ""; }; - 351F5AD28BA1065D0765745AE13DBE2F /* cycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock.h; path = absl/base/internal/cycleclock.h; sourceTree = ""; }; - 35381D5F445307A4BCBD97FDC475B3C2 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.c"; sourceTree = ""; }; - 355446109EE55B4B00E77AE497275B42 /* 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 = ""; }; - 355A3A4870ECB7DFE003AF192D259D78 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - 356E0DEB164D923940B3FE6991E71990 /* 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 = ""; }; - 357C0EE43A790060F71C003C23DF0341 /* FIRFacebookAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFacebookAuthProvider.h; sourceTree = ""; }; - 357D8DA16FD8A238CA43A10F5357676B /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; - 35866E00BBAA2DE6F52A7E7BCB54D059 /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; - 359F4AC1A320E4BE15F76DE391F2AF78 /* FIRAuthRPCResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCResponse.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCResponse.h; sourceTree = ""; }; - 35A187026BEB48CC183F2B53F9FD0FB0 /* posix_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_logger.h; path = util/posix_logger.h; sourceTree = ""; }; - 35B2EC2870CC90FB892D1544E3724FBD /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - 35B979CA7A8CFBCCFB84C79CDB0131CD /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; - 35CDFD297A319020F3F9A2DE24F7A104 /* FIRAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential.m; sourceTree = ""; }; - 35DC211A1B169631A2AAF447ED18AF9E /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; - 35F9879CE34CA6270EFDABCFFDC56A87 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - 364FE1668A9870E8FB906BF8A0E29D4D /* 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 = ""; }; - 3667DEE2D4A0B610F1194FB28CB05B61 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h; sourceTree = ""; }; - 366B7A05A66F656E0F1A68137EE718FC /* FIRGoogleAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGoogleAuthProvider.h; sourceTree = ""; }; - 3682895FACDF0D37E958708E547839C0 /* 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 = ""; }; - 36A66EC84DD34F10911E5EC0A70B1675 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; - 36B1F4ADC2A1AE05945D9DD5887D8C3A /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 36E890972A8A84EF7401755010A2EEE5 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - 36EA0F59F5ED9E0B2462C4D22414A774 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/decode.c; sourceTree = ""; }; - 36EB534BE9F9A3E573FCF52106032E45 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - 37045676FB2CEDFE2136BC4ECED519A7 /* 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 = ""; }; - 3717200A1A6922825FAC49F73D112EAC /* GoogleDataTransport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleDataTransport.modulemap; sourceTree = ""; }; - 372B2854CA1112609CD54E7C2AB696D9 /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; - 375812A905BE95F82BD50E548C00BDE8 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 376F71550B79518E43168F2BFFB5DD9A /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/impl/codegen/log.h; sourceTree = ""; }; - 37725DEADFA99A97087236A5E26BC783 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; - 3785186FEDDC3E57506D70F14FC0D82E /* BoringSSL-GRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "BoringSSL-GRPC-Info.plist"; sourceTree = ""; }; - 379BBF8B6B02A03A6FF782BEE0703C5B /* FIRGetOOBConfirmationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.m; sourceTree = ""; }; - 37A58A77CC5470E569424CC3B67BD68A /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = ""; }; - 37B1B1E1D580E9FA66354D0A8C7E5AC7 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; - 37B8C76488233F9B77C6A3CA062AEB52 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - 37BC3E2508C15E58712F08C92BE75E1E /* 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 = ""; }; - 37BEF1C798DECA77BBE0F70C5D42BF8C /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - 37D0B811F017EF432AF6BAF29C425735 /* FIRAuthAppCredentialManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredentialManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.h; sourceTree = ""; }; - 37DA25A646BF1A4E8B198FA3A2DBC6B2 /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; - 37E4386D74668883C28C4EE80EB8EBD1 /* 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 = ""; }; - 381D7A72344929717C0D4200914EC9FA /* 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 = ""; }; - 38336A03A8D5B55061CD43C2CA7AD1D8 /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; - 383C0F8BFC5DB8E70916CD8D5DA858AC /* FIRResetPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.m; sourceTree = ""; }; - 3853CE95ABEC5DB440397F8DAED51930 /* 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 = ""; }; - 3867EC36B10F71588E86C3C566262914 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - 38758B9C60618B24EF16969AB849A353 /* FIRVerifyAssertionRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h; sourceTree = ""; }; - 387EB660A9A8BC55A4AF697223C536CC /* 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 = ""; }; - 38844297584C3846ECDD30F16E3104EA /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; - 388B364F57743F942647BC5FB98CCA27 /* log_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_windows.cc; path = src/core/lib/gpr/log_windows.cc; sourceTree = ""; }; - 38960C23A5CDEF5518BA2D029DD0B7B8 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - 389B4E55E130BCB027299458035FA3B8 /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; - 389EFCA755EB4F8668D8F889C277C70E /* testharness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testharness.h; path = util/testharness.h; sourceTree = ""; }; - 38AA84479919B2FFD980307C3D2922D8 /* dumpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dumpfile.h; path = include/leveldb/dumpfile.h; sourceTree = ""; }; - 38B368D8B91E7D953A57ABA58FFF99D1 /* 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 = ""; }; - 38B8E02B0D17EF431AC21F08FCA42544 /* 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 = ""; }; - 38B9273E7AE3746D054C8426D81E4F11 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; - 38B950BD01813F0536A3D34594491EEE /* 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 = ""; }; - 38C071269F35009281C67BF56ED000E7 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; - 38C3FE5C7A68F5C25C983342F8F06A78 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; - 38C40DA56BB662124BFBC6878106A8B1 /* 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 = ""; }; - 38CCC93525E024F10865F0FA8C041B7B /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - 38D90CD3D87BD8FFC13023AAAED32CAC /* FIRSecureTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.m; sourceTree = ""; }; - 38D9852020646367A2F232171EE79850 /* FIRAuthAppCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredential.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.h; sourceTree = ""; }; - 3900532E6EEAAA1FBA1F9E37322FC946 /* FIRAuthUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUIDelegate.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h; sourceTree = ""; }; - 3906597C467D6690628F0B6330797BFC /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = src/include/openssl/evp.h; sourceTree = ""; }; - 390689CA897899BB9C8215FD2C1435D1 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; - 390BDC63537D7CDD7BA077745F6253B9 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 390FB7D3156824871D761D76C5B0CF24 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create.cc; sourceTree = ""; }; - 391D19E6D30847380C7B1410B0D1797B /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - 39215536261C68C18E489F54AE7533EA /* FIRGitHubAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.m; sourceTree = ""; }; - 39285212A4A8CF35EA699896DF026AEE /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; - 393DA0FC00B49ABF622D54F72B096A0D /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = include/grpc/support/alloc.h; sourceTree = ""; }; - 394011907B2C5045603AED3A65EE8EE4 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = absl/base/options.h; sourceTree = ""; }; - 395189B957C79ED0720D3385CC82A700 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/aes/internal.h; sourceTree = ""; }; - 395811DC5AA530C99EF2FD78EC043A8C /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; - 3964536927C75365D692CF7268D5C2C1 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/support/method_handler.h; sourceTree = ""; }; - 396DFEBE30AE4E198AAB74002B3C8CBF /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; - 397CA41A1D921FC5669816B7D4B7C988 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; - 397E69A1BF13B0B9D1B1B6EB7AB9EC2E /* flags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flags.h; path = third_party/re2/util/flags.h; sourceTree = ""; }; - 3983670B229BF8C8B83F57F6309D14DB /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 398A37D7EE85D3506F8C02E6A7795390 /* spinlock_wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock_wait.h; path = absl/base/internal/spinlock_wait.h; sourceTree = ""; }; - 398C58EA6AFF8D30B83671182AE98735 /* policy_checks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = policy_checks.h; path = absl/base/policy_checks.h; sourceTree = ""; }; - 3991A41E8862EA047524A7B5353D4C08 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; - 3998BB66C64F6FB6F2C28162B2E8AF50 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; - 39A961976764BF330487B056DE5C71E7 /* db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db.h; path = include/leveldb/db.h; sourceTree = ""; }; - 39CA457A5A01157C2B91E819DDCC4322 /* 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 = ""; }; - 39D1C24B205845449C3DD36C7733E568 /* xds_resource_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resource_type.cc; path = src/core/ext/xds/xds_resource_type.cc; sourceTree = ""; }; - 39D4D290E2C339574F8276D54D461A34 /* FIRFacebookAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.h; sourceTree = ""; }; - 39DD3E5B16720861D303CAF81013C359 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - 39E8209446678F9C564D937FCBAB0C03 /* FIRAuthAPNSToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSToken.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.h; sourceTree = ""; }; - 39EBD7290309927D11A478C725CFCC20 /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; - 3A114BCE9571AA2D9ECAE71024A349E9 /* 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 = ""; }; - 3A14B53094333DAB228DAD025ED01610 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; - 3A17E56634F88242B97A2500C7BCD957 /* p256-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64.h"; sourceTree = ""; }; - 3A1A0D08D2628871FED2065BA20D2836 /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; - 3A2D112D05844BAE85A9D5F277C4600E /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/support/config.h; sourceTree = ""; }; - 3A351E0FD4E085ECD644A596488A38EB /* 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 = ""; }; - 3A58FF6E7DC626C03C28441DD98EFA40 /* 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 = ""; }; - 3A59B322654824183166FA38D78FF95B /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; - 3A5CF7FCC3A671D9CFC2BF9433FDC736 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - 3A609003157E264550C579338BDECEB6 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 3A6B5F2A71E7C74B21DE797E5DE5A864 /* FIRSetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.h; sourceTree = ""; }; - 3A852D5097DE3A16C56B0E8443BF11CA /* Libuv-gRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Libuv-gRPC-dummy.m"; sourceTree = ""; }; - 3A8A9152B5AB331998D27BC332BCFF8F /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - 3A9A604D130EC6035AF7272F56B6B509 /* 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 = ""; }; - 3AAAB9DCCEA56127320FB14C51D3BE7F /* 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 = ""; }; - 3AC9F2B2AAFA037C3768B7FE6FF141AF /* coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = coding.h; path = util/coding.h; sourceTree = ""; }; - 3ACADB5AE041394DC7A79FB2DBAF6173 /* 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 = ""; }; - 3ACF56318EEBE01E1CC84185811B87B7 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c"; sourceTree = ""; }; - 3ADDAF8AD6A5384E779E32B918916FA1 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_encode.c; sourceTree = ""; }; - 3AE6417212A9C1AE8A5B704BE8BE7FA6 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; - 3AF0C86B29D67C1A28FFB6043385D4A3 /* 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; }; - 3B03CDE5AAA98BDEC3F7E232BD652E69 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; - 3B03E4AAC355F994818EB10B9B5D850E /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; - 3B07CDF24AFD76CBF7FE99759886C34C /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; - 3B14D60525A22925EDAD0F0C1BC7987F /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - 3B1E528EA4055534B02F72C39638A213 /* FIRAuthDefaultUIDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDefaultUIDelegate.m; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.m; sourceTree = ""; }; - 3B40A5FB78E381513B04D30F0F3DF49E /* grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc.h; path = include/grpc/grpc.h; sourceTree = ""; }; - 3B4C87F1BA0D825360C1186ABDEC1741 /* FIRAuthNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthNotificationManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.m; sourceTree = ""; }; - 3B66A91920AEEC73F3627121DD04780B /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_throttle.cc; path = src/core/ext/filters/client_channel/retry_throttle.cc; sourceTree = ""; }; - 3B932235E4F3FAD4839BE79EC00B2B1F /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; - 3B99AF27C2D6137A74F0735CA1DEE096 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - 3BC5E432E01D2FA1A51A2A43783CFADB /* 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 = ""; }; - 3BCEBE2AF0BE7EA1D917527508500E80 /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_resolver.cc; path = src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc; sourceTree = ""; }; - 3BD55324EBEF7B214149B1324FE3B018 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - 3BEDD253E20BA09C7983444152C002AF /* 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 = ""; }; - 3BFD8FDEFD9D04376216A771C75FD9C7 /* 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 = ""; }; - 3C0AD87FAD0EF5A2541ED6F75DB2FAB2 /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; - 3C1475707A7E54804EEDDC26C78F1881 /* 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 = ""; }; - 3C1A6A4E290291A81FBA6C32461036A6 /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; - 3C1D249510EBA504A9223F7F6DFD0FAA /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/serialization_traits.h; sourceTree = ""; }; - 3C217BBE0010EA2018747A49C2E09B16 /* optimization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optimization.h; path = absl/base/optimization.h; sourceTree = ""; }; - 3C29945C319D2BB6C311C66D89A40D88 /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; - 3C48F4AEA8295429A5420D9D9DD1142C /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; - 3C5F42D556C26DB296C6B68AF657A8EC /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - 3C646D57A34E390E5AD2E5E427DFBE04 /* 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 = ""; }; - 3C6DFD5E1EFE0699F1666D90AB5D9D8E /* 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 = ""; }; - 3C788C6B17F482BFD35D92A8C1C83338 /* gRPC-C++-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-umbrella.h"; sourceTree = ""; }; - 3C8EB784B0ABDB3DB9B7F1A8CEE65174 /* stat_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat_posix.cc; path = src/core/lib/gprpp/stat_posix.cc; sourceTree = ""; }; + 3352DD7E9B32DA32FD0938088A06E613 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/poly1305/internal.h; sourceTree = ""; }; + 335D624CF6D6FB7C309EC768389861AA /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; + 336AEA0D478579AD0455B11FEEAC47D4 /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; + 336D40D08AA9DB93F4E84221474DDE52 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; + 3376C39883C69A3443CE04AF7CB1BC34 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; + 33B79C59F59F3A79716C2C69E630659E /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; + 33C6124DB53A2D3166FC1DDB38F5C0FB /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; + 33CC137C078B1C7033561A34382A5F6E /* deadline_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = deadline_filter.cc; path = src/core/ext/filters/deadline/deadline_filter.cc; sourceTree = ""; }; + 34081ECC138CFD39F6E0CE0FCFFD1EEF /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/internal/bits.h; sourceTree = ""; }; + 340FAE272D76CF2EAD2FBB111B2191C1 /* FIRResetPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.m; sourceTree = ""; }; + 341E7094CD94588057C95DA2DFACCFC7 /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; + 34436651D5CB14A308EE00D04232F8C6 /* maybe_document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = maybe_document.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.cc; sourceTree = ""; }; + 345652508477E4EA8900CC27A52000C9 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/optional.h; sourceTree = ""; }; + 3459A147E55050F3E4F0CF09BFEB9730 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; + 347236CC35C107AB1AB78F5169C4B556 /* FIRAuthTokenResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult_Internal.h; sourceTree = ""; }; + 349759C76FDED862A17E3B0E68A23820 /* FIRTwitterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.h; sourceTree = ""; }; + 349BA6408FE27319939D143F449200E7 /* 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 = ""; }; + 349E8CDE793B2CE932F468BEBEFD1386 /* 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 = ""; }; + 34A2A0D4FE749206479626D6608F02BE /* 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 = ""; }; + 34A9DAE4BB1E9A698B68626C59670CA0 /* filter.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c"; sourceTree = ""; }; + 34AF97BA28592DC7F5C3A97979CBFA56 /* cpu_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_linux.cc; path = src/core/lib/gpr/cpu_linux.cc; sourceTree = ""; }; + 34B27D61E5DA1540B8F9A17334862E18 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; + 34B4760C29B7455EA1C78D9C508FA68A /* proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proctitle.c; path = src/unix/proctitle.c; sourceTree = ""; }; + 34BAA9CFE82C4136E17331565A543E6B /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; + 34BD4DCEDEC1E1F332A79C29D8CCC5A2 /* socket_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_posix.cc; path = src/core/lib/iomgr/socket_utils_posix.cc; sourceTree = ""; }; + 34D28D3A405D888584AFA9814535F9F6 /* 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 = ""; }; + 34F1B69144C04AF4B5887DD2A93D7141 /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; + 34F8A847C8D1A7DD0D7E3C3FD2BBFF7D /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; + 34FEA3E610E827405AA5544188088986 /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; + 3504954C67B4585D55B86266E8A2FC9C /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; + 35062E72C18DE895C67666887F2ED13D /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/impl/codegen/sync_windows.h; sourceTree = ""; }; + 35090CAE4FD57571082E5A3FC8287D4F /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = Firestore/Source/API/FIRTimestamp.m; sourceTree = ""; }; + 3519D86314F640F1A4BB887F4714E004 /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; + 35229B169CB0C25BE73F74AD2D0DAADE /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/impl/codegen/completion_queue.h; sourceTree = ""; }; + 354C62BDA8DCC7D3DA0FFA69418D57D1 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = include/leveldb/table.h; sourceTree = ""; }; + 35587C08DED7EECF8F601C4185B4092C /* umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = umbrella.h; path = src/include/openssl/umbrella.h; sourceTree = ""; }; + 356335F3B31FAA05D7F6EE5A31DE2C9F /* uniform_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_helper.h; path = absl/random/internal/uniform_helper.h; sourceTree = ""; }; + 35649C1A1F8DA4A9B385662A06861C50 /* cpu-ppc64le.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-ppc64le.c"; path = "src/crypto/cpu-ppc64le.c"; sourceTree = ""; }; + 359D731067F13BF105D9BA28817FB2A0 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; + 35AD2C99758DAD9E42EBFA31E4911CB0 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; + 35BD3866AD6D42C1FAAFD41699566682 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_crld.c; path = src/crypto/x509v3/v3_crld.c; sourceTree = ""; }; + 35CFDBAB2DF3427D0062AEB0D84A4C5F /* 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 = ""; }; + 35DBC6FC3810FE7B91741D28B4F78BA3 /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; + 35E26A23E0EC6AFAFEC2EB6AB1D7F5AD /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; + 35EA413283A213CE22D9D7571394350A /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; + 35F4BB0B1C9B09FF40778227CD7AEA80 /* ssl_aead_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_aead_ctx.cc; path = src/ssl/ssl_aead_ctx.cc; sourceTree = ""; }; + 3600BC5465490F7D0650A582AAAC8E59 /* FIRMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorInfo.h; sourceTree = ""; }; + 364D47C7DF4304D7F081B97607B983C2 /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; + 36540E334219492265103DE5E0358D25 /* 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 = ""; }; + 365F68BBEB1F7FCBA99DBCC36C12DD6A /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; + 3671B452B382FB4338497B5ACF2484C1 /* 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 = ""; }; + 36B25D5358C16E94A2090B6FADECE50D /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; + 36F988D40EF06BAB7C6FBBF995871876 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/impl/codegen/client_callback.h; sourceTree = ""; }; + 370F83BE4EAAF3C550E082FC6D6DAAC9 /* GDTCORStorageMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageMetadata.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorageMetadata.h; sourceTree = ""; }; + 372DADBE14421823DB7341B40A977724 /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = config_selector.cc; path = src/core/ext/filters/client_channel/config_selector.cc; sourceTree = ""; }; + 3730040AD7FDF9B02CDC18D3A8EEAC17 /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; + 37314311BD2A89FD9D2B43819D2FD7B7 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; + 37525F35EDAF53DE1E4E8FADBBD4B05A /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; + 3769EBD9F895C2674A207DF500AED3B6 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; + 376E016602CA27F849C5034F43027B41 /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; + 3774C4542B6C507E5EAD504513669F21 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; + 3779E0F16F1521F6F3277F478A65B3C0 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; + 377D2116DDE02A4493547BD2A68F6C03 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = src/include/openssl/safestack.h; sourceTree = ""; }; + 377DA236AB03F2BAEE4F557B1579EC84 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; + 3780C86B2D7E7B1F9D078392B213D9A7 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; + 37C5A878B8F9C2938221A570432644E3 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; + 37D0DCB4D87AEB162B62039EB34D2C87 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; + 37DAC466D0FF2071D7F2C0A2907317CA /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_client_stats.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; + 37E04BB2F4FAE36E40FA6E84D4832EC3 /* 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 = ""; }; + 37E93DA065798B44653FDAB12CC9975C /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = absl/strings/string_view.h; sourceTree = ""; }; + 3802DE7DC9ED21508FB4D808334004E0 /* cord_rep_btree.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree.cc; path = absl/strings/internal/cord_rep_btree.cc; sourceTree = ""; }; + 38082B58E056105068CA8C37CF7E947A /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; + 383F6C8E79280562AAA56C59CE1B3A8C /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; + 383F744E37406F5D7B9AFA63D9CDA094 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; + 384744E9A7CB5EB7C59645E755F1DDE1 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; + 3874B77F56584C8582A6FED538C523B5 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; + 3877C2FF7363C478318D1570ECA4AC01 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.h; sourceTree = ""; }; + 3880011408AE9B2C6734988D40BB2F4D /* binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder.h; path = src/core/ext/transport/binder/wire_format/binder.h; sourceTree = ""; }; + 3881B927DDC3D2FE9CE27E622FED25F4 /* GDTCORStorageMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageMetadata.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageMetadata.m; sourceTree = ""; }; + 38858852E3D433E71E057F1421478E14 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; + 38A9B6F0A90CC5BA7B33CF2237F9C9BE /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/support/slice.h; sourceTree = ""; }; + 38B994EA2A5E3AFC58F55F16CEB3E0BC /* FIRVerifyClientRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.h; sourceTree = ""; }; + 38CAE81BDC193A192B682DC6CD1C3669 /* core_codegen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen.h; path = include/grpcpp/impl/codegen/core_codegen.h; sourceTree = ""; }; + 38D21598A5E15C341C05D98171CAA01D /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; + 38D298BCCDFBF6F5A131F2F74529E894 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/symbolize.h; sourceTree = ""; }; + 38EA73EACEF607FDCAC0D2F319DB96BC /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; + 38ECD1635081526C85D9B7F1F39E3F75 /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; + 391181D14502A21D0CA7FAA8AC458586 /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; + 392BB8539BEAF514B949281B459BABA2 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; + 392DD530D6D0760FD5D217FEFA49696D /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; + 3950FD39A0C3194511848628B78EFF70 /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; + 396DBDDCB905DB57DBCB4BD46C24ED3E /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; + 3974236CCD6A8FF64A8F9E8CB7CE3499 /* FIRUserMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserMetadata.m; path = FirebaseAuth/Sources/User/FIRUserMetadata.m; sourceTree = ""; }; + 397AA49D4E32C37CC6C46FB56AE716CC /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; + 3987E0D504411F0B2C4E16E143C5FE53 /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; + 399E51C93DF60A489E484E4EF8386834 /* 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 = ""; }; + 39D725A6D66D200A4062814D8DCD798D /* 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 = ""; }; + 39DC2C0141F8B43D27B7416DCBD80462 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; + 39DE07AE92093F3843EBE19EEC9D9F68 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; + 39E7D270746FB452F796128CA38B9F1E /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; + 39FF8A679572874826445F00962112C8 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; + 3A0593E089D51D14F7AF5F09D44C5F6F /* explain.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = explain.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c"; sourceTree = ""; }; + 3A0F259892FFA8B44D379B23F27831E1 /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; + 3A2929F85EBE366283E83E4F709FF192 /* xds_channel_stack_modifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_channel_stack_modifier.cc; path = src/core/ext/xds/xds_channel_stack_modifier.cc; sourceTree = ""; }; + 3A320C40973853310B12442B3F0EE31D /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/support/stub_options.h; sourceTree = ""; }; + 3A5347C2007CE7658DEAEE91C2477223 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.c"; sourceTree = ""; }; + 3A588735D33B9410B0E7E3BA2B42ECA5 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = util/status.cc; sourceTree = ""; }; + 3A7692299C7A761674EC972450ECB93F /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; + 3A8E71C1E843F42C9B8A15417A36247E /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc; sourceTree = ""; }; + 3A9065CFD3738637DF3726FF12EB2BD8 /* 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 = ""; }; + 3A908152B7B2D5531DA8798A30739E48 /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; + 3A9B3F493B4EDDCD98FCA40CAAB479FB /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; + 3AC33586939174D1419C097321225B57 /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; + 3AEDDFE15F190AF5153C2F9559D81F50 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; + 3AEF06ED64999A6F10753E3EDAEDF7A5 /* str_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split.h; path = absl/strings/str_split.h; sourceTree = ""; }; + 3AFA09B191C24C5363C0D7AAD76305C4 /* FIRMultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactor.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactor.h; sourceTree = ""; }; + 3B026653B90572D745AB5D08A4DAA5F2 /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; + 3B056ADB961043F51C223BFE78B79B4F /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; + 3B20A5A8AB31DB4C604172BD4893F321 /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; + 3B211B34506D911E2F346BB8EB0E71BF /* 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 = ""; }; + 3B413C77F04AE0E63FC2DDB36A89F9D8 /* local_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_credentials.cc; path = src/core/lib/security/credentials/local/local_credentials.cc; sourceTree = ""; }; + 3B4D2D3501E5FD23A3F0E48EEA70969B /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; + 3B4DBCB3412749625EEC3A30195E590A /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; + 3B6789BA15DC23EDC6CE289C05236B08 /* 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 = ""; }; + 3B827D0848DAE139C23BBD236D7C9D3B /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; + 3BA5DA75BD6CCC7F96512FDCC497C869 /* 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 = ""; }; + 3BBC78FCE741307FC70E6D8F1CA1FDFA /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + 3BC1CEAB855770C98427CF981FF0B492 /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; + 3BCF72BAF98210BA2D49A68D2B9139B1 /* 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 = ""; }; + 3BD8DE7BAD4E725344F47233AF850C32 /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; + 3BE3E85F22BFA2653E3BB2C4936F61B7 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; + 3C07CB86C3152848282FA1CE23AC0DEC /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; + 3C1F147E0487A0FCCAD1986DA59699C9 /* get_current_time_chrono.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = get_current_time_chrono.inc; path = absl/time/internal/get_current_time_chrono.inc; sourceTree = ""; }; + 3C47F293D49C30B3E0290BBF2DC9CEA5 /* 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 = ""; }; + 3C520F246B7C82D3BBBC969D2AB0E518 /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; + 3C698D114E0EE6E7F70E713612BC1979 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; + 3C77C8C358148481DED102534EC051A8 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; + 3C81ACF44586BC3C528605123DECCD24 /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; 3C9338EA578D63C3C7663FD96C2A31C5 /* Pods-Flash Chat iOS13-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Flash Chat iOS13-dummy.m"; sourceTree = ""; }; - 3CA55C97A9F2D185301AC5EAECCC36E1 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; - 3CB3512BB1D7A64A38FBA25A1B84D423 /* 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 = ""; }; - 3CC9630113A9804C2DDB6863BFB961A3 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - 3CCAB43DC02E598FC4D40B6F9B118BBE /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 3CCD4027D7B087861F3F55BD3690487E /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/codegen/sync.h; sourceTree = ""; }; - 3CF39C684DB827D8F5843149231EDF5F /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; - 3CF7C4E9CC3AE527B125BE9BB12CAA60 /* FIREmailAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIREmailAuthProvider.h; sourceTree = ""; }; - 3CF867A681925FB1B8E1F5D78D5D35BE /* 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 = ""; }; - 3D0712B9A9B768261FC354452CE49365 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; - 3D13134B34AC6EC7100DC5153B9F095A /* FIRWithdrawMFARequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFARequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.m; sourceTree = ""; }; - 3D1419752C0DCD92DAC4A5D71D54E846 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/impl/codegen/time.h; sourceTree = ""; }; - 3D1CF25D3DC1DA684B7B1C3E37744E49 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 3D2367412FDBD2B02BCC9F3F95E2137E /* 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 = ""; }; - 3D27ED8FAF5D29E321B635DC5CCEA8C7 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; - 3D45033A5D40A36FE64F1E831E32F47E /* FIRFinalizeMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.m; sourceTree = ""; }; - 3D49089E8EB06F2A253519BB7EB28D96 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 3D4935C97E91F885941132A44D5310DD /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; - 3D4F58B23B78A48C12D4370FFE84800B /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 3D53A297877CDC46173C5A601C6DD358 /* gRPC-C++.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.debug.xcconfig"; sourceTree = ""; }; - 3D65FF7D663DF78C36F741B6304075BE /* FIRAuthRequestConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRequestConfiguration.h; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h; sourceTree = ""; }; - 3D82748B45949714AAE3767091D38D8F /* FirebaseFirestore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseFirestore.modulemap; sourceTree = ""; }; - 3DA303DBCD0B07FAEF7DD0E176A042EA /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - 3DB438BD3219AEECDF6FD1E4A82E83B0 /* FIRDeleteAccountResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.m; sourceTree = ""; }; - 3DC0107F0C9D63E698485CE5E573541E /* FIRUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUser.m; path = FirebaseAuth/Sources/User/FIRUser.m; sourceTree = ""; }; - 3DC9F3AB799D826433E59BBAC00C70D7 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/chacha/internal.h; sourceTree = ""; }; - 3DCB25CC4DD1BA3BEE60D51CF3DCED63 /* 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 = ""; }; - 3DEAD1104A9AC86FE223A9055633EE29 /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; - 3DEB0765CA6612B20935BDE6214A3B76 /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; - 3E0314AB7EE2ED65DE4C224C8FE62B44 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - 3E03B4CC5DFFBDAF1F4AC00B0D31B6C1 /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; - 3E0B38D5A88BF6FA2B3D59BFB020BEE6 /* iterator_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator_wrapper.h; path = table/iterator_wrapper.h; sourceTree = ""; }; - 3E1C7031109AF63AFA8568C092D4108D /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; - 3E2C8B42A4461C643D2A8C3C9A65650A /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 3E34FF44D3B8831D1BC8865E33160244 /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; - 3E5110634BE96839141BF5E440B99114 /* authority.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.c"; sourceTree = ""; }; - 3E51D4ECA1A8BA98D9E1D8F80983F128 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; - 3E6DC40E351A47A3F7D5C7FD67BD475C /* 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 = ""; }; - 3E7B6BB468DDEAFC93A24A78361E0DB2 /* threadpool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = threadpool.c; path = src/threadpool.c; sourceTree = ""; }; - 3E8357A1ECFAF908250B25DCBB8D91D9 /* 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 = ""; }; - 3E9C70FCB53E4F64BA9683873770CDC3 /* census.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = census.h; path = include/grpc/census.h; sourceTree = ""; }; - 3EC32066E9E3661CC345DB644256EB42 /* CLTypingLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CLTypingLabel-dummy.m"; sourceTree = ""; }; - 3ECBD299F5CB35CCCA5E181F73C0A80A /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; - 3ED40FBFF36D5236F836E60AD9233617 /* FirebaseAuth-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAuth-umbrella.h"; sourceTree = ""; }; - 3EDE27C56EE9D0DB6355BD59E4D57CB7 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; - 3EE49BD522D8869C70EF8353A9E3DDAF /* 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 = ""; }; - 3EFBD16C412F0BFC36EC99FC51068230 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; - 3F0F41918E1B54D5852E73828BAFE1C4 /* 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 = ""; }; - 3F1837D7B34E7A0B9C4B4DB4AE1721A7 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; - 3F32C5407C3B2DD0049AE55A06D8AD6F /* FIRPhoneMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo+Internal.h"; sourceTree = ""; }; - 3F4D3C79A1EFD71DAFA06D15113FD93A /* 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 = ""; }; - 3F5292B9062A1DA121D0F62ED11552C9 /* 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 = ""; }; - 3F6C0E851B9F6B7DDCB7052DB7869ECB /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; - 3F7102986CCAAD8488D026CDA6A6B5C4 /* 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 = ""; }; - 3F71566D09A34EC5C42C27FC4DCD6911 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; - 3F7947C8FF937D06BF74A57189163EA0 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - 3F9A2324EFE1A9094AB146BD55BE5FF2 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; - 3FB8A5EF7795FC6028C4CC6AA5C56E06 /* FIRMultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactor.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactor.h; sourceTree = ""; }; - 3FC4C4C93886B9E9326D162E2DD4C7C5 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; - 3FC5BF75FE215C2E05C25572297F40DB /* export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = export.h; path = include/leveldb/export.h; sourceTree = ""; }; - 3FDF4D5DF64A51C8ED5950D01332A0AA /* 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 = ""; }; - 3FE643B03358BF78DFBC8DC6A52D5CA7 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; - 40012589098D7D4EA2D89C5B597D61CB /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 400B92186A836269136B82034DD5B23B /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - 4011999713AC069C531D4FE0CBD5366D /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - 402AA420871B41EA30B847C4067C9005 /* FIRMultiFactorResolver+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorResolver+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"; sourceTree = ""; }; - 403420FD57F801406BA09CF67AA34299 /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; - 403AD6E4A0A1B734B555ABA203AAF905 /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; - 4051854AD41ABC7EB6239401ABA9230A /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; - 407479761867BC51108FDEF5AECCA921 /* FIRAuthErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthErrorUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.m; sourceTree = ""; }; - 4088D74A22F2C8BA9604AAD6BBEA807E /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; - 408B71D3E0267F149E463A0837B624E1 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - 409F28C9A0116E758506B28846AF151C /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; - 40A3CB94F9F0A09887BD7D5CF7B2CEC2 /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; - 40ABC8FF1A58776E5D32779906E6AD60 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akey.c; path = src/crypto/x509v3/v3_akey.c; sourceTree = ""; }; - 40AFCF9EB59D9CDAD4CC7EBBCBDEC219 /* config_source.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c"; sourceTree = ""; }; - 40C2FD00BB842A41577CAF6F3813640B /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; - 40D31D0B14057F3C93CA1E68111B6050 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - 40D7BDFCAEBC2D27A1490492E9B46142 /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; - 40DFB51FDED20D07155B0DC85FF4FFEA /* curve25519_tables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_tables.h; path = src/crypto/curve25519/curve25519_tables.h; sourceTree = ""; }; - 40DFE258C35DC934C0E722347EE71772 /* randen_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_detect.h; path = absl/random/internal/randen_detect.h; sourceTree = ""; }; - 40E5DC90843A442FE01FFBA6497092FD /* 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 = ""; }; - 410EE88F2B8901B01E6768AAA8C5A931 /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; - 4111BC5322C8CBCDE833BCD63559BC15 /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; - 413F45D9A1C0BF1D6B4AFF9FEF1236AE /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 4163B365CE1DBF17D040516574BC57D6 /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; - 4176D58D7F4745AA544A4FD9812706C2 /* 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 = ""; }; - 419A2F5E500E7EBB744EB470E5EE7A83 /* core.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = core.c; path = src/unix/core.c; sourceTree = ""; }; - 41A034203E4D9789F401092AC3308040 /* 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 = ""; }; - 41A3E8ACFA912A9AF76F6483F37B9328 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; - 41D96FBC9D0A6E1C99462DA2C4012D29 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; - 41D97CEA6CF023D662FDCA100E717093 /* 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 = ""; }; - 4201631D453E8A4896B50ABEAFF06D13 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/support/async_stream.h; sourceTree = ""; }; - 4207773A082DFEE41152DF199C6E7BE0 /* tls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c"; sourceTree = ""; }; - 42090D55DF53D66BCF53836855CA9799 /* 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 = ""; }; - 42198CDFAADDC4FBEAE9CD731EBD7B86 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - 422AFB3BFD9E3B15F6863171275A548C /* transport_security_common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = transport_security_common.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c"; sourceTree = ""; }; - 423513AA1A70B126235C93E3323B6A1E /* FIRGetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.h; sourceTree = ""; }; - 42355E783CB4889255904EB91487EF96 /* tzfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tzfile.h; path = absl/time/internal/cctz/src/tzfile.h; sourceTree = ""; }; - 424A4650FD0F4CDB844B98D3AF750136 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; - 426693FD5A1BEE6E78EB7781E6425DEC /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - 427CED8AF3C4C27C7D6BD3F25EA68822 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; - 42A3036A3EB3F2CAB574A190EEF2227B /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; - 42AA348F4D249921F504E4AD6864C962 /* 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 = ""; }; - 42AF9E9DCB7DC1A118368FF058184E4F /* FIRFinalizeMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.m; sourceTree = ""; }; - 42B03F2B5C06689922427E4BFAD136C0 /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hkdf.c; path = src/crypto/hkdf/hkdf.c; sourceTree = ""; }; - 42CF32CD743B55BBCC6BDDCE7C8A802E /* FIRMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorInfo.h; sourceTree = ""; }; - 42D20D8C5C8621068047E76E3C4D7884 /* FIRAuthAppCredentialManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredentialManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.m; sourceTree = ""; }; - 42D62DC109DA630D1DF0CFA43490597E /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; - 42E0116AA1827518C6BA3EA94F423BDD /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/impl/codegen/config.h; sourceTree = ""; }; - 42E19A0322478BF04B55DFC7F64BB28D /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; - 42FEBA5898FF456F652F06687A007078 /* 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 = ""; }; - 4301AC34F2619CA037570179A9916F9D /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; - 4303A2830306E65C9BEA2AB456ECBD04 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; - 430F4518F77FD77BD3C0FDA487E3FE49 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; - 431E3E1E1B3E81C65E6542E4CBBBC796 /* 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 = ""; }; - 431FF5DDC22FBBF06A0B03B99793FCF1 /* nid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nid.h; path = src/include/openssl/nid.h; sourceTree = ""; }; - 433314235FA7FB503210A48A7B8C3553 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/codegen/connectivity_state.h; sourceTree = ""; }; - 4346B0DFD149A2399F33D6770A67B990 /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; - 43573CD239787D73DF3CB946F948C1A0 /* 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 = ""; }; - 4359F7F3150EE9F87188C87CFE87FBCA /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; + 3C94CEDDBD08866F36CB208C07CB3CD8 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 3C9A55A22AFB9E2CB998A4C43DDB82AC /* wide_multiply.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wide_multiply.h; path = absl/random/internal/wide_multiply.h; sourceTree = ""; }; + 3CA4F43E44484A3AD75B6B060C3A394D /* 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 = ""; }; + 3CB509D8D53E64002169940AB93BD057 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; + 3CC57CCDC3471978B257B37E0C3C911E /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_plugin.cc; path = src/core/ext/filters/client_channel/client_channel_plugin.cc; sourceTree = ""; }; + 3CCC8F5C394BA0E030E77C8152AA22F4 /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_alt.c; path = src/crypto/x509v3/v3_alt.c; sourceTree = ""; }; + 3CD48BB29CFBDBF99649B7B31601B1B2 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; + 3D04A61482DA8F87EA8F0F6161952AFD /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; + 3D171381C06A1596DBABFCA519F6B29E /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; + 3D246984ED3F0E9D6B89DB09C774AF65 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; + 3D2C31FD91332382DCDD740BA14BDADD /* 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 = ""; }; + 3D40D9A43D06695C350F28CDD9B7BC76 /* grpc_root_certificate_finder_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_root_certificate_finder_generated.cc; path = Firestore/core/src/remote/grpc_root_certificate_finder_generated.cc; sourceTree = ""; }; + 3D47B977BEC42ED99A40800584DE2CEA /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; + 3D48C547DE2DFD29C7E93652DE5048D1 /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; + 3D4D6BFF9FFAD8A0B2B952DA0D7C0645 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; + 3D4DCE849C7AC8497FC8AABED6DB0ABD /* stacktrace_riscv-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_riscv-inl.inc"; path = "absl/debugging/internal/stacktrace_riscv-inl.inc"; sourceTree = ""; }; + 3D5694A827C36B21402B1056213E7307 /* FIRCreateAuthURIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.m; sourceTree = ""; }; + 3D94B8E8C0E0119FD1BC1609617F4E60 /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; + 3D994E00BF948C2556C243BE9082BCE4 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; + 3D9E1CF00AFF7FC9675A9C34B7B8A868 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; + 3DA6A57FFFF5160D75A42F983AF7487A /* call_log_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_log_batch.cc; path = src/core/lib/surface/call_log_batch.cc; sourceTree = ""; }; + 3DA9886A902315B6320DF9455EDF5D5F /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; + 3DB8473268ADEC083011731CF039518C /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/codegen/serialization_traits.h; sourceTree = ""; }; + 3DCA615F9C26CF99358B7351C1F4E02B /* p_x25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_x25519_asn1.c; path = src/crypto/evp/p_x25519_asn1.c; sourceTree = ""; }; + 3DDAE5285DDF8A5FEE9A3585E992E336 /* 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 = ""; }; + 3DF537A84EFD3960A0A1CCD4B970AD3A /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; + 3DF7220F9AE1ECC253DDFD8C68BFC64B /* 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 = ""; }; + 3DFDCF742C7FC841023DF8B1096571E4 /* a_i2d_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_i2d_fp.c; path = src/crypto/asn1/a_i2d_fp.c; sourceTree = ""; }; + 3E40EBC1855C8EFAF5BD5E47F26E9B8B /* 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 = ""; }; + 3E46E71EB194B72EBE2CD3DAF8AF8B56 /* http_connection_manager.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connection_manager.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c"; sourceTree = ""; }; + 3E4C7E829110656B7D0D89B70D33BE54 /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; + 3E505547600DF223F5A37FC073FFD086 /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; + 3E5C9ADB25F767269DDF5EF2AF1E60A7 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; + 3E5E8BA21D9F1638EEE94FC9B32B4A5A /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; + 3E8C867C82832200FB3115DCC32263E9 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; + 3E93ED9904FE00AD99C6B2E59DB2B128 /* socket_factory_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_factory_posix.cc; path = src/core/lib/iomgr/socket_factory_posix.cc; sourceTree = ""; }; + 3EB76217E00B05811AFE4868B5A3B47D /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; + 3EE08506CDE442284DE33807DEA3CDDC /* p256-x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "p256-x86_64.c"; path = "src/crypto/fipsmodule/ec/p256-x86_64.c"; sourceTree = ""; }; + 3EEDF6368E08A6BCD4137A180189CF20 /* iomgr_posix_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_posix_cfstream.cc; path = src/core/lib/iomgr/iomgr_posix_cfstream.cc; sourceTree = ""; }; + 3EF57A78639380AAF8E47B110FF609D1 /* client_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_auth_filter.cc; path = src/core/lib/security/transport/client_auth_filter.cc; sourceTree = ""; }; + 3F07C77D37BBEB966B0CE90240AE06DE /* FIRSetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.h; sourceTree = ""; }; + 3F0CEC729566C0D94170A473CAFEDA04 /* FIRGetOOBConfirmationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.h; sourceTree = ""; }; + 3F16A1CDECF69530553D067E7C11A0DA /* NSData+FIRBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+FIRBase64.h"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.h"; sourceTree = ""; }; + 3F1AB412051CB8BD374BC3592244FDE4 /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; + 3F25BE28D3A44A3F0D3F7C326C30FC68 /* upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upb.c; path = third_party/upb/upb/upb.c; sourceTree = ""; }; + 3F3445E98AE21D6D0A7D19BDB808307E /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; + 3F3FEE1643F9FF05FA78359BD2B9A54A /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; + 3F4B4FEF5E72B2BCB3C00855E3F44495 /* tmpfile_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_windows.cc; path = src/core/lib/gpr/tmpfile_windows.cc; sourceTree = ""; }; + 3F5967F0676C6A24CEEF85ABA5D672D5 /* FIRAuthProtoMFAEnrollment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoMFAEnrollment.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.m; sourceTree = ""; }; + 3F5E3D71DA43E0AFD41E2BDEF46FCC49 /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; + 3F731FB3ABE9F8EBECC0796D509137B8 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; + 3F837447A5140745F7232F9EDEB41D64 /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; + 3F91D284455237A0F247BF293F11D198 /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; + 3FAA18511C34D208F7D35CF2BFAF4224 /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = address.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; + 3FAC7979171866E44ED6649805355B9E /* 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 = ""; }; + 3FAFE69347C9C9CA51175A905DFEFF37 /* 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 = ""; }; + 3FE24130314C63F638FB7E800F35692A /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; + 40085EBCFAAFAEB4C3F55ACE596D9F62 /* atomic_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_hook.h; path = absl/base/internal/atomic_hook.h; sourceTree = ""; }; + 40154881319707638ACDE245B78A7688 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; + 401BE371D29722629BA4091EA6B161B7 /* BoringSSL-GRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.debug.xcconfig"; sourceTree = ""; }; + 40251BC4BA5D224ED709E620C05C2379 /* 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 = ""; }; + 4026E53AE81A7A1FD6DB893ED084676E /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; + 403C3AB3414115AD58E217898C0621D1 /* memory_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_request.h; path = include/grpc/event_engine/memory_request.h; sourceTree = ""; }; + 4045AD9B7A955CA1B36E76BF863F8D1A /* 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 = ""; }; + 4059BC07EACD150FF20B681A90D3013D /* custom_tag.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = custom_tag.upb.c; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c"; sourceTree = ""; }; + 405A12FB51047FDE28B4FC9E5B0ABBB8 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; + 4064FB58F64FBEDBE6D329DAC2886EB6 /* thd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thd_posix.cc; path = src/core/lib/gprpp/thd_posix.cc; sourceTree = ""; }; + 4067D4FCBD355E4B1A7FD4E4424933FC /* pollset_set_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set_windows.cc; path = src/core/lib/iomgr/pollset_set_windows.cc; sourceTree = ""; }; + 407B5EC18580E2911C8F401BF6A659C2 /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; + 4094F04C795DF5C4C1EB3A044EB567A7 /* create_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel.h; path = include/grpcpp/create_channel.h; sourceTree = ""; }; + 40C56A6FCBA1E36A6BC205CD9CAF7489 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; + 40D2B8E95257152412E5DF689FE7AAB9 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; + 40E0B3F4298A562DF404EE763DC0EC4D /* stacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace.h; path = absl/debugging/stacktrace.h; sourceTree = ""; }; + 40F60846F6BAE6CA04878B15736C25C5 /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; + 4102AA4D934483719AF83C6BF818E021 /* 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 = ""; }; + 41097F5B724FCE12E5E9A0F5DCB0E747 /* 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 = ""; }; + 410A02A7A8793A3207ABBC47D9829925 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; + 41106B6D5A056B269F476E360E205C8A /* 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 = ""; }; + 411245A94573E0146371EF8E7004EDD5 /* prog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prog.h; path = third_party/re2/re2/prog.h; sourceTree = ""; }; + 413278F73A9B70F3EB221A6C33531AA7 /* firebase_metadata_provider_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider_noop.cc; path = Firestore/core/src/remote/firebase_metadata_provider_noop.cc; sourceTree = ""; }; + 413336A3AD8A68C59E99DCE2EA66D53A /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; + 413E3D73361C2269037D45CE8AD34851 /* 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 = ""; }; + 415AA5B587E40F73B5F16C8C72030CA5 /* pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool.h; path = src/include/openssl/pool.h; sourceTree = ""; }; + 418C58E37D96EB403A28D55DD86E31A2 /* credentials_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials_generic.cc; path = src/core/lib/security/credentials/google_default/credentials_generic.cc; sourceTree = ""; }; + 41950B925144F8DAC6DD365736BAB556 /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; + 41AC9AF7A36BFDEF1AE07F4DCD877B21 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; + 41C7173B924E7350CC56B45B8F82D453 /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; + 41C8724A176B8050462592A9E1E2999B /* charmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charmap.h; path = src/crypto/asn1/charmap.h; sourceTree = ""; }; + 41CE5CCD52BF239731484BBD5209F70D /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; + 41D040B7ABA0E45E9AD9CD4F74BD26A1 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; + 41FBAB31C967E337C38682013E259BF8 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; + 41FFF27F876FCD691DE067A5A6BB448A /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; + 4238824FCC101FB9FE13D072497BFBDA /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; + 424213B257FB2AAB6CEE24F8288922DA /* GDTCOREvent+GDTMetricsSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTMetricsSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Private/GDTCOREvent+GDTMetricsSupport.h"; sourceTree = ""; }; + 424FAE9ABE662E2041DF2DD341DC229E /* FIRResetPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h; sourceTree = ""; }; + 4250B9623BA15260062BBD6AE1E0A3E7 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; + 426580D44D2B04FD5C013D640EF4D630 /* xds_common_types.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_common_types.cc; path = src/core/ext/xds/xds_common_types.cc; sourceTree = ""; }; + 42740DB3DA6378C65F6DDD1952C42D34 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = src/include/openssl/stack.h; sourceTree = ""; }; + 42962C10FE101E3D9C88E230B79EEAA0 /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; + 429A9536EDA7C4DFF3CC15AC3BB3AA23 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/internal/symbolize.h; sourceTree = ""; }; + 42B5D53977DB945726C49CBBEBC47361 /* 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 = ""; }; + 42BF5DE423D00ED5D6A8889DC095038C /* 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 = ""; }; + 42C7BC7BDD98899718ACA0F772DB0DD0 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; + 42CC879F729CF2725DD87F5DCE7E06F6 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; + 42D4CE64988498E74822D76E0034D720 /* byte_stream_cpp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream_cpp.cc; path = Firestore/core/src/util/byte_stream_cpp.cc; sourceTree = ""; }; + 42DDD94EDCFBF26669E7EF2439E635C2 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; + 42E91DE07B22E155D8AC0EE01F5DE51C /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/impl/codegen/port_platform.h; sourceTree = ""; }; + 42F8EDAA7C98E998379F3DDF756142F6 /* 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 = ""; }; + 42FD8A4A0C7CD39B663EB7E302B645B2 /* FIRPhoneAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthProvider.h; sourceTree = ""; }; + 43032D4882273A07DE8A7654F1C4BAFF /* tzfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tzfile.h; path = absl/time/internal/cctz/src/tzfile.h; sourceTree = ""; }; + 430556F9724E0321A6D58C3B2110AAA0 /* ex_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ex_data.h; path = src/include/openssl/ex_data.h; sourceTree = ""; }; + 43068C97EE9FA2EA49CBE0B443056E4A /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = include/uv/threadpool.h; sourceTree = ""; }; + 431B842BEBF7785C996A9996E65FCDCC /* FIRVerifyPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.m; sourceTree = ""; }; + 432EAE3FCBDEF38E16D4815BFE8FAD36 /* FIROAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h; sourceTree = ""; }; + 433B554DE9925183DF09D9DF8DCC2A02 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; + 433E46B2A1E263EA78866579B845FA33 /* FIRMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo.m; sourceTree = ""; }; + 43497B990E7CEC0EF97315AA1FEE0B11 /* low_level_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = low_level_hash.cc; path = absl/hash/internal/low_level_hash.cc; sourceTree = ""; }; + 434AED16135B8A938A18D1462E5B6BB2 /* route_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c"; sourceTree = ""; }; + 43623CB6C4DAFF7D742D70A6E3E9390D /* FIRMultiFactorResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorResolver.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorResolver.h; sourceTree = ""; }; 4367BF2B0B52DBC23245DCE5C1561046 /* Pods-Flash Chat iOS13-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Flash Chat iOS13-frameworks.sh"; sourceTree = ""; }; - 43733C341BEB1BFC9FFD78C36E397DCC /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = closure.cc; path = src/core/lib/iomgr/event_engine/closure.cc; sourceTree = ""; }; - 43862307DEC25588167313C147983B33 /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; - 439C188D35D5C60571AEF9E9CAB07ACA /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 439DC80A01D31D0DA565A05B973F8FB5 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/include/openssl/des.h; sourceTree = ""; }; - 43A351C64FF7F024EE93ED93530FA1FC /* FIRPhoneMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion.m; sourceTree = ""; }; + 4374B43425A2707FC3455E40C8CD9C40 /* 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 = ""; }; 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseAuth; path = FirebaseAuth.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 43B970854EEA5E76968918991FA1B328 /* fsevents.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fsevents.c; path = src/unix/fsevents.c; sourceTree = ""; }; - 43D63C480DD386525C1E4B52028D8688 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - 43E9E567C990AA1967FF1BDE5F12269A /* 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 = ""; }; - 43EFCE7070AAA6A176A01BCA9AB3FEF2 /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; - 43F56D27A7F0FB1BFEA420D74D40807A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/unix/internal.h; sourceTree = ""; }; - 43FA37281A22B19D72F841F269ACCE2C /* 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 = ""; }; - 43FB5923F6352F0E64B8415389379F5B /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 44039DF72B4BF0B25C130FB6CB5D4EB5 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/variant.h; sourceTree = ""; }; - 4458F0D1F10EE69E8665971EC6085E38 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; - 445D3A262160D62A827D3907AD6C3454 /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; - 445EC53C4499CDE695F3AE222F60EB69 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - 44605840B9B334BDDB4C7FCBE5FD834E /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; - 4462AE185F80EE00EE01D49339A5BEC9 /* accesslog.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upb.c; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c"; sourceTree = ""; }; - 446BE777A8F458662FB9871F3C5CF874 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; - 447FDB694B22D633833151F2E5B3317A /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; - 4488E92A02FBE9F1AE88BC95A1225C95 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - 44AB9CC0ABD6027D0E570AFA0B38B90A /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; - 44B3BEC899FC6061C55B49912B75671B /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/codegen/delegating_channel.h; sourceTree = ""; }; - 44E70B4D044EDFE27528626FA49D8BEE /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; - 44F3C9AB9BAB9E5902D368EA28EC9D91 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; - 4514AD0A7F3CF10391B711522C92E1AD /* 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 = ""; }; - 45341594EB71BDEF55F6210D28469D89 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_filter.cc; path = src/core/ext/filters/client_channel/retry_filter.cc; sourceTree = ""; }; - 454BC6F09893DB98D038BF08842DDF8F /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = src/include/openssl/asn1t.h; sourceTree = ""; }; - 45620454AB15091C96150170C78F36F5 /* cipher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cipher.h; path = src/include/openssl/cipher.h; sourceTree = ""; }; - 456F64DF049000E597A82DD48D788DC7 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - 45706FD070DE133D0E780598AEC28161 /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; - 457ECAB0F72D308E112B3CF8F64AEA41 /* 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 = ""; }; - 4592725643DE1ADCFCE8F803BDA0A417 /* 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 = ""; }; - 4597EECA664D32D9B171C97CB20990C5 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; - 45A160ECD03432F448182A72378495AF /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - 45A8734345F07709480D7823C549FED8 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; - 45AC354AB6889EBA1ED0CD2C528B6311 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 45B97961BF706EE5E1AC410A3430EF27 /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; - 45DADBB766F537F6CFE3D29BEC01A64C /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; - 462805E562D5F862B285CDEF040DCB0A /* 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 = ""; }; - 462EF9D57B7F9C4BAB83EC879D142E8E /* 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 = ""; }; - 4643512161FB87430FB3F009482FF48F /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - 465262F247160F3B86CC14880CCA471A /* 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 = ""; }; - 46533F3DADD032DF1BF49BD402476FA2 /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; - 4659196B4EC3C5F86E39E5406F56C8A0 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; - 465B01AC4FBD4F077901D79CB83AEDBB /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; - 4676A21D65A47A9442C431317B31984C /* 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 = ""; }; - 4693B836E1309591AFED39C93D9CE572 /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; - 46A15753A6F5B949E66C26594B35CCDC /* 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 = ""; }; - 46A25C63BB58461F1ED4B77AAC130AE7 /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; - 46B584C459823DF83ABC276F03C171E9 /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; - 46B947F779A6111861D50A97B81A9F89 /* 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 = ""; }; - 46C163AA895CED2B35401CB704316C16 /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pick_first.cc; path = src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc; sourceTree = ""; }; - 46C779AB4B47750DC30EE09E7090DC7A /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; - 46C8727CA006A6CF451B6EDAAD249B57 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 46D0D328706447157D50228B9F5CD475 /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; - 46D8DEF4E450DE3F1C8C4C92BCD68576 /* 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 = ""; }; - 46E26E0AB07201DE7A2C043A2B469A6C /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; - 46E77518A5A98B05D0F1CFC87F3060F1 /* 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 = ""; }; - 46EC2848BF69F0FCD2CF694ECED54685 /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; - 4717E45003D2AF5D00B6E73220748A53 /* 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 = ""; }; - 47346890DB8CADEFB681BBA5D928462A /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; - 473F4BECB31AE3F460DE823AFA12826C /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 47402177CE5A3DE11A053DD3CEF70050 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; - 474616FBF04AF1BCBEB7714A4421854A /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - 4756B5CFD2C831C8628FE8C262AE8617 /* 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 = ""; }; - 475993D0793102301F1F6242EED7CDF4 /* 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 = ""; }; - 475BED9E80993D7BB3C1F31E3FF57207 /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; - 476C6CBD7983889EEADE7A40DBF578A9 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; - 4770AD5392F71D42C2FDFF3ED05EEC0A /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; - 4779625A715B73E29A8413C645E64F81 /* identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = identity.h; path = absl/base/internal/identity.h; sourceTree = ""; }; - 478D5AF4B55E749ECFA3D66985065523 /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; - 478F7FFDAF0AD48E7A8E12867769CA73 /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; - 479EB203FBBEB87197336466B7CB6653 /* server_secure_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_secure_chttp2.cc; path = src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc; sourceTree = ""; }; - 47A19DBC2BDF461D70C4145E0880B0E3 /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; - 47AAB4EAA21F13C8410B01D184CD9981 /* inline_variable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inline_variable.h; path = absl/base/internal/inline_variable.h; sourceTree = ""; }; - 47BB7FFE964FE1203DCCFBE549276EE0 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; - 47BE6CABFBD6DD2F81016393589470C4 /* secure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_credentials.h; path = src/cpp/client/secure_credentials.h; sourceTree = ""; }; - 47D8368B1331F87E64AF3F8F89257749 /* block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block.h; path = table/block.h; sourceTree = ""; }; - 47E46DFB995A1607B149A8F97C7AB2A7 /* GULURLSessionDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULURLSessionDataResponse.m; path = GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m; sourceTree = ""; }; - 47E93296EC1FD5F93DED76D85AFA1881 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 47F9209A1375FF6B6C5B0867AECC73AC /* FIRFacebookAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.m; sourceTree = ""; }; - 4811407D5488DD7D66A5363A1508DA3A /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; - 481784854F1A018C2CB4C1DC76669268 /* 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 = ""; }; - 48388DE98C2EC1620B66D911004DB48C /* FIRIdentityToolkitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIdentityToolkitRequest.h; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h; sourceTree = ""; }; - 483F1BA8EA46A62D62C118AAE3B83C36 /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; - 484C096A02D4D9A27933DD68418A93BA /* 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 = ""; }; - 484F6034FC172EDB0E0A8EA1FCEAC697 /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; - 485A32429AF2B8C89A550B4AAE685E71 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = ""; }; - 486B2A05F8690A41848B07F503F37C85 /* 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 = ""; }; - 4873DE47782D39C26B46D0A1D2C29BE0 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; - 4882020D02BEE009A13FAFEA24653A32 /* FIREmailPasswordAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailPasswordAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.m; sourceTree = ""; }; - 4892F676797FE9694FB3CC0FAD5227C4 /* 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 = ""; }; - 489EB4EA70CC5221481BF03B7197BFB4 /* FIRVerifyPhoneNumberResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.m; sourceTree = ""; }; - 48B4DD9A9938072A07CF259F4C5F30E0 /* 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 = ""; }; - 48C982BD56A0CA1D5B756A336180642C /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; - 491C5B9E8DCE4FAD6CF9F43BBBDEB359 /* udp_listener_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c"; sourceTree = ""; }; - 49213FF9A5BE564C95F0B6A2061AF8A8 /* 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 = ""; }; - 49227DD1593D1911AB2C7D0809DFB7AB /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - 492A21B3320D00AED3907D59249ECB03 /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; - 492C1AEDF0F2473348AAD01F9857FCD8 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - 492D2DC2280346F2F0164538187158A4 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - 4932837CAF53E06EF71B43412AFA8D78 /* 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 = ""; }; - 493CB65C90A34FE875D76FCA4D7E81F2 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - 4949754FF74ED2EA97CF481173C0F132 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; - 495906018B5E0F8CE64C60C2A6A381E8 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/trust_token/internal.h; sourceTree = ""; }; - 49622E3E5F58C83A87A039F6458A2A02 /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; - 496C34846079E9EC78D047FE2E773626 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 49A4F8B5D211E97177EA812FF6901D9E /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; - 49A752E8F3D274B1F36474049315EF94 /* 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 = ""; }; - 49AE3FB8C15125F66DEC967D521E2B9D /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; - 49C50D8E8A7F1F4AD6D32A4405FD242E /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; - 49C7E66F1CC266330DE34F06433B94CF /* 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 = ""; }; - 49F0BB19841D136A33CDBFA501957671 /* lds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lds.upb.c; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c"; sourceTree = ""; }; - 4A06A319259E70B5428B5F626BA3B93B /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; - 4A0E0BC8A2E3A70F65E0772F6862AE16 /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; - 4A2DE0F3F1C5EB3D90EFB27BB328A22B /* 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 = ""; }; - 4A473E17BCA02A26F2CBEE82B4FB074A /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - 4A5A80D2FD12EB9BF337108FB83801DA /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; - 4A63E6C3A44B7F2ECECECAF4C02BE6C0 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = signal.c; path = src/unix/signal.c; sourceTree = ""; }; - 4A6DA410D05FF9B136222B9F0D0A19C3 /* 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 = ""; }; - 4A6F99F62FA9BA661DFD44BE2E3BB7D2 /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; - 4A9F06DE7D615F3916E1004267B2C151 /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; - 4AA6E32CE176EAA4A511A77FCF3C8D0C /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; - 4AA8E7D424EF8D56A1B62571FE186717 /* tmpfile_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_windows.cc; path = src/core/lib/gpr/tmpfile_windows.cc; sourceTree = ""; }; - 4ABF63F882F4DD9763E0CCDDFFA63080 /* utf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf.h; path = third_party/re2/util/utf.h; sourceTree = ""; }; - 4AC3582CABDE28ACD6CF8B538100805F /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; - 4AFB5D8CE16F365954298D32489F2638 /* 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 = ""; }; - 4B0F1D207BEC3C04E7AA502B953EE645 /* 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 = ""; }; - 4B18B60FDC4329B766B328DCF9868221 /* FIRMultiFactorResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorResolver.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver.m; sourceTree = ""; }; - 4B3CF7A5C9AA34CEF648438D6AD11152 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; - 4B41A9D4DE4D3CFD54498E4EBE058082 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 4B60CBE0EC099335CFEC19ADB8EEC731 /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; - 4B68D369102811A3FCBE53E268FE1869 /* refcount_lock.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = refcount_lock.c; path = src/crypto/refcount_lock.c; sourceTree = ""; }; - 4B9E632ADB408AA9CCF417432865BA8E /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; - 4BA0956FF8B0CC3BDF5FBF1BC6561514 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; - 4BA56DEEB00B9AC6D043C190A8347AA8 /* 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 = ""; }; - 4BAA1FACA74D6AB50362A5ED659F87C4 /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - 4BAB95E1B5D560D31ABE95BFB7348DB3 /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; - 4BBEBFE33DAFDA452902344CF828AB0A /* FIREmailLinkSignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.h; sourceTree = ""; }; - 4BE0C3B364EC5024E1030B3114141A52 /* pcy_cache.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_cache.c; path = src/crypto/x509v3/pcy_cache.c; sourceTree = ""; }; - 4BF3AD27D17E8D39FEBAA125959DB952 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; - 4C0842CE55EAEDE841060BAA8A1FA6C1 /* FIRVerifyCustomTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.h; sourceTree = ""; }; - 4C0C9AE08A070FC5514190C63DFA6258 /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; - 4C2E904B299A912A882B296AE204105D /* server_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_address.cc; path = src/core/lib/resolver/server_address.cc; sourceTree = ""; }; - 4C32542114D83D699B0B70FE71665939 /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; - 4C3CBF9A2AEEFF612EA6090F5C5849DA /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; - 4C47BF3E59C60249A248FE3D0EE2AF50 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; - 4C7E475A835489D536032B2126BB7F46 /* 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 = ""; }; - 4C899FE818FE07B81B0033853E8C5360 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 4C966CB172076FC303F3BBB47A1B1F6C /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_connect_handshaker.cc; path = src/core/ext/filters/client_channel/http_connect_handshaker.cc; sourceTree = ""; }; - 4C9A0176BD5B0D9AE760206CE5326A7A /* 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 = ""; }; - 4CA284AD4088A4114E393D5BF3E14BA9 /* FIRVerifyClientResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.h; sourceTree = ""; }; - 4CAC45ABAEAEF192E6290FDD3286F4ED /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; - 4CB352F07A72645702A6D215603714DA /* FIRGetOOBConfirmationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.h; sourceTree = ""; }; - 4CB3B826478FB3221A7CE8D09EAD6319 /* 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 = ""; }; - 4CD1185D1C535BF4DA84F99F1ED091F8 /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; - 4D02212315D8427A4561D868E99354EF /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 4D169A2922435604B1E58316FF17DC28 /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/codegen/grpc_types.h; sourceTree = ""; }; - 4D19F7F151E638E1566A7C053D2C4DFF /* 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 = ""; }; - 4D1FCB656FB363AB1952BCBAD1A9F5B3 /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; - 4D4F7392040D08FFEA15676381598298 /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = Firestore/Source/Public/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; - 4D508A85648BBFD2090CE02F1272B214 /* 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 = ""; }; - 4D53CE77152F94AA6B5FB8C17D891F6B /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; - 4D5BE0510E6733C4EE475FA4B5573541 /* CLTypingLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CLTypingLabel-Info.plist"; sourceTree = ""; }; - 4D645D2697EDD388B99515B5CD568C59 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c"; sourceTree = ""; }; - 4D6799C40D723F2EA94222DB17A1E4FA /* 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 = ""; }; - 4D6DBAB58F5643BDE8B88A4CF90F2368 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - 4D6FCAC420BD70D8C784331997B03988 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = src/include/openssl/dsa.h; sourceTree = ""; }; - 4D6FEE3CA9F96F7CA61E9412C792D92F /* 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 = ""; }; - 4D72A0B04509794A697C481159197774 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; - 4D811938FE470F6F794D4F17C60FF7BA /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - 4D8EDCFC2622E277B355AA171FBC0407 /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; - 4D928F5756871DF72B1E07F5C79BE81B /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; - 4DA709FA365A48B6CE11B651FA023E19 /* 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 = ""; }; - 4DB00C3343089AE1ACEDBEE4E901DD69 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; - 4DB6308303A943EF7C14532AAC3E0B29 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; - 4DD43ABCAA2190CAA602953C834255F6 /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; - 4DD909F395FB1CB615171423502F907B /* gRPC-C++.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.release.xcconfig"; sourceTree = ""; }; - 4DFA71A50289FC31A750032EB1A1E902 /* 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 = ""; }; - 4E0BC17D35593EF35461F93FC3E2EC0B /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; - 4E0CA0615F0100D4812DD20785E2F8FB /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; - 4E0E06C5D4EA976E046F997190A76DCC /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 4E3615D76DA8B5E946AB2F0F10B647D4 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; - 4E3EC9FBC638972A41DEEE83F8B1D59C /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; - 4E486D36F2AE99C0A115C39B41F6D75C /* 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 = ""; }; - 4E74012D0138C064621AA13083FC17AE /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - 4E756628518B41DDE180232871CCD954 /* unicode_casefold.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_casefold.h; path = third_party/re2/re2/unicode_casefold.h; sourceTree = ""; }; - 4E7987C9EDCB7BA1803E4D1C4E46FBC3 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - 4E8937448E2B68BD01C5C0C401607418 /* 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 = ""; }; - 4EA10F768A51A4AB656C10E6B7141961 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; - 4EA4FE0EB23C0EC7AC83EA50EBFE7212 /* 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 = ""; }; - 4EB1DD57F7FE82E39EAD20F2B74F0CDA /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - 4EB4857181698949BC3012F44F99E4C7 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - 4ED571A34E3B677C5F7AEA3F2FBB929B /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; - 4F002DD35698729F7C777D90AAEE8B8E /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 4F0918A9481279281090CA6C38F60206 /* 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 = ""; }; - 4F20F018998C445B11421D01998A59F9 /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; - 4F3BADBB781CD5803D97720792F617B5 /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; - 4F416956D1C0D99E46922CC4EA6A5184 /* sample_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sample_recorder.h; path = absl/profiling/internal/sample_recorder.h; sourceTree = ""; }; - 4F43D0D8F09FCC95BD0EF4D386F8E8F9 /* 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 = ""; }; - 4F54CD61985D2CF088FC6A50AA6D9CB9 /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; - 4F58040F8DAD60DB9E92C3636B08166B /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - 4F6172BD84D4D8EC2DCF7845B81CE647 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; - 4F6D54E934FA1E9E2820BF7A14052CD6 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; - 4F6FDEA4A5F1E357BF4010C8A5BAD9F7 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/internal/bits.h; sourceTree = ""; }; - 4F7B89AD70178C95E83274ED63BD29F6 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; - 4F96768A3D8951D7AA42A0BA458EF7C0 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - 4F97B8898465846AB44BB5D78E704921 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; - 4FA2248941B6C9399BA70E437690BF94 /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; - 4FC7F46A765F55FCDB801FDDF5E2D44B /* 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 = ""; }; - 4FCFAECC0B9457C5990B27906BE2E680 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; - 4FD0C845F190D7AD681D8171AF0A6D98 /* FIRVerifyClientRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.m; sourceTree = ""; }; - 4FD4ED5B0D555E874244EF0B61F14810 /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; - 4FDCF62811B45F39F2F50B6BF289981C /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 4FF241228E1D7A5D8F3D14681DC4ECC6 /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; - 4FF58CDC1AB166052E72D0CEAF53AA68 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; - 4FFA452DD4DD483849260352468A085B /* 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 = ""; }; - 50026C6E0C9602DB8FF5797E20E827C0 /* 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 = ""; }; - 505FD4E7742B62F8703900FF50585766 /* FIRSignUpNewUserResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.m; sourceTree = ""; }; - 5073BE02EEE87077825A5847FA8C9A17 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; - 5076FA3CE1D5975DC29A378E65C75CBC /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; - 509E04DC4DD7DC7401200EFB5AF05438 /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; - 50AF0D85488F4449C0EDBFD8A4823417 /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; - 50AF2EB2D8A9A72600617F361DA02B89 /* FIRMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorAssertion.h; sourceTree = ""; }; - 50B468FC41F6FACFB7107DD6DDB1A625 /* curve25519.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = src/include/openssl/curve25519.h; sourceTree = ""; }; - 50C2F3FAC412F3F87B88FBBB69FB45EB /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 50D283A08685D59D0445348AAF1EF5B5 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - 50EB175CD8D55263964AA3FCC78A6EAB /* 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 = ""; }; - 50EB4F883CA772DD7132C582C7324DBF /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; - 50F383CE603CBCB82B2296FF8F0C9C88 /* 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 = ""; }; - 513939EF797A0D3FFC253412CE4699F7 /* FIRVerifyAssertionResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h; sourceTree = ""; }; - 514443CE44B5457F38360560E21CB2B7 /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; + 43BED2383F9D549DD2848B05E53240F5 /* circuit_breaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = circuit_breaker.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c"; sourceTree = ""; }; + 43D0FD0CFCA1CC8B666AEA1ABA5B8C77 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; + 43E1AC3595795D667AADFD1FA7682A1E /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; + 43F950E9FC973A2770F7B1460286EB4C /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; + 441C1B0460B79D6FD2E83B38B32302EB /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = absl/types/any.h; sourceTree = ""; }; + 441E390BED00ECDBAD143E8ADC407525 /* FIRTwitterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthProvider.m; sourceTree = ""; }; + 444954F4ACD1A30472226959F2A84942 /* 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 = ""; }; + 445402BF5757285959F27894A04EB8A0 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; + 44690891378AA8507C2EB90776DDBD5F /* randen_round_keys.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_round_keys.cc; path = absl/random/internal/randen_round_keys.cc; sourceTree = ""; }; + 4469E78323B212B8AFC4393309C64628 /* 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 = ""; }; + 446B8C05915B2EA7BC4DD869CE3DD222 /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; + 44723D065C9A8A4D2C38CE4FFB9634CC /* FIRAuthAPNSTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSTokenManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.m; sourceTree = ""; }; + 4488D1F40EC76A480CBC912EA2F4EBF4 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; + 448E5C3BEAF8FFD3514B2747523F9606 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; + 4492CB36E7CA1653A2EE6413BAD60735 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; + 4499246A540AEF224C151AF576A8A51D /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; + 449D3BEED9BEAD11CBFAA6C16151CC60 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; + 44A9478CDCBA9390CF8C399BE2709326 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; + 44D989A4ABD25F5EC4EF560B78B91872 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; + 44DB22EF141FC0320D8A50C4162ED541 /* benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = benchmark.h; path = third_party/re2/util/benchmark.h; sourceTree = ""; }; + 44DBAA8BA13AB884664F922538587524 /* 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 = ""; }; + 44FC0E9CE6C3B92C7D2B44E95498A324 /* table_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_builder.h; path = include/leveldb/table_builder.h; sourceTree = ""; }; + 453166266E6CC074A78B633F0FF2D214 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; + 454B4B848A2E8AB1AEDBDEBA9DF8FAB6 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; + 4554FE62434AD47E7BE5AD8D41FA21AA /* context_params.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = context_params.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.c"; sourceTree = ""; }; + 455ABDFBA4081D197600675A96310DAA /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; + 459CB2DD679D5E0E47E2F6A4DB44544D /* 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 = ""; }; + 45B6BF8B1A1589D9D239A0926D071AA6 /* resource_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_quota.cc; path = src/core/lib/resource_quota/resource_quota.cc; sourceTree = ""; }; + 45BF8CD2A74A9687016400A738784889 /* Libuv-gRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Libuv-gRPC-prefix.pch"; sourceTree = ""; }; + 45CF1D6176424B8001AA00B201E8750D /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; + 45E226A701CFD332B377613DC7AD4292 /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; + 45ECD0A69C3890D9259F77DB8B9B7CE4 /* xds_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_server_credentials.cc; path = src/cpp/server/xds_server_credentials.cc; sourceTree = ""; }; + 460A395B99F62B1F22F4C0BAB3509D73 /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; + 46122811379EE20D8EE34741D4E43438 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; + 4618B6384304D5C44FD318CC9CF960D2 /* 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 = ""; }; + 46350F2833D14D2EBEBA40304B0A170F /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h; sourceTree = ""; }; + 4642B128CC6C587830218395CD98CBFD /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; + 4647CFC9238F8CBCD4E621328943A4CC /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; + 46492E723D9D610960667AB9A9F5D317 /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; + 465CFCA72D89FC2E25DE377D37613BB7 /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; + 46736FAD9318C2F7FE1755B3D57CBE43 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; + 467B8B19B598DADEBFCCF1AFF4725057 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; + 46859B2560E594DB99517CDA6D0E49E1 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; + 4696C3A1E17C292F74E651A0285FA330 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; + 46B13EC77F2FEED477A102B965DC9FA2 /* 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 = ""; }; + 46DE872B0050A0BE3E96703126ECF66F /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; + 46EB2652C8B6AA9C465C8F9C5F17C105 /* 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 = ""; }; + 46FCE4356896D32454A7257D3664D009 /* transport_op_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_op_string.cc; path = src/core/lib/transport/transport_op_string.cc; sourceTree = ""; }; + 46FD6EA8B3CF0B9F1E0FA67D28EFF8F9 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; + 47159ED6338906AF1C4429988001F568 /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; + 471AA1363454D38942778AE62C31A1A2 /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; + 474F7F8069291C6D0A6484CDD3B29BF7 /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; + 47552940EDE352E5790999AC8E1A68CA /* waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter.h; path = absl/synchronization/internal/waiter.h; sourceTree = ""; }; + 477CE6BABF27F3EE00B02190BDCC2B8F /* FIRAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuth.h; sourceTree = ""; }; + 4783AF1178193413669B02559EBBF983 /* local_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_security_connector.cc; path = src/core/lib/security/security_connector/local/local_security_connector.cc; sourceTree = ""; }; + 479B6FD574DEDFF92947605E6EC1AF75 /* local_documents_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_documents_view.cc; path = Firestore/core/src/local/local_documents_view.cc; sourceTree = ""; }; + 479D4BC05C7B7260F62B3EE3157D7036 /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; + 47A48BA2C9E10B0F9E1DC021C6593150 /* 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 = ""; }; + 47A8498570BEB4875B3F1B6365EEA9EC /* FIRGetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.h; sourceTree = ""; }; + 47B407B6BD3043518E3CE8A8139EF1F3 /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker.cc; path = src/core/lib/channel/handshaker.cc; sourceTree = ""; }; + 47D61E20DD02A0B6145065A62DED3A12 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; + 47D932414022EC9A2A59D90434F80849 /* FIRAuthRequestConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRequestConfiguration.m; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.m; sourceTree = ""; }; + 47F98BD868336A279338135DFB37AFA8 /* grpc_plugin_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_plugin_registry.cc; path = src/core/plugin_registry/grpc_plugin_registry.cc; sourceTree = ""; }; + 47FBFF3E9D8C9EE5A88DB2A773644C71 /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; + 4801E6AB32A0D8798AD68AF31EE96DF3 /* message_size_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_size_filter.cc; path = src/core/ext/filters/message_size/message_size_filter.cc; sourceTree = ""; }; + 48075C8CCFDEC075472B34BA1DE2E7DF /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; + 481E6AE9D864CA767B119756910C870E /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; + 48299CEED2A49262C6EF76B318B31623 /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; + 484B9ECC054B1DEE954B91CFEA77F341 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; + 484DA31ADCACFCF47E5220521550FF3E /* 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 = ""; }; + 486560614B74360088B9630AA0C7DE0C /* create_thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_thread_identity.cc; path = absl/synchronization/internal/create_thread_identity.cc; sourceTree = ""; }; + 488BC5D7F922DDCB2206C27BC4A2EE66 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; + 4893D60E86466E3611D0C8FD4F90BAE5 /* grpc_authorization_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_authorization_engine.cc; path = src/core/lib/security/authorization/grpc_authorization_engine.cc; sourceTree = ""; }; + 48A44ABF905DA4E1DECF657095CFE0C5 /* FIRSecureTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.h; sourceTree = ""; }; + 48A6841FEE537E960B30F075A0263588 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; + 48A7939C380950AF9C80BF3538AD3569 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; + 48B9078ECB6F829D851FD6DCA7E526E5 /* compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compare.h; path = absl/types/compare.h; sourceTree = ""; }; + 48BD7F9E0E0AF3CD0C92970C6287CA31 /* abseil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.release.xcconfig; sourceTree = ""; }; + 48C3EE15FB94E15FA92722FB867B7D4F /* dbformat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dbformat.h; path = db/dbformat.h; sourceTree = ""; }; + 48C5E4E5599C0326958185410FD3C31A /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; + 48D8265656FFB2A95AC849DF5F1BBF70 /* 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 = ""; }; + 48F1007AE390F9D3188E8FB6809ED38F /* FIRAuthSerialTaskQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSerialTaskQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.m; sourceTree = ""; }; + 490C469AC8D61613CB759BDB8011132E /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; + 490F71E4D42C8D5B386EF3E2752A953C /* 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 = ""; }; + 492648A11C172B7FD87BC647777317A7 /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; + 493954DBDE29FD4570756388741CAD04 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; + 494092AD735B85454D60DB6E474A6BA2 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; + 4955739B6D33BB938351246733C7BB09 /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; + 496AECC9F5B26A3BF8EBABCCE9996FA1 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; + 49776F558531FEEC26021CC0559F5358 /* GDTCORMetricsMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetricsMetadata.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetricsMetadata.m; sourceTree = ""; }; + 497B38044A3B2E213929A7AB30CB92F0 /* FIRTwitterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.m; sourceTree = ""; }; + 497E117FE5B34BDE747CAD5EC371C268 /* 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 = ""; }; + 4985B65829FE3B7A8AD4E1AA559626D0 /* grpclb_channel_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_channel_secure.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc; sourceTree = ""; }; + 4991E31C6D3E641142B9E9D56823DAF0 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; + 499D04FAEF069609B2E94043FDC91872 /* alts_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_counter.cc; path = src/core/tsi/alts/frame_protector/alts_counter.cc; sourceTree = ""; }; + 49A8BC6A4373AD4E7F01605786C47E9F /* FIRPhoneMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo+Internal.h"; sourceTree = ""; }; + 49B2176F8D282A3427D5188FF3D84A6D /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/impl/codegen/callback_common.h; sourceTree = ""; }; + 49BFF34B5E2A96F249DE8E6CB07C7537 /* cordz_statistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_statistics.h; path = absl/strings/internal/cordz_statistics.h; sourceTree = ""; }; + 49D541372A216CFDDEF530731104F2AC /* 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 = ""; }; + 49D88A33EECC811001B9C8BF00BAFFF5 /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; + 49DE1AEEF83CAB8467865CDBBFFAC641 /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/support/sync_stream.h; sourceTree = ""; }; + 49E7A01795E810D8830F421B2E52C8E1 /* GDTCOREndpoints_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h; sourceTree = ""; }; + 4A2D0E1C0FE0A39CDB68705093EB5AFC /* raw_hash_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_hash_set.cc; path = absl/container/internal/raw_hash_set.cc; sourceTree = ""; }; + 4A2DEA38EB7A0DC4708E23315BFBF57B /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; + 4A2EC831F5805DAC385FF95CF951B6EA /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; + 4A2F1B38CA3146C5A92CB9247522CDE6 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; + 4A49E730FE7C9CE340FE9149A18B6D65 /* x_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_info.c; path = src/crypto/x509/x_info.c; sourceTree = ""; }; + 4A4C28C5DE55D4E6BDDED6B0F165DEE9 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; + 4A5AE17BEB37C1111D254C564898BD87 /* 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 = ""; }; + 4A65C0B477975BA37D09B734D955E8D4 /* db_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_impl.h; path = db/db_impl.h; sourceTree = ""; }; + 4A67B7B1F9521FDDC0E7068069583F25 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; + 4A7242FA240BCEA5FBC0B1EC7C49C1AC /* FIRResetPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h; sourceTree = ""; }; + 4A7B7582268692FEEA52E674ED68797E /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; + 4A7CAADCEC9D2522056349E31EF87F4E /* hpack_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_parser.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser.cc; sourceTree = ""; }; + 4A8E749951CED7CB6B2A116637E92ECE /* int128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int128.h; path = absl/numeric/int128.h; sourceTree = ""; }; + 4A94F90F7F288FA4CD24208DFF7A1DB9 /* composite_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = composite_credentials.cc; path = src/core/lib/security/credentials/composite/composite_credentials.cc; sourceTree = ""; }; + 4AABBBBA6D8C6D3BE428CC78811A4E01 /* 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 = ""; }; + 4AE5CFF2183C250DC7FC6C04A6B2886E /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/codegen/service_type.h; sourceTree = ""; }; + 4AEFBD6C2E836A696A53E4AF4F88341C /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; + 4B12C2321E0D337A40480C526BEEDACE /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/impl/codegen/message_allocator.h; sourceTree = ""; }; + 4B35BD7CDFA46C68589BF278CAB0B546 /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; + 4B4CC2179BBD5C1D6161F28DEDC084D8 /* ssl_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_security_connector.cc; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.cc; sourceTree = ""; }; + 4B59BBAF728D7E8D8A07D8EEE6C412B5 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_parser.cc; path = src/core/lib/service_config/service_config_parser.cc; sourceTree = ""; }; + 4B5F3A0BA70E884D7CAF02006F257B70 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; + 4B615C246F827C5529AA65E2EAB8D932 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; + 4B646F91E0AFE8ED3A71A02AF4589A29 /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; + 4B7783D21B5D4C98097C79E98F17BEE0 /* 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 = ""; }; + 4B97F58C704AE38EAB30E3A54A4904FB /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; + 4B99CEF7CC07DAA0ED03E00EC195A0B2 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; + 4BA3CE3E8B6DEA5E1781D80A12024B67 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; + 4BAC2D3DDCE5899C9DF403F682E26A2E /* struct.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/struct.nanopb.cc; sourceTree = ""; }; + 4BAF3C079858BAEAE7ECAF1E9EB3BF24 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = src/include/openssl/srtp.h; sourceTree = ""; }; + 4BB952D963F7A967B498C2A24D239E85 /* unicode_groups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_groups.h; path = third_party/re2/re2/unicode_groups.h; sourceTree = ""; }; + 4BC7B31F32A3BD8757EF10BAD153AA68 /* 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 = ""; }; + 4BD5B5411379344FA68FA87D7794E603 /* server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_auth_filter.cc; path = src/core/lib/security/transport/server_auth_filter.cc; sourceTree = ""; }; + 4BE3A062E351A3059228607882A4A2F6 /* FIRFinalizeMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.m; sourceTree = ""; }; + 4BF139E955AC55F95242D5919BB3D5E9 /* frame_goaway.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_goaway.cc; path = src/core/ext/transport/chttp2/transport/frame_goaway.cc; sourceTree = ""; }; + 4BF21151DACE726AE78BA6A91E52394F /* endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_config.h; path = include/grpc/event_engine/endpoint_config.h; sourceTree = ""; }; + 4C0B9BC70028F8BDB5E6EF31F3F9986C /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; + 4C1444F0884C76B35AEEC6DBE3F4A597 /* tcp_server_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_custom.cc; path = src/core/lib/iomgr/tcp_server_custom.cc; sourceTree = ""; }; + 4C17AA89E04AB38E6AF89E0ADDEC55CE /* 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 = ""; }; + 4C394F11DE2D57CE916E89F5D66298DC /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; + 4C3EF07B99AB4671688F8C8F60DC738F /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; + 4C4B3153670250D0144BC48A39993D20 /* 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 = ""; }; + 4C5921B00E6545679F98ED5E437FE12C /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; + 4C59B27B0D0CB9B474C889C3D1697A35 /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; + 4C5BAC96761DFCABE4AC41DD71319A40 /* pipe.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pipe.c; path = src/unix/pipe.c; sourceTree = ""; }; + 4C86B60C37497122EFA11C28477DCA0D /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; + 4CB0A385FE4DC4D30F86505F542818A0 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; + 4CB6B1AC62511A94BE481FB3593CA606 /* optimization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optimization.h; path = absl/base/optimization.h; sourceTree = ""; }; + 4CC18E826F72EC8D9F4600B143EB4AEE /* FIRVerifyClientRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.m; sourceTree = ""; }; + 4CEEDD5CC4ADCBF313B6404649CF45A5 /* jwt_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jwt_verifier.cc; path = src/core/lib/security/credentials/jwt/jwt_verifier.cc; sourceTree = ""; }; + 4D16374A016B73B7C4CB4BFF1F229D3A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/unix/internal.h; sourceTree = ""; }; + 4D2352DAEDB9C145770BAB16CFAF17F1 /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; + 4D28233D4CB29F7EF88CDD713352D611 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; + 4D2FBC38EF41D5C4CF059A39B202910E /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; + 4D3A047081A1C37353133DDFEA02AD17 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; + 4D3AD9AD336132FA885B8C0267B5F5B8 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 4D4EEF3B185A8F9AA4288068F2512432 /* curve25519_tables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_tables.h; path = src/crypto/curve25519/curve25519_tables.h; sourceTree = ""; }; + 4D4F02BEA6621E833C7C42F76A720DE3 /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; + 4D656E858FEE438DF7FB7B3D4C4CEDC1 /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; + 4D69529A8B679A5A12ED00EAC6F6829B /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; + 4D6C4CAD50BCE677F87D51D5F5F7E067 /* FirebaseCoreDiagnostics-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreDiagnostics-umbrella.h"; sourceTree = ""; }; + 4D713C2D01046042F563D47361ECA4DE /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; + 4D7B133F87D98A84DB5CC78D2895AB25 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 4D8BCB168CEA2973C48A5E16CD76B396 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; + 4DA53456E41B59A8E6539F7FB5B44164 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; + 4DBED22429E28A5FBF841B6DCDB99499 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/internal/optional.h; sourceTree = ""; }; + 4DC92CB1DCE4968F8CEA3BC5D2489598 /* 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 = ""; }; + 4DE7350C9BE67FDB878476E06F1B18EB /* alts_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_credentials.cc; path = src/core/lib/security/credentials/alts/alts_credentials.cc; sourceTree = ""; }; + 4DEDA71BB7E1C1C8534C00B1BA060716 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; + 4E061617839A02E725F607D4D09D0207 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; + 4E1A4AF91207EFF398216F6D75E5365E /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/fork.h; sourceTree = ""; }; + 4E1A8AAA43D56A8C6FECECD23938CE18 /* FIRGoogleAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthProvider.m; sourceTree = ""; }; + 4E33BBEAE7D9E78940C9F05199516105 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; + 4E50DC3370CA901C714CD9AD0BCB9F39 /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; + 4E611AFAA746E11E2FA8697A64C02ADF /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; + 4E6279DF857D0563EBC8192D586355CC /* 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 = ""; }; + 4E662F85AEE6DE5FEB013139002BE6AB /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; + 4E766CAE6130F17BCF4C80F2189C4888 /* pcg_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcg_engine.h; path = absl/random/internal/pcg_engine.h; sourceTree = ""; }; + 4E7DD4D2285193FBD94561970A93CADA /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; + 4E89AF5197CAE8B11B179A8C903013E0 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; + 4E8C20C03AC3B8E521758C20B1C85CDC /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset.cc; path = src/core/lib/iomgr/event_engine/pollset.cc; sourceTree = ""; }; + 4E91F8A1C7D8B5702777AF5E3B47B833 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; + 4EA4E231445C9D0F0A0B00DC15A0FB9B /* strscpy.c */ = {isa = PBXFileReference; includeInIndex = 1; name = strscpy.c; path = src/strscpy.c; sourceTree = ""; }; + 4ECA1EE622E19A95455C13C2E5F77CB6 /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; + 4ED09D5A2A1D89F9F5B167E3728CB76B /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; + 4EE670011E8A7D6174BA15BC3C07CDD9 /* firebase_metadata_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider_apple.mm; path = Firestore/core/src/remote/firebase_metadata_provider_apple.mm; sourceTree = ""; }; + 4F000AB570CE4D5019AEC98EA860295B /* ostringstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostringstream.h; path = absl/strings/internal/ostringstream.h; sourceTree = ""; }; + 4F287543CCE1C0542023B507685EDF5C /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; + 4F3BDC65CB66DB3C6CCF50CDF798258C /* 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 = ""; }; + 4F42D93E27A8586CF0912FDC7A4774E9 /* CLTypingLabel-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CLTypingLabel-Info.plist"; sourceTree = ""; }; + 4F53D0D3D50556857E62F6B2004D257A /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; + 4F564CC2B91600E34BDD4B0384D34637 /* unaligned_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unaligned_access.h; path = absl/base/internal/unaligned_access.h; sourceTree = ""; }; + 4F5E31E8A170BEDFBC5C4D6542D58356 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; + 4F99C09C601326FC2A42B485B897C92B /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; + 4FA7A6D0AA2F98D94B5FE10BA0741DA2 /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; + 4FA7E2F8C525790747639E0FCCF17755 /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; + 4FD7EA9C9F42563B6BC440EAB8AAE188 /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = Firestore/Source/Public/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; + 4FEF434046F2DD0A82AE0F5A4236C874 /* a_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_enum.c; path = src/crypto/asn1/a_enum.c; sourceTree = ""; }; + 5007F81986657D56B490A0AE23DD69EB /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; + 50138F551D6860C60910FC86222087ED /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; + 503AE6BA073EB0139BF196AD8835CC70 /* GDTCORMetricsControllerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsControllerProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORMetricsControllerProtocol.h; sourceTree = ""; }; + 50673DB4FF2C811ACEC8D9DF490200AB /* grpc_tls_certificate_distributor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_distributor.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc; sourceTree = ""; }; + 506DCC5EC2BA9143E8E779F41C826BDB /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; + 5081C1D638D299A55ACF28D54851D1B7 /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/include/openssl/conf.h; sourceTree = ""; }; + 5090E2455BFA521DBFA58566083C0C53 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; + 5098FDF29A1ECEBA473D667406424987 /* 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 = ""; }; + 50D661EF9FF208956D0B356ABFEC2FB1 /* proxy_protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c"; sourceTree = ""; }; + 50F0B86F29FD3A5AC444923EF9B0166E /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; + 510285E4877BE07331DD7620323B6718 /* 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 = ""; }; + 51040BD76F8D0881F8636F3AC5E1EC38 /* thd_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd_id.h; path = include/grpc/support/thd_id.h; sourceTree = ""; }; + 510E8005B247211C51B3AE7B7633AA1D /* status_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_internal.h; path = absl/status/internal/status_internal.h; sourceTree = ""; }; + 510F9412B268983A1428EE5E0DB030E7 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; + 5120C5825D365733032564F8F7BBCD12 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "BoringSSL-GRPC"; path = openssl_grpc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5150B0D594A45DBBA0E0E810AA855123 /* 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 = ""; }; - 515A8039F086F2C6B49BAC0CB5580503 /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = table.c; path = third_party/upb/upb/table.c; sourceTree = ""; }; - 515F6C8B63220BF7C8868F8699C2ED1F /* slice_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_split.cc; path = src/core/lib/slice/slice_split.cc; sourceTree = ""; }; - 5161171B05A0D32C18A67810CCBA11F6 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; - 516ED07CA5ADD6BC0D6E047F1416AD7F /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; - 51714DDCB074E204B6F3BE9E3EB66986 /* 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 = ""; }; - 517B97015B3FC5EA2B07A71FDE8D1FFA /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - 5186766C19ED0E80B260A731B62EAF96 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; - 519111FE31AF9C33771556A6A7CFF355 /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; - 519CFAE5E80E0858F22B1207F772371D /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/include/openssl/thread.h; sourceTree = ""; }; - 51C01A0A42203BF3A2AEBC597A235616 /* 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 = ""; }; - 51E171201B95E22D24FE86EA60539F2E /* 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 = ""; }; - 51E18CD16C038114D5BD8101417BEE2C /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pool/internal.h; sourceTree = ""; }; - 51E3E996372F9596593B3594C5F3792D /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; - 51E7F2038A0FFD81F4DA08919B2465F1 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; - 51F5527F8DBCF86CE08054B11994B74B /* 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 = ""; }; - 51F7BBC9E6B6BFF79BF1321A3AF0DD44 /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; - 520993DD615B962BCA83B87043F6B5C1 /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; - 5250D9750970EC72662A4328BC6D34DB /* 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 = ""; }; - 526F3F794218C208C7F18690F8E54E02 /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; - 527C17EF3B4C69823F04617EC5125736 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 52B105DF984AFC8E0B4DC9069FAA1CAF /* FIRAdditionalUserInfo_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo_Internal.h; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo_Internal.h; sourceTree = ""; }; - 52BB45DBBAB2980EEBC94F2BFA411AD0 /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; - 52C8017BD512BD1CBD411D507040798B /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; - 52F16022C649ACB97E6AA6764CD9EECA /* lrs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upb.c; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c"; sourceTree = ""; }; - 52F297625EFD545077312FD10FF822EF /* 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 = ""; }; - 53066434EF4AE66D061D6B1DB55A75FC /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - 5308BA4B92B51B01985457197C540C9A /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; - 531F41E910FA8C57321514F25F119A01 /* pod_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pod_array.h; path = third_party/re2/re2/pod_array.h; sourceTree = ""; }; - 53212C870257E407514D0B7EBBC7CAE3 /* futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex.h; path = absl/synchronization/internal/futex.h; sourceTree = ""; }; - 532DA9FCB6AAB8630152D8CEA7CD8EE5 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; - 5331B21BF9163E6BEFAB03650F5C2B26 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 5334B11BB7A0874C2963E2E78591A20C /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; - 537783505D0EDCAD67C308673B6B2BD3 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 537964F0ACE37B6A892730099609A883 /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/impl/codegen/callback_common.h; sourceTree = ""; }; - 537E6C959AE50F65BB780F3D99DE18CE /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; - 5388D55251110326A062F6A5A4FE54A6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/conf/internal.h; sourceTree = ""; }; - 53C9801B2F8B2CD50E21AE541468BA59 /* gRPC-C++.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-C++.modulemap"; sourceTree = ""; }; - 53CF68FC9387B7C4FCC322FAFB715A17 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; - 53D0AA6AE75C3C240E84BC6339E5DAFB /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; - 540F2B2E80B217D044C50B4B3024578E /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; - 54160E37AF4805883EE529E53FE80C53 /* 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 = ""; }; - 542E2201649FD3BA033B8BA4C225AB0F /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; - 5441A34E201EDA4BD82DD79DF4FD031A /* memutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memutil.h; path = absl/strings/internal/memutil.h; sourceTree = ""; }; - 544621CF0734E8DD6CD34F8DE92591C6 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - 544EDA90AB94329937EC7A44A714E704 /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; - 544F68A089CA6E9F03FF9B22195FA661 /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; - 545266DC416A734DB0D2DA7D63AB8BA3 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; - 5453F7B4FAD6BB59D01E772773491110 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - 54568FD644571921487F46147E154CF8 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = port/port.h; sourceTree = ""; }; - 54A803D5151E2BAE1312FCFA725C61FD /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; - 54C0603450EC2B6A1B7F48C52B8955D1 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; - 54D2E0296904A01121472F6025702E25 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; - 553AF1D17FF3C303161C8CE4614D629D /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; - 555755FC986220016223AD6FEF637404 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - 557AF053195E4E1535624B1F30AEE6AE /* 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 = ""; }; - 5588F70B6B250953B5D1E23B172C337E /* FIRGitHubAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthProvider.m; sourceTree = ""; }; - 558B59B0974DAC57D0A823C464CFB9A6 /* rls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c"; sourceTree = ""; }; - 558FEB78138F8D6E914C3226741CBFE6 /* 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 = ""; }; - 55932A25182FDD770F09E6659F107218 /* 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 = ""; }; - 55A9350584631285065A0B7A19044102 /* p256_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_table.h; path = src/crypto/fipsmodule/ec/p256_table.h; sourceTree = ""; }; - 55BEB17780C7EC816508770FC262F1DF /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; - 55F980E84623602E0204B77CE99A9372 /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; - 55FC2064FC20D690EBA7B427A819CDB7 /* FIRCreateAuthURIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.h; sourceTree = ""; }; - 5644112402B53656046A5C2E62B210CB /* FIRUserInfoImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserInfoImpl.m; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.m; sourceTree = ""; }; - 5654679A04C2B3B66EFF7DC0BB2B6001 /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; - 56547311CE3860919BB8FEFA51ECB0C1 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; - 56693F7593922AF3CEBA0E29564AF012 /* mix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mix.h; path = third_party/re2/util/mix.h; sourceTree = ""; }; - 5669B37980A2C27B347C88D24A5245A6 /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = c.cc; path = db/c.cc; sourceTree = ""; }; - 567DE34A17B6351564C1B1B156942529 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; - 56AA12118D3A9F28C995C4618237BFCB /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - 56AD1C946FE54FCFEFB46C426675FAC4 /* number.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c"; sourceTree = ""; }; - 56DDCC36A630FCE427DE8B99BF1CA8E7 /* uv-common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "uv-common.c"; path = "src/uv-common.c"; sourceTree = ""; }; - 5706A32E275C03E7E6636938B7384037 /* vdso_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vdso_support.h; path = absl/debugging/internal/vdso_support.h; sourceTree = ""; }; - 5710B7DECEFB5CADF81ECA6E0521C5B8 /* FIRGetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.m; sourceTree = ""; }; - 57154B976BBF46B3B191F57066FBB2B6 /* 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 = ""; }; - 572C085368F67605A3C1B0315F611E38 /* randen_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_traits.h; path = absl/random/internal/randen_traits.h; sourceTree = ""; }; - 572CC7E63EBE5612809F5A345639FF5C /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pcons.c; path = src/crypto/x509v3/v3_pcons.c; sourceTree = ""; }; - 572E01E608361DD0DF7B1AB2C7BE8447 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; - 5754AAF412D8D2FF369643708F23553E /* 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 = ""; }; - 575DD436391DC3BA9D4CED488AE2F6CC /* 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 = ""; }; - 5763BCC22760EB5D5B366C4D7D794273 /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h; sourceTree = ""; }; - 57675477D4DB0E5E71E74831B267B9F6 /* 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 = ""; }; - 576983C2474543614C202AE55F53F737 /* 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 = ""; }; - 577369043FA5FA8FDAF630730C417706 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/impl/codegen/async_stream.h; sourceTree = ""; }; - 577E93AD33C9EEE4C4DD5DF22B63F93F /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; - 578C04481D513F9AE055EBCA062B77F7 /* 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 = ""; }; - 579B3E492708354C7D840C01C706D077 /* 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 = ""; }; - 579EEBC70FF37E85F4B04D70864B58AE /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_balancer_addresses.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; - 57BB953F0CB0C433464020B0E00F59F9 /* 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 = ""; }; - 57D4DC1CB570DD9F0991A0C0B936A1BF /* FIRStartMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.h; sourceTree = ""; }; - 57D9D04F4FF69AA878CB56C2CE564C89 /* http_uri.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c"; sourceTree = ""; }; - 580385EA62D5F2B7AE7A7FA62157691C /* unscaledcycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock.h; path = absl/base/internal/unscaledcycleclock.h; sourceTree = ""; }; - 581D4E97B9C153D6581E9FAB58DBE173 /* cord_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_internal.h; path = absl/strings/internal/cord_internal.h; sourceTree = ""; }; - 5822CFBA3FA27C58E263CB725A6FDC1E /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = ""; }; - 5822F78F5E1490E66C1B4E5CBDAFE96D /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = Firestore/Source/Public/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; - 5825553765E09FFBA84EC6D34FA6EC0D /* 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 = ""; }; - 5838A843FA8C91F40226C6CF88A6C235 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - 5852C08B5630DDB5A5C96AEC96900138 /* 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 = ""; }; - 58725D54B32D5B77A2724A66D7ECF9FD /* 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 = ""; }; - 587BF25E347F3F5B394DC39E2EF64039 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - 587F6CD8D7DB682D57FDFE9C5C5E59DF /* 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 = ""; }; - 58801E32C4A42A16557BA21E4B98364C /* 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 = ""; }; - 5880A4129D44D0A02E2246BC3EB7DD79 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/google/rpc/status.upb.c"; sourceTree = ""; }; - 588A030CF215733900465F808EDA6BE5 /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; - 5892480F0D782668E0F1E57DB4B5516B /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - 5892894960C914E174B043795089BF47 /* 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 = ""; }; - 58AE3D4C9E9EACADE37CAC4654B7A8D8 /* FirebaseAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.release.xcconfig; sourceTree = ""; }; - 58AF641AC2B1113B880F899C1B65E8E9 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_crld.c; path = src/crypto/x509v3/v3_crld.c; sourceTree = ""; }; - 58C4316390D07AD0C9474A71B0DE7AEA /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; - 58C9EADE8BEF8BE5F34E1E7E31A8D1E9 /* FIRVerifyCustomTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.h; sourceTree = ""; }; - 58CA1261190A47476BFFD6E6D5769A99 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = src/include/openssl/x509v3.h; sourceTree = ""; }; - 58CBA3F290BEECE48CB118CA5B45C07C /* 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 = ""; }; - 58D272EA215EECAE8DC278AE15D91714 /* 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 = ""; }; - 58D5D7A847B5BA00D7E5289BAC10EC22 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; - 58F5126CB35CFB3CB89D34370E0F55E3 /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; - 58FBA651283CD0BDF6C1AA81F2BDC415 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; - 590AE90506EFCE06B4EDCD9CD77DED30 /* str_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_format.h; path = absl/strings/str_format.h; sourceTree = ""; }; - 590F9DCB1F32514A63FEA3F6982C033A /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; - 5934436C32E7BA87C0B6BB29A4BD77FB /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; - 594423FC6BB5CE4613E472B5C0E865A8 /* 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 = ""; }; - 5944AB752283D98A6EE08F0C1216B66C /* v3_pci.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pci.c; path = src/crypto/x509v3/v3_pci.c; sourceTree = ""; }; - 59545D091D38858ABA313424F20D5C82 /* 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 = ""; }; - 5970A2BD89CC425DC336C86C012215F0 /* FIRPhoneAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h; sourceTree = ""; }; - 5983163DBF8E6D8A4ADEBD3302183817 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - 59AF2183B7FC040CF5BF53E5F0B49803 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - 59B6C8A3E2B9043D0619CFF8C04B9E4E /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - 59BFE7FAC516ECD49F76881AC7F57008 /* 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 = ""; }; - 59FA3D0E52D47A2DDDEF7023D073F101 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 5A054577C50CFE5E8610F768511DA469 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; - 5A0E81CE3F628D747868EC97D07285BA /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; - 5A21B5A9674571E25435EAEF9834CCFE /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; - 5A413DD6F6C84C13CB8EED25FD2255E2 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - 5A537E6AEB37B00D25E6A1396917BE5A /* 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 = ""; }; - 5A5690602DE554031B6F660D4731ED42 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - 5A84DAAB797057EEAC2BBECBD1D3A800 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; - 5A8664A9376CF43362546ECA70865293 /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; - 5A8CCD4CF85DA2D2CF5927AB48A8D078 /* 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 = ""; }; - 5A9059B544057592A07E7EE271AB952E /* FIRVerifyPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.h; sourceTree = ""; }; - 5A939795E3519A5887007458869F871E /* 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 = ""; }; - 5A988B88B8C81B7439F14B3A81FB90F5 /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; - 5AA069650C7EAC552FD5DD0AB2CADC6A /* 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 = ""; }; - 5ACDC0CFC469F0C6CF83000833DD0625 /* 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 = ""; }; - 5AD40BAC0C7B4B7D167A059CD8364CDB /* FIRAuthProtoStartMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.h; sourceTree = ""; }; - 5AD49DD9C8B5221B6CCE7DD902E02B57 /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; - 5ADF5062370B339DB0986D23451D2F61 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - 5B1F43074F22A077884B27BBAD53F797 /* 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 = ""; }; - 5B28F283A00DB24FC9776C6CADCBFBD0 /* 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 = ""; }; - 5B5F1B2CD3C7C4A727C96B227BADCAEA /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; - 5B71F3AF31F718C75C12F8DBBC60F4F3 /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; - 5B792610F189EF2F180F4F1EF110DDAC /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; - 5BE27CD6D539A21E10BB1F379FF67E61 /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; - 5BE83B8E9DF939E3C5AE171BFA0D044B /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; - 5BE9B172CBA2D6DB99D3CD2D96C5D90A /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 5C09E600218F805ADBA20C8D9B7EBE83 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - 5C1A9BD5F38531A5B1B100037F6260BC /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; - 5C2DADECDCFC712412643C07ECB91D85 /* 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 = ""; }; - 5C3BDBC50FBA7DF6C99C6F031A342A14 /* udp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp.c; path = src/unix/udp.c; sourceTree = ""; }; - 5C4AA539E9FCA0404B32736D54E2329B /* 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 = ""; }; - 5C510F2DEFE792F7E0D8D71249619EB3 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; - 5C5AB5AA044F03D2ED736480E3549B6C /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - 5C5B625764F5A5455D61EFCF3CE3C7E9 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; - 5C6137321C1B2F35460BB9271B14F891 /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; - 5C659DABC9D85BE329800DB9D46C639B /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; - 5C6AB1C491089F8F5FD5FF2F1D09FE2B /* FIREmailLinkSignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.m; sourceTree = ""; }; - 5C8E3A4D669EB97BC1F5525004F1B0F5 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = include/grpc/support/cpu.h; sourceTree = ""; }; - 5CA5EE1DC15353402FEEB104EAAFAE4F /* 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 = ""; }; - 5CDFAF2E35260024A1BE63BD60A6A486 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; - 5CF67AD7C6FBE64CCC3B527BC1ACC9CC /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 5D0CBC24FE3C66CAEBDDE5783D7C683A /* tmpfile_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_posix.cc; path = src/core/lib/gpr/tmpfile_posix.cc; sourceTree = ""; }; - 5D31156CA5F808041CACA74DBC166803 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; - 5D749EFF81E7CD5C75DAA368FB61B1DF /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; - 5D83DC3A83153B97A813CDFCBE6D1C45 /* 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 = ""; }; - 5D85CD32021920D135B7882D57E6F139 /* 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 = ""; }; - 5D8668150FFE78F4E1915CD4AE4BA246 /* 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 = ""; }; - 5D9363E6577190A2B9F0486708525D44 /* 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 = ""; }; - 5D95EF273DCCBBB93D71AE2E4B074E65 /* credentials_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials_cc.cc; path = src/cpp/client/credentials_cc.cc; sourceTree = ""; }; - 5DAD8B947353E328A8FC5C94C23AC6AF /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; - 5DC02CD35005D5EC01B54A8BE99C10CB /* 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 = ""; }; - 5DD9F73745779FDEC3A122752A8A2E96 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; - 5DF5B999A7319F583528EBF1C39974AF /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/function_ref.h; sourceTree = ""; }; - 5DF7949BB7626FE5F124F8620005582B /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; - 5DF9144218CD230FCDE9F2B69D01587B /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 5E343720A4CE8C235BFBCB0C0A437D97 /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; - 5E43D3DA570D5CFFDB99A9610AB9CB35 /* pipe.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pipe.c; path = src/unix/pipe.c; sourceTree = ""; }; - 5E4841A36EA67FEB52E6D60914F58BBD /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; - 5E48E851EDEE80DD2DD3A4244A8882BC /* 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 = ""; }; - 5E4B3F78F1AF4BD460176A1003D94ED1 /* 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 = ""; }; - 5E511D58A382BBA38D601B2E14812370 /* abseil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.debug.xcconfig; sourceTree = ""; }; - 5E5CDAC6B19E41A3101370687183966B /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 5E643F0A66D9C70133AAC679EAF85B41 /* builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builder.h; path = db/builder.h; sourceTree = ""; }; - 5E64D68F5D8E7D028DE843A09A9015B2 /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/codegen/metadata_map.h; sourceTree = ""; }; - 5E8F118AC86E9E7EBAAEBFF0ECFA062D /* mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mem.h; path = src/include/openssl/mem.h; sourceTree = ""; }; - 5EBACE88C2B991171319B4FF23125C45 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; - 5EC8B112047398545277E4DF5497BEAF /* 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 = ""; }; - 5ED101EBE79DF646C3062C490E14A567 /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; - 5EE740E8816C4FE50351436882289E58 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; - 5EF1073619ADC568CC5135D837E09048 /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/impl/codegen/server_interface.h; sourceTree = ""; }; - 5EF5B116F4455A1595B671345AD15A87 /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; - 5EFB92FE6ADD9FA33092D20A95C2E9CA /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; - 5F0680FA08CD94F81F03FDC036EEA693 /* listener_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c"; sourceTree = ""; }; - 5F1EF5E2AA8D4ED34773A9D3193BC853 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - 5F2D72FB05727E906682E7C4A9C2C7DE /* FIRAuthSerialTaskQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSerialTaskQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.h; sourceTree = ""; }; - 5F31A1F83903D5B2B2BB71333CD9BED3 /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; - 5F497E5FFDFF8821B3417D2ADA45C726 /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_ares.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; - 5F932B48A2E2D0D659F06F52FB0ED281 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - 5F9C32276C53E6A913ED1701941C5D90 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/server_context.h; sourceTree = ""; }; - 5FAAF296D8C41C5E6F712A89A98BAA4F /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; - 5FB4585FDADA76F94A66C13ED420659A /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; - 5FD1DF123C4D2DCC3447FE82DB494FD2 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 5FDCE4408F8DB8598515CB72BEE3C989 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - 5FDE287BB040CA3F221AE9267FD8E4FF /* bsd-ifaddrs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "bsd-ifaddrs.c"; path = "src/unix/bsd-ifaddrs.c"; sourceTree = ""; }; - 5FE0FDABB311ED38489D45C52777A2DD /* 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 = ""; }; - 600986C66218DA16998B8594BE60F5EB /* FIRAuthDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDispatcher.m; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.m; sourceTree = ""; }; - 600C85A3414AA472DF15EEF665CA4872 /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; - 601E0FEF257129E25CA4A57BB1856853 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 603070AE0F113799A7C404D161CA89EA /* server_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_chttp2.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc; sourceTree = ""; }; - 6040DB7AF6F89D51334BFA729DC30EDF /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; - 60828112F37F6D0FC95FDADBCEDB3837 /* 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 = ""; }; - 6085D4800EDDEA533DB3814CA92DF0AC /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; - 609B04049D55BFE2C3B432EC0355856E /* FIRAuthProtoStartMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.m; sourceTree = ""; }; - 60BB127BE875449F53FF031679E0AD3E /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - 60DF5A86AFCAF4C686591D657333B86D /* 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 = ""; }; - 6107ED9DF040806A97C0E7147B35C005 /* loop-watcher.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "loop-watcher.c"; path = "src/unix/loop-watcher.c"; sourceTree = ""; }; - 6110000C637C734612869D8720E11740 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/event_engine/endpoint.cc; sourceTree = ""; }; - 61104922BC555E34C04B2C080A9FD978 /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = round_robin.cc; path = src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc; sourceTree = ""; }; - 611247BE1EF371C6C932C6BF3622FF43 /* explain.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = explain.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.c"; sourceTree = ""; }; - 6132F3A5BA54BFB1D488321C522B589A /* md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md32_common.h; path = src/crypto/fipsmodule/digest/md32_common.h; sourceTree = ""; }; - 6159D2B884D1B076A43876DDB5E2A991 /* FIRAuthAPNSTokenType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenType.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthAPNSTokenType.h; sourceTree = ""; }; - 616F9F183EFBE5B98C5791972DD1ABA4 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 6170F6B8B3C4F10900FAF44A41BB2731 /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; - 6187F081F340EC2B3E66DF800D9E5AB5 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/support/sync_abseil.h; sourceTree = ""; }; - 619BACD9A4B2BB39113CC3F2FECD2E97 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; - 619CE7E61B208EE84E3B1E3101D2CD75 /* FIRSendVerificationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.m; sourceTree = ""; }; - 61A3C0ACE1DE0499AB65D2648A3D2764 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; - 61A706224965F379548D81D1EB652B78 /* representation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = representation.h; path = absl/numeric/internal/representation.h; sourceTree = ""; }; - 61B54FA6ADCE920BE0ABBDF87B9B4F5C /* 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 = ""; }; - 61D19B8AEC91178AB1D8A68FC679EFEB /* FirebaseAuth.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAuth.modulemap; sourceTree = ""; }; + 5163AB855D61BB5AFD9C8C6896554FDB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/conf/internal.h; sourceTree = ""; }; + 517871A7A6AD7891E694D83320BB59AB /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; + 5185E88A2D9C61BD59B3EBC18D69E539 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; + 518CCCDBA18368CC09736CB7D3F4E30C /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pick_first.cc; path = src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc; sourceTree = ""; }; + 5197A5BB51C676A7E2D142CFBC76CC3E /* FIRAuthWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebView.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.h; sourceTree = ""; }; + 5199E32BCE5C570B66FA0F57B6D682ED /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; + 51A41A971D478C0E5D2F4F099C975992 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; + 51B5928DCE2D65CBC9E19579CBEE2239 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; + 51B81A93BDE44C556A5FE22B2FBE96C0 /* transaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = src/core/ext/transport/binder/wire_format/transaction.h; sourceTree = ""; }; + 51CA796C398964CC455D2F3EC4BA518A /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; + 51D328A0C077CADA9BA68222CBD31D55 /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; + 51DAB97EB9A8A3D3B41D1BCE503086AA /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; + 52168929D6894E17968064856D22624C /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; + 521B91E77BF94B866CBB3FDB3A41FA97 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 521C6728CB5AD6BF415E45D1D24E745E /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; + 522EEC6EB39210AC7D2EA76AB081C34C /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; + 5237DD4AC24D76012695C8AA066EEF29 /* channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_filter.h; path = src/cpp/common/channel_filter.h; sourceTree = ""; }; + 524D7E83E927142C7AA251D862B1F9AB /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = ""; }; + 524D842718C6D4D3D8A29931942B3FEF /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; + 5267393A51BCC18F488AD6F047B175A3 /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; + 528D8C22EFC92F9C6B6033E1FCC2A23A /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; + 52936EE7429F440B406067E34858A26D /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; + 5293FFA252779DEFD7660E60C27E7948 /* version.c */ = {isa = PBXFileReference; includeInIndex = 1; name = version.c; path = src/version.c; sourceTree = ""; }; + 52AAB4328C9B8F610F0CAD473987B725 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; + 52B39CEAE8BA72BD85EFE35F1A19EDBC /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; + 52CDD63D0B814F0EC4F09A12663A1456 /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; + 52E67834B5A485CB9A2786D5BB6CA406 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 5304665D07660799AF09C13B972D6C4F /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; + 53137AA5BD2EB0BA3A556E9690CC740C /* dumpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dumpfile.h; path = include/leveldb/dumpfile.h; sourceTree = ""; }; + 53266F3E4A6C38A63464E4BFDB662845 /* pollset_set_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_custom.h; path = src/core/lib/iomgr/pollset_set_custom.h; sourceTree = ""; }; + 53326FF73FF8F5F9E3C96FAE75D25FE1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rand/internal.h; sourceTree = ""; }; + 536A443C7B168F5FE23AC3F89D22B1D3 /* cord_rep_ring.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_ring.cc; path = absl/strings/internal/cord_rep_ring.cc; sourceTree = ""; }; + 538C5B477539D111D6BF27DA0237F8D0 /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; + 538D1976E185A62525630DDBF81E5EE1 /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; + 5393370B135AF4280F012285B2494AA5 /* FIRVerifyClientResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.m; sourceTree = ""; }; + 53A0AAEF727687C88D648A8CC8E8E034 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; + 53A9AFB7FE6AE452B55617783E794CB5 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; + 53AC386B0850DF29A012F1C2BE733C22 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; + 53B321657BF2CF0B5BE76A98027CA70E /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; + 53B4A0DB90F0A089EE202EFBF4448746 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; + 53CF56B97347B06CB9F69B1EF3B426C6 /* fake_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_credentials.cc; path = src/core/lib/security/credentials/fake/fake_credentials.cc; sourceTree = ""; }; + 53E4044B7D53854CADFAE96E62EC9CE7 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ring_hash.cc; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc; sourceTree = ""; }; + 53E8352E869D06DFCDE803C7A17C457B /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; + 5400D00C86CDECFAFFAA711688901853 /* ssl_utils_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_utils_config.cc; path = src/core/lib/security/security_connector/ssl_utils_config.cc; sourceTree = ""; }; + 542066D4F8706E75029126E02424F41A /* casts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = casts.h; path = absl/base/casts.h; sourceTree = ""; }; + 543A65492B40E5159C7D45DFD719A1AD /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; + 543C9A412F08F2FF8E20DAC07090DD68 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; + 54657854D74D490959C971D4D1FDF82B /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = src/include/openssl/dtls1.h; sourceTree = ""; }; + 5470F1C011BF310D391B463CBD8212B4 /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; + 5475CD392D607B98B19D5589AD113674 /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; + 5497677C626BB870BE8E80C814B64709 /* migrate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.c"; sourceTree = ""; }; + 5497FEAFC542025412CC1664379ABA61 /* 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 = ""; }; + 54AF541A6B3213A6177848801664F754 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; + 54BBADBA5F05DE80A63FA32B8E13088F /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ocsp.c; path = src/crypto/x509v3/v3_ocsp.c; sourceTree = ""; }; + 54C2ED12431B10F5E01F87923D41C2F4 /* 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 = ""; }; + 54E50FB8E46928CD02C2BE37F132DC95 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; + 54E648875B677EC5A38C01EA0A28368D /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_conf.c; path = src/crypto/x509v3/v3_conf.c; sourceTree = ""; }; + 54E88675BB15AFFA27D7211E8A5AFA2A /* FIRAuthAppCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredential.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.h; sourceTree = ""; }; + 54F7307B515B07F439BBBD07E6EFC508 /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; + 5527AD8626D33637FA54D0A39292870D /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; + 5530801C6B53BE3CEC32D4D763EB7306 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; + 5538E61C17F9316886F4E51BB8C0A731 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; + 553B5C2F520098A2D86DFFA10B08F3AB /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; + 554C08C67E86F0CB79FCDB0E27DF2AF0 /* 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 = ""; }; + 5552ED910BD4273BAA15616EC18C9022 /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; + 55674C7EE7F57FB87B45619E7967E73B /* resolved_address_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolved_address_internal.cc; path = src/core/lib/iomgr/event_engine/resolved_address_internal.cc; sourceTree = ""; }; + 5574AEF7F63E0D5632D47E8E659813C4 /* 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 = ""; }; + 557B589946C7EC02A7EE572386E686C2 /* outlier_detection.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c"; sourceTree = ""; }; + 5582C68BEC05A1A50FEE4094B97F2FF2 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c"; sourceTree = ""; }; + 558CC5751FC1C3DD4766BE6E23031963 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; + 55A5F90FC76D4C8EBC2AE24BA3534EDD /* threadpool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = threadpool.cc; path = src/core/lib/iomgr/executor/threadpool.cc; sourceTree = ""; }; + 55A7E306843BBF9740DD3498CEB9873A /* 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 = ""; }; + 55B9F6438DBDE1C305B9CAED6CC1C042 /* FIRPhoneMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorInfo.h; sourceTree = ""; }; + 55C7BCE68CC73ED513E70158AFA22B33 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; + 55D852ECBA3506110319CDB7694912D8 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/impl/codegen/sync_abseil.h; sourceTree = ""; }; + 55DC5F968EE208F7E795AC84DEA1FFC0 /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; + 55E780D3DEC7162B7C05CE991F97AEDF /* 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 = ""; }; + 55ECE9F4148DA56473E0E39E5430FF5F /* binder_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_connector.cc; path = src/core/ext/transport/binder/client/binder_connector.cc; sourceTree = ""; }; + 56015EE01B06FB947B8D0773128E0B6C /* 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 = ""; }; + 56057FB488A750ED673ADDA72344E7CE /* descriptor.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptor.upb.c; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.c"; sourceTree = ""; }; + 56086DD8C914204EAD42BE9137D76CEA /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_posix.cc; path = src/core/lib/gpr/env_posix.cc; sourceTree = ""; }; + 560AF41FE8958C2FEBB0DC10319FDA88 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; + 562464A9098271CC9C9BF184AEF5E852 /* gpr_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_types.h; path = include/grpc/impl/codegen/gpr_types.h; sourceTree = ""; }; + 56260DBAA0F9BD43B745A48DEA138C1C /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/server_context.h; sourceTree = ""; }; + 56386944F1390AEEC7302B7F060CD7C3 /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; + 56884D13D200DA9298B504D7E96A7378 /* annotations.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.nanopb.cc; path = Firestore/Protos/nanopb/google/api/annotations.nanopb.cc; sourceTree = ""; }; + 56A130193EDE174AD63252F7BDD616DE /* 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 = ""; }; + 56B8516AE59330EEC37AFBBFCE18D088 /* 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 = ""; }; + 56C2BA60FF682D3D5FE784C92EE0D78F /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + 56C71BBAB31252A3F311FD3B14185D69 /* 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 = ""; }; + 56D3FE75F1B1D41CBD708A800DD8DE7E /* block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block.h; path = table/block.h; sourceTree = ""; }; + 56D5D8F5A884BEAAC976329B01817876 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; + 56EC8AE9A54B2039172E235F6EB30C27 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; + 56ED4D63820B762D5019EFE0A7762675 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; + 56FDCD49996225437CD3FF22F6D2D023 /* error_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_internal.h; path = src/core/lib/iomgr/error_internal.h; sourceTree = ""; }; + 57180A05BBC12B57923046D1F8F700F5 /* 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 = ""; }; + 572FBEA03BA545ADF8FB59E62C4BD2FD /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; + 57339499D4F6314B963D033E7E151C44 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 5742684EC1615FE2F7E77176288E43F1 /* str_cat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_cat.h; path = absl/strings/str_cat.h; sourceTree = ""; }; + 574759FB8FCB2104B700F4E20287655E /* 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 = ""; }; + 574B090D1E11BEE00CA6AF47A8968C2C /* 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 = ""; }; + 574E8CCB1260C950568FBFE18EAFCF52 /* tcp_server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_posix.cc; path = src/core/lib/iomgr/tcp_server_posix.cc; sourceTree = ""; }; + 57546376472B90DE81C00D2A64798A66 /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; + 5781859900B1E947D7510BBCB0CF0D76 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; + 5793A690D0457D2634188B00D25F12D8 /* Libuv-gRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.debug.xcconfig"; sourceTree = ""; }; + 57A0DFA918CF7DCFA299B3329F35DEFB /* FIRAuthDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDispatcher.m; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.m; sourceTree = ""; }; + 57AFB6CACF2ABBDC0F29D4CBB7295BBE /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; + 57B50E314A574C569D8F89C169D2468C /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; + 5803ADE7B3AB6FB872E2B2286B208C3E /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; + 58041368FDA16445A76501955566DCFC /* GDTCORUploadBatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadBatch.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m; sourceTree = ""; }; + 58076D9E0F17E46B6AB73FB3F6A727F0 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; + 5810AC4EA2A014E30E25A6BF5CFCFA48 /* FIROAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthProvider.m; sourceTree = ""; }; + 58124EB98D750BA1CFFDC0655EB6B863 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/support/client_callback.h; sourceTree = ""; }; + 58170FC46FBF9672498F9CCDADB3BCB3 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; + 581E18306CB3C9E0AF7960D07181784F /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; + 582DA92D9E02573E166CF86393FE4E01 /* 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 = ""; }; + 583DFBE6D4A137F69A4B9368A742D1F0 /* 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 = ""; }; + 5858922D99E8E158080A289DDE9D003D /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; + 585BF855EAB3E07C70D84B14DEEC470E /* merger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merger.h; path = table/merger.h; sourceTree = ""; }; + 58626C8BFD8833B7F7E8999F42ECB758 /* mutexlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutexlock.h; path = util/mutexlock.h; sourceTree = ""; }; + 58646B88661D5D3A973664E34220D43B /* duration.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.upb.c; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.c"; sourceTree = ""; }; + 586812315DD91E7234B03949EF011EC3 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; + 58839003DEF2533060B8357A5A7020A2 /* hkdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hkdf.h; path = src/include/openssl/hkdf.h; sourceTree = ""; }; + 589167D5C8BDA3FE3F85DE8886322F05 /* 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 = ""; }; + 58A2CEECDBAD57D1406A2A60442E5818 /* google_default_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = google_default_credentials.cc; path = src/core/lib/security/credentials/google_default/google_default_credentials.cc; sourceTree = ""; }; + 58AA555DCB7AD2C4980AEE79A710784C /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; + 58AA9126E1537B7A9F2CED6CCFA40D01 /* syntax.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c"; sourceTree = ""; }; + 58B5BB47577401F706299ECA6DB4799E /* 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 = ""; }; + 58BD8B8512B90CE9FABED5BC1CAAEC45 /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_service_config.cc; path = src/core/ext/filters/client_channel/retry_service_config.cc; sourceTree = ""; }; + 58BDC78857AC000484A9BFAE623D3117 /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; + 58DA41251C315C48A47FCEF5926DFD17 /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; + 58EC6F3EAF65D154020A0AE6DB325B19 /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = src/include/openssl/md4.h; sourceTree = ""; }; + 58FEA1A780B83E853DAF4F70D9FC54AE /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; + 59250A8AD0324F1039172B545A76E233 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; + 595C7E13CAC37B571EFC71EE2EFEDC98 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; + 596254AF98AE198BB3766F558BD4B779 /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; + 5973C9D8C59541173331872A11564099 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; + 5979D7585D4D45E6DE0093D79D0B71B6 /* leveldb-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.release.xcconfig"; sourceTree = ""; }; + 59854A68E95665241C4163B3F0631BCF /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; + 599CB6E334D556423455A3483FB57D8E /* cpu-intel.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-intel.c"; path = "src/crypto/cpu-intel.c"; sourceTree = ""; }; + 59BC9D848D1B6B3C32A63D007C657863 /* GDTCOREndpoints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h; sourceTree = ""; }; + 59C780C773EC1CC8B0DAD0CC29C2E536 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; + 59D727EF6E97707891D89A497C0760C5 /* xds_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client_stats.cc; path = src/core/ext/xds/xds_client_stats.cc; sourceTree = ""; }; + 5A17BBE0CD29A162BE14DD34DFE6AF7D /* xds_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_certificate_provider.cc; path = src/core/ext/xds/xds_certificate_provider.cc; sourceTree = ""; }; + 5A3957DDDF1467DD664A2B73B6668DC9 /* FIROAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential.m; sourceTree = ""; }; + 5A4445845F7D292F5FAD39D1D91C2503 /* hpack_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_encoder.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder.cc; sourceTree = ""; }; + 5A547B8A18E1D0E42C8ADB695A04ED8B /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/impl/codegen/stub_options.h; sourceTree = ""; }; + 5A768144AB6D73F5C5F43D1FAD0ACFF0 /* lds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lds.upb.c; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c"; sourceTree = ""; }; + 5A85C07A03628EF4CC56719F0B3124E6 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; + 5A935D1215A4F83C6391B6F1ADE279DC /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; + 5A9DA72FE98F8B7F23A8C8607D394D26 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; + 5A9E14D70332E884566881FEB813853D /* key_field_not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_not_in_filter.cc; path = Firestore/core/src/core/key_field_not_in_filter.cc; sourceTree = ""; }; + 5AA9BE6346C0C625CF9BD0E6454EAA0B /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c"; sourceTree = ""; }; + 5AA9F7C2DBF27A84F0AEAAB843C653A1 /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; + 5AAC7E095765CBFEF5A10BA6651CB468 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; + 5AB34B6AD2D066255BC3DDD9CEE5DC37 /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; + 5AB9E3B05EAE54A19AF83995D8BBDE6F /* 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 = ""; }; + 5ACBC6730B7C5A478FFBF73FEB242400 /* gaussian_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gaussian_distribution.h; path = absl/random/gaussian_distribution.h; sourceTree = ""; }; + 5AD8887BC9DCCBEBF15C76ACE424BD03 /* cord_rep_consume.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_consume.cc; path = absl/strings/internal/cord_rep_consume.cc; sourceTree = ""; }; + 5ADD19F2D8F352F26FEC966F69DF46D7 /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = src/include/openssl/rsa.h; sourceTree = ""; }; + 5AF2AB200CE8CF35B110FD22C65B1032 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; + 5B0FCFDE5A85A9FF604CD0A31D8DB65F /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = util/arena.h; sourceTree = ""; }; + 5B12C6C6C56F70BD556C855547CAD39F /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/aes/internal.h; sourceTree = ""; }; + 5B15B481A7A2E3372BD8319C41CF56AC /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; + 5B16156FF014C01D83F102F5C887C479 /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; + 5B1D381FC620812B7160FB2B6F5315FA /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; + 5B79D2AF181F21AC6D0214D2E5B8AFE1 /* 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 = ""; }; + 5B8299BB74DC49117B8A7A9A56D147DC /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; + 5B8678B2EB1A26A48D1ADB9DEC9D68BD /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; + 5B9A30E4D69D5CA645AA2905BB09E506 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; + 5BAFB2CD702C07921FC536FD5ABBE121 /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; + 5BB4312F3C1536478D54B6CFD2694530 /* FIRResetPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.m; sourceTree = ""; }; + 5BBD750D47C737D420A6BE511B0BC8C7 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; + 5BCFBA884ECF9CCF3BFEF0D26F911F89 /* lrs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lrs.upb.c; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c"; sourceTree = ""; }; + 5BD4821D6E145615E6F2B31373A41997 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 5BD7D4ACC940332DD4CD98A1DAFE8A48 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; + 5C0D108A9A768E4C3795C16535940950 /* IQKeyboardManager.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = IQKeyboardManager.bundle; path = IQKeyboardManagerSwift/Resources/IQKeyboardManager.bundle; sourceTree = ""; }; + 5C187D996C52747EC74DBFF72DA22AA2 /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; + 5C39C22DBFBA6BCBE8E1007E3C5FE6C4 /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; + 5CB01F073A2C48F74641E4DCF704031E /* 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 = ""; }; + 5CF1FC8FF108789C10DBCB78E9CCB781 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; + 5CFA20198B6915E2874A4A286063E4A7 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; + 5CFAEFD67C646FB49382613BEADA2544 /* alts_unseal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_unseal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc; sourceTree = ""; }; + 5D24150129CD79110035F2220F2D4708 /* 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 = ""; }; + 5D4784C5A2C1F40FD630BF3CBC1B8120 /* resolve_address_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_windows.cc; path = src/core/lib/iomgr/resolve_address_windows.cc; sourceTree = ""; }; + 5D563A37FCB837032CC6816203AFB2AE /* 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 = ""; }; + 5D5B3D260E7A95F8BE74DFDA9BA72A24 /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; + 5D7D8191C7D44D29FD318C1BE6AC7B58 /* 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 = ""; }; + 5D87612D6A95A1E643AC1CD7460BEDB3 /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; + 5D8FC3DAFBE674B0BA0E270CD10C9E5B /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; + 5D9D5895EFC31715E01FB32BB3EAA29C /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; + 5DA59009B2C868695D64A4DDCF2D8AF7 /* overload.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = overload.upb.c; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c"; sourceTree = ""; }; + 5DB0CBCC6D9D5ACCD5B3C22384F861BB /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; + 5DD58F957D9FA700C07D76E450532184 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; + 5DD9E1B025C3C0BD8D0152D5A42E9550 /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; + 5DDD509BEFF6D1104AE87C0AD4A47A43 /* GDTCOREvent+GDTMetricsSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTMetricsSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTMetricsSupport.m"; sourceTree = ""; }; + 5DFAF8D48A76BBBFF540F71C6D14EA46 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; + 5E02A5310281DECDAC8A4F2E230DEFC4 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; + 5E0A282AD7C8B84D1CA4DF8A555374FE /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; + 5E0B09B8E39DBD7B2561AB2BFD17FB5B /* 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 = ""; }; + 5E118E2CCE673570D15354FC58A70E95 /* re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = re2.h; path = third_party/re2/re2/re2.h; sourceTree = ""; }; + 5E11B10628FD678A98B2A12FF3373B24 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 5E208BB56BB4324506D23849D345BD16 /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; + 5E20BC731E6E488E4C265B07378D28D1 /* xds_channel_creds.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_channel_creds.cc; path = src/core/ext/xds/xds_channel_creds.cc; sourceTree = ""; }; + 5E24EAD78E3E26042B4725AB2D11B336 /* 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 = ""; }; + 5E27ACE453E2FF392BF2C0E58A69CA35 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; + 5E302CE0BDBAF46ED6F33137AAAEA625 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; + 5E54A65A2EC49C88D13B982FBD555AFD /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; + 5E5A4E92379536DAFE52CF2D7FE8A1E0 /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; + 5E743000A70E8D991D7ADA9D7CFF58CA /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/impl/codegen/sync_stream.h; sourceTree = ""; }; + 5E9472A8FA0A0B3C2A107417B9589FFF /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = absl/strings/internal/str_format/extension.h; sourceTree = ""; }; + 5E96910125E734038FDCEFD0E533E850 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; + 5EA09696A4688419E51C29AEAB3FD1FD /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; + 5EA85A72A034EC7898DDC137CFA18AB7 /* FIRSecureTokenService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenService.h; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.h; sourceTree = ""; }; + 5EBE6FA3968CFC72C496AB4F41739B0F /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; + 5EC033349635A88BA9D841C1F5DEE69B /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; + 5EEBE74FF56720CB8ADEFB48C6437519 /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/ext/xds/certificate_provider_factory.h; sourceTree = ""; }; + 5EF17E22E1293A1E8AA7CE14FE2DD8B0 /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = round_robin.cc; path = src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc; sourceTree = ""; }; + 5F1C213C08DDC760EE67C2738174148D /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; + 5F2641B223DC241AEE22BAAFB9CC5979 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; + 5F273B70495F0FAA39045538F2C804A7 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; + 5F45A35347768D0326C16D8A0940ACF1 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; + 5F4793D4FB08E017F36672C625C1B442 /* flags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flags.h; path = third_party/re2/util/flags.h; sourceTree = ""; }; + 5F658875261BCEB7316C087B32F44135 /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; + 5F77F0786C3132A7D9BF38659872CBE9 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; + 5F805874AC029880EAE7423DAF72EA4F /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; + 5F96B73C87B74A710538088CC3CC42C8 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; + 5FBDC7AAD706E1F90D76DE780B5CC1BF /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; + 5FCC5E2FDD77F250F8DC37D0CB45EE11 /* grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc.h; path = include/grpc/grpc.h; sourceTree = ""; }; + 5FD466A36A2926E71267AAAEE18ED261 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; + 5FDA73441FE5D284321681223E300BA5 /* inproc_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = inproc_plugin.cc; path = src/core/ext/transport/inproc/inproc_plugin.cc; sourceTree = ""; }; + 5FEFEA0A04CFA4775970BCC6A52F4771 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; + 5FF4D2B86A46C7C52D455671215CF541 /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; + 5FFFD88CD72F19BE852782F0314B8426 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; + 600211F57CC3134EABDFD8F849C976E8 /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; + 600EEAEC4ED6D644F6542CA87A100B95 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; + 601B28FAEA8098CD709ED0CDF069EA0F /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_lib.c; path = src/crypto/x509v3/v3_lib.c; sourceTree = ""; }; + 6020A818941C7158C7D06DE82B68E8BC /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; + 60318D1DB6354FDA1E9418E5B58D2625 /* leveldb-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.debug.xcconfig"; sourceTree = ""; }; + 6032C1E83060EDC635D637E9042FD938 /* 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 = ""; }; + 604286557E9CE4D862024F4ADE68E839 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; + 605737CF9D35765FD2B4682DAB4B7986 /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; + 605A6A3A9617F15346A7A0B7688DE823 /* FIRAuthWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebViewController.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.h; sourceTree = ""; }; + 6062DBB6B649BF59E421DE17865EBB92 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; + 60639E4923A2E5E97635FAB8820F369E /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; + 60660BFC635B76416DC9904483AFC9D5 /* 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 = ""; }; + 609D8229DC5796383B372B11BA4CE4F3 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; + 60AAB986D98FE2F729B493DA6CC9C066 /* histogram.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram.h; path = util/histogram.h; sourceTree = ""; }; + 60B431EE717302EFD3380957FEA96244 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; + 60C1DF1EA5F39F27D4422E5EE532A857 /* coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = coding.h; path = util/coding.h; sourceTree = ""; }; + 60CD80DB817A8AD9DA0F8C43CBAF68E7 /* binder_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_server.cc; path = src/core/ext/transport/binder/server/binder_server.cc; sourceTree = ""; }; + 60EFC22609D6812930E3601D2BD74F2B /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 60F464F201D3B207993F6B2A71400AD9 /* FirebaseAuth-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAuth-Info.plist"; sourceTree = ""; }; + 60F7A372AED14A0E7E62734950715DE8 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; + 6121E59BAC646E8C26449AA7C3B2B744 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.cc; path = src/core/lib/iomgr/event_engine/endpoint.cc; sourceTree = ""; }; + 613B0D3859FAFBD69DD8EF2121CF2F7A /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; + 614E061E10B30F837967FE19A240DE50 /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; + 617B5B0176953E43067CA810CA6F66EB /* version.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version.h; path = include/uv/version.h; sourceTree = ""; }; + 61B312742C5B5B307E5AE236256D240F /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; + 61CD4B7CD2101D99DA77109FEB66D5C3 /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; + 61CF949A3152F88CA5A8970BF70CE656 /* router.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = router.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c"; sourceTree = ""; }; 61E75DC80543DF7605A7EEFE89CE66DF /* Pods-Flash Chat iOS13 */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Flash Chat iOS13"; path = Pods_Flash_Chat_iOS13.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 61F5FB0A7D8F47A97305C64CC2404AB3 /* 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 = ""; }; - 61F9135CC68D8C62B3AB5225653B7597 /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; - 61FCEE24C2F608101EA8C8453E76DDDC /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; - 620416995AE0343ECE6E6346F774F1FE /* 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 = ""; }; - 62097D92B72E809967C8D0989A77FCDC /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - 620BE672FD7EC0113EBCC94031C20E2B /* BoringSSL-GRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "BoringSSL-GRPC.modulemap"; sourceTree = ""; }; - 6218BEC49AB8CF32D9AF9EF618C404B5 /* 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 = ""; }; - 6219973BABA63D9B7FEA3DDC39F4C76B /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; - 62406121C08F30D2E7BCFAE7377CA5CE /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; - 62481F32653432C7A1D0E8F8A6445054 /* walker-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "walker-inl.h"; path = "third_party/re2/re2/walker-inl.h"; sourceTree = ""; }; - 62582003A5DC7A58FB6C3BCC1BB0C99E /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - 625D95E33A7CCAA64F96F303F8DF7849 /* const_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = const_init.h; path = absl/base/const_init.h; sourceTree = ""; }; - 6270D4F2F333A591768623A17DFE9559 /* env_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_linux.cc; path = src/core/lib/gpr/env_linux.cc; sourceTree = ""; }; - 62713C46785517FFB47B56F2226956AC /* 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 = ""; }; - 6278C8ADAD75508AF874C23117B78181 /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; - 6291E4CE586417037130E076746A1DC4 /* queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = queue.h; path = src/queue.h; sourceTree = ""; }; - 629946C6BD3C66B3D8F2B92BEEE509DE /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/codegen/compression_types.h; sourceTree = ""; }; - 62C9039CA3722F6D91171D7881B1BED1 /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; - 62DF19CFF1EE9F5FD48066FF71779B14 /* 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 = ""; }; - 62F0B786F7913F2A931E90C970F29982 /* server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_credentials.cc; path = src/cpp/server/server_credentials.cc; sourceTree = ""; }; - 62F24680A7191E0AFB2AFD85F1CDB863 /* thd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd_posix.cc; path = src/core/lib/gprpp/thd_posix.cc; sourceTree = ""; }; - 63052411865EABC071586B4BA0935098 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; - 6312472BA3F98D5BADB2AE51A14D38B3 /* 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 = ""; }; - 6337B3FB5A0440102AF76A3F6D5F8F45 /* stream_map.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream_map.cc; path = src/core/ext/transport/chttp2/transport/stream_map.cc; sourceTree = ""; }; - 6340C2B09120725DD5CB5FE4DFD0DAC7 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; - 6354B4239EA2CA91A7B1A931849D7460 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 6368CD1DD42541FEC7E30B7745F86C2C /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 639B40463B96C85EBD02A4F619BBAC16 /* cpu_iphone.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_iphone.cc; path = src/core/lib/gpr/cpu_iphone.cc; sourceTree = ""; }; - 63ABAA30B4B26D75FADB481A2A636B6B /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = util/env.cc; sourceTree = ""; }; - 63B89EC784BA917D65E4143918F626B0 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb.c; path = "src/core/ext/upb-generated/google/api/http.upb.c"; sourceTree = ""; }; - 63C023C1EF54E20A4BAF35581645B0FD /* altscontext.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = altscontext.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c"; sourceTree = ""; }; - 63D10555A6CCE00AD2AC9CA7250A7EA0 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; - 63DCB79C7DF7F13F26253ACA6599A4DA /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = src/include/openssl/ripemd.h; sourceTree = ""; }; - 63DE475E04E958BAE243E82AACEB54C9 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; - 63E41FB55A6D9DD6F01BE04E3226029F /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - 63E8F197A90763ADEAF913245931A07F /* thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_identity.h; path = absl/base/internal/thread_identity.h; sourceTree = ""; }; - 63FC3BB05A9706FAE0BE209E9D4BD017 /* load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c"; sourceTree = ""; }; - 64060B2D9AFB12B064F19D77A7627D14 /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; - 64092E5672D484FB049C66D8FE31415A /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/call.h; sourceTree = ""; }; - 644662E714272EBD09A89D7E82F6F076 /* 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 = ""; }; - 64522C343CB6D8CC239271338E8757B3 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; - 645634BF7DADAA8AEB083791543CDE1C /* 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 = ""; }; - 645D28926BB292C897A77E7D91F4689B /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; - 645DAB0A7138E785398918876DDAC4A6 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; - 645FFB47B73CD219F91F74C132F32953 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; - 64641CB105FCA242E88E9472F5C43BE0 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 6475FB5507F63E26986D31F5A256DC4D /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; - 6494D8ED6C32B87FFE753464418D50C9 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - 6499B5E2D93CDB8E5DB72F18F8D4E328 /* thd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd_windows.cc; path = src/core/lib/gprpp/thd_windows.cc; sourceTree = ""; }; - 64A7A1D31F84665CDE468E26569F5E54 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; - 64CB5BF62892C0E010318D1AD688A34A /* 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 = ""; }; - 64D133CB14A556181F89F1648028F02F /* FIRVerifyCustomTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.m; sourceTree = ""; }; - 64D26241A3BD73C0AE191FD0FC1B2B6A /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; - 64D5D8B4689A4459A9513880B7C0B3F8 /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; - 64D934788C061DB7268A7225C4E67251 /* 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 = ""; }; - 64E041CE6B4F7947253B18999C4AF56E /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - 65042337FCD51B1287EB16CB9B696645 /* 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 = ""; }; - 65052151644EE762B6E4E04DA0AB26BE /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; - 651B3EABCB682CF0D00F0EE27B208D9B /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; - 652D316F848D030738302B4E03E0812B /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - 652E141444A00112AEA4C767510F5D5B /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; - 65317CF0A859C74DB9311356E180086F /* 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 = ""; }; - 653A06BD7CAB74B4A8C25ECCC89A3EBD /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 65440612011E1BD83B6365E703F597DB /* checked.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c"; sourceTree = ""; }; - 657ADD2FE6B1590B50E001526DC51AD2 /* FIRAuthBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthBackend.h; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.h; sourceTree = ""; }; - 657F6655E90FCDCADE0FAB5DCEBA9EB2 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; - 65A0049FDBD6B133C6A7CA37A895F911 /* 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 = ""; }; - 65BA807BA676D6B509550FAD392E8904 /* FIRVerifyClientResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.m; sourceTree = ""; }; - 65C4F6C9239CE764D0188A0F8B0EF0A5 /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; - 65D3CB1B485FF8F7E058F4C197D06891 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; - 65E2CD4426BAF301B65B5FF7BDE99220 /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; - 65F62C3B8A444B71E0A3B4BF1B03D155 /* 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 = ""; }; - 65FF07469E3E003F22E6DC2F69A5E9CC /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; - 6609D3D9D07068384CDE196697A79A1A /* 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 = ""; }; - 660E6521D0B46DBFE7868052386A018B /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/internal/inlined_vector.h; sourceTree = ""; }; - 661BCF903B4D5ADFB3247D7C25075F25 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; - 6637FA7E8865B423159B3DFDEB5826DB /* FIRGetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.m; sourceTree = ""; }; - 663A111C8C2CE477620645403636787F /* 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 = ""; }; - 665079E50D1F9DE8778E2E894AABADC6 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; - 6676A4E053E5FAAC048CDB22FC05A195 /* FIREmailPasswordAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailPasswordAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.h; sourceTree = ""; }; - 6676A792A9EB52E749ECD4C348E14EEB /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_prn.c; path = src/crypto/x509v3/v3_prn.c; sourceTree = ""; }; - 667BAC6C2BDB2110CC30BBF9610FF171 /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; - 66939B5BD35335176BE852BF1F68477D /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; - 66A6513433CF495099C957118F59AC12 /* 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 = ""; }; - 66A99DEF9170B961BA2F5F7671D5FA00 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - 66B2001F35E3D8A9F964D9463FE34364 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = src/include/openssl/err.h; sourceTree = ""; }; - 66BCA1F64D4618F6A075CFCFEE4C3CC3 /* tmpfile_msys.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile_msys.cc; path = src/core/lib/gpr/tmpfile_msys.cc; sourceTree = ""; }; - 66D0A8DF30AAFD1FEC949DB1D6F4CB66 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; - 66E7D05D43D2681FB8A647B71EE5EAFC /* 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 = ""; }; - 6739EE4F39EBFEA3F019DCB59BE3689E /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - 67454EC80B766A49853CF4628723875E /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; - 6745690495A83AF162F72A6DBE1940D4 /* 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 = ""; }; - 67548E2657F4C9A087F1BABDBC72E3BF /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; - 676F110A1AEFEFA2BA40EE451C96B67A /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; - 67C1F9C2B5791C770EDE2921B42CA920 /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; - 67CEB26B33A88C6DDC93A6A9D6C26247 /* 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 = ""; }; - 67F83FE6CCCA340F3A90FD5F07D208FB /* 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 = ""; }; - 68090B8120A1CE8ECA411D4A0029B6DC /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; - 6810CC57234BDEE2EC15C865BA9FC065 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; - 681149C34A4F645D6CBEBC911ABAF9C1 /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; - 681BC9F8EB6118CCAA35162AFABE34A1 /* 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 = ""; }; - 682FFBD320EF46754D9D88D64EE0FE45 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; - 683B7B019CD25FF573249C768E4DDA5B /* FIRStartMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.m; sourceTree = ""; }; - 6846867D83FA317565DCBBD309E8E075 /* attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = attributes.h; path = absl/base/attributes.h; sourceTree = ""; }; - 684D16A44C9949E522F0782808B9BFA4 /* front_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = front_binder.h; path = absl/functional/internal/front_binder.h; sourceTree = ""; }; - 685081A1902DCC533A453331A17B3466 /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; - 686EB5C5CA7E45A4C7F792AA5CCEF0F3 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; - 68718C4CB3EF9D93888DAA3784EFFBBE /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; - 68972317BB82871141C5B4B16D8D7DBF /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 6898356BF9B673BC05FE83E21588D19A /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; - 689BCD4A69BC62B4DE25A7D617450B06 /* 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 = ""; }; - 68AB35173A33BA8AF7A1A16103FF7ACF /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; - 68C2F2ED49A02598CF47272D3EA5EF36 /* 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 = ""; }; - 691441895B3EB5739F8E21306168AFA4 /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; - 6918EA537480CEFB1349C0A2BD0E4231 /* FIRGetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.h; sourceTree = ""; }; - 69251AC89D2B10C14A16B0821DB6B957 /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; - 6934C7AE4DFE5FE0423641593EC7D0A8 /* log_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_windows.h; path = include/grpc/support/log_windows.h; sourceTree = ""; }; - 693515DF5F490BDCDBC5AAACCF7D26E6 /* FIRAuthWebUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h; sourceTree = ""; }; - 693AD50BB3C191C00EDB944DAF718041 /* FIRMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - 6943DEED378A2F4915E7B9E730F39614 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; - 694C41002DCBBB5B3E2502AC20BA5EB2 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; - 695B2647A3F36EB5EB43FE6D55E7B604 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c"; sourceTree = ""; }; - 6966DEA203904AE91FD20E8881552F78 /* 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 = ""; }; - 697D22D308D8BE411DD9678A283BB4CC /* grpclb_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_channel.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h; sourceTree = ""; }; - 698C96D39E5B7CA5276758B607E300BC /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; - 69913553AA2AA69C3F93358AAE7609DC /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; - 6992F760957F3C24EA06E6662CBE66D8 /* 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 = ""; }; - 69A3A3909341E4214E30E4F0FAE601A4 /* 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 = ""; }; - 69B1D299E13969370D04ED9A9C32BC76 /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; - 6A36A494775EB023FD732D2B6A27E117 /* 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 = ""; }; - 6A3CE590B9AAA81BD046A8434120A69D /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = src/include/openssl/hmac.h; sourceTree = ""; }; - 6A60B45FCB497485D236AA563671464C /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker_registry.cc; path = src/core/lib/channel/handshaker_registry.cc; sourceTree = ""; }; - 6A7659B13EAB7C9751A82F8E7EB8896D /* tcp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp.cc; path = src/core/lib/iomgr/event_engine/tcp.cc; sourceTree = ""; }; - 6A7B4C59C93E9A050D590A8FE2178153 /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; - 6A7D939EC7DEFF245D25E3C17ABEF97B /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; - 6A8E4912054D86CE62D7131A5ED68EE9 /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; - 6A943E7E1569DD2A06C682C436A15E61 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - 6A972C90C3984F44D9345EA92482D662 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 6AA7470987765837DAB872FDDA2A62BA /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - 6ABEB4983A534AADCC7FAFFAC2B48A54 /* 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 = ""; }; - 6ACC066566EEC8E49BC3D5EBD90F7791 /* darwin.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = darwin.c; path = src/unix/darwin.c; sourceTree = ""; }; - 6AE77537ED5BC12A0F5E35BAE5EC2613 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; - 6AEC713274B5BA795D30601AFA25180F /* 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 = ""; }; - 6AF361982F7AAA0BB626D002AE0E90B4 /* 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 = ""; }; - 6AFBA70A38970E5D8229E7B07CD9658A /* FIRSecureTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h; sourceTree = ""; }; - 6B1538F88DB716CC834D004C2CBF9B3F /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; - 6B2D4E1C23A7D4BD6F6F6BFEC49D8504 /* alarm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alarm.h; path = include/grpcpp/alarm.h; sourceTree = ""; }; - 6B50B1686E684451FDB2B656393A1974 /* FIRAuthAppCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredential.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.m; sourceTree = ""; }; - 6B5E9E753B619848AD0DFAC04C71D36B /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; - 6B7008B54F0DA9A4E3C3D37A9789B93F /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; - 6B89BF58B0C0A2CFFCA992DEFDFED189 /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/codegen/service_type.h; sourceTree = ""; }; - 6B8AEE8AE63ABFE1AE73E6465E11F9E0 /* 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 = ""; }; - 6B954F2A8229A780BC39577C5817474A /* 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 = ""; }; - 6BA0393FEBD5F445B039789C2F3AB446 /* 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 = ""; }; - 6BB6983E8BC2ECF6213B854B0FE9607C /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; - 6BBBC0E5EA92566A613D71638D51EF53 /* 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 = ""; }; - 6BBC125812A1446D376318684CB0F227 /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; + 61EA2FB9EB952EC12664AE32EFDCA9E2 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; + 61F4D90A66553ECB5B8FBD7AEBFFE385 /* 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 = ""; }; + 61F665335A2D26D806800176A35A5354 /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; + 6210309F33436D6AF88C985CA34E979A /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/impl/codegen/fork.h; sourceTree = ""; }; + 621F768B9F77B387B7F47ACD32C5F614 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; + 622F6DEC6B803A3EA0D4FE7279B72B20 /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; + 624EFFA91B9CAAE17A227C9A45FADF7C /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; + 626B787D7C663EADCAD9F21032E3FE61 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; + 626EFE6B15D6217369658CF38C59FD06 /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; + 626FC2372703C60F1BD6817728CD608E /* seed_material.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_material.h; path = absl/random/internal/seed_material.h; sourceTree = ""; }; + 62713261DFE8C7DE41FB439F9D4A21B8 /* 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 = ""; }; + 627B3933E29E078943A12645966B8BC9 /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; + 627CF6264B5E0CB198AF480C714B6318 /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; + 627F348A709184931C81C7DC6243D335 /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; + 62823349E2627FF623A5B03416D1B7E1 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; + 62883B5B659C0D486FAFD03B462C111E /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; + 628C35240C13CF558832C181A764E9F8 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; + 62A5DD862D4E7B6816BA41249305620F /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; + 62A9736912C39F4F9A7F0A697DB5449F /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs7/internal.h; sourceTree = ""; }; + 62C055D29FB379E969FF9FBB32ECD71B /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; + 62CCDBA8A951452096D19CA6C7098998 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; + 62CDC71CAA741FAA16FB284AE08DA8FF /* 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 = ""; }; + 62FD6D6776C4B69CF58C92BED1CB348D /* FIRGetProjectConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.m; sourceTree = ""; }; + 62FED1FA33BAA11E297B4EAC8B35BC24 /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; + 6313C40257275E95BD33D614D3445410 /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; + 631DD5BDE4C1167018A5138C69489B41 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; + 634567A16F2336F2EDC62581B1C95B67 /* 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 = ""; }; + 63460B2B494F427AE6F587B816106346 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; + 63501B7EC1DFBF1E5015A34011CCE92B /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; + 63759BD8A6513431CF55C91021C41070 /* 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 = ""; }; + 637BA9035A6393E0C67237D99B796441 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; + 638B7695EC6F1CD6D44BEC11D1DFE44F /* 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 = ""; }; + 6396116F4FEBEB9360503BBF9978CB8B /* stream_lists.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_lists.cc; path = src/core/ext/transport/chttp2/transport/stream_lists.cc; sourceTree = ""; }; + 639638A2531BF5E805B566F3CB456357 /* exponential_biased.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_biased.h; path = absl/profiling/internal/exponential_biased.h; sourceTree = ""; }; + 63BB3D2BA0EB77E4198EFCD9AE926814 /* async_generic_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = async_generic_service.cc; path = src/cpp/server/async_generic_service.cc; sourceTree = ""; }; + 63C8EFD10891E8728DE99B0869B8A724 /* FIRAuthUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUserDefaults.h; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.h; sourceTree = ""; }; + 63FC37D1D86EE40DC38D2FCA94F9431B /* time_support.c */ = {isa = PBXFileReference; includeInIndex = 1; name = time_support.c; path = src/crypto/asn1/time_support.c; sourceTree = ""; }; + 6409110958CE063FA6748CE38BA66377 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; + 640D3D180A9943A63803BD1A485C2689 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; + 641E946F5257CA321F994BB18B69D1E7 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; + 642B3A28175D08569E2ED3819A4E6AD4 /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; + 6457F60731C37593649BBD3F18137C43 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; + 645876131EFC4E362E8B4AE9ACBD1D02 /* FirebaseAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAuth-dummy.m"; sourceTree = ""; }; + 647DEA0A9A5C67111B68A36821C589FA /* 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 = ""; }; + 648C8964EE54040A5890ED253F80D39C /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; + 6499B3A0501BFA989CEAC7A7C2811AD8 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; + 64A56DF7864275EAE4410DA073BCE087 /* security_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_handshaker.cc; path = src/core/lib/security/transport/security_handshaker.cc; sourceTree = ""; }; + 64AB3AAD31D7D6E93C693757039E1487 /* FIRGetOOBConfirmationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.h; sourceTree = ""; }; + 64CA3FC10EDB7E6F9BDB7CBA59545D80 /* FirebaseFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.release.xcconfig; sourceTree = ""; }; + 64CA97173FB677E368E0BB7CA0E2605E /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; + 64CBB8792878997852C6291602FDA42B /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_purp.c; path = src/crypto/x509v3/v3_purp.c; sourceTree = ""; }; + 64F39B0407B2831890DB5C751A5AE725 /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; + 64F43F5F8D77B7AD63DF3CCF68AF04F9 /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; + 64FE2E264AD3E279593F90ABFE9BBF78 /* 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; }; + 651389A6C373E3A2F8445934C5E6B4A6 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/internal/inlined_vector.h; sourceTree = ""; }; + 65213732DF4810441A91ECDB47FA5B04 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = ""; }; + 652F158B81A24E5BD410FF6854B9DA29 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; + 654BE00EBC62B53E6899D68C43500D5E /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; + 65A2D17ECB9E8B2B71278108C094BEE3 /* 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 = ""; }; + 65AC65EB59A885C16D9A87744E9F0DAA /* unix_sockets_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unix_sockets_posix.cc; path = src/core/lib/iomgr/unix_sockets_posix.cc; sourceTree = ""; }; + 65D0E61FA77E654AD7BB0CCA34370005 /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; + 65EA23A824F58CC0F46B0FF39A270012 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; + 65FD40FA10E1F2AF6995B2EF0AAAC97A /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; + 66342A8CD6E4FB55F087977258EEE204 /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; + 663876DAA54F21351A5690E7EA796641 /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; + 6644A7F605E4A3D1A185E76E48E19F44 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; + 66494F04CF8C36BEB0AA90498E9C2FC1 /* comparator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comparator.h; path = include/leveldb/comparator.h; sourceTree = ""; }; + 664C0C917A80EDEC57D9D55FBE00FB10 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; + 664F2FF1956DD241358DCC9C1C6439D8 /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; + 6659678F74F091AEAA980474E5005B11 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/support/byte_buffer.h; sourceTree = ""; }; + 666E9966EDBE9BEB538B4943212E9D46 /* 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 = ""; }; + 668F69D63E6602990F4176032A89E1BB /* tcp_server_utils_posix_ifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_ifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc; sourceTree = ""; }; + 6691DE6916DD7B3E50CC466797F82D27 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; + 66A30A37B7383A063EB13185824188B6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/curve25519/internal.h; sourceTree = ""; }; + 66A452EA3D24A2C5F5FF4C0D56834ABD /* 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 = ""; }; + 66B0AE77E58CB00FB7A01E10FB25A7A7 /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; + 66F6F322987E1625E381BDCC3AB53230 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; + 6710FC1B4A30F4642F288B8D51B7647F /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; + 674051A6FC394A45123BAA764DE19639 /* 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 = ""; }; + 6752DC94ACFA57DF3EF28EDB85FDF9B6 /* FIRFacebookAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.h; sourceTree = ""; }; + 67539DBFAB6D7470EBB4B81CD395A2D0 /* 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 = ""; }; + 67589FAA91F55B2DA2016014453B2117 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; + 676F71ADF7F9CC0DCE1551B7AA7E5B09 /* FIRUser_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser_Internal.h; path = FirebaseAuth/Sources/User/FIRUser_Internal.h; sourceTree = ""; }; + 677AFF55909CF1E7284D4E3F42D0FCB3 /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; + 6787750E22F13B7E22B16F739824A76C /* tty.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tty.c; path = src/unix/tty.c; sourceTree = ""; }; + 679465A778C0BF0F03AF076A922B9D41 /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; + 6795E8946478AA90191E108875D8D3D7 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; + 67B09CD1A1B6281CBA7B4842DA070C45 /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; + 67CDA08E1558C35E1DC16E82F9C69C2D /* randen_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_detect.h; path = absl/random/internal/randen_detect.h; sourceTree = ""; }; + 67DAA88D18A635D9E46AFD6D8B97DE23 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; + 67DAD8BFB5979458A4C4033988CB9360 /* http_client_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_client_filter.cc; path = src/core/ext/filters/http/client/http_client_filter.cc; sourceTree = ""; }; + 67F54BA416CE20B11D28EFDCE6FE3157 /* bsd-ifaddrs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "bsd-ifaddrs.c"; path = "src/unix/bsd-ifaddrs.c"; sourceTree = ""; }; + 6805B68FE36A0BF08256600A239EE050 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; + 6806DB7E8C48D470D09A998C4BDD0EAB /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; + 682D2A63DBF9975DA26FB307A40E1E78 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; + 68339D626D9A1BC6D3FF6AE67E0053F5 /* type_check.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_check.h; path = src/include/openssl/type_check.h; sourceTree = ""; }; + 6836B27504A0A075A4DAEBE5C0D0B7DD /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; + 684E9B608BC6831143C9BB2C5B03EF18 /* abseil-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "abseil-Info.plist"; sourceTree = ""; }; + 685C4C02AA2BC8DC76BC9BD3611D88AC /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver_ares.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; + 685C8EA1CC96DB474A21A7DE0E5C2A8E /* Libuv-gRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.release.xcconfig"; sourceTree = ""; }; + 685E6D33D6050AA0956550C7D4C71FDD /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; + 6882255841D4F9B10CB68867864064F7 /* 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 = ""; }; + 68AA84DE5BB2091547F58B75D88E55B6 /* security_policy_setting.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_policy_setting.cc; path = src/core/ext/transport/binder/client/security_policy_setting.cc; sourceTree = ""; }; + 68BF31AC67369B4F3BE0150E05B2C489 /* GDTCCTUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploadOperation.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h; sourceTree = ""; }; + 68C0F703B5AF27E74CFA839AB320AEE7 /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; + 68C8FE50ACD3F3902B6CF12DD5A2F568 /* binder_security_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_security_policy.cc; path = src/core/ext/transport/binder/security_policy/binder_security_policy.cc; sourceTree = ""; }; + 68CB51D6D7C498BC54CA85F04AC6E3E2 /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; + 6929B47C4F83DE0C499A27FAEB6BF188 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; + 69471F238143E3773382108E996E4A46 /* time_zone_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_posix.cc; path = absl/time/internal/cctz/src/time_zone_posix.cc; sourceTree = ""; }; + 695354E011B4785914545C7878A1D405 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; + 69554C42615EE5BBA4920EBC13FD1F64 /* FIREmailLinkSignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.h; sourceTree = ""; }; + 696AB914AF5F9986FBC651828F72F532 /* checked.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checked.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c"; sourceTree = ""; }; + 6994BCF4F4EED4EC0E81CE7E3CADA3A2 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/slice.h; sourceTree = ""; }; + 69A6F15512FD954D6AAE989555BB0A0B /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; + 69AF57F8DF6E3DB946A1BB3D1CBA7725 /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = c.cc; path = db/c.cc; sourceTree = ""; }; + 69B198744FAADE385016BDEEB449BF92 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; + 69CF973F5BDDFFC976063970BE29C7B2 /* FIRPhoneMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorAssertion.h; sourceTree = ""; }; + 69E678E29ACD6A376DB477E1556D2D2F /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_filters.cc; path = src/core/ext/filters/client_channel/dynamic_filters.cc; sourceTree = ""; }; + 69F9760BE422D096B78408B1FD8BB406 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; + 69FEB814AFD43E3B95D8C3936C7CD50E /* sync_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_posix.cc; path = src/core/lib/gpr/sync_posix.cc; sourceTree = ""; }; + 6A1863EE3EBFDB0909A88880C808ECD7 /* bin_decoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bin_decoder.cc; path = src/core/ext/transport/chttp2/transport/bin_decoder.cc; sourceTree = ""; }; + 6A3ED48C48EEF76302A1F3A1EEC1BFFA /* 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 = ""; }; + 6A4E9605CCB29C2A2FD2F166AF822B8E /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; + 6A6A7371271803399B58D28FDC091837 /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; + 6ACCBFB1978DB94DE7C20DC567EAC616 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; + 6B4E699F60BDC9D7B947E956F7351296 /* FIRAuthSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSettings.m; path = FirebaseAuth/Sources/Auth/FIRAuthSettings.m; sourceTree = ""; }; + 6B60E266A09859B3D011723E8A5AB7BC /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; + 6B79771B7F01C3CE6DAA5D4D8875265B /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; + 6B7D6FA8081B12F306D3960C3D23B9EF /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; + 6B8284E07202C75CF12909F6248B03B0 /* 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 = ""; }; + 6BAFA48F135314D429219A7B8D6BFA4E /* curve25519_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64.h; path = src/third_party/fiat/curve25519_64.h; sourceTree = ""; }; + 6BBFE892DE18EC94257F90037B3A47E7 /* FIRAuthAPNSToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSToken.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.m; sourceTree = ""; }; 6BC54C3D03DEBF9C3A40965E69CAE039 /* Libuv-gRPC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Libuv-gRPC"; path = uv.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BCB6EF77612A02652B40481FC7C0ED3 /* 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 = ""; }; - 6BF07ED97737A40E9B1E40C77C03A718 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; - 6BF5501B7CE09FE9C7876F3801A3A7F8 /* ssl_utils_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_utils_config.cc; path = src/core/lib/security/security_connector/ssl_utils_config.cc; sourceTree = ""; }; - 6C04053BA4D1A1EBE044216B5507888E /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; - 6C09F723A5CB27AA07BCA67668904220 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; - 6C1009E1760E792A6FCB70388FF52E70 /* 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 = ""; }; - 6C3269DF933A36AD67E3F2C509E627EF /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; - 6C4603547437175244E4036F2FC1D763 /* 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 = ""; }; - 6C6C06250C657E62352B87D002B5152C /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; - 6C8CEDFF36B3667702B1AFA34A9B9A7F /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - 6C9312774575FDF80F1289CC775A360A /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; - 6C941E45990F09473D99E998FF8A7D2B /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - 6C9C3A7DA98E3A9B773F318A2675CB31 /* 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 = ""; }; - 6C9E7768547EF72E76EED5720442DFBD /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; - 6CC93CBE5474FA282C8C18A49F029B47 /* 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 = ""; }; - 6CCB348D7553450087F289308D1EDED0 /* darwin-proctitle.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "darwin-proctitle.c"; path = "src/unix/darwin-proctitle.c"; sourceTree = ""; }; - 6CF6EF7DAF219862B03229693893DC9B /* FIRAuthDataResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDataResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult.m; sourceTree = ""; }; - 6CFD6FA5AACDD4CCC42C4444F49C2B8D /* 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 = ""; }; - 6D0BCC32ACC07E85423AA18302BB9A54 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; - 6D15C235D1CCACB2377AC3B9C0DDE55C /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; - 6D20E187C00FA90B22573DFC7CB5AB48 /* 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 = ""; }; - 6D242905080C9B8F4F29CE9A29007048 /* validate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upb.c; path = "src/core/ext/upb-generated/validate/validate.upb.c"; sourceTree = ""; }; - 6D25181B45562534755E321362639C2C /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; - 6D28577CD5265D4152156278437C81F4 /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; - 6D2FA6C3EBD0F779B1CF4D67B70802E2 /* FIRPhoneMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorGenerator.h; sourceTree = ""; }; - 6D3096982B7D3EAE32758EAF2C0F23E9 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - 6D3B69AA6B3D6B45583CFBC1B10EB2A7 /* 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 = ""; }; - 6D4A1FFF4985DB9C0BFA07DC78CD5C22 /* node.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c"; sourceTree = ""; }; - 6D4AD9FB96555D3275666B4151B20CFC /* 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 = ""; }; - 6D5F933BD1F3A33D9F5834CA43667298 /* path_transformation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upb.c; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c"; sourceTree = ""; }; - 6D61EC7FD66A8CB74562DAEFC173E0C7 /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; - 6D7217B19C5893A4CDDC16F7325559AF /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; - 6D838FE157D63BD8E610C1FF83B8DDDE /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; - 6D8427AD34E3BD97B10C729A03F31357 /* 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 = ""; }; - 6D92E2648A3FA1689B966AACBF6ABC80 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; - 6DAACA52181FF6C4675EF2F7A9A5D16E /* 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 = ""; }; - 6DECFA26782E608905AB20B2BA23DCE3 /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; - 6E2048D275758EBDF2820CBC23D261F4 /* FIRFinalizeMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.h; sourceTree = ""; }; - 6E2D695C2736C5F6227401C45D9405DC /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bitst.c; path = src/crypto/x509v3/v3_bitst.c; sourceTree = ""; }; - 6E3F352FB05A9C17F11825B91558346E /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 6E4A108B2F782A780221F6949D9A1757 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/ssl/internal.h; sourceTree = ""; }; - 6E68F38EF3C14DCBF89FEE9BCA464476 /* 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 = ""; }; - 6E7872D75148C0436CD08E2F285534E6 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 6E809B84C33ED7692831ED08EF62149A /* FIRPhoneAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthCredential.h; sourceTree = ""; }; - 6E905C1ED2D4D8850CDF8CD236014367 /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; - 6EAD9546F1FA9B59F362A87BBA9D14E4 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - 6EAEA415A64F8DB6CEDDD4A59B706A06 /* 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 = ""; }; - 6EBA67254B9EC025EEA8C09284C6C855 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; - 6ED361DE47D86700B694C6A182A3A372 /* 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 = ""; }; - 6ED4E1B1FA31185EF5FED7A8115E01BD /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - 6EF78F69FA14F1CEA6270D635445FAD4 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; - 6EFD965A64C04FF63F73B842343678BC /* strscpy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = strscpy.c; path = src/strscpy.c; sourceTree = ""; }; - 6F1DA91C1E42CF58CF833BAA4F552ECE /* 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 = ""; }; - 6F1E690ECFEBBD45033DD971BDBF22EB /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 6F2DDC43F322BC51321F4F2FD810D03C /* 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 = ""; }; - 6F6A34A6CD3CA88236F65719A3C7134D /* FIRAuthBackend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthBackend.m; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.m; sourceTree = ""; }; - 6F6C50611EB192ADF0EA7F709939DE50 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - 6F74C4B79EF23F4C098059ADF87CBB9B /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ncons.c; path = src/crypto/x509v3/v3_ncons.c; sourceTree = ""; }; + 6C43D5418E8AE86821AAEF6CE87BEB6F /* grpc_ares_wrapper_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc; sourceTree = ""; }; + 6C47AF9D3479E57EC3B0BC3C0FDC7AEB /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; + 6C56AE9D896B83AA75D0AD32B2567502 /* 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 = ""; }; + 6C60803E23C62ABCA5CB9FC8246AF59F /* randen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen.h; path = absl/random/internal/randen.h; sourceTree = ""; }; + 6C648D09F08F8E6A3ECF80A287201519 /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = include/leveldb/iterator.h; sourceTree = ""; }; + 6C88EA555BAEE7B31F9CF9B5F4AE19D4 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; + 6C998E9485581FAB657353652C0EFCDE /* 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 = ""; }; + 6C9BEB4F172D8FEE91AC0AE8B5E13C74 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; + 6CA46D20FBE09394CA4B481DFF46A890 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; + 6CAE78E40B38E0B7B0B1E8AE189010E1 /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; + 6CAEA2B223635550821BBD7A0A4BC5F8 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; + 6CB243670593D683E62616F35A00BC1C /* 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 = ""; }; + 6CB7A655A2BB7DB74905C3E682C82E37 /* FirebaseCoreDiagnostics-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreDiagnostics-Info.plist"; sourceTree = ""; }; + 6CE28B9ABABF7CB4285248F06FFFD5D5 /* loop.c */ = {isa = PBXFileReference; includeInIndex = 1; name = loop.c; path = src/unix/loop.c; sourceTree = ""; }; + 6CE314F3BD47892F514EA0B7D26AF3C8 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; + 6CEB837565A27E6D92E93E0D5BB3E554 /* 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 = ""; }; + 6D0C52F83102EC7ED35242EAEAE3F93F /* 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 = ""; }; + 6D0C7686B1EABDA98BAF2F1379567516 /* FIRPhoneAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h; sourceTree = ""; }; + 6D17F65FCACB1CD6C18F5FE57B23A666 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; + 6D340931AD1ACBE50D367F7714D0085A /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; + 6D3814C1269878D5B32600D028F2AFD7 /* 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 = ""; }; + 6D40DCA681F0722E521C04D416744FC5 /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; + 6D4533F2A36AFFE480A9F7FAF5E34248 /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; + 6D5841F8520AA8E5E142712400F2B607 /* 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 = ""; }; + 6D6498B238B0D884E33878D6430C73A9 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; + 6D6CD9FDBAD9C4F285C5DAEA6B1B47CA /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; + 6D73791B31D6274270AEF1C7B81094D4 /* CLTypingLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CLTypingLabel.swift; path = Pod/Classes/CLTypingLabel.swift; sourceTree = ""; }; + 6D9566A5C0F6BB475438957CA385E999 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; + 6D9F280597D57C6D3E455A588E4C156C /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; + 6DAF9FD088B541C528FA9D11B1E2E3F9 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_client.cc; path = src/core/ext/filters/client_channel/health/health_check_client.cc; sourceTree = ""; }; + 6DB74C7061F8F431F858E94577B365A5 /* utf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf.h; path = third_party/re2/util/utf.h; sourceTree = ""; }; + 6DE5F3108C75A790516A74709CB5B7AA /* 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 = ""; }; + 6DFAF9B53518753656AE8F939DDC8C5A /* 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 = ""; }; + 6E0E5DB93718DEE01AEFB4F749167C72 /* 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 = ""; }; + 6E1CF0CF101F4040390066149F6CCD54 /* pretty_function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pretty_function.h; path = absl/base/internal/pretty_function.h; sourceTree = ""; }; + 6E2D5A5190920F4F77683C870A7972A1 /* thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_identity.h; path = absl/base/internal/thread_identity.h; sourceTree = ""; }; + 6E4777A13A57B52DD08A9F5BE6A0500C /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; + 6E4B2C0DF70958F59A8B7657891062B0 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; + 6E54604D5B9AE9DBB1A6BDE21A5DC0B1 /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; + 6E7F6DE1B54194B24326EA48EB0ECD15 /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; + 6E8F4741A311D58CB49FE20A92076559 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/impl/codegen/string_ref.h; sourceTree = ""; }; + 6EA2338E35C7558F6B8A6A339E6C27E4 /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; + 6EA6A3E3C9EF16C263706A2C3F9D9807 /* health.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c"; sourceTree = ""; }; + 6EBFDE66E0994FBC2676A5EC03E46FC7 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Extension/FIRHeartbeatInfo.h; sourceTree = ""; }; + 6ECCD0085973107F34EB0A7E5FFFA34C /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; + 6ED0C93652BE97358E098C4011FA69A0 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h; sourceTree = ""; }; + 6ED2FBE98224920237BD3DEFC52428A9 /* 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 = ""; }; + 6EED866FE480A9B5A210769C74A1115F /* unix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix.h; path = include/uv/unix.h; sourceTree = ""; }; + 6EFAE51403B250F788D9848B7BBE12A7 /* leveldb_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_target_cache.cc; path = Firestore/core/src/local/leveldb_target_cache.cc; sourceTree = ""; }; + 6EFED1EB7904940E57293695D1FB106D /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; + 6F0262CA6E95B88461D34B1540AAF928 /* GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GTMSessionFetcher-Info.plist"; sourceTree = ""; }; + 6F0D579F47928FDB95DFA056A689CF53 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; + 6F16AF4276DECC40BB2F6A01E008B332 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; + 6F1CAE205BE8600281AD6B95AA003996 /* security_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_context.cc; path = src/core/lib/security/context/security_context.cc; sourceTree = ""; }; + 6F31A74823311E90FE61D5C1788EFDA2 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; + 6F480194DD431451C80EAF7E292B052C /* FIRAdditionalUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAdditionalUserInfo.m; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo.m; sourceTree = ""; }; + 6F5288621737CD47050C406C8761597C /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; + 6F5BF11D03159A73A25B80FBDF634D8B /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 6F7FB592844C934765F08672C1B4FE8F /* byte_buffer_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer_cc.cc; path = src/cpp/util/byte_buffer_cc.cc; sourceTree = ""; }; + 6F8102B95DA6099B8E7369746AE56339 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; 6FA3F86C28464E41F46669C7DDDEC6E6 /* Pods-Flash Chat iOS13-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Flash Chat iOS13-Info.plist"; sourceTree = ""; }; - 6FC28FC157D231D4A6F0070E3F51DBD9 /* cpu_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_posix.cc; path = src/core/lib/gpr/cpu_posix.cc; sourceTree = ""; }; - 6FC3C0AAE4B7ADAEA82189879E4AB7BC /* 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 = ""; }; - 6FC4651A74CD9568DB6A23FF3E2889E2 /* GTMSessionFetcher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-umbrella.h"; sourceTree = ""; }; - 6FD82FCC4566255B10DBBD0362C8C0E6 /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc; sourceTree = ""; }; - 7032DC72FF3E68D589B453895CA48C61 /* stap_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stap_timers.cc; path = src/core/lib/profiling/stap_timers.cc; sourceTree = ""; }; - 70394CD12CD6E329869CFDEF38DC21B2 /* 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 = ""; }; - 7043E454584F0054D86E8711B5867952 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; - 704829E59C868FF2AE2FA253816AE828 /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; - 704B4F61A507CFB618CAA54C2943DB8A /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; - 70597DC93E879CB99A5FB9B4486E74B6 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/support/sync_custom.h; sourceTree = ""; }; - 70598FDB7508AB320D1A279910567961 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - 705F25D27A2748D63FEA1E2ABCE6C90F /* 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 = ""; }; - 708130ACF964A8D33BF1C90ADC381495 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = absl/status/status.h; sourceTree = ""; }; - 70971CF4DE9C361E7B00EEDB67B2CA31 /* int128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int128.h; path = absl/numeric/int128.h; sourceTree = ""; }; - 70B99A75D8523C9DEEE2B63870A22149 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - 70C1949E3EFF2D26D7CE9767E418B4B0 /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; - 70DDE73A07F0F639D868A2C7010A32F1 /* cpu_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_windows.cc; path = src/core/lib/gpr/cpu_windows.cc; sourceTree = ""; }; - 7102048A99536A6A568A63A433C2477A /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmac.c; path = src/crypto/cmac/cmac.c; sourceTree = ""; }; - 71069D0E4B6D7BB8F75C58778D839907 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; - 71120AED1D2D58A379F679EA3D7E57C1 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = absl/strings/string_view.h; sourceTree = ""; }; - 711A3BE5499C4C42FE3B5B309EC31F25 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; - 712F2B9399D2FCA0353D1365313F3274 /* FIRAuthProtoMFAEnrollment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoMFAEnrollment.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.h; sourceTree = ""; }; - 7155081FDB6782E49C7B2676E50BAC6C /* 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 = ""; }; - 715827E927F450E8F75BCDDDFE144DB8 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; - 716DE36C7E2FF2578E9DBCE01E4F825F /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - 71A8C0E6EF560847943F61F7B99CBF3D /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; - 71BCA30FABEA5E587D2FABCE7C423BAD /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 71C8645FD664462639F4CC7BAA73B33C /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; - 71CEA7AFF8F7FF6501D68F03E9D31B63 /* is_boringssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_boringssl.h; path = src/include/openssl/is_boringssl.h; sourceTree = ""; }; - 71DB43E21179D2027ABF07979D1D220E /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; - 71E8FFB0BADBB1ACC9E9503EB6B6A4AB /* 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 = ""; }; - 71FB8186443BF2952B72DB1B90382FB9 /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_cpols.c; path = src/crypto/x509v3/v3_cpols.c; sourceTree = ""; }; - 721F9D482BA10B75BDB5049CB8A83D57 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; - 72350D6A51CDE93C4DF9CA2C4CDB176C /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 72395D28CCE51076629E53B7EC8E0E91 /* 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 = ""; }; - 724A5BAF656370E9A9C5B1E9FDD91D4A /* 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 = ""; }; - 726A0D5A76092A2CB4107CF225B5C259 /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; - 727C1911DFCF06D6C803047156E83F1E /* 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 = ""; }; - 727ECEA09438D03DFDA5CB0E852D8207 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/inlined_vector.h; sourceTree = ""; }; - 727F581CFE04F74BE5DB606AF581DD54 /* 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 = ""; }; - 72A655216ABE7DC9CBB40C33A77F095C /* discovery.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c"; sourceTree = ""; }; - 72BE14ADB8E9D63BE83FA5F437EA17D1 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; - 72E7ED9B89F137804E723E6D8C7FDBDD /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - 72EEBA3EAD4BEC7B279F66AF4A9BD5B0 /* 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 = ""; }; - 72FF79FD68F7FA479F1A649295F18AC7 /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; - 731AC8A2D407FA7020DFBFF5B56D8DDC /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; - 731C9CD88DBDACDDDEC4E2D6712C1BAD /* transaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = src/core/ext/transport/binder/wire_format/transaction.h; sourceTree = ""; }; - 732A82738B815AFB1B4180DA23BC0773 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; - 732FD2E501BA15B3643B5E75FFE01703 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - 7362292FFBC4989459F130E05D20F022 /* 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 = ""; }; - 736A67595CF6FB95B409D4FC91B5E30B /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - 737B6661AD0760D4D5414485B0660AC2 /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; - 738018E185B998882FFF2C726F216913 /* pollset_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_custom.cc; path = src/core/lib/iomgr/pollset_custom.cc; sourceTree = ""; }; - 738262579719C3A86B6310A3C464C738 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; - 738E49FCC1C6A280494F479A639A4A46 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/md5/internal.h; sourceTree = ""; }; - 738E9262168C9608155C0F2377846039 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; - 73925BBE3792C59A94A629CF7E49A834 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 739D4FF66BEB47E0F6269CCDE0CE4A11 /* udp_socket_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c"; sourceTree = ""; }; - 73D0572F39352BC74B95DE020DB3036D /* 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 = ""; }; - 73D394A08345EED85D39C031B03B7FD8 /* GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GTMSessionFetcher-Info.plist"; sourceTree = ""; }; - 73E03BF203B59BE424A6EB6AD507DEEE /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = util/hash.h; sourceTree = ""; }; - 73E4878C53A125467996EC828E47CCFE /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; - 73E593D3FCFCEE0F929E4AF2A12D2DD9 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; - 73EAC86445CCAA8B70E31635F665A599 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 73FB054B2D12613885915961EA060358 /* gRPC-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-Core-dummy.m"; sourceTree = ""; }; - 740F77311CF0732E5C9A39BD5781AECF /* 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 = ""; }; - 7442F7EF9EA5A5B5F4C694A4D4D90EB9 /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; - 7451A4279638DD3D6B8057DACAA6E0BB /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; - 745DC281566A5D1F63B9AE8F192A6547 /* 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 = ""; }; - 7466C9F1DE3D2944732F7DB8C1334CAD /* FIRAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthCredential.h; sourceTree = ""; }; - 7475970E1198DE8F552DE4D96C8774DE /* 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 = ""; }; - 748535293A4B8357E06D6A89DC8BC041 /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = src/include/openssl/ecdh.h; sourceTree = ""; }; - 748BD441E5DE6B375A3A71D3551AD5FF /* FIRAuthURLPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthURLPresenter.h; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h; sourceTree = ""; }; - 74918BCE829F544BBC95587ECAB7AF67 /* handshaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = handshaker.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c"; sourceTree = ""; }; - 74D9013913FD7F5373D1E286F0D3E22D /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; - 74E34A4C6DBCA5F911A58F405A3DCE33 /* FIRAuthWebUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.m; sourceTree = ""; }; - 74EF4AEDECE802843357099594532B26 /* idna.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = idna.c; path = src/idna.c; sourceTree = ""; }; - 74F65B120DDCF4943829A077989BC940 /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; - 74FBE83E302340F1AF0E9527E57F9E36 /* FIRSetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.m; sourceTree = ""; }; - 75025A8A27096CDB6E8AE8E4BC9FFA5C /* 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; }; - 751CBD225EA549F3C7051A909250DE2E /* sensitive.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c"; sourceTree = ""; }; - 754702E20515DD719781A8F60A6C2285 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 755713338B82495EAAE3EA194A5670CB /* 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 = ""; }; - 75682C0FA51A0354F41CAB4D0CA10FE8 /* 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 = ""; }; - 756E5FEE42F22FA5F6A346ED037D2DCD /* stacktrace_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace_config.h; path = absl/debugging/internal/stacktrace_config.h; sourceTree = ""; }; - 757DF5613183737FB611AF88A607CFB6 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; - 7583D15669BBCABA12533DDAEA5A9EB8 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; - 75A5594AC85A4BCCDF3A3BC14AC1F2EE /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 75B075366C40130FB358E1F8AE509FF9 /* 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 = ""; }; - 75E01D751EB5E14DE51A53730AEB88EC /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; - 75E9383DA3E778B9D79F739FB202FA1E /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; - 75ED761F119C0CF1FE31AEF10B707E9F /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - 75F0CE0B64C08C2E2FF9B625156052AB /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; - 76067A3A72F9B8616CBA331F79721759 /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; - 76080F0588F5B9893CAFD758CD88D968 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 761E7749E8DAAF445F45115FF371FEC5 /* 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 = ""; }; - 7640767001365462E5951CA08527F9A8 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; - 764766F27DF531CBB6300370021F1667 /* compressed_tuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compressed_tuple.h; path = absl/container/internal/compressed_tuple.h; sourceTree = ""; }; - 765811F439771B8FE3F28A99188BBB05 /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; - 7673737FC609A1373ED10CCED84DC1A6 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; - 7673C8C82A949E7709FCE60ECC2E03FB /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/iomgr/event_engine/promise.h; sourceTree = ""; }; - 7683E2F4EAF3627096B3860DE992A8F2 /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; - 768F949B40301D207E873B6E6E266E00 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; - 76947F9133E5DD0EE4AB28A6D56A25B9 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; - 769B35410097BA9D4221360F33FF5BC8 /* 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 = ""; }; - 76A681E025F34AF7680341E8C5F67977 /* 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 = ""; }; - 76AA200E816C2A98A8605CB6261B9CB9 /* 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 = ""; }; - 76C31F7D30AAD11934DCF28A2F30939B /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; - 76C5A2094580D570E896A866C22C7915 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; - 76D316A7E42F6ACCE9F12FD0B422FB29 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; - 76D3D6778B042F5E5557F3971629DD15 /* 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 = ""; }; - 76D7DD4C71EE11254080F7DF0717AEE0 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; - 76DD4EA6CACBF3D5EE51596430225743 /* 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 = ""; }; - 76E489E853597BF2D6F33EF918DF4ED9 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - 7714CADF8EED370782F432BCC600112D /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; - 771EBCC52883059ACE8C0E47ABF3BBE0 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 7723C6D3B664A8FA682151019390F965 /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; - 772C7BD84E3DA84CCA800FDA58C9B0C3 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 773E3F9A2FEDB8A6657BEDFB3204550E /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; - 7775282BDFC7F8B4AFF2CABDE7D3EE41 /* 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 = ""; }; - 7782A1146E6A2F48B994E88620F5D44D /* secret.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c"; sourceTree = ""; }; - 7783292392AC373A65539E922FD7FE09 /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; - 778A0AA9A13B9870BDB5FFC5D9C08489 /* 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 = ""; }; - 778B7A0BF342480EC6F96B9D0D5F5333 /* 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 = ""; }; - 778BD763D34B93A6562A062315E4E0EE /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_extku.c; path = src/crypto/x509v3/v3_extku.c; sourceTree = ""; }; - 7797727CCC804F0D262A0D1AB926340E /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; - 77D4A200637EB55E9B87B72A6B637C85 /* leveldb-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-prefix.pch"; sourceTree = ""; }; - 77F634E5FC9C8843C5E7D717581C76A2 /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; - 77F9C8511B95518FA2CA0C524B274D56 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - 782C8B1210DD99790B729C9A51E5F835 /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; - 78336347EE982FA32B1624A1D5F4E7F8 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; - 783E4592B9F93EF4B78080B20DA9DCE2 /* FIRSignInWithGameCenterResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h; sourceTree = ""; }; - 7846833EB999FD2711E68ADA15782793 /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; - 78693431167DC8F6BE8B700193296E81 /* 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 = ""; }; - 786F175B02526C091DF5E32111D951FA /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; - 787355FBC8B91E008ABF5DD157CE7FE6 /* FIRGoogleAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.h; sourceTree = ""; }; - 787CE6B6D5330420BF853E6E010ACDE2 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; - 78AA8F8957017331CC7D32A3E0BDB059 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; - 78B9A6E0D9415CEA91BBE749CA784FBF /* env_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_windows.cc; path = src/core/lib/gpr/env_windows.cc; sourceTree = ""; }; - 78DF3922EE4BEEE03E14216231A46B18 /* 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 = ""; }; - 78EAAA073E8BB7481AD3F7027C08AA08 /* async.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = async.c; path = src/unix/async.c; sourceTree = ""; }; - 7906A37970F74FF088FEFC41D3688768 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - 791E99B7A60C6BBD3F48D9044F46B429 /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; - 793E6076D2665F1E548074DC8DC78322 /* iomgr_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_custom.cc; path = src/core/lib/iomgr/iomgr_custom.cc; sourceTree = ""; }; - 796E3F4399D74C1F67462E63B58D3AF2 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_common.c; sourceTree = ""; }; - 799A6BA38BA72F02C43FA66FAC4E03C3 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/channel/handshaker.h; sourceTree = ""; }; - 799E8D80EBFBBAFAB822B01F28704954 /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_int.c; path = src/crypto/x509v3/v3_int.c; sourceTree = ""; }; - 79A4B04EC5A7C06D99B6CCB2A86DCA24 /* load_system_roots_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_system_roots_linux.cc; path = src/core/lib/security/security_connector/load_system_roots_linux.cc; sourceTree = ""; }; - 79BB29CCDA18A39BF0778946D15438FB /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; - 79C3A7D7CA612068B66154CFA2106C0D /* 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 = ""; }; - 79C3CFDF38FDFA63226560FBD6A6A8FC /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; - 79D05D52E31B4094E284232985324159 /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_resolver.cc; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc; sourceTree = ""; }; - 79E05EE534DA72A2C427B0B204D75916 /* 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 = ""; }; - 79E0F27F37F7CB6B638A794C270C5FDF /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 79E75A2A64ADC6B112F117C024ECBB58 /* 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 = ""; }; - 79E9B6BF8F213DCB21DB892917ADF5DC /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; - 79EBAB0589A529CD029D4516380260F2 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - 79F093F8BE761F244B6DB67078B233B0 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; - 79F6FEF2BC6EFF376E1BAD23A3CA6CFC /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; - 79F77340050550C9D5F35B7FAB1483B9 /* resource_locator.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c"; sourceTree = ""; }; - 7A03AE8D2FB86CD4A35C49826D7782B8 /* 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 = ""; }; - 7A1598AA01C5003E6C88928A771D6724 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - 7A237ECCFA8B96B54BBA8C415640B0EA /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - 7A25EF913710F67CCE26F52CB41CD585 /* 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 = ""; }; - 7A33FE4C521E1833DF1A4B2BE96DE21A /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_skey.c; path = src/crypto/x509v3/v3_skey.c; sourceTree = ""; }; - 7A3DE77817594D44F6C217357EC78C72 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - 7A4A7FDBFB29EDE523370E23DF2693EC /* 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 = ""; }; - 7A5486BE9CC1F388E324C9C7EABD8B15 /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; - 7A665B245C04D150D30C2A30625B2656 /* endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian.h; path = absl/base/internal/endian.h; sourceTree = ""; }; - 7A815A83BAA20EB9B7484EAD96F8A859 /* statusor_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor_internal.h; path = absl/status/internal/statusor_internal.h; sourceTree = ""; }; - 7A9A6AE481C213A802D349EAA9F4C45A /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - 7A9E28BABFE3A996F00F85950675FA30 /* FIRAuthUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthUserDefaults.m; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.m; sourceTree = ""; }; - 7AADD034B3C585D0C5C8539243228CF7 /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = src/include/openssl/opensslv.h; sourceTree = ""; }; - 7AB0BB5E25F9A4E8A7A014ACF9A4963F /* FIRGameCenterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGameCenterAuthProvider.h; sourceTree = ""; }; - 7AB6F42194261B05D48A051B0F2C668E /* 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 = ""; }; - 7ABD10E2B1E588523AD9FBD3940CE282 /* sparse_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_array.h; path = third_party/re2/re2/sparse_array.h; sourceTree = ""; }; - 7AC23454BB32F73F9583DB52A0C93FFA /* FIRGoogleAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.m; sourceTree = ""; }; - 7ADCA55EEAF99EBE87B8C93CE2B6790F /* sdk_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sdk_server_authz_filter.cc; path = src/core/lib/security/authorization/sdk_server_authz_filter.cc; sourceTree = ""; }; - 7ADED8F1E6190B3D423AE2A96A2BB920 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - 7AE60A7BA6E0A8E04D66350CD9DB972D /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - 7B105965769545C5B0B9E99C26DC589A /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; - 7B1BACB56D2CD9F872B1C6755A7E0496 /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; - 7B40B1F51FF6B7F02B55E11CB5B8B7F1 /* 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 = ""; }; - 7B4BCADE378832EA19B9002EDBA7FC4B /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; - 7B53B3009CC49BDB2753BB8E93BECF53 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - 7B823338B9E4C56DFF2807FBD0210A7C /* fastmath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fastmath.h; path = absl/random/internal/fastmath.h; sourceTree = ""; }; - 7B848F98AC8E5B6380E17439DE224151 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; - 7B9D3B1D7D115EDFC90A91EA6CFB2EF0 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - 7BB46D2645FF96E502A1BD97E9687DEC /* slice_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_api.cc; path = src/core/lib/slice/slice_api.cc; sourceTree = ""; }; - 7BB9D6AA420B85C89C745776993E58CF /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; - 7BC6F61972B12C5AFE35B95B4E2FEF46 /* 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 = ""; }; - 7BC94C5B9BAE2B14775EA499DE8D5BFD /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/internal/dynamic_annotations.h; sourceTree = ""; }; - 7BDB673E3DC250F32BEE1887018D2DF5 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - 7BDED696BE75F68B6825C21F5E27B66D /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; - 7BE01FC6063EB5F7F464F39C61924201 /* 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 = ""; }; - 7BE9EF9D777E71CFE2C59A9655253213 /* 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 = ""; }; - 7BEE68BA6F625E44541785565BC948DC /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - 7C02D0BC1F3D82EE13DDE1561F800B14 /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; - 7C13AED8D03B4ACC81C7729DFB9C812A /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/include/openssl/buffer.h; sourceTree = ""; }; - 7C32B7A8822FC8375E6AF4ACD507022B /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; - 7C3770DBCF5BCC6E005507C30119B889 /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; - 7C39B82C23E304C4405C33DB91B2EF6A /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; - 7C3A4A8AA200F17F3AECD5A88285A09D /* table_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_builder.h; path = include/leveldb/table_builder.h; sourceTree = ""; }; - 7C3EDEC56FAC05820A497B6E4829A4A1 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; - 7C47A0B5C04C4EAEAB4E3637CF1386F3 /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; - 7C50351F88C76CEDFFED2073AC0B442F /* 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 = ""; }; - 7C619C5FDC8C2239E0C41D44C8CC2C8E /* deprecation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c"; sourceTree = ""; }; - 7C779E900CA57D44C2F9D63A7B6A6A88 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - 7CA0185F83ACA006EC727DBDF59D27AD /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - 7CA55CBAF2E98B57BFFEDABA03F25B38 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; - 7CC01C94C1B4D012E0C86982C368B583 /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; - 7CC3B7274B204C5BEF266656A274CBAD /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - 7CC81E13AD0EA063C5581E4EBA665ADB /* 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 = ""; }; - 7CDEF017CC0F2CC3666D9416805B34DE /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = absl/types/any.h; sourceTree = ""; }; - 7CE0A4D62BC222B2960459D7DD3FCC3A /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/client_context.h; sourceTree = ""; }; - 7CEA1E95AB3F2E8B15CA2ED5A5DD1569 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = absl/strings/match.h; sourceTree = ""; }; - 7D2CCC76EC22DFFA7A0E43DF3A79F512 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - 7D33C8BBC3875CADB64091D8130C98D5 /* FIRFederatedAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFederatedAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFederatedAuthProvider.h; sourceTree = ""; }; - 7D4A083B309091D9258E0D4C82F1D3CC /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/tls/internal.h; sourceTree = ""; }; - 7D4A427A4270E220B6DB9600522D32E8 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; - 7D4B26A4EACD684AC489DECF84D7AE37 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; - 7D695078CAC476D795B2CBAB84FA5821 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poll.c; path = src/unix/poll.c; sourceTree = ""; }; - 7D7ABAEBB49E4E3F643B8E5E52765383 /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; - 7D8CF18C9D9D17FD06BFF9E3C01EBC9B /* 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 = ""; }; - 7D92C9A74272B6812313FAAA4491CD59 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; - 7DAC6D463F38520CDEC390263A93D7E8 /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; - 7DB40011121B0F1C6A39BC69784C72DD /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; - 7DC59AAE557C5D8876B7CAA3FBF631DF /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; - 7DCA23E37FB828A5C060E1EA6F1A8780 /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; - 7DF76BAA4C32D0A75873EEFAB878AC13 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; - 7DF7AE67E3BE5A28A3D46D9E468EE3E5 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; - 7DF92B730120BC397228E9C0DAB6ED6B /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; - 7E0904CB978C8745FBBBC1BB1C47E042 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; - 7E28BF9D80CED00CCA8BDFFC2E3A0F20 /* write_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch.h; path = include/leveldb/write_batch.h; sourceTree = ""; }; - 7E2CC987BD0D69D5B588FA66E42CE33C /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; - 7E42C7053CD3F40C7B1AF6F78A0D5F3A /* buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buf.h; path = src/include/openssl/buf.h; sourceTree = ""; }; - 7E5B7F006D924395AD45CC2BA3703911 /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; - 7E612E105B962670B1B33D32117257D2 /* 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 = ""; }; - 7E65AEAD12D47B9D02DFB9657A058EB8 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - 7E79E4EA366048EE1E4AEF5E266F4A51 /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; - 7E7CC535C54B4C290FC6574D455BBC01 /* macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = macros.h; path = absl/base/macros.h; sourceTree = ""; }; - 7EAE5FB266127D499A978EB17A9D62DA /* 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 = ""; }; - 7EB189B09A053244B12686A0DD331D66 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509/internal.h; sourceTree = ""; }; - 7EDCBBB8E734CC48BD9A3F3398235842 /* demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = absl/debugging/internal/demangle.h; sourceTree = ""; }; - 7EF49051A0998E8FA2DA3D036CD91262 /* tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tree.h; path = include/uv/tree.h; sourceTree = ""; }; - 7EF8B743BA5FA6FCD61DCF9EBCA2178D /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - 7F030BA8B204A84375448D691BFF035D /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; - 7F0490F09EFFEB632ED4629FE5DFB41C /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; - 7F18835E43AAE743B6DCA77EB490B186 /* idna.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idna.h; path = src/idna.h; sourceTree = ""; }; - 7F1BC2CC17F532F47E23CF44D9AADF91 /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; - 7F1FDBF639CB74864A60D21F5939F2B2 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = include/leveldb/env.h; sourceTree = ""; }; - 7F382F4DCC010C3268AD3E4B54E0C010 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; - 7F50FCE2418EB5D7E1740633F64A7FB4 /* FirebaseCoreDiagnostics.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreDiagnostics.modulemap; sourceTree = ""; }; - 7F672F0F888388AF3B470D815231A394 /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; - 7F6E41B7326949C6F5E48863E5798E38 /* sha1-altivec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "sha1-altivec.c"; path = "src/crypto/fipsmodule/sha/sha1-altivec.c"; sourceTree = ""; }; - 7F7B28EE0F74B9AD0BB0A3DF09BC5A61 /* string_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = include/grpc/support/string_util.h; sourceTree = ""; }; - 7FB991C75FBD4B12C3473928DD556C8F /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - 7FCCD9A63BC16F8C70552E3B5888B2A4 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/byte_buffer.h; sourceTree = ""; }; - 7FE21EF9D264BCBA0535BE5B4C1B9763 /* FIRStartMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.m; sourceTree = ""; }; - 7FF061B73082F8F2022C4100C6C7E6E2 /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; - 80175968A0F7C9E05B272E4D1A300475 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - 801B4E8061868343881352B94F4097CE /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic_filters.cc; path = src/core/ext/filters/client_channel/dynamic_filters.cc; sourceTree = ""; }; - 801DB2F445C95D9AA81B40844F3203D7 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - 8025D595C262037DB6D82C7FCFB75049 /* FIRWithdrawMFARequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFARequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.h; sourceTree = ""; }; - 802D64B40B4B0444252CC7C35097323B /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; - 8037E1306A59555C81260D3FD37729A4 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 803A26BEC92C06FEA4714F80D68CD846 /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; - 803EDF75568F55113E38FF23D1F613DA /* 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 = ""; }; - 803EE5BFD0498CB7975A108834085F97 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - 804D22677E760A249DDE43EF70328314 /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; - 804D74B24C099F007E82385C074E358F /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = src/include/openssl/md5.h; sourceTree = ""; }; - 804EBECD19957CB235E9415F60286B92 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - 806D804C7A2051238803DFCA7E54FCFE /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; - 806F8CF669D69EB3EEC00B4605AF3231 /* 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 = ""; }; - 80A2F96EA0BE65CE1AC28E09E53B5222 /* 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 = ""; }; - 80A49061F055B7D233D2FF64AA86922D /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = src/include/openssl/asn1.h; sourceTree = ""; }; - 80AA230DB59574DCC959E3FF257A83DC /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = src/include/openssl/blowfish.h; sourceTree = ""; }; - 80B005971F5C75C1E0DDBCB4C334266F /* 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 = ""; }; - 80B56502FE541E7DD799C011148B62A3 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 80CE9C3AC50A854AF113402C03D22840 /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; - 80E2B9C80C1D2401825B16CF52C16D75 /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; - 80F1561B81C70A802F7EA85B888BE9DE /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 8128F2E689D384161325885434437A7B /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; - 814867F6F30BF5DBC233EBFB76375055 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 814EFCD04166FA022143B812E4AE54F4 /* 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 = ""; }; - 8169A1A883278213BAE6489152180CC1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/hrss/internal.h; sourceTree = ""; }; - 817A25A1858B0BC5B123C4EA1B50F85F /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - 817AB778B3E5601BB11379797A86C8AE /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; - 81A5FA94A9CC5868125C6303E957DE48 /* 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 = ""; }; - 81DA078477DBCCB0C1972DA80C4812BF /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; - 81EB19368A1498215B0CA970BDF9707C /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/err/internal.h; sourceTree = ""; }; - 81EC1C4A9F7749F4A776E8360C14B313 /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; - 81F35E616D7A24D8E2DD72A96E7F1047 /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; - 81FA0F76DB5ADDF6BF62D4FDA4C212A6 /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; - 82013083E21F9C4C42AB2F17800F12AE /* compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression.h; path = include/grpc/compression.h; sourceTree = ""; }; - 821374D67A9F6268117D35B2ED29F9F8 /* FIRTwitterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTwitterAuthProvider.h; sourceTree = ""; }; - 823307DBB99753D7D63E4240D7AB7532 /* 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 = ""; }; - 82365BE95D0F61322C410B9222B8342A /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; - 824F564055990B89D6937834E865A79A /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; - 82519058DB16C1508CCC9DB903349F65 /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; - 8260A36825F444D43C8FA8ED5D178CB6 /* 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 = ""; }; - 82889AE2BBF9643D34B161B9220FA9F0 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - 82903A1639B3CB3E512E6527CB87B7C2 /* 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 = ""; }; - 829605E36EDA6B0E8845C26075B1EC53 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; - 82FC36A5821DFC147387DC7BD77868CE /* 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 = ""; }; - 82FCA0F0AC99D2ED11719EB48DB90138 /* 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 = ""; }; - 831D024AFACC9C4176CDC6EEBF791F28 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - 83331FBE99339EE695C88DA833274ECD /* 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 = ""; }; - 835794F36BDFBDD5B31837218FC86943 /* port_stdcxx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_stdcxx.h; path = port/port_stdcxx.h; sourceTree = ""; }; - 837537285C9BEC5295F81A450E80E355 /* waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = waiter.cc; path = absl/synchronization/internal/waiter.cc; sourceTree = ""; }; - 83A178747E2BB665ED54072C495D013A /* 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 = ""; }; - 83A7F0AFBC6A66D32632BCEB9EC41490 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; - 83BC52BDCE224833A93A71638D8819FD /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; - 83F725D38876C56067106AFBAFA14666 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - 84239BCC5B81A8DEFD7602C353FD75BC /* 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 = ""; }; - 842C6DD85798D71FFE0F6A3978064B29 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - 842F3CA63637C9471D572D962F41C20A /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; - 8434161CB17DA4554036A55A1DCE1BD2 /* abseil.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = abseil.modulemap; sourceTree = ""; }; - 843DA236A67DEDF7C48D0607833BCE52 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = src/include/openssl/cmac.h; sourceTree = ""; }; - 84437FFB956108EEA9F62285047A0CCC /* Libuv-gRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.release.xcconfig"; sourceTree = ""; }; - 846272CE906ECA1A80A02B7AEB41BAD5 /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; - 8462D45307158B54E7DE571C0CCC59AE /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 846BB8B1516FFB4ACEB09BA01E3213CE /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 8473F989FCE12F29EC1D5981DAAA5216 /* rds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c"; sourceTree = ""; }; - 847F94B62BC4C08B64A8B1A285CDC65B /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; - 84877799626941D050865D6B8237B558 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 849051CE414BC29F7A237A39EBCD55F7 /* 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 = ""; }; - 849A1163BE198D6657617FC151F0FFAD /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; - 849A1AC8CEA272691DEB327D46B88ECC /* dbformat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dbformat.h; path = db/dbformat.h; sourceTree = ""; }; - 84B5EBD6C55FCC15FC3EC63FA107C532 /* FIRAuthInternalErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInternalErrors.h; path = FirebaseAuth/Sources/Utilities/FIRAuthInternalErrors.h; sourceTree = ""; }; - 84C8A845119E06EE804C88BE83FB10E7 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; - 84CE4D473CB4B1B2A08A99F858424D05 /* 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 = ""; }; - 850FB736D8A70EC850956A82CD5849D9 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; - 851A72E7FAE45B9C9A9C917210006951 /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; - 851DB4108E572EFE5F11384675ACE17A /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; - 851DEDC9DCA1CDA1721AF7FC32D0077B /* 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 = ""; }; - 85467C630EA8DE88330CB36D54EF3198 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/support/atm.h; sourceTree = ""; }; + 6FAAF56264CE98B1859A2EC38441CA4D /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; + 6FC055740FFBC25400723E7E8BE49B73 /* binder_constants.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_constants.cc; path = src/core/ext/transport/binder/wire_format/binder_constants.cc; sourceTree = ""; }; + 6FC7F37BCFD31279D121E74908263EF7 /* bad_any_cast.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_any_cast.cc; path = absl/types/bad_any_cast.cc; sourceTree = ""; }; + 6FC84C2D9C7AD4F1CD742375F966DDEA /* 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 = ""; }; + 6FDEE7B96072B088D68D10306D615233 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; + 6FE23C300ABA620FFE1BD8C5B0C2C8F2 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; + 6FF8DF228868753742F43A64B9DBA840 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; + 7000B9F16EE10BE80F556E4CFF081DD0 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; + 70089ACAEC66A055C801C99325A4898A /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; + 70201AB404B80BCFD74785BE68F49F69 /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; + 7043E79F03F3F1F7874FC445B5E3FE12 /* 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 = ""; }; + 704B3C60447FFFC6BF7270E781FD58D2 /* FIRPhoneMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorGenerator.m; sourceTree = ""; }; + 7057A7950D894C0BF5191CAAA40E0E5D /* 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 = ""; }; + 705B1D73FA5618F22265BA6880A19556 /* any.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = any.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/any.nanopb.cc; sourceTree = ""; }; + 705B71EBDD700FD76CBF927F52C848EF /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; + 705F100A728668F0DF00FBDD3C907CB3 /* compressed_tuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compressed_tuple.h; path = absl/container/internal/compressed_tuple.h; sourceTree = ""; }; + 7070CCCCF5748DF8CDB36F1E3EDD89E6 /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; + 707B7BB8C58EF90A1687CE05C1F8FCD2 /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_resolver.cc; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc; sourceTree = ""; }; + 7089E82C27954B63258494BE969DAF7E /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = src/include/openssl/e_os2.h; sourceTree = ""; }; + 70991E1BC079F3A393AB61E9202F626C /* 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 = ""; }; + 7099B4CF878ADB2443AA1E616375CED8 /* FIRDeleteAccountResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.h; sourceTree = ""; }; + 70A30CF567AB51F97AD2C3048D5713D3 /* ascii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ascii.h; path = absl/strings/ascii.h; sourceTree = ""; }; + 70AF0374A0C974C8FCD8E23041B355E6 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; + 70C68E19B3CED84B740E4C000451E576 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/codegen/rpc_method.h; sourceTree = ""; }; + 70C85EF373FD87205BC5E879DBBEDDE3 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; + 70EB36025556F9690F215AB682B84540 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; + 70F381CF1202BD44C3ED4CB0ED05E529 /* http_proxy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_proxy.cc; path = src/core/ext/filters/client_channel/http_proxy.cc; sourceTree = ""; }; + 70F975E9596667E5BD797F569EFA7501 /* mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mem.h; path = src/include/openssl/mem.h; sourceTree = ""; }; + 70FE3BE36F396F0EEBAF0368A25FCA42 /* FIRAuthExceptionUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthExceptionUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.m; sourceTree = ""; }; + 710349E5E371F72E1D5AB9F09AAF80CE /* key_field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_filter.cc; path = Firestore/core/src/core/key_field_filter.cc; sourceTree = ""; }; + 7106F5DA46DBF6EBDD4F975642688BED /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = router.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; + 7114A1BBD0A88B90A7BD7BA736A002BB /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = util/crc32c.h; sourceTree = ""; }; + 713006068D25F02038ED52811E7DEAF8 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; + 7132DE232F85CFCB70E56BE252C3A4EE /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; + 7151F8B6A513A491A9ED1DF985822077 /* 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 = ""; }; + 715276421DBEED576448CC1444534199 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; + 71532035C5419BA505928148B8B69A9C /* inet.c */ = {isa = PBXFileReference; includeInIndex = 1; name = inet.c; path = src/inet.c; sourceTree = ""; }; + 717928F9914AF0BC957E001257AFFC30 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; + 7191D1AE4A0885DD51D293AABD3D5E25 /* FIRSignInWithGameCenterRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.h; sourceTree = ""; }; + 7193C679299DEB859CE57EE44E430486 /* load_reporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_reporting.h; path = include/grpc/load_reporting.h; sourceTree = ""; }; + 7194109719C1344EE7ED556CEF056D92 /* 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 = ""; }; + 71BCC4AE2536A59C6FD58DFEE503475A /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; + 71BF023C603DCCCAFE0663AEE43044E7 /* log_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_reader.h; path = db/log_reader.h; sourceTree = ""; }; + 71C059396D79BE130E0CBFF2831DCCE3 /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; + 71CFBF2ADBE195EB75CAD50471F79A59 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; + 7212B845226AFA2FDAD5863D12046450 /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; + 72182DAA485BA61009AD0E25141ABFA9 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; + 724BD849C8EEB14B5E2F02C50FE1421C /* cpu_iphone.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_iphone.cc; path = src/core/lib/gpr/cpu_iphone.cc; sourceTree = ""; }; + 72575879F4DC1A1A2E136BA6ACC4E0DE /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; + 7259CACA0FF6037B7DFF51D7F0472E51 /* local_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_transport_security.cc; path = src/core/tsi/local_transport_security.cc; sourceTree = ""; }; + 725D353BE6A25FC2F52FBB2AC226E80B /* 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 = ""; }; + 7289B0F87C60F11F99A29597B3E4E922 /* BoringSSL-GRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.release.xcconfig"; sourceTree = ""; }; + 72C015BE10B5B8840C593D3E9F3924B4 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; + 72C74E02940FB4DA4D7AA6FE51E2B2CC /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; + 72E254EE716AF566C6DE2A6F4F54A9D2 /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; name = table.c; path = third_party/upb/upb/table.c; sourceTree = ""; }; + 72EA8DCD42512897C0EF310A5BD1D87A /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; + 72EB6E8123424B7353248FEE6438E9DA /* 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 = ""; }; + 72F4FFB3C62AEADA83E764B0CBE11311 /* 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 = ""; }; + 72F89D6411F6C8A7627440EE8E74AF26 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; + 730DD5E67DDBA111BECCEB74FC7A0053 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; + 7312C85CA4748F406EEDA4500DD8DB1F /* 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 = ""; }; + 733E1CA7C71F7950FF73F6837C5546BE /* 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 = ""; }; + 73431018B41E18B97DF055246F3EEBAC /* leveldb_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_document_overlay_cache.cc; path = Firestore/core/src/local/leveldb_document_overlay_cache.cc; sourceTree = ""; }; + 7348FD04A460077BA76DDABEEB8593B6 /* hide_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hide_ptr.h; path = absl/base/internal/hide_ptr.h; sourceTree = ""; }; + 7351CD6C6FF3C7673164A80FBCAB51F1 /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = closure.cc; path = src/core/lib/iomgr/event_engine/closure.cc; sourceTree = ""; }; + 7374C9BE75E299EBBD473AB2D8209DB6 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; + 738AC6A787B65F7CF70CFAEC95B76ACE /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 73A13B1A242B4DCC250E43043F247B8E /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; + 73A13E6CA2407CBDC57E189D6980E82D /* 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 = ""; }; + 73A5930687BFDDBDDA1BE6C4331B552E /* port_example.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_example.h; path = port/port_example.h; sourceTree = ""; }; + 73A73D17771BBAEFEBBFE5724EF32F1D /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; + 73A7CABCCB1DDC9DB9E4632D1D065DAE /* codegen_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = codegen_init.cc; path = src/cpp/codegen/codegen_init.cc; sourceTree = ""; }; + 73C5C4EC3C7729330CFE04D86CB1A1F3 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; + 73DAE0328E7FC880D14EBA7FF9ADB39A /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; + 73DC7A84F0FF26AA1589B20EA5404B3B /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; + 740A4D3CAB52397695F4157A914418CF /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; + 740DACDD3F5B8CD5EE986D22C6DB29F8 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; + 74253FD6CE1999E465BDC8B36B0F9DA1 /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; + 7425DC3914D3335DEA73DF46DB6B56D2 /* FIRAuthKeychainServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthKeychainServices.h; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.h; sourceTree = ""; }; + 743248BC90870500509F1E9FA9EB04E3 /* FIRSecureTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h; sourceTree = ""; }; + 743F91B42AB2B0DF8FFF6CC4D6C54B46 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; + 744588BE50B70EC86CDBA607F4426EDB /* 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 = ""; }; + 744FD330FACC2569A4859FC9F49D0E80 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/dynamic_annotations.h; sourceTree = ""; }; + 747BAFE6BABB44DF8C5C19A342109DD3 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_des.c; path = src/crypto/fipsmodule/cipher/e_des.c; sourceTree = ""; }; + 747F5398DD2517835079DEDFB1AD1BB2 /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/impl/codegen/server_interface.h; sourceTree = ""; }; + 74904B350160421E317407EDD5A75F19 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + 749C4DE49651E51D73AB76CD86B568AE /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; + 749EC29295DD07149C5CAEB9B787F0D2 /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel.cc; path = src/core/ext/filters/client_channel/subchannel.cc; sourceTree = ""; }; + 74A7921A42FA7E95FF4A48499FDF2F2E /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; + 74BE481278D4B8C57FA590A10DD8504C /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; + 74C3C535FE78EEC583E88F8D8A8B758D /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; + 74C87F9D896DF54AB753DCD7F19434F5 /* pcy_data.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_data.c; path = src/crypto/x509v3/pcy_data.c; sourceTree = ""; }; + 74D983C3177CB17A1FFD5CCA45FF6080 /* waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = waiter.cc; path = absl/synchronization/internal/waiter.cc; sourceTree = ""; }; + 75043BCBD0E8257C1EB6CC913D1921A9 /* 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 = ""; }; + 7506595E1A717BB3A9F6703838620EEB /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; + 750F6C4D528695305EDE1B157BF14683 /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; + 751518CFFD5287DD2EDA4424BECDB6E2 /* 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 = ""; }; + 752DA0A6C007A01CFC1F7C1AA13F396A /* aws_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aws_external_account_credentials.cc; path = src/core/lib/security/credentials/external/aws_external_account_credentials.cc; sourceTree = ""; }; + 753DF97634FB28A0BEC213F480F0159A /* 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 = ""; }; + 754B0D428B68D47F7C14DF67E180AAA9 /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; + 75657D8E204963652AE48744EA47754D /* FIRAuthAPNSToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSToken.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.h; sourceTree = ""; }; + 7584896C40A793F6F3AE1A581E786E97 /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; + 7598C107A7457216F0FED97EB6A2CA3D /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; + 75B21D0AE9E1E3C0B86F7270BC4D9388 /* stream_map.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_map.cc; path = src/core/ext/transport/chttp2/transport/stream_map.cc; sourceTree = ""; }; + 75C65AC14A04A1CE58A33259399FE990 /* curve25519_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_32.h; path = src/third_party/fiat/curve25519_32.h; sourceTree = ""; }; + 75CDC588D64A4FAE82B586CCD3A06252 /* secure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_credentials.h; path = src/cpp/client/secure_credentials.h; sourceTree = ""; }; + 75DD8E4F8E6CBC2B0481C530DB70826D /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; + 75FB01168CEEE27FDD56EEF60AADACA8 /* FIRMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion+Internal.h"; sourceTree = ""; }; + 760DC6159A6824A6D8439DA5B10F561A /* alts_iovec_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_iovec_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc; sourceTree = ""; }; + 760DF991187D71B53EB8CFDDF9C55A9D /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; + 762BC53D27EFCEB2B9D073FC2E6B3184 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; + 763961238FDB0238DA1A42718AC7D25D /* 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 = ""; }; + 763B8673B66E20EE8807F080845C7278 /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; + 764089E2FA6D55FE8C4A8DAE740A886A /* authority.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = authority.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.c"; sourceTree = ""; }; + 7648B29F89CF689336EEA8F8915BC929 /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; + 76855A2E8A4B077A9A0E4091976F98F8 /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; + 76A1BCD4EF094E6734D06B606765D481 /* udp_listener_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_listener_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c"; sourceTree = ""; }; + 76B59D97F918D6043EE23E9F6F0967C7 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; + 76E848596FA67D95D4AA7402689FD0A0 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; + 76F103B75E51B9E162F85CA081D14721 /* channel_stack_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_builder.cc; path = src/core/lib/channel/channel_stack_builder.cc; sourceTree = ""; }; + 76FED6B6F154E081C7C535EDF5F62F5F /* 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 = ""; }; + 771911D024A4F199E25F767A888E94A9 /* 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 = ""; }; + 7726294043E91B12FE274BBEAF1BCEC3 /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; + 772E5117E1A32631FDFFFB53A0491588 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; + 773EEBDA13742F01E2F10464913CCCE0 /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; + 77552EB18CD885E66C200BACA5FA0831 /* FIRAuthDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDispatcher.h; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h; sourceTree = ""; }; + 776098914FB49579EDE3FAE024BF50B1 /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; + 7760EB3569504B2BE667954F0E622034 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/base/config.h; sourceTree = ""; }; + 77634631A973E51BCAABC5942D30FC0E /* tcp_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_custom.cc; path = src/core/lib/iomgr/tcp_custom.cc; sourceTree = ""; }; + 776C3CD077E12B0B20C9426E1A8F4F52 /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; + 778173FC20F6C801F5CBC3ED92A4CBD7 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; + 7784D97B57EE1C91F8B93163F7706DCA /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; + 778944EF90E0AF6A8F76FC1C448D3DA3 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; + 778F3114A7F821D2CB8EA76A30D11459 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; + 779F0DD508566888E01FE684961D919D /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; + 77A00EFC6DE19312B21355EAAA97DDBA /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = src/include/openssl/dsa.h; sourceTree = ""; }; + 77A7974DD49392B55DC143C7ACA24D39 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; + 77A93A1F4E26ECE5ADC71856B90F81E7 /* tcp_server_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_windows.cc; path = src/core/lib/iomgr/tcp_server_windows.cc; sourceTree = ""; }; + 77B00D9AEA5BB3B3C6EBEFDCCC8199BD /* pcre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcre.h; path = third_party/re2/util/pcre.h; sourceTree = ""; }; + 77C64C6002643A0A3C3B48D77789BD83 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = absl/strings/internal/str_format/parser.h; sourceTree = ""; }; + 77E18FA9FF8A595831D9B9590E13D802 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; sourceTree = ""; }; + 77E41E672126381DB5F4F7F297E7035E /* pollset_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_custom.h; path = src/core/lib/iomgr/pollset_custom.h; sourceTree = ""; }; + 77F463CEF0EF2441522F6F3D223329D7 /* FIRCreateAuthURIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.h; sourceTree = ""; }; + 7819D4D3EE92CF6D15E6203497B80CCA /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; + 781CFE7BF46E5D0702850B2E0631EBF8 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; + 783BDAFB88A48948A9C559D76DB2A5FE /* FirebaseAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.debug.xcconfig; sourceTree = ""; }; + 783FAFEBB4F3765E41AC93CBA8311C55 /* errno_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno_saver.h; path = absl/base/internal/errno_saver.h; sourceTree = ""; }; + 78447660FAE3FC793AFA0E4C888916E1 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; + 784684E7B5949AEC5486ABC77D2D65DB /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; + 784EDAC21B9A7139AF68CDB3C25DB71E /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; + 78655707A30ADBDB4A17858D355D7D81 /* FIRWithdrawMFAResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFAResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.m; sourceTree = ""; }; + 7869C40B95CE31A8445F55BD2687C8D7 /* latlng.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = latlng.nanopb.cc; path = Firestore/Protos/nanopb/google/type/latlng.nanopb.cc; sourceTree = ""; }; + 78777920D6D73F548D7A65D0125D67EA /* memory_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_mutation_queue.cc; path = Firestore/core/src/local/memory_mutation_queue.cc; sourceTree = ""; }; + 78819602C38336B6A02B60CDA1F953B7 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; + 7882FDD12247B86650EF81C6BF395E76 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/internal/variant.h; sourceTree = ""; }; + 788895ABF601AED9FD7556E17B0C84E5 /* stringpiece.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringpiece.h; path = third_party/re2/re2/stringpiece.h; sourceTree = ""; }; + 78898DA0880A6CD33F5C26E3D76B4285 /* BoringSSL-GRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BoringSSL-GRPC-dummy.m"; sourceTree = ""; }; + 788A841BC05B9265D71AD897949481C6 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; + 788FB90AC07FE36E0135FEE285AB339C /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; + 7890FE3703D80D553218BB2FCC38A893 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; + 78938AE84B4B0CD3E092DB5BFC209BE3 /* strutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strutil.h; path = third_party/re2/util/strutil.h; sourceTree = ""; }; + 7894D79CB3F0575E5741F981F8A991F6 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; + 78AD5E938F011794145D5ABB51847453 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; + 78B20338386F13EACAB9839EF45B9D52 /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; + 78B6B707EF284BAB3C353C12785B1CA1 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; + 78C4D796153F4FBE4C8AE94FB1566618 /* cordz_functions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_functions.h; path = absl/strings/internal/cordz_functions.h; sourceTree = ""; }; + 78D23FC5F16960DA217D3361C61D3284 /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; + 78D244023407702075C9C7D1F56E6674 /* pcy_node.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_node.c; path = src/crypto/x509v3/pcy_node.c; sourceTree = ""; }; + 78D65E58792CBFD7E57CBEC8D657DEF2 /* cpu_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_windows.cc; path = src/core/lib/gpr/cpu_windows.cc; sourceTree = ""; }; + 78DA39A4531D719ED9349175AED2FE7A /* 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 = ""; }; + 78E8982C846BF733048731B9C5489A17 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 7906C19C47E966370A6167C903D84A38 /* fs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fs.c; path = src/unix/fs.c; sourceTree = ""; }; + 791B1A7CFDA66689702391888EBBCC2F /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; + 793F3686ECD9B80BEE1B236A01E4A7B8 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; + 7941BA33958084DB7766BA4544C318DB /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; + 7948665A65AA28E8B9F1D1CB23D1639D /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; + 794EFE21FBF1C0C765D8F5CFCCC99D59 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; + 7959245F8371DE65402E60302EEBE8AE /* 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 = ""; }; + 796116B81CDE13167E77B2A1F793F330 /* futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex.h; path = absl/synchronization/internal/futex.h; sourceTree = ""; }; + 79626D81A60C93F09ABC1A997C630CC3 /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; + 7975E31F0C8EBAEBBE73151E99AF94B7 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/impl/codegen/config.h; sourceTree = ""; }; + 79828274D3FA905866B6193BB65EB029 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; + 798BCF1941D6B7591BF4BA1452DF2855 /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; + 798E8C54A3924A91102AE0B6230BA4FC /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = src/include/openssl/asn1t.h; sourceTree = ""; }; + 799111C34A20120534FEE39622188F58 /* eds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c"; sourceTree = ""; }; + 7992083964FCE8984C9A5DC875F43EEC /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_file.cc; path = src/core/lib/iomgr/load_file.cc; sourceTree = ""; }; + 79AC40B4FA4CBEC2B00045AE929EC044 /* 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 = ""; }; + 79B9E61FF27B6DC6701C0DCE79C6DB19 /* http_tracer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_tracer.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c"; sourceTree = ""; }; + 79BB073974C028E5718B59F0FB150F44 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; + 79C37F3296F115E675C5B32B6D543182 /* slice_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_split.h; path = src/core/lib/slice/slice_split.h; sourceTree = ""; }; + 79CCD076FDACB345396DDC61B5569A98 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; + 79D55EAE70CC0A017B4FA25867C21720 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; + 79EA410E7DF81FC7428509ABB882C156 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; + 79F37191C73878568A494700DA5C9527 /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_balancer_api.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc; sourceTree = ""; }; + 7A04F894BB371F658D3596F92B32CC63 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; + 7A4880463DB317816F763DBF10A2517E /* FIRVerifyClientResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.h; sourceTree = ""; }; + 7A4AF187C9F371D2BD403A1153BE15D4 /* xds_http_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_filters.cc; path = src/core/ext/xds/xds_http_filters.cc; sourceTree = ""; }; + 7A7A35D2FD55AC6076A5ED6600BEBA25 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; + 7AABBF38B8A78C05E7EAB74FBD685DB9 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; + 7AB696A6100378080A6E1745D84CBA2C /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; + 7AB6D41D889746350C005621CD558C9E /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connect_handshaker.cc; path = src/core/ext/filters/client_channel/http_connect_handshaker.cc; sourceTree = ""; }; + 7AC5B4FD6BC35B4C7B4CB1FDCE633C8A /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; + 7ADBF7E208A13DB7F2D93C1F9576C4FF /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; + 7B03A0BF04F84D51E1CC7FDB43D3169A /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; + 7B08F8FF9A8A0E11F0C2E909CFE65D0B /* core_codegen.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = core_codegen.cc; path = src/cpp/common/core_codegen.cc; sourceTree = ""; }; + 7B0C899860CE4DA1A92A592F4D7F352E /* leveldb-library-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "leveldb-library-Info.plist"; sourceTree = ""; }; + 7B0CBC307BF2785388B9DE79084F0707 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; + 7B13F0FBAEF17735A4523662506F3914 /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; + 7B24DF331B199DC71FEC338397503F97 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/modes/internal.h; sourceTree = ""; }; + 7B43FF235702065C6B602B71ED71778D /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; + 7B4EAC746E9A821140B46676A1924A11 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; + 7B5BE996EC8EF8DD39D79379B8789E70 /* str_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join.h; path = absl/strings/str_join.h; sourceTree = ""; }; + 7B5C084B3ED94DB76A990EB0282A3355 /* annotations.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.upb.c; path = "src/core/ext/upb-generated/google/api/annotations.upb.c"; sourceTree = ""; }; + 7B6597F65C9467798C5583F0C43E8D40 /* memory_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_quota.cc; path = src/core/lib/resource_quota/memory_quota.cc; sourceTree = ""; }; + 7B65C34B49D2CCFFE7CFDC736C362AE6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; + 7B8708073A39FF01D99A3CA282001D1E /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; + 7BB3CF4C25ECF864BBD7C871A0458776 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; + 7BBF9892183FBA8FF8104247F600A549 /* frame_rst_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_rst_stream.cc; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.cc; sourceTree = ""; }; + 7BC357F159AB2D06254EB80D5F2FDE67 /* 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 = ""; }; + 7BC372F2C46820D841CF199C69F954E7 /* FIRVerifyPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.m; sourceTree = ""; }; + 7BD9F4D44B1C856C58E7CBBC4BCF8198 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; + 7BDBF5918ABB127A7110E6425D61B517 /* FIRSendVerificationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h; sourceTree = ""; }; + 7BF463CF92DAB5894702B771496620A0 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; + 7C276AE3088683A164B97EB9C7C6F22C /* 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 = ""; }; + 7C2D58474F99FD672F93808462DB98DF /* FIRVerifyPhoneNumberRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.h; sourceTree = ""; }; + 7C3F35CADFC8B90CECBA8DB80363E6CF /* online_state_tracker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = online_state_tracker.cc; path = Firestore/core/src/remote/online_state_tracker.cc; sourceTree = ""; }; + 7C47BEAF8E46DC904F72BB726BAC2BFF /* p_dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_dsa_asn1.c; path = src/crypto/evp/p_dsa_asn1.c; sourceTree = ""; }; + 7C665D1FC2400C7FBD0985A56412D91D /* 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 = ""; }; + 7C72B55A02ACC830A688EE808CE9942E /* firebase_auth_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_auth_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_auth_credentials_provider_apple.mm; sourceTree = ""; }; + 7C78BA3A60FA852B83EC6E98A124D7A3 /* FIRMultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactor.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactor.m; sourceTree = ""; }; + 7C7E9998E63938F4092E3EEA2FDF9036 /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; + 7C90747DB81AC465985B192149AA7505 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; name = decode_fast.c; path = third_party/upb/upb/decode_fast.c; sourceTree = ""; }; + 7C96448A0F25D46E3935E853CE361C7A /* abseil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "abseil-dummy.m"; sourceTree = ""; }; + 7CA141588C83E1DC9DEB8C5366BDEBDD /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; + 7CAC12485EDC5EBFAF2C9BFE36DD228C /* tmpfile_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_posix.cc; path = src/core/lib/gpr/tmpfile_posix.cc; sourceTree = ""; }; + 7CAD0FC48830950333C3F295883EE408 /* 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 = ""; }; + 7CC3E8F9F3FE65DFDFC7B18ADD341327 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; + 7CD86E17D37EA0CEC576516DB45D4C4D /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; + 7CE73FCD9D3568BB47C55C93FA4114DB /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; + 7CF9D96C62883E1B4DE86C5813D96300 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; + 7CFDA0297CCAD54F719481836E14E1FB /* 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 = ""; }; + 7D037E5D40A1FA64E42B31F5BDFACAD2 /* frame_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_ping.cc; path = src/core/ext/transport/chttp2/transport/frame_ping.cc; sourceTree = ""; }; + 7D058C0932547364E18861638B8F05A6 /* tmpfile_msys.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_msys.cc; path = src/core/lib/gpr/tmpfile_msys.cc; sourceTree = ""; }; + 7D0BAE90AAF4BA0D7171A635853727BD /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ncons.c; path = src/crypto/x509v3/v3_ncons.c; sourceTree = ""; }; + 7D29CA65A649FCAF3015C9CED5C78F31 /* rbac_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_policy.cc; path = src/core/lib/security/authorization/rbac_policy.cc; sourceTree = ""; }; + 7D3A1284464B508492692682F0A0E29B /* testutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testutil.h; path = util/testutil.h; sourceTree = ""; }; + 7D4C904E7473EA059F0F2233C30BFAA3 /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; + 7D57196BC18A2CFAD5928D02AAA1AA73 /* FIREmailAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIREmailAuthProvider.h; sourceTree = ""; }; + 7D5CED403F2C20A4C89851BD5D4A5049 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; + 7D6A5AD140B93E51DF64F8CECD92518A /* 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 = ""; }; + 7D6A66D1510C22F05BD043A93D688A3A /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; + 7D7B642DBBFC8855AA92F401A5394F4A /* check_gcp_environment.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment.cc; sourceTree = ""; }; + 7D7C444F6FDEEF8094244CDA322A3BDC /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; + 7D8FB42255FF02ABF43AA485C778403B /* 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 = ""; }; + 7D92EA3A7FC3953CD3989F4E8DDAAAD0 /* 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 = ""; }; + 7D9935D9ACEA68928B838D3A704D3315 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; + 7DAD0EA9A05D9AE09418FDC354C265AE /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; + 7DC2455AF37775A57CF18B34D380CCFE /* binder_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_credentials.h; path = include/grpcpp/security/binder_credentials.h; sourceTree = ""; }; + 7DD0109179BF094DE99742CB655C74F7 /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; + 7DD83751577D96401B786F117A54F043 /* stacktrace_unimplemented-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_unimplemented-inl.inc"; path = "absl/debugging/internal/stacktrace_unimplemented-inl.inc"; sourceTree = ""; }; + 7DDDF0F1CEBDFA8806A37A31E237B099 /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; + 7DDE7DCAACB69DE02622F6D9ABF31B57 /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; + 7DE20194A71A1880BA4293EA14A536A8 /* FIRVerifyPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.h; sourceTree = ""; }; + 7DEB1FE9DF15D5132C2DED30E63F02C6 /* 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 = ""; }; + 7DEFB7554EEF13EBDB29DA72D2624D1F /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; + 7DFD83B014E45EE47DFF2DEC599671CE /* FIRAuthExceptionUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthExceptionUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h; sourceTree = ""; }; + 7E043879D480C8F7A101ACF87C6182CB /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = src/include/openssl/ec.h; sourceTree = ""; }; + 7E62E27427F0AFE765A98F8FCC33D0A1 /* FIRAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTokenResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult.m; sourceTree = ""; }; + 7E8049D8E79947706765171C6577C117 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = ""; }; + 7EB9DA88EA599C781F3AC59D73D48539 /* 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 = ""; }; + 7F061713E7492965AA12B740C44C736D /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; + 7F4F3B44F8088C5C7ED2C0AA67EA9270 /* grpc_root_certificates_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_root_certificates_generated.cc; path = Firestore/core/src/remote/grpc_root_certificates_generated.cc; sourceTree = ""; }; + 7F857556AC267BAE04A7D84DB5D70EB6 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; + 7F8949D831C4D2F73FFE546A0CA73752 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/rpc_method.h; sourceTree = ""; }; + 7F928376AACDA275738F34450038DC04 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; + 7FA97B123387E58027523EA88449F89C /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; + 7FAEE13B322EA73E2BA902F8F862B6F8 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; + 7FB7E286913B33681221E4685CF90A9E /* any.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = any.upb.c; path = "src/core/ext/upb-generated/google/protobuf/any.upb.c"; sourceTree = ""; }; + 7FCCDFC029631CF6B738608355B72EBA /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; + 7FCDA6FED7566AD835DDAC45606FD285 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; + 7FE94FDBC6214D20A441583351D621DA /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; + 7FEDD8FE45FA214D8E636E31FA3734DC /* FIRAuthGlobalWorkQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthGlobalWorkQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h; sourceTree = ""; }; + 7FEF38F474D7E723A2E0AE559B86DD7B /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; + 7FF26D5467153BD1283BE0286DBBC338 /* server_chttp2_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_chttp2_posix.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc; sourceTree = ""; }; + 7FF5A0B8EFFB565299FCBB477AB565A4 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; + 8020947083266B840ACC497C40D9C6E9 /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; + 802CB8635B1F10971B3859038D444C8E /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; + 80406B32B70F9D6F3E9DD1FF3A595592 /* ext_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_dat.h; path = src/crypto/x509v3/ext_dat.h; sourceTree = ""; }; + 805D1F28B4EBBC096CDCA4C0441A0F90 /* sdk_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sdk_server_authz_filter.cc; path = src/core/lib/security/authorization/sdk_server_authz_filter.cc; sourceTree = ""; }; + 805D47521AB994262217E99469683294 /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = number.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; + 805E5F18BBCCC676978A3CB5EE7D2C2E /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; name = des.c; path = src/crypto/fipsmodule/des/des.c; sourceTree = ""; }; + 806D89885BFC7E5DF1C298DD4C7A714D /* 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 = ""; }; + 808479517641C3A8C5C0941B066FFA0C /* global_config_env.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = global_config_env.cc; path = src/core/lib/gprpp/global_config_env.cc; sourceTree = ""; }; + 8087B78ABE49CF24C022C0B5DBFD3CD9 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; + 808E0C2D63FF669DDE1442C36A4C20AD /* FIRAuthRPCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCRequest.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h; sourceTree = ""; }; + 80970750882AC55CC666A8DAAE072D87 /* 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 = ""; }; + 8097ACB8095A69F1499BB0CF65AC0EFA /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; + 8099F38C1FAC2720EC57C0783A005C79 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; + 809CD436344167C509DE2A4EFA647373 /* 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 = ""; }; + 80A6DD4469D7AEE305F861A6E4E0C1DB /* FIRStartMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.h; sourceTree = ""; }; + 80AB9FB90254696C9DAA7CFA451B93B6 /* 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 = ""; }; + 80B41DFB40D427DEFB68B040A2189B9C /* 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 = ""; }; + 80C57F179BFC42A798C67E22CB90D5ED /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; + 80D1CD31CC645B8EECFA49C91CF6ADC7 /* statusor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = absl/status/statusor.h; sourceTree = ""; }; + 80DFC757C71021B15B6C3C05A215D574 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = src/include/openssl/span.h; sourceTree = ""; }; + 80E8D12DE255625ACD6D0B7A4F8CEE79 /* GULURLSessionDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULURLSessionDataResponse.m; path = GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m; sourceTree = ""; }; + 8112C08896C168B42924C4F9DD4AF3BC /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + 8122035A9922CCF7CCE95CF2255231D9 /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; + 813B88885DA9DE97E9BA345D551F8C51 /* 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 = ""; }; + 81566207F05E1F322A4BDF0C50741BC4 /* gRPC-C++.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-C++.modulemap"; sourceTree = ""; }; + 815DFE58523F1EEDDE428FE336B5F6E6 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/unix/spinlock.h; sourceTree = ""; }; + 8182DE90E9DABD62595CD545BD3EEC31 /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; + 81BF27A9D92C5634528A983610301302 /* FIRGoogleAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.h; sourceTree = ""; }; + 81C4F67D34ADCD882EC3413B49817A0B /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h; sourceTree = ""; }; + 81D198033F014ADC43BC5501664D54E2 /* charconv_parse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_parse.h; path = absl/strings/internal/charconv_parse.h; sourceTree = ""; }; + 81D22140348EC32ECDDD7440A8085A6B /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; + 81E806B3541DB451F73D7DD5A39A3A5A /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; + 81E9D9ABC1BDD1408A467293D25BDD4B /* prefilter_tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter_tree.h; path = third_party/re2/re2/prefilter_tree.h; sourceTree = ""; }; + 820BA2CE621665F48E8756C22D9EE4EC /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; + 820E2EAC0F61C0F66E2FA35B975ED290 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; + 82229B5ECDBB2AABD9861F13B2D9F901 /* validate_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validate_service_config.cc; path = src/cpp/common/validate_service_config.cc; sourceTree = ""; }; + 82374BB87E7C7DD902CFF6354380C71C /* grpc_tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_credentials_options.cc; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc; sourceTree = ""; }; + 82466B292831540539085B0B9CBF9BA6 /* 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 = ""; }; + 824ACA31A49C961E34CEE26C94515B59 /* config_source.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_source.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c"; sourceTree = ""; }; + 8258791535999377ECF95F6C05A42690 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; + 826150F9E06922A54A207FAA95FA2B5C /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; sourceTree = ""; }; + 82658ADBAF80503D4D468962746B5764 /* 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 = ""; }; + 82720EE919EC12A4CE0169CCB97936A8 /* security.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.c"; sourceTree = ""; }; + 8275596D5F2CC3EB383344D0C79FB32D /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = src/include/openssl/bn.h; sourceTree = ""; }; + 82A014C0E83F78E507B018268BFE8856 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; + 82A59E6E4AEB2EF6C4B0620D3837A95B /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; + 82D1BEC33AF5E8C2F7C809125E1C293F /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; + 82F03B3AFF5A629FC564EA968D93C103 /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/codegen/delegating_channel.h; sourceTree = ""; }; + 83054DCEB1E12453BA6FA0C990431A8D /* FIRMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion.m; sourceTree = ""; }; + 83140535FB93F07F64BC6545C841F42F /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; + 83445DFF998294999F449F3AF8027670 /* grpc_streaming_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_streaming_reader.cc; path = Firestore/core/src/remote/grpc_streaming_reader.cc; sourceTree = ""; }; + 836E4622712C52CDF72BEE2F2D3016BD /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; + 8380D25D4C223BFD7AEBC7293A7F86E4 /* FirebaseFirestore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseFirestore-umbrella.h"; sourceTree = ""; }; + 838B5F52BFBB6FEFC791F69888D7B910 /* fault_injection_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fault_injection_filter.cc; path = src/core/ext/filters/fault_injection/fault_injection_filter.cc; sourceTree = ""; }; + 8393534CE74E8E37E8812A5C8600940C /* buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buf.h; path = src/include/openssl/buf.h; sourceTree = ""; }; + 83B1C655EAA1CBAA9F9C42A1C3343D85 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; + 840BD586EA3F2FF045F833F88B5D2D4B /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; + 840D5E7D16F24BD6FFF4C4858FDA05AC /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; + 843B10F6EE0003084A4E8FD8070FD47D /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; + 843DFC541C4225B1A26D34C45132D306 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = src/include/openssl/pkcs12.h; sourceTree = ""; }; + 845D25547CFB827A33FA7CD82DCD1A68 /* 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 = ""; }; + 845D2DCD64F94846EDEA586E33704AFA /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; + 846E4B27F82DB6D413EE2FE58A2C8412 /* 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 = ""; }; + 849C02D7041F661F4B3866E9502F5A07 /* 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 = ""; }; + 84ACDA529F2AFEA779F7FE3FF01046F1 /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; + 84C76D688AAC5A1CD64D289A14CE83CC /* 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 = ""; }; + 84E3B20A912687365F0B84225C3ED4A5 /* FIRUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUser.h; sourceTree = ""; }; + 84F0377569D87841D4BD240BA27CE979 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; + 8520AFFA2978E05AFA6EAED696FB4EB7 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; + 852CFE5705D2AF1D33ABB27047842573 /* FIRSetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.m; sourceTree = ""; }; + 852D87FA829225C0C14DC3310E22967B /* 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 = ""; }; + 85354C505F236508E27DE9AF8BCEA562 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; + 8539645961A2E14D040E589CCAAD8A52 /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; + 85432502D15B6E72081464943274CF23 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; + 85489F6700C73CC4D6870F413D6C1B82 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; + 854A24B8B40EC74722FFDFAB92716C3A /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* GoogleDataTransport */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleDataTransport; path = GoogleDataTransport.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 857EA4814AF020796AE9D746439F0390 /* 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 = ""; }; - 85A1F02DAC8F20ECD50F07FB6A5DFA18 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rsa/internal.h; sourceTree = ""; }; - 85A9907A769CC29511FC6CEF4A8F6A69 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; - 85B5B5E212867EF230C87ECF050446B8 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; - 85CDB0869C1EF72668489A231E5AD02A /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; - 85CE76757D158AE389D0EA2BE5A34086 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; - 85CF5959E52A9BCD943DD4A2513ECD71 /* 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 = ""; }; - 85D2EC4A893F19F738E391FCF01CB18C /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - 85DBE458F32F3C34DEE6D0B3E4F858AA /* FIRAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuth.h; sourceTree = ""; }; - 85EA5C1B46421FEEA8749ED536BEEF1E /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; - 860D5BADE72B0C37EC664BB2F54A06A2 /* 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 = ""; }; - 861297BCB6A32ABD79814726C0A62307 /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; - 8629F5CB910A9307E786B85BF9539263 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; - 8632A07B4FA18EC716EFF44F1531135E /* 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 = ""; }; - 8632B1A27EDFD373FF377527EE149645 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = absl/base/internal/raw_logging.h; sourceTree = ""; }; - 86365DA0FA0891FF1DB367911C01D1CC /* client_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel.cc; path = src/core/ext/filters/client_channel/client_channel.cc; sourceTree = ""; }; - 8640AF57CE7046398BB5BF4BDA9D834B /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; - 864EA35C8E28017343BC673750F71958 /* 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 = ""; }; - 865D385616D742CD2147A5718A155362 /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; - 866E034609AFF2AB1DF5E2A47DBCB64F /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = idle_filter_state.cc; path = src/core/ext/filters/client_idle/idle_filter_state.cc; sourceTree = ""; }; - 8673FE441D778EFC8EDEAB4F97ADA7D4 /* FIRWithdrawMFAResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFAResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.h; sourceTree = ""; }; - 86923368E9A5ADF0DDAB0080F478DF15 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; - 8695BB135034FF365003E14EA12AC98F /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; - 86C040CC9AD6FD805F69679AB74A6023 /* 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 = ""; }; - 86C089F9BCD9B36830F63A147C686068 /* 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 = ""; }; - 86C24E9D2FB1CEE0ADFEEB298B87A8E6 /* ext_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_dat.h; path = src/crypto/x509v3/ext_dat.h; sourceTree = ""; }; - 86D1B73F3665D1A80C9F693DD31116D9 /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_balancer_api.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc; sourceTree = ""; }; - 86D31D663533283246BA26F6E695B978 /* Libuv-gRPC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Libuv-gRPC-umbrella.h"; sourceTree = ""; }; - 86E2962D8352B9D73AD74FBC94939A39 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/codegen/status.h; sourceTree = ""; }; - 86E4A691EE109ED2C12573E958F94A57 /* 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 = ""; }; - 86FD8F68F4A6B1F258C6DC6DCF572316 /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; - 870D8EB45AEF8BB328D6CF7239FDC52D /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - 8717876E56C270791F761EAF3BB61D9B /* overload.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upb.c; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c"; sourceTree = ""; }; - 8720A2514F3AA488CA36988AB1BFF7A4 /* FIRFinalizeMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.m; sourceTree = ""; }; - 873687AEFA557524CD837B9CAB380039 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_connectivity.cc; path = src/core/ext/filters/client_channel/channel_connectivity.cc; sourceTree = ""; }; - 87437CB2E5BC7E0D3721AE274DC57BCD /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; - 8753297205A15687AAC62143DFB8A370 /* FIRGetProjectConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.m; sourceTree = ""; }; - 8768919247D8ABCB2FEF928EFC96F826 /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = ""; }; - 87692D90792BBDDC382E34A02ED92B4E /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - 878926A72A3EAFAA9A53CE7282E98E4C /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; - 8793B3EB2A5FF8636FE624671A5600C6 /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; - 87AAFB04B55856F0F2D76B2B5CA6A303 /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; - 87B20CC8A728B6D40F4FF620667944D9 /* 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 = ""; }; - 87D14E6E9EC2BC22A4D7C68274C25BA6 /* 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 = ""; }; - 87DCEE445BFC18950D3EA956CD9F708E /* extension.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c"; sourceTree = ""; }; - 87FB35B4B8D497659A575754E0D6694B /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; - 882449BEAD5E24C274937CD60DC230DA /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; - 882FCB0DEF4E1541895FE27775FB4E05 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = include/grpcpp/resource_quota.h; sourceTree = ""; }; - 884791E9AF39E8C3C863A28EB681D6A3 /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; - 88632C13B6ADCC96DB3E842E58AC3691 /* 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 = ""; }; - 886A8EBBFDD898F9E662627471854DF0 /* FIRAuthNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthNotificationManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.h; sourceTree = ""; }; - 886F2C2B3EF92B2D3B0943E0880EA5A3 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = table/format.h; sourceTree = ""; }; - 8877D7B9D41A73338304318D2795F633 /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; - 889C4559B52459471A44A392B83B1D2F /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; - 88B8EEB34934317FC62E45B56F0DABEA /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; - 890230CF2B8236EA6EF05EC09ECFEFEC /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; - 8909F43A7103E527828F577EF6B571D5 /* srds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = srds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c"; sourceTree = ""; }; - 89137C271D9AE7D2F71EE1A95A351912 /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; - 89274D0E80CA9AE9EC08FE08AEAF401B /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; - 89408EFD5BBDE9305EA1CF534689D874 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; - 895CEBE178D620DB513F64F9CBF4ED59 /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; - 895E1CEA80836E9355FBB0D9B1F245DB /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; - 8998326D6B9B8AA7EED6F75FEB6F07FF /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; - 89BFE9384FC50E4B4557762346397B7C /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - 89E86D9D5C91216F784927BE854E964B /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; - 89ECED4B6E1792842207C72F7101FF9D /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - 89EF1F94D9B6A76129355ED7CC85C80C /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; - 89F082EB7C70AA62FE666DD1D372858B /* FIRUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserInfo.h; sourceTree = ""; }; - 8A09EDCC235649B6FFA8B11DC8A18C86 /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; - 8A15AED959B11C9E86D8F20E08D6B883 /* channel_create_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create_posix.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc; sourceTree = ""; }; - 8A183A96D23C6A3969C3121A9FF9905A /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; - 8A2963FBCDFA65FAB78F53F2975F33E8 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; - 8A360C4E0E8DFA7C76B2BF59DB3D65E4 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; - 8A3C04A89FA9AF99E398FDE3D7CF9AD0 /* 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 = ""; }; - 8A5F7B06CDBF7E9AF90CF256D49D8043 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; - 8A6F30CCF75DFB0083A0F777243BF9F7 /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; - 8AAA6C1D939B1D52C82F2543E812E223 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - 8AAD56369A9309A51A1E810C19CBFC3A /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; - 8ACFE6B00DFFBA1DE88A5D10C90D6ACD /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/impl/codegen/sync_posix.h; sourceTree = ""; }; - 8AD15CC95EFDF231753C086B3E07BB4D /* 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 = ""; }; - 8AF0CDC6253EC8A2EA0CA4E6F62E4F16 /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pmaps.c; path = src/crypto/x509v3/v3_pmaps.c; sourceTree = ""; }; - 8B18036E1C30982D96418E7F0EF028F9 /* CLTypingLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLTypingLabel.debug.xcconfig; sourceTree = ""; }; - 8B20EB3E0A60999DCDAAF55B3E053B74 /* 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 = ""; }; - 8B27C1DBE793B0CB0A66541CE2706306 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - 8B33DF1B3D916AD1E131CB9E5F76A057 /* 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 = ""; }; - 8B34E0F018EC128E411D87A1E801DAA0 /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; - 8B49BDB0B122F7A383A21639753D0255 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - 8B51234E02E93F77D820FA91638307D1 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; - 8B52C63C7192772F7B0BEAE11C9E97AA /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; - 8B6EEA7A98913CF8835D7D79FADC7D1D /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - 8B7C21D21FCD4FDC4F74C259991D3440 /* 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 = ""; }; - 8B88E0C25A38850E3616E84F5C36C4EC /* 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 = ""; }; - 8B8A21B052C956C294EDFBECB5232750 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; - 8B8BF6AC21340963544E8EDB827FF15F /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = src/include/openssl/dtls1.h; sourceTree = ""; }; - 8BC194407DF61191096C06CF542587B1 /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; - 8BCBD362A14615B5389CE7DFBD4D8006 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - 8BCD98D145DC8703C436C52D1817B837 /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; - 8BE9F03D7DEE7284D1A168D66B5E9729 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; - 8BF5D76A3CA3083DD4BE85649E7DD57D /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 8C000874FD38C4F18E56DA495B7814F4 /* 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 = ""; }; - 8C10ED87C02DADCDA8F7C6BC35FB31CA /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = src/include/openssl/srtp.h; sourceTree = ""; }; - 8C3ED1EDFC37613EDB539E2BF7DEAC51 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; - 8C472DEB0BEFDBFBC36D5A4706B6ECF5 /* FIRGetProjectConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h; sourceTree = ""; }; - 8C4A54ADC637409E26CB1E73A461CD23 /* resource_name.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c"; sourceTree = ""; }; - 8C50941522164CC5B709F5098D927E84 /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; - 8C6503482F2C79CAE53AD5EC298F4F62 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; - 8C7ADAD18A55A4DF52919C1BC4BBCD42 /* FIRAuthProto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProto.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProto.h; sourceTree = ""; }; - 8CB04F54C9B2F140BB565119A014EE30 /* getaddrinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = getaddrinfo.c; path = src/unix/getaddrinfo.c; sourceTree = ""; }; + 8572275BAD31AF313D1E9651ECC699E0 /* 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 = ""; }; + 8576198941D22B1B99E314936F2083B1 /* 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 = ""; }; + 857D08E60D8CB5BC175923097FB528C3 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/call.h; sourceTree = ""; }; + 858207A6D6CD0DC3BCDED376F758E30A /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; + 85C0000D15AC9CD6FCE9C11E722E8D00 /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_genn.c; path = src/crypto/x509v3/v3_genn.c; sourceTree = ""; }; + 85EDAE58A85DB0EE87E186CCCDF2E473 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/des/internal.h; sourceTree = ""; }; + 8601D64811212FA8C779850E369241CE /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; + 863135B62D7BEA25601D4D6919F9F414 /* 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 = ""; }; + 864B590F269205D2D79425DF9F027FEE /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; + 864F49F71A38068C775E72856B75BA11 /* FIRFacebookAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthProvider.m; sourceTree = ""; }; + 865DE1252E8E4CBEBE625C7284BCB9EF /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; + 866A4785DB4A328DDB16AF225F6BA93B /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; + 867F70F338F6C0A8C26B84BB412CCB07 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; + 86A2188D375906AE14C361A87EE5E14B /* key_field_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_in_filter.cc; path = Firestore/core/src/core/key_field_in_filter.cc; sourceTree = ""; }; + 86C812EA546B4C6707174E4706BE1103 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = src/include/openssl/blowfish.h; sourceTree = ""; }; + 86C836C903714BF4F33F102987D94133 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; + 86DB2BBCBF9518BA3AA40F08FD664980 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/support/sync_generic.h; sourceTree = ""; }; + 86DFFCCC7E7FBF799135A6010B45A3F4 /* FIRAuthNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthNotificationManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.m; sourceTree = ""; }; + 86E5CC7F641F436DB1282A0357EFA81E /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; + 86F3189D9152A240AD1258D1760ED329 /* process.c */ = {isa = PBXFileReference; includeInIndex = 1; name = process.c; path = src/unix/process.c; sourceTree = ""; }; + 871EA48AC474A65D68F7E044E9D28885 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; + 873DD2840DADB3C645196BAE6B7BE204 /* tcp_client_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_posix.cc; path = src/core/lib/iomgr/tcp_client_posix.cc; sourceTree = ""; }; + 8744DA8827C8B2359FFD2A6F8FBFA83C /* obj_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_dat.h; path = src/crypto/obj/obj_dat.h; sourceTree = ""; }; + 877965113A7A741215891D68DE9D45C4 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; + 87797C848BD4CB4D3F2998180CA0E047 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; + 8798EA403E74AA0BDE073CAEEDB17C51 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; + 879EB36DAEAD524BBDA2B9CFA6182EF4 /* FIRActionCodeSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRActionCodeSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRActionCodeSettings.h; sourceTree = ""; }; + 87A4C65A5A10C9E21C560E8B98D3943E /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; + 87C37E0F74E90802B4C198C52406E500 /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; + 87C7187EC817D520314BC079AC6E9983 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; + 87CA1AD95DCD2E545747474B90C3ADF5 /* endpoint_pair_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_event_engine.cc; path = src/core/lib/iomgr/endpoint_pair_event_engine.cc; sourceTree = ""; }; + 87CA56A9473E8927B8230993AEC4AF6A /* 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 = ""; }; + 87CF470B7FAD3566E00188390D024EEF /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; + 87F2DE9B7144CDF1B1CDD6ECCACC74A4 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = decode.c; path = third_party/upb/upb/decode.c; sourceTree = ""; }; + 880E0EDE0ED9877F26015F4036CFD906 /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; + 8818478001D272E336997914DC6C1767 /* range.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = range.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.c"; sourceTree = ""; }; + 881A5F2831C8F1406AF1DDE69874A1F6 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; + 8825F518BC3E5BD39FB1DF12108DFA76 /* getnameinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; name = getnameinfo.c; path = src/unix/getnameinfo.c; sourceTree = ""; }; + 88354CCFDB011C967418B8C61B951D83 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; + 8837D5D326B1FFADCBEA8814537B3113 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; + 884D4FE00A5B0E47964EDE7B436B1147 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/span.h; sourceTree = ""; }; + 886ADFF92E86D9070F5632C8A8E55526 /* alts_tsi_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_tsi_utils.cc; path = src/core/tsi/alts/handshaker/alts_tsi_utils.cc; sourceTree = ""; }; + 887EC70F3633A9AE3FBC6E2FB987F759 /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; + 8888187E6FFFB35BAB353167AE07E37A /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; + 8891128A7E3C0456DC9B5DB1ABA0E365 /* 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 = ""; }; + 8896A5F9E14C7E43C5FDE0EE69112D81 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; + 889C864A1F59B74D7751F3284A91E5B1 /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; + 889EEEB4EDB273694D6B2168E661BACE /* FIRAuthRPCResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCResponse.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCResponse.h; sourceTree = ""; }; + 88A2399C198EB36223D5493C17A30453 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; + 88D7E4280638B9DA6462529216378B05 /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; + 88D8E8EB449E5FF259371BE8BF84503B /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; + 88E8C9FCF0029802A9758840676839ED /* tsi_error.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tsi_error.cc; path = src/core/lib/security/transport/tsi_error.cc; sourceTree = ""; }; + 88E932C0AEC2712BCCBB855896E9EBE5 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; + 88EE707B1CB626C8421DC306A10720E1 /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; + 88FE02D7AE28CDF1F7EBE77EE8446860 /* atomic-ops.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "atomic-ops.h"; path = "src/unix/atomic-ops.h"; sourceTree = ""; }; + 890607A4A75F662848280DA4B6F2955A /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; + 89109053B63576EB455C78AC0D0D9B09 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; + 8915AEFB88DF8D74B5CB9576C55792D9 /* 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 = ""; }; + 891C39F4CA113B558FEAD086E597FF5C /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; + 89219B24124C1EA0EDCB9934EF49C6C5 /* stacktrace_powerpc-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_powerpc-inl.inc"; path = "absl/debugging/internal/stacktrace_powerpc-inl.inc"; sourceTree = ""; }; + 893589D422F08B425C13D52D6EB48D51 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ecdsa/internal.h; sourceTree = ""; }; + 89464B08F22814E62E57CBCDC768E354 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; + 897D44C94A75ADF2B2A6476EF9035A40 /* output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = output.h; path = absl/strings/internal/str_format/output.h; sourceTree = ""; }; + 89921609E3270099F8F7701E6D44469D /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; + 8993AFD5F19A499A909D9B16E6EE5E88 /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; + 89B88E808881442BC6BBD63B8F1455E8 /* cpu-arm-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-arm-linux.c"; path = "src/crypto/cpu-arm-linux.c"; sourceTree = ""; }; + 89B94BF79C69FB8EF3D74A0466812538 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; + 89C49F37F82119FF371F6F0DB8543209 /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; + 89CA23EC82E4C307789F21BC02EEE090 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; + 89DE501BE7DA71284D0BACEA81E74A72 /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; + 89FDA2BE5974964F1F0F157C66D1EB47 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/civil_time.h; sourceTree = ""; }; + 8A11C0A6FB6BA0C96EF2E6E43C3E4233 /* FIRAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuth.m; path = FirebaseAuth/Sources/Auth/FIRAuth.m; sourceTree = ""; }; + 8A13B55C4EA76634DB5FEE91AB5F30F2 /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; + 8A2076E82E1ADAD17C71E38A4783DC65 /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; + 8A3A9FCABB5C99D8EBE66BAC40F62FB4 /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; + 8A52197B134D6DE7F3370BF4FA788EF1 /* channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_filter.cc; path = src/cpp/common/channel_filter.cc; sourceTree = ""; }; + 8A541BA5FA6A3CE99602CEF52D1A94FD /* 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 = ""; }; + 8A596FAC82D96C68D759F5E9171E4C2A /* channel_args_preconditioning.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args_preconditioning.cc; path = src/core/lib/channel/channel_args_preconditioning.cc; sourceTree = ""; }; + 8A5E82C9952318E9F868D9394412CB87 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; + 8A7FCFACABBFA725B2AD9AE404DED753 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; + 8A95AC97F778874B7A50D717CECF43CE /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; + 8ABD160F1091AD7CF9EB4B9C9A3932DB /* FIRAuthSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthSettings.h; sourceTree = ""; }; + 8ABD334F67674CACA227946663851F9A /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; + 8AE7849DF1BB683FA2789BCC2EDAEC1E /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_mapper_registry.cc; path = src/core/ext/filters/client_channel/proxy_mapper_registry.cc; sourceTree = ""; }; + 8AE7A78F3992A2253E40F24B33DE9401 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; + 8AEC41339BDDE5B947D0FF0114E5EE47 /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; + 8B00CC442D6B8433B3B58953DDEC870D /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; + 8B16F267C2B92E53B3285C9C5B242577 /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; + 8B20B4103C0E5F35249B039FCC4B515F /* cordz_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_handle.h; path = absl/strings/internal/cordz_handle.h; sourceTree = ""; }; + 8B24BF66614DCB2302F24BDC56E654DC /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; + 8B307F18226C5A138D57A01E0E3BB4A1 /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; + 8B3289AC074C52822E31A367F21C9A6A /* refcount_c11.c */ = {isa = PBXFileReference; includeInIndex = 1; name = refcount_c11.c; path = src/crypto/refcount_c11.c; sourceTree = ""; }; + 8B49A37BBD02786CF3BE8529C1375A0E /* leveldb_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_index_manager.cc; path = Firestore/core/src/local/leveldb_index_manager.cc; sourceTree = ""; }; + 8B5CA7F4B83038061D4EE6BEEC960BDC /* randen_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_engine.h; path = absl/random/internal/randen_engine.h; sourceTree = ""; }; + 8B8CE964626F35AB0631199A33A0649D /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; + 8B8D1A9C48FD5C8730BE316F8D011EFC /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; + 8B90F15E60881E22092AEF3BC52CD7DE /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; + 8B95BDCC9CCD952A4A729EB3B31C701C /* slice_string_helpers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_string_helpers.cc; path = src/core/lib/slice/slice_string_helpers.cc; sourceTree = ""; }; + 8BA938DD9044A6892587AFA1F7EAF756 /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hkdf.c; path = src/crypto/hkdf/hkdf.c; sourceTree = ""; }; + 8BAB536E289DE3F300BE1B0145F3D113 /* FIRAdditionalUserInfo_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo_Internal.h; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo_Internal.h; sourceTree = ""; }; + 8BE885DE77972A097FAFAD69969415BF /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; + 8BEB4B6334A6A2FF9B3C3DF7DE1FEF65 /* deprecation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deprecation.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c"; sourceTree = ""; }; + 8BEF0F83D632BA61BC77FB1E12AAD094 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; + 8BEF85FF714DCC87054B8A44FB701E8B /* 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 = ""; }; + 8BFCE9DF2C61AD5A8FCF9025D41995C1 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; + 8C188E04DF1C2257B843979E9187DC63 /* check_gcp_environment_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_linux.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc; sourceTree = ""; }; + 8C35293BCDE88E397197E78F775756E0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/impl/codegen/slice.h; sourceTree = ""; }; + 8C38037DB6EC55DD10758FD4552A32DB /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; + 8C452A7C29524C6EA2F3E7C8BD9B440D /* memory_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_index_manager.cc; path = Firestore/core/src/local/memory_index_manager.cc; sourceTree = ""; }; + 8C5554B7F91793B6890CAA3EA32B72FA /* string_constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_constant.h; path = absl/strings/internal/string_constant.h; sourceTree = ""; }; + 8C7A7095D5CD0446D8D8A783372AD861 /* chttp2_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_server.cc; path = src/core/ext/transport/chttp2/server/chttp2_server.cc; sourceTree = ""; }; + 8C8164B1BA614D4D234CF542EDE68673 /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; + 8C85EF0D08D2FF11034DA87C23F94731 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; + 8C8A763312D617599A7A957579570C55 /* 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; }; + 8CA7A083FA276C3FC0A13B31070F3680 /* percent.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = percent.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.c"; sourceTree = ""; }; + 8CADFD2E9C9E9D0FA1119A0312A0CCF4 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; + 8CB59C5A9A17D79DBB88D695B114CA39 /* uv-common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "uv-common.h"; path = "src/uv-common.h"; sourceTree = ""; }; + 8CB5B93E9C1B162258DD762BDBC8B33F /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; + 8CB7DF5A9AD9F5005B81FA459DC5ABCA /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; + 8CB8AAFF8D14709D6DF2941E63605F4C /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* FirebaseCoreDiagnostics */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreDiagnostics; path = FirebaseCoreDiagnostics.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8CC9AD7FDB2813620522076911D06528 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; - 8CD4010AEA140A8338AF644585089540 /* 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 = ""; }; - 8CEEF3B6D7A39DD59099C171ACDF08DA /* checker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checker.h; path = absl/strings/internal/str_format/checker.h; sourceTree = ""; }; - 8D10EA9EED3A818D297A55364817B99B /* FIRVerifyPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.m; sourceTree = ""; }; - 8D24F2197A3CAB3D035C336389193070 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; - 8D472872B5C24DFD93CCA5D8229AE8EA /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; - 8D5A8BAB2E25201187BB80B51865699A /* atomic-ops.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "atomic-ops.h"; path = "src/unix/atomic-ops.h"; sourceTree = ""; }; - 8D9512FC96B3406B60B3E3B1BBF67A28 /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; - 8D9E0EE4D598A8F9EE984C18B90E9FA8 /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; - 8DA346353DD8B04B3A8A1F8B6725A0E9 /* zipf_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipf_distribution.h; path = absl/random/zipf_distribution.h; sourceTree = ""; }; - 8DA51001DB24BE687C06CD98B1E8784F /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; - 8DBB0F936EAD9C1CE62BBCE41D4C38A7 /* statusor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = absl/status/statusor.h; sourceTree = ""; }; - 8DCD2DC78A51F2AD295CDE68DE7FD054 /* 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 = ""; }; - 8DD345AC22042207A48873400E33BA5B /* 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 = ""; }; - 8DEF7F7016C87683E118732A218CE324 /* 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 = ""; }; - 8E08512D6CB73FDF31801361045DFC10 /* 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 = ""; }; - 8E0E42B27A0C562BD52063883A093B81 /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; - 8E1B174FEECD67B732F4B53E8CAC8B2E /* 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 = ""; }; - 8E276779D90404FACCC5FE5D75C05700 /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; - 8E2D3EDBEC2D4BF48FB40811BF9228C9 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; - 8E3E41FFE5E35BF2A37E4E9BEF010F8F /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 8E613F3839FCACC24554D0B02C7A7EBA /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; - 8E65C5AAB84E9D9577DCF7C80DEF1CD5 /* sdk_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sdk_server_authz_filter.h; path = src/core/lib/security/authorization/sdk_server_authz_filter.h; sourceTree = ""; }; - 8E735432382820CF72572A48951A0C40 /* GDTCOREndpoints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h; sourceTree = ""; }; - 8E84B4C0FD222118A07FFDD1F4FEDBDF /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; - 8E8CA55F955A8FE8947084FA9608D6EF /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 8EBBC3300281DF8820FFD0B2517BA714 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; - 8EC840D202BCB192C7D00EC299D38CFC /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 8EDC6706EC9766F8AB498A6387EC5B4E /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; - 8EE29E7D1062BC6577A4D494107952A2 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; - 8EF14B3D35E555BD070ABD8E3F6AC264 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 8F01A7FAC7EB6BCF690CF54EF48A7DA7 /* cert.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c"; sourceTree = ""; }; - 8F089400446FF39AEE585E9EB90DCC06 /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; - 8F0B1B0E7A1D412E162549929B57CB3A /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; - 8F0FE9CBBE3D5C6C2E72EFC98F311B32 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; - 8F1EB8B4CAEAB2701BEB14E7F75FB028 /* FIRSignUpNewUserRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.m; sourceTree = ""; }; - 8F30C48AED51F133C45EFF4BF46AFE9B /* gRPC-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-Core-prefix.pch"; sourceTree = ""; }; - 8F35B322825A95585A34A326BFDFD064 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; - 8F5D5C8068B8E1F69212579EA2A684B0 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - 8F6621CA44D8B72E9E90EEDDC58FC8C0 /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; - 8F7AB6697F012D5B4C6CAD1527648734 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; - 8F885CE4DB729CCDCBEBF5F515800D4D /* 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 = ""; }; - 8F8F19F9E1481749C185D71E041EE600 /* 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 = ""; }; - 8FA0DE379CA2CE743AD2677FB09A2FAE /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - 8FB4960543A440EF3011186E7332F7CC /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; - 8FE8C5CBF1F8AD9E6F207D320F127150 /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; - 8FE937010042E5CD11DC4C146355C53E /* 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 = ""; }; - 90015403677A1F4E07DF13546F73521F /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; - 900CD7FC507E62C267685CB5EE49AA8B /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; - 90222205E434BDAB81FCA3BEF6115232 /* rds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c"; sourceTree = ""; }; - 902C59F262D45C1D61EFC1DB32949C5B /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; - 902C79C2F988CB00311D588742020FAF /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = table/format.cc; sourceTree = ""; }; - 9034F4E1070E412BB88D4515C15ADABA /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; - 903A97B774EE927AEF7320B91CA5A2A0 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - 905A7EA781C7788A3FEA5515F64BCCD3 /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; - 906C7238D6A8B1A8D4803481347A4160 /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; - 90751A8815D0D548A9093FE5AFC0C3B1 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - 90870DE07B32AF11702B9B7186D45229 /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; - 90AB132D549C5212035D94596705C0EC /* FIRSignUpNewUserResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.h; sourceTree = ""; }; - 90BADB2D9732E8472FE44DA83861CEEE /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rls.cc; path = src/core/ext/filters/client_channel/lb_policy/rls/rls.cc; sourceTree = ""; }; - 90D58D3D2C3225AFA9FAE7A5741010DA /* 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 = ""; }; - 90DD8408E8AA3022043E97E9984359C9 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - 90EE474DB361EA6A5BC977E3C6AE8ECD /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; - 910995BA774B1A6E8989A8FAEB7D4CEB /* 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 = ""; }; - 910B9E157C56A0513EB5A2E521E2432B /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; - 911425A24CE9DB88B1F38D82CFDA9147 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; sourceTree = ""; }; - 911460E9E1D764F7B156E18A94819507 /* 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 = ""; }; - 9124B20595A514A26E0E3DA0D809FA75 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 91403BCF3BEB47BAB571115894508A85 /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_conf.c; path = src/crypto/x509v3/v3_conf.c; sourceTree = ""; }; - 915C738A6579A3F2F59625F24ED5A04E /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 9174CF0C5EF191C21D645C89DC9A15F4 /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_genn.c; path = src/crypto/x509v3/v3_genn.c; sourceTree = ""; }; - 9177571BE7454B91753C83EB97D2EE57 /* 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 = ""; }; - 91B2A42FD20545A1F0402BE218D11D34 /* resolved_address_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolved_address_internal.cc; path = src/core/lib/iomgr/event_engine/resolved_address_internal.cc; sourceTree = ""; }; - 91BB38196304FAAA1B318D6220C17D9F /* 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 = ""; }; - 91C05435E731F294186DBDF9A1C86D2B /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - 91D00B671669A00EB739F6894916C79B /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; - 91DBCA29C23EC9E70C6CF70FBF6D445F /* 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 = ""; }; + 8CCBF6D166FF1AA1F309F7F54B3A6170 /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = work_serializer.cc; path = src/core/lib/iomgr/work_serializer.cc; sourceTree = ""; }; + 8CDCF32E7E553DD01F4577832CCBA156 /* FirebaseFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestore-dummy.m"; sourceTree = ""; }; + 8CE58EA3FA074E1E9675AFB0BB79CC9E /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/internal/span.h; sourceTree = ""; }; + 8CE8F97D6ECACCB4400071230D4B898B /* memory_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_document_overlay_cache.cc; path = Firestore/core/src/local/memory_document_overlay_cache.cc; sourceTree = ""; }; + 8CF67D95B032EB40B43D6099104711A4 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; + 8D06B24F85B989D2BA004B5CDB767846 /* FIRFederatedAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFederatedAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFederatedAuthProvider.h; sourceTree = ""; }; + 8D35BEE2025ED271C0287817F421B033 /* FIREmailAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailAuthProvider.m; sourceTree = ""; }; + 8D3BB518CC632FB3081A19BEC238298B /* FIRDeleteAccountResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.m; sourceTree = ""; }; + 8D58406B63AAF6FBD7BA1E3D656A283B /* port_stdcxx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_stdcxx.h; path = port/port_stdcxx.h; sourceTree = ""; }; + 8D5EA5666B1298991B51D16361E8CBB8 /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; + 8D5F131E85E45ECA63832E0B19237D34 /* skiplist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skiplist.h; path = db/skiplist.h; sourceTree = ""; }; + 8D64C48152A6AD8DAC186AC84864C66A /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; + 8D654D74647471C76A56573D9C721FDA /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; + 8D71B53866827B85965320F23512A32B /* 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 = ""; }; + 8D754F915A54F7204B4133F864F51534 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; + 8D7B5132173B2657373F61218A221CE8 /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; + 8DADD6A71217D1C6E5BF6864A57632EE /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; + 8DAFA4B55AF0038305EBCE58F9D65C57 /* empty.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/empty.nanopb.cc; sourceTree = ""; }; + 8DD1A4CF4842DE1E3C687CFD315D0FF4 /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; + 8DD775C228B77D19382CEAD806C14BCD /* tls_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_security_connector.cc; path = src/core/lib/security/security_connector/tls/tls_security_connector.cc; sourceTree = ""; }; + 8E023981F9B188B33FE9DEEA957C6D97 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; + 8E0A7645FDF394A22A20A5E5B468EEFD /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; + 8E3A6D54396280E38747A24D22EF2926 /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = ""; }; + 8E4188992B9B4A607DF20124CF73D9D0 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 8E45FACEF041958D30FDD2368545F208 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; + 8E5FF79ECA85B7E16399D9CB96ED3D3F /* tcp_server_utils_posix_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_common.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_common.cc; sourceTree = ""; }; + 8E7A7E4A142B178700C07E6FEEABEF83 /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pcons.c; path = src/crypto/x509v3/v3_pcons.c; sourceTree = ""; }; + 8E7C5ECCDDF015341817F62C190D25C1 /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = any.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; + 8E952EF97D176F9E47990C32EA20E524 /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; + 8EAEAACF765AD1901713D2AFFAB9E2A5 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; + 8EB6251B5CB5D835A15D94801C034F4A /* empty.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.upb.c; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.c"; sourceTree = ""; }; + 8EC4B47CD00631DCC2B8CAC99816828F /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; + 8ED4E9B594F2EF1387350F8A7F070D4E /* FIRAuthDataResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h; sourceTree = ""; }; + 8EDB2624825A4D169C48AB7C9FAFE0F8 /* 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 = ""; }; + 8EE752CC152608CA9E1D014309AF7AED /* grpc_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_context.cc; path = src/core/ext/filters/census/grpc_context.cc; sourceTree = ""; }; + 8EEFF349D87D2CB09B943001635CED76 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; + 8F033835A1E7CF680CB3E11638D47E2C /* alts_grpc_record_protocol_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_grpc_record_protocol_common.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc; sourceTree = ""; }; + 8F0833A0809587A3E2BBD871FDBA7B9F /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; + 8F29064F2D6A013195064F0716BB3D89 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; + 8F4479E262F23D6CE285505052349B4A /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; + 8F6FEE6CA8EBEF7D2B808C55CDA44B7B /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; + 8F88FF690853FD7851D3E61081F57FC8 /* FIRAuthURLPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthURLPresenter.m; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.m; sourceTree = ""; }; + 8F8CFD4C0E1CAF54D4D855705DBED6F3 /* FIRFinalizeMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h; sourceTree = ""; }; + 8F9887C18FD290B3FC48ED448BB3AC8C /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; + 8F9D535350D7601F8B49AF8FCAEFD4B1 /* string_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = include/grpc/support/string_util.h; sourceTree = ""; }; + 8FA103D88C45B9E753114479F83397C5 /* abseil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.debug.xcconfig; sourceTree = ""; }; + 8FAAE619298BB3E52C17A0D7E402016A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs8/internal.h; sourceTree = ""; }; + 8FB3ECF23FD324FBE2C5036B4160DEBD /* server_config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_config_selector.cc; path = src/core/ext/filters/server_config_selector/server_config_selector.cc; sourceTree = ""; }; + 8FC28C51467CE70661D52A8F3E742373 /* jwt_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jwt_credentials.cc; path = src/core/lib/security/credentials/jwt/jwt_credentials.cc; sourceTree = ""; }; + 8FD28D8E3D0EF43B0B8025DA6BF4E5E2 /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; + 900037B35F0BDBA6BED6BA2260B42EC4 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; + 9018A4B08997B453C54AB03F0A79D725 /* quic_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quic_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c"; sourceTree = ""; }; + 9018AE5E2C963954DB8A8CAAD664FA0F /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; + 901CCC423D5A9F828B8E0F9155248B9D /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; + 903517329C6671ED88E163A4C5BF5147 /* log_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_windows.cc; path = src/core/lib/gpr/log_windows.cc; sourceTree = ""; }; + 905C34C484002FAF9696597DA4F3DA29 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; + 90A68867A23E6110499E26416486C6BE /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; + 90CA7A4D9A60AED60C2ED15B3B12CFFC /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; + 910E378A0F61EF9D7E8EE0C7336771C2 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; + 9117F129DEFA75ED8A5DC8BF41A3C486 /* 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 = ""; }; + 911A8E5B2A2F6B96CB03ED205E36B910 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; + 911D7E4F72817D38E2A8C1F6BBD4E7B4 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; + 912F7093A813CBD76A294FF378F6E19D /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; + 913BCD1982DB939F726E9611FC22FFC0 /* 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 = ""; }; + 913D768C528599FA45E6EE130726957D /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/impl/codegen/client_context.h; sourceTree = ""; }; + 91565BDC67B16DDFEB5909813337E89C /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_prn.c; path = src/crypto/x509v3/v3_prn.c; sourceTree = ""; }; + 917EB8CBA6B89769361EC6E4B2C6DCEE /* leveldb-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "leveldb-library-dummy.m"; sourceTree = ""; }; + 91859C984A1BE240D368BF6064F74BCF /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; + 918C48731EB591DA388642BA0A3980D1 /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; + 919774887117C902CEDC901D1DF25E3E /* alts_grpc_privacy_integrity_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; 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 = ""; }; + 91A86155B3BF4759FEB5E659A3825CDA /* event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_engine_factory.cc; path = src/core/lib/event_engine/event_engine_factory.cc; sourceTree = ""; }; + 91AE9EE569472E395A9D36E4ACF8A48C /* 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 = ""; }; + 91B0A0A6DECF32C0BF9DA4F223A8FD05 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; + 91BC5A400DD66545B6E9B9B32B08A7C5 /* tcp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp.c; path = src/unix/tcp.c; sourceTree = ""; }; + 91C7D882359E58D5DF66F8256D68D001 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; + 91D0CF40489E237EC6AD45A7491F4B28 /* cpu-aarch64-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-linux.c"; path = "src/crypto/cpu-aarch64-linux.c"; sourceTree = ""; }; + 91DBFE461EACD0B51D7A71147C9836E7 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 91E64A129C1D35AAD4034428FA45CD9C /* stacktrace_arm-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_arm-inl.inc"; path = "absl/debugging/internal/stacktrace_arm-inl.inc"; sourceTree = ""; }; + 91F5EEEA4A3C866E873E742878E641D4 /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; + 91FF92BDAE6FCBBE8D38CE5DDEE72E0F /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c"; sourceTree = ""; }; 92000153CD73F7FC2DBAB4AB708269F3 /* FirebaseFirestore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseFirestore; path = FirebaseFirestore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 921A45EC6E7685EE8DEF303A9074BF72 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; - 9240624901210D4C21AFB04C54534C7B /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; - 925BA70FA70A630DB8F7F22EC2019ACF /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; - 925C014D54BB986A19735A906FE4E969 /* 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 = ""; }; - 926328329625E95604DF09C0249E122B /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.c"; sourceTree = ""; }; - 9278345F85F2E616B43C10F4D8D79E22 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; - 92A1549ADA2260C3ECC7D1153E1892B0 /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy_registry.cc; path = src/core/ext/filters/client_channel/lb_policy_registry.cc; sourceTree = ""; }; - 92AF8E96F7C3EB355BAE1B4CC4875012 /* string_constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_constant.h; path = absl/strings/internal/string_constant.h; sourceTree = ""; }; - 92CF45BA77F86CCD6819B0D98F0C0BAD /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/impl/codegen/method_handler.h; sourceTree = ""; }; - 930637C627FE0278A59ED9A4B6804A00 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - 930BD135D5F2536283B699A4A89B3642 /* 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 = ""; }; - 9310962558BBBD83898390BF377C5EA9 /* FIRSecureTokenService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenService.h; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.h; sourceTree = ""; }; - 93236C3E3F4C8B59F9D23B90083E88ED /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/des/internal.h; sourceTree = ""; }; - 932C4CE365D2907D95A111EA2F0CB107 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; - 93340BEC2EE5028AE4D77EB7A5353190 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 9343A462382C988ACE502EDBDEF7BD01 /* thread_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_manager.h; path = src/cpp/thread_manager/thread_manager.h; sourceTree = ""; }; - 93552E3D46EBC5AC5E6FD12E94BAF86A /* 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 = ""; }; - 9360FB5B4510F108C95F0124171BCADF /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; - 936BA4CAF22250B9C86D349C8466FBF3 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = absl/container/internal/common.h; sourceTree = ""; }; - 937A60F9F763A70371066B2C21760323 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - 939004C04998985A7719C668EEBF007A /* trust_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trust_token.h; path = src/include/openssl/trust_token.h; sourceTree = ""; }; - 93916BDF32BE21A9CED7B77D6DFB980B /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; - 93930114593B758A0E571CBA2FC5D445 /* 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 = ""; }; - 93AABB1283FC0BF0C130CAAED5CA2E00 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 93B49580A9E0B5869DBBD970105CF082 /* 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 = ""; }; - 93B52EFCB10325914C42FD4CE7C2EEB6 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - 93BBC3402C79F0310D07B56F0E79E803 /* 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 = ""; }; - 93CAE6005958CC133C4263A5AA707DAF /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; - 93D3CA6CD5CD08D0835E1A62BA8E4A01 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - 93E48864D26805719298E22359DEEE0A /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = third_party/re2/util/mutex.h; sourceTree = ""; }; - 93E51131E89E282662C4268F2360825A /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; - 93F3D52C2DF0FC57942B889E9D3CD7C9 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; - 9400B2FE3A8884771EA2BAF46AFB2B41 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/dsa/internal.h; sourceTree = ""; }; - 9403116104444C696EE6FB86563BFE32 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; - 941DA661277F79EA7FD300E4F9DB6ACE /* 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 = ""; }; - 9455CE2666E6C815644C967E7B1DCEBF /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; - 9467481F7E2603037ADC577E208A3BC7 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ring_hash.cc; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc; sourceTree = ""; }; - 946AA4CDEA08864E41DBA020331B8FB3 /* histogram.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram.h; path = util/histogram.h; sourceTree = ""; }; - 946ECDA26094B9C25497FB8DC4AD10ED /* security.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.c"; sourceTree = ""; }; - 948215A8233C514A246E79A56982434C /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 948646B1AFF25DA5C7BE174D5E915130 /* 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 = ""; }; - 94924A2F675D4906C7761445B7B8CF7D /* FIRMultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactor.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactor.m; sourceTree = ""; }; - 94C5F1C21EE4F9D8ABD9A08D695571AB /* GDTCORFlatFileStorage+Promises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORFlatFileStorage+Promises.h"; path = "GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h"; sourceTree = ""; }; - 94C69508ED2E514CC2067BCD234BD4AA /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table.cc; path = table/table.cc; sourceTree = ""; }; - 94D67BDCE3A36359AC4F1B678B390EC8 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/asn1/internal.h; sourceTree = ""; }; - 950D283A1E1DB9EEEBEF9281504677CB /* 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 = ""; }; - 9529D7F9B12E9292160BCBEDCDEC6DFF /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; - 953581EFDC6C8F5FF62438557AF04192 /* 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 = ""; }; - 953A8091CE0C592123D1B5B837034795 /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; - 9554181735D19BFA24015081EDB0CE4D /* cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cache.h; path = include/leveldb/cache.h; sourceTree = ""; }; - 9560E302186CDFDDE1DB54E444160ED3 /* 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 = ""; }; - 9574B180021F11527759A92483EEEAF7 /* hrss.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hrss.h; path = src/include/openssl/hrss.h; sourceTree = ""; }; - 95823E1ED04B0D9FE33CECFFD1DCDA55 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/support/status.h; sourceTree = ""; }; - 9588A547B728A1D2939D655BAD7F0544 /* string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c"; sourceTree = ""; }; - 958D65B217E5EC5E56405E2A89A567E0 /* grpc_service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c"; sourceTree = ""; }; - 9592C8F1871303A56760B4709A60B134 /* basic_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = basic_timers.cc; path = src/core/lib/profiling/basic_timers.cc; sourceTree = ""; }; - 95A754F02FF7A7672AC0B2EB718D939A /* 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 = ""; }; - 95BE7705F6D2E744FF8423ACFF85F920 /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; - 95C9C6D9EBF5A41B773C37EC958353DC /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - 95D6D17DF99D5EE2E2A39F06166EE31F /* cordz_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_handle.h; path = absl/strings/internal/cordz_handle.h; sourceTree = ""; }; - 95D8B10D97F05A7835C085B0EF2B03B3 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; - 95E810A34AFED77E56C2233E4B2FDDFE /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - 96015440687E795360D3B0316D01F281 /* 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 = ""; }; - 9603979BD46FE61BDE7CEB10C6AD4DCE /* uv-common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "uv-common.h"; path = "src/uv-common.h"; sourceTree = ""; }; - 9616CD6E320D3063B973DFE071020991 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; - 965F7CB033AB2E3BADDF45577EE78429 /* ec_key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec_key.h; path = src/include/openssl/ec_key.h; sourceTree = ""; }; - 966B5FA65A5FAA0851CBDF158F75DD1F /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; - 966E52D69FD3F5346CCCCA92BF9380C3 /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; - 96723ED02F57A6A85C05000131EB5BBC /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 968DE242C1A9C9C4A61776D3BFE06487 /* generic_stub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generic_stub.h; path = include/grpcpp/generic/generic_stub.h; sourceTree = ""; }; - 968FF90945CF7D58958F29673235DBEB /* 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 = ""; }; - 9694BCD69FE6E3355E49867C94915517 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; - 96B990F482D91B469D396DBF9C358702 /* FIRMultiFactorSession+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorSession+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"; sourceTree = ""; }; - 96C66E47752B8C1238D754CF11A9F93B /* range.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.c"; sourceTree = ""; }; - 96DE2286415A052344C0F6506BB6EC17 /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = absl/strings/internal/utf8.h; sourceTree = ""; }; - 96EE001538F3FBB6B876119092EF95CC /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; - 96F270D4CF013B47C1BF78D821D60FA1 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 97224898A8E89C03905068F65693EE03 /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; - 972561565E92A4BA5A5C6C1509292AD7 /* 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 = ""; }; - 9725AAB7A869B143B3B6D3B3FECD790C /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; - 9764EE514981202FA1A4B0A4D1D7C3F3 /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; - 976C5F9FD1C0DE156064DEEE69394B2B /* 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 = ""; }; - 97A2526456E50D10C83586F355E84D0D /* resolve_address_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_custom.cc; path = src/core/lib/iomgr/resolve_address_custom.cc; sourceTree = ""; }; - 97DA45B8BA1834AD8D49573C31C09F6F /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; - 97DE13C4E349D8FB18F0F3CB3193965C /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 97E8C20555D426115DE04AB28B27D69D /* 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 = ""; }; - 9821E5906EADA510A7B428FF76438DC8 /* event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_engine_factory.cc; path = src/core/lib/event_engine/event_engine_factory.cc; sourceTree = ""; }; - 98234679E486BCE9D8751FD1C81A41F9 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/internal/hash.h; sourceTree = ""; }; - 98341E91CA9FA8B8C50C0EA6B878F943 /* 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 = ""; }; - 9835A1F845D7E36E879422D7FAA7CCC3 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; - 98442E5BC3671841C2AB4BA613701840 /* 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 = ""; }; - 9844C2549A22396640A5E55202C218E4 /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; - 986D98538B575CF72D63387538891DBB /* wrappers.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upb.c; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.c"; sourceTree = ""; }; - 98971124D8175C09D02E5D0DC663FDAC /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; - 9897228EF3C68866C58B48DDA6C763E8 /* discrete_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discrete_distribution.h; path = absl/random/discrete_distribution.h; sourceTree = ""; }; - 98A39C6B3C8330782B999C80DFA9DF9B /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; - 98A4B3AEBC039061423903FF3DF79250 /* strutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strutil.h; path = third_party/re2/util/strutil.h; sourceTree = ""; }; - 98B0008F4793AB277EB46B1A6D539153 /* memory_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_request.h; path = include/grpc/event_engine/memory_request.h; sourceTree = ""; }; - 98C9ED461B398EC3B0DC4D473566E8B1 /* 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 = ""; }; - 98D605D86226A52F8A71732FAF42DEF3 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = src/include/openssl/span.h; sourceTree = ""; }; - 98E19F5DDBD7553791BE7FBB55EAAF19 /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; - 98FA2A9E36953720EF63E0E6C7674964 /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; - 98FB3485C23B4EFE99112C39254C58CD /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; - 990EAF86A1B5E6B39C833E81ED66F645 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; - 99196ECA0D094F3B960C9D145B4A096F /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = src/include/openssl/e_os2.h; sourceTree = ""; }; - 991A355D55796AB7BB69E454A4B6E48F /* 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 = ""; }; - 9935419A6C0E6B1EAD44499AB3D4984C /* two_level_iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = two_level_iterator.h; path = table/two_level_iterator.h; sourceTree = ""; }; - 993D19EAC26F3C8A5D486CBD92C5192D /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; - 99529AFB53A046FB2DB3E3A5967BA79F /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; - 996E652CEC50B42968C0FF94701A3804 /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; - 9972D2B84D50B5AC97D2A5CDB225F53A /* bootstrap.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upb.c; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c"; sourceTree = ""; }; - 9982753F35141DA7C6C7223EC7AB08BE /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 998690A270B8FE55E3EC79A3B9FF8641 /* 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 = ""; }; - 9988F94F0496F3AD8CB87A58EF807E8D /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_plugin.cc; path = src/core/ext/filters/client_channel/client_channel_plugin.cc; sourceTree = ""; }; - 99990B79859B750223B653E08EBEB3F7 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; - 999BC742BE34501113ADB53F17174735 /* dns_resolver_selection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_selection.cc; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc; sourceTree = ""; }; - 99A86B621B15BFF8685D7AB3AB6F541D /* api_listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c"; sourceTree = ""; }; - 99A9C05F900A594BDEBF20B2BBDF9D97 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - 99C2E67575ACD53548D30A6942AFEF42 /* percent.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.c"; sourceTree = ""; }; - 99CA1A6009A9DCE15FA186C735E652D9 /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; - 99CF5F7C50B01AB89627F004A27781C7 /* 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 = ""; }; - 99D0D3AAB534D43C7EEB45DBD581E44C /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; - 99D793024EDD5BB6A78FF667AB3516AC /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; - 99E29A909A749D0B0FD23F47A8748436 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; - 99E69B26388C023E3672467A76CCED67 /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; - 99EBB25D785FCBCCE4D4D9F97E432A25 /* FIRMultiFactorResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorResolver.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorResolver.h; sourceTree = ""; }; - 9A048F6F5A158C9E6ABC79AE89F2232E /* core_codegen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen.h; path = include/grpcpp/impl/codegen/core_codegen.h; sourceTree = ""; }; - 9A1360F8E69155D476DD612468023F94 /* fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fuchsia.c; path = src/crypto/rand_extra/fuchsia.c; sourceTree = ""; }; - 9A1AC7F30C8EB64FE27E72D5AE4658AF /* NSData+FIRBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+FIRBase64.h"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.h"; sourceTree = ""; }; - 9A32E86A187F522D01C7A8D7BC727210 /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; - 9A3A1282A2E933B905C7D1C5054F0D08 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = src/include/openssl/ec.h; sourceTree = ""; }; - 9A42DA666AADED2E2544A554A7B7AFEB /* cord_rep_ring_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring_reader.h; path = absl/strings/internal/cord_rep_ring_reader.h; sourceTree = ""; }; - 9A5993E01767ACEE9738FF31F4AA2AA1 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; - 9A745238172ED92D4CEFF0C0CF78092B /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; - 9A77FF1E67E9A96C8E729CB4935B56F1 /* cpu-intel.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-intel.c"; path = "src/crypto/cpu-intel.c"; sourceTree = ""; }; - 9A7A7D37537D94D33A37B443D4732AA9 /* 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 = ""; }; - 9A7A8C4E3175798BFBEAE05928BF686E /* 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 = ""; }; - 9A7F3BB78291C139F060A61186E21170 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; - 9A8902AAE8256B1B28A69B8B8D0C6518 /* chacha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = src/include/openssl/chacha.h; sourceTree = ""; }; - 9A9B338A2651664FA7B64850744F91A5 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - 9A9E2991785F4124A0E3EDBC1221B5AD /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/unix/thread.c; sourceTree = ""; }; - 9A9FC5BC956B95C077D810572ADB1096 /* sync_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_windows.cc; path = src/core/lib/gpr/sync_windows.cc; sourceTree = ""; }; - 9AD14038C725088873BF6D46BB06583F /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; - 9AD19B658F379932BE01372F570E5D64 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - 9ADD56DECB0C96FC080968073B241E02 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 9AE172C90D185A9FBDBAAF64606089AA /* 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 = ""; }; - 9AF1C503AD3D4A904AA918CF09D40A9F /* cpu_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_linux.cc; path = src/core/lib/gpr/cpu_linux.cc; sourceTree = ""; }; - 9B3704F22BF62630024FD265BDE8BC9F /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h; sourceTree = ""; }; - 9B3B5492C6BD9C894299ED99B20A54CA /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; - 9B5477454A0680070AB8EBB2B5792118 /* FIRGameCenterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthProvider.m; sourceTree = ""; }; - 9B5663C982E680F48717C1421DE15D6F /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 9B756D9A2C31F832C76F825485E51440 /* 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 = ""; }; - 9BACB101171EAACC85C241DDC813ED9F /* gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-C++-Info.plist"; sourceTree = ""; }; - 9BBADFFFFD158986AED8859EA96B6EE3 /* 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 = ""; }; - 9BCBE3146C591FB9B610D094A393F919 /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; - 9BCFD6C0C19E74A5FAEB69E748A33728 /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; - 9BD5515A5433C313CEFF12AC90FD080A /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; - 9BDA870F6A997E924EC4374F49264977 /* invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = invoke.h; path = absl/base/internal/invoke.h; sourceTree = ""; }; - 9BEEEEDD134FD7A4B7EE339EB8085D4A /* 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 = ""; }; - 9C14CE566BD41CAD85EEE1A4C32A4739 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_posix.cc; path = src/core/lib/gpr/env_posix.cc; sourceTree = ""; }; - 9C18F8BAB40B71BCFA65A6DB85571109 /* FIRGoogleAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthProvider.m; sourceTree = ""; }; - 9C33E4BF618DE2E532A00F94FFE3E2D1 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; - 9C4568144909C2F6D106A7ACD175791C /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; - 9C4869AB3A39CC22A47E4160BAC0CB15 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - 9C4BE9962FEB74EDF589C4ADB20AA4BB /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy.cc; path = src/core/ext/filters/client_channel/lb_policy.cc; sourceTree = ""; }; - 9C513110E8BA5300C81D117B6D72BCB0 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; - 9C56A8DE9CC940E70F89D1C12AD373D0 /* abseil-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-umbrella.h"; sourceTree = ""; }; + 92029B7531460F52BDE424BC0BFBC63F /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; + 92231E0D2DF3032400268E65AE5CA8F1 /* encrypted_client_hello.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = encrypted_client_hello.cc; path = src/ssl/encrypted_client_hello.cc; sourceTree = ""; }; + 92326C60643CC8CB6057D8DDF4984D70 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; + 923414142451CBCB51D40B20CE4B7E21 /* versioning.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.c"; sourceTree = ""; }; + 92387A676D8ED841D760841B167C8E06 /* 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 = ""; }; + 9238BB64F3F699BF552FD098727548E6 /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; + 9248441D9003531B1ECF2AF753EB95CD /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; + 9248CDF2578447F13C1741E19DB1F6B1 /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; + 925CA7E7FDBE6EE2291E759446E66FF3 /* ssl_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_utils.cc; path = src/core/lib/security/security_connector/ssl_utils.cc; sourceTree = ""; }; + 9266FC025E8F264D30AB21F0E42AE989 /* aws_request_signer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aws_request_signer.cc; path = src/core/lib/security/credentials/external/aws_request_signer.cc; sourceTree = ""; }; + 926A512B945681BC9FF1DA81E2B5F32D /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; + 927BF294F8E5EACA32AFE5701E85BDC5 /* time_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_posix.cc; path = src/core/lib/gpr/time_posix.cc; sourceTree = ""; }; + 929150B4045F2DCB2B08088C1E8FEC90 /* 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 = ""; }; + 92A0DF81163B68AF90E9698F1727C440 /* FIRTransactionOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRTransactionOptions.mm; path = Firestore/Source/API/FIRTransactionOptions.mm; sourceTree = ""; }; + 92B62D4F1182787DF22DB8C2713683F7 /* distributions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distributions.h; path = absl/random/distributions.h; sourceTree = ""; }; + 92BB54664A47BB755B95ED0EF337E66D /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; + 92C8590F86762CED5B8F806111C082D2 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/ssl/internal.h; sourceTree = ""; }; + 92DFA4416E263E772F71F89F9BCC8143 /* 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 = ""; }; + 92F2CA13558E54BBD40C2842251CD001 /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; + 92F40A5EEE2A6869D33B196F4F843630 /* 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 = ""; }; + 931431E6DF51F21A745BDDF263049BE4 /* bad_variant_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_variant_access.cc; path = absl/types/bad_variant_access.cc; sourceTree = ""; }; + 932159A5B60C35572F4F285173CD8BCE /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; + 932206B537FFE7D3EE341EE861C3191D /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; + 9323ABB89CB8331D8EA0E30B772E7EBB /* 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 = ""; }; + 932D34888131B3A6D230A3B5967F2788 /* FIRMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorAssertion.h; sourceTree = ""; }; + 933530FA9348CAEF73564D0671656304 /* tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tree.h; path = include/uv/tree.h; sourceTree = ""; }; + 933F733BC59FD4CFF9E425C8596CBFF2 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; + 934319B123D066178A68B166635E1F2C /* FIRVerifyPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.h; sourceTree = ""; }; + 9348ABAFD3447D445B4FF87D9287A5BF /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; + 9352576ED027EE3B325D33C6A5865AF4 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; + 935D49CCDA0FF5CBAD50A7A756FE5B4D /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 936F0354279ABE5D67102F1A05A99A48 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; + 9392D1B69EDA15DCF84E39203D3E8A67 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; + 939CCCA1C2D40D64D237663D83FAD147 /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; + 93A189D82FC573270C4A6BDB40765BAC /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; + 93A6C8AA95D15B12577C8E9C6458EF19 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = util/hash.h; sourceTree = ""; }; + 93A7B8B6DBAE0538F17EB2DAB7E5DFED /* FIRAuthUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthUserDefaults.m; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.m; sourceTree = ""; }; + 93AD197C74B4BE8D8CF97AF3ED68D0DF /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = absl/synchronization/notification.h; sourceTree = ""; }; + 93C09273543042C1B7ED9B8A0F876EED /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; + 93C21671B040C5E0E61F6549AC5C4962 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; + 93DE09F6B0938B9A4CF750933C71615C /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; + 93F59121210F83ED6A4B3FC2CA90C6CD /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; + 93FD45C0379AB56C320890B481E0F25B /* 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 = ""; }; + 9429CB158195A0C2B2919781D29B9C33 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; + 9429CB622DF6DC1E05E32040C38BC7C0 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/impl/codegen/server_callback.h; sourceTree = ""; }; + 942E8E3C0283C3BD288698D96178731A /* 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 = ""; }; + 9445FBC4986C3462CE06523F7D0E3449 /* mpmcqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mpmcqueue.cc; path = src/core/lib/iomgr/executor/mpmcqueue.cc; sourceTree = ""; }; + 944859D49FF85ADB6CD028421F09B1C0 /* 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 = ""; }; + 9460C8034F3846AE3B96C4AE7CA45AA2 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; + 94724F5543CAF24499BC23259116E966 /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; + 948040A0D6D6F64CEA32D4F6F01D13F3 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; + 94B6915237B37F77FF5A15BB8AA8E474 /* 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 = ""; }; + 94BC6A18087B326095A636959A53FB53 /* 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 = ""; }; + 94E5CAC4D604516BA11CC16B193F8C17 /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; + 94ECA8F9F303CB43D3D094FE0D4176DC /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + 94F91E13FEC3C0614FDA44D6EAA6DD5A /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/impl/codegen/sync_posix.h; sourceTree = ""; }; + 950288086A35B2B8CC5898D866AD3DE2 /* CLTypingLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLTypingLabel.release.xcconfig; sourceTree = ""; }; + 9507861C2A1FE93F3DAAE3C299CA5B7A /* log_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_format.h; path = db/log_format.h; sourceTree = ""; }; + 950F03FF3AED9D20A9F94169461D9BBB /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; + 95217393FE89317F66049807680095B3 /* timer_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_custom.cc; path = src/core/lib/iomgr/timer_custom.cc; sourceTree = ""; }; + 9522B42463AE4917E0BA399D3106B1E6 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = table/format.h; sourceTree = ""; }; + 952596A0AEB8945984149E20ECB38C30 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; + 953FEF398311C9BE9A0D296346A778F2 /* 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 = ""; }; + 954069AEDAAC546361B3E50D08241B11 /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; + 9549DFFDF5DA5BC98DD3AA35F8DF9D55 /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; + 95566BA50F3E79FF09D2C3A4F9176BF7 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_filter.cc; path = src/core/ext/filters/client_channel/retry_filter.cc; sourceTree = ""; }; + 955869E9911576E0FF221E5A4E819851 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; + 956373624CB7EC74163278548B259D11 /* 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 = ""; }; + 956618836FBA7615F7472E1EF33C0E20 /* health_check.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c"; sourceTree = ""; }; + 956AACB7C5BDC297F5C379DB0198F13C /* macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = macros.h; path = absl/base/macros.h; sourceTree = ""; }; + 956B466714344BB700AEBA587FE54639 /* resource_quota_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_quota_cc.cc; path = src/cpp/common/resource_quota_cc.cc; sourceTree = ""; }; + 956B95854D679C341FABE2A6D285D2AA /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/hrss/internal.h; sourceTree = ""; }; + 9571256BA6CB453BCBF4F3EF8C5EEFFA /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; + 958E8351578505527FCB759A7C765334 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; + 959F0A7992D04F656F1D1378D9381315 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; + 95B6155C8F43581C2B166B5A018EA040 /* GTMSessionFetcher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GTMSessionFetcher.modulemap; sourceTree = ""; }; + 95BA6B7DDAB6CAB918C7B0AE9D612724 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; + 95BCDE09AEDF13E2D462E8CB0E87A3C5 /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; + 95BF937D26B63B99A2470A313D9EC50C /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = Firestore/Source/Public/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; + 95C3E984D5E3464821AA3048360218E0 /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; + 95C818AE4B75DFF34F617F351F42C276 /* hashtablez_sampler_force_weak_definition.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hashtablez_sampler_force_weak_definition.cc; path = absl/container/internal/hashtablez_sampler_force_weak_definition.cc; sourceTree = ""; }; + 95D159FEE6E54FDC41C697A2E6435B30 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 95D8117E65C593C0C7B1713D58654AFE /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; + 95D94DC5EB10EB24B17D5E1B44ABA40B /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; + 95DA10CFEB7AA7AB83F0799C26B76326 /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; + 95DB763AB8CA32A1BDDB274EEFC9520D /* frame_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_settings.cc; path = src/core/ext/transport/chttp2/transport/frame_settings.cc; sourceTree = ""; }; + 95E32BCCC5363DFC9FCFDF8FE5FAD5CB /* bin_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bin_encoder.cc; path = src/core/ext/transport/chttp2/transport/bin_encoder.cc; sourceTree = ""; }; + 95EE03B9EAEA1048290C96FB15080D74 /* FIRGameCenterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.m; sourceTree = ""; }; + 95F89D07F00D4FFA02D4F7896869A9B4 /* CLTypingLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLTypingLabel-prefix.pch"; sourceTree = ""; }; + 9607F8706F16146FDE7800CF12964BF3 /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backup_poller.cc; path = src/core/ext/filters/client_channel/backup_poller.cc; sourceTree = ""; }; + 96084192572C6759B72A559F4362F303 /* gRPC-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-Core.modulemap"; sourceTree = ""; }; + 9617ECBEA3D046DEA2E92E7C19AA772A /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; + 9619DE816C44176FC6421B31D867A284 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; + 961DCD1F25FFEB7072C6B1AF80D9729D /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; + 96219B6BEEC3D463EE9351DEA9E91C3D /* gRPC-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-Core-Info.plist"; sourceTree = ""; }; + 963CA9F4C6207DEE906E81C2264A6399 /* arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arm_arch.h; path = src/include/openssl/arm_arch.h; sourceTree = ""; }; + 96400A779A1FA998E3130C99F0E430FC /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; + 96572DFF9523581D6A99FBAC33B61583 /* FIRSendVerificationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.m; sourceTree = ""; }; + 9661672C0188C0FA91EBE4F7D17DF119 /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/codegen/intercepted_channel.h; sourceTree = ""; }; + 96737F25BB5020712C4548B46FF44F27 /* srds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = srds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c"; sourceTree = ""; }; + 9678763CE5D372B4DEC3C74681688B8C /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c"; sourceTree = ""; }; + 96C1A5857F3C39E3EF99DC10BB09FFEC /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; + 96C81F829B25916B65028F29DBAA2B0B /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; + 96D5D6A6297D6FF5ED2B967F1AF0D3BA /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digestsign.c; path = src/crypto/evp/digestsign.c; sourceTree = ""; }; + 96E668612E5C599B08A495CD157D36BC /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; + 96EA1014529F136E06820A11DF557C0F /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; + 96FAC6858622270B2F1AAF166048DF64 /* FIRSecureTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.m; sourceTree = ""; }; + 9715E2498C15B989B352212950CDC1F4 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = absl/synchronization/mutex.h; sourceTree = ""; }; + 97193282CC0A0BB73562FD56E5794447 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; + 971E8D8964B43658FA29AA67920C9F22 /* endpoint_pair_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_posix.cc; path = src/core/lib/iomgr/endpoint_pair_posix.cc; sourceTree = ""; }; + 972ADBCE9AC8D64B492448AF497AE8B4 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; + 973371F8B812DE7DFB532BAFE9E57F07 /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; + 97347F8569ED71CE39BEE9D484175D6B /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; + 97351319126C6E12F0989A29CE01309F /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; + 974C2A361B6997A048B4B4A506ED0F69 /* p_ed25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ed25519_asn1.c; path = src/crypto/evp/p_ed25519_asn1.c; sourceTree = ""; }; + 975E6E47D4F8767E70752D51FA985F46 /* gRPC-C++-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-prefix.pch"; sourceTree = ""; }; + 976000458B3BFFD96274AE754CD628D2 /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; + 9786932E81B631C1491BAE8DD40D67F1 /* 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 = ""; }; + 9788943FC7DB8E2ADB55B65E8F8E0BDD /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; + 97D88932032CFC23313016734D72F048 /* a_utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_utf8.c; path = src/crypto/asn1/a_utf8.c; sourceTree = ""; }; + 97DD17FA98885FEAB42F23FD4C634423 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; + 97ED18C78A80B95465644D5DE6CB03BF /* 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 = ""; }; + 98036C7758723472C438D6C9CE903790 /* cord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord.h; path = absl/strings/cord.h; sourceTree = ""; }; + 9803CEE8999CBD865FCB76D78D4B0343 /* FIREmailPasswordAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailPasswordAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.h; sourceTree = ""; }; + 984785F87CE833DC837D41FED974BC16 /* 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 = ""; }; + 9847F3EC76AF4E22C980390DCCF12AED /* explain.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = explain.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.c"; sourceTree = ""; }; + 985E21E84662452DCB94526D7FB112AC /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = third_party/re2/util/util.h; sourceTree = ""; }; + 9880324B4514D1A6A702BA66BECEC1DD /* alts_shared_resource.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_shared_resource.cc; path = src/core/tsi/alts/handshaker/alts_shared_resource.cc; sourceTree = ""; }; + 98CD9EB80BC3DB00131781570B3BC68B /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; + 98D9E719BDAD0DECE222BCEF1C0DCC6F /* resource.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.nanopb.cc; path = Firestore/Protos/nanopb/google/api/resource.nanopb.cc; sourceTree = ""; }; + 98E9EBEE6E9751792167D11CB8B834C1 /* container_memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container_memory.h; path = absl/container/internal/container_memory.h; sourceTree = ""; }; + 990BD39D3B1915F7706BAEC88238201D /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; + 99209FFCA2CC3411FBC2243B07127272 /* 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 = ""; }; + 99256C9BCED0E545B8EBDC0E27613323 /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; + 995E7BF357E15220AE93194C1C3E2AB3 /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; + 996C87E6EF0570E37CAF8955C0145D42 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; + 9979BB597EE6C4B79BAC85F623FAF21F /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; + 99851E4FC2E7B128BC221CC56D4E9D02 /* GDTCOREventDropReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDropReason.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCOREventDropReason.h; sourceTree = ""; }; + 99934B9738535BE85AF35DD96796E611 /* FIREmailLinkSignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.m; sourceTree = ""; }; + 999C652C58E56484E3E1F5702832271D /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; + 99B246E5A78C7EE25817BB807F5C0857 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.c"; sourceTree = ""; }; + 99C85F10F106457000C59C374018AA1E /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; + 99CF319969081F2A5C1B0E8831D1650B /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; + 99CF657E87CF22DD81D33BC5A6FB9577 /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; + 99D73E0918E534395896982111030230 /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; + 99E5B9384D55FA6A2BD92539EB67666E /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.cc; path = src/core/lib/iomgr/event_engine/resolver.cc; sourceTree = ""; }; + 99E93A68160D429C48D952AEDB6D5474 /* FIRSetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.h; sourceTree = ""; }; + 9A0D99BAF98C0BEBBC672D91723DD3BC /* memtable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memtable.h; path = db/memtable.h; sourceTree = ""; }; + 9A13F1052724D9B19DA8CC947F8433C2 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; + 9A21638A705836FB8D1DE9E7E5807C15 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; + 9A31B32D40BAB1FE1F132EB85134B31C /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = src/include/openssl/asn1.h; sourceTree = ""; }; + 9A51DE2FA7B6C73B8FF536301C2F9B34 /* FIRGetOOBConfirmationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.m; sourceTree = ""; }; + 9A8C6C2BDD094FD039F5730EFDE8C3C5 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; + 9A905AB9657C6C7863C017C3344DD351 /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; + 9AA1171AF0C7005C48921FCFA1BFD99A /* cpu-aarch64-win.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-win.c"; path = "src/crypto/cpu-aarch64-win.c"; sourceTree = ""; }; + 9AB804895B5DF75977FAA6CA854BB594 /* 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 = ""; }; + 9ABBA9A7BDAB499082DA134EDE79CCA6 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; + 9ABDBBFA7111C3AA50A9BCF22642C98A /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/support/server_interceptor.h; sourceTree = ""; }; + 9AC366CF27ADEC900D1116A2BC1475D2 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = include/leveldb/env.h; sourceTree = ""; }; + 9AD1F57949459C695AF66472407A73EC /* CLTypingLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLTypingLabel.debug.xcconfig; sourceTree = ""; }; + 9AD56F360B8048474973F95E6595E647 /* 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 = ""; }; + 9AD9A275EF9AA19DBEEABB64AA72D2F1 /* time_zone_libc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_libc.cc; path = absl/time/internal/cctz/src/time_zone_libc.cc; sourceTree = ""; }; + 9AE8E76EE562C2855DB0BCEE275822FE /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; + 9AF29D9D90837C068695EEC13D6D749F /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; + 9AFD1BA961BCB07D0872C543E6F2D8E3 /* 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 = ""; }; + 9B01216C72F505959175819985653E8E /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; + 9B219835816FFC270FBFCE7193EFB76F /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rls.cc; path = src/core/ext/filters/client_channel/lb_policy/rls/rls.cc; sourceTree = ""; }; + 9B3F0B4A00FB713051A73CC8ADEC325B /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 9B54F5F3C5BA438C2813337CB6085409 /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; + 9B56100E024F41DA6EDA583EEFEEDE52 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/impl/codegen/time.h; sourceTree = ""; }; + 9B6E8D89B905945F0E30D280DF92A845 /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; + 9B70A676789C4036F45575C5400D5CAB /* 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 = ""; }; + 9B8162CCB2B857FDAE262DD5D1BB4E70 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; + 9B99BBA2743E8D6DA8761F2E03886760 /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; + 9BA87148D17BC321FAF29EE1B004D62B /* substitution_format_string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = substitution_format_string.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c"; sourceTree = ""; }; + 9BAE9EA1DFEFA8BD7E90C8BC952D77B2 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; + 9BC200AA7AEEB2C4D0CDAAEB3E00FD92 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; + 9BC50F9EEF9CC809F40CFD35B6D24D45 /* csds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = csds.upb.c; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c"; sourceTree = ""; }; + 9BE629906350B1134E3C1F6681F78F4B /* filtered_re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filtered_re2.h; path = third_party/re2/re2/filtered_re2.h; sourceTree = ""; }; + 9BF455F08AF66120D29FE0C8763906E8 /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; + 9C2D50CB54DD9E731EE5BFB3DE731AD8 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; + 9C416ACD31BDE9B0B51D1E74D7D296E2 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; + 9C52D546207DF656FE73935D4F93614D /* hashtablez_sampler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtablez_sampler.h; path = absl/container/internal/hashtablez_sampler.h; sourceTree = ""; }; + 9C5FB6FFB7FF6BDDE102E2FFBFFBCF9E /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; + 9C71A9C432159D417D4D56459A5FC6B5 /* FIRIdentityToolkitRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRIdentityToolkitRequest.m; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.m; sourceTree = ""; }; + 9C7366ED0E8F6BC89A59225C4DCD483B /* cord_rep_btree_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree_reader.cc; path = absl/strings/internal/cord_rep_btree_reader.cc; 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; }; - 9C813F8A997726E718F1618490583249 /* 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 = ""; }; - 9C88097B53DBFC74DE522D3A6631CAED /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; - 9C9DF06BCF4E83237FE65A93FB3B4884 /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; - 9CB347B060AEE9899E9C7B094FEA5BCD /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 9CE64C918297E52F0F66F10B8F140BF5 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - 9CE9EF99063E82F0C81A8357E0AF4DEC /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_resolver.cc; path = src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; - 9CF6338EB9CC49F5A00F849713258C5E /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/service_type.h; sourceTree = ""; }; - 9D1E1F5BD74F47BC088CF0EE7695EF0A /* FIROAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential.m; sourceTree = ""; }; - 9D35367D95FD068DB4B92945AF8370E1 /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; - 9D365C16CAA0B8C6282A3774A4E36C38 /* 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 = ""; }; - 9D56EE2C10C9213AD3996334DF7ED268 /* FIRSignUpNewUserRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.h; sourceTree = ""; }; - 9D5E89E17E28F4CA4D712B3BE50E63D5 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - 9D65CAD60522E81DABD5E36486DBCDCC /* 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 = ""; }; - 9D8CE1456274AE8409FB524F00E978C0 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = include/uv/threadpool.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; }; - 9DA0548A6EB21AC934BE34C725B61F00 /* empty.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upb.c; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.c"; sourceTree = ""; }; - 9DA0628D3DC2B1B1EC1E2B622F1B0B97 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; - 9DA8107F067C6979ADF3814FD6C4DF40 /* FIRAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuth.m; path = FirebaseAuth/Sources/Auth/FIRAuth.m; sourceTree = ""; }; - 9DAC136197FF32241C217A185AE9D3EC /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 9DB399ABB45D98928AE439A4EAD697EB /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; - 9DB47FE0D474930DF72A68D3B6F6E9EB /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; - 9DC4C9F0C148108AF3970F58AB84F494 /* 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 = ""; }; - 9DC5941767E8FD037EE9D502A9F3EF80 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/support/client_interceptor.h; sourceTree = ""; }; - 9DED17414A8AF61586F76653428F39B8 /* unaligned_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unaligned_access.h; path = absl/base/internal/unaligned_access.h; sourceTree = ""; }; - 9E107C47ED42260DD000F5A0C92FB288 /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; - 9E27BC682ACD3CEF13F6C23E2283D152 /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; - 9E49949DF85BAAA58610162F286B233C /* FIRMultiFactorSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorSession.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession.m; sourceTree = ""; }; - 9E50A1D5AA54221A1BBB7FD954562971 /* 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 = ""; }; - 9E5B7AAC1336D406BE31037E5441A12B /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; - 9E6391EA8F6B7CB2142584D4C462A3A3 /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; - 9E656B5E025CF677BA2290063704AF31 /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; - 9E6BFFA9D269D9E1F76D8E3EB80AA2AD /* waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter.h; path = absl/synchronization/internal/waiter.h; sourceTree = ""; }; - 9E7A22249F18452FC677E82BFA9F8256 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; - 9E84782180234D80DDAA46771D10D223 /* 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 = ""; }; - 9E97BF1A61EDA6EE0C6161ACC6C91271 /* FIRStartMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.m; sourceTree = ""; }; - 9EA31E7DD758C02D9539090885F535D0 /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_load_reporting_filter.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; - 9EA4C37FFC9BB6F490FF72042F5965DA /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = src/include/openssl/bio.h; sourceTree = ""; }; - 9EBEF183D1561CEC4392816F0B6B7C13 /* 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 = ""; }; - 9EBEF4EBDCB00B8CFCBE12997A5C4354 /* semantic_version.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c"; sourceTree = ""; }; - 9EC5C54A6994BCDB5029DFB45D66AEDE /* 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 = ""; }; - 9EC7C9CDF520CEEBB66F272EEF7CB07E /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; - 9EE0EB330B5F4A1F324D863C3AF5B592 /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; - 9EE984C6FFA08D78838F9D8AB59D43F1 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; - 9EEF49E540505AA014B17FEC5135D836 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; - 9EF2476AB649C02AB753751214A96043 /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; - 9EFC2DC0949691ECF6348F58BF217772 /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; - 9EFE22F6E0E0B54AFE8CE1C1D031B6A6 /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; - 9F018035A19CFC543F3B5AE22068BBB8 /* 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 = ""; }; - 9F0381DD468E37FB75F272704D445806 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - 9F4C7F33E74A38733C463A079FC14396 /* pollset_set_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set_custom.cc; path = src/core/lib/iomgr/pollset_set_custom.cc; sourceTree = ""; }; - 9F685B60BDAE2BD5F19836424C408CD4 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; sourceTree = ""; }; - 9F7C4BA109A1D722C7E7DD56A694AF4C /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; - 9F8955684B1A4A09A1A5E59199EF40E9 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; - 9F8BAE0E68120AB138691AA34E6652C3 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 9FB4A7CE6B95676BD9DE1C91B045ACBC /* 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 = ""; }; - 9FC91767C0F0E6E5BDF96AA21B918E32 /* FirebaseFirestore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseFirestore-Info.plist"; sourceTree = ""; }; - 9FDC55221D6E3CC0851C06AEBF1B6C8E /* 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 = ""; }; - 9FED9539579A679A149C62EEB6E3C094 /* 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 = ""; }; - 9FF43D78A918D7940A31B8373CDDB1CC /* prefilter_tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter_tree.h; path = third_party/re2/re2/prefilter_tree.h; sourceTree = ""; }; - A0090069E44E1463B0D85EDA9F28EFDC /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; - A0154A101698E589E1B1B631EB736812 /* 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 = ""; }; - A0203E352DB193475DC72FD6DB884C32 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; - A0372D9E5AC53789D06A86098177EEED /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; - A043C3A05AF6ED8594DD9916B685B94D /* cds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h"; sourceTree = ""; }; - A0612DD7EE2C36175A1AA90AF6F8D4AA /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; - A075502B0971B7CA755D892DF582AB78 /* FIRDeleteAccountRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.h; sourceTree = ""; }; - A091525807673B1231450A472D4B1267 /* prefilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter.h; path = third_party/re2/re2/prefilter.h; sourceTree = ""; }; - A0A33EA6D08F5B6D726F20B3FEBCD8FD /* resolver_result_parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver_result_parsing.cc; path = src/core/ext/filters/client_channel/resolver_result_parsing.cc; sourceTree = ""; }; - A0A557D90815FEAC898E3BBCAE0D6167 /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; - A0AA05314B8E7F9D079E203C6A26FCAF /* 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 = ""; }; - A0AB6AE6D2CCC47F08DA0806F70553C6 /* 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 = ""; }; - A0C69BFBFCA5CD5C18A86F75037AF1DF /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backup_poller.cc; path = src/core/ext/filters/client_channel/backup_poller.cc; sourceTree = ""; }; - A0E6D8157E71211666EBDF7C5B8A585C /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; - A10CE7BE687855CE8651F3515B545B3A /* p256_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64.h; path = src/third_party/fiat/p256_64.h; sourceTree = ""; }; - A1107E5BF01847F78DA2700745DA4621 /* memtable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memtable.h; path = db/memtable.h; sourceTree = ""; }; - A11FCF074AAB713B048A641C6C88975F /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = include/grpcpp/channel.h; sourceTree = ""; }; - A135513E6914703307777A672262B80F /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - A14C379D092139FDCA1B28FC4240E5E1 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c"; sourceTree = ""; }; - A15DF5B35AFB3F9630D58CB4EA2893AB /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; - A16C986E58C4D4790A01AD205F1C62D9 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - A19A4DBBB48441280DD05AF5A59904BF /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.c"; sourceTree = ""; }; - A1AFF2F47D853E17885D2F382D5B391F /* FIRAuthGlobalWorkQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthGlobalWorkQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.m; sourceTree = ""; }; - A1B6C5F8DBAC200371CF3B2610CA4650 /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; - A1C07E68D4709890E188A735AB158086 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; - A1C0E9DD7973D516B834F0D05357E4E6 /* 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 = ""; }; - A1D0E07D29D909DC36EF28E62B54C614 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c"; sourceTree = ""; }; - A1D22D6731CA71E045964FABEF3BEFAB /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - A1D289E4B6273605034E98499C47A590 /* 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 = ""; }; - A20A55B085DEBD64FD6A4D703D6D5CD0 /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; - A214A92A42B23975946F9EE5CB5228DF /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; - A2368298FB75DBE1B86D762ADFDB8EDE /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; - A24B447B954A786A8DA8AF54CA827CAE /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; - A250DDC6597003E290FABCD6A7634020 /* FIRSendVerificationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h; sourceTree = ""; }; - A266F66161BD06B1A0009D73C4CB9315 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - A292C6FFC9286CA78ED588E91CB94A07 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; - A2BDA11FC910B0DCCB97474CF682D327 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; - A305B8EC7BE1B6DFB330B3DA7B058344 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; - A314D3C228735D9F7CAD586E0E88D1D5 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - A319E2848167F302D33704B54E9C1BB9 /* 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 = ""; }; - A31FFB39CA5C2873483DFD64F1E75356 /* 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 = ""; }; - A3288A87CEF66B021246F5A3001A6365 /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; - A32A614EDB59E1810E5D358C3DE001C3 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/impl/codegen/sync_custom.h; sourceTree = ""; }; - A330A6AF6E4DE3A27FD916DAC0AF18C0 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - A33EE0C16F7BBE321ACAEEA656D09EE2 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - A3572014B13719B064E0C0820F1B40D7 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - A358635C800C1314106163F2032B1D1C /* cpu-ppc64le.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-ppc64le.c"; path = "src/crypto/cpu-ppc64le.c"; sourceTree = ""; }; - A35BF9F813177891C1221FF7B6E1EFA3 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; - A36629E6950ED349411C0194B70BEB88 /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; - A36B4BEDEB17BC89D54D38110051BE8B /* 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 = ""; }; - A36F1C89CBBFA453DB0B177E19FF84EB /* gRPC-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.debug.xcconfig"; sourceTree = ""; }; - A38A47C5FF6941B440544DC542982694 /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; - A38E6B74E76C605238B5E0961F228A08 /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; - A39434E78E6418F535A5C51C30D60571 /* 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 = ""; }; - A39F583D65D9ECFC003B2D66C2E7CC3B /* pkcs8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs8.h; path = src/include/openssl/pkcs8.h; sourceTree = ""; }; - A3A05BF3541B60D0B0B9BBE0469DC51B /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - A3AB34F81142DFB082834B70783FE229 /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; - A3B8C57D4739031520C5CCA6CF873A4F /* 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 = ""; }; - A3B9193B02337E4C6399361E55D876F8 /* FirebaseFirestore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseFirestore-umbrella.h"; sourceTree = ""; }; - A3C8FEEC10682E55A9D6201EF28275D7 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; - A3D549AA9B0BBF50367D92ECF430330F /* 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 = ""; }; - A423E8F5F0EDF4D36CA45D77AFBDFCD6 /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; - A42A68A37270D926C25343AE4E625A95 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - A443C7E39A2DE8BA64E26D8242D2176C /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; - A45F54B0F7C8C5870CF72806CC6C37E1 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - A4632EECCDDBC00FF8A89DB23C7D800E /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; - A46D6BD081A1DE6301BFF9358093111C /* 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 = ""; }; - A47C09FE9C6851B0C41A5DEF0AE11EC2 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; - A48341CBEE573F9AE064E0CC037833B8 /* GDTCORUploadBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadBatch.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h; sourceTree = ""; }; - A4879F426982C95E908B0DC4B0B5EE4A /* 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 = ""; }; - A493829C65E21C07D91AF4F87EA6C2CB /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - A4A529CED747C68F5DF2F2655FD30CA6 /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; - A4BBBE1B26BB85CE249D843C6DEFC784 /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; - A4BD3D5D2949EA7DAE24682665A60C4D /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; - A4C921B1A372B68D80CD4463811A224C /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; - A4D71A3F7964F4CBD250DE3BC54339B7 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/impl/codegen/atm_windows.h; sourceTree = ""; }; - A4E17436AFD5BB6F11D2BE7382D1EC24 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - A4F5FD7486731E0F60433F6C2C15AA07 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h; sourceTree = ""; }; - A51DA9A47C221DE2090EF57FA1A16CCE /* strip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strip.h; path = absl/strings/strip.h; sourceTree = ""; }; - A55767199B2674BA39980F45AB17A379 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - A569E416AEB5DE37366B255AB8FD8EA7 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; - A598D61B75F14E1FB7BDED718B610719 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_client.cc; path = src/core/ext/filters/client_channel/health/health_check_client.cc; sourceTree = ""; }; - A5A25621FE607FF55D8C182BD8B2DE82 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; - A5B2F976074655FA3C46ECC6383AE45A /* 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 = ""; }; - A5E74D52AD59FBCC6892FA2B9DE91173 /* version_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_set.h; path = db/version_set.h; sourceTree = ""; }; - A5FF12DB2508C279536226306C092B5C /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; - A6042C751468C19CD9E6F28714C6C383 /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_factory.cc; path = src/core/ext/filters/client_channel/client_channel_factory.cc; sourceTree = ""; }; - A60956DCB23BA71E2EBF485DB58F6EB9 /* slice_intern.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_intern.cc; path = src/core/lib/slice/slice_intern.cc; sourceTree = ""; }; - A637D97158BCCDA36190D250E7E0D300 /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; - A6750FB37B2CCF78031E3D09A2A05F51 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - A676A6A1675341F75A6780FF241E92E5 /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; - A6868B58A5965A5AC8A6307D6B06D0A2 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = src/include/openssl/x509_vfy.h; sourceTree = ""; }; - A68DF4B310E5F88FCD5FAE5991D0CB43 /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; - A68EA86884D69D502BFE4170135DC461 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; - A6AAC288D8B06F235F9538819D512760 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; - A6AD12EFCBDC400DF3A8218708542632 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; - A6D28A600B0ABBA17A5C9202636BB73B /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - A6D93FF8F756E2DF0E4D0F70786B780E /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - A6FC3CBF51C0704C33A30858817A0B6F /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; - A717D22B8ABA4AA45090C343CCF71B65 /* pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool.h; path = src/include/openssl/pool.h; sourceTree = ""; }; - A71E7264BCC67FB63EDBC52A55CA956D /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; - A72880DF767EA1F6BEB0EF23FDE047E3 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; - A732803E8CF1E8DAA46F6404CC27507E /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; - A74AEEAA35DF022A0436DB697F080F2E /* randen_slow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_slow.h; path = absl/random/internal/randen_slow.h; sourceTree = ""; }; - A74F99F5B2B3F4DA94821916777061D4 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - A784040043ADC2DD236E835E5674A71D /* FIRUserMetadata_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata_Internal.h; path = FirebaseAuth/Sources/User/FIRUserMetadata_Internal.h; sourceTree = ""; }; - A792C080FAE56896BE34A50BD173F601 /* string_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_windows.h; path = src/core/lib/gpr/string_windows.h; sourceTree = ""; }; - A7C0AC51D89C96C1B03EB8A29E743630 /* descriptor.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upb.c; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.c"; sourceTree = ""; }; - A7C6FB1722A8E76B4749596C35FEBD15 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; - A7C83086694C96D041164D8E6885D927 /* 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 = ""; }; - A7E93837DCF69807648A719A28942B13 /* FirebaseAuth-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAuth-Info.plist"; sourceTree = ""; }; - A7ECF7A3A3C5B540F77DEE2086FDC9C5 /* 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 = ""; }; - A80E88F283CE6125A45C3B9CB42BB3B1 /* graphcycles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = graphcycles.h; path = absl/synchronization/internal/graphcycles.h; sourceTree = ""; }; - A814B69D1F85F802438ED668CFDBE5DF /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/internal/variant.h; sourceTree = ""; }; - A818395C8B5BDAA1D9592F204FD2B038 /* 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 = ""; }; - A82D46BE4221AD1794F4E23C051CA014 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr.cc; path = src/core/lib/iomgr/event_engine/iomgr.cc; sourceTree = ""; }; - A8399A14109D216FDED870DAF751F428 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; - A86B7F7718E3856DCCC9FA5AD5626FEC /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; - A87D2959BC118BB2B56C983CECC7A4A0 /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; - A88CBFC83E1A48C857043DFA10E2653E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - A8B40FABF7C9DC1A6D565AC76543388F /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = src/include/openssl/crypto.h; sourceTree = ""; }; - A8D24F79296A85FC3BC27FF65CE24B49 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - A8F15779E33AAE7CD9984F36B19EFD85 /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; - A90769AEF2AC0A5F00D058E4C00F878C /* umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = umbrella.h; path = src/include/openssl/umbrella.h; sourceTree = ""; }; - A9139E951B16A769D99336B2EF472CAC /* 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 = ""; }; - A92F05FA3D1F52F2A55730AA24F82136 /* 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 = ""; }; - A943B7EA46BDD4487B2819B30DE43230 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/impl/codegen/server_context.h; sourceTree = ""; }; - A95F72F61CE015ACAA3EE1209D90D042 /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; - A96B86EE5F4532C937C73D91B261CBB6 /* 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 = ""; }; - A99088ED062AB2C27087B746077C76B1 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/support/server_interceptor.h; sourceTree = ""; }; - A9954561F37DDF67338EC19E63424575 /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; - A9AB819DDB8EF30BC4642833C78C4FEA /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; - A9AEFBCC5FE630F7B74682D889D19331 /* backoff.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c"; sourceTree = ""; }; - A9B48197CEDBD7C46BC341423D7DB74E /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; - A9BFF848B98DE459D79C6FEB43146143 /* 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 = ""; }; - A9CB1DF3A5F94E00496DDF8FE6BF58C7 /* eval.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eval.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.c"; sourceTree = ""; }; - A9CC64BCEB57A6B464B6A3B79D4A5C23 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - A9D096B0C6CBB57931FEC03C35975E78 /* 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 = ""; }; - A9D3F89FA2345069EB342004C13AF450 /* string_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_windows.cc; path = src/core/lib/gpr/string_windows.cc; sourceTree = ""; }; - A9DC59AACBC5A355A732AF1B0ADB4FF5 /* 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 = ""; }; - A9F6EC22B391B6C38EE4CB9B5758C43F /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; - AA0DD1FAB8621882656D150DFE901068 /* endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_config.h; path = include/grpc/event_engine/endpoint_config.h; sourceTree = ""; }; - AA1E77257DD61E97BF6D0946527B39D4 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - AA36937CC3A8A62A4DEC31C2A8DBD1BA /* eds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upb.h; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h"; sourceTree = ""; }; - AA3A5D68BA26751D3EBE80AC04D33436 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; - AA44046E15985EC93ECEEC85F0FDF855 /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; - AA468256CE134AB5B72DB058D43DF44C /* core_codegen.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = core_codegen.cc; path = src/cpp/common/core_codegen.cc; sourceTree = ""; }; - AA5F3366FEB3E1119249D08C76C36FF0 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; - AA659B0CEC53DE47C207E9E946C54998 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; - AA6A39F4AE049F21C047511BC5A8081C /* 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 = ""; }; - AAA6C7F1B6847261A14DDB3223F6A03E /* FirebaseFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.debug.xcconfig; sourceTree = ""; }; - AAAAC8BDC3C4A01BA8BB78D86F0E41DE /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; - AAD0488A3346289766F43E611AC6666E /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - AAD55419D7EC5B103AE513F2F4EF9CDA /* 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 = ""; }; - AAD6A11B21495CF049CDE05CAB35A774 /* 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 = ""; }; - AAFE7E183443DBFE7338AC383B6100F6 /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; - AAFEE7754ED460AA142415E9EA87E4EF /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; - AB10E3BFDA47A548969E1E40B54ECA6D /* stat_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat_windows.cc; path = src/core/lib/gprpp/stat_windows.cc; sourceTree = ""; }; - AB278426E730FA69DD5BC8703BE4ABCF /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; - AB2EF2AC113FE66E4FB3FD3391F5E241 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; - AB537BDC1F586C88CB1236B108B208AF /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; - AB5C53EF60285D55F87F05F004230C53 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; - AB7138D6A69866788DF7070E6D9E7A7A /* 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 = ""; }; - AB71DFBB3FF79835FA9A296BD2A811E5 /* FIRStartMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.h; sourceTree = ""; }; - AB8027132186DC1BF0A50C17448690CD /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; - AB8E2D4C439A02A15B365386BCAC509E /* FIRVerifyPhoneNumberRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.m; sourceTree = ""; }; - AB970916F21CA2D5729CE8F3C058F34A /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; - ABA290EC2591C516C56D719B1852CDA5 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/dynamic_annotations.h; sourceTree = ""; }; - ABA39FE04431B095DEF305EA3E5F4949 /* 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 = ""; }; - ABA4A13C9EAC21C4B7CA8B69309E810F /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; - ABB514FAA54C3281A8E801B225061E5D /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = src/include/openssl/sha.h; sourceTree = ""; }; - ABDA16D605B2CDE3BDC3C7046A243A15 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - ABFCFEFB639BAAB4AA7406E1B9C8A3E0 /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; - AC1101C998BFC206F537191514D7EBEB /* explain.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = explain.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c"; sourceTree = ""; }; - AC15C14ACB2B3450BD84A52512E34452 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; - AC1757E25D2FF46CC7149B4F5779648C /* hpke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = src/include/openssl/hpke.h; sourceTree = ""; }; - AC186EC970ABDA7C3E9CB4256FE06988 /* migrate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.c"; sourceTree = ""; }; - AC1B7E7C9CAE9C3D76E36D07FA5850A9 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - AC31EC92853B558E1C2883EAE6D73CFC /* 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 = ""; }; - AC439C40C5E71AD99666383E06E7084A /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = util/arena.h; sourceTree = ""; }; - AC56D82519B5C156EEE1D93D2A771B3E /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; - AC5DFED1F01FDCD77D59B03B4E2B3AB5 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h; sourceTree = ""; }; - AC6008769FBFD150D014895EDDB149D7 /* 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 = ""; }; - AC8A1B8E3C61F31956CED47E1CCB5BED /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; - AC8E47E23AA85979785614D578B42412 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - ACA807973220EAE1B3BB88488899D30A /* byte_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_stream.cc; path = src/core/lib/transport/byte_stream.cc; sourceTree = ""; }; - ACBB700D1FFD3CBCBAB5AC9BEFDCB9A7 /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proxy_mapper_registry.cc; path = src/core/ext/filters/client_channel/proxy_mapper_registry.cc; sourceTree = ""; }; - ACDABAD6D0A30541241E684EE23EDA1D /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; - ACE0594724CADA3C6E8F44A890B0A3CF /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - ACFC339F608B0702502060B8FFBC8B72 /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; - AD03B17B162D6269292321BFD27133AD /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; - AD2745458FBCC3CEF88D590EEFD15E78 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_decode.c; sourceTree = ""; }; - AD32C21BF3431BF755C1A9D4D9FBB224 /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; - AD9A09242687CD13126EE381377D5B6F /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; - ADAF088419ED98FE6E8A89C24FB71413 /* 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 = ""; }; - ADB178BF359DB0F4B6B9B290983B7E82 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; - ADB48F0EF1186F007742AE75AE55357F /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; - ADC6A7477E4FA6256FCF730818E74E40 /* strscpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strscpy.h; path = src/strscpy.h; sourceTree = ""; }; - ADE5E734449379D20E08E13749DCAE3F /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; - ADE7945AC9854C300F67AD6CFFA4BC35 /* 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 = ""; }; - ADEFA34F846145BD04F8B7816D476913 /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; - ADF800B82EC13ACBB3FAB597647CEE0F /* BoringSSL-GRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BoringSSL-GRPC-dummy.m"; sourceTree = ""; }; - AE012EFDCB5F347565AF1BA8EFE4D954 /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; - AE01C797A96D6234B067C8A84EB931EB /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - AE02BD5FF7FD18F98A8A00A695F4E7EF /* 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 = ""; }; - AE10C968F0E26A0B9EDCB5D10260C40D /* 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 = ""; }; - AE149CD2442E49160ABF54AF40FD99E1 /* tcp_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_custom.cc; path = src/core/lib/iomgr/tcp_custom.cc; sourceTree = ""; }; - AE2CE103B38BC976DA045BA966B95FA2 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = absl/memory/memory.h; sourceTree = ""; }; - AE63FAE1A38BD9B16B58DB8F0D76AF70 /* 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 = ""; }; - AE66776D4A64507FBCBD86A561DCD6A6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509v3/internal.h; sourceTree = ""; }; - AE9E6B5A42C82C2BC06FBFE8EABBB5A2 /* 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 = ""; }; - AEAB44A52ACC36D38CC3CF28AF0B2E5E /* rsaz_exp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsaz_exp.h; path = src/crypto/fipsmodule/bn/rsaz_exp.h; sourceTree = ""; }; - AEBAB0C93706FEA7F5302559519A1B1B /* 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 = ""; }; - AF0435CDC5C3BB45A9AF2EE6A467ABA4 /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; - AF15D34E5EF4A11A603648484E73A016 /* 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 = ""; }; - AF238BFB741F007C0817C2B5DB680F33 /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; - AF2D82AC3822F81EF63755626F2293BB /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; - AF34AD69E917276389B10B463DFC4DEA /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; - AF4B551E052F26420522FABCCA7BDAEB /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - AF5B9C98F68CE8090916EBEEEAA1499A /* 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 = ""; }; - AF9B49254C141180AB74FCDA7F84AF04 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/impl/codegen/slice.h; sourceTree = ""; }; - AF9DEF0109F3CF6416E2EC1779559E08 /* 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 = ""; }; - AF9E441B0346B45C4472AD4CA8211B60 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; - AFA31394D90226A94823122D7537827A /* FIRAuthDataResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h; sourceTree = ""; }; - AFAA0269C3521FE07920601F784DC1D4 /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; - AFBDD484888DDC549AB8CA1124B35A18 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; - AFD18D432E2332B5C75BCB6B5BD47F65 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = absl/strings/internal/str_format/extension.h; sourceTree = ""; }; - AFE270738743B940CC0385606BF70507 /* 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 = ""; }; - AFEE3918AC5C9AD34DCFD2ABAF7A3BB1 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - AFFF590FAD835730FDABC04CC51CEAB9 /* 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 = ""; }; - B00D53290AAB3FCF0EAC9166914E3837 /* conf_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_def.h; path = src/crypto/conf/conf_def.h; sourceTree = ""; }; - B012F97C2E9581291445922A05D0E52B /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = include/leveldb/iterator.h; sourceTree = ""; }; - B01BF79872DB72BBE0BFD4EB0527C9D6 /* getnameinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = getnameinfo.c; path = src/unix/getnameinfo.c; sourceTree = ""; }; - B02460F5E73D23ED6FD5521C6F407E82 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - B02499D441682B0266E4EBCE4CC8D1F1 /* collection_entry.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c"; sourceTree = ""; }; - B04BB6DEED1E3A806BB4A8871E6093D2 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; - B05DBC6E4E6F2CAABE5B0E9AA646EDB8 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/leveldb/status.h; sourceTree = ""; }; - B060AFD6C415714E4C53B721E30D201A /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; - B062227C71E1663D64363AAD4793DE57 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - B06D6B84B14FF60295313EF657430D24 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = src/include/openssl/engine.h; sourceTree = ""; }; - B07AAB01B8090BD561A3C0213041F205 /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; - B0BACA7AF1F29511585CA8F32612F946 /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; - B0BB9F9D829E3114AB84B6957EF89110 /* 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 = ""; }; - B0C185EB57E244F05E3A0786F995A577 /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; - B0CC3090F23B3576D934D51450358FF2 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; - B0D56F15F9934C53F709C44216DB31FA /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; - B0D8B99945B0B084C6C02232E8361C9D /* 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 = ""; }; - B0EA8D24AA9C1CD7267BCFB6DB564487 /* 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 = ""; }; - B0FA88EF49B79651198EE74047D6AFED /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = priority.cc; path = src/core/ext/filters/client_channel/lb_policy/priority/priority.cc; sourceTree = ""; }; - B10135E87098E777EEA98A3A723C17C5 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - B10BA2A48A4387790E2E8E48FD9575A8 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; - B10C863EE1FF3EC2F3DFFA963B297308 /* 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 = ""; }; - B11E5D7BB0C1C65418D24E4509F26585 /* load_balancer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_balancer.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c"; sourceTree = ""; }; - B12193B39AB9C9AD0B1D620F66457FE3 /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_alt.c; path = src/crypto/x509v3/v3_alt.c; sourceTree = ""; }; - B128A2D8AE332941F77E6F017A320001 /* 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 = ""; }; - B137F26F3880BE1C08B667F84F176BEB /* 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 = ""; }; - B13EBBC179E790092217B7A4731EACC6 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - B17D3765AC63DEDCD4562043E72817FA /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; - B185F37F8856671E8CB87C39AC2E7261 /* 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 = ""; }; - B18882219F9B11BFA89439644B1C5CD3 /* 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 = ""; }; - B189D9B7452AE798D3FC3017FDE61DF9 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; - B19A3739C63962C5F9250B750515A462 /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; - B1A27515041EACD4431FA1EFEB4B51A3 /* block_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_builder.h; path = table/block_builder.h; sourceTree = ""; }; - B1B52374E6CA0B8B8C0C64FCEEF01811 /* 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 = ""; }; - B1CF1B07EA145273F6E0E38F0F8A8525 /* 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 = ""; }; - B1D23DBF05EC7616586E3128C524322A /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; - B2009767EC2AB43C81A67E16B43E0DC0 /* timers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timers.h; path = src/core/lib/profiling/timers.h; sourceTree = ""; }; - B207C8E8F1F8F449F1218FB78AF0F5E4 /* Libuv-gRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Libuv-gRPC-prefix.pch"; sourceTree = ""; }; - B20A596BA414E8BA79DCEA94C7207DE0 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; - B227F52BE76B38DA33800FA8916A7553 /* CLTypingLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLTypingLabel-prefix.pch"; sourceTree = ""; }; - B24A2C29F88781ECA8C691DE44DE600C /* 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 = ""; }; - B24ADA12A72D17B8F16CD5021D839E0D /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; - B24F3DA903BD8100E8D425CD745B55A7 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = src/include/openssl/objects.h; sourceTree = ""; }; - B2520369B3CE7512D4B94CC515F5884B /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; - B272B3AC437369888B4BEB0E375077EF /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; - B275B83B87E96B5234513538FC683415 /* 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 = ""; }; - B2800F81891250A61C71F852B7E69924 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - B29D014ABFCFC4733B0DFD77AFBCBE2B /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; - B2A7DF1FCB624BA88A4A1A63AA7C8518 /* FirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FirebaseAuth.h; sourceTree = ""; }; - B2AAA7B7D74FE5C27B3D957B795DFD17 /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; - B2B15B6F16FCCDEE6466911D1CC6AEB0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - B2BAC9D0A1AA7CD328C15013960C88D3 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - B2C0C8C74796BA8C752625895946CF86 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel_pool_interface.cc; path = src/core/ext/filters/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; - B2D349EBE125AC26A3E98F058E11448D /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; - B2DCCC73DC8B3EF36A2FC3C2AFF689CF /* 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 = ""; }; - B2E3EDCDAAB73EE084826C2356ED8E20 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - B2EBC1C80C77FD4FC1787C9FA16F2F25 /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; - B2EDC07DCD20913C791F13BEC6B40264 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - B2EDC81F15CDAEFA824833F44EFCA60F /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - B2F1E54F59F5091F8178837BD3D5BECF /* 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 = ""; }; - B2FBF9E6367F69C3C642BA8281F5E82D /* 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 = ""; }; - B302D325B6A31BB4DEAB926BFFDD3014 /* FIRAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthTokenResult.h; sourceTree = ""; }; - B30887F8A983D0F76ABAA697A90050D0 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; - B316CAC1D290248CFAFD4D6EF23B2DF1 /* 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 = ""; }; - B32195B4FAA7B9B65B5287679EE3068F /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - B34BDA9AA0E38F8C1AF5B9CCC50B4537 /* 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 = ""; }; - B3591DAABD127666506E210FB2D0D5A4 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - B37F5099C45824EEAA04C58C396669E9 /* 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 = ""; }; - B38124AE2984531B5838ECBE17A4004C /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; - B383B4EF2C21852CF7F1D3DC1B4C4E78 /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; - B385F9E1755D429AAD18C5EA5D3FA9C4 /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; - B3A3FCB84793B382ECB528EF6C51A92C /* 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 = ""; }; - B3BA59DBE2075E2D9E66626F98883560 /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; - B3C6C6A84FDD092305F1808E82E13B45 /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; - B3E780272BAD67304665F2C021A720BB /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; - B3FCF85413C8149E93213E18CEE7EED6 /* bitmap256.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitmap256.h; path = third_party/re2/re2/bitmap256.h; sourceTree = ""; }; - B40847EB83546152901CB2DEEC4DCA4E /* 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 = ""; }; - B41124671B074406DE87DC81428576DF /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; - B412DAE2C6175672DE35941A3450AE03 /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; - B42C1109B2541422EAFA3594E8E83C60 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; + 9C8C9AEB5E0026B6CB2F7F28F5904A41 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; + 9CA13D0E2C5F02B70E65D1B8D9A28B84 /* getrandom_fillin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = getrandom_fillin.h; path = src/crypto/fipsmodule/rand/getrandom_fillin.h; sourceTree = ""; }; + 9CAA344E77ADD75BC2579E72EE792290 /* wakeup_fd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_posix.cc; path = src/core/lib/iomgr/wakeup_fd_posix.cc; sourceTree = ""; }; + 9CB7B8147038BF1175402ACD2895A616 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; + 9CB9A91E336036732879A84936462A8A /* eval.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eval.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c"; sourceTree = ""; }; + 9CB9B67B6408CD4E9226B941FA441D61 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + 9CCC07B0CCF352197BCA376696736EC4 /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; + 9CD095D61CD762988F69F2547176BA3F /* 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 = ""; }; + 9CD0ECFC306E9D9F3D591CC23C302745 /* bernoulli_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bernoulli_distribution.h; path = absl/random/bernoulli_distribution.h; sourceTree = ""; }; + 9CDF8178D302358527F79694E239436B /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/cds.cc; sourceTree = ""; }; + 9CEE43AA7BE194118B1E7776FDD2957A /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; + 9CFC452A280BD8091CBD238A621270F2 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; + 9D07AAD8561BEC59439A97AA268AF084 /* 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 = ""; }; + 9D17ADEEAD91FDA8C6C122329E95479F /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; + 9D2D0B809D7F772E23E7BCBFF7A91477 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; + 9D3EF67F73804E37ED1DC4C006E04DD8 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; + 9D43F253405F60D294BDB61035F6814C /* 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 = ""; }; + 9D4A0297B0DE49DC4BB155C61F7CD00C /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; + 9D4DA7AE45C5A2BBADADC9FA8311E9E1 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; + 9D60C152F48B68B781AF5C39486BE073 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpc/support/time.h; sourceTree = ""; }; + 9D6AECB4BD0FA3D16FE848360F98D248 /* msg.c */ = {isa = PBXFileReference; includeInIndex = 1; name = msg.c; path = third_party/upb/upb/msg.c; sourceTree = ""; }; + 9D76245F75E9D13E7E30ACE2A2CC1F62 /* gRPC-C++.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.debug.xcconfig"; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D9F59154E63C03EA3DD1AB09DBC1F62 /* GTMSessionFetcher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-umbrella.h"; sourceTree = ""; }; + 9DA0038BC773B41686BBE6972DE7EA86 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; + 9DB01B854BE88579BC434E62D41ECB74 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; + 9DC2368D64D3CA2CE800E521E617E5D1 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; + 9DD46A054630618014019271AFD33BD3 /* FIRAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthTokenResult.h; sourceTree = ""; }; + 9E0077B879B329B8C3DFD7E9D75BD698 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; + 9E01585D5EE13EAF99B21782B42995DB /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; + 9E0587499A9B271011636CCAE94F855B /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; + 9E39A632940037D7148A63ECFEBC7A2C /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; + 9E73CB1F95874E3060D7B5ECA7F26D82 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; + 9E8C3E40D06BAB73DDAB836409E7D91F /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; + 9E8E3F8B77B723DB6AC0A3AF53A49375 /* attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = attributes.h; path = absl/base/attributes.h; sourceTree = ""; }; + 9E9153C6AD38072B143FB80FC99645EA /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; + 9E9A66CC635D1A9FF2F776CA93E7088B /* gpr_slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_slice.h; path = include/grpc/impl/codegen/gpr_slice.h; sourceTree = ""; }; + 9EA2ED234CDB93EC3F697F04AB814C9B /* FIRAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential.m; sourceTree = ""; }; + 9EA8B0670C869E5745119CF205E76A4F /* health_check_service_server_builder_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_service_server_builder_option.cc; path = src/cpp/server/health/health_check_service_server_builder_option.cc; sourceTree = ""; }; + 9EB35C8416A3CB0453962328FDAC632A /* abseil.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = abseil.modulemap; sourceTree = ""; }; + 9EE8FC11D8F7B67D27375238D0FB6A6C /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; + 9EED8C8B5F4FE9081061882F86B10660 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; + 9EFFA4682102AE7CCE9FB3D96D8A9EAC /* plugin_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = plugin_credentials.cc; path = src/core/lib/security/credentials/plugin/plugin_credentials.cc; sourceTree = ""; }; + 9F3AA2D50848F56517D1FF0993EC5E9A /* FIRAuthSerialTaskQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSerialTaskQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.h; sourceTree = ""; }; + 9F45A1698308FCB29D391C5B6CD5E3A5 /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; + 9F4E7738BF016E01E2AB6E0604B2C98B /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; + 9F549B47C1CE0D40723AF220761E385D /* stats.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.upb.c; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c"; sourceTree = ""; }; + 9F58D31E9E1E34322F82E81D519B3E4D /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; + 9F6123768C733BF2D6B87CF04AA8502B /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; + 9F6A9630CF3E3FA9CB2CA8EA089E4B9A /* p256-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64.h"; sourceTree = ""; }; + 9F718B3E77CFF3D4A7A5F54834AD7B53 /* 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 = ""; }; + 9F8E251FFD37006AA9B04A1BDA6C6F90 /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; + 9F97BB4B975667319CC34C4E05585709 /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; + 9F97F096CE1E84B2B7D21901D3C56B38 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; + 9FEB9FB4EF94DCE5046C4586E74463A9 /* time_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_windows.cc; path = src/core/lib/gpr/time_windows.cc; sourceTree = ""; }; + 9FF5D7AA695FA56292F502C3023132E6 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; + 9FFB9E4F6BDDA0BB2184F2A180C5368C /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + A010BC44D6C5625A0F7407A01D7EE408 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; + A01195D0F179247601C472163D777A4E /* 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 = ""; }; + A0193A288EE4200049EBDCA32B1B2E25 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; + A02B51B1F2BBC58E5835399A4ACE0167 /* bind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind.h; path = absl/strings/internal/str_format/bind.h; sourceTree = ""; }; + A03BF8048663D3E04CC50D69245262C9 /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; + A05465B9E12D78FD43F7A73E4E6B3F14 /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; + A05A40261754506FABB178A913D4875F /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; + A06142FBB03FED26CFAB82F4EB374B5A /* FIRSignInWithGameCenterResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h; sourceTree = ""; }; + A069DA99CCAD2DB2EAE50BDAF70CE923 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/support/sync_posix.h; sourceTree = ""; }; + A06E5892C037299DE92E89A8290AAC45 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; + A082ACD06AC47E556E2D37AC5E0BE668 /* wrappers.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/wrappers.nanopb.cc; sourceTree = ""; }; + A08B53D0578E12601473FF4FE53ABF55 /* FIRStartMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.h; sourceTree = ""; }; + A093F80F9120B6B9D64137FFFB66A4FC /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + A0AFA71D9BC5E0EC4BAC81394771B142 /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; + A0D56A007E4D3A6DFA2BEEC05957FCC0 /* rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_filter.cc; path = src/core/ext/filters/rbac/rbac_filter.cc; sourceTree = ""; }; + A0E09081A4FD8ED14E5FE10495EB159A /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; + A0E87F5100ADC1233799FF3EC2ADDA82 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; + A0EEB92B21A22CA56D35DED421126094 /* FIRAuthWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebView.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.m; sourceTree = ""; }; + A10072035B5A053F75D0F472BD4D2A04 /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; + A10D0D00E0B2F6FFB703C52B37B48DAD /* FIRAuthKeychainServices.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthKeychainServices.m; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.m; sourceTree = ""; }; + A112657624EC7269A7F5F0723405518D /* certificate_provider_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = certificate_provider_store.cc; path = src/core/ext/xds/certificate_provider_store.cc; sourceTree = ""; }; + A13ED55F7FBAC08C8BA47A98C694F982 /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; + A15196D6BFF9F8EE0462014322CB7565 /* FIRSendVerificationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.h; sourceTree = ""; }; + A165A5E9CE0006207D5CA271C32294B5 /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; + A1778B16B7F012004270639F0A0A79F5 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; + A19525F33674D372058D61FF2D3D3F5C /* darwin.c */ = {isa = PBXFileReference; includeInIndex = 1; name = darwin.c; path = src/unix/darwin.c; sourceTree = ""; }; + A1C589A4BCD048A01A5211C4A1707B8F /* firestore.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/firestore.nanopb.cc; sourceTree = ""; }; + A1C5C922864884C87FF7B3296510D4E6 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; + A1D2ECA061DFA3050BC9F153F9ABFC3B /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; + A1F7779EC03A9C8B5AAFCCA1246419AF /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; + A204A0CA3281063585747D75D3DC0052 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/bn/internal.h; sourceTree = ""; }; + A22E6AD4E4D02DC7F8512B538CF8E99D /* FirebaseAuth-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAuth-umbrella.h"; sourceTree = ""; }; + A22F7E79E07AC9D0A325EE756266DC6B /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; + A2370CA1B0FD198E1530351E03AB3821 /* FIRSetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.m; sourceTree = ""; }; + A2792D02215858692BDC811B398E9F98 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; + A279D11295A3FABCD8D789A5849F3B1A /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; + A286722D838B8F340572D1C263D3C0BA /* filename.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filename.h; path = db/filename.h; sourceTree = ""; }; + A2945DC03E0F587DAFE51AAAC3CEDB6F /* eval.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eval.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.c"; sourceTree = ""; }; + A2A03D081AA6F1DDB577BFB8BDE069FC /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = src/include/openssl/ssl.h; sourceTree = ""; }; + A2A4F441DB8D183CF38A95231C44257B /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; + A2A822252CAE104E735C2DB6624CFA3F /* secure_channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_channel_arguments.cc; path = src/cpp/common/secure_channel_arguments.cc; sourceTree = ""; }; + A2AC46A0588EE25199E81C334DC799C9 /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; + A2C3EFE5CB5842DE580323D9957317A6 /* FIRAuthBackend+MultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAuthBackend+MultiFactor.m"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.m"; sourceTree = ""; }; + A2D2E339367E4EBDE2345D7D1288DF86 /* log_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_linux.cc; path = src/core/lib/gpr/log_linux.cc; sourceTree = ""; }; + A2D8326C7EA23FBC3B0AA3B359F05227 /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; + A2E13F21644CB7F8EE99B8EAB5205CF4 /* const_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = const_init.h; path = absl/base/const_init.h; sourceTree = ""; }; + A2F6BD49597D2B6F92781A90DB26B716 /* FIRAuth_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuth_Internal.h; sourceTree = ""; }; + A302C1A329B7547ACA9610A0E5D97229 /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; + A306AB4ED438BEA0DFFBB16B7F30A79F /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/impl/codegen/server_interceptor.h; sourceTree = ""; }; + A31911DF5E710CAC623D379A317EB89B /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; + A33C253FDF7FF6BB8B6296377CA1D78F /* 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 = ""; }; + A34515ACD6901C51E8FDEB47BDB1C77B /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; + A34DB664E4CD2DCC8E96FA99A38E3873 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + A35B79EB0D3EFF7B97DD845599FF25DF /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; + A35EEED096D1927031D2A2E656B22BD5 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = include/grpcpp/channel.h; sourceTree = ""; }; + A364CB3A6B417F7A3D69445D36C9FC22 /* FIRMultiFactor+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactor+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactor+Internal.h"; sourceTree = ""; }; + A3676E36F7989A181A9168130C2239CE /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; + A37C580599EE2C0B74BA37A881E35699 /* time_zone_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_info.cc; path = absl/time/internal/cctz/src/time_zone_info.cc; sourceTree = ""; }; + A37D336EF74ACFFF654DB4942C02CC4D /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = src/include/openssl/hmac.h; sourceTree = ""; }; + A382E161DE3F60E6C6C30E53D873B3BA /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; + A393650CFC4AB01137211216586BB17C /* GDTCORUploadBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadBatch.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h; sourceTree = ""; }; + A3B8CD40AA61FA847C0ED9CB838E6963 /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; + A3CCFBAFBBDFBEDA3B381E7478DF01B9 /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; + A3E2E4D857DBE3DDDF9384F40AB3FB28 /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; + A40414EB86D6F515FABCAE2ADF80EAA0 /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; + A435EC9B400C5113CDA3935FBFF22932 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; + A438524329ABC4AF04FAD58A5F3FAE6F /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; + A438890524DE6ABD2A7A03027D111EF5 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; + A448DBD94F59B1C64E5CCE504D3E2A19 /* 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 = ""; }; + A449FB7CF969D503D80E613DF2452CF9 /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; + A450E976C638C4C2B34D8983ADDE7EF3 /* firestore_index_value_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_index_value_writer.cc; path = Firestore/core/src/index/firestore_index_value_writer.cc; sourceTree = ""; }; + A481A804862AC9632FFE812C9E592E9F /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; + A4892686DBDF059CEE86AD8608CEC3A5 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; + A4AEFDDAB80A142A8333FE94FCFB10D1 /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; + A4D952853F9C9CD4AE7CA566C31E2298 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; + A4EA3A2631F90C41940B04ABF9CB8D89 /* generic_stub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generic_stub.h; path = include/grpcpp/generic/generic_stub.h; sourceTree = ""; }; + A4F4AC7CE28D780EF5C601866021A8B2 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_akey.c; path = src/crypto/x509v3/v3_akey.c; sourceTree = ""; }; + A5069FDF61745774096993F061838B86 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; + A524D397E70310B2E0229697A13AB1AB /* uv-data-getter-setters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "uv-data-getter-setters.c"; path = "src/uv-data-getter-setters.c"; sourceTree = ""; }; + A5264B7609CEEB42C70F945195835EA1 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; + A5265DF14ABE675F239483F3A05DD65C /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; + A5298F5507196E30966765AEF9A12C81 /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; + A54FA3126EB2F87B50889081BD285D76 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; + A574194E513FB51B9833E63744D57C5C /* 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 = ""; }; + A589EB5B36B16429CC2324C505DBDBBA /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; + A590B4C068B532984A690705AE30ACBA /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; + A59111147D0FD772C57D9441FDF499CB /* 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 = ""; }; + A5B3360E488D0504D1641A5A332E94E6 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; + A5D2F2CAD024C8FEC6E2FEC3B7DA5CAE /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; + A5D4288EED520DD7D8DC029C39A050AD /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; + A5DF75113F4185F5EEFBE5EF2AD41B06 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; + A5E5E299BDA914EAF9CC010B26720B63 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; + A5EAF5C086D9D3DFF4B6433874C511B9 /* fastmath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fastmath.h; path = absl/random/internal/fastmath.h; sourceTree = ""; }; + A6012AF4B8E27052CCAA36F5AD001CF2 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; + A60723C690B73630F2C3E7CEBB14E1B7 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poll.c; path = src/unix/poll.c; sourceTree = ""; }; + A608A42A171C22F314D75A2603BB484F /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/status.h; sourceTree = ""; }; + A61C655D6C391AF9812913174AD4D5E7 /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; + A61DC357F49DA109869B7EC541E0B27E /* ssl_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_transport_security.cc; path = src/core/tsi/ssl_transport_security.cc; sourceTree = ""; }; + A634A28D0EB7661984CD86D24543098B /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; + A64CC4020799B8E992984694F6305C83 /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; + A65A56AFFEC3C9F0AE54C0FCEAE76102 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; + A66ED89A12669DB8A637369C9A298A40 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/include/openssl/thread.h; sourceTree = ""; }; + A674FC20142C5A137221EFD651FEA1FD /* ssl_session_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_cache.cc; path = src/core/tsi/ssl/session_cache/ssl_session_cache.cc; sourceTree = ""; }; + A68E10E0782E9124117D7F00B408CC62 /* server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_credentials.cc; path = src/cpp/server/server_credentials.cc; sourceTree = ""; }; + A690ECC41782304699232B8FBB95A0A3 /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_load_reporting_filter.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; + A6B9672067D3C678E9811DAA28EACAF3 /* seed_sequences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_sequences.h; path = absl/random/seed_sequences.h; sourceTree = ""; }; + A6BF954226F3C86469A411A6478CC4DF /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/impl/codegen/atm_windows.h; sourceTree = ""; }; + A6D7BAE6B7E3E2068A1CEF30090B4940 /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; + A6F3FACFAA9496F5859F4B5ACE2B36E8 /* evaluate_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = evaluate_args.cc; path = src/core/lib/security/authorization/evaluate_args.cc; sourceTree = ""; }; + A6FA5B34BBAB9666CAB504AD23D5C483 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; + A7004524BFCB1C39091C7A2B20D6F9B0 /* srds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h"; sourceTree = ""; }; + A71133C43848C32F798FF7225E4E9C01 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; + A72B3E41AA162406450C089488B6FEC6 /* elf_mem_image.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = elf_mem_image.cc; path = absl/debugging/internal/elf_mem_image.cc; sourceTree = ""; }; + A72C0A8B580630F6FA7191DA88514174 /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; + A73ACBDA5EABF651B090C16886794A7E /* 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 = ""; }; + A7477848E9C32365E7D6633A65BFFED2 /* FIRCoreDiagnostics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnostics.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h; sourceTree = ""; }; + A74844D2AFF84175C7BDDB91B5B7B0C5 /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; + A79C1FD9D5E49DCF20306E7E6B80AEB7 /* resolve_address_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_custom.h; path = src/core/lib/iomgr/resolve_address_custom.h; sourceTree = ""; }; + A7CCB25C216BE1A2E94C364059940837 /* time_zone_if.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_if.cc; path = absl/time/internal/cctz/src/time_zone_if.cc; sourceTree = ""; }; + A7CD411E0BF99D427E9E2D714CF77398 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; + A7D269AB0FB453D78BCDB9D50D0A0F23 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = absl/random/internal/traits.h; sourceTree = ""; }; + A7DA8E332C56FFE90181557403F4A9DA /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; + A7E4563046220F18248154A24B1EA08C /* lds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c"; sourceTree = ""; }; + A7EA77369641C931E35B5B460DE692CE /* 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 = ""; }; + A7EACACD390B4C75B4D8D99A0F0A07C3 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; + A7F41942CDE5EA53B138D359B83DCAB6 /* secure_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_auth_context.cc; path = src/cpp/common/secure_auth_context.cc; sourceTree = ""; }; + A7FB77B9CCFCABF72FEBDDD57C467B61 /* array_contains_any_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = array_contains_any_filter.cc; path = Firestore/core/src/core/array_contains_any_filter.cc; sourceTree = ""; }; + A814A92CDA18032C88AA1D37CEDCFD97 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; + A84182F77804A6537104D42E15E9930E /* FIRTransactionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionOptions.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransactionOptions.h; sourceTree = ""; }; + A84E7F226E3C004C5461E352E1F2A5A6 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; + A858C99EFBDE50F8CD262E0CB965F90A /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; + A85ABF9A978CCF58ECAA13659377DAB4 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; + A875C914E0049F3F9B16804307836321 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/client_context.h; sourceTree = ""; }; + A879AEC0F0A243E1D3A00C3C36F00405 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; + A887CBD7627C4AF8ED92FE8119EE1E3B /* mutation.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/mutation.nanopb.cc; sourceTree = ""; }; + A8CBABB5330A57379F1DCC9820C39FBD /* endpoint_pair_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_windows.cc; path = src/core/lib/iomgr/endpoint_pair_windows.cc; sourceTree = ""; }; + A8D6F54224E9124D8650200B84B472D7 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; + A8DB7628E9FC4B9701C3BC641342B4A2 /* not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = not_in_filter.cc; path = Firestore/core/src/core/not_in_filter.cc; sourceTree = ""; }; + A8DD9720F99EDC3CA2075BEF05E41FFF /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; + A8E076F92E18E2A176410D2D847A5901 /* 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 = ""; }; + A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardManagerSwift; path = IQKeyboardManagerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A8EC8AF43E0C4DC3B289328DCDCC08F7 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + A8F67C05D7F62B4EFA8F129DA189A40C /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; + A924953216E01026039BB228A3C81B36 /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; + A925A6ABA92ABCCDCA0399A5ABFA5840 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; + A92B3037E119C806056B8CDBF7D4F333 /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_info.c; path = src/crypto/x509v3/v3_info.c; sourceTree = ""; }; + A93003B5E5DB89A84967D70A216EF942 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c"; sourceTree = ""; }; + A93A25E96B6646D87F59740E5465C423 /* 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 = ""; }; + A93CE75F45729286AEE8124F6D145706 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = src/include/openssl/engine.h; sourceTree = ""; }; + A9583E049EBBA340166F70F14C4A595B /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = src/include/openssl/ecdh.h; sourceTree = ""; }; + A9589447B075C852C449954C75EC2A37 /* 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 = ""; }; + A9727725BB8C06E94DB8881EABC9B36B /* FIRFinalizeMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.h; sourceTree = ""; }; + A9B0876B2A984BBCEB77AA3C036072C2 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; + A9DB8990B2A3BEFB85485420AAEB9F5D /* 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 = ""; }; + AA07F3D19B01CFE3033BF0A4F1F403EB /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; + AA17E5EAB0C4D3BBC240EDD511841B56 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + AA202FF064251A13A862572F5AC03E5B /* gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-C++-Info.plist"; sourceTree = ""; }; + AA2968F993473CC9613F8CB73260C186 /* http_filters_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_filters_plugin.cc; path = src/core/ext/filters/http/http_filters_plugin.cc; sourceTree = ""; }; + AA3B5914D6B0D2E44D359BC34A4FA48E /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; + AA84D14CAA88BA3D6F0FCDD38ACCB9DE /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; + AA8ADF2D3F0CCE03BCCF7B642477EF17 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.m; sourceTree = ""; }; + AA952FABFCF1E42F8DD8BBFE1EF37638 /* is_boringssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_boringssl.h; path = src/include/openssl/is_boringssl.h; sourceTree = ""; }; + AAA3A9AF05FF8CCCC31CC5F6ECF8E26B /* xds_route_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_route_config.cc; path = src/core/ext/xds/xds_route_config.cc; sourceTree = ""; }; + AAA7990389FDF245F8D711F5BBB3369A /* http_server_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_server_filter.cc; path = src/core/ext/filters/http/server/http_server_filter.cc; sourceTree = ""; }; + AAB101F27CBBDDEDC48CC31E7B9CD218 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; + AAB2830BDE4A6BEA0914A4C0B58F1358 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; + AABB9408CA7882A2C975D53814794902 /* 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 = ""; }; + AABF7AC5B726AFBD8BBB5CAA0A4ADE41 /* service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config.cc; path = src/core/lib/service_config/service_config.cc; sourceTree = ""; }; + AACC353BA8BF0B096EF718E492724AFD /* alts_tsi_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_tsi_handshaker.cc; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc; sourceTree = ""; }; + AACE42F21E333D5C884B48171B19FC6E /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; + AADDA1FD3D52A25FF3A6581871567896 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = absl/status/status.h; sourceTree = ""; }; + AAE501746679E6AE6FAF6E11EF8621AD /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; + AAEBF1B8573F27431022C28AF0366694 /* 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 = ""; }; + AAED5F6D94B67BAACAA77FBC4BE596DF /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; + AAEEA2A09150DDCD5716B7FFCE5F33DD /* rds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h"; sourceTree = ""; }; + AAFB0099F62BF51790DC54FBAF2E0195 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; + AAFC3D390499839CC90583698B0FCEC7 /* 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 = ""; }; + AB0070729BCC641953AB26E53874B408 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; + AB01C283091E3BE91E4FA3945B7130E8 /* Libuv-gRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Libuv-gRPC-dummy.m"; sourceTree = ""; }; + AB08E06B8E7808869C178FC7BFAB605C /* FIRSignUpNewUserRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.h; sourceTree = ""; }; + AB1EFCD7D07615F09FE73ACC195BC51F /* rds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h"; sourceTree = ""; }; + AB707B7445C8ABA916FED612057CC9FF /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/support/sync_abseil.h; sourceTree = ""; }; + AB7644B3B8B5BFCE590A66FAE4A07C05 /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; + AB916CF7DDB009115D08B1AC15BB2C18 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; + AB945A961CCE39200F9B7A61A735C888 /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; + AB967AC814DD7BDF14A489564ACADB92 /* 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 = ""; }; + ABA7A6CC74669E4A400517189A0410AD /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; + ABD0DABE1780A68EA9BE5735E6DD0B48 /* 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 = ""; }; + ABD1C40CE08A699EDC05BC352FED04EC /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = src/include/openssl/ripemd.h; sourceTree = ""; }; + ABE9A4DB4213279E3BEA47ED0B8378AB /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; + ABEB41AA71C95E5107014797EB035498 /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_subchannel_pool.cc; path = src/core/ext/filters/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; + ABF274D63A01224C63B4C662A5B7CD77 /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; + AC1A0A7DFCD286929648B1FAE0A14B51 /* channel_args_endpoint_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args_endpoint_config.cc; path = src/core/lib/event_engine/channel_args_endpoint_config.cc; sourceTree = ""; }; + AC3DE822A415380A04861E03AD6B163F /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + AC4F977E188A75FD08909BD7BF440471 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; + AC6803AEC8CE42020AADAC373F34D1B0 /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; + AC6D4C0CBE3A8529216A41C84B9DBEA1 /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; + AC804C7AC738C2FEFF3CFCAC76FDCB0F /* 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 = ""; }; + AC88CA5F34ABDDDA4427D0459F54F9BC /* 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 = ""; }; + AC8A7A510C0D687C6BB71C1332B797B5 /* 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 = ""; }; + ACB19832AC5DD190E0FD6D0ADE5DCE03 /* api_listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api_listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c"; sourceTree = ""; }; + ACBD1F61FEAA2BF69351754794A7BD10 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; + ACD9FA229759D28F5D2BEF588C96B06E /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; + ACE3917478381E30DC5505EDDBC5BFB3 /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; + ACEABDB3C53B230C730FA8D6A6E191FB /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; + AD0ACE76704E6FDE22C9C618982D9683 /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; + AD1B5494ED3619D7254F7C9EA1BD3FAF /* 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 = ""; }; + AD309C486B0085B236F6C02877B670DA /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; + AD353950023E563AB79B582282B11022 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c"; sourceTree = ""; }; + AD46B033C0014C564E010C826B1FB7C0 /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; + AD4DDE22FE799C744B853593FF4793B7 /* channel_create_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create_posix.cc; path = src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc; sourceTree = ""; }; + AD534EB127F02E3E86055D9DF95D78C3 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; + AD6272B3ABBE476B1DEE30DE473E0074 /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; + AD684F740DC4279C4A03E98E842E8AB8 /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; + AD786899F7692B3DE526159D7F72BA20 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; + AD7F7496A542BBA77E6FF97069DE3D89 /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; + AD8D3BB6BABFFB28CDD2F2E8B8276626 /* GDTCORMetrics+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORMetrics+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCORMetrics+GDTCCTSupport.m"; sourceTree = ""; }; + ADA7CA0E48AD50D3AED4F17046D3AB9B /* GDTCORFlatFileStorage+Promises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORFlatFileStorage+Promises.h"; path = "GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h"; sourceTree = ""; }; + ADB6752C944E0D899CAA1B175EE52BC1 /* event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_engine.cc; path = src/core/lib/event_engine/event_engine.cc; sourceTree = ""; }; + ADCDFD7925373795ADFAD37C00E0839B /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_impl.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc; sourceTree = ""; }; + ADCFC3DB92BA3F61AD2B0A282BC91E0F /* 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 = ""; }; + ADD62D131946951438D1455CD3D9DBBB /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = src/include/openssl/err.h; sourceTree = ""; }; + ADE4EA7E56A18425EF7CE22D6831F214 /* GDTCORMetrics+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORMetrics+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Private/GDTCORMetrics+GDTCCTSupport.h"; sourceTree = ""; }; + ADF5883BB998597174345EB23C5871A4 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; + AE0E0DCB96E3660E543EB03718B17251 /* socket_utils_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_windows.cc; path = src/core/lib/iomgr/socket_utils_windows.cc; sourceTree = ""; }; + AE0EC63C9E5E9A6779367AE3926B6DB5 /* GDTCORFlatFileStorage+Promises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORFlatFileStorage+Promises.m"; path = "GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m"; sourceTree = ""; }; + AE17B390D590E6CB695C2255642A0D6D /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; + AE20E56D4208DB5E99DE7BCD4012755C /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/service_type.h; sourceTree = ""; }; + AE28EEEF36C142997E3A9E8D45C286A1 /* beta_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = beta_distribution.h; path = absl/random/beta_distribution.h; sourceTree = ""; }; + AE4D0C333D9EBFEDD8A906483A1F29E0 /* bad_optional_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_optional_access.cc; path = absl/types/bad_optional_access.cc; sourceTree = ""; }; + AE4FB61735914D78871A7044BD3BBFD2 /* 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 = ""; }; + AE576357FEB6F45DA403E80FD9989363 /* listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c"; sourceTree = ""; }; + AE5BD4AB2FE880F958ECBED48682DBC7 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; + AE6A6F1AF18E38D907AE9FE3EB2340D0 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; + AE97A43861136C2583C8E904B391D05A /* FIREmailLinkSignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.m; sourceTree = ""; }; + AE9C74461EFBD124EE10FF8AECDA9CC7 /* load_balancer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_balancer.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c"; sourceTree = ""; }; + AEC9B5C91BBD74CD70E57417459CCF89 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/digest/internal.h; sourceTree = ""; }; + AED619B4D6A2DB811F625FE8C6BB7852 /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; + AEE546FB51AEFD1A39B580521C203882 /* layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = layout.h; path = absl/container/internal/layout.h; sourceTree = ""; }; + AEF48F617280A2225A91CF5C986DDD21 /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; + AEF9A896B99783502E9917CD6369DFDE /* Libuv-gRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Libuv-gRPC-Info.plist"; sourceTree = ""; }; + AF0192C801E381D3AACAF8E7028B72BB /* compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression.h; path = include/grpc/compression.h; sourceTree = ""; }; + AF1229F20CF0EDF89676F8A0D946C729 /* log_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_android.cc; path = src/core/lib/gpr/log_android.cc; sourceTree = ""; }; + AF36D0A14EA7174365C2D5C6BCE9303E /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; + AF39D74010F3156AE465688D8C4700EB /* representation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = representation.h; path = absl/numeric/internal/representation.h; sourceTree = ""; }; + AF45222424DF04B96977839FACA4F955 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + AF4621DC259B3BAEA8D4A7BE864041C7 /* FIRSignInWithGameCenterResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.m; sourceTree = ""; }; + AF57A95FE24A6492671FF625730034FF /* dynamic_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_thread_pool.cc; path = src/cpp/server/dynamic_thread_pool.cc; sourceTree = ""; }; + AF592134A72CB0C30C9EAF1F2AE1F9F6 /* base.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c"; sourceTree = ""; }; + AF6850876B61AB849DB2BACED33F6367 /* server_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_posix.h; path = include/grpcpp/server_posix.h; sourceTree = ""; }; + AF892002BF0B20FAD65D1802BAFC9ABB /* eds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = eds.upb.c; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c"; sourceTree = ""; }; + AF8EBC9309AE8A177D8BEABE31D0A98B /* FIRAuthNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthNotificationManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.h; sourceTree = ""; }; + AF9C48EC005C380A1825DD6E82B49372 /* gRPC-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-Core-prefix.pch"; sourceTree = ""; }; + AF9D1966DB5879AC81FE4761282F3670 /* FIREmailLinkSignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.h; sourceTree = ""; }; + AFA08182C445DAD5AC15C787A3BA4A5E /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; + AFCE63EE580380491598716844B704A0 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; + AFD7C45756478E689495818423B017E0 /* 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 = ""; }; + AFDE60160C80749FB6A3A7D7EB59FB4A /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; + AFE1A0DB8051D3C1EA049C4B54CC7AB2 /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; + AFE910F44A1BB907BE01EAC14FCDC0F2 /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; + AFEE4712648AEF17DA9088D37F87A094 /* document_key_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_key_reference.cc; path = Firestore/core/src/local/document_key_reference.cc; sourceTree = ""; }; + AFFD2D88B73783F06582A9C7710BE467 /* FIRAuthErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrors.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h; sourceTree = ""; }; + B003672412C6F617EB7B44F073F9287B /* endpoint.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c"; sourceTree = ""; }; + B00E27513B76C540F82BEFD6EF042F78 /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; + B00ED75B5934906127C74DCFF82CBFF9 /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; + B022821111E61F489BC52E4BCE4C9B3F /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; + B0295B6950116DEC5ABF66D74803854F /* gRPC-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.release.xcconfig"; sourceTree = ""; }; + B02C0102CCC32EF4110E014DF1A9CC6D /* client_metrics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = client_metrics.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/client_metrics.nanopb.c; sourceTree = ""; }; + B0337C4810FF047FA9FF7C5557AB9741 /* channel_create_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create_impl.cc; path = src/core/ext/transport/binder/client/channel_create_impl.cc; sourceTree = ""; }; + B039F1D718EBAC0531ED804E9B18147D /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; + B048076B96CD466AF68DF53C85E28524 /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; + B04930504767C05A2FC7D4F1638024E2 /* authorization_policy_provider_vtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = authorization_policy_provider_vtable.cc; path = src/core/lib/security/authorization/authorization_policy_provider_vtable.cc; sourceTree = ""; }; + B063F8B367D896FF50DC4B81E08EA986 /* chttp2_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_transport.cc; path = src/core/ext/transport/chttp2/transport/chttp2_transport.cc; sourceTree = ""; }; + B06C1170ED64497F684CF7766A0636BA /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; + B07BACDECDE6605E9E7576DA543F2976 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; + B0801996947176F859989048E1EA3194 /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; + B0A6C83A9B970807250C58F83C214595 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; + B0A868A091AB132A44525680EDBE57BC /* query_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_listener_registration.cc; path = Firestore/core/src/api/query_listener_registration.cc; sourceTree = ""; }; + B0B311865A57C94CB65CE2CF77FBFE09 /* document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_overlay_cache.cc; path = Firestore/core/src/local/document_overlay_cache.cc; sourceTree = ""; }; + B0C1583274B07075008203C27B8A4FCD /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; + B0C528433E4AB648F8EFB9D48FF421D9 /* 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; }; + B0CED8E1344B32A921026E75B3C1A32E /* byte_buffer_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer_reader.cc; path = src/core/lib/surface/byte_buffer_reader.cc; sourceTree = ""; }; + B0E3C25D0AF48B726D5BFF08AE27CBD8 /* FIRMultiFactorSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorSession.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession.m; sourceTree = ""; }; + B0EDBCD8C226A77650A55FD44F506476 /* FIRUserInfoImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfoImpl.h; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.h; sourceTree = ""; }; + B10851A33C44B4EC8C8E607B2DE362C7 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = include/grpc/event_engine/port.h; sourceTree = ""; }; + B10863E311D88E6BE55F77948390B0EF /* 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 = ""; }; + B10AE260DD1CD28D3AF1D2436CAF94AD /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; + B10B14F8CC0F37A0079EC2A2B4380B33 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread.c; path = src/unix/thread.c; sourceTree = ""; }; + B1392DEE3196EBD48BE8D727F56F5552 /* leveldb_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_mutation_queue.cc; path = Firestore/core/src/local/leveldb_mutation_queue.cc; sourceTree = ""; }; + B141D250E7199A117FD2C720A7C6D68E /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; + B1489C57C2D740CF8F0FB7881F160FD1 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; + B17738D891417B98F9F8FBA04929B4D1 /* FIRAuthUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUIDelegate.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h; sourceTree = ""; }; + B17C8988B4A74CD61388A7A7B54E0293 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; + B18B33019C408AD235EECAA7DB9A79AA /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = ""; }; + B1DDD57E91967F8567B8980146F3FF44 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; + B20CC7C12E04A3C8F3308E5AF7EA2989 /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; + B212E640A5232604D0FBBF9485AD1FFC /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; + B224412ADBE777BA723CD5A7054B0743 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; + B2266929A10D29E98094837686875F34 /* memutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memutil.h; path = absl/strings/internal/memutil.h; sourceTree = ""; }; + B228A3BA0D841F288B97AF28C6D29154 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; + B232530AE2AA3C7C25150F093749C9DB /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; + B2379B2C6D2F0F2F6314B58CE7353DE0 /* 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 = ""; }; + B23AE3F60167E893AB927FB4F1D7510D /* FIRAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthCredential.h; sourceTree = ""; }; + B23FD13FE224A936D0261009BB69C601 /* 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 = ""; }; + B25CA275CD71214CCA50293281D337FB /* 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 = ""; }; + B275C00144CC65AD1C0E0C9D68E451BE /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; + B278E5FAD18C8EA038B4FAF1D213B7DF /* transport_security_common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_common.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c"; sourceTree = ""; }; + B281AB424F20C96F1C25A3D86CED11F4 /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; + B28604B517C2CE2A8E7A6FE766721961 /* FIRMultiFactorResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorResolver.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver.m; sourceTree = ""; }; + B2A36AD8C0F023A1AED64E1796A175CC /* v3_pci.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pci.c; path = src/crypto/x509v3/v3_pci.c; sourceTree = ""; }; + B2A4806B0988C8B8EADAA9BAADDAD30F /* arg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arg.h; path = absl/strings/internal/str_format/arg.h; sourceTree = ""; }; + B2A6E7908BF85BC6DBCC19074CE7B30E /* FIRFinalizeMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.h; sourceTree = ""; }; + B2AB0C00581CC927D8FC929EBE615FCF /* 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 = ""; }; + B2B0069BE8FD1A797CEC575F2029A9C2 /* FIRFinalizeMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.m; sourceTree = ""; }; + B2B6CEAA241FC237B879B1DE6BB91B5B /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; + B2BB8966061EE3FC9C30E7289F1760FC /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; + B2BE641C335300342D11BC21AD50BAE3 /* tls_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_utils.cc; path = src/core/lib/security/credentials/tls/tls_utils.cc; sourceTree = ""; }; + B2C74D0EE40FB4F8857D42826FCDA16E /* leveldb_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_lru_reference_delegate.cc; path = Firestore/core/src/local/leveldb_lru_reference_delegate.cc; sourceTree = ""; }; + B2C798C0E44B904CD0995753D99FB5BD /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; + B2E7FA2488E4397291796EA25EF256F4 /* substitute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitute.h; path = absl/strings/substitute.h; sourceTree = ""; }; + B305A820FD6DEB4963E54B7976215E30 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; + B30A528879B61F383A42778288C76C92 /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; + B30A5CBE75B419D608CE8F479A4703D1 /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; + B30DF76266D5E6CBC677DE20AB324755 /* pod_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pod_array.h; path = third_party/re2/re2/pod_array.h; sourceTree = ""; }; + B31E493DE8DE83242F803FD0DD0041F6 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; + B31FCEA4EFBB54E9B1529FCA3C4E608B /* httpcli_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = httpcli_security_connector.cc; path = src/core/lib/http/httpcli_security_connector.cc; sourceTree = ""; }; + B32A4B770F20EDD27C33060711D612B3 /* 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 = ""; }; + B33F243B1FAF414A52B92D523434B4E4 /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; + B344AFAAF604BA0DF872CD167361676B /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; + B3563EB46A817257E6BDC38AC7359405 /* FIRFinalizeMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.h; sourceTree = ""; }; + B357F6F302DB165EBBC31386F7737D89 /* walker-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "walker-inl.h"; path = "third_party/re2/re2/walker-inl.h"; sourceTree = ""; }; + B36B32D91F1F810D092819DEFF0BE8A6 /* FIRIdentityToolkitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIdentityToolkitRequest.h; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h; sourceTree = ""; }; + B3946E9E6F5BEB73291420F1C49E892B /* CLTypingLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CLTypingLabel.modulemap; sourceTree = ""; }; + B3A0E7C79C10BC1B915AB5991D550A09 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; + B3AA16E575585AD11C88B0058A32E070 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; + B3D77C530658F53FAFEA226D83A90A7F /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env.cc; path = util/env.cc; sourceTree = ""; }; + B40B7B601D444CD283D126DAD758658B /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; + B40EFBE07116E3F340C6FF7DA728FBE7 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; + B4106416E9A18B90FA106750EC6622A8 /* FIRStartMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.h; sourceTree = ""; }; + B417D3569C012966923407E6DEB774C8 /* binder_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_transport.cc; path = src/core/ext/transport/binder/transport/binder_transport.cc; sourceTree = ""; }; + B41E6933C91A20FBB8DCAB5863419E55 /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; + B4285EB5E539A6DA9DF6108FF788F74A /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; + B42EDFE4CD5479CC36B78484866E7536 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; + B430EF219DE6AF565B54570D358AF22D /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; sourceTree = ""; }; + B437BB0C58D1F2C6B8682233F0E8F27D /* FIRAuthBackend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthBackend.m; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.m; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleUtilities; path = GoogleUtilities.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B46CD8F0885C87FA85231ACFC5552B77 /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = weighted_target.cc; path = src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc; sourceTree = ""; }; + B438E00EE2302FFAB47FF1C055E1333D /* uv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uv.h; path = include/uv.h; sourceTree = ""; }; + B4392D4D79EB0971BB641D2E77E27397 /* fsevents.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fsevents.c; path = src/unix/fsevents.c; sourceTree = ""; }; + B44550CAFE9693A03807C3A27A84A3C7 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; + B44BDD24C0C5179C294AA148F294B59B /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "gRPC-Core"; path = grpc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B4763C786CE3AC0D9A7CBDF0C2B9A324 /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; - B484180B4EBEBFB48A405FCF3FE70C99 /* FIRPhoneMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorAssertion.h; sourceTree = ""; }; - B485907E37DB770775AC8FD16708587B /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; - B48CC10D75584ED685E40B257421B760 /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - B4938879DA38CDFB6B4644E9E0600C6E /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/support/port_platform.h; sourceTree = ""; }; - B4B27AE92E921B8A54DBDE52F1E3EBC9 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; - B4B7A95FC90C43CE5CEB2E7EF6999506 /* FIRSignInWithGameCenterRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.h; sourceTree = ""; }; - B4DC05570B01D1BCE88CEB55DCAEA10D /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; - B4E237C549EB7530084E39A5BD628FA8 /* 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 = ""; }; - B4EA72EFDFDE1E7FBB8C29A3AFC16093 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bytestring/internal.h; sourceTree = ""; }; - B4F2982B337149EF34F636899118D04D /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_utl.c; path = src/crypto/x509v3/v3_utl.c; sourceTree = ""; }; - B4F95FF3A843AA8C313482EFBFEBEF81 /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; - B5155D03FDC418BAA79EA193BD56B51F /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; - B515EEBDBB4AFBDC0AB59659D3B8CFB2 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; - B51CBF8F09D2C579A338EF24B3A56F45 /* table_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_cache.h; path = db/table_cache.h; sourceTree = ""; }; - B52102069F00E34703FE84F3AE7022BF /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; - B52F2B0AB87360DB9AC86BA63FE8E5C2 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/impl/codegen/atm.h; sourceTree = ""; }; - B53BAB3FA71F0EA8FD602751F8799634 /* 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 = ""; }; - B5592154D74A2E3E3DA27A305B0BEFBD /* 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 = ""; }; - B55D6A085CDC8D4E64B07CF2C6F48223 /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; - B55EBC5013E331D0CBAE3B934574111C /* NSData+FIRBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+FIRBase64.m"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.m"; sourceTree = ""; }; - B57334934DFB7A0B38D71BBAB211B84B /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/channel/handshaker_factory.h; sourceTree = ""; }; - B5946DBD845B9323E97F6B98B585DF02 /* FIRAuthSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthSettings.h; sourceTree = ""; }; - B5AB5B621FBEA0ED53A252369C31F521 /* annotations.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upb.c; path = "src/core/ext/upb-generated/google/api/annotations.upb.c"; sourceTree = ""; }; - B5B4949DE576DB5D0512953BEB5ED70F /* server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder.h; path = include/grpcpp/server_builder.h; sourceTree = ""; }; - B5BA4FE9B899AE7D9B702720917B5102 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - B5C42C603585AF08237A177C3F4EBDF0 /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; - B5D0D14AC60503E73AB89888CFDF995E /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; - B5D947551ABB4A328FF57D6FB5E753ED /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; - B5F255458A1454DD9A8A8D315A84DC64 /* CLTypingLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CLTypingLabel.modulemap; sourceTree = ""; }; - B635157D0C0769DC5CF4EA1FF3FE6407 /* 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 = ""; }; - B64779E85C308D6FCBE9078BF79EB01D /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; - B64CFE40FE5A39557FA57AA845062583 /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; - B654291838E7D415925BC88E230F0EC8 /* set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = set.h; path = third_party/re2/re2/set.h; sourceTree = ""; }; - B66296B5A828844EBE63423D4CCFEBA6 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c"; sourceTree = ""; }; - B66B93D5000DA5C21FF15A6A0F3C8BC2 /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; - B68DAC0B178D1225D56403D595003F83 /* cpu-arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "cpu-arm.c"; path = "src/crypto/cpu-arm.c"; sourceTree = ""; }; - B6B0856A30414C2B37E98E43B2F0E636 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - B6B6FC6C8C36B2AAA03E9D840094C610 /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.c"; sourceTree = ""; }; - B6C9D3967C9E8A1EA197C9D497FC4C1F /* FIRSendVerificationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.m; sourceTree = ""; }; - B6E2BA0DB94840B41C6E1BE69DE86BFD /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesccm.c; path = src/crypto/cipher_extra/e_aesccm.c; sourceTree = ""; }; - B738AE910C8B12BD51B9DEC8D9EAAFEF /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - B73AC2B79FB582F3A46C91119F13B650 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; - B73B66243871E53D2CE0D389DDD20DBB /* codegen_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = codegen_init.cc; path = src/cpp/codegen/codegen_init.cc; sourceTree = ""; }; - B73CAE13E3638576F3A52306BC74F26A /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; - B73CD2EF881EEFFD3B2755144FCA37C8 /* 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 = ""; }; - B748240AA518D9D87AB8B900C2E689D7 /* type_check.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_check.h; path = src/include/openssl/type_check.h; sourceTree = ""; }; - B7564503FA87A0C717B9C8A8631A32B5 /* server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_credentials.h; path = include/grpcpp/security/server_credentials.h; sourceTree = ""; }; - B76D89A02E1DF3B51B10F9C24E717326 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; - B76D8BFE88D7CF0160716F1CCD743470 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - B771955A4CF01CC7A51B204023248969 /* time_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_windows.cc; path = src/core/lib/gpr/time_windows.cc; sourceTree = ""; }; - B775E7847EE269D6C5AFD3E0A38E09AC /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Sources/Core/GTMSessionFetcherLogging.m; sourceTree = ""; }; - B7768AEE98D9AEACB1068789A9E7553E /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - B77A855DC916D0B4BECCA939B00687A9 /* server_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_posix.h; path = include/grpcpp/server_posix.h; sourceTree = ""; }; - B781E6357ACE48C7978EAFEE31FE0FC5 /* 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 = ""; }; - B78AFC5C7B27A52401A443D615B2D7BC /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h; sourceTree = ""; }; - B78D77EEB3DF4256C73F29E5FB7B3497 /* leveldb-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "leveldb-library-dummy.m"; sourceTree = ""; }; - B795D9A40FA2C0A605AC3A6E1EED4509 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; - B79883322CB09A08BAE47FE41DE6C433 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - B7AE0C1E4144A0E9DBD24D4668DEFCCA /* 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 = ""; }; - B7B8E3942834457E0C677497D95DD467 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - B7D788FC8C9E1701C7F8FA6661BDAED9 /* 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 = ""; }; - B832731D92AE66792B5A68300DE0FACC /* 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 = ""; }; - B84F41C1783AAC6BE49E27B856763A76 /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = absl/synchronization/notification.h; sourceTree = ""; }; - B866F5896D32013665BD2C89504836AB /* seed_sequences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_sequences.h; path = absl/random/seed_sequences.h; sourceTree = ""; }; - B87166C717DD3DA0B19DEDF7E4907D64 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; - B883A64A540D701D865342BA75CC54EE /* 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 = ""; }; - B88A7560A32E839E0C8EAC3A03AE4A31 /* FirebaseFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestore-dummy.m"; sourceTree = ""; }; - B88B1173F2207725E6C40B5C06013EF9 /* filter.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c"; sourceTree = ""; }; - B88F781463BF5BE39A8E9E8A7DAFEF9D /* 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 = ""; }; - B8A921BA900C324829CAA4A172811395 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; - B8BAAD8DC1B8F6E696C82AB47F3634A2 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; - B8BD14A626C65D8B2EFE971E319CBF1D /* pool_urbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool_urbg.h; path = absl/random/internal/pool_urbg.h; sourceTree = ""; }; - B8CD8F9BFEE54C15B4D49EA1371C33EB /* channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_filter.cc; path = src/cpp/common/channel_filter.cc; sourceTree = ""; }; - B8CEC288DB255133814B49990155B678 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - B8DB0B72E5DFCB96209DC7048E35F641 /* sockaddr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr.cc; path = src/core/lib/event_engine/sockaddr.cc; sourceTree = ""; }; - B8DDBC7DBF588914F56027797FAFD438 /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; - B8EF2573A9A70EF757EB2234F720B2A1 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; - B8EF9304FE223CE38E6272FBE7F08404 /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; - B8F23BAB6E574A3A2E4ECE03B2DCA2FE /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - B9345989AF5D41C7AA7DFBFD2228A33D /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - B935C96B194450D0E2081B217CB68D42 /* 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 = ""; }; - B9562B6E77B62B0AB48D5E6B4E698AAA /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - B9577714B976A0958049FC26BED592CC /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = src/include/openssl/ecdsa.h; sourceTree = ""; }; - B9595CB87A6A7D9B9ADB477A24A1D960 /* 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 = ""; }; - B96243AE067B5959A749503F23EF3E72 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; - B9831C4DBD2223F1C95190A0D511E27B /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; - B9832B887B590C7F41D9F8D0E438773D /* 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 = ""; }; - B99997C354F774BF2D6DFBA0C326C38B /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/impl/codegen/slice.h; sourceTree = ""; }; - B999C5BBD7419FCA918DA140A294925A /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; - B99A03E51536BF873FAF6362BC129688 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = src/include/openssl/stack.h; sourceTree = ""; }; - B9A15C3F0F169748196B13B3AC2D0AAE /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; - B9A3B58D793C55394A7A17101387427D /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; - B9A7227AAB7C29CA7F1A7E03D3C1FA1D /* 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 = ""; }; - B9AD17140052F8C4B16D097734D5F0B3 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - B9B61A0A883C527CC5C0C6C971E7AC3C /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - B9BC03AA51C46FBEF205B068CEDEEB69 /* randen_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_engine.h; path = absl/random/internal/randen_engine.h; sourceTree = ""; }; - B9BEA3EEB33090BAF243B18647356F3C /* FirebaseFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.release.xcconfig; sourceTree = ""; }; - B9C0B21E3B7E429887BF70F8E1014DC5 /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; - B9C7017BB3C27702D3154948CFE0BD23 /* abseil-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "abseil-Info.plist"; sourceTree = ""; }; - B9CCB0C2169275C37E096261EFBF36C7 /* context_params.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.c"; sourceTree = ""; }; - B9D9F47D97A06BE77A5D159A9B329EED /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - B9E146F70D02B8CC0A7E50612484142F /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; - B9EB8511E9EB7D9FAEFC0E02897333B1 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - BA1258603851C250209F3A04E1F98819 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; - BA1E732EBE215352395DC3DC9D2CD120 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - BA30102B225E3E37D31C1AD65F3155AA /* pcy_tree.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_tree.c; path = src/crypto/x509v3/pcy_tree.c; sourceTree = ""; }; - BA458B7D6BE7998BA4A6D5FD11FFBC2B /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - BA49C069162FFC8D8C567CAA398552CC /* 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 = ""; }; - BA742090B0070F9E5FDB352E494586E9 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; - BA765361E698A45CBC71C7A420B671DB /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; - BA7C8764CCB1D81C3267CA651EBB7030 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; - BA9307C509854FD4A7A28A1873BA97C0 /* versioning.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.c"; sourceTree = ""; }; - BA9A4A88BB49FEE871D1EBCB60188E51 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - BAC34A20E46843D5D450731D82A01217 /* 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 = ""; }; - BAFC39741BF200511FC99A6EBFC66312 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = src/include/openssl/ssl3.h; sourceTree = ""; }; - BB08AF5701C2D462EBDBFCB35EDA6FC7 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; - BB4A184445C605B0B79BD1A6B8611BF8 /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; - BB85668B872EAE26D4C8F2C12E3645FB /* 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 = ""; }; - BBA022C989B90B74C20524FC656EA6FC /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; - BBB309C9AF6FDD552127343789B6BE13 /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_selector.cc; path = src/core/ext/filters/client_channel/config_selector.cc; sourceTree = ""; }; - BBCE318F8243FA9CE289E45A666A4960 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; - BBD0C48143F23BAE643E60BABDBB7AD0 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; - BBD80B793F358EA6A9BF500CE7CED2F2 /* prog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prog.h; path = third_party/re2/re2/prog.h; sourceTree = ""; }; - BBE2BFD957CE7C38FE4A7FDCDF71D2AE /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; - BBF31B6CC200EEC3B0FD6307A2C7C63B /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; - BC089CBF220AAA95F653C56DBC6E785D /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/impl/codegen/client_interceptor.h; sourceTree = ""; }; - BC0B1494CB044A37D202181203443587 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; - BC1139405CD94C77CF048C1E27CF1293 /* FIRAuthRequestConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRequestConfiguration.m; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.m; sourceTree = ""; }; - BC17C8532FFA2E138B5998A99E8AF139 /* 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 = ""; }; + B48ACA416D5919AACC1A750C2849036B /* filter_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_policy.h; path = include/leveldb/filter_policy.h; sourceTree = ""; }; + B48EC21DC51F83B43AFCF673086917BD /* FIRStartMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.m; sourceTree = ""; }; + B49386D8BA60171F27083C2B42C6906C /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; + B500D4F941472498E3F9456ABED7749B /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; + B507C7F5EFB7EF0FA40738639403AA2D /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; + B50CCA9B665772297B530FBB088C1FF5 /* default_health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = default_health_check_service.cc; path = src/cpp/server/health/default_health_check_service.cc; sourceTree = ""; }; + B51DDA23E16F0E47E3BFF773C123BDF3 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; + B555DD7C687F90D054D09B34C98D0E8A /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; + B55BA53A8C2E3F0DE8D3D80641291C57 /* unicode_casefold.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_casefold.h; path = third_party/re2/re2/unicode_casefold.h; sourceTree = ""; }; + B56EB8828B7E6C33165D70EA2F9A9ACF /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = src/include/openssl/md5.h; sourceTree = ""; }; + B591BD44488D1E7D5910CF9452C12F03 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; + B5ABE53DDF1514BE545E1416D9BE1B58 /* 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 = ""; }; + B5B7845C1B65AF0B44092BA97078C62D /* insecure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_server_credentials.cc; path = src/cpp/server/insecure_server_credentials.cc; sourceTree = ""; }; + B5D20CB329316D9E0BD50AB1E7BFCF54 /* FIRGetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.h; sourceTree = ""; }; + B5E5C9FFD5E5904CFD37E082A1B56B78 /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; + B5EDD9AF1068695B85AF4B4C41E75757 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; + B5F22DF64BA2F1A14D74813715DE2394 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; + B5F49B4FB642AF64CEE861ED7BC34E15 /* 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 = ""; }; + B60334F3C22AE7FFA20028879915E9D0 /* 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 = ""; }; + B61B4D08803D7C38D7787DCF0530917C /* hpke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = src/include/openssl/hpke.h; sourceTree = ""; }; + B61C4C73C51F782696D9D7163F58A2FD /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; + B639A70BB67FEE84AD657027E13D7014 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/iomgr/event_engine/resolved_address_internal.h; sourceTree = ""; }; + B64B1F09BC02786F942F5669B90807B5 /* GoogleDataTransport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleDataTransport.modulemap; sourceTree = ""; }; + B64D025EDD08BC07DBBFB883A804FB4F /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; + B661693A70976B945D486A2E272A77D0 /* path.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c"; sourceTree = ""; }; + B66B8585233E47D4255B365517D5477D /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; + B6803D19F3E096F6F2F6026178306E1B /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; + B6876370D7276848422512DADE7E20C3 /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; + B6A1BBC8FC7B4BDF635F51ABB76587D7 /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; + B6B21D042FD206E82E3A4CB98773C02D /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = src/include/openssl/dh.h; sourceTree = ""; }; + B6B8330FFF32C66DA58803E12204777E /* fs-poll.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "fs-poll.c"; path = "src/fs-poll.c"; sourceTree = ""; }; + B6D3FDD22B08EEE932FF7B63A136BFA9 /* tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_certificate_provider.cc; path = src/cpp/common/tls_certificate_provider.cc; sourceTree = ""; }; + B6E2E23BAC11E8C8C8DA298F18AA39B8 /* hpack_encoder_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_encoder_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc; sourceTree = ""; }; + B6F45E436801A1BFF694BD3D754D6CCD /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/codegen/compression_types.h; sourceTree = ""; }; + B6FDDCBAF741F078592B4F6FC4F68A18 /* ev_epollex_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_epollex_linux.cc; path = src/core/lib/iomgr/ev_epollex_linux.cc; sourceTree = ""; }; + B7202EFCF92A26B903E03337FD622E68 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; + B729A0B28831B865FFC228E9243456F0 /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; + B72CEFF25D1FE2A093A166B572DAC8EA /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; + B7308CFBA25EE9ECC2D5092FD3966760 /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; + B7367647018216267FDFF67F4CA2FC7E /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; + B73E5707E6FB413A7D32BF38A22CE23D /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; + B743115E61809D3AACDACD4BE8F49239 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; + B768335C97D71284F12C5D516108D5E4 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h; sourceTree = ""; }; + B7687F639EA004D3E834587C5AC8762B /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/impl/codegen/server_context.h; sourceTree = ""; }; + B78624FE5A1DD4220B27584AD7AB86E9 /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; + B79B40B94165084BE2B90DB925E978D3 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; + B7AEE217840AC844F882F50A0DE17100 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; + B7B95F82E625D0C58242561528322227 /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; + B7BB25739AF9E433BE8ADE063642EA18 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; + B7C10F1081335E2D389212D12F3D8F5D /* secure_create_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_create_auth_context.cc; path = src/cpp/common/secure_create_auth_context.cc; sourceTree = ""; }; + B7CD5CD31F4E652A9357587500D385FD /* pollset_set_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set_custom.cc; path = src/core/lib/iomgr/pollset_set_custom.cc; sourceTree = ""; }; + B7DE0D03E5F3591F88D52D0456AE8FC3 /* FIRSendVerificationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.m; sourceTree = ""; }; + B7E02E3D5BEDD9BEB9D88BA08DA0D5DA /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; + B7FDD037DA14D1B6BE7756040A7DDE77 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; + B80C37F98F4FC7219C79270D8F991D52 /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table.cc; path = table/table.cc; sourceTree = ""; }; + B819813C8087E3C90A97749F0D41EDB0 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; + B81F965BF413D73610690E9DF52126DF /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/codegen/call_hook.h; sourceTree = ""; }; + B837AF5333FFE75A7154E6638FACAC42 /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; + B844374A4F1A180C70C5CE73E953B94D /* FIRStartMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.m; sourceTree = ""; }; + B86E275AA5E7E3977F5AA59FDD19702D /* 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 = ""; }; + B8C54DA6F1A92B60BA31D5455A6691DF /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; + B8C665012904BB80A284E2D263686479 /* stacktrace_win32-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_win32-inl.inc"; path = "absl/debugging/internal/stacktrace_win32-inl.inc"; sourceTree = ""; }; + B8CA2D21358AB3D8B1763C378CEFD64F /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; + B8D2606A7860B8C389C2F0C68B582E27 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; + B8D4082C966EAD53C38D25E82C3CF562 /* 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 = ""; }; + B8E55544382FB77DD1064F492B7567FC /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/serialization_traits.h; sourceTree = ""; }; + B8F68D2D17CCD4428CCA31DA27054974 /* getaddrinfo.c */ = {isa = PBXFileReference; includeInIndex = 1; name = getaddrinfo.c; path = src/unix/getaddrinfo.c; sourceTree = ""; }; + B9040320C1CB412C60A6A4FA1C723CC8 /* FIRAdditionalUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAdditionalUserInfo.h; sourceTree = ""; }; + B9068FB16837279648FFDF1E2633B711 /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; + B91303F46DB00EBCAB2BBC1419BC4EAE /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.c"; sourceTree = ""; }; + B9177F76B26D9D939CA5497501BA0789 /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; + B91A4041C80BE52EB9E2D1C78794AE1D /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; + B931188CED9DB2CC9B4DF75D63AAAFD3 /* malloc_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = malloc_counter.h; path = third_party/re2/util/malloc_counter.h; sourceTree = ""; }; + B93B38345C542A8AF51F25E79B36C1CF /* fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fuchsia.c; path = src/crypto/rand_extra/fuchsia.c; sourceTree = ""; }; + B95E26F5DD0E0200994946BB75423CF2 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; + B9606DE331107B83AAC28256BFC09685 /* 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 = ""; }; + B96466820CBD62F2AF9E32BCEFB5E952 /* 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 = ""; }; + B9705A22F3262369BAFA33FE4F3246AE /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; + B971032D8BB96D4E88DF545A80C7B059 /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; + B971A02D27FBE26BFA9BF16706726AEC /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; + B97F8B8F610AF4D1A46AA7B45514F2B1 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_parser.cc; path = src/core/ext/filters/fault_injection/service_config_parser.cc; sourceTree = ""; }; + B99BC6CB6A9B3D12AAD97F1101B6CD13 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = src/include/openssl/x509_vfy.h; sourceTree = ""; }; + B9B3A906BC4194330C9CE9EB755B604D /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; + B9BC0A23DD7CF33F460DFB18F7F3CE1A /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; + B9C157A7650300E60D7C65974EB4CCB5 /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; + B9C7F10C9178AB9E23A6D05B5A9499BC /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; + B9CBF4FFF90E24ABF6A57A6C1329C201 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/byte_buffer.h; sourceTree = ""; }; + B9F1B3138853534A0F038A300DA8FAF0 /* FIRGitHubAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGitHubAuthProvider.h; sourceTree = ""; }; + BA202995629A2A49F55056D1EDCA7174 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; + BA265B1849D98865AD0DEB52B14AE2B4 /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; + BA26B2BC9BC04A695DE8C3D65FBD2CA9 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; + BA30B576B1BA480374C2BEDDF57E47F8 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; + BA30F8C06E619CC55B085DF645542476 /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; + BA37DBD77E02BBECC5B75B832E306850 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/impl/codegen/slice.h; sourceTree = ""; }; + BA49FE0C4CDE50779437A81F7E5E8C8C /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmac.c; path = src/crypto/cmac/cmac.c; sourceTree = ""; }; + BA4CF79BCA8609BB03C2F55211A7BCF2 /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; + BA784420DA8CAD5D19FEDE6EAAADD426 /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = src/include/openssl/rand.h; sourceTree = ""; }; + BA7898A4AF6C68989B2C09E48E3518E2 /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; + BA992609998A06D48AB905C980A8A653 /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; + BAB7BBB693941B4C804702273D2A1367 /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; + BAC4D3FAB5C4EB71C6ED3C7A8616CE16 /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_eventfd.cc; path = src/core/lib/iomgr/wakeup_fd_eventfd.cc; sourceTree = ""; }; + BAE58DCC88D406362C6583666854E38C /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + BAFD412FDD2286D101551673E224839E /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; + BB01BE7A6353C26BB4B2A77292C93EE9 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; + BB0254C4F88F8607F19C0AA4086B9A44 /* file_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = file_external_account_credentials.cc; path = src/core/lib/security/credentials/external/file_external_account_credentials.cc; sourceTree = ""; }; + BB312C38F6EC04EC2ABCF7D27ADCFA1A /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; + BB33F485C59C7D64F34094F3C72906D2 /* async.c */ = {isa = PBXFileReference; includeInIndex = 1; name = async.c; path = src/unix/async.c; sourceTree = ""; }; + BB4D81B891FA440C6DC43EC9871E96DA /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; + BB77292601473E9A170636A1AA174E03 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/iomgr/event_engine/resolver.h; sourceTree = ""; }; + BB8936BC8C24A80862A42F83F9F06905 /* hash_to_curve.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hash_to_curve.c; path = src/crypto/ec_extra/hash_to_curve.c; sourceTree = ""; }; + BB8A170E6CAA0E267AABE1E2075228F7 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; + BBCB50AFF80CF8A3B908BFAF073011C5 /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; + BBCD703816993D667C25512C6416C90B /* def.c */ = {isa = PBXFileReference; includeInIndex = 1; name = def.c; path = third_party/upb/upb/def.c; sourceTree = ""; }; + BBCE3762E1316A390F345D01E14C839D /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; + BC0019FB7094896803003559673A97BC /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; + BC0BACD880BA194D84ACE595AB85B11F /* sparse_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_set.h; path = third_party/re2/re2/sparse_set.h; sourceTree = ""; }; + BC0F1F1A4256EB58FB26AF116CBC8E40 /* cds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c"; sourceTree = ""; }; + BC1920D969E10B9A607326A637566D9A /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; + BC196B0419ADF9A76B0E337BB6D273CA /* lru_garbage_collector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lru_garbage_collector.cc; path = Firestore/core/src/local/lru_garbage_collector.cc; sourceTree = ""; }; + BC1C86E9F7028D2EFBF4F0C1E9D2989B /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; BC3656EB186ED503E1A92DDC3FC4DD80 /* Pods-Flash Chat iOS13.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Flash Chat iOS13.modulemap"; sourceTree = ""; }; - BC45D0BB316586D6D853CCF62185FADB /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; - BC46D9B27D539E4B26C20500CA66FA09 /* 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 = ""; }; - BCAC0051DF6BCED758E1C8A451A2C598 /* 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 = ""; }; - BCD67F62D3A37E89988A0DDC70EA3827 /* bytestring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bytestring.h; path = src/include/openssl/bytestring.h; sourceTree = ""; }; - BCD6A6F72A851683BA2728B540EAFC96 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - BCED264BBCFE204D2BD0C8D3B6BE4EE5 /* 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 = ""; }; - BD0BE4A3B06C86885A15365B31733013 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - BD15625037E9471300A002C478F59397 /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; - BD1CC498F0F3AD4EB47FD2C2A09BEB57 /* 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 = ""; }; - BD32FB5A07861CDE58BA4E26DC7496F0 /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; - BD49302C45F7A5BB6E788EF11B82B834 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/encode.c; sourceTree = ""; }; - BD6757A48ECB7053F1A1B5F3E091E57F /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; - BD7B2F4FBCD4F14B3A7BEBF4EB0B4C4A /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - BD7E8B028D397147AB01F07D6053B91B /* inet.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inet.c; path = src/inet.c; sourceTree = ""; }; - BD89197787961B81A6DB15F600E03C3C /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h"; sourceTree = ""; }; - BD960606F502C6BF27146661CB9F3505 /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; - BD9872F7FFC3C67688F09B39A94026EE /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - BDCD01606BE101721D72F2AB17CB1F2D /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; - BDDD4658EE78ABCE64C2EC821A9FAD39 /* Libuv-gRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Libuv-gRPC.modulemap"; sourceTree = ""; }; - BE170FC7CA84E6477031C385CC1729A0 /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; - BE2D74B683D68FBA5BDFFD070850F111 /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; - BE2DF5EBEED0D89EDDEADAC0D721A079 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - BE3078062B091F0752096479B2C7E1ED /* 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 = ""; }; - BE3545A69FD8DBB9F1BF5937E8A99D07 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; - BE63F8FF12D5AF60D207502A5E686588 /* 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 = ""; }; - BE7424704490822F4A39D8365399F223 /* 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 = ""; }; - BE9B3771AD49B4115D29B2442FBD608B /* 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 = ""; }; - BEB1461DAD8F5C423349C319FCDCB58F /* 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 = ""; }; - BED43F18EDA973069665FC5F582F01FD /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; - BEE10044734B3238201A3C676591E4A9 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; - BEE479A9ED41540EF83A6C10E34FBA50 /* city.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = city.h; path = absl/hash/internal/city.h; sourceTree = ""; }; - BEE7451B0DF47427A671DA88BB59CC83 /* byte_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_stream.h; path = src/core/lib/transport/byte_stream.h; sourceTree = ""; }; - BEF6DF5864028E3C2AD14E09D21E240F /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/ext/filters/client_channel/lb_policy_registry.h; sourceTree = ""; }; - BF0E9AD1D54D168BE2EED10556C27EC9 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - BF2BDCB3DCE8AA66A08BE3492F9E85B8 /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; - BF2FE446350A1E047C2367CD87369454 /* 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 = ""; }; - BF36737EF3290BF92212CEB76D0F1111 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; - BF391E4046D3E38846E557EE766872C6 /* 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 = ""; }; - BF53444CA98CB0EEF8C2DE8E7F24355E /* 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 = ""; }; - BF735140546D90B9FCCE110DAE6474EA /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; + BC40695F2F6396F032220D1451CCD029 /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; + BC411FEAB616521F0A7A822B7F964777 /* grpc_alts_credentials_server_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_server_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc; sourceTree = ""; }; + BC44DB69FB393BB7C0FD2E9E3293C692 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c"; sourceTree = ""; }; + BC5E4BC5D37F2CCF687305ADB6AB5BE2 /* 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 = ""; }; + BC72EECEE7E3BB5401671DA6A316914E /* poisson_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poisson_distribution.h; path = absl/random/poisson_distribution.h; sourceTree = ""; }; + BC77F18C7F68FEA5CA73A88F15CC7759 /* curve25519.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = src/include/openssl/curve25519.h; sourceTree = ""; }; + BC82608A1C2C06D7B4D713590A6C026D /* loop-watcher.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "loop-watcher.c"; path = "src/unix/loop-watcher.c"; sourceTree = ""; }; + BC87A54C8422336153CB1B1E8975A27C /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; + BC93175DD24DC4CB4EA66B5EEC92AC8C /* 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 = ""; }; + BC9334B46F819842EF69A205DF8890A2 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; + BCA84FBB831E18DAEED6780BEC07AA8F /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; + BCC0218C62157626D35EBD1545C77795 /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; + BCD1545900C0E9A02EE796E16CF9B24A /* 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 = ""; }; + BCD640408F442FF20BD84FF1F5D38346 /* server_initializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_initializer.h; path = include/grpcpp/impl/server_initializer.h; sourceTree = ""; }; + BCDAD635D272845EA15B9510042A2246 /* 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 = ""; }; + BCE53906EF594B37ECA01FEC8E2F31E8 /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; + BCE5C92237933665EDE7E6D62B58974C /* 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 = ""; }; + BCF3C9F2D9DC24DADEBBED200F8F9269 /* FIRVerifyCustomTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.m; sourceTree = ""; }; + BCF944E923AADCF9C303E3ABF28E801F /* v3_pcia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pcia.c; path = src/crypto/x509v3/v3_pcia.c; sourceTree = ""; }; + BD05B7C9A5F6F94C585B4133D260B43B /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; + BD1BD7D4DA91AA96E71CBB04161C2F05 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; + BD1DB3DFE1F6E9AA1ADA0F536309E35E /* FIRGameCenterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.h; sourceTree = ""; }; + BD56056812D152C3191F327C00983F29 /* scheduling_mode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scheduling_mode.h; path = absl/base/internal/scheduling_mode.h; sourceTree = ""; }; + BD865B04E33AF610B8B428994F01D006 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = src/include/openssl/obj_mac.h; sourceTree = ""; }; + BD95B891564A766981E6C5C298DC0C45 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; + BD9AD77C0B70F4A3D45FC51E2CF23024 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + BDB2D9BC37BB263B3E75760B33A58EBE /* FIRGetProjectConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h; sourceTree = ""; }; + BDB93D5517DAFBAFDA7015F2CD7D716D /* time_zone_lookup.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_lookup.cc; path = absl/time/internal/cctz/src/time_zone_lookup.cc; sourceTree = ""; }; + BDCF4567F6A955E8C5554D22CE50A51B /* cycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock.h; path = absl/base/internal/cycleclock.h; sourceTree = ""; }; + BDFEAAFA1B15857D7D2008957A008CEF /* 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 = ""; }; + BE0D23A5D5765304560022F42EE13C28 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; + BE2FD637962AAF867E1FA428AE88D9AC /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; + BE610C5B61E2AC9BA369DF4D2704CF7A /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; + BE6D14482E6565B89855E198AF5F709D /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = absl/random/random.h; sourceTree = ""; }; + BE743415B7FC30444EBDD89B6507AE6D /* GDTCORLogSourceMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLogSourceMetrics.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORLogSourceMetrics.h; sourceTree = ""; }; + BE7E1B85B2127296946E2328446E9232 /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; + BE89FEB16A144A810669D8956B8E854B /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; + BEA8D6B766B51703EFDAD7D88F25209B /* write.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/write.nanopb.cc; sourceTree = ""; }; + BEC713DFFD4769298A41171C604612C2 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; + BEDF664DB16A959C39F6ADE0982DAACE /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/support/async_stream.h; sourceTree = ""; }; + BEE120EF00AA9CDE2F1DD3DDDBA5C263 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pool/internal.h; sourceTree = ""; }; + BF1244C45253F59894428DC5998B63C1 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.cc; path = src/core/lib/iomgr/event_engine/timer.cc; sourceTree = ""; }; + BF1979D8929617FAEF348191A2E06EE9 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = table/format.cc; sourceTree = ""; }; + BF39244B6FEFC7E2F530B26A4A58BF5C /* socket_utils_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_linux.cc; path = src/core/lib/iomgr/socket_utils_linux.cc; sourceTree = ""; }; + BF3E9010E79310DA94C901877071BF6C /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = src/include/openssl/pkcs7.h; sourceTree = ""; }; + BF4215CBD6B65F5339C83938B61508FE /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/codegen/grpc_types.h; sourceTree = ""; }; + BF45AD67A294EEA6993ED68FC20DEF0B /* FIRVerifyPhoneNumberResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.h; sourceTree = ""; }; + BF4AD51EA04E5DDBACC14BDB5BC4E926 /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; + BF4FB011FBF38983A560A386F247B366 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; + BF53D64C08E5253830689DB14CF31A6C /* FIRAuthStoredUserManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthStoredUserManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h; sourceTree = ""; }; + BF62FBF57F7BEECBD1E57458F58C79A9 /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; + BF6B2AED08B7B8325D2C3E00110A8AE8 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; + BF8C791CC0644F7FAEE3E2618256811B /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_bitst.c; path = src/crypto/x509v3/v3_bitst.c; sourceTree = ""; }; BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = abseil; path = absl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - BFA3FB9DBFA3D42EA939C6DDDB126768 /* 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 = ""; }; - BFAD82D80D202F12003E17BFE2F36495 /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; - BFB064FE18187EB3C731BEF2215C2048 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - BFB6E1805E7B3DFB71AE091FCE70E7A7 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = src/include/openssl/cast.h; sourceTree = ""; }; - BFC81D8FD83A9D46AE01A23BE7468447 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; - BFF4C2DC688DA522447E4ADF6FF52B56 /* 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 = ""; }; - C0181A546BC885270BF0ABB42116D71B /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/support/byte_buffer.h; sourceTree = ""; }; - C025D0ACDF630B43FA270B5A85E82439 /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; - C05B927A002AB8ACAF7BF2224C480E60 /* slice_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_utils.h; path = src/core/lib/slice/slice_utils.h; sourceTree = ""; }; - C065202260D03BDA9AAA9C3FC89C4A2D /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; - C071FFFE6BFD5876239513081F41DEA3 /* channel_arguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arguments.h; path = include/grpcpp/support/channel_arguments.h; sourceTree = ""; }; - C07B7906FDE9FDCEE614599B22B4C281 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - C07E225FC776C11EA0F84C20D4E00D68 /* stringpiece.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringpiece.h; path = third_party/re2/re2/stringpiece.h; sourceTree = ""; }; - C080DEC7E66CDD884AA5D181A79249D7 /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_service_config.cc; path = src/core/ext/filters/client_channel/retry_service_config.cc; sourceTree = ""; }; - C0898967AE05308D359F3516E496E156 /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; - C089E3B830A7283C0DB5C5098FED9B0D /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; - C08F143799202F9EA4BBD8C7E164FBA8 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - C09630187431D682F28B9EF86B91E3FC /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; - C09F988BE5F5A2AFB1AE65EA56151CC3 /* 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 = ""; }; - C0B54C1A94EF671BCA40735DC923B743 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; - C0BE8D08025C9530A7003EBB8368559B /* 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 = ""; }; - C0EFB6B2E865C9C1C5F304337A94CC15 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/impl/codegen/port_platform.h; sourceTree = ""; }; - C0FD7E8CDCE2D3AC3E45F2022FB15C89 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - C1307A7BCACCC3F4A4E9C91FB20801F2 /* FIRResetPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.m; sourceTree = ""; }; - C13BC162567A1BE6DB8C4EECE4EDDF43 /* 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 = ""; }; - C1401BBCBC6B2957DDA7FD27DBEEF71F /* barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = barrier.h; path = absl/synchronization/barrier.h; sourceTree = ""; }; - C15EE8F33D1ACD481736782683F98BC3 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; - C16D69764B5A336CE2E754A80C2D7336 /* message_decompress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_decompress_filter.cc; path = src/core/ext/filters/http/message_compress/message_decompress_filter.cc; sourceTree = ""; }; - C1707012F867F69FFC65F10497BFCEC4 /* 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 = ""; }; - C174AA07C3256E1DA497927FF6962A9D /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; - C19801C5C5306C528B28DA52BD5E10AE /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; + BFC59C1A891AF645FBA3160A1790A709 /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; + BFC5F518EAD7FDF7AF14F9346F4E5F64 /* alts_zero_copy_grpc_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_zero_copy_grpc_protector.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc; sourceTree = ""; }; + BFD97307A56651615D2D945105452D50 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; + BFF3A9F1169983E682305EE6A95DD333 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; + C00C2E14BE4C51B11857C4890AF198FA /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; + C00FD1CABAB2CB01D6FB9411D7042884 /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; + C014901C7F654ED4B4262D0079D07AB5 /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; + C0269689F05C73F4A61251697E1AF937 /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; + C0470EDDE4EF43E478AB45929CBD1396 /* unix_sockets_posix_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unix_sockets_posix_noop.cc; path = src/core/lib/iomgr/unix_sockets_posix_noop.cc; sourceTree = ""; }; + C05EF9276F6E3DCF6EF14F5FB6ACF481 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; + C068A54678F87D7D7E594C0F4D38C800 /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; + C06DA6C37EF321C0B3B75509245056EF /* 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 = ""; }; + C075A31908F7742A25720BB203F9A1C0 /* http_uri.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_uri.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c"; sourceTree = ""; }; + C0C3B265B944168433D31B78C72A59EA /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; + C0CA4478DEEFA84A0F4539B305637EBC /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; + C0D595532931C4E308169CD53104436E /* FirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FirebaseAuth.h; sourceTree = ""; }; + C0DFCA71D49EB2490C0737837D1089F2 /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; + C0E54EC9767B1069A725D44C80D1268F /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; + C0EF4305A9FDADCB8678097C6FF6FE6F /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; + C0F3984CA713818B460B6CEAFBDDBB2B /* alts_record_protocol_crypter_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_record_protocol_crypter_common.cc; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc; sourceTree = ""; }; + C10D8CDF50E90BA044CE070187FA8CAD /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; + C119E0D9FCAF3199104CFC3A9C5E9183 /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; + C1635AFD84A6B1B4041499D26FAF01A1 /* cordz_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_info.h; path = absl/strings/internal/cordz_info.h; sourceTree = ""; }; + C18E3FD7F2341479AE24F24A7ADB425D /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GTMSessionFetcher; path = GTMSessionFetcher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C1A734BF9CAFB89DFA61BC0BA6A7DB06 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; - C1AE2E24967046C26451A573AE94D85A /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; - C1D5F80D3D9518CA8312A8A564F580F3 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/support/message_allocator.h; sourceTree = ""; }; - C1FCB318C0C0144F3ED976295FF71A5F /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; - C2050AD2DDD42864B31AC7CF1313B383 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; - C20B0DF63F30BCB3C59D4F1804F4110C /* type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_traits.h; path = absl/meta/type_traits.h; sourceTree = ""; }; - C225D98BEC5D807A2CA9653D0623D835 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; - C22D0766A636764E0563915F251CA9BB /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = src/include/openssl/pkcs7.h; sourceTree = ""; }; - C23376E4170712F175AE36145E20BA78 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = absl/base/log_severity.h; sourceTree = ""; }; - C2456C9738A89EFA5B8A071C2B2732C6 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - C2479404D5324CCA7B5194BA770E6A62 /* 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 = ""; }; - C249643E210F1F2C7022B7B6C54BC15A /* hkdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hkdf.h; path = src/include/openssl/hkdf.h; sourceTree = ""; }; - C24BB8BBC14D491017C07EAB5AF616A0 /* 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 = ""; }; - C24D078D0AA495C15B5466E120AAFB0E /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; - C25D306CBA095F95137A49734A38A4AE /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; - C264B61845741E4F457B9EDCF2981396 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/impl/codegen/status.h; sourceTree = ""; }; - C283B4B18029941C291B5DB40FB284E5 /* leveldb-library-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "leveldb-library-Info.plist"; sourceTree = ""; }; - C28F5CFA19045E7315C4DEC6E24A1EED /* FIRTwitterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthProvider.m; sourceTree = ""; }; - C2907F9DE65F15117C89FF5CE675D045 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/support/sync_generic.h; sourceTree = ""; }; - C2C9BA32B760A37579467B79FCBFDDE3 /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; - C2D79FD11B6F243423DFA89100E4DEA2 /* FIRMultiFactorConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorConstants.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m; sourceTree = ""; }; - C2E8514D03C47A03032FFE5FCAFCAFF2 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/support/time.h; sourceTree = ""; }; - C2F2316CD0DC56F88085F05A94197C8E /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akeya.c; path = src/crypto/x509v3/v3_akeya.c; sourceTree = ""; }; - C2F8FE67065265A16B1610AC79E7F42F /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; - C3026A74C8A47C9916019DC5612A832A /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - C309F76B736E422845A3DDF683DFD0EC /* 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 = ""; }; - C30E8C02095BE8D5E92A9813AC9D3323 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - C3178AA1C1D7B8AF668B13F35208BB37 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; - C318166DEC74F9FDC1958B12F6A22CB4 /* 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 = ""; }; - C31858E4515A83E1F4971BB4EFB1ADA4 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h"; sourceTree = ""; }; - C31D0750EBFDE96E619288FCAE5CB988 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; - C340DC74BD921676B8BCF0EC7E201DDA /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; - C34D80071ABCB24F5275D0B26995C805 /* 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 = ""; }; - C367CD8F105C4739554637A876574A44 /* FIRAuthBackend+MultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAuthBackend+MultiFactor.m"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.m"; sourceTree = ""; }; - C368D6A71A3C78EED135868B46878AB4 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - C36DEB3E1303FC9907F60D9A13C16113 /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_file.cc; path = src/core/lib/iomgr/load_file.cc; sourceTree = ""; }; - C36EC1A4CF3BE368F9605138CD7CB99F /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; - C373C8B4F652E5E072559B5DA58DD6ED /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - C380B43CE839010FBBC62AF26CBCFA10 /* 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 = ""; }; - C3878639BF87EEB27B1B1A16FD452E87 /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; - C38798F9AF84AE7241A2F6AC2632E204 /* 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 = ""; }; - C3CD6488F7C19732C0D5ADE3B731F6DB /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; - C3CFED6ADCDF1D2EFF227DB4836B1822 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; - C3F5F8034D114007F023291DE206802F /* 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 = ""; }; - C408EC37BAA293E7155C7D1648D2FD10 /* 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 = ""; }; - C430DE4B2EA74D3BA63BE58F917EA493 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ecdsa/internal.h; sourceTree = ""; }; - C43412CF783078771C9977A38D5AB68B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/digest/internal.h; sourceTree = ""; }; - C43F0EAB8EDA84B852C3A713CC2689C5 /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; - C449FFCCC30AD8E23058396786A3C6FC /* FIRMultiFactorSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorSession.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorSession.h; sourceTree = ""; }; - C44C4FD3A6FA9FCC87B572A73B7BCF58 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/impl/codegen/message_allocator.h; sourceTree = ""; }; - C44DDAF38CF22A343A43031C03BC8850 /* 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 = ""; }; - C462C711E99A867BDC0A5126C46C710A /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - C46576BB3125EA5A63BBE2F24564C6F6 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; - C465A378E915E97B7FE609DDC0D28B3C /* 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 = ""; }; - C480D3A93BA5EA1C610DF0C1B208B9FD /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - C4990273A131F327C2A6DA911B32D46B /* FIREmailLinkSignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.m; sourceTree = ""; }; - C4B8AA83F3EC994CCADAD9294FD100BB /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - C4B941A22C04C8C6DF1143C81758C0D0 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - C4C728DE09CE2A2A6159631A1E8D7B19 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - C4CC0C1FF019C419087C5855EBE95A23 /* init_secure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init_secure.cc; path = src/core/lib/surface/init_secure.cc; sourceTree = ""; }; - C4E98A827DDC89CDC66B26FA1BBC60EC /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; - C5035EAE6156F66A833FA2CC97DDFBE3 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/cipher/internal.h; sourceTree = ""; }; - C50C5B10DBE4BA6B94C7711AA67F4C39 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - C5124ABCF913986F2FBD6E597A502927 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = src/include/openssl/lhash.h; sourceTree = ""; }; - C51B5200207C17F77D9517A51B97C6DB /* 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 = ""; }; - C54E9148FEA94098F4CC3629623CBF7A /* 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 = ""; }; - C56B22C77FA201B137512AAEE747F26C /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - C5812F8E628993B351C6066BFE35E56A /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - C59534164E63CD30114D4065A8CBD5DE /* 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 = ""; }; - C5A8B75D615666E91690FA79F7D8FD89 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; - C5AE5875EFB2BA3FAADE1A0F36FA79D0 /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; - C5B6F5FCEDB50DE728724C20810DB6B7 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; - C5BE69C5A2C904956ED2F634D6E20987 /* event_service_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c"; sourceTree = ""; }; - C5C3218E007EE16E154966A6F39936C0 /* gRPC-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.release.xcconfig"; sourceTree = ""; }; - C5C8B26B98A7824DFEFB1F9F680AE3D6 /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; - C5E124B89D667ED1449BE4C47509B52A /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - C5F13CBEDBF4289B7B9D1A04082910E5 /* pcy_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_data.c; path = src/crypto/x509v3/pcy_data.c; sourceTree = ""; }; - C5FAAA7556C6DA30CE973C8CEF0C7EED /* 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 = ""; }; - C5FC4119F20B28824DC1F434BBC1607D /* 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 = ""; }; - C60F67B29A445EDFA19D3D40C7132D24 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - C6109CFE5F5C0D455544CAC1F2CE1120 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; - C61C6E21E370D90A0AF9C13AD012973F /* 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 = ""; }; - C61FE6CD94AEC48833C25BFA1E014AD5 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - C621179BFB1E37F5306E3CD5329A64CC /* FIRAuthAPNSTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSTokenManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.m; sourceTree = ""; }; - C65F4480E8AAB8456693B6C7292E8837 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - C6A614687D8D96084D0809B9DBC13200 /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; - C6AF56E05FC2FE32ECEAA6204218D847 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kqueue.c; path = src/unix/kqueue.c; sourceTree = ""; }; - C6C32CF6931BAE69159E53D68CAEFA01 /* lds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c"; sourceTree = ""; }; - C6C9742D5F12BF35FFE06B12EF359D6A /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - C6D86630663F758EA2D3029744C730C4 /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = Firestore/Source/API/FIRTimestamp.m; sourceTree = ""; }; - C6DE9B717DC0FEA593046F3A90FDB8AF /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - C6EA938BA2D74D97E81DD55F0F7C3E43 /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel.cc; path = src/core/ext/filters/client_channel/subchannel.cc; sourceTree = ""; }; - C6ED1D2DD590E86D9F22C0BAD48C6BB6 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - C6FA280F4CB294DDADC936C906E8E172 /* FIRCoreDiagnostics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnostics.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h; sourceTree = ""; }; - C7092725CD6866BAD043B6BBB2434107 /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; - C725D72881475EB1E4C44CAABCFDE942 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; - C7269CBBBB056E18A8989C8BA49561DC /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - C754FD76ABD2B110D8118F685362AA51 /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; - C75D296438925FC92ABFA90B90F9BFC8 /* FIRAuthAPNSTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.h; sourceTree = ""; }; - C7629139556F5591A69225C1C4A4E5F9 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/impl/codegen/interceptor.h; sourceTree = ""; }; - C765437E421FAC1FFC95D9BC8EB9A1DD /* fs-poll.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "fs-poll.c"; path = "src/fs-poll.c"; sourceTree = ""; }; - C76FA5CDBBAE22AAB9DBFBE95E3B330F /* write_batch_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch_internal.h; path = db/write_batch_internal.h; sourceTree = ""; }; - C782842554B9F337E71CD48E2C85E5EF /* sync_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_posix.cc; path = src/core/lib/gpr/sync_posix.cc; sourceTree = ""; }; - C7B775C26829ED5BC91474B6A43CB9CC /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; - C7C58B7F97CDE713ADE08F118160FEA4 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; - C7C80B9D1D22E6DFB41051C9CA6E49F7 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - C7E80206B45ADDCEAB1569064FDA5ACD /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; - C7F0EED370268E10143DD7516508E404 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; - C7F2144D96047B76445CFC21184EC9A0 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; - C805321F397B4B00FAAFD18D1288C36E /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/impl/codegen/sync.h; sourceTree = ""; }; - C8485145882155D44FD39FE4D318CBD9 /* 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 = ""; }; - C84AF9160F4FD8BA56412517C9DE9414 /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; - C84F92D72E05064A11C297612A80AA00 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/impl/codegen/stub_options.h; sourceTree = ""; }; - C863B9815B90F21CFBD4CD5E2CA640D6 /* 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 = ""; }; - C8671C2960EEE6841CC7A15BE702D244 /* FirebaseAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.debug.xcconfig; sourceTree = ""; }; - C869A9447A230E6F32C9AEB80C606443 /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; - C87A121731B0E72BA0E8122F4BCE45FC /* FIRFinalizeMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.h; sourceTree = ""; }; - C88EA6C7101BBD747B97A0B7481DAC4A /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - C8A770B7AABB4322CF784037E10DAC70 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/optional.h; sourceTree = ""; }; - C8AC3660DECA55EDD75182491BE0E02E /* 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 = ""; }; - C8B8E272838902ADC69770B38F458226 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = ""; }; - C8C1060B2E162C905C627700F8894361 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - C8C6CD11CED6B0BDF15944727972ABB8 /* 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 = ""; }; - C8C751CB698DA970855E6D515D81C9BE /* route_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c"; sourceTree = ""; }; - C8D8F191902ACBE0F9EDCB74002C74E3 /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; - C8F7FCD73D7043163D3436BE5E6A9B86 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; - C90F6CF45AD2EEE90F41347E67511EF8 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; - C91559F5E07109588C37C0D2D1A46486 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; - C91B02EEFA3E664251FDF793BCAA4794 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; - C92CE0EACD0FC38840D6952A90BE5F5F /* 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 = ""; }; - C9429E0E6D8F7BF91DC68FF398D7ED89 /* 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 = ""; }; - C9509D87C0A4DDAD090B3C9631D46A12 /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; - C9511868A4CEA24D50389DAB2D7BEFC0 /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; - C95978BDFFF773913E34C5ED2DB9488F /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - C96CFA094D08F6CA77B07E8EBBC2CC98 /* FIRSendVerificationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.h; sourceTree = ""; }; - C9701281FDA344DBA24DF7E07024D6B4 /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; - C9752E1EBD2815BC2CD3D61E95571CBA /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - C9853E639C92F35434C27D19B4960659 /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; - C98EFC6D454E6CDF5D7C99C1E1FEFA5D /* 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 = ""; }; - C997D04DC51A54D4B2318DB1F5AEA7D9 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - C998A8231621FB295F4B4010E042AE41 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - C9B5D395F4C7395880FEC38279818836 /* loop.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = loop.c; path = src/unix/loop.c; sourceTree = ""; }; - C9B66061FF666FD862D90913825CED03 /* 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 = ""; }; - C9D8AE15FFFB887131033ADAA1AD8CD9 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - C9DACB60866DE5EC67581EE57AAA2414 /* 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 = ""; }; - CA203005E2A8CEBFA37A200D2ADED6AB /* 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 = ""; }; - CA2E1EAFC399537BCAFBE133BC2B1004 /* filtered_re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filtered_re2.h; path = third_party/re2/re2/filtered_re2.h; sourceTree = ""; }; - CA3D0ADFC3A26CA2391392CBA33D0C59 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - CA428B7057A5A62FB68686C4F09239DD /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_parser.cc; path = src/core/lib/service_config/service_config_parser.cc; sourceTree = ""; }; - CA432932CA7C470A3DF820BB6360486E /* FIRAuthErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrors.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h; sourceTree = ""; }; - CA542F9D5EBAA2648641D0696B7DFAC5 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; - CA6AF997449AB6C9E406D9576E3CF119 /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = util/no_destructor.h; sourceTree = ""; }; - CAA40620D11149B143346DF983137CD2 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; - CAA99C6D40B031E5F2A776580E03145B /* 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 = ""; }; - CAAAC1CE10834B003C03FB067F27CACC /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h; sourceTree = ""; }; - CAB992E9093B80F86021A07E2067C487 /* 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 = ""; }; - CABC20E5064D11C863B55866F6D74AD3 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; - CABD9C6B4B12971819F0BB5FE75CE838 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - CABDE50BEA39C96AECB3BEEFDA031110 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - CACBC4FBE9681958C6A8F52CD5B1DF40 /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; - CACC8B25D9AC22712B4DC3749F6CDEF5 /* FIRVerifyAssertionResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.m; sourceTree = ""; }; - CADBE25E9532EE62AC80186E0C392EFC /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; - CB12FE3D2DB278EC95BA232B873626CB /* 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 = ""; }; - CB16C0F892A968FEF894B2D211E63F25 /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; - CB25817ED74FEAB86AD0696FCF1FF893 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; - CB3434DB42D580FF9206FCA5DC1B7285 /* gaussian_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gaussian_distribution.h; path = absl/random/gaussian_distribution.h; sourceTree = ""; }; - CB4D14A531525F369307B4D8D5300CF9 /* stream.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stream.c; path = src/unix/stream.c; sourceTree = ""; }; - CB554E4EFAE2152B9F0F887AAA50F612 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - CB66DD72E8C1A2D3A12051569026F198 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - CB87F14890BC900D8882C824C4365F72 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - CB90DC8E59620E9204E545F3B1EFF01B /* gRPC-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-Core.modulemap"; sourceTree = ""; }; - CB97F2AEDDD7B018E84CECF9EA3CA927 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - CBB9ABE80AE02D4BA51EBD6FD14CAC50 /* 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 = ""; }; - CBE18E936DE3AEF0D077965B343DF523 /* 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 = ""; }; - CC063C2A7B8CB16DF2DFD45FBBD5CA20 /* arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arm_arch.h; path = src/include/openssl/arm_arch.h; sourceTree = ""; }; - CC08A282FD10411FBFB14760A5279F1B /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - CC0A5D90843E279269F9A66DA5AD1C87 /* 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 = ""; }; - CC0BD34C39553239FE70DFB4FA7F6483 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/unix/spinlock.h; sourceTree = ""; }; - CC0CBDAFB6698BA7CC2DAAC93ED2FFE6 /* FIRGetOOBConfirmationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.m; sourceTree = ""; }; - CC2AF9358F90E27C92C5EE8088F89502 /* custom_tag.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upb.c; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c"; sourceTree = ""; }; - CC2B41542185814F8B2E458C30ED2F92 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; - CC2F8AC21E20AE51FFE111ABB972A7BD /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; - CC3A0B9BF28899FB9B0139659E71B356 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - CC72DE90953D843CA4A9CDF23F33366B /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - CC7E2A7F82347F1D0D3DCD64E95B64B8 /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; - CC8F9E037B1CCC32C489B94082E3E01D /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - CC90425DD9169FFEADA8355B46159D01 /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; - CC9D9002A2F38A3892043EC9E0BF3891 /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; - CCA0559AD89F4C152AA990E7F686E22B /* pretty_function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pretty_function.h; path = absl/base/internal/pretty_function.h; sourceTree = ""; }; - CCAA24BD543FAD45679BB35E20E75EF2 /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; - CCABC239B4A170829EF83176891AFCC8 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = absl/random/random.h; sourceTree = ""; }; - CCB304597FED9277C05362D1BC6433A1 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/span.h; sourceTree = ""; }; - CCB58DF526AD4589CB46243E1739BCB4 /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.c"; sourceTree = ""; }; - CCB7B9E539043AC58010754DCF25C64F /* stats.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upb.c; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c"; sourceTree = ""; }; - CCD3458F0E0060AE7CAC7A5C21933035 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = src/include/openssl/rc4.h; sourceTree = ""; }; - CCD8D9D7DC02DD36502C40878046E492 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; - CCDD770CE4C3ADCF3BE8F8901FD0BD11 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - CD10693D79C4585EB7768E62B52B9822 /* 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 = ""; }; - CD215B139F99764ECFB4ABE97A34FCE1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/internal.h; sourceTree = ""; }; - CD49DBCE5F26C030D3026C20CC3B4633 /* FIROAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h; sourceTree = ""; }; - CD5C4BC9194C5D8456F456356066A8D0 /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; - CD61D5C404275309588C25D934759FF7 /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; - CD70ACA3F6A313E808CA86A0A53A0203 /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; - CD79C45A43DBD53D96E4584895F586DD /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; - CD8FB3756F6658B26C1416C73BC4E6DA /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/base/config.h; sourceTree = ""; }; - CD9035BC8BCF884010568F764CAC6565 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - CDB37A77A9F84910B17B9F14844F5A59 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; - CDB77A157E055FBB99BE17E6FB5EC206 /* load_reporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_reporting.h; path = include/grpc/load_reporting.h; sourceTree = ""; }; - CDB9354E8802B92EE62BAFBF065D4710 /* FIRAuthWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebView.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.m; sourceTree = ""; }; - CDF34C585EF858951B444984D28BBD12 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; - CDF6EA864689F2CC9D215984D6B411D0 /* compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compare.h; path = absl/types/compare.h; sourceTree = ""; }; - CE0237899554CBB5F63DDAA329A2E06F /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; - CE03DE28E455BF7EA43BA2D1DAC48B55 /* FIRDeleteAccountRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.m; sourceTree = ""; }; - CE1D3F5CECF3126959D7FE0D1F812792 /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; - CE2A944A1ECC8689E7A9DDDB9023F511 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - CE325CF2B3B0AB572793CC4925DD03E2 /* 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 = ""; }; - CE3EDB15AA47F928FC042E2FFAC93322 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; - CE40B2D54E116F757C325DB401E6A7ED /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; - CE455BCF094DE1095B8D3E4C98E662D0 /* FIRAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthProvider.m; sourceTree = ""; }; - CE6B35F248E874B3A76BC25335F41458 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; + C19C66C81F43400E6B7F3A1A6332C07E /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; + C1A43C770F0E82FB48D84F4EB3501B7B /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/slice_buffer.h; sourceTree = ""; }; + C1B65B50C5C5DF709CB6D2A92CD9DA98 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/completion_queue.h; sourceTree = ""; }; + C1C13ABE79DFFB8A1B66FDA6EF6E509E /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; + C1D37B3907D8B3354CEBB3285181C738 /* tcp_client_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_custom.cc; path = src/core/lib/iomgr/tcp_client_custom.cc; sourceTree = ""; }; + C1DC8938FC1BF8681D158C98E3380835 /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; + C1ED71E46964A959DA577A8AF622682C /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = google_c2p_resolver.cc; path = src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; + C200A0C0BF6F4F6A5225DBAD53C21C7B /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; + C209D0BA4978D3971C2E170713EF48A0 /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; + C22C05CB079D376E0606F56E33CBFBCE /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; + C289277C3D3052223FB6396FF2A7F75D /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; + C296127BD57AFCDE78841A748D2B9B07 /* 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 = ""; }; + C296C5E349BECEBF19D3BB0380C89B28 /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; + C29A0661738030DE0724A0F9CB685EB9 /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; + C2A9A58EF080DB671CD159B73866D874 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; + C2AABB73BB82723F79E422921B9CA907 /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; + C2BF957D6662E4477A4518C82A7380F7 /* FIRPhoneAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential.m; sourceTree = ""; }; + C2C62FDC134D55EE0909F4F199BD41A3 /* switch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = switch.h; path = src/core/lib/promise/detail/switch.h; sourceTree = ""; }; + C2F23EB7B1DF87A20AE1CD0347B8F4DD /* low_level_alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = low_level_alloc.cc; path = absl/base/internal/low_level_alloc.cc; sourceTree = ""; }; + C31ABE5A506EAAFC6D614E6722359819 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; + C31B294CC0DB58D6F2B509E44D1707AD /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = certificate_provider_registry.cc; path = src/core/ext/xds/certificate_provider_registry.cc; sourceTree = ""; }; + C324C86C728B8EB693C8B78FC782FEF3 /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_manager.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc; sourceTree = ""; }; + C326E59137784B375EF1E2CCA8621DE2 /* demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = absl/debugging/internal/demangle.h; sourceTree = ""; }; + C32E272CA62338AF25481DB13397E7EA /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; + C334ACB0517F9175CE5B8704B4FCDD42 /* query.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/query.nanopb.cc; sourceTree = ""; }; + C33D77F50AE2C38F9A7FB90E19CB6998 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; + C33FFCE12E841F4D422156626D2EB150 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; + C34A8D32D40B10D34349B36313AB1494 /* pkcs8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs8.h; path = src/include/openssl/pkcs8.h; sourceTree = ""; }; + C35F9509DB579DB6879A5B1C96E24659 /* 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; }; + C38130318F5AB1D4AA51736E617E0C6C /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; + C385857C6EF39474FB39532ADFC34227 /* alts_handshaker_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_handshaker_client.cc; path = src/core/tsi/alts/handshaker/alts_handshaker_client.cc; sourceTree = ""; }; + C394F7BF92B7905507AAB07EB603D42F /* BoringSSL-GRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "BoringSSL-GRPC-Info.plist"; sourceTree = ""; }; + C39E9073AB7C012889178092695DA052 /* insecure_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_security_connector.cc; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.cc; sourceTree = ""; }; + C3A16AC189AD201D2EBA52EC6AFCA5C3 /* server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder.h; path = include/grpcpp/server_builder.h; sourceTree = ""; }; + C3ACBB7E566FDC8F3068FF86E61D8B19 /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; + C3AF09FFC8175DAB3DD55A2B9080EA22 /* workaround_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = workaround_list.h; path = include/grpc/support/workaround_list.h; sourceTree = ""; }; + C3B9AB427A7A1CD0B31DC58523779A42 /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; + C3D22391D63CA983FE0930C3FE3D44F1 /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; + C3D5B832E4B32AA1E544140497AFB731 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/support/client_interceptor.h; sourceTree = ""; }; + C3E0718250A8E4A74B431A01D19FE34E /* block_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_builder.h; path = table/block_builder.h; sourceTree = ""; }; + C3EFB0ED11280C1E41A8A1D9B7D1E204 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; + C4059BFE58999271A6B6CE71DF543AE2 /* 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 = ""; }; + C4138AF48FD95F99619C33DF0D042ED2 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; + C43E3B31216E05531D22105ECFD7DDF3 /* 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 = ""; }; + C44C19BEBD57B963F794EFD472C30FE2 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; + C4790882F294F39BDD533F41E918AC39 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; + C4871B46F2DA745D913A50C049CD99D1 /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; + C48B24C6C25047B9C23D66D6C8CC09CE /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = absl/base/port.h; sourceTree = ""; }; + C4BA9BCA705A4117158D4086C88287EC /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; + C4DF734238FE975A06865A21EFDEEE26 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; + C50FACC187D57AED31D9E13EFD7184EC /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = src/include/openssl/ossl_typ.h; sourceTree = ""; }; + C516F903F750DFFD4965F0DCF59A4FF1 /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_skey.c; path = src/crypto/x509v3/v3_skey.c; sourceTree = ""; }; + C53DA64571379C8C591E440D024F8E6A /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; + C541380223B9C03E19ADCE5EE6D64BBE /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; + C548C055488BCCA3FC5C1C309AB1A094 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; + C54E864846E895DB5BEE2B5AC3258F57 /* GDTCORMetricsController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetricsController.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetricsController.m; sourceTree = ""; }; + C567DF76E868873AB8711A2216EACCD0 /* 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 = ""; }; + C579B2042565ED6A5B0CA497951F52EB /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; + C579DE30B2031FB334B688C12290A2F5 /* frame_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_handler.cc; path = src/core/tsi/alts/frame_protector/frame_handler.cc; sourceTree = ""; }; + C57A40087137252FA4A06E35B91EA5BE /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; + C57FEF3E2EAF1B1042658C8A003494F1 /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; + C58023E6A779DBAB49B47D22F2F7E801 /* FIRAuthAPNSTokenType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenType.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthAPNSTokenType.h; sourceTree = ""; }; + C592034D05F2A5F5E3ACF4061D69A94C /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; path = err_data.c; sourceTree = ""; }; + C5997FDAA3B91F53C65F59734682639C /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; + C5B3DFB69F3749843207BB70517664A4 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; + C5DF24B9D98AB1252B93075E60282939 /* testharness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testharness.h; path = util/testharness.h; sourceTree = ""; }; + C5E6FD2FA98E4C3A91B31A38DEC7002D /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; + C5F988C03E0959C610A627039F9D1FD9 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; + C60B04EA53FDB2E30B78E6828FCCEE9D /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; + C62BBC0332111AE4487B73BFDC845BB0 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; + C658698CFED74C3658759C1999F489D8 /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; + C67ABC7E8F3F52C2022DE6B6F0B95425 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; + C6812AA0CAD1171442D8A0781FFA0DC7 /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = child_policy_handler.cc; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc; sourceTree = ""; }; + C689853BCEC04F39DBC3CDC25ED9B530 /* murmur_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = murmur_hash.cc; path = src/core/lib/gpr/murmur_hash.cc; sourceTree = ""; }; + C6A1C94895BD2E41F4BBF6932858C072 /* numbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = absl/strings/numbers.h; sourceTree = ""; }; + C6A531481170F7956D6F0E925FBABA66 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; + C6C12E89078F7CC42BCB1BA2F984DED8 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = src/include/openssl/objects.h; sourceTree = ""; }; + C6C45CC61C936EB4B1FE2F24A9087A4D /* message_compress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_compress_filter.cc; path = src/core/ext/filters/http/message_compress/message_compress_filter.cc; sourceTree = ""; }; + C6ED7AD78E76019497BA6CB85C70413B /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; + C73A5ACA65C331B4671916330457A6C3 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = src/include/openssl/x509v3.h; sourceTree = ""; }; + C741BC2534DC746EE467470576B661CF /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; + C74410554AA386F56ACE904C266EB31C /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; + C74935DE1EB9622B198CE816B700F961 /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; + C74E796F933D74A73320FFEA8BA90C0A /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; + C780C23EF2208591C3E842433F5658E4 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; + C79E522BED35A820FB29B191CE6A652F /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; + C7A59E75EA30D3AC8202A07F9C1C58AB /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; + C7A9A1921E856E2A3029045F9CBFE1C6 /* 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 = ""; }; + C7C103F7132A324B121E10E32D1B847A /* event_service_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = event_service_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c"; sourceTree = ""; }; + C7CABB5C3C90C87F97C511E56DBCB6FC /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_utl.c; path = src/crypto/x509v3/v3_utl.c; sourceTree = ""; }; + C7CAF10C22A23D622C7AFBAF6349D373 /* 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 = ""; }; + C7D6B96A4CFD035467EC2D215EE5EDFB /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; + C7DC21F2D1957E1115246B35A248A272 /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_throttle.cc; path = src/core/ext/filters/client_channel/retry_throttle.cc; sourceTree = ""; }; + C7EC4CEE262400C70C131AE32751A9E0 /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; + C7F3BD3E475891FA642722F28E23BA9B /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; + C7F62D38A2775EE80B1748767B6986F7 /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; + C80D9620B533F5CC8B7143725F5E4E77 /* array_contains_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = array_contains_filter.cc; path = Firestore/core/src/core/array_contains_filter.cc; sourceTree = ""; }; + C81D1C36629B2EE09FA0ED1A417D46DF /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; + C82355AA43AB7E03ACD40F073CF1932C /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; + C83812C10B2D52B02085F80B6848F02F /* grpc_if_nametoindex_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_if_nametoindex_posix.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_posix.cc; sourceTree = ""; }; + C84159350C081455E5B835937ECCA41D /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; + C84700A2950E54155CC06C993ACA8C6A /* log_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_posix.cc; path = src/core/lib/gpr/log_posix.cc; sourceTree = ""; }; + C8B966F5469625D2AE2843A647591C5E /* firebase_app_check_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_app_check_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_app_check_credentials_provider_apple.mm; sourceTree = ""; }; + C8D0E6AAC5235812E294025696E9570D /* server_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_chttp2.cc; path = src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc; sourceTree = ""; }; + C8FA4486D5A721F5D13271ED43191451 /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; + C8FCD49D92D392C1395DA0596B968291 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/evp/internal.h; sourceTree = ""; }; + C90F9B6E14FA8A0A2B5CB5BD033DC3D1 /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; + C9250F7644521E8F86CB6711FE9345AD /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; + C9310DDFAB9D2356CAC7C7E193950A80 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; + C98B47989E9CD155B621638ED85C5CF0 /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; + C9917FD6C52304012269DE3BB11CE7B8 /* resource_locator.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_locator.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c"; sourceTree = ""; }; + C99C71490F8B7E3EEFD1C3B55777D97C /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; + C99DFFFA5ACD10C00F548D3D5CCCB1D6 /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; + C9A0730473ECE7E6D796BE448B056586 /* 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 = ""; }; + C9ACE6358741EB4F732E20B285549454 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; + C9C026D1D43CF542627D0CEEF3F19B4A /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; + C9C3BAAB919AB554800D7FEDD1A7436A /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + C9C6FCCA5F7B9BED686D8D5124DF6EB5 /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; + C9CA1C767D40D3B5E20E960BD370548C /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; + C9D69D1FB058E741B878E2EA0AF11B3B /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = absl/base/log_severity.h; sourceTree = ""; }; + C9E00ACA6C8A9371C296BE6A7E6020F0 /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; + CA04015DD20574F92E7BAA916AA6CB1B /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + CA13424FD925EC7888C2E33D9E26B86D /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; + CA1CF0A600F340B06EA28F808B2E735F /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; + CA236160B250DBC03987657357527F86 /* 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 = ""; }; + CA3F633D2DE6FC6932F7C9D3FC3CAAAF /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; + CA4C8C101C050162DD8009745CE5A1F6 /* validate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = validate.upb.c; path = "src/core/ext/upb-generated/validate/validate.upb.c"; sourceTree = ""; }; + CA53B9F49A9BFFEE15799E33954F4A46 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; + CA57871C8D840E07D16B64F6D4103272 /* write_batch_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch_internal.h; path = db/write_batch_internal.h; sourceTree = ""; }; + CA5F7D582ED0EF76BB2FAAE033805727 /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; + CA654FB05A53DBC89801F3A99AF0FE18 /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; + CA76024018A23C79F7A68D22680B8985 /* rds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c"; sourceTree = ""; }; + CA7B3AADA086A045D4093A0D2D12369D /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = global_subchannel_pool.cc; path = src/core/ext/filters/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; + CA840E3A087AEFC0F15D539A7094600D /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/support/log.h; sourceTree = ""; }; + CA85223E8FB7D38B6D9C4DDD12F5618F /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; + CA9935A4C4F7DA027732B3CBC5E6E822 /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_extku.c; path = src/crypto/x509v3/v3_extku.c; sourceTree = ""; }; + CAA7BE784A76795F672E38B9933C257F /* kernel_timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kernel_timeout.h; path = absl/synchronization/internal/kernel_timeout.h; sourceTree = ""; }; + CAB003C14FE22662B5D4165FA2F56FA4 /* sensitive.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c"; sourceTree = ""; }; + CACB85BB6B18ADBDE11D5F2E96BCEE91 /* 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 = ""; }; + CAD9F8EDA37D573B615E3E91B6C834EA /* nonsecure_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nonsecure_base.h; path = absl/random/internal/nonsecure_base.h; sourceTree = ""; }; + CB029FC3D64CCC86FA19B6EB8F2FF958 /* 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 = ""; }; + CB14276897DF5D6F7E900533E4E6A13E /* 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 = ""; }; + CB2047C17112F9E110082629C5119BB3 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel_pool_interface.cc; path = src/core/ext/filters/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; + CB3642375BFB3A7FF907CD0C33DECD85 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gpr/env.h; sourceTree = ""; }; + CB48E2033BC8D5A675C38624F637662F /* obj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj.h; path = src/include/openssl/obj.h; sourceTree = ""; }; + CB4D6582FDDEEA3C33E6762AE59500D1 /* siphash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = src/include/openssl/siphash.h; sourceTree = ""; }; + CB55B75F8FEA78EBF2DF722BC85D349D /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create.cc; path = src/core/ext/transport/binder/client/channel_create.cc; sourceTree = ""; }; + CB7ED9C61A95D6F808AA92EE929C8548 /* 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 = ""; }; + CBA310A0A1FB4647DE4D1663279BF6FE /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_bcons.c; path = src/crypto/x509v3/v3_bcons.c; sourceTree = ""; }; + CBA5392354B9AC3ABE144B7D433B22B7 /* FIRWithdrawMFAResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFAResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.h; sourceTree = ""; }; + CBA75ACEBBA1278606683597FC7A1CF7 /* zipf_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipf_distribution.h; path = absl/random/zipf_distribution.h; sourceTree = ""; }; + CBA7BFB1BFB0F6887BE57A30D1EF55D2 /* clock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clock.h; path = absl/time/clock.h; sourceTree = ""; }; + CBB7D5EA53E1CDB39161C3BD73DA709F /* 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 = ""; }; + CBBDB68610B579D2E518AF9B49C8907B /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; + CBC7210758545198E4626240724FD3B6 /* time_zone_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_impl.cc; path = absl/time/internal/cctz/src/time_zone_impl.cc; sourceTree = ""; }; + CBD4EBBC8434D3600C301F73169E9F6B /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; + CBD7C3AFCB3DAC521687BE2D2FDC6536 /* wire_reader_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wire_reader_impl.cc; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.cc; sourceTree = ""; }; + CBF019511DB1D12F6B423551AD46FA04 /* transport_stream_receiver_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_stream_receiver_impl.cc; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.cc; sourceTree = ""; }; + CBF101E79C7875F99D92BBEA1ABC72BC /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; + CBF2ADAFDCEF68C96653D3C2F8C493ED /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; + CBF3F651D0E04E106315360DFABE9A9E /* FIRGoogleAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.m; sourceTree = ""; }; + CC1DCD05491EFCA8A659AEB63F5CFD85 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; + CC2975F41161A709BB2DD91C78C66278 /* 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 = ""; }; + CC3074AE2F21EBE83C77A8A7B79234E0 /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; + CC3A8DA1395808F7C9399B31FCEFCEB7 /* load_system_roots_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_linux.h; path = src/core/lib/security/security_connector/load_system_roots_linux.h; sourceTree = ""; }; + CC3CEC9C57ED25004EF4BD6269028BC8 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; + CC4104D3ADCCF639FD7CA8C6B134DAD7 /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; + CC59AAC0894304666F3DB450A030C448 /* threadpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = src/core/lib/iomgr/executor/threadpool.h; sourceTree = ""; }; + CC59C91458601AC2EB638F6AA167A20A /* 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 = ""; }; + CC74B22DF2F89580C724D5F2D81BE721 /* 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 = ""; }; + CC74B5B73E27947FBBE1A246F3E739A7 /* 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 = ""; }; + CC7A0E9CA2BD44CA4E71AC377B3117D6 /* FIREmailPasswordAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailPasswordAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.m; sourceTree = ""; }; + CC858E829E3E2EC61D5D1C5D97167934 /* cord_rep_ring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring.h; path = absl/strings/internal/cord_rep_ring.h; sourceTree = ""; }; + CC93C8868B8EBD1B0F7FE3F612EBB777 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; + CC95201DF4B580BFBB30742544ED0158 /* 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 = ""; }; + CCB17755FE79D3644838238EF45A2A58 /* FIRGetProjectConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.m; sourceTree = ""; }; + CCB246DE62A0AD426BBECB0F93E033C4 /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; + CCB2861C966D7FF982DF67636EE2E9BA /* ssl_key_share.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_key_share.cc; path = src/ssl/ssl_key_share.cc; sourceTree = ""; }; + CD12C11143FF64F755770566177A3E0C /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; + CD133E1028F8BFEAC1DACCC6090A8DE1 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; + CD220291DD02937BFEB2C49AC2105E6D /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; + CD2DF681E4C4492B8243CEACF783CE92 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = src/include/openssl/bio.h; sourceTree = ""; }; + CD38C659AC4C361C642DD18142A6EFB7 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = src/include/openssl/pem.h; sourceTree = ""; }; + CD51F7D1973BD247CAD44E6EF7A47DF4 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = absl/base/internal/spinlock.h; sourceTree = ""; }; + CD5439BFC642CF6B549988DCBDE5440A /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; + CD5E281C1610FBAA1A80883F89EC2727 /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; + CD7016891023E5ED7FA6673DDD1F1A81 /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; + CD7B9328FC6D2EB87D03CA6A2340FB97 /* 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 = ""; }; + CDA2B5FA75E56C2F1CA13969B50F9D26 /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; + CDB2490C583F426C46FEB9C1134B2A17 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; + CDB8A24539B9AA5078F48DC60784A68F /* FIRAuthInternalErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInternalErrors.h; path = FirebaseAuth/Sources/Utilities/FIRAuthInternalErrors.h; sourceTree = ""; }; + CDC97BB76E35D7F30C048607AACD4F38 /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; + CDD924B4377422E044E36E72863D18D6 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; + CDF5B1016A26B103A4299BDC0CA940F3 /* iomgr_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_custom.cc; path = src/core/lib/iomgr/iomgr_custom.cc; sourceTree = ""; }; + CDF91304F598119171D5047014E8371F /* FIRAuthAPNSTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.h; sourceTree = ""; }; + CDFB935BDD6450B2CB53B5F610410FF5 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.c"; sourceTree = ""; }; + CE0DA6294A1F394195D5C458BBF4E3F7 /* 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 = ""; }; + CE1C349D748807CD073DDF23BDDD49DB /* timestamp.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/timestamp.nanopb.cc; sourceTree = ""; }; + CE2B8A82A971758962BBB721DA2F0FC0 /* path_transformation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path_transformation.upb.c; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c"; sourceTree = ""; }; + CE2FBFC5F33BF4066D8D9F069B729B3F /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; + CE32EA3B644833C9F6D0BAC57CFE796F /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; + CE3D9B706DA9DF15365475E104730DE8 /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; + CE4581D24C43A1FA130A6D0FA9F59447 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; + CE49A2017D10686059D6F0F8F7C7ADD5 /* message_decompress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_decompress_filter.cc; path = src/core/ext/filters/http/message_compress/message_decompress_filter.cc; sourceTree = ""; }; + CE4BFA847DD3772F87F1B74127714663 /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; + CE4E865E41100BB4D30895E1DF6C98CB /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; + CE6F5E13696F4586FD19BB57DDB63251 /* 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 = ""; }; + CE768BF67CC6E9A977A5B2EB912DB27A /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/internal/thread_annotations.h; sourceTree = ""; }; CE8765B3053874E73AFDC78B5D6B4396 /* CLTypingLabel */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CLTypingLabel; path = CLTypingLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CEE92F69E76D3A4C9CEAA12B91A26695 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - CEEE2EDA66AEC36646307BFF0AC34628 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/impl/codegen/sync_windows.h; sourceTree = ""; }; - CF2126D3715D7168FDF9329EFBF6BDA3 /* 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 = ""; }; - CF2C3151D883C28CD63E7386697F4B5D /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - CF3F3AA21887C68B6B22D4563A4E23D9 /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; - CF46505CD318965F101C06DE376A38C7 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = address_filtering.cc; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.cc; sourceTree = ""; }; - CF4CCCE0933285D444F1B3FCD018A42C /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; - CF7FC3F5BBA14AB71E73986111C0C5BE /* bind_front.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind_front.h; path = absl/functional/bind_front.h; sourceTree = ""; }; - CF84102C19E84A907B43C8B687D2EC5E /* container.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container.h; path = absl/algorithm/container.h; sourceTree = ""; }; - CF8EDF4A7DD376AC2749424763FABB28 /* substitution_format_string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c"; sourceTree = ""; }; - CFA4F84ADDE9D42E8A533CA19310F62D /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; - CFA9D0C4C390F2E6682AC1BF86962118 /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; - CFBD1990DB242CCF51D6F5241BBD8BA4 /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; - CFBF0C6B12A6980CE9C1AB6441B71051 /* 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 = ""; }; - CFCBF557B450C28C62115DA5A09D5BA5 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - CFD081566DFEC6AC03DDE5B3C7256851 /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = global_subchannel_pool.cc; path = src/core/ext/filters/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; - CFFB70412FE861E520AFACE9517AF9DE /* GDTCOREndpoints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREndpoints.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m; sourceTree = ""; }; - CFFF274942974D8426972695EE62AA5A /* 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 = ""; }; - D01D764F848732762154906CA67EDE28 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; - D0366A98ADDD50070B9F9A40359225F7 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - D080EA6F461026ECFFBE2225B832311E /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; - D08A2638176BCEEA41B0DAF7016F25A7 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/poly1305/internal.h; sourceTree = ""; }; - D0B1EE73AF16D4A5AB6FABF5065CBE44 /* FIRStartMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.h; sourceTree = ""; }; - D0CD146BB23ADA6C8DE4CC62EDD8F601 /* 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 = ""; }; - D0D57CC0DF6920802DFB3317EE2240BB /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; - D0E34BEAE195F627DC431779EE2B11B2 /* a_utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_utf8.c; path = src/crypto/asn1/a_utf8.c; sourceTree = ""; }; - D0E85C6EED65C44F5B979A374A81034E /* FIRAuthProtoMFAEnrollment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoMFAEnrollment.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.m; sourceTree = ""; }; - D0FE88D8D2512BABB09D84291E98BDED /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; - D10509B00BE01DD3698883859BB908C5 /* FIRAuth_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuth_Internal.h; sourceTree = ""; }; - D11F8528FCA68FD9E9D3DB4A443E448E /* FIRSetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.m; sourceTree = ""; }; - D1278476EEAF9DCBA841C37F3109080A /* 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 = ""; }; - D13697CC896FF38298F4E35327AA46A4 /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; - D13D74CB48A75E26EB2CA5C2B4235795 /* FIRAdditionalUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAdditionalUserInfo.m; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo.m; sourceTree = ""; }; - D17BA513E45AD12BA2ADFFCAD7C1CACC /* mpmcqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mpmcqueue.cc; path = src/core/lib/iomgr/executor/mpmcqueue.cc; sourceTree = ""; }; - D18FD77FC0C53EBA15ABA83EDB7480C0 /* base.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c"; sourceTree = ""; }; - D1A4740E2C1BF014B7C22B066D82FCD0 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; - D1A6C9AE0E511F6442B4343F210DD8A7 /* 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 = ""; }; - D1AA625C021C4761EAC2FD5B2FA5366F /* 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 = ""; }; - D1AE94F64AB48AA3BA2E6A823B375E5D /* base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.h; path = src/include/openssl/base.h; sourceTree = ""; }; - D1BF1B629F0D9837451E1439695FA3A2 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; - D1C858F819921D5FD0F665E90B34271D /* FIRActionCodeSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRActionCodeSettings.m; path = FirebaseAuth/Sources/Auth/FIRActionCodeSettings.m; sourceTree = ""; }; - D1CCF723D1B26DB04AF16726A65BB223 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; - D1D1E1A02A5F5C0A4633B469BA7A792F /* cds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cds.upb.h; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h"; sourceTree = ""; }; - D1DADAB4E7A60BCF4A6299B8C14315BC /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; sourceTree = ""; }; - D1E58DC922865B2EE4CE984D5564B038 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - D201AE938325688A6F184084D68B7B36 /* log_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_format.h; path = db/log_format.h; sourceTree = ""; }; - D212BAB6F36CDA459758DC064DBF0801 /* getrandom_fillin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = getrandom_fillin.h; path = src/crypto/fipsmodule/rand/getrandom_fillin.h; sourceTree = ""; }; - D2299334CC90B4B12520DC15F16FC1F8 /* FIRAuthWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebViewController.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.h; sourceTree = ""; }; - D25B6C442FF545F49CEFEAF985590F2D /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_client_stats.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; - D271BC81566FE43E6A30021BDF1FF2E3 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; - D288EF42924243D421A2DF302D696E7E /* 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 = ""; }; - D2BC235A12F6C796B35D7371BA1AA852 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - D2D2165AD6802C93FB32098129B45A30 /* eval.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h"; sourceTree = ""; }; - D2D3E59A8DD760ADE17730F3FA6553BB /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; - D31088DAB37DE2293502AB4C2C235526 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; - D32EEB7FA859C547483EFC63973D03DB /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = util/crc32c.h; sourceTree = ""; }; - D336A7ACE4B95A3B5F8A8D1E3EAF3099 /* str_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split.h; path = absl/strings/str_split.h; sourceTree = ""; }; - D341324B667D52FF17BB9DEB60FAEA2D /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; - D3775D0CDC52BDD5A7CFD3EE88368628 /* FIRAuthStoredUserManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthStoredUserManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.m; sourceTree = ""; }; - D37875305F6A495BA1F49510058F5E64 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; - D396619CDC2A3F891AE60AFDE0FD8F0D /* lds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h"; sourceTree = ""; }; - D39AC4C19A7AB69AFE17F5704DBCD3E7 /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; - D3D6F222923616FCD2E92FC8F0A9E835 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; - D3EEF546AA4F79705AC98DACDE3A51E5 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; - D42394AFD21771B30F21D48CC55A5C8D /* tcp_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_custom.h; path = src/core/lib/iomgr/tcp_custom.h; sourceTree = ""; }; - D434BDC04715A1EDA7B91096A897AC44 /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; - D43B052152B2FCB5579B8AE0F75FFFC6 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; - D47048AB6CBE069988DF05B1D60FFC5E /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; - D4A48F0FC2B5B383E5549A55EC186092 /* curve25519_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64.h; path = src/third_party/fiat/curve25519_64.h; sourceTree = ""; }; - D4AF8E54559D6984DFC27D03A680EAD6 /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = err_data.c; sourceTree = ""; }; - D4C81AAE6F95E9DC58CD6BB8014B1A3E /* 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 = ""; }; - D4D3D25A4EEC86ADFE439BAE0D32F9F1 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; - D4EEBEB7898F2FE1A175505C29D11F80 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; - D5033FC242F72DA36AC50CA4FDA61274 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; + CE8F597CB233E8B724EA2D2ED4436CB0 /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; + CE9DE2957DC9E5479BD03AC0EF64406E /* 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 = ""; }; + CEA403C1877410EC3BC09DE1466A5B58 /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; + CEAA5456D2C906E466F988613D321E4B /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; + CEB27B98C18EEDD14BC4B8407B110EE3 /* 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 = ""; }; + CEB4645596E4523B6FF908CC61CC9B16 /* resolve_address_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_posix.cc; path = src/core/lib/iomgr/resolve_address_posix.cc; sourceTree = ""; }; + CEB5EB7C196341A03988A4BAB6F26F3B /* memory_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_remote_document_cache.cc; path = Firestore/core/src/local/memory_remote_document_cache.cc; sourceTree = ""; }; + CED68264D7E8C8882D0A53A7F0EC7285 /* resource_name.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_name.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c"; sourceTree = ""; }; + CEE6DCE0F9080D814DD15BB63174A1BF /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; + CF0A5781B5A4EF2B6E5EAF94AC803D29 /* statusor_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor_internal.h; path = absl/status/internal/statusor_internal.h; sourceTree = ""; }; + CF1910744D731D8D1DE5D406923944F5 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; + CF203CF9C6A726C4C9B45CADD83B2F8C /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; + CF260A4356D6041BB4E9D7FA7D31A48E /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; + CF3DEBCCBEDF6A950945F9F9E791A7DC /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; + CF89D8AA06D13A1B96598C7F3344355E /* threadpool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = threadpool.c; path = src/threadpool.c; sourceTree = ""; }; + CF91DB9E4CE1003B5B0D201ED268716C /* zone_info_source.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = zone_info_source.cc; path = absl/time/internal/cctz/src/zone_info_source.cc; sourceTree = ""; }; + CFA29A7114330E1FAC3D47B23BE454BA /* alts_seal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_seal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc; sourceTree = ""; }; + CFDC3787ED419800135E2AC94699703C /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; + CFE39AB61B3E70C96732AE4D4994F6C5 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; + D0001475ECDEAE1DD9B8CDF7F4A24A34 /* db_iter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_iter.h; path = db/db_iter.h; sourceTree = ""; }; + D027DA0D473F0811F0E010C9945FA145 /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; + D02F71B44EE5976963C8A736FA15B876 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/cipher_extra/internal.h; sourceTree = ""; }; + D03F2F8A6F5C508C40A6FBAA0B6E69F7 /* FIRPhoneAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthCredential.h; sourceTree = ""; }; + D043CCB711AD8C7E6D010C7B1906A4DC /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; + D04530E46789E7001F028CD83ED8A097 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; + D04545346C295C4C80EF1715C4B32DFD /* gRPC-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-Core-dummy.m"; sourceTree = ""; }; + D04DD6B5D7323AF5DDA85D042C1AB074 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; + D05C050174DEC044CD74071CFCED5D28 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; + D0613480F9A32948BAE75943047F054E /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; + D07D685E707E7F242C354E361F8076AD /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; + D07E9727357EA6CFF9CACE274ED2E05A /* GDTCORLogSourceMetrics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLogSourceMetrics.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLogSourceMetrics.m; sourceTree = ""; }; + D09A85EF031EDDF34D6E70C0C6862F97 /* FIROAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h; sourceTree = ""; }; + D09B74402F1F8CFCFB63E8D8D5DCE5BF /* errno.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno.h; path = include/uv/errno.h; sourceTree = ""; }; + D0B6BD5E6BDC6B8215DFAACF48190C23 /* 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 = ""; }; + D0D39BF03216EF127279651A43734F1C /* nid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nid.h; path = src/include/openssl/nid.h; sourceTree = ""; }; + D0F23185125D051E72E06DA02FD8109D /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = ""; }; + D0FBF33938E6726F2A111CAF54B650B3 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; + D109C362EBB7E18238A2CAB8B62D6DE2 /* cpu-arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-arm.c"; path = "src/crypto/cpu-arm.c"; sourceTree = ""; }; + D148C3309672434068C0F2367C9B4A3A /* load_system_roots_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_system_roots_fallback.cc; path = src/core/lib/security/security_connector/load_system_roots_fallback.cc; sourceTree = ""; }; + D14C22B31990C7D41A68D90394330BEF /* ssl_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_credentials.cc; path = src/core/lib/security/credentials/ssl/ssl_credentials.cc; sourceTree = ""; }; + D16C16CF8D794A21D92188F4F5A15563 /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; + D1772E72C57385D1D1736D1C2820D802 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/ext/filters/client_channel/subchannel_interface.h; sourceTree = ""; }; + D1793911BA5401D60911E96552F3D962 /* 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 = ""; }; + D17D2D23D02A201C6628436CB5B4DE6F /* 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 = ""; }; + D1964D920690D6BC66477832572B1AD3 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; + D1AF5814ED48C619C19922C6A9173B6C /* tcp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp.cc; path = src/core/lib/iomgr/event_engine/tcp.cc; sourceTree = ""; }; + D1AF8BE84633AA012F19E96CF4F43B98 /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; + D1B73FA74579E80BDBDD2E69EA8B4603 /* explain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h"; sourceTree = ""; }; + D1BA46D967EA6FD9653681650B9690A4 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; + D1C824C4D900253027727CBD5D73F9D5 /* 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 = ""; }; + D1E24F32126A81E77B19F2C15A8A12B0 /* FIRAuthWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebViewController.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.m; sourceTree = ""; }; + D1E2895321BBA843443F722097CE3CBC /* document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.cc; sourceTree = ""; }; + D1EED044830F35BCCD3E3693972928CD /* FIRSignUpNewUserRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.m; sourceTree = ""; }; + D2019AC0F0D0B629F65B746F70FB24B5 /* cord_rep_ring_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring_reader.h; path = absl/strings/internal/cord_rep_ring_reader.h; sourceTree = ""; }; + D204DAFA60EFA77DB3C8AB1D10655D2A /* 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 = ""; }; + D209503ABF2DFDCA5EBF6823B1CF78EF /* slice_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_api.cc; path = src/core/lib/slice/slice_api.cc; sourceTree = ""; }; + D21CA2E32F37DFDA5BBB2E97A1D718B4 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; + D22D6AEC8C37B39BB6C8CE152B3E96C8 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.c"; sourceTree = ""; }; + D22F5F204AC6427322AC7B623C0EB91E /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; + D2444FB1B29D1AA32C66A29C8B245A51 /* 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 = ""; }; + D25274984D91971E9FC5B8DB131120E3 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; + D2564F7D167827D88EB0EAB6805C59F0 /* charconv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv.h; path = absl/strings/charconv.h; sourceTree = ""; }; + D2572A32A30D2AAD2640265BE6AF51DA /* rbac_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_service_config_parser.cc; path = src/core/ext/filters/rbac/rbac_service_config_parser.cc; sourceTree = ""; }; + D2719F00215B987763C41B360250EC1A /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; + D28093562E3AD4577A45CFD0D1A7616B /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + D2AC56DA987BF772F73364DE87A6FE69 /* parse_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parse_address.cc; path = src/core/lib/address_utils/parse_address.cc; sourceTree = ""; }; + D2AD7FAC3C13F626E1056C668709C2CB /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/client_idle/idle_filter_state.h; sourceTree = ""; }; + D2AE186D200463881AA9E8C56AC37AE6 /* FIRPhoneMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo.m; sourceTree = ""; }; + D2DBA07DF8C74BB78C556334B35CB3BF /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; + D2DD942DE37A1C976C70E36196ABC577 /* address.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = address.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c"; sourceTree = ""; }; + D2E8DDF817DCEA13DECA000B455CF0EE /* uv-common.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "uv-common.c"; path = "src/uv-common.c"; sourceTree = ""; }; + D2EB3A2EBB4E664DB91F39B6F770CEDB /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; + D31FE068A127C302D8F7F5D7C76D98C5 /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; + D334B3828F4F4767196F23108BB5846C /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; + D359CE8CB3DC0FD7B140401414AD13C8 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; + D3824B5428C23E6AE8572246E1CEC1F9 /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; + D3953A16AEA4EA92F38D2C0309AFC939 /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; + D3990CBEE55BF68E8726FA882C3E50A2 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; + D39F80575F4F98634E3ED1E6F2CCBB95 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = src/include/openssl/x509.h; sourceTree = ""; }; + D3C906D7583DB5E0ADAB96CF81104AA2 /* wakeup_fd_nospecial.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_nospecial.cc; path = src/core/lib/iomgr/wakeup_fd_nospecial.cc; sourceTree = ""; }; + D3C95DC3E93F043B54A480FF49EF1672 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; + D3CDC1DA9E8272F3ABC0188F99122068 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; + D3DD53AA4FC87F50475CFA80C04DCD3C /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; + D3E1CB7548B6FD20BC6CB59F51070513 /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; + D3F0D305E643BE3C8E59649EBC01C3BE /* FIRAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthProvider.m; sourceTree = ""; }; + D3F2DE8FFA91C2EBA12484B685554F55 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; + D40A3D5A83E943E13BD466E8B3A1AA92 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; + D42B3AB9160698E7425FCCD0152E596E /* memory_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator.h; path = include/grpc/event_engine/memory_allocator.h; sourceTree = ""; }; + D456399111568A392E68B3B24DD47E8C /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; + D45BC8AE37036860B9C7C7FE332F977D /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; + D47349464FA8C84A2A526E9698729F75 /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; + D47D130A801D3AF5FA56AB74214F2F67 /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; + D48695A91ECA100ABC640B5C018E6DF8 /* FIRAuthErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrorUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h; sourceTree = ""; }; + D492A5B92BDDDAD7C19F8A596805D162 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = src/include/openssl/asn1_mac.h; sourceTree = ""; }; + D494A11D43248225F158629F7A68458B /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = util/logging.h; sourceTree = ""; }; + D499FC2C2EA1EA16DC2B666670E97C2E /* FIRAuthBackend+MultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAuthBackend+MultiFactor.h"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"; sourceTree = ""; }; + D49D3574454881ED60452AC6106E9B38 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_util.cc; path = src/core/lib/security/util/json_util.cc; sourceTree = ""; }; + D4A13186F15804755420D3E3AFF50C38 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/ec_extra/internal.h; sourceTree = ""; }; + D4AC709391190685A171F7294535A4F6 /* 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 = ""; }; + D4B53D6194CA7B02AD45947E8802E00D /* conf_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_def.h; path = src/crypto/conf/conf_def.h; sourceTree = ""; }; + D4B64B102E996DC9605FF21A838751A3 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; + D4BF27C591D9E0653E7CC81E8949400C /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; + D4CAD48245FACAAD497AB8E8B7F41390 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; + D4D2B53496312573E585E4DF06D556D5 /* 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 = ""; }; + D4DA9088F7741792E65933299B7AB363 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; + D5071F640EDDFF8422D793FF0A7A5162 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; D50DB27001C6CB150388C484EC253FE1 /* Pods-Flash Chat iOS13-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Flash Chat iOS13-acknowledgements.markdown"; sourceTree = ""; }; - D516315A2C543ECE05B528CE3EC67DE5 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; - D51E402969C54FC1717EF537D7692127 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - D52B171A495DB04AFFCAFB7A28E8570D /* 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 = ""; }; - D5308B145BF7938146E0E27F9F531C95 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/internal/span.h; sourceTree = ""; }; - D5397304C266A806CDF6150D539B04AD /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; - D543BC6FB6E3DB0066CC5AC3C589CEE5 /* 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 = ""; }; - D54CC4A988C6BF58A89322CADB3D7F53 /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c"; sourceTree = ""; }; - D55736FA019DE944E9BF69ACBB520148 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; - D55B6488075C9D963E44ACCC5D36E521 /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker.cc; path = src/core/lib/channel/handshaker.cc; sourceTree = ""; }; - D56A9D5E4B8D0F2DACB027EEBF47047E /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; - D56F948E9047188CE4C2B2366B8E71DB /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; - D58712F06503B873DE8C8927559B158B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/modes/internal.h; sourceTree = ""; }; - D597823B6ABD6474B4C340558C63BFA6 /* skiplist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skiplist.h; path = db/skiplist.h; sourceTree = ""; }; - D5A8123E62684C3D6ECE4DFDA0832DEB /* FIRAuthDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDispatcher.h; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h; sourceTree = ""; }; - D5AF258E4577E6ECFDC07B7D70237A35 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - D5D3D20598A55161711B9B6E509BF708 /* 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 = ""; }; - D5DF8494FFFDECFE6AC1E315C51FDFA2 /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; - D6084F302AF7DE26462CE35B96D689D1 /* 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 = ""; }; - D61FCF06A99C152C877D668205EAE127 /* log_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_linux.cc; path = src/core/lib/gpr/log_linux.cc; sourceTree = ""; }; - D620BCDF1AEB62F6BAC0833653E67E8C /* common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c"; sourceTree = ""; }; - D62734CBF3A3CF169A326C3AA4874874 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - D63E35D73C8758A1BFE4882CB13519CE /* 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 = ""; }; - D65CAD5624BD2F29D6B46EFE7F095817 /* 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 = ""; }; - D672F3F3F312F2306B924BEC11F7DC20 /* 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 = ""; }; - D678AA0C66CD6BE034B10A87C4F259D0 /* 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 = ""; }; - D67C77147745C4A24D1AF5072FEDA0CC /* cordz_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_info.h; path = absl/strings/internal/cordz_info.h; sourceTree = ""; }; - D6C60E3941E66348B76800E5F9E3F5FF /* distribution_caller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distribution_caller.h; path = absl/random/internal/distribution_caller.h; sourceTree = ""; }; - D6D5D58B5E8527BB18328F77710A33BF /* 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 = ""; }; - D71A76C212C2678D75A263CE58A8AD06 /* 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 = ""; }; - D71D6E7417FA89D1FCB946E368E0ED5A /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/thread_annotations.h; sourceTree = ""; }; - D730797E39DF8B969E19E57AAFF8FEE6 /* status_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_internal.h; path = absl/status/internal/status_internal.h; sourceTree = ""; }; - D73EDA482871B4A469E78259B2138A8D /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - D74C0DBAC3C74BF1DF99DDE17F9B8FB1 /* outlier_detection.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c"; sourceTree = ""; }; - D77538918830180FEB3FC2011A25CD4E /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - D7810A76693B06E29CF3126FEF8A7D1A /* 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 = ""; }; - D7881D3A9F10FC22663BE44A7D6C427D /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; - D79A4F5BB76F6BF5BD9A1968A3F80295 /* upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = upb.c; path = third_party/upb/upb/upb.c; sourceTree = ""; }; - D7A1BCC1BD351D2E82C4A73CDAD1E3B1 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/support/sync.h; sourceTree = ""; }; - D7A4D4F24271BABBA08D314EB1F8DA79 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; - D7A6E1BD7B1922B011D56859695076BD /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; - D7B07C3D9BF4FC3E9BAE8CEDFEF26ABD /* gpr_slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_slice.h; path = include/grpc/impl/codegen/gpr_slice.h; sourceTree = ""; }; - D7B80E822D54F8ACB4C46012E8FB7E6B /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - D7D415C7C36A9A8D7F3F9675703F552E /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - D7D50A83BA802440535A19E241DE58AA /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - D7FCE6674BA17AF287B0D45E98D523B8 /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; - D8417D60AFAAC26362E49B188B8C5DE5 /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; - D84906327689C0432C441F86D5E92F54 /* FIRUserMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserMetadata.m; path = FirebaseAuth/Sources/User/FIRUserMetadata.m; sourceTree = ""; }; - D85093D2E5A2786BA6F08D51D6B94DC9 /* FIRAuthKeychainServices.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthKeychainServices.m; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.m; sourceTree = ""; }; - D854381C4F85DC44C055AE41D1BFEDF9 /* FIRSecureTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.m; sourceTree = ""; }; - D85C569EC3C4CDADDF6D05C449DD50B2 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; - D8693045961A4F90EB797D43A606E523 /* 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 = ""; }; - D86D20653032359E9748E2D481FF13A6 /* 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 = ""; }; - D873FD51C63E7E9AC400868B6B35AA0F /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; - D89E60C69C9D8691D454FB1B145ED0F4 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; - D8A6510FEAF022F1A7D52FAB5DF8E970 /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/codegen/propagation_bits.h; sourceTree = ""; }; - D8D76ECB21C28DC7140E59D0E33290F9 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - D8DE4E2C9C14967A29E55F97DC61342D /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; - D8DE670129A60E52265947F84F2B39A8 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; - D8F18D863A904F7D9A7D3DCEF0753001 /* 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 = ""; }; - D937FAE2336CFED96D2E760413BD2C52 /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; - D93BA2E1EAFFA2E2E92C9EAA934DE96B /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - D93C74FF2F3EB52B18FBA4028AF762A7 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; - D93F471F1CB78A80D807F8494A18278C /* 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 = ""; }; - D94C17DF99BBF14FD287F41375DF2721 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; - D94E3A1CB3C6DCD6DCF73B5FEBAF55A9 /* 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 = ""; }; - D9510ADE57176A17E624D0973FBFD810 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - D96D70C8DF3C10C3AA273E260D59BD7A /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; - D97C24A3A1EA7413ED97C014D2C7D1FF /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; - D97CA3AEF43D21B8BF128FB1F7782F5C /* grpc_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_posix.h; path = include/grpc/grpc_posix.h; sourceTree = ""; }; - D97D1568AF51BD1FCBC9CA817FB74DB2 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/bits.h; sourceTree = ""; }; - D9BD501CC4F60EAF7EAC0DC5C35A9811 /* BoringSSL-GRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.release.xcconfig"; sourceTree = ""; }; - D9CA3B79A51828D14120773EDA89C3C0 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/channel/handshaker_registry.h; sourceTree = ""; }; - D9F284BCC7EABFB22CBB8C7AB7736E3B /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - DA33895D36C435FA4BC565AD172DE4B5 /* filter_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_policy.h; path = include/leveldb/filter_policy.h; sourceTree = ""; }; - DA49D325838E71B66BCCEE312008835E /* fork_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork_detect.h; path = src/crypto/fipsmodule/rand/fork_detect.h; sourceTree = ""; }; - DA5049626C841D064ED3EF1E3BAD31B3 /* FIRUserInfoImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfoImpl.h; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.h; sourceTree = ""; }; - DA70F32C24EBC6AF33B5DBC101D36ED3 /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; - DA906284FC068648F7216A429E622F62 /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; - DABA334080FF1B8BC3C3702CF0D77E81 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/iomgr/work_serializer.h; sourceTree = ""; }; - DAD4C2942F03A926CA0F41061B13AC86 /* 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 = ""; }; - DAEA55D952FC7E5F38FCA8F814871D05 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = src/include/openssl/safestack.h; sourceTree = ""; }; - DAEE076E65297226B99003203899237E /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - DAF4BD13C4CDBC3FD9BA2324E42B1467 /* xds_channel_creds.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_channel_creds.cc; path = src/core/ext/xds/xds_channel_creds.cc; sourceTree = ""; }; - DB090B7C2BDFB39C0463B0C158AD6B11 /* FIRAuthOperationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthOperationType.h; path = FirebaseAuth/Sources/Auth/FIRAuthOperationType.h; sourceTree = ""; }; - DB1E94CE7108438A6FD3DAEB224C426A /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; - DB3311B11943FB75B9B41944CA924FDA /* GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleDataTransport-Info.plist"; sourceTree = ""; }; - DB4C7ECB33E87C6E974F7975A09D9176 /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; - DB5D2488D6272B40E8D8FF936E5BBADF /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = include/grpc/event_engine/port.h; sourceTree = ""; }; - DB6110A19686169BD41F4305AD5F411A /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - DB6539463074E567351285C084FA86C5 /* a_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_print.c; path = src/crypto/asn1/a_print.c; sourceTree = ""; }; - DB67F5C32EF498043599DE2BFAAA2ABB /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; - DB7BDE5FDADF95A04A3D4250F5B92A00 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - DB8119CC0ED14A26F19C03B8C405C890 /* 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 = ""; }; - DB938770B5ABB3CEA25FBA2D8B86A356 /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; - DB955FFBD28F186FDA952864D12C7582 /* FIRResetPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h; sourceTree = ""; }; - DB99C7B8E5CBE52253764CB16C0A2B9D /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; - DBBDA39D068CC4CAA43DBF85FF6152D7 /* uv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uv.h; path = include/uv.h; sourceTree = ""; }; - DBC6321CBE1EADECC1A7375957D40CCD /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; - DBFEB3D4747533FD2C19D99D744563B6 /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; - DC1C6762A400F6798B0B37360C37A926 /* dynamic_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic_thread_pool.cc; path = src/cpp/server/dynamic_thread_pool.cc; sourceTree = ""; }; - DC1E4C15DD4AFED68BE7C12B431F3A3F /* 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 = ""; }; - DC1F569971BB63A727BCC88CA83A0FD4 /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; - DC37F2C6B67598116FD1520F1EF960EB /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; - DC5825CA05529EBCC409BCFD67DAACE3 /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; - DC637756A9F0249C0C1714D9543D98CF /* FIRIdentityToolkitRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRIdentityToolkitRequest.m; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.m; sourceTree = ""; }; - DC641807268E1AC1DD2C9AC572CCC1BB /* FIRAuthSerialTaskQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSerialTaskQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.m; sourceTree = ""; }; - DC6E7037F102DEF924EC45B262BE86D8 /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ocsp.c; path = src/crypto/x509v3/v3_ocsp.c; sourceTree = ""; }; - DC72CB81E12AA31C703F7BB4579F8897 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; - DC78B1A132A43E5B8AFE780965E476AB /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/support/sync_stream.h; sourceTree = ""; }; - DC7A402F407A94D0DB2197EC732C8805 /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; - DC82D6E91B4E76AF1EF3C92F3AEA9A14 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; - DC8552EF2CAB93C5141DBBD292FFE15B /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - DC8FD461109F4BFD28EB78275FC9DE30 /* obj_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_dat.h; path = src/crypto/obj/obj_dat.h; sourceTree = ""; }; - DC94A1BD26897C1BD28D3106022C00BA /* FIRSecureTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.h; sourceTree = ""; }; - DC971175DE82493CF24B7F675C52309B /* 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 = ""; }; - DCB0F88BE32897CF2CE95CC779759D65 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; - DCBC1F3E107D759242A1C3955BC6AC49 /* grpcpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpcpp.h; path = include/grpcpp/grpcpp.h; sourceTree = ""; }; - DCBC5FAAD2345D712AF224E2301033E3 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = src/include/openssl/pkcs12.h; sourceTree = ""; }; - DCBE62C0B163E9CE657447A8139A5807 /* FIRAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTokenResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult.m; sourceTree = ""; }; - DCC9D2A05792D26EB7C2CD9B3C482660 /* chttp2_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_plugin.cc; path = src/core/ext/transport/chttp2/transport/chttp2_plugin.cc; sourceTree = ""; }; - DCE4B2DDA68818DC0F0051E95A3BC73E /* charconv_bigint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_bigint.h; path = absl/strings/internal/charconv_bigint.h; sourceTree = ""; }; - DCE58A3EEAD1EA60AFF20BB6CBB5AD09 /* gRPC-C++-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-prefix.pch"; sourceTree = ""; }; - DCEBE57AA1157990290F48A8B0B75D9D /* 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 = ""; }; - DCF332F2DDD31827838523295C7C02A6 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - DD0A01392CCA1F02BB228D0F2797B114 /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; - DD0A15CFFABD2B2AD12F72F339A0140B /* 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 = ""; }; - DD150F5546A5585D6469457EC7E81C69 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; - DD1A9376D1B750DF242C83896A072A31 /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; - DD330175DAADA9ABC12A31910A009140 /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; - DD47E50FD816BCA648E6A62FB33EF373 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - DD49D66BAFBE891DA7AA4111007D11DE /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; - DD5F9EF7C35287AF0D4B1B7DC5333DFF /* 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 = ""; }; - DD6BCBB3FC57E054A0EEBB19DE632159 /* 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 = ""; }; - DD6E3DBC7CF3EF9831EFBBBC57694DEC /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - DD70D9CD6B0432AEB93E02E1FB8489E2 /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; - DD72F7E5E08707846370D7D0F991BCC6 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/ext/filters/client_channel/proxy_mapper_registry.h; sourceTree = ""; }; - DD792B696E54BAD4DB9DFE7BEDAA1CE9 /* wide_multiply.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wide_multiply.h; path = absl/random/internal/wide_multiply.h; sourceTree = ""; }; - DD7BACA8BD1F55CB592E9D37E4AC694E /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - DD7DD370D040B24E02809DC936611A86 /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; - DD81BFD2D733C61E88BCDC297E49A022 /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; - DD8FC2845807DC1F93E2AA11FBFD2A6B /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; - DD9291D160844646275766D62CC3BD45 /* 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 = ""; }; - DD98A72A3325D1FA05221010208F85D2 /* GDTCORUploadBatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadBatch.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m; sourceTree = ""; }; - DD9EE5CE0162E2CE20771D5FCD674031 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - DDC5467A6D118C9C70E8C109BAA8D824 /* leveldb-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.release.xcconfig"; sourceTree = ""; }; - DDC87770B5482CDB35C42F1DDF578D42 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - DDC90827167DE07186F2C45B18646DBF /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; - DDD1A765EF37CB0AA9CD55D346E5DA33 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; sourceTree = ""; }; - DDD45AF9835B6BDB1FDEE9D1B4389C76 /* 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 = ""; }; - DDF341C1AC91DFF46EFC5323EE23D3FA /* 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 = ""; }; - DE0321B044440171F6DE03BAC7F46A6B /* ex_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ex_data.h; path = src/include/openssl/ex_data.h; sourceTree = ""; }; - DE065B3FF36AF498B88D7E0451533BC1 /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; - DE0D449B2F65E2ABB08DF305B4B650C9 /* 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 = ""; }; - DE31F621CAD4A75C21F0F9B1769442D7 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - DE46969394F93E30E45B318EE4D104E0 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; - DE4C3B5107632E3D71E08E88B47F9C28 /* errno_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno_saver.h; path = absl/base/internal/errno_saver.h; sourceTree = ""; }; - DE68FFC8358FA04D5889EF2C3E394D68 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; - DEAF412D0CFFB39E1BFFDB1E64048FE9 /* exponential_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_distribution.h; path = absl/random/exponential_distribution.h; sourceTree = ""; }; - DEAFE4C13D8FF1FDE065A8794EC86245 /* 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 = ""; }; - DEC5DCB722723A5C567A8DD9E3ED1F89 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - DEDFE2D9923BBF6E4912316E851F60B1 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset.cc; path = src/core/lib/iomgr/event_engine/pollset.cc; sourceTree = ""; }; - DEE81A8EC18A0B5B1E43DB60ADFF2EDC /* FIRGameCenterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.m; sourceTree = ""; }; - DEE9080859018223B5C219AEA15FF95F /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; - DEFA22796A64CE2A3C7F2975BEE267F8 /* 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 = ""; }; - DF133F2683B39795BBB6F7B19E6D29E4 /* 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 = ""; }; - DF3BA76983ACBBCBA404FCE5F0C36FBE /* 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 = ""; }; - DF4831465B7E4BBC06DB8DAB743BC086 /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; - DF4B715D2D3CD1E93A5E116190319997 /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; - DF6D080175DA2DD01E385F9AE766F924 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - DF733EF4B1566BCA7A9112EEE57C2775 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; - DF96EB173C3D3D9BB5CB096769BB2EF3 /* tty.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tty.c; path = src/unix/tty.c; sourceTree = ""; }; - DFAD14B32EA7BF53E160C42E43D50DE2 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; - DFAEF6561E267CBD51ECA0CB30CE1C7F /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; - DFBB19560673ECCA382E404ECF23EA31 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - DFECF25E986CF23DED9CE2C28C5C3D12 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/impl/codegen/string_ref.h; sourceTree = ""; }; - DFF073FFC72C100A9B8AA5298287D6A5 /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/codegen/intercepted_channel.h; sourceTree = ""; }; - E007083C7EC0E69EEC5D3781AE86F704 /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; - E00B0C136969A5895435928AE7AF7F7B /* scoped_route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c"; sourceTree = ""; }; - E03193938D6B2092668107D6C262DD29 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; - E0513206EB05495F91596B0BD900F18C /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; - E055EEDB5448804CCEB4060CE6F61487 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; - E05770E71F657FB048D0F7D4FAC44CDD /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - E05A18C9830C52CA3BEDE113EA6A519F /* tcp_client_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_custom.cc; path = src/core/lib/iomgr/tcp_client_custom.cc; sourceTree = ""; }; - E06E0ACBC7AD67018F9414C5C3CC5036 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; - E07766BBBDA07E4BC2FB9C6661DA6AA6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/evp/internal.h; sourceTree = ""; }; - E086E6A087051487FC30ECA133659F06 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - E08BD7600DB08ACCACAFB35E3B0D58E7 /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; - E0A85F283FE7D435DADBCF60CD3329AA /* pcy_map.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pcy_map.c; path = src/crypto/x509v3/pcy_map.c; sourceTree = ""; }; - E0AA062F356DE5E81D6DE8A6B65CC870 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - E0B9AA38F9ECD62D502E9168A7E7D00B /* 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 = ""; }; - E0C232F842638FF1D1B46F350B0E2B89 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = src/include/openssl/ssl.h; sourceTree = ""; }; - E0DE70107CB844BDFB9383271BF9831B /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = certificate_provider_registry.cc; path = src/core/ext/xds/certificate_provider_registry.cc; sourceTree = ""; }; - E0E5618767EEE83B43C7EA69399AEFC7 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; - E0ECD12E084BC15CD3104BFA48CC9DE0 /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; - E0EF834F0C98BCAA3413536D1CC6D427 /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; - E107805DA7D7B89CBF0FA4E981BF1949 /* FIRVerifyPhoneNumberRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.h; sourceTree = ""; }; - E120DE33311DF0EE2E15E78A6BDD749C /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; - E1217BD05EA599124A79A8E31CA778DE /* 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 = ""; }; - E13DC566F5693D7CB358DD61EBD04F6D /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - E1459E43783B982C187E00129DD89CC8 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/grpc_library.h; sourceTree = ""; }; - E155A005DF25CE96972E3AC05FB3A94F /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; - E15D9432149ABFD448857B24887A93DF /* 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 = ""; }; - E168C2D1F463B1E816DACA078EDE1AF4 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; - E16F600F5BFFC32128B93D6DA86C2DDC /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - E171BFC3FEDD0AB3D030A68AD5D52FBF /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = include/leveldb/options.h; sourceTree = ""; }; - E1792A159A644096F31504A3F4CE6B43 /* 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 = ""; }; - E188EC24E7F2369ECC6533CFF6B204E7 /* base64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base64.h; path = src/include/openssl/base64.h; sourceTree = ""; }; - E198F4A7374CF35608E3D56C9A802F60 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; - E19B3D43D11D5638D68E4CCD659D416A /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/ext/filters/client_channel/proxy_mapper.h; sourceTree = ""; }; - E1C937C3027E078D1518FD5A761B5503 /* 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 = ""; }; - E1EE6A492364C823126EED0463057D97 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/codegen/call.h; sourceTree = ""; }; - E22CAE7A7003499908E6265DD4CBD778 /* FIRFinalizeMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.m; sourceTree = ""; }; - E237E1ACC8358970594371C3DACBE19D /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - E23B213AF99F8385AC041E7DC39DCB3F /* max_age_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = max_age_filter.cc; path = src/core/ext/filters/max_age/max_age_filter.cc; sourceTree = ""; }; - E23B9ABF6D6C4F37041C82AB78050532 /* 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 = ""; }; - E23C76272ECD4ECB694402E88B794149 /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; - E2490F9EFDCD38D0882590687B9960EA /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; - E253167A05AC66A4F9B0084C15177D55 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; - E25600AB4491B7DFB66FFBFDF46DC259 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/status.h; sourceTree = ""; }; - E260591847D6BC81E6A8BD445C5C9E1A /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; - E264E033AD2FFC131B3D21D214DE1329 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - E265193DCCE9BD9FFD5DB1CA1F821870 /* proxy_protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c"; sourceTree = ""; }; - E2687499390ECE5053BC5731A5DE7131 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - E270BEE109637DD62BABF331C4C23A69 /* 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 = ""; }; - E27BA693190BF853791F6233AB26A3BC /* 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 = ""; }; - E28A2D63D5BD3D10CC33E262C66AFB6D /* 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 = ""; }; - E2A467762A7C41D8C3DE86CC6E2BE3B6 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - E2AEB9A76A326E3D381622EA7B9D3590 /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; + D50DC06CDFCDEB0D1D0762645FD18DE4 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/function_ref.h; sourceTree = ""; }; + D5121F42EDF3CB2B838C2174C5E29478 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = src/include/openssl/opensslconf.h; sourceTree = ""; }; + D51C04090763715CC9904FD3DEFD0E00 /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; + D5305BEBC418E974C9FE3663A26B3FD5 /* scoped_route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scoped_route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c"; sourceTree = ""; }; + D548C5C39A726A11AC762B31FD04D125 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; + D54C6B4437D484FF319583FCCD27B0C1 /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; + D55F3E7EC07CAB9AA780456A2D19703E /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; + D57E08F14DBB1077AC132D731DE4E4B4 /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; + D5DA043265ECF82E27BA78E66469A58D /* 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 = ""; }; + D60E4E8E58620EC53F9029521141338C /* FIRDeleteAccountRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.h; sourceTree = ""; }; + D61097D5AC2C6DFDA704C3D88D7EEA70 /* url_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = url_external_account_credentials.cc; path = src/core/lib/security/credentials/external/url_external_account_credentials.cc; sourceTree = ""; }; + D6329E39BE3DD49D5DAFDBF8F5AA6D88 /* memory_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_lru_reference_delegate.cc; path = Firestore/core/src/local/memory_lru_reference_delegate.cc; sourceTree = ""; }; + D63C471852D75F593755EB4EE6EFE07B /* 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 = ""; }; + D64A09F049F99289F7A8803ADD48DE7D /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; + D64A1CBC16799D8F3CB7578B9E8E2E2C /* thread_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_manager.h; path = src/cpp/thread_manager/thread_manager.h; sourceTree = ""; }; + D65DB9AB0AE07A52F640B1A83F99C672 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; + D65E50A6E2055A0DAE2828664C16334D /* 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 = ""; }; + D65E6BBEF6E43985A0337AA16A01530A /* create_channel_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel_internal.cc; path = src/cpp/client/create_channel_internal.cc; sourceTree = ""; }; + D66AC3130F7636C95C6FB4010BD7F853 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/lhash/internal.h; sourceTree = ""; }; + D677C309DC7A4598A885B09B74166C1E /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; + D67FF6EDBA9EB3C5C4A871B7FED5C7B4 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; + D69FBDD8E0D7D45D243BC7C1BD5F3906 /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; + D6A392EC8A59CA278492C3D708EBA3CD /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; + D6B6345A582066F6B6D46C6547AF8598 /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; + D6CCDCF74C7DF5B855C7B3FDF4FC8226 /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; + D6EEF263EF1C997343E5F88EFE420B76 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; + D6F41A9F8DDA943C36374194CE45F422 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; + D702069D39967B63E62E5871DD056E12 /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; + D70CFB3D8B86BBEE58C9B3AC4E4ED3EE /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; + D71ACCC02C51E150DE057FEAFDA4EB48 /* per_thread_sem.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = per_thread_sem.cc; path = absl/synchronization/internal/per_thread_sem.cc; sourceTree = ""; }; + D727159889609B46A8D62E40EC74F7AC /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; + D72C7039A8F4008759839E9CD5A20BEF /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; + D7414D9AF32CDD61601B8D433A1579F2 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; + D7950CC2AEABDFD5A7412F38A98C8862 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; + D79C2181AC03C784171C27E13A02A92D /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; + D7A1CBC6CA547FDD0D2BEAC649F534DB /* sample_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sample_recorder.h; path = absl/profiling/internal/sample_recorder.h; sourceTree = ""; }; + D7B9B5ED968B63DD8BC408D31698D781 /* 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 = ""; }; + D7F745270746B4C000235CDF6E67C12A /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; + D801DD5175E00D9FEE5AA45CA3A911B2 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; + D806BC6E3AC9A90601B95EA95C3C6A14 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/impl/codegen/interceptor.h; sourceTree = ""; }; + D83AA01D8992425089A2975AEF22FB63 /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; + D8579DE5DE27A25EAB2B7E9D5BD1B08C /* 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 = ""; }; + D87B85409A67476C18535E1F3BEE22CB /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; + D8949839E9396BA9155319F8AB64DD05 /* 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 = ""; }; + D8A1131D1E00B9B1D5AF88FC6483E418 /* leveldb-library-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-umbrella.h"; sourceTree = ""; }; + D8A2A001B1875165A8CC5E189E7E044A /* FIRUserInfoImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserInfoImpl.m; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.m; sourceTree = ""; }; + D8A3366922F86DE7980F06C0D3FB8B00 /* tcp_client_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_windows.cc; path = src/core/lib/iomgr/tcp_client_windows.cc; sourceTree = ""; }; + D8B6E6F781558B7591CD661D84A45716 /* FIRWithdrawMFARequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFARequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.h; sourceTree = ""; }; + D8DA2372B5110504AB5BC8B0B97348F8 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; + D8EBCCF41C1F4E8704D2768F33C143B0 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; + D92C37A8968CA8FE58EADC429BDE7E49 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/bits.h; sourceTree = ""; }; + D94425EB1D3A5AA867FEF18E733240E9 /* FIRAuthRequestConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRequestConfiguration.h; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h; sourceTree = ""; }; + D94DF377B8AED97811D82A83777524DB /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; + D964A86004DCB03D0B2C06B2ACC1FCA5 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; + D97810310876FF2E3D239445BACD7CBA /* p256_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_table.h; path = src/crypto/fipsmodule/ec/p256_table.h; sourceTree = ""; }; + D98384995DFB7952271D53952D08CE86 /* FIRVerifyPhoneNumberRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.m; sourceTree = ""; }; + D99226CD44FB2E95D0DDD3F98256E425 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; + D993D57BB99C0DC1B3D77ABC9CFA42C2 /* FIRSignUpNewUserResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.m; sourceTree = ""; }; + D99A700AF6FC8866173B03A7AE1A46C6 /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = idle_filter_state.cc; path = src/core/ext/filters/client_idle/idle_filter_state.cc; sourceTree = ""; }; + D99F5A30E8D0B776FC0EB1CC1D13278F /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; + D9A70D931D7BE20DC9F573A5D004F46F /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; + D9AA0A5067796AB2F599C2EB79483457 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; + D9B24A5E61BE721C4F637603676CD6CE /* memory_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_target_cache.cc; path = Firestore/core/src/local/memory_target_cache.cc; sourceTree = ""; }; + D9D21B7F89E0D6FC0FD1112FA64C83CC /* 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 = ""; }; + D9DFEB078FF507AEC246A1898FDC9C8D /* load_system_roots_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_system_roots_linux.cc; path = src/core/lib/security/security_connector/load_system_roots_linux.cc; sourceTree = ""; }; + D9EAFF817D7931532A1C4D582FF3FAB0 /* gRPC-C++-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-umbrella.h"; sourceTree = ""; }; + D9ED6DFC01AFDF930B2E6EAF8B62A328 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; + D9F0AF9299D6AAB91D45AA5A4799A991 /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.c"; sourceTree = ""; }; + DA33063B918A2ED89801D6DCEF1DE7D1 /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; + DA58E4CCA90BF427FEB844C7C6B3E247 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; + DA66DB0A77FF700AF7A1963B28569A71 /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; + DA96F498DE648C92B374764C9DE0BFA0 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; + DAC8B492D1B2176E766F52876E1016DD /* stacktrace_aarch64-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_aarch64-inl.inc"; path = "absl/debugging/internal/stacktrace_aarch64-inl.inc"; sourceTree = ""; }; + DACBBBAEFEB7299D8B5F80665345C475 /* FirebaseFirestore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseFirestore-Info.plist"; sourceTree = ""; }; + DAD08FCBE57A577EE1BE4C092EE2379C /* GDTCORMetricsMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsMetadata.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetricsMetadata.h; sourceTree = ""; }; + DAEB608CBE2323707CB13BCA93CFC92D /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; + DAEFE00953709D5B426D1BBB084D49D6 /* 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 = ""; }; + DB085E33BA3949B0A03FCE79AB8F1FA7 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; sourceTree = ""; }; + DB222F29B01B461D74EC283FE9967EBE /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; + DB284E7C4E4EAAB08AAE74F89B00DB5E /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; + DB45FBA5AA94CFB9045E5BFBFCBC067F /* idna.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idna.c; path = src/idna.c; sourceTree = ""; }; + DB6D8EA375F893D63FA5D903232B276B /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; + DB750341229EF0193FB051A0DD01945A /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; + DB7CA64EE476A52C869C6CB8479077AC /* census.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = census.h; path = include/grpc/census.h; sourceTree = ""; }; + DB92F1816C1091E8E799442EDAA5FB5F /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesccm.c; path = src/crypto/cipher_extra/e_aesccm.c; sourceTree = ""; }; + DBA1F171A1C4CD88CFB8676F5051EED7 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; + DBA6805F360807EFB886BCE5C17FEB00 /* iam_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iam_credentials.cc; path = src/core/lib/security/credentials/iam/iam_credentials.cc; sourceTree = ""; }; + DBC481F7767DD342D2A38E88DB0DC061 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; + DBDEDE9AB4B16852F9F44D21698692B3 /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; + DBEFB06ABB0547FCBC68B8243D928339 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/variant.h; sourceTree = ""; }; + DBFBBA9D718F5B6F2F851487B9F13975 /* abseil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-prefix.pch"; sourceTree = ""; }; + DC00AA74C289D87FA0B86FF0F1D7CDAB /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; + DC022933E3292FF6FAF8AF37F5F3485B /* p256_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64.h; path = src/third_party/fiat/p256_64.h; sourceTree = ""; }; + DC11AC772C47E495AA62CA4E5B930ADE /* semantic_version.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = semantic_version.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c"; sourceTree = ""; }; + DC13FD278763C3F982C3DABFF1AB1649 /* FIRPhoneMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion.m; sourceTree = ""; }; + DC140C516E89FDFF2F95956E292D4086 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; + DC19A601B51721914230A09F736C4924 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; + DC1FC86FE8E910ABE8A8BCBDCD433D9C /* 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 = ""; }; + DC2B28850898308399BDBC2962B21B47 /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; + DC2BF52D96EF4D49ED19166D1A4513C9 /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; + DC524CB3262A9D45FDC1F53DA406B415 /* FIRGitHubAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.m; sourceTree = ""; }; + DC57BFC02C89F8CFDEA09B01A8A97B6B /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; + DC63FEE2C1FDC68BDD445C8A3383ADB5 /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lb_policy.cc; path = src/core/ext/filters/client_channel/lb_policy.cc; sourceTree = ""; }; + DC6BADA7CFA2BDD243DF9F1DFBAF2A93 /* FIRSignUpNewUserResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.h; sourceTree = ""; }; + DC6C2809A58ECCB5F595B10F26E501C6 /* health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_service.cc; path = src/cpp/server/health/health_check_service.cc; sourceTree = ""; }; + DC6EA39A7CEA95090CB3735B4F464EDC /* fake_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_security_connector.cc; path = src/core/lib/security/security_connector/fake/fake_security_connector.cc; sourceTree = ""; }; + DC7062B0EB4486D0F9C08C7AE84B4973 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; + DC8DF9B81455915D6BAE137EA69A36E0 /* version_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_set.h; path = db/version_set.h; sourceTree = ""; }; + DC98114CFC67D485D39A7F336475EC28 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c"; sourceTree = ""; }; + DCA9C33BE6453F6488929BDDF12BB588 /* distribution_caller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distribution_caller.h; path = absl/random/internal/distribution_caller.h; sourceTree = ""; }; + DCAE0419CD3F7E14DC4A749AFB8E1F45 /* FIRPhoneMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.h"; sourceTree = ""; }; + DCAFCA36C17F097B39508480ECEE77CD /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; + DCBBB295CC84238735D6707ED2C1C215 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; + DCC6939CE4AA8BE43C89A7845A85C517 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; + DCCD391CA113201864C4D7ED2B2D268C /* 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 = ""; }; + DCDC4DC3585E687AE062AE199FD8F455 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; + DCDD5D1A254E5BA13E241BAE74B85A7E /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = src/include/openssl/crypto.h; sourceTree = ""; }; + DCDF6188010FA4A96C4BD3D5C714685A /* 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 = ""; }; + DCE9A776DDC0D8B3FA3920962F113D22 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = address_filtering.cc; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.cc; sourceTree = ""; }; + DD15D42C5ABD98B97781169C4548A123 /* FIRUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserInfo.h; sourceTree = ""; }; + DD3313811BC74710DC01F44CDB8BFA38 /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; + DD4267C5FC2438715DC7D20B89E53453 /* fips_shared_support.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fips_shared_support.c; path = src/crypto/fipsmodule/fips_shared_support.c; sourceTree = ""; }; + DD4E9400C20E1C6BBF2559F178EE0606 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; + DD5844CB192FC0211ED392D2EFCFFE6D /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; + DD69D10B189C6344EC511B4232C175F7 /* auth_property_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = auth_property_iterator.cc; path = src/cpp/common/auth_property_iterator.cc; sourceTree = ""; }; + DD7274D791462052B04C2ADAA3F006E5 /* time_zone_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_format.cc; path = absl/time/internal/cctz/src/time_zone_format.cc; sourceTree = ""; }; + DD7491A8987E9FBCBE8F125AE340B1DB /* filter_block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_block.h; path = table/filter_block.h; sourceTree = ""; }; + DD792DF8847D4A2CFD8417BC53034BDE /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c"; sourceTree = ""; }; + DD8A84C72D151166A74D3B6A79AA8490 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = src/include/openssl/lhash.h; sourceTree = ""; }; + DD95AFA33B7DDB1544B2E443238F02F7 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/leveldb/status.h; sourceTree = ""; }; + DD9B57F54A40D98C10EAE29E3F9C063A /* FIRStartMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.h; sourceTree = ""; }; + DD9CFB7744000462E241B2B693BAD63C /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; + DDA1CEE8CB59CDABA988F6C957893E92 /* 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 = ""; }; + DDACF698F62C15D302EC066C251FD3AF /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; + DDEC335E818B06B1A6A5F9A33196DFA9 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; + DDF98ABBA75103345A5890C2B7D1E881 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; + DDFEE1AA7CC544A225BE1C2CE2CE4497 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/impl/codegen/status.h; sourceTree = ""; }; + DE1754AC18FAE3D357AB4DAA81DB5728 /* GDTCORStorageSizeBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageSizeBytes.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageSizeBytes.h; sourceTree = ""; }; + DE3359BA5884380CB0C246704179F199 /* 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 = ""; }; + DE43F0B95AC9933832AEE1106F6AA4EB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/chacha/internal.h; sourceTree = ""; }; + DE582E4F72274D3CF9E0C7E72DA4C274 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; + DEA04C956E10597DF939666F703AC80F /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; + DEB076FFE6C1664CF4B31BA9DBD36A76 /* 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 = ""; }; + DEBCC1E682E8B7415409A5066CAD5090 /* city.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = city.h; path = absl/hash/internal/city.h; sourceTree = ""; }; + DEE3BC6FF54128C19BACA54536DFC880 /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; + DEF0ACA15C0C17EB696B6265209894D5 /* route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c"; sourceTree = ""; }; + DF024A9B4735921F5BDE91A436CAAF44 /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; + DF06DE0B6B56AAEFDE8FF6EAECA194DF /* 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 = ""; }; + DF07A4029516D12629925D465E1A510A /* 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 = ""; }; + DF1C2EBD0C8D8241C1F95AFD4A886F55 /* cord_rep_btree_navigator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree_navigator.cc; path = absl/strings/internal/cord_rep_btree_navigator.cc; sourceTree = ""; }; + DF2F603DF81AAB0CCDCB04B75162B522 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; + DF31A195CC312CC81B044ABB91D26AF8 /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; + DF3D7EACE9186EFE061408CEA41BDD09 /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c"; sourceTree = ""; }; + DF575700ABB5CD5091592C2A8D3DF24B /* stat_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stat_posix.cc; path = src/core/lib/gprpp/stat_posix.cc; sourceTree = ""; }; + DF6BC080E1C49276809A3A3A20803233 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; + DF7815B12C9CC9E562868DBB01482606 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; + DF8F6E6F7ABCBE5FC9BF034F55A2C170 /* discovery.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = discovery.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c"; sourceTree = ""; }; + DF916185ABDC977904C46809F017DEE1 /* security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_connector.cc; path = src/core/lib/security/security_connector/security_connector.cc; sourceTree = ""; }; + DF97F13B65124EFB900262CCFF11CCC0 /* time_zone_fixed.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_fixed.cc; path = absl/time/internal/cctz/src/time_zone_fixed.cc; sourceTree = ""; }; + DFDCE1F0D4E68CDD61E4BDFE7B633FA2 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = src/include/openssl/ssl3.h; sourceTree = ""; }; + DFE07933A04C0722304262517A731B5A /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; + DFEBE39B1A123ECA6ECC27136BB67364 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + DFEDF66CBD59687CB311776859E52ACF /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_averaged_stats.cc; path = src/core/lib/iomgr/time_averaged_stats.cc; sourceTree = ""; }; + E005303BECE7BBDE0659498D611FADB2 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; name = kqueue.c; path = src/unix/kqueue.c; sourceTree = ""; }; + E00671B2C62962CE76E0C7AA3F4861BA /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; + E00793AF2FC1C23F2EF4991F2C5F2F95 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; + E00E431C6179EA19CDAA28C66E69B801 /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_int.c; path = src/crypto/x509v3/v3_int.c; sourceTree = ""; }; + E0115BC359C26ADCFC6D4073AD2C28C8 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; + E0219BB149B161C8D7AA5D9494CC0140 /* CLTypingLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLTypingLabel-umbrella.h"; sourceTree = ""; }; + E0645C653F59701B65A6DB5806E841CB /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; + E07B4B5591B8BE7A130D27A1383800BC /* client_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel.cc; path = src/core/ext/filters/client_channel/client_channel.cc; sourceTree = ""; }; + E0A9044DFCE3D735ADC731CF58598CC0 /* endpoint_binder_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_binder_pool.cc; path = src/core/ext/transport/binder/client/endpoint_binder_pool.cc; sourceTree = ""; }; + E0B72185B536292DE4C06283D97838F7 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; + E0BF6553E330AD80F1C6B05FB38C5870 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = src/include/openssl/evp.h; sourceTree = ""; }; + E0E221DC8B64F9E6B36DC7EC8BDA9D77 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/support/server_callback.h; sourceTree = ""; }; + E0E440BBD064290A9FEC9387097BDA84 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = src/include/openssl/cmac.h; sourceTree = ""; }; + E106DDDC07758BF20BE9DF79C4DED214 /* cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cache.h; path = include/leveldb/cache.h; sourceTree = ""; }; + E1167E83A2E8513AF273C6C7D7CE7F48 /* GDTCORMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetrics.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetrics.h; sourceTree = ""; }; + E12A8ACDDFAE3C205308833A30573E7B /* ssl_session_openssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_openssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_openssl.cc; sourceTree = ""; }; + E12E8D566FAF45FCAD196BCA4B92A17B /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; + E17A26765EC010979E39EF987B0D5CD1 /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; + E17DBF5F48E222DEBFC34246F62FBC31 /* xds_resource_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_resource_type.cc; path = src/core/ext/xds/xds_resource_type.cc; sourceTree = ""; }; + E17F2EE6208F50466B652F4334748216 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; + E1821704FD7119472F4C40C6B4959A65 /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_akeya.c; path = src/crypto/x509v3/v3_akeya.c; sourceTree = ""; }; + E1838FC4A4A4EFE513DF31759F6F7F3B /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = absl/strings/match.h; sourceTree = ""; }; + E194690CB60601C0C178435C75812721 /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; + E1A75791B2C78571C490B64C3EE72B19 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; + E1C58E306BAA0198D9D4947C5DD40A82 /* server_secure_chttp2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_secure_chttp2.cc; path = src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc; sourceTree = ""; }; + E1D5E1D287122207DC6E949C078FD696 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = include/grpcpp/security/credentials.h; sourceTree = ""; }; + E1E7EE1C224F0763C571AD7B9D0105D7 /* 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 = ""; }; + E1FDEF47BBD2D6AD4C5D2F59A916C4EB /* str_replace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_replace.h; path = absl/strings/str_replace.h; sourceTree = ""; }; + E22F844D60F529F5134801ECC367A985 /* 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 = ""; }; + E235DC66D55AD743C05FE5521CF188AB /* create_channel_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel_posix.cc; path = src/cpp/client/create_channel_posix.cc; sourceTree = ""; }; + E2557EF5D9A3051A6EA018640E7E69EE /* http.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http.nanopb.cc; path = Firestore/Protos/nanopb/google/api/http.nanopb.cc; sourceTree = ""; }; + E2ADD3D7C577F3E409CABE752BF825FC /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; + E2AE9A876DFD772F87DBD1C715318B0E /* FIRGitHubAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthProvider.m; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCore; path = FirebaseCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E2CE7272D09CDC1E4A2D66205C7E290D /* 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 = ""; }; - E2D327B3862D4AFA0F0F250F058C4BD9 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; - E2DEE01B8736E272BF2B3BAFCECD78B2 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = src/include/openssl/asn1_mac.h; sourceTree = ""; }; - E2EBBE7064951DC0E72B9D6A5B1FEFD6 /* ev_epollex_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epollex_linux.h; path = src/core/lib/iomgr/ev_epollex_linux.h; sourceTree = ""; }; - E2FA57F253AE2D3A72E3A68B54CD2933 /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; - E2FC9010A499AC6F06F9233BA1D72B18 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; - E303A4B867C0A073E43D2705A20FDD53 /* GDTCORFlatFileStorage+Promises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORFlatFileStorage+Promises.m"; path = "GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m"; sourceTree = ""; }; - E311060DD11CA125094EE84B5A3793E2 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; - E32695E7994B6A021A79F8905B13D7CE /* 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 = ""; }; - E33EC5D4DBABE8940D18D69C54D9D1EE /* FIRFinalizeMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h; sourceTree = ""; }; - E39F865726404450820E00BAFB232434 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; - E3A731AC3AD96D4A9F2590A4263C5903 /* FIRVerifyPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.m; sourceTree = ""; }; - E3B766557559F5FD34F3189EDD5DDEF0 /* ads.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c"; sourceTree = ""; }; - E3BAB4CA449A540C0DD9127A10E54745 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/support/log.h; sourceTree = ""; }; - E3BE049556DEE07E98DCD21FF9ACFB00 /* FIRPhoneMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorGenerator.m; sourceTree = ""; }; - E3C030AD5C975B2D61A9775FDC1D6630 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; - E3D0EF8BC014BAA93E07834E11BC30DC /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; - E3D79E31FC5357C1A031B15D2AF7998F /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; - E3DC2819FA4380B3479C1CE4F49175DA /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; - E3EC7C431BEDA3CC8F8D81F339D9B5B5 /* call_once.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_once.h; path = absl/base/call_once.h; sourceTree = ""; }; - E3FBE8F2B818881C05811BD975B4C16B /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; - E40D05F40778528A6D07508416613D8E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bio/internal.h; sourceTree = ""; }; - E421476D80888AFE7A0647615D36D8DB /* 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 = ""; }; - E4228D7609B06D2AD530873B28AA28D8 /* 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 = ""; }; - E43F67AEE07741EE4D2F439CB32A4D82 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - E4528AB5A3133E3F42FFDA529B0B572D /* max_age_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_age_filter.h; path = src/core/ext/filters/max_age/max_age_filter.h; sourceTree = ""; }; - E4665355206BF6E344BFA82DC965B5A2 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; - E46C379ED94A55A89F6F983FD07B2087 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; - E46E1F47CB726BCAD4F834D3C073CA7D /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - E48D36F8EF0BD5B1226A31B16C558557 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; - E49801020AFE5E2E8E61195F0AF783EE /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; - E4A731EED3EED71B455FBE13E8938C09 /* 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 = ""; }; - E4B3FB2498E704230EE92C863837CC22 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; - E4B7487E1643CE26881ABE43E4784145 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - E4CAEEE1E8159A80E76B9C605AA98BCD /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; - E4D3CB0CE6FAFA4A3EA9A781FFA104CD /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_averaged_stats.cc; path = src/core/lib/iomgr/time_averaged_stats.cc; sourceTree = ""; }; - E4EF9A96A73109D86F43AC6D681D8A62 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; - E4F7B2DB581CD295CBB5CEA8D69212C8 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/impl/codegen/sync_generic.h; sourceTree = ""; }; - E51B30EDF4ED3DE4FE989BB8F808ABDA /* message_compress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_compress_filter.cc; path = src/core/ext/filters/http/message_compress/message_compress_filter.cc; sourceTree = ""; }; - E52A76C25EF128EC971D9F68027D59FD /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/include/openssl/conf.h; sourceTree = ""; }; - E5302244D099757754F2D0B45FB759BE /* http_proxy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_proxy.cc; path = src/core/ext/filters/client_channel/http_proxy.cc; sourceTree = ""; }; - E5327910D0BDF08F4B39E825521C1512 /* v3_pcia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pcia.c; path = src/crypto/x509v3/v3_pcia.c; sourceTree = ""; }; - E54A45C82715C6857D1231EAE542E134 /* FIRPhoneAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential.m; sourceTree = ""; }; - E5593CF7B0CAFD576AD24EE8A30CBBC6 /* 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 = ""; }; - E566718B81CF266276E026CC37C9BC92 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; - E56F9C2783CB4AD0BCAC21122DB2F4D8 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - E586021E930683DC5C528A2D8B64D3D5 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_des.c; path = src/crypto/fipsmodule/cipher/e_des.c; sourceTree = ""; }; - E592DAE2079B75A9B744AAA603FF2E0D /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver.cc; path = src/core/lib/iomgr/event_engine/resolver.cc; sourceTree = ""; }; - E595D21180F46EC1D31980433C2CDE28 /* 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 = ""; }; - E596444A54257E1EFD45894FE8CA034D /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - E598D5945193EF65D52D21390E286354 /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; - E5E22965A8E2CB5BC99C33E43BE01C61 /* 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 = ""; }; - E5FA3A38FA52055AE790370AE1C7D782 /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; - E6196DBAF2CA9416A88ADB40066B3C3C /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - E62307E7B559EDCC9BAA7D7D24E57C72 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - E651DB79FC5ADC9A7D0ACA4E8496A1DB /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = src/include/openssl/bn.h; sourceTree = ""; }; - E65254C7F4A2A475753D63DC57C94241 /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; - E65D9AB517F0E6F16A3526448CF1BF30 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/ext/filters/client_channel/lb_policy_factory.h; sourceTree = ""; }; - E668578DAFC72287B12587A5773FB725 /* 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 = ""; }; - E66F5CE31CC30B5FC35F11E8037F254F /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - E6700B793E2D1C6EFBA12F4C7C8D5668 /* string_util_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util_windows.cc; path = src/core/lib/gpr/string_util_windows.cc; sourceTree = ""; }; - E6810D0196C1EB8D83072918AFC948C3 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; - E695C5A78EA0B2F78681E3C1E6415550 /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; - E6A2580E1C95493E5B4546C6AF57646C /* 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 = ""; }; - E6A3DC25092FF62F5600E56A662F43DC /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - E6A4871BDC1F28C1FD965F1685D3BB02 /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; - E6B8E7E067A2BA1EBD9CB451591FF59C /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; + E2C9422F8379A5977C8650C49921D87C /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; + E2C94B3B5862469CC683367DAF30B7F2 /* 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 = ""; }; + E2CE8F3FC5547AFF874A1340C5D91830 /* FIRVerifyCustomTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.h; sourceTree = ""; }; + E2ECF6C2E5835032E5396D6E76540AF8 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; + E30456D735D95D8C38AAAAE622055005 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; + E30729039880C474D5F3D2EBD5099DDC /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; + E32321B207DB6C72B92E821E9A90D1F8 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; + E32903EB471342B3111D3F2ED4399336 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; + E34C0C51DE600F90F25D778A38806744 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; + E3681E55D1464113B9A11C54FFBA84E5 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; + E37AA8DEA0AAD92413F3D4762A3FF6ED /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; + E37F2AABAADE5025DE0828D9A595345E /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; + E391DE91602C3AD845DED1E075A0D9DD /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; + E39B1588A3667C7C222A061377B7C4C2 /* handshaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c"; sourceTree = ""; }; + E3BA8D00021AA1CCC4F50C99457D31F7 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = absl/time/time.h; sourceTree = ""; }; + E3C287327CB905A8CFD3B0BCBF671F71 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; + E3CBB83B455C610C6674C0142F9BA3FB /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; + E3DFB205995D2845B8E85C0FA72A986C /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; + E3E7BE90EAEC4900541C84DA446337B9 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; + E3EE72E50F4818844B60E39819557CE0 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; + E418A5A0C46B782A038DEB3CD39660A6 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; + E41A3E258FEE62A0254B8E29EE72A84B /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; + E4244F940DADB07C9263186B7844DFC2 /* table_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_cache.h; path = db/table_cache.h; sourceTree = ""; }; + E43618434864864D909C372449EC90EE /* poly1305.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = src/include/openssl/poly1305.h; sourceTree = ""; }; + E467C5222696F19EFE394E9FA1EAF738 /* 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 = ""; }; + E46B6D9A60CEA5CAF065D6C652B7BBF7 /* slice_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_split.cc; path = src/core/lib/slice/slice_split.cc; sourceTree = ""; }; + E46B8D887C2FB665C5516BE6FF751BFA /* FIRStartMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.m; sourceTree = ""; }; + E46CDF73C34F2A6DBFFD58BCAF0B14AB /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; + E4781B75B403259AF1253AA2CEC6F616 /* 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 = ""; }; + E49C151FEF20A135ECBA2128BBC19233 /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; + E49C592CA2093EEE92EE163B8C749FF0 /* sockaddr_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_utils.cc; path = src/core/lib/address_utils/sockaddr_utils.cc; sourceTree = ""; }; + E4A1B5A4E5416F8590843CE6E648D56C /* CLTypingLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CLTypingLabel-dummy.m"; sourceTree = ""; }; + E4C3864BF98BE105781E475394D65B5D /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; + E4C8D7ED4154FFF4D487CAEEF2A73989 /* string_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_posix.cc; path = src/core/lib/gpr/string_posix.cc; sourceTree = ""; }; + E4CB4E7D3F695A3BF053E1DCCF808172 /* env_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_linux.cc; path = src/core/lib/gpr/env_linux.cc; sourceTree = ""; }; + E4CC65A6BBB36F189EDF9C5655FD5494 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; + E4EECC067F84800BF94B85BB6A166CF1 /* load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_report.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c"; sourceTree = ""; }; + E4F61E0E65173FB7D6D802CEB3DA7950 /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; + E5055D8187C0A775F6B45F2F298B102D /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; + E50EC0C9B5933F5F2677892B60458CA3 /* heap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "heap-inl.h"; path = "src/heap-inl.h"; sourceTree = ""; }; + E531F55E753FAE6077D3EE402840C25A /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; + E54B36C19CDBFB75EF135116B937D511 /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; + E5590A5FAEE02EEC468DBED5CAE72947 /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; + E56ABCE2943C8B93CFE60CDEAAA61DD1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bio/internal.h; sourceTree = ""; }; + E58C81289A917C9C8CE1312F6459BC03 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; + E5C78DE07F73CE2DAA7449479AB08967 /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; + E5EB2F54EC53670336345A9B14498B1A /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; + E620F75B4A9F300C31DAFF6E0BD181E2 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/support/atm.h; sourceTree = ""; }; + E623072C0106D817DFD2F1ED3B03B4E2 /* base64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base64.h; path = src/include/openssl/base64.h; sourceTree = ""; }; + E652D90040370B08F7621D0FFD2E3263 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; + E65C30B2BE80BE8ACE88E13D7D22710F /* oauth2_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = oauth2_credentials.cc; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.cc; sourceTree = ""; }; + E66C7244BCF0AF79F4888D4E8ECF2A94 /* 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 = ""; }; + E6720827ADECF10E452CAB236C96F245 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; + E67D8E31B9026919881D55F2147FB223 /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; + E68289EAB357D9EAB2B84D38798EE336 /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; + E68C25CF8F323DF36033D259BD951DE8 /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; + E69244DFD082692966F0157DEF6438F1 /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; + E699D1B75123201FA73DEF28A80857E6 /* randen_hwaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_hwaes.h; path = absl/random/internal/randen_hwaes.h; sourceTree = ""; }; + E6B44525D0250EF680C44D74BA2E369E /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; + E6BA021FE48666B3CDAFA6323EDAD2CA /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; E6C05696DDF473DAFA042867E1824F95 /* Pods-Flash Chat iOS13.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Flash Chat iOS13.debug.xcconfig"; sourceTree = ""; }; - E6C5D6968181A44C5AE9A6F0811EAA82 /* grpc_ares_wrapper_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_event_engine.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc; sourceTree = ""; }; - E6E1DE6163A6D4EC0E925B494E7AB7F0 /* 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 = ""; }; - E6E380CAF586F48321C4B88645489180 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/support/server_callback.h; sourceTree = ""; }; - E6FE6F7D69C20EDF333264214F637C5B /* 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 = ""; }; - E71E7A3D5C56D23CF026879467561E29 /* eval.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eval.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c"; sourceTree = ""; }; - E732719E9F47BC742EDA62113AD8D11E /* 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 = ""; }; - E760D29944F24E42412686AC46A044C9 /* csds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upb.c; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c"; sourceTree = ""; }; - E76A4836D972DD833224C99A523BF6F7 /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; - E788A415E25EB920A6EB265B3185EDEB /* 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 = ""; }; - E79C807B8417BF0363160E2A52C5B9C7 /* FIRResetPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h; sourceTree = ""; }; - E7B18BEBE462292C1D1AED6B07156D28 /* context_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = context_list.cc; path = src/core/ext/transport/chttp2/transport/context_list.cc; sourceTree = ""; }; - E7B379A0E11B63FEAEE4C1740322F28C /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block.cc; path = table/block.cc; sourceTree = ""; }; - E7C0C0E1E847F84B5E23FC49A2629F6B /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; - E7D2C044AEDDEA9CBF48C3FA49A909AE /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - E7D2DC228CAF707CB39D12A2F8494002 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - E7DE45560437692A216A598C00E9D614 /* abseil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-prefix.pch"; sourceTree = ""; }; - E7EFB82A20A4AE926CBC13C1F37A689A /* srds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = srds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c"; sourceTree = ""; }; - E7F1B8E58D1581F110C3B3FDCC04ED95 /* 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 = ""; }; - E7F562839B8733B44E6DE53F84BB97F3 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; - E807A42D134D52C54CC6F2A3641297A8 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; - E81199DFCC42FBE07DE7CE783259513E /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - E81FDB3722FFACFB579184408B8B40DD /* 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 = ""; }; - E8248AC1B424553C75E095E2F0A5A7F3 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = absl/synchronization/mutex.h; sourceTree = ""; }; - E8256504B391A133658A9F53E70BF601 /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; - E83840BAED426BA06FE7371113DC90ED /* snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = snapshot.h; path = db/snapshot.h; sourceTree = ""; }; - E840D06A13004DA5F9D2848A1199EA15 /* poly1305.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = src/include/openssl/poly1305.h; sourceTree = ""; }; - E8573B22D701832A339D06B71454F1A9 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; - E85E80D625A605827C324C4DDE86CAD7 /* 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 = ""; }; - E886BAAAD0217251B889F27BBF6E6AEB /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; - E89A85148727E57700EEFC54A410F463 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - E89C97DABA46937FBF097A0108E131F8 /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; - E8BA8631E8E3418C7877A784E5394DD9 /* 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 = ""; }; - E8C560804BBFFB22FDAB00E46EB12B05 /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; - E8C736684F4696714E6AEC832225730C /* gpr_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_types.h; path = include/grpc/impl/codegen/gpr_types.h; sourceTree = ""; }; - E8EC9429436F9734233822710E79603A /* digest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = digest.h; path = src/include/openssl/digest.h; sourceTree = ""; }; - E8F2E3E057E99001FA8B4A53B7DB4B63 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; - E8FAFD4A53F35F90DF0A545F674F55EE /* is_epollexclusive_available.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = is_epollexclusive_available.cc; path = src/core/lib/iomgr/is_epollexclusive_available.cc; sourceTree = ""; }; - E900281EAABAE1D29ADE22362A955E51 /* 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 = ""; }; - E908D78B9685E44ABF94444391558EC8 /* CLTypingLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CLTypingLabel.swift; path = Pod/Classes/CLTypingLabel.swift; sourceTree = ""; }; - E92B7E2A01A1A84C351E4515E391885B /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; - E9309C3628B3BB6CC05595DB7C4490B7 /* version.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version.h; path = include/uv/version.h; sourceTree = ""; }; - E93F17885C817A781D7FEA8C61ED67D9 /* testharness.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = testharness.cc; path = util/testharness.cc; sourceTree = ""; }; - E93F49FA1B936E265C8DEA583A74DB54 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - E95CAA6C502E1AF1DEB32A8F1E108ED8 /* 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 = ""; }; - E96E38C373753DA20564A46C665249EF /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; - E98D24A1EC19DC58525C92E2A5F33B90 /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; - E9CAA198FD151FBEDE21AC4EC956EC2A /* version.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = version.c; path = src/version.c; sourceTree = ""; }; - E9D2894C386C06DD677DDB65D31CB243 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = src/include/openssl/x509.h; sourceTree = ""; }; - E9FA2AAD6655170A9A03B73C111477A2 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = src/include/openssl/dh.h; sourceTree = ""; }; - EA03399A7B468623B9679F0EECD5B912 /* srds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srds.upb.h; path = "src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h"; sourceTree = ""; }; - EA044D27F2CFCA94044FE2FE079A4C86 /* health.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c"; sourceTree = ""; }; - EA252865CAAACF7FC55E8E8B86F8097E /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; - EA2596B068E37E2DA464F89021B3C799 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; - EA3F173689A0C2FE9591AD9013ACD0B0 /* mpmcqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpmcqueue.h; path = src/core/lib/iomgr/executor/mpmcqueue.h; sourceTree = ""; }; - EA58CE37525AB947BF6101C7E0E176CD /* grpc_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security.h; path = include/grpc/grpc_security.h; sourceTree = ""; }; - EA5D1E61EF8C0592D12C1A2B4A893AF9 /* 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 = ""; }; - EA6C84B01B4B3F4253B9620219390EFA /* cds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cds.upb.c; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c"; sourceTree = ""; }; - EA6C9BD4AD61CFF187F7EE76821C1BA4 /* windows_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_logger.h; path = util/windows_logger.h; sourceTree = ""; }; - EA8A415FD529DD061B3E1E52B489E778 /* sparse_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_set.h; path = third_party/re2/re2/sparse_set.h; sourceTree = ""; }; - EA8A5FB349D280095EDE58AB34326E4F /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; - EA8FB6449FDFDFF8C9E2213EBB0AD778 /* 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 = ""; }; - EAB845998AE346CA019CE1E12E5A0417 /* 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 = ""; }; - EABF70D8A882EE12AF939E7386C8B8C7 /* upb_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_internal.h; path = third_party/upb/upb/upb_internal.h; sourceTree = ""; }; - EACF1A8D502BC2BF2C5DE7ABC793A0B3 /* channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_filter.h; path = src/cpp/common/channel_filter.h; sourceTree = ""; }; - EAE351CD4D924458B9CEA52AE415FA4A /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; - EB1743C3DE9AF6A5D7F8459C4F1990F7 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; - EB242366755BF06AABF518B6372676AE /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; - EB261D2E8DEF8C7F3DEFC6A0E40124B2 /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; - EB4995C236C3160F2405E7443D18A1AF /* 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 = ""; }; - EB6473C00A114F36597B1C0E29FD0D37 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs8/internal.h; sourceTree = ""; }; - EB67F319D5A6DBD6F3DFC7872D41DAFB /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; - EB772318A59C605E4C6DFC555E79904B /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; - EB7AC6D0022C4E8E5D8A87CB7A4D419D /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - EB7B56FD7376EE690838AA923F85B40C /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; - EBC37F490E9C93CF4402A78E798E4295 /* process.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = process.c; path = src/unix/process.c; sourceTree = ""; }; - EBD806A3ABA3D64B269E18BE83711909 /* 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 = ""; }; - EBDEE9E5B1C61B8C1AACCE38D96A6160 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; - EBE90029584481452022B1912EBEDDE3 /* 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 = ""; }; - EBF78627D85A05E925BCEC8B289D3D03 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; - EBFC42E958DF0803F6F22DDF7A26A347 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; - EC0CAF8725E41FF2AB537CCC9C681811 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - EC1AB1800A8ACA9451B945397CA7931C /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = include/grpcpp/server.h; sourceTree = ""; }; - EC1B749CF3C9B8580BFC484CD44D768B /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - EC44168BAA289E239377CE1F0728929F /* 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 = ""; }; - EC52F6B0CFCCBEDCF1ADF353116D9FBE /* quic_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c"; sourceTree = ""; }; - EC7E86AC2F60004477CA101FB037F81D /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/internal/optional.h; sourceTree = ""; }; - ECAD3F5F27AC7B82A341BF9833C8A251 /* obj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj.h; path = src/include/openssl/obj.h; sourceTree = ""; }; - ECB17867ECE1D701EA31E17DAE72FF57 /* time_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_posix.cc; path = src/core/lib/gpr/time_posix.cc; sourceTree = ""; }; - ECBC9522495EEC9154681570104F395C /* 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 = ""; }; - ECE350535DA59CACFE56629B0ECDE9DF /* FIRDeleteAccountResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.h; sourceTree = ""; }; - ED0248F7016CA5C4A61F1CFA3D000F60 /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; - ED14E173B56E9601D4D0462A4EFACFB5 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - ED28175BE8D554A752CCD22E4BE652CA /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; - ED35CA2F4C3351265B988D788C7563AD /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - ED3709609F8752D5A98EFBE135A01FB6 /* 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 = ""; }; - ED526BE498618C869237B2280C4B7296 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - ED61FCFCBC151356785B88227EDE6C86 /* service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config.cc; path = src/core/lib/service_config/service_config.cc; sourceTree = ""; }; - ED93ECD107BADD0ADC249CD6139437FB /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/codegen/interceptor_common.h; sourceTree = ""; }; - ED97F5BEB8C729A4F52372DD79B4BBE2 /* 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 = ""; }; - EDC309F641F64D59235FC2D1EABF756D /* charconv_parse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_parse.h; path = absl/strings/internal/charconv_parse.h; sourceTree = ""; }; - EDF050AF714F458A3079DC64FC9A39A9 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - EDFBD28B8B0233E8BD26BDC0EBE44644 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - EE0D76860924C5B664B07C8F94ADA018 /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; - EE1FBF4FFC89B38701D1AC33FB70946B /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - EE63AC1FD47F00F6B061F81485AD4DB0 /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; - EE7C0C751870C4A9442DA503730D2D98 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = src/include/openssl/obj_mac.h; sourceTree = ""; }; - EEA4FDB6F17DAE059FF724EC9F5F896F /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; - EEA7A8C84EDBBCD0CF47112A1D84CA90 /* 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 = ""; }; - EEB052A50906220DD857C7AAFA1FBE4A /* eds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eds.upb.c; path = "src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c"; sourceTree = ""; }; - EEB1E143C62286D67ACCFD1C4AA1D928 /* kernel_timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kernel_timeout.h; path = absl/synchronization/internal/kernel_timeout.h; sourceTree = ""; }; - EEF496676802304202D5940F12569C51 /* FIRTwitterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.h; sourceTree = ""; }; - EF0C17AC04718859D77F9EC3118D7215 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/fork.h; sourceTree = ""; }; - EF0E9618951890E5D02ADFF1F7E3577D /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - EF21D0EFD59FEE50F44DAA3937253DCB /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; - EF2575DA89A6EB446485DF147818F554 /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; - EF3507125003FC6BB7CDD91111DD98EB /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - EF84631B1BD863A89DFD6F285BF43554 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; - EF8585BAC73F56B2FF65C8BB3C7A5C5E /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - EF975D81A087BA3F429817DFB625AB49 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/support/stub_options.h; sourceTree = ""; }; - EF994F46A9C8965E8ADC6066B89D511A /* 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 = ""; }; - EF9E51701BA237D68C21BB5A16E65A85 /* 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 = ""; }; - EFA7D76D3BB268FC03E410CB6541E819 /* circuit_breaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c"; sourceTree = ""; }; - EFCDBABFCFCDD85E1D659C09448A7BA7 /* 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 = ""; }; - EFDB94C4488339479A5FBB96F4A77AB2 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; - EFE7EE4B2EF0BB0A05FA4334345FA0CA /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric.cc; path = src/core/ext/filters/client_channel/backend_metric.cc; sourceTree = ""; }; - EFF1CDC13F7412C1746C666002D610E3 /* hashtablez_sampler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtablez_sampler.h; path = absl/container/internal/hashtablez_sampler.h; sourceTree = ""; }; - EFF54E47F13A60E7BF9B7A0E2E1C8783 /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = des.c; path = src/crypto/fipsmodule/des/des.c; sourceTree = ""; }; - F005F70494ED628BB86D4C7FBF979460 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; - F0186B61EF4267F27EFB04F25BABC067 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - F021F07F2BB1EA0B57EBDCB932408C98 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; - F0279C2FB3DEAE77649A5360F9E3A262 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - F02965C5796544EDFF3A08F7ED61F859 /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; - F02DA9FAF929FEF2B82003022CB2154D /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/iomgr/event_engine/timer.cc; sourceTree = ""; }; - F073FC63DCEF38ADCB635B9A108B42F7 /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; - F08A0465E472D1FDBAC50E174D8EEE82 /* eds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h"; sourceTree = ""; }; - F08BE196034109B697180D78D809E347 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - F0C1D8200BF9B7DD0B2571512F931245 /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; - F0C30F1566D0583AB7AE5249E64EB59D /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; - F0CD28FEFFE9BE1FB6AD4EF9B24FA93D /* 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 = ""; }; - F0D2A6741B6AC3467AD675BC85B73759 /* 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 = ""; }; - F0E7F4AE48EB81AE062C4372FD027BEE /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; - F0E89013BE4C90A38F93A7C351868777 /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; - F0E89286887058C2C817910578913803 /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; - F0E9C076EE4562F169398AB1E094ECAC /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; - F0EBC78591DEFEF7921E1840BC6FB4C4 /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; - F12ADB1764B204CD1A020753579C360E /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; - F14F0DE50B4CB633FAE83E281885F8D9 /* 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 = ""; }; - F156CFB7E64F64A271C8B53E40F249B2 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/completion_queue.h; sourceTree = ""; }; - F15C801A0DA65B1D98130F7A0EA0A48D /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; - F17342CEFFC42DB864338830958B7006 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/support/sync_posix.h; sourceTree = ""; }; - F173E16EF68725331068A2234C23F194 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - F184372EF0DD7867E4C7A15532681777 /* FIRCreateAuthURIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.h; sourceTree = ""; }; - F1876AD29203EDCBAA95AEF56C391B15 /* BoringSSL-GRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.debug.xcconfig"; sourceTree = ""; }; - F1A9B32250BAC29DB540FB31DEE78F6A /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; - F1C1BFAAB2C8A5FB9112D556774EA352 /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = work_serializer.cc; path = src/core/lib/iomgr/work_serializer.cc; sourceTree = ""; }; - F1F679A621E1A792F46EA9E04B40CF35 /* orca_load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = orca_load_report.upb.c; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c"; sourceTree = ""; }; - F1FB242F75F16071761D1F27A801B3E7 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - F20DC61653D07A5218B80C88EDBF46CA /* 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 = ""; }; - F217C159D65636F0F061BCA2D529E92B /* FIRSignInWithGameCenterResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.m; sourceTree = ""; }; - F2265CDD259ECBF9355CD4A223DBD4D3 /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; - F22B9B31D85DF26312A861D0CCE2A8AA /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; - F230DC6996F5E7002A9B7EA162E28AA6 /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; - F233A040D5335CB26AC78328CCCFCC1E /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; - F26B9C2F2E2DA58209865C39C0E53E0C /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - F27183A113D1803C275050826C9FE06C /* FirebaseAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAuth-dummy.m"; sourceTree = ""; }; - F2738DBED4DD1018F316A2BCC19F191F /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; - F27799AE30548C615991718BB2206374 /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; - F28D93D0392D301003A54356AB26BD46 /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; - F2978EC0CE5A13374B10982A42E1848C /* FIRGitHubAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGitHubAuthProvider.h; sourceTree = ""; }; - F29E47AD285743120CB04BFD9F819687 /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; - F2C38DC3C3143523A4E2AEBF9222C627 /* FIRVerifyPhoneNumberResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.h; sourceTree = ""; }; - F2D335D665F2A4868D2118D1F02CB604 /* FIRAuthStoredUserManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthStoredUserManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h; sourceTree = ""; }; - F2EEA44DDFFE109C6FF944EF696AB884 /* 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 = ""; }; - F2F4CF16F8909913BF91E0D6289B56BE /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = Firestore/Source/Public/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; - F3041B8C822A72DAE8A333D61EB79A31 /* 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 = ""; }; - F320CAD1AAAB5139D3D07236FD50A61D /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - F324F90A3E58BB250B2027A6494539D5 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; - F331E697A629AF29DF3B809C5CBD5131 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - F33B22EFACD93B2FEF53E71050B22243 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = port/thread_annotations.h; sourceTree = ""; }; - F348CA9589917F4EF4379A54EF6D350C /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_purp.c; path = src/crypto/x509v3/v3_purp.c; sourceTree = ""; }; - F35BB122C0FDC4A5A66F3E973547181D /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver.cc; path = src/core/lib/resolver/resolver.cc; sourceTree = ""; }; - F36C18E462F395CD7CE249F81FBD0971 /* 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 = ""; }; - F386BE668E88666BA052FB9B36FDD17B /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; - F39007E062F01D6D490E9282FB37ADBF /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; - F3A4B256D7B81123C933D00EEB5FA81F /* 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 = ""; }; - F3A67551D5639EB99BC8DE8AC3A031D2 /* 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 = ""; }; - F3BDC6E666DC47C867D5776A20B0F742 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - F3C365A6481D30E9535EED7CC2D910AA /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; - F3C74FB6699569A51F2AB5B01D0470FC /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; - F3E7E7FEA136401A4F0A999AB6E35A19 /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; - F3EE28BA0A3986A37071EC9847F32046 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/event_engine/pollset.h; sourceTree = ""; }; - F400C3DD7DBFE9DEE16915515FA6F927 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine/endpoint.h; sourceTree = ""; }; - F424B0036782D65A3C3042296B847DDF /* 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 = ""; }; - F42F8A9459FA648D94BDFBB529A123F2 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; - F43D6F8F97EFC9ADB30BE1BFA495ED8F /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; - F49CB4FBA3DF06BEC049B6BA4C9E21CE /* FIRUserMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserMetadata.h; sourceTree = ""; }; - F4B67B7D07D09B82A59B5CCA57C16C6D /* tcp_server_custom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_custom.cc; path = src/core/lib/iomgr/tcp_server_custom.cc; sourceTree = ""; }; - F507942283D65C20EE7AADED44DC257E /* core_codegen_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen_interface.h; path = include/grpcpp/impl/codegen/core_codegen_interface.h; sourceTree = ""; }; - F51C9F9C01AF60DEF26C5303CF8C3E26 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - F549F5326DAE57963E865B97E61C8817 /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; - F553422E6D75F130739156018E7932AE /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; - F5589CD8DD361E4ACC78FCDBC8EAD70A /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - F55F6CD510B964675BE20024CF1921EA /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bcons.c; path = src/crypto/x509v3/v3_bcons.c; sourceTree = ""; }; - F56838B6870AC5CF4883318A61922AB2 /* ostringstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostringstream.h; path = absl/strings/internal/ostringstream.h; sourceTree = ""; }; - F57622D49B27A597B810667D2AB89B01 /* throw_delegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = throw_delegate.h; path = absl/base/internal/throw_delegate.h; sourceTree = ""; }; - F57A0E11DE528394AA16EC7F0E6A1247 /* 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 = ""; }; - F59C17FA51337D4E1D53DE48D24CFB1E /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; - F5A34CC87BF55F8D3984703D92C62FD1 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; - F5A5079FA7023F3172142202B0C5412E /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - F5B0FD512FD44EABE41B08E05BE36689 /* 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 = ""; }; - F5BE855D21326F8EEDF5368996E2194D /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; - F5D482698E307862028290C8A6E90F07 /* 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 = ""; }; - F5EDD3CFEEC26EF50AEBFE1683C69B26 /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; - F5F58EB19671336B06F38DCB8077B470 /* time_support.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = time_support.c; path = src/crypto/asn1/time_support.c; sourceTree = ""; }; - F612E893C7C7ED1FCB6396D763AD329E /* 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 = ""; }; - F61603C41D94BA4F96FC0771D64F232D /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/event_engine/sockaddr.h; sourceTree = ""; }; - F61E8E74301241F7AF70B31048B66F46 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - F6232FDED7D78A155E56486C1DCFD29E /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; - F6578E4C29BCEDCB97CA7D2598188115 /* 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 = ""; }; - F65CF751FDCEDBDBA60DD9E94F92D1BF /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; - F67364A0B636B3915967F77B4404605B /* resize_uninitialized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resize_uninitialized.h; path = absl/strings/internal/resize_uninitialized.h; sourceTree = ""; }; - F680A8909E35847D60E83EC28C0AAC77 /* 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 = ""; }; - F6812B437C1B185EF3A69575A2372FB4 /* 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 = ""; }; - F68E7432DBC881D4E811C5C30F103151 /* 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 = ""; }; - F6E40EDCCB76C1E818797E5DF4BE37D0 /* memory_allocator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_allocator.cc; path = src/core/lib/event_engine/memory_allocator.cc; sourceTree = ""; }; - F6F8EDB5F658CCAC4035F4862D17CE9F /* 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; }; - F6FCA450EF8F65BF78359B228372F377 /* 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 = ""; }; - F71296438012632256D049B9544C1A20 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; - F715D3FA7D1AA29064C66D1B95A09324 /* cord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord.h; path = absl/strings/cord.h; sourceTree = ""; }; - F72629B5E3E85846E45AEE242FA15545 /* 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 = ""; }; - F736C0B3A3BABA4B020D6AC9346D7ECD /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; - F7391DE403FB21A53277E5EE16782E6C /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - F7509B6E3A393E84102B2CD2D6C28FC8 /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; - F76C167FF95D245F602D460422DAFC83 /* 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 = ""; }; - F76E4AFB78F50DDE9A7713280841D684 /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; - F770904C7D178770A2BA31A6AF947AA2 /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; - F77EEB1F31D4AE20B3422EAE116B8F27 /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; - F7849998A15CCC4FE82E1E692A7440C6 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/impl/codegen/server_interceptor.h; sourceTree = ""; }; - F7A100EE1ADAF19FCC191974945A2BD3 /* route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c"; sourceTree = ""; }; - F7A78EC8A546A7F77990F67141891918 /* log_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_android.cc; path = src/core/lib/gpr/log_android.cc; sourceTree = ""; }; - F7B3FFCB9BCA2ECEA5E9056F6CD391B4 /* log_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_posix.cc; path = src/core/lib/gpr/log_posix.cc; sourceTree = ""; }; + E6E7FA61B05670098B8D3C531EA0F120 /* 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 = ""; }; + E7102C7BA76F3346AC2E89CDF54D281E /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; + E72BBE7A201A7E58EAC6CDF21FE608A1 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; + E733FDCA707987697ACCD6A6DECA99BD /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; + E73406809630E5B914C51CF3A3BB440C /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; + E7399D7828226A4A12D3CFEE4FE72855 /* 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 = ""; }; + E7439E531A2B4EB5820C3D676B31CB2C /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; + E74A4166AFB9C828ECDF3C1E6FA3708E /* 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 = ""; }; + E75A7A32CF9AB372B21F1F0A4B75ECC8 /* number.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = number.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c"; sourceTree = ""; }; + E7631C6857E1FCAD4E94B8437BBC3425 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; + E774C1D7AB45580BE965C9A9CA68FB84 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; + E78F35C1E0FD3FCD285C059AE6D2B434 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; + E7929FBC54D2EBD1B237C549DA8FD255 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; + E793B27DD447D1E56046628AF07FE7FF /* 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 = ""; }; + E79C56C6C365923E6C2C10CE463BE8B4 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; + E7A81290BBD10CD8C868AFFF1885AAB4 /* 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 = ""; }; + E7A9F15C5AF4C3A29A9FC06FDF9BF54D /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; + E7BB2D194EFAD897D8F13523729764F3 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; + E7C31F00E4B79FE409394375C5895160 /* target_index_matcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_index_matcher.cc; path = Firestore/core/src/model/target_index_matcher.cc; sourceTree = ""; }; + E7CB4DEBBB0FB03A88662AB9DF45AA3A /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; + E7D0075F1C1A51AE17810C6204DBD98C /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; + E7FB1E241ECD03B9343961227C2044F6 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; + E807EC6E22BCBFDBCEEB44711D16ABF0 /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; + E8204D118101E3A3CAD932F59F0ECBA7 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; + E821893413CF35F0F9BB760FA062375B /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; + E82751FDA492DE54F28088233BF5AA8E /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/security/auth_context.h; sourceTree = ""; }; + E83F465080EA10F0FF17E25E29D16051 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; + E84BFE442FE5B3E31724BFF5D194E46B /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = ""; }; + E85CA170651FD4B710B267495F88637B /* builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builder.h; path = db/builder.h; sourceTree = ""; }; + E866D5C11DCCEB4847206E4C901BC3F1 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; + E88D524B148079DD23ABB081E5B9FDFD /* 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 = ""; }; + E89766E350AA39D9253360D977A2B93B /* config_dump.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c"; sourceTree = ""; }; + E8BA3F1BFF8C8F4805D8AB1B53E3B48F /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + E8CE084A8AEC04403318EFDA0056A937 /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; + E8CF61761DF2A588E248A08DD0E0B4DC /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; + E8FE79EB3890AFB95FCFE2A919F02167 /* cert.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cert.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c"; sourceTree = ""; }; + E93275DC56AE1D49F78FDF09D1F496FB /* 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 = ""; }; + E9613020AD0125F4B8BE1C91A4C70AAA /* db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db.h; path = include/leveldb/db.h; sourceTree = ""; }; + E98836FB765D34596D83CB9324AF2EE1 /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lb_policy_registry.cc; path = src/core/ext/filters/client_channel/lb_policy_registry.cc; sourceTree = ""; }; + E9992FE27D08C290F3EB2F302A4B1552 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + E99CC9EEFE9C5E325F63C1723699E6FA /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; + E9B014964C908B18868FACBEBAD3C1BA /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; + E9B3F50A4DF4D0F0009DA463D28EDFDC /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/inlined_vector.h; sourceTree = ""; }; + E9B61ACFE82A0D1552E1BC063D6CB952 /* utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utility.h; path = absl/utility/utility.h; sourceTree = ""; }; + E9C432CA2DC48A0BAB7331D1C39C35BF /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = third_party/re2/util/logging.h; sourceTree = ""; }; + E9D185BE21E7EABFE79FBEE3A207D578 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = absl/container/internal/common.h; sourceTree = ""; }; + E9EFE1F476CC5B039CCC68D5EC13805C /* dns_resolver_selection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver_selection.cc; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc; sourceTree = ""; }; + E9F8333DE034AF9EE1F874C8E984C9D9 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + EA1EBB0FFFCE5E65F3BAB536F2BA3228 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; + EA2740E451367A01589EA044F23D158B /* FIRFinalizeMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.m; sourceTree = ""; }; + EA4827BC54E088A1C91C0F51BC8063E5 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c"; sourceTree = ""; }; + EA491EDCD0F43AFDCC2D0D47A8C1980F /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Extension/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + EA4A4BBC8AC14AF4ED27FBB7E9A6153F /* 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 = ""; }; + EA552F08AA3CEB33A3D1B895A325400E /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; + EA746CA91047F98307F850B98BC40558 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; + EA7938AC43874B40CB949F5056D02D7D /* sysinfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = absl/base/internal/sysinfo.h; sourceTree = ""; }; + EA914049B77FD58C15602EACBAF4ABDF /* alarm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alarm.h; path = include/grpcpp/alarm.h; sourceTree = ""; }; + EA9256E994D4BE2493D09B9350AAA2B9 /* 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 = ""; }; + EA9DCC88F94852D8BE7975CF84D8EFF6 /* tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_certificate_verifier.cc; path = src/cpp/common/tls_certificate_verifier.cc; sourceTree = ""; }; + EAA2C67264E8FCAC1FC3D26BBC0C9E1F /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; + EAD6839A4B66CA9058F3762710A8C52E /* 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 = ""; }; + EAFD9B90E108EC468FC3C7FA14AB2D05 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/support/time.h; sourceTree = ""; }; + EAFDD13172B698703715CDC558AD8E05 /* inline_variable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inline_variable.h; path = absl/base/internal/inline_variable.h; sourceTree = ""; }; + EB0F032EC69A7D0081E03956C191F605 /* cipher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cipher.h; path = src/include/openssl/cipher.h; sourceTree = ""; }; + EB23431A9071AEE58D6C566B4E355AB1 /* timer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.c; path = src/timer.c; sourceTree = ""; }; + EB47F7C063DAEB91DD3D0177C29E3C2D /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + EB4F1F6009F93E10BC94802865508443 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.h; sourceTree = ""; }; + EB5AE02D039B69EA98F12BAF40ECFDBC /* rds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rds.upb.c; path = "src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c"; sourceTree = ""; }; + EB7531907CF6D24F9726C2E2127BFE13 /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; + EB850A2DE46F29DB2E41E627503B4B8A /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; + EB8E12ED139BA28B1E37DA0A59314B8C /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/ext/xds/certificate_provider_registry.h; sourceTree = ""; }; + EB96E9B576F79DE00D2708CF4AE7174F /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = options.cc; path = util/options.cc; sourceTree = ""; }; + EB9D60005C9301E5F5CA687ED5C15F01 /* external_connection_acceptor_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = external_connection_acceptor_impl.cc; path = src/cpp/server/external_connection_acceptor_impl.cc; sourceTree = ""; }; + EB9E515CBD6869BC40A229BE5697607C /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; + EBA5B66010CA214851C9C0EEA70CCA5E /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; + EBB0FF0D85ABECEAC50405D646598115 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bytestring/internal.h; sourceTree = ""; }; + EBBB14D94FA540F2B0839A1528CD6A6A /* status_payload_printer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_payload_printer.cc; path = absl/status/status_payload_printer.cc; sourceTree = ""; }; + EBBCEE53953D27CE077646266D0A8E0C /* front_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = front_binder.h; path = absl/functional/internal/front_binder.h; sourceTree = ""; }; + EBC27C685ACBA0821D33659D7D62D512 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/codegen/grpc_library.h; sourceTree = ""; }; + EBC3BAA571FBF68C4B2494866427D388 /* FIRSecureTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.m; sourceTree = ""; }; + EBD130E1500A13073B025DA6F72BFEF2 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; + EBE553AAE7AC5CD57E21E9BF474A802D /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; + EBED0621CC3ED815E5B64865EA428F6D /* FIRAuthProto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProto.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProto.h; sourceTree = ""; }; + EBF7D7BF67C828552B092F108A769505 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; + EBFA885EF93320E46228BAA084A62515 /* write_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch.h; path = include/leveldb/write_batch.h; sourceTree = ""; }; + EC25A45D58DB99FCFD9AB5CCE7C1BC72 /* Libuv-gRPC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Libuv-gRPC-umbrella.h"; sourceTree = ""; }; + EC25DA102025232AF50B43127E9E078C /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; + EC4A96E752A1513781C5EF55AC17F5EB /* randen_slow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_slow.h; path = absl/random/internal/randen_slow.h; sourceTree = ""; }; + EC4CE2894263ABCB3E3AE8098AA3D881 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; + EC53C91F199D4793C36DF4E2FB119F8C /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; + EC598CC2FA09E9868D31F44A7ED8E429 /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; + EC5E25539C244364943D638C2B923355 /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; + EC749BA5CA64F3EB128BC0F0391BCAE9 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/support/message_allocator.h; sourceTree = ""; }; + EC83AFB0DEB26E32DCAB6AFC67D0892C /* iomgr_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_custom.h; path = src/core/lib/iomgr/iomgr_custom.h; sourceTree = ""; }; + EC8E4A862AB12839CDBBEAF02AB541E3 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = src/include/openssl/rc4.h; sourceTree = ""; }; + ECA0CC930780CED4170A870FF485F6BE /* 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 = ""; }; + ECA148A240B38E8ACD8B1A9E9618F3CD /* wire_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wire_writer.cc; path = src/core/ext/transport/binder/wire_format/wire_writer.cc; sourceTree = ""; }; + ECABC7D7AADA09AFE62CD64834BBD7E3 /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; + ECB47805342E7A90CB31798A18F1E70A /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + ECBFBB1A8C819905817A00DCAE371CC5 /* blake2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = src/include/openssl/blake2.h; sourceTree = ""; }; + ECCAB5AC4FDBE75FE57A7ED462ACF7C7 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; + ECCE219A6C73A743C0BB01B69B8C82A3 /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; + ECD57E5A719A281AED4A752EF641EB1F /* stacktrace_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace_config.h; path = absl/debugging/internal/stacktrace_config.h; sourceTree = ""; }; + ECD77FA9B3989CC597C705A75CE524AC /* evp_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp_errors.h; path = src/include/openssl/evp_errors.h; sourceTree = ""; }; + ECD9C1AD00A434B0B894FA3052AD97CF /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; + ECDB16D56F4307BC842215F4A960A93F /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; + ECDFD149C03EFFE94F66F8EB8E73CE76 /* FIRAuthAppCredentialManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredentialManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.m; sourceTree = ""; }; + ECE02372DB1C641C1931FA7D4C85099D /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; + ECE20E52A132177D7F657454BF8E7C1C /* core.c */ = {isa = PBXFileReference; includeInIndex = 1; name = core.c; path = src/unix/core.c; sourceTree = ""; }; + ECE47FF262A1F6B0328D935830F2AD3C /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; + ECE48C47B2B5E75769BA1B7D0FFEF4F1 /* frame_window_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_window_update.cc; path = src/core/ext/transport/chttp2/transport/frame_window_update.cc; sourceTree = ""; }; + ECEF990FB374A6DD79E7235EEBA61A8C /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; + ED00133570DACEA6B2BABAADC608C385 /* alts_frame_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_frame_protector.cc; path = src/core/tsi/alts/frame_protector/alts_frame_protector.cc; sourceTree = ""; }; + ED0ED539C1209494C4B35342852EF579 /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; + ED0F27A12D8EECBA0E30D9A2244C42E1 /* chacha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = src/include/openssl/chacha.h; sourceTree = ""; }; + ED31BA663AA501F6AC88049102071C36 /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; + ED46BB964E2B7D13A6C1D826FC69F225 /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; + ED4E196EACEDA89C19CEB1555B75046A /* 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 = ""; }; + ED569D96FBD3AF85F4BF096E002DD60C /* orca_load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = orca_load_report.upb.c; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c"; sourceTree = ""; }; + ED65DFF9F6A363A8F74668B1F2E7926E /* 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 = ""; }; + ED6C64A34877B7E5C3F8DA981EC3EC56 /* pid_controller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pid_controller.cc; path = src/core/lib/transport/pid_controller.cc; sourceTree = ""; }; + ED7D5316BDAC4344BDB8916050AF0F94 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; + ED908D81EEEC2E9F5FDA5F9232DB8962 /* extension.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c"; sourceTree = ""; }; + ED91E1A11C312D968889ECD726B8F4BA /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/impl/codegen/client_interceptor.h; sourceTree = ""; }; + ED9CBE0F7524619D3A0F210215C21035 /* direct_mmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = direct_mmap.h; path = absl/base/internal/direct_mmap.h; sourceTree = ""; }; + EDAFF821C8C502AAC716571F79D85D75 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; + EDB7C56FE241CE837755DDBDE6596487 /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; + EDBB64577D13FEFA1E5D232FEB69F8AD /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; + EDC78F1FC5DC9C020F097CE738FE5872 /* FirebaseAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.release.xcconfig; sourceTree = ""; }; + EDE92FF333BC8CAD95393C844FDABD52 /* env_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_windows.cc; path = src/core/lib/gpr/env_windows.cc; sourceTree = ""; }; + EDF4E45195E829B89F5EC7907E4F1196 /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_balancer_addresses.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; + EDFC08C7A5E9BA4465E4E0368C7F6F9F /* FIRAuthErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthErrorUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.m; sourceTree = ""; }; + EE0AF2E9A3F6083D84A9BAC44CB43310 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + EE2AFBC39DAED75A56A3132E5775A9B8 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/support/sync_windows.h; sourceTree = ""; }; + EE36FDA2D1DDA879C79418D0764ACC8D /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + EE4EA332B4ECE89650652BF5BF5C72B0 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; + EE758278EBD30183DD68E659E6114CC9 /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; + EE7F7FDC6C14110117495E63EB547DB6 /* eval.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eval.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h"; sourceTree = ""; }; + EE84FD5E13F3C257C122807367563B93 /* frame_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_data.cc; path = src/core/ext/transport/chttp2/transport/frame_data.cc; sourceTree = ""; }; + EEA4B78520EC797C2DBF1527ADD08590 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; + EEC179D11CD29528573A0648C0E94F80 /* xds_http_fault_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_fault_filter.cc; path = src/core/ext/xds/xds_http_fault_filter.cc; sourceTree = ""; }; + EEF552252F6F9AA31D017F3E97A5AA8F /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; + EF10D3B4432F1DFC2894DD8FA70E44CF /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; + EF1279F7B4A4DE2B4F92D60A0A9E2BEE /* channel_argument_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_argument_option.cc; path = src/cpp/server/channel_argument_option.cc; sourceTree = ""; }; + EF1AA395BF38312767C218235922183A /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; + EF21339D1EBD36F16F0C839B782DC84F /* FIRFacebookAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFacebookAuthProvider.h; sourceTree = ""; }; + EF2F0C97F1D9CF3CA234BC13964EFE5F /* is_epollexclusive_available.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_epollexclusive_available.h; path = src/core/lib/iomgr/is_epollexclusive_available.h; sourceTree = ""; }; + EF33649D1762EB5CFB7C515A41307E90 /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/codegen/channel_interface.h; sourceTree = ""; }; + EF375D0F95249AF8180A517BBFC62C8F /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; + EF3BCB91B825535DB87DA24D5D723A7A /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; + EF3C42C0285CE69BC04D9AECC36D0AC8 /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; + EF526D765996B86AFB7B9FAC9D627088 /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; + EF6B65448CF0B79235BFDB077BDD7D28 /* sys_epoll_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sys_epoll_wrapper.h; path = src/core/lib/iomgr/sys_epoll_wrapper.h; sourceTree = ""; }; + EF775FE6E0729386E5A3225896A70704 /* FirebaseFirestore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseFirestore.modulemap; sourceTree = ""; }; + EF856F510FB3B7B9DAA03F58796D661B /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; + EF9E94A5AD9CF54AC256710DEE8AD108 /* external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = external_account_credentials.cc; path = src/core/lib/security/credentials/external/external_account_credentials.cc; sourceTree = ""; }; + EFA15A7032FCE43008EB6A1B20991D5E /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = src/include/openssl/opensslv.h; sourceTree = ""; }; + EFA41B7180704E364FC7085DE7AA41AF /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; + EFA836A419AD8F3FB1535F98F899942B /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; + EFB9DBFBD4CEBEC5835AC85A3DC2BE7C /* wrappers.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.upb.c; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.c"; sourceTree = ""; }; + EFBCC660E5148BB857231197D240E220 /* decode_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_internal.h; path = third_party/upb/upb/decode_internal.h; sourceTree = ""; }; + EFC13648B23490CFAA1B1A8F3F863EED /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; + EFD655EBA8B38555F6427A5A6161EA05 /* p256_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_32.h; path = src/third_party/fiat/p256_32.h; sourceTree = ""; }; + EFE03AF06D51C162CD4743C4A87F406C /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; + EFE55E7780A19D564F6256D77BAEFD1E /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + EFEF2A92504D188B7030E2CE7FDB8E2B /* 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 = ""; }; + EFF9BF17C4944FF6C723BF042E02F1D1 /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; + EFFD7B3C2B5EF824BD95FBF58EEE8BAD /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; + EFFE699E68466EC9A5C593E5D9EDC027 /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; + F0024B5CF37C4D98BBC16E6CFF9A7D13 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; + F00561C5C2C53ABCB5BA8F1A327A74A5 /* log_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_windows.h; path = include/grpc/support/log_windows.h; sourceTree = ""; }; + F01603FE248696D09F22ADADA6B61603 /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; + F017315273C89416919F230AE79860A5 /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; + F0216B0B8D9A790EB25B4074058C749F /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; + F027F748DE09374E33EEF623E027B559 /* timer_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_custom.h; path = src/core/lib/iomgr/timer_custom.h; sourceTree = ""; }; + F02F9A6236BF5305E266163E293CA687 /* 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 = ""; }; + F0410AA02FE28AECEF8FCDF4453444E9 /* 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 = ""; }; + F04B6F8289D97B208413C06674E85532 /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; + F0537B2D6FFACD3B539A00A9406B5611 /* dualstack_socket_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dualstack_socket_posix.cc; path = src/core/lib/iomgr/dualstack_socket_posix.cc; sourceTree = ""; }; + F05900771B1B749660A7694EDA6EADE0 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; + F06668C8E61E0C198436F6329E8D1B2A /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; + F068C8027FEED50109D6A4B529672C23 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; + F07C634F2E5B9CA70579B7B818A319BD /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; + F0812CD98DA81E46941606F756630996 /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; + F08A0D25742710B0B4C354EB51BC35F6 /* endpoint_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c"; sourceTree = ""; }; + F08BA25679EF1CD8BE2EE7C4FB7A25B8 /* 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 = ""; }; + F08DCB8DFCDB30C21FA1134455BD354F /* 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 = ""; }; + F0900F090B807817E6695C165EE4DBD7 /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_enum.c; path = src/crypto/x509v3/v3_enum.c; sourceTree = ""; }; + F0B7A3E2168B047DE16FB4784E54EBD6 /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ia5.c; path = src/crypto/x509v3/v3_ia5.c; sourceTree = ""; }; + F0F01A7D0217CE8010BDF5743529779C /* 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 = ""; }; + F0F6484DE0549E65A4DB351A4FEB7820 /* 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 = ""; }; + F1057FAB8C3052F92105AD81BBACDA9A /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; + F113D3ADFB58195F3443398B6E9D3D06 /* basic_timers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = basic_timers.cc; path = src/core/lib/profiling/basic_timers.cc; sourceTree = ""; }; + F11E073EAF48F7AACC47F18BAC36DF3A /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; + F1264FB8E80312972C194247C7A7BF40 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; + F15F6A517CA7BA8ABCD8C867C74A5B1F /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; + F1630001339C3BF10141131BF51338BC /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; + F17777EAD8BDD682D13AA0F1E06A28E5 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; + F182BCF0888326C97348648ACA52CA59 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + F18E3D047CE6EEB7630C2A5F5A938499 /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; + F18F7F9EB9772B9F6F708D26C1A28ECA /* 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 = ""; }; + F1C909BB7925C56B9BC5EE5B29DEDB62 /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; + F1F33F62688A0542F04E8CF04A7C4999 /* gRPC-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.debug.xcconfig"; sourceTree = ""; }; + F1F691DE2C4B2EE2078D5F5DDB7C8C0D /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; + F212891CDCE8903259890FB865565D7D /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; + F212BA9FFB5A28E0D76AE4446168A7F9 /* bind_front.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind_front.h; path = absl/functional/bind_front.h; sourceTree = ""; }; + F22ADBD63B4A43C576A2F7CCD1012606 /* 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 = ""; }; + F23F2261C0D101B68BC513F5758408E8 /* 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 = ""; }; + F27458A8E8BEEC635D225538AB2D66F5 /* FIRWithdrawMFARequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFARequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.m; sourceTree = ""; }; + F29064FE7E727DB63F736F19E8C8BA80 /* 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 = ""; }; + F2A35D4FB28A438142E0B19E7D7145E3 /* 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 = ""; }; + F2A7AF7CEDEFDE3FB43A553AD80EE77A /* testharness.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = testharness.cc; path = util/testharness.cc; sourceTree = ""; }; + F2B02E512B4C6360E741CC6F397BEA29 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; + F2C09302D8B38966851F525B109AB81F /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; + F2DC1B0A9E93749AEDD26BB9BE70E97B /* 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 = ""; }; + F31AFCEC3CF4B8560E25D3060CBF9355 /* x86_64-gcc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "x86_64-gcc.c"; path = "src/crypto/fipsmodule/bn/asm/x86_64-gcc.c"; sourceTree = ""; }; + F31EB3593C9F188E2E3EDD1E8D988A14 /* p_ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ec_asn1.c; path = src/crypto/evp/p_ec_asn1.c; sourceTree = ""; }; + F321BAD48247D42A7D478B93DFBD3ED1 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; + F3446DEC6109C3FE2B6943960B0EFD67 /* invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = invoke.h; path = absl/base/internal/invoke.h; sourceTree = ""; }; + F35231F53F623CC193F69DAE6DF85620 /* FIRMultiFactorResolver+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorResolver+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"; sourceTree = ""; }; + F369BA72BC7AD41AF104B76B5C176506 /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; + F37BF284ED08D201B762CD82A45E8E27 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; + F37F1BB4FC370429FF4B9B51F75D78DF /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; + F38FD5F3D8CDCE0F1EA0CC8988F092E5 /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; + F3AE3B9D1B0C92E1EB29B6DCF9651D39 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; + F3C29E28355E14AE9A7D4348F5E9BF3F /* 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 = ""; }; + F3E028A6EEFDCA41F9BC13458E22E158 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; + F42742954F5F438E444EAC53A3A9B888 /* set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = set.h; path = third_party/re2/re2/set.h; sourceTree = ""; }; + F44D9F31CB94014634D341019E1ABF27 /* 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 = ""; }; + F44DC4C5DB5F37EA87926E0F9504607D /* local_view_changes.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_view_changes.cc; path = Firestore/core/src/local/local_view_changes.cc; sourceTree = ""; }; + F456401E236AB8A6F0725BFB197AFF7D /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; + F4733682BA869D0448BC37B74CCBB0E2 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; + F4747333E10AAF0379ACEEF4BE7AF2D3 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; + F479BCB7EBF03A2A870C2996081DC1A3 /* explain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = explain.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h"; sourceTree = ""; }; + F47D396799EFF46107DE16CD61E55989 /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; + F4BB15B708325B752104BA81DBEE5C02 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; + F4D29F66AD6E89740C27AA0D4C0B576D /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; + F4D42A3426A8B9A83F558D573B03698A /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = range.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; + F4D62B773DB53025922B293C0273A9FF /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; + F4DD5543B93C2556EEB9FBDC6CDC3988 /* Libuv-gRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Libuv-gRPC.modulemap"; sourceTree = ""; }; + F4F59497B3D80F88FA6C3C5EFFB0C23E /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/impl/codegen/sync.h; sourceTree = ""; }; + F512630DF934F17FFF541C759659343B /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; + F52E8DD757480375403A65E722992DB7 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; + F5592AE487A64F81BA6B6D75D03950E8 /* 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 = ""; }; + F5763691672D70E1DF660250E90F67D2 /* resize_uninitialized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resize_uninitialized.h; path = absl/strings/internal/resize_uninitialized.h; sourceTree = ""; }; + F577EB6166E335961FE1C2B06914CDA5 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; + F57DAF752B104388493F9381E10AE0B1 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/impl/codegen/byte_buffer.h; sourceTree = ""; }; + F58830A197D5922AA38E7CA675C7B581 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; + F592EFAB282167BEA02F2D825BEB5072 /* 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 = ""; }; + F5A8F14066AA2F741A3439B16CA86352 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/codegen/call.h; sourceTree = ""; }; + F5C52A480DB31557DBCAE9B405A65F78 /* completion_queue_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue_cc.cc; path = src/cpp/common/completion_queue_cc.cc; sourceTree = ""; }; + F5C5469BEE33BD141E988B82CD2AFE34 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; + F5CC6BBCD8477E1A3B2223362E4153EE /* 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 = ""; }; + F602A603FDEBF028767129997CC8BE0B /* sockaddr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr.cc; path = src/core/lib/event_engine/sockaddr.cc; sourceTree = ""; }; + F60B31F0E4AAA0B72FF267F2FA8430F9 /* FIRGetProjectConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h; sourceTree = ""; }; + F6395FD60FD3776C43DF65880FFE8819 /* grpc_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_posix.h; path = include/grpc/grpc_posix.h; sourceTree = ""; }; + F65861A77F437B535A95FF0F9BA7C312 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/impl/codegen/atm.h; sourceTree = ""; }; + F668908B692F59BAF8286406692DDCB1 /* 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 = ""; }; + F6809995FA08D0A56E48B41021600834 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; + F68A522557564E4AAB4DBE58A6A1FC57 /* strscpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strscpy.h; path = src/strscpy.h; sourceTree = ""; }; + F68DAC0761180F8A33071A006C096B96 /* windows_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_logger.h; path = util/windows_logger.h; sourceTree = ""; }; + F6C8934F4006159D3C59FA43FBDE1EAC /* common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c"; sourceTree = ""; }; + F6D32FDD67CABDC8E6FD4735A297DDB9 /* generate_real.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generate_real.h; path = absl/random/internal/generate_real.h; sourceTree = ""; }; + F6DB8760E2EDBCCC5209125EE422A3F0 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; + F6ED0B0B5095379956BF16B23EE805E0 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; + F70C991E3001830588C1EBEF6AAB5517 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; + F725FDA8784B5A8178AD286A4B87538A /* FIRGetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.m; sourceTree = ""; }; + F7314AA78CF30ACA70AB7A3E074F7279 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; + F7346FCF77FC5A6AE459E9F786718732 /* lds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lds.upb.h; path = "src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h"; sourceTree = ""; }; + F760C6ACD2C371EA4C41B055C08FF1BE /* 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 = ""; }; + F765AC190494E9FCD9820E01A6D9EAE3 /* x_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_pkey.c; path = src/crypto/x509/x_pkey.c; sourceTree = ""; }; + F769F0E06CD49A8FC7635DB140A9E63C /* 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 = ""; }; + F772031CCD8FC7FBB7FCB07D3A11A4EC /* fixed_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fixed_array.h; path = absl/container/fixed_array.h; sourceTree = ""; }; + F77354A1E9BB9F966A7D2D0BEC2F0B10 /* xds_server_config_fetcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_server_config_fetcher.cc; path = src/core/ext/xds/xds_server_config_fetcher.cc; sourceTree = ""; }; + F77E316C33525C5A6483CCBA154AB987 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; + F782281BC26A1B05582437F9ABC3CC42 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; + F78D4F6D3A907ABFE2E9F53C83924D48 /* 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 = ""; }; + F7A0B5335D9EC081986BCB9304F71700 /* grpc_service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_service.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c"; sourceTree = ""; }; + F7B72EAE990F8E18EF3876197015C20F /* FIRAuthDataResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDataResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult.m; sourceTree = ""; }; + F7BA7A83A1D08EE02799D9CC3063B029 /* secure_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_endpoint.cc; path = src/core/lib/security/transport/secure_endpoint.cc; sourceTree = ""; }; + F7C575B2500F87C1C76A330E704DA8AB /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; + F7DF8F926243F2400E74D5F17A51ACDB /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver_registry.cc; path = src/core/lib/resolver/resolver_registry.cc; sourceTree = ""; }; + F7F01585B26A44F76414EBED6D38AD26 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; + F807C88C8D946C4AE0858F82C1669D92 /* trust_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trust_token.h; path = src/include/openssl/trust_token.h; sourceTree = ""; }; + F80D390D1ADBEB97889EF7CF586E87AA /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; F80DD9660AFE9D88D648B289A0C0D664 /* Pods-Flash Chat iOS13.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Flash Chat iOS13.release.xcconfig"; sourceTree = ""; }; - F81B2DEC6F23DA165340E328D390E626 /* 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 = ""; }; - F8259370A64043B3DCAA9E5824148E1F /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; - F82B58759F2F0B6A915BCBF266D1BBCE /* 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 = ""; }; - F82EBB8CB2C5F61673E11E0F567ECE9A /* str_replace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_replace.h; path = absl/strings/str_replace.h; sourceTree = ""; }; + F810BA782A8F9A327A4F37F535FDEC25 /* udp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp.c; path = src/unix/udp.c; sourceTree = ""; }; + F838E3EEAFE0A62FEC4CE93D5C6D9C19 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; + F83E3A8812FBA630EDE81551029FD8D2 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/internal/escaping.h; sourceTree = ""; }; + F84035A1EB615E4B076FFB63108745A7 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; F843F9EA4341AC59B7F6DED6D8067F7F /* Pods-Flash Chat iOS13-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Flash Chat iOS13-umbrella.h"; sourceTree = ""; }; - F84C8B471ED03E868C3C3F1135141693 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; - F85B1285B8139AED8F758256483FE150 /* CLTypingLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLTypingLabel-umbrella.h"; sourceTree = ""; }; - F85DB4CC446BCB5E866C9F9494CFB717 /* 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; }; - F87DE3ED40247E87F65E4242C07E580A /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; - F885E11DD802A4EC67111CDD2CFE9638 /* router.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c"; sourceTree = ""; }; - F8945C5C7F9E2F863D8819348D0F453E /* 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 = ""; }; - F8A01E1671B3BB46D43523807EAB98B2 /* FIRGetProjectConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h; sourceTree = ""; }; - F8BCD3ACC3A9537DB76A1799829D4C5B /* 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 = ""; }; - F8CB86F939FA26E850A98B58CC6F5B84 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; - F8E2FD611083FB1271F8149585390B4F /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; - F8F1D4906E47871EB1E4F74A6363EED4 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; - F900FF5448DCE4BEFEBC824D038C5598 /* CLTypingLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLTypingLabel.release.xcconfig; sourceTree = ""; }; - F90DE3DB25220666D1233C3E7D2FFD03 /* 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 = ""; }; - F91D2A7725CFAD9D1DA90A801FADB7B7 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - F9203645BA0FAA60CA2F8F8FE1F5B21E /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_info.c; path = src/crypto/x509v3/v3_info.c; sourceTree = ""; }; - F929D05607622872F8B4AF7A7E916917 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; - F9514C0821DE3D9512A12B6846090A1E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/lhash/internal.h; sourceTree = ""; }; - F95C628C2A27D30BED6DCC9D38BDF1C5 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; - F96007A87BF3248224B01BF4AB37B1C6 /* 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 = ""; }; - F9B982D25E697F8CBC0C37D13FB4562A /* path.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c"; sourceTree = ""; }; - F9C2700FD1B3D06EF98074306A411168 /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; - F9CD7F32C915CC6D9E5092E802ACB02B /* 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 = ""; }; - F9CF7FF71520172A54AA51AA42DDEB02 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/rpc_method.h; sourceTree = ""; }; - F9D1CC3EE498999B30139AB65F642E84 /* x_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_info.c; path = src/crypto/x509/x_info.c; sourceTree = ""; }; - F9D802CEE2442557DBEBBB89B9D745CB /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; - F9D89DA5B5D6A1C5AAFD95C0B26C03F6 /* FIRSecureTokenService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenService.m; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.m; sourceTree = ""; }; - F9E6ECD0031EF129A9FC62746415E60A /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - FA03A788EE692C767890B8599E7DDD82 /* 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 = ""; }; - FA0B42D0A09220E148EEC932FC36A409 /* 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 = ""; }; - FA1F2970262B2B17870B752504553D11 /* protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c"; sourceTree = ""; }; - FA24B90275506B2AFF2CC4E35D9AADB2 /* 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 = ""; }; - FA3E56DE2F04D016CA72ACF03FCB2F5F /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; - FA535764C50D67EFBF9B6F306B1CFFD4 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; - FA5F2259F1F974EAD2E550059282DF46 /* 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 = ""; }; - FA629B5DBD44D22B5379CA0BE84C472C /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; - FA6807FCF63A1D43B0E71A56AB378C49 /* 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 = ""; }; - FA6C384225F43B1F3957E13A76557E3D /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; - FA6F17DE47110BDFEAC55F8AFDB69450 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/impl/codegen/fork.h; sourceTree = ""; }; - FA78CE6B038EF8067EE0A0E99CE92620 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - FA8DD3BE0C57410703E94BA4CA213FB1 /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; - FA91580EE93856FD88ED75C260987E44 /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; - FA920E1981646315519E7CA578F46E94 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - FA9725B601F031FEFE1B4E213F49A52A /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - FA9C72197B6BC403850AEF928454F46B /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - FACDB6EC2330126C7BF62C3243506D5C /* gRPC-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-Core-Info.plist"; sourceTree = ""; }; - FAFA58FB10054832862CEE0482F24D2D /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; - FB20948313E52E2A54C81FE6694CD207 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; - FB225E62EF172357B3E0DA86D4AECB84 /* FIRMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo+Internal.h"; sourceTree = ""; }; - FB2417058DD5CEBAC8310A2F6C7DC5F6 /* cord_rep_ring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring.h; path = absl/strings/internal/cord_rep_ring.h; sourceTree = ""; }; - FB3F7C722862A72BA6197A56886703C4 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; - FB431DE016E0C15DED146DFD83946FDD /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/internal/escaping.h; sourceTree = ""; }; - FB502533DB2A8389BBCAC2AE2C212BBB /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; - FB5AB2338A78A9938C7582B965F370D9 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; - FB871EBA96139E497887203510BD0075 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; - FBA1410D0DE6F9F93C6C8430C26C3D84 /* abseil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "abseil-dummy.m"; sourceTree = ""; }; - FBBEB415CDF581F0D0FEE2A27814EC2F /* db_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_impl.h; path = db/db_impl.h; sourceTree = ""; }; - FBD13DC0CA3448437E698AEF12BCEC82 /* 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 = ""; }; - FBF329FC08B1C7ED5CA09A4920080461 /* 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 = ""; }; - FC00F275871BA9CCB21D1871779468AA /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; - FC0413FB7D016F2CA26B29C8FF107925 /* 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 = ""; }; - FC5B3005DDD30B2745CCB8DD7D6C5A10 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; - FCC2155119C04BAC7B6DC58CE331B31C /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - FCF0B6D2ABA038FFFEA9BAC95BB318AE /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; - FCF50DD9E1F68DB063FE2AFCA2BAC23E /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_subchannel_pool.cc; path = src/core/ext/filters/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; - FD01CAAF1CB8E468112CB41BFF20BE1F /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; - FD1265C686F1661E68C612FA3E6317A2 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; - FD15BA8BB1E9FAA7120F8B11290B2976 /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; - FD1B5F391FD32940B0A27533F8EC0203 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; - FD2626A7C8244BC1830F80CAB64788D9 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - FD3FB7A62D0468C3221CB74747070AAA /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - FD3FC72340EF81CF403FE3EB25A9BFDD /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; - FD4E78625E8C3DB087988B80CC1F91CF /* http_tracer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c"; sourceTree = ""; }; - FD56926ACD15BAA46120D5F9A461E2C9 /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; - FD599A7D2B8816BEF600F4E42B4AA145 /* FIRMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo.m; sourceTree = ""; }; - FD5AACE58DB36475DB519B19FE32A6F6 /* c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = c.h; path = include/leveldb/c.h; sourceTree = ""; }; - FD6316EF1919C08B570B0D90E1127139 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - FD64371E6762D728A7887F2E44CD1C1D /* output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = output.h; path = absl/strings/internal/str_format/output.h; sourceTree = ""; }; - FD6513770E658A6C321E028E0E393E28 /* FIRPhoneMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - FD8E5782C1B2822D458B8F72E0AA219D /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - FD8F6EEE135322871F125D0C7D51B718 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = src/include/openssl/tls1.h; sourceTree = ""; }; - FDAF8ADC84471FF705E01D9095797EAD /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.c"; sourceTree = ""; }; - FDC85BEF7CA0C253027CAB59CCE39D5C /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - FDCD87115AC50E6A80713C963485A6DF /* 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 = ""; }; - FDE8C0E638ACDF3599AB17E05D1D57FC /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; - FDF122BF4B038C3DAE23472B7EC2006F /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/iomgr/time_averaged_stats.h; sourceTree = ""; }; - FDFDBD984846E1D8C8DDE6D4AAB1301D /* x_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_pkey.c; path = src/crypto/x509/x_pkey.c; sourceTree = ""; }; - FE2A5D385714451F620936B2F23E9EF3 /* 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 = ""; }; - FE2DCC69A9C0C4C92718B9924A9E5BDA /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; - FE30B0B96ED39FB5F73754230A57BD76 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; - FE3B5D68080F146728C8997C4A33236E /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; - FE50E931BADD624421DE40023EEA781E /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - FE5646D09597315455D96DEB01EBF2AA /* 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 = ""; }; - FE66F2484E35FB0A463C35AEF2D4B8F8 /* bernoulli_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bernoulli_distribution.h; path = absl/random/bernoulli_distribution.h; sourceTree = ""; }; - FE75190669FC3181BD3F33A236258758 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; - FE88D7FE642F4D3126B18590216A958F /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = ""; }; - FE8D49725F8042E90BFFA332841389AD /* 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 = ""; }; - FEA01C9D6CF7CF60C94967B2E89B02D5 /* 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 = ""; }; - FEAF83A65BEBB3504AE2E52098A98E84 /* 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 = ""; }; - FEB341F099142FC8448988E75D653662 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; - FEB5E7DDCA3FF8B23C041BE45ED60ED0 /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; - FEB604D15FE98D324F07E7D3AD9C746A /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; - FECB7D91E22F4D2504A111623A6A6ED9 /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; - FEE0985A810CBB33E3600CDF51198CA0 /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; - FEE0B36B9BDC1CBC2C718224824657AC /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; - FEFA76422F8B32C035952A1136818341 /* Libuv-gRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Libuv-gRPC.debug.xcconfig"; sourceTree = ""; }; - FF23BFB1C6FB85C06C093E0EBAFC9624 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; - FF3DAF6EA55447CA1D19DC60B88962D6 /* FIRAuthAPNSToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSToken.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.m; sourceTree = ""; }; - FF46A9A7423D03217525584FB0EB958F /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; - FF602C6B56AC57B500B8C62ABC8828EC /* utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utility.h; path = absl/utility/utility.h; sourceTree = ""; }; - FF6CCAF64B4F5CEDF52B7EB62B9E963E /* 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 = ""; }; - FFBE4E46246B71CB25C5165AC1595419 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; - FFC4ADCB64730E3C3E758C157EEC9A00 /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; - FFD3EA5B5B99831F4F9144944A1B4ABA /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; - FFD52C1D89BE68534B3058B5C01D5E70 /* 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 = ""; }; - FFE1B0EDF56982F5B5170DFF3FB711AD /* event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_factory.h; path = src/core/lib/event_engine/event_engine_factory.h; sourceTree = ""; }; - FFF7D6F11E84CE27EA2F85C34828A26C /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; + F84781EEEA6845FEB19422F9000FF5B2 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; + F85AC0D6836FDF5C20288B41676B6035 /* FIRVerifyAssertionResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.m; sourceTree = ""; }; + F871B511401EA2EAE19D01EA89E96474 /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_resolver.cc; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc; sourceTree = ""; }; + F8C2BDF0CCA39825DF8F69EA2433BE5C /* gRPC-C++.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.release.xcconfig"; sourceTree = ""; }; + F904475DD913EA62FCA093582FE69D9D /* p_rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_rsa_asn1.c; path = src/crypto/evp/p_rsa_asn1.c; sourceTree = ""; }; + F90C1C8B0575BF54FF179737758A1278 /* protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c"; sourceTree = ""; }; + F9191D37BA551900F6BC97464182CFE1 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; + F92221BC48D173AB1B9FCDBB945120C6 /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; + F937C57B6E01304BC500F48F291ECE67 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; + F93FB085A4BEF25B32E9DF109FFBA472 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; + F95A0B77E4366D086D267B00561DD262 /* posix_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_logger.h; path = util/posix_logger.h; sourceTree = ""; }; + F95F318B1943265385245D49E4B752C6 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/include/openssl/buffer.h; sourceTree = ""; }; + F97B32F463E2C5EACE7D8468D433E84D /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/support/string_ref.h; sourceTree = ""; }; + F97E7B0FF84C637F6B4E6CAEE320C5DD /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; + F986E070DB671475D9B00EFCE41BBA09 /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; + F9B172F7E02233AD6D323D4B04349142 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; + F9C36749518F693AB3B1FF0411E07FB4 /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; + F9D7145FE966D1A57FA5273801F45E57 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; + F9E38DE18063124BBA380115509B40B9 /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_poll_posix.cc; path = src/core/lib/iomgr/ev_poll_posix.cc; sourceTree = ""; }; + F9EA6A3F09D4CD645DC140A0B2CE519F /* 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 = ""; }; + FA0F2F4F285D42BF2CFB6BCE4B858952 /* cpu_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_posix.cc; path = src/core/lib/gpr/cpu_posix.cc; sourceTree = ""; }; + FA1E491D3D78ED13CC97525B38A521A6 /* sync_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_windows.cc; path = src/core/lib/gpr/sync_windows.cc; sourceTree = ""; }; + FA1F48C9248CAC723C8B9BF925790608 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; + FA2744F25B64103423574268D739E8BF /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; + FA89B4B878CA605910CFE2EC42101CD7 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; + FAA3E19066591F8B4897FAC40AE1A0CE /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; + FAA79673E81FD7A35B4230147E9F3C9D /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/md5/internal.h; sourceTree = ""; }; + FAFA56E29E7BD556B98A3FDD4DF32297 /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; + FB034D79C25A19F3E63CA19E4BDFAFE9 /* FIRVerifyAssertionRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h; sourceTree = ""; }; + FB04A578884285731832F180BE268525 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/sha/internal.h; sourceTree = ""; }; + FB0B9B27A6EE6CB65F67C1FFC47B15A2 /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; + FB3C513795C9F950E138615E8D59D59C /* civil_time_detail.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = civil_time_detail.cc; path = absl/time/internal/cctz/src/civil_time_detail.cc; sourceTree = ""; }; + FB42068789F275D0C1B4666437E87C9B /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/ext/filters/client_channel/lb_policy.h; sourceTree = ""; }; + FB4FC5B429AEA88E7F2E5B30F1EB13C3 /* stream.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stream.c; path = src/unix/stream.c; sourceTree = ""; }; + FB64A299FA079200E0FFD9E416DE4B65 /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; + FB7500A37B5D60CBC2EE76F76685F82C /* reflection.c */ = {isa = PBXFileReference; includeInIndex = 1; name = reflection.c; path = third_party/upb/upb/reflection.c; sourceTree = ""; }; + FB86E0114973287E1713211927B23754 /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; + FBA28F23C40C8E5F6A7CC32376915B7F /* 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 = ""; }; + FBA57E1A6B526DDE632C5B5DC4CD9567 /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; + FBA774A0D4CDBD75468A90BD3E1EF74D /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; + FBA7E613E5290B814A53A8D7EA35FD00 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; + FBB0D9B099F6E472C3D850C757605ECC /* secure_channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_channel_create.cc; path = src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc; sourceTree = ""; }; + FBB3772FA0CFC6FE664C881C261302DB /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/internal/hash.h; sourceTree = ""; }; + FBC02DF74ED6D3AA3D52FBB31B769066 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; + FBC45472822A2A5EB4611E94D3CAB6AE /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; + FBDCF3E195CEFDE721E9F6833F34D3F8 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; + FBE1195BD5E812EC99D8FEEED599403C /* bytestring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bytestring.h; path = src/include/openssl/bytestring.h; sourceTree = ""; }; + FBE6C7A46AD71A90CD3BE37547709E8B /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; + FBFC9891497705E665B3D4F6DEF80E18 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; + FC1F197E0A2414AC0A76AA070E82D015 /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; + FC305D3BE1AB21685F45311DFE9308C7 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/ext/filters/client_channel/http_connect_handshaker.h; sourceTree = ""; }; + FC34D9BE39A78FEA6E005FAA55C5BC8A /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = include/leveldb/options.h; sourceTree = ""; }; + FC6A5E4AFB72F7D605E12AB3EB2AAC76 /* max_age_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = max_age_filter.cc; path = src/core/ext/filters/max_age/max_age_filter.cc; sourceTree = ""; }; + FC735BCC50033E1AB461C0ED4A6536C1 /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; + FC7620558C27A701A19D7C63A06096DB /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; + FC7C4FD91647C3A6763204A088C5C224 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; + FCC1F3F2DC312DC808B208B202CBF86C /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; + FCDAD064366DB6F53D24F6EBB986C868 /* grpc_unary_call.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_unary_call.cc; path = Firestore/core/src/remote/grpc_unary_call.cc; sourceTree = ""; }; + FCE4421EC627FAAEBEA77A5FE37B4E23 /* FIRActionCodeSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRActionCodeSettings.m; path = FirebaseAuth/Sources/Auth/FIRActionCodeSettings.m; sourceTree = ""; }; + FD0E24185D12F451AC29668BAE6A8804 /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; + FD0FB67B806D8EEC8C3E053D846F955F /* FIRMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo+Internal.h"; sourceTree = ""; }; + FD2285038BC5A26D6C8AAF9717EF2160 /* base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.h; path = src/include/openssl/base.h; sourceTree = ""; }; + FD33F30B2FB49CE7048394F59294EBFC /* 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 = ""; }; + FD3F9000AB37386213905F547AEDF517 /* hrss.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hrss.h; path = src/include/openssl/hrss.h; sourceTree = ""; }; + FD43BC099C8B74F7A494EC90F4D1AD1D /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; + FD51DBD3E53972319EDAB4144F5A2328 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; + FD575D16DDAFBC163ED6E2F28A266DF3 /* NSData+FIRBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+FIRBase64.m"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.m"; sourceTree = ""; }; + FD5A9E431DABAB19AE25E002315A4BEB /* self_check.c */ = {isa = PBXFileReference; includeInIndex = 1; name = self_check.c; path = src/crypto/fipsmodule/self_check/self_check.c; sourceTree = ""; }; + FD7D211322B5D3D691BD340D297086FB /* 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 = ""; }; + FDACA4A9BFC3373324F691FE0C3C6706 /* GDTCORMetricsController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsController.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetricsController.h; sourceTree = ""; }; + FDC59F25F96582A99F509412F39647AC /* connectivity_monitor_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_monitor_apple.mm; path = Firestore/core/src/remote/connectivity_monitor_apple.mm; sourceTree = ""; }; + FDD8B152FDF5329D4D956A45AE51D1F9 /* mix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mix.h; path = third_party/re2/util/mix.h; sourceTree = ""; }; + FDE57C13CE0BD1FF00774383BDFA28C2 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/support/sync_custom.h; sourceTree = ""; }; + FDE9C33B7249A91C26C6615344F3D91A /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine/closure.h; sourceTree = ""; }; + FDED8CA1A863A892DC54D8801FBA581C /* 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 = ""; }; + FDEDD2CD9E7823407F8F61981EA730B5 /* GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleDataTransport-Info.plist"; sourceTree = ""; }; + FDF66B982B737C9B402013AF90948F7A /* 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; }; + FDF9132F36FD5A2879860E650BDC7EFB /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; + FE0833A3F9566388CFA611A5DF536E7E /* FIRAuthAppCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredential.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.m; sourceTree = ""; }; + FE085D2F673689A6EFBDD8FA64154F1C /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; + FE096CC79FB761BEB3AD648E5CCB4563 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + FE11DF1311A4ADED090E9E3FF9A0CA47 /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; + FE1B461DD8FB42EFE382F301978AD4FA /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; + FE1EA19F1D1E10840926EFC33DCAF1C1 /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; + FE29B99AB49861FC7138440CF3F53333 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; + FE2CE0C1EF6DAE2575B2E99FDF544AFE /* xds_channel_creds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_creds.h; path = src/core/ext/xds/xds_channel_creds.h; sourceTree = ""; }; + FE30EF06B491C97160BC13D9E9C05400 /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; + FE621FA81410BAB146B7C4CC1CEC31C3 /* 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 = ""; }; + FE62FAED0B82D41029BFDB7AAA32A6BB /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; + FE6F896254E8E816BDEDBCCC409E6E2A /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; + FE71C6010C11F3ABD587C08B796665BA /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; + FE71CB28FE35F07DB90EE91B9A4EF980 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/codegen/status.h; sourceTree = ""; }; + FE7AD42B54146B924E4B47C584A8E70F /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/support/status.h; sourceTree = ""; }; + FE7C588F999A8E110EA451FBDA8EA670 /* GDTCORMetrics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetrics.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetrics.m; sourceTree = ""; }; + FE86F5C36629FA2E79F4E65DE4973094 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; + FEA25BB35EF0DD0B7FDD42E853FA6383 /* vdso_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vdso_support.h; path = absl/debugging/internal/vdso_support.h; sourceTree = ""; }; + FEC60A96BE17402D5E64335CAFE447E8 /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/codegen/propagation_bits.h; sourceTree = ""; }; + FECDF8B33466D335601BDC5A3CABA4D5 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; + FED5109C8E4512A06486763331BE451C /* 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 = ""; }; + FEDEE89F293FCCFEC3C4C9BEBCE26F2A /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; + FEE386601BAB8C15BCF9C45961455790 /* client_authority_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_authority_filter.cc; path = src/core/ext/filters/http/client_authority_filter.cc; sourceTree = ""; }; + FEE7E4634142660836B0F1984913687C /* 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 = ""; }; + FEE94F79FE7127AA158E61CC4225D145 /* 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 = ""; }; + FEEF6CA2D1F941134ACE0D24FEF97843 /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; + FEF102239F868716D826D65BC45454C7 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/codegen/connectivity_state.h; sourceTree = ""; }; + FF04A5357ADBD8413D0900AD2C7A263D /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; + FF136338EECB99133BC03D4EF0F6F3BB /* cpu-aarch64-fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-fuchsia.c"; path = "src/crypto/cpu-aarch64-fuchsia.c"; sourceTree = ""; }; + FF2E6262FD94A607F6F73DA9FDE557FF /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; + FF3D5B7F804E79B30D146CC587764706 /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; + FF4DA9CD441668794E01F66591E12C5B /* GDTCCTUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploadOperation.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m; sourceTree = ""; }; + FF50389AA628ABB808CA4F98D2AFD5D5 /* 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 = ""; }; + FF60FE427E6D73A36A82F403660012BE /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; + FF6B505239931B7EFF6591E61538E4EF /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + FF6DE32A196E55EC9F8BEABB1DB36C1F /* jni_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jni_utils.cc; path = src/core/ext/transport/binder/client/jni_utils.cc; sourceTree = ""; }; + FF6EAB0B70F43AAC2C4F021C8D82A9C9 /* 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 = ""; }; + FF89CA39139724FBB70CA9F2C5F044A4 /* FIROAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h; sourceTree = ""; }; + FF987A20278666261487785ABDF92545 /* cds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.upb.c; path = "src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c"; sourceTree = ""; }; + FFA54A0203ACC12DBFB935BB78ACC2EC /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; + FFA8AB854FBEA8254B954427C957D9A2 /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; + FFC6C80631658133A66CF1F125F5FE9F /* FIRAuthDefaultUIDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDefaultUIDelegate.m; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.m; sourceTree = ""; }; + FFDF70E20EEE2F656DACD6A5BF0E0784 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; + FFF7D20085306646CE254E3C50304AF9 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upb.c; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.c"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 045C78376381DBF79F8F290C826FDA74 /* Frameworks */ = { + 11A6E6F836F087543E3330727C4B6AC6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3D014ED0F82A8B03BF0539ECD7BBE58C /* Foundation.framework in Frameworks */, + 9127D2249D6BD3464DCE5A669EA17C14 /* Foundation.framework in Frameworks */, + 511BE82C5DCE8427AB02E1FD032A4918 /* SafariServices.framework in Frameworks */, + 8A6D94CD47D6EA9461E341AD269576C5 /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 11A6E6F836F087543E3330727C4B6AC6 /* Frameworks */ = { + 1D868DF45B79A8DA6303D62CEA484F81 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9127D2249D6BD3464DCE5A669EA17C14 /* Foundation.framework in Frameworks */, - 511BE82C5DCE8427AB02E1FD032A4918 /* SafariServices.framework in Frameworks */, - 8A6D94CD47D6EA9461E341AD269576C5 /* Security.framework in Frameworks */, + 9998E36B34ABDDFD667C5133EE2E4F1A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1B77F086B01B4434C576EA908D92969F /* Frameworks */ = { + 2A643F44BB2CC237595E119BA3D32407 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DC48F8347FBA84ABCAA42178AF279A83 /* Foundation.framework in Frameworks */, + 3E5531E9B57AD0347D687E17210326EC /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1D992138AF38FF09F727CD8DF75A9343 /* Frameworks */ = { + 327933B5D6855C9502D10D7AB4A1446C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DBEA01F87DB24B4EF98EB9D4A2858FAF /* Foundation.framework in Frameworks */, + 7C0349F76E5120079F66FB003F042B36 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1E9DE4BACE8AC2FF8535EB8AC5E98079 /* Frameworks */ = { + 48848003628701101494E561F2825532 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F9EA5B3A4D37BBFE6EC321BF25DAE18D /* Foundation.framework in Frameworks */, + E2A01F0F5504F2192BFDDFB1D9898512 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 33F0436E63C8275967B5DC40439CF616 /* Frameworks */ = { + 551AB43DF8C94A62E274CACBD710BB8A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 66CBF0FD375B02D4CC084099902B3FD2 /* CoreTelephony.framework in Frameworks */, - C95DFEC6695CA95CB1F53160FD38A7B7 /* Foundation.framework in Frameworks */, - 326479A367B310D6367BD100BB3607FF /* SystemConfiguration.framework in Frameworks */, + D5DBBD0F8873C8B1ECF47788FE2E1D06 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 48848003628701101494E561F2825532 /* Frameworks */ = { + 639A6B95F904CE830F913D1F7AE3443E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E2A01F0F5504F2192BFDDFB1D9898512 /* Foundation.framework in Frameworks */, + 4C0C0CD8CF5F68762E3D16E15062298F /* Foundation.framework in Frameworks */, + 3638CBD29F8E941348219A9560B79D68 /* SystemConfiguration.framework in Frameworks */, + 235B771A0B452A1DC34078634E2DBCE8 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 551AB43DF8C94A62E274CACBD710BB8A /* Frameworks */ = { + 6E8BA78088F59303533E6EE2ABC50FE7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D5DBBD0F8873C8B1ECF47788FE2E1D06 /* Foundation.framework in Frameworks */, + 17E171632DC8B3A636F89601884352FB /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7B4F4D67EF33D861D38FEB279914DE8E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4FF3F92DF240C4D299351B9D4DAD7BEB /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 59DBEA2D61E777EC914A3BB032D70EBC /* Frameworks */ = { + 97AF821E208FAFEF75DA2B6D8D555406 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 70C798CAF5CFC1341ACBAAE3706FD281 /* Foundation.framework in Frameworks */, - EDBB4593A847971D678F3A7437F715C8 /* UIKit.framework in Frameworks */, + 49ED9E2391310678D5384E0F77F24E8D /* CoreGraphics.framework in Frameworks */, + BC4C8754EDE63927CFC91A9FD632E608 /* Foundation.framework in Frameworks */, + EB844F0212C2EA5D442100A04B0EA260 /* QuartzCore.framework in Frameworks */, + A0EB87239EBE57D4C943BF51A57CCCFF /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5AF6B4CC799C80C55F06BDC394893E42 /* Frameworks */ = { + 9913494063C38E9FEE526E0CA6A9603F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 132A03E4A827F215693E29BB782F13AB /* Foundation.framework in Frameworks */, + D1CB8E90E730C4070E3671C810D91132 /* Foundation.framework in Frameworks */, + 0DB109957DB1735631E433E9CA7588A7 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5DD8548DA4EA743C0CDD838E63239B7B /* Frameworks */ = { + A760E4E5281D7FE56B28B52FD6F81412 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 85E2E3288F7EC8C5553FB6BF383B8A5A /* Foundation.framework in Frameworks */, + 87285991312639CE1D6225FA32A63CB1 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 64BC55640B722E8F12A01E99C94DEBB6 /* Frameworks */ = { + A91BD323887C49A1F26781440155C794 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6C031877F0672BBA917BCE395C358F61 /* Foundation.framework in Frameworks */, + 02431038F06E5F5F2C190804BB44F3EF /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6DD0FB1AAB1B26A0651F83D7302C1FF2 /* Frameworks */ = { + B64E27482D9A1CA263617DD221075421 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AAC606FB3DFD3EFDA2884D519A67BD3C /* Foundation.framework in Frameworks */, - 84B2D494FF6521B2962A8EC3B846DADB /* Security.framework in Frameworks */, - EE414C7FE31D34818DB5878A21920557 /* SystemConfiguration.framework in Frameworks */, + 7B0F25DC2C43384FD37C65EEC21557BC /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8F722D3CDD047EE48E78B94A0AB24D1C /* Frameworks */ = { + BA9FFE58B4C5758F8BCD2E89A1744FB2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0AE1134201A3CB13CB24005B8D9B0CCA /* Foundation.framework in Frameworks */, + 95EE06E0F1FAD02BCF0A5ACBE923E326 /* CoreTelephony.framework in Frameworks */, + 33C4E1FB5291DC60874FB3553E782C7F /* Foundation.framework in Frameworks */, + 4C9CAFD25DCB9333A49DE440AC48054A /* SystemConfiguration.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9FB6E806932DE014BECD90205042BE9A /* Frameworks */ = { + C321D7FF032C7CC77CD86D6805D200E1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A0F6CB47B3A3CB8807EA48DCFAEB9AC5 /* Foundation.framework in Frameworks */, + CE4866967768812E9B1F79EDA56E9A90 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CCF9967433B1ADB22D49F4CB723762A0 /* Frameworks */ = { + C50C3C3705AC854BA6B6A2FB25D92314 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5E3E8D9EA84B5937B7206C3E76EFCA44 /* Foundation.framework in Frameworks */, - EAC7C408BB08899C68F42BFCDEB6977F /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CF651A4B18A592B5D4D6A0E3FAB0BE43 /* Frameworks */ = { + D475334BFC95C0D18E92E0C92D442609 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 515B352FB2645F8CC92BE1527FA87422 /* Foundation.framework in Frameworks */, - F2EE6F7ABEF797BCFAF6373D7447EA2D /* SystemConfiguration.framework in Frameworks */, - 72E3D0F900D4FEC2D51BDC955CB79142 /* UIKit.framework in Frameworks */, + 058CDF1BBF4437CE9D15C00E17E91735 /* Foundation.framework in Frameworks */, + 33E6F33BD4444562E2E344A644633409 /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F2DF12681094919874DA9361D64661F1 /* Frameworks */ = { + D5CB4F2E6086E1D77A4EFA2447F01B4B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 6132FDBFE3477966CEB604D1E8364DE1 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - FEF3A3761C1A3B53EF273216EBB6A3A7 /* Frameworks */ = { + D7BAA9795775E4C834560D8C2C03DDAB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6D7623C1CD47E833074AACE557F5DE04 /* Foundation.framework in Frameworks */, + C94B4D407DE0C71B8EDF37710F7AB5DB /* Foundation.framework in Frameworks */, + F16368FB9301557AC3DD7C9BAEBB50BA /* Security.framework in Frameworks */, + 635D7E7171FB6B4C515D217C16EEDCAB /* SystemConfiguration.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 00ED19AF75E661ABA0309FE345D77E45 /* Core */ = { + 01F6440D12C56374422F5FCA389030FF /* base */ = { isa = PBXGroup; children = ( - 842F3CA63637C9471D572D962F41C20A /* GTMSessionFetcher.h */, - DD150F5546A5585D6469457EC7E81C69 /* GTMSessionFetcher.m */, - EB1743C3DE9AF6A5D7F8459C4F1990F7 /* GTMSessionFetcherLogging.h */, - B775E7847EE269D6C5AFD3E0A38E09AC /* GTMSessionFetcherLogging.m */, - 2E36560640A07A2A61D6BB28D985EE0A /* GTMSessionFetcherService.h */, - DB99C7B8E5CBE52253764CB16C0A2B9D /* GTMSessionFetcherService.m */, - 2BCAAD5971AD4DC59DD30BFCD0F7B2FB /* GTMSessionUploadFetcher.h */, - 8B52C63C7192772F7B0BEAE11C9E97AA /* GTMSessionUploadFetcher.m */, + 29507664DD519939DA884BBA6135F8AD /* call_once.h */, + 542066D4F8706E75029126E02424F41A /* casts.h */, + 626EFE6B15D6217369658CF38C59FD06 /* cycleclock.cc */, + BDCF4567F6A955E8C5554D22CE50A51B /* cycleclock.h */, + 8915AEFB88DF8D74B5CB9576C55792D9 /* low_level_scheduling.h */, + 66A452EA3D24A2C5F5FF4C0D56834ABD /* per_thread_tls.h */, + 080E8AEE10387A60A13F909676EB2D01 /* spinlock.cc */, + CD51F7D1973BD247CAD44E6EF7A47DF4 /* spinlock.h */, + BD1BD7D4DA91AA96E71CBB04161C2F05 /* sysinfo.cc */, + EA7938AC43874B40CB949F5056D02D7D /* sysinfo.h */, + 40F60846F6BAE6CA04878B15736C25C5 /* thread_identity.cc */, + 6E2D5A5190920F4F77683C870A7972A1 /* thread_identity.h */, + 130C5A824540F219BD15114C2D87982B /* tsan_mutex_interface.h */, + 5EA09696A4688419E51C29AEAB3FD1FD /* unscaledcycleclock.cc */, + 2A80B90084263B286C2B9BC140688CB6 /* unscaledcycleclock.h */, ); - name = Core; + name = base; sourceTree = ""; }; - 00EE997D7D2EBFFF3EAC0BF2F7725EE5 /* low_level_hash */ = { + 0234A25EA5E35A8E2B64DD706882BE0B /* internal */ = { isa = PBXGroup; children = ( - 9E50A1D5AA54221A1BBB7FD954562971 /* low_level_hash.cc */, - CFFF274942974D8426972695EE62AA5A /* low_level_hash.h */, + C2EAEB5C3A0487B85909AC679C0B230D /* cctz */, ); - name = low_level_hash; + name = internal; sourceTree = ""; }; - 021C99A7DA016E83911381737DC56CDB /* nonsecure_base */ = { + 034561957FC45F1E7834F6AF4689A126 /* Support Files */ = { isa = PBXGroup; children = ( - 1F3F5ABE756FFB0C88CEF34B25192312 /* nonsecure_base.h */, + 81566207F05E1F322A4BDF0C50741BC4 /* gRPC-C++.modulemap */, + 114A93FEF606BDF65C40A3A219CCC60E /* gRPC-C++-dummy.m */, + AA202FF064251A13A862572F5AC03E5B /* gRPC-C++-Info.plist */, + 975E6E47D4F8767E70752D51FA985F46 /* gRPC-C++-prefix.pch */, + D9EAFF817D7931532A1C4D582FF3FAB0 /* gRPC-C++-umbrella.h */, + 9D76245F75E9D13E7E30ACE2A2CC1F62 /* gRPC-C++.debug.xcconfig */, + F8C2BDF0CCA39825DF8F69EA2433BE5C /* gRPC-C++.release.xcconfig */, + 826150F9E06922A54A207FAA95FA2B5C /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */, ); - name = nonsecure_base; + name = "Support Files"; + path = "../Target Support Files/gRPC-C++"; sourceTree = ""; }; - 04D039002CFC98D9637366C0D1B63869 /* raw_hash_map */ = { + 03A2681F9131402F240B8F441D05F244 /* FirebaseFirestore */ = { isa = PBXGroup; children = ( - 49A752E8F3D274B1F36474049315EF94 /* raw_hash_map.h */, + 56884D13D200DA9298B504D7E96A7378 /* annotations.nanopb.cc */, + 705B1D73FA5618F22265BA6880A19556 /* any.nanopb.cc */, + A7FB77B9CCFCABF72FEBDDD57C467B61 /* array_contains_any_filter.cc */, + C80D9620B533F5CC8B7143725F5E4E77 /* array_contains_filter.cc */, + 13D2BA15C922333B63ED542D87C78663 /* async_queue.cc */, + 35DBC6FC3810FE7B91741D28B4F78BA3 /* auth_token.cc */, + 3D171381C06A1596DBABFCA519F6B29E /* autoid.cc */, + 1265EC683547DE07CE4B218B4E47EB0B /* background_queue.cc */, + CE8F597CB233E8B724EA2D2ED4436CB0 /* bits.cc */, + 0E9B562BC1288596A3E5062F05CE9CE6 /* bound.cc */, + 5F658875261BCEB7316C087B32F44135 /* bundle.nanopb.cc */, + 4D2352DAEDB9C145770BAB16CFAF17F1 /* bundle_loader.cc */, + 3A0F259892FFA8B44D379B23F27831E1 /* bundle_reader.cc */, + 3950FD39A0C3194511848628B78EFF70 /* bundle_serializer.cc */, + 06A2391CCACB4391A01D3A6DF188A56A /* byte_stream_apple.mm */, + 42D4CE64988498E74822D76E0034D720 /* byte_stream_cpp.cc */, + A165A5E9CE0006207D5CA271C32294B5 /* byte_string.cc */, + 9CEE43AA7BE194118B1E7776FDD2957A /* collection_reference.cc */, + 1C49CDCC29CB44D4D0A973F339DF9E99 /* common.nanopb.cc */, + 802CB8635B1F10971B3859038D444C8E /* comparison.cc */, + E821893413CF35F0F9BB760FA062375B /* connectivity_monitor.cc */, + FDC59F25F96582A99F509412F39647AC /* connectivity_monitor_apple.mm */, + A010BC44D6C5625A0F7407A01D7EE408 /* converters.mm */, + C3ACBB7E566FDC8F3068FF86E61D8B19 /* database_id.cc */, + 99C85F10F106457000C59C374018AA1E /* database_info.cc */, + EC598CC2FA09E9868D31F44A7ED8E429 /* datastore.cc */, + 776098914FB49579EDE3FAE024BF50B1 /* delete_mutation.cc */, + 6836B27504A0A075A4DAEBE5C0D0B7DD /* direction.cc */, + 5552ED910BD4273BAA15616EC18C9022 /* document.cc */, + D1E2895321BBA843443F722097CE3CBC /* document.nanopb.cc */, + 34F1B69144C04AF4B5887DD2A93D7141 /* document_change.cc */, + D3824B5428C23E6AE8572246E1CEC1F9 /* document_key.cc */, + AFEE4712648AEF17DA9088D37F87A094 /* document_key_reference.cc */, + B0B311865A57C94CB65CE2CF77FBFE09 /* document_overlay_cache.cc */, + F97E7B0FF84C637F6B4E6CAEE320C5DD /* document_reference.cc */, + DB222F29B01B461D74EC283FE9967EBE /* document_set.cc */, + 25386FB1C6F4C090D700085BA82519CB /* document_snapshot.cc */, + 8DAFA4B55AF0038305EBCE58F9D65C57 /* empty.nanopb.cc */, + 29EF70B8A0DC18518680E65B2178F41D /* error_apple.mm */, + E54B36C19CDBFB75EF135116B937D511 /* event_manager.cc */, + DB6D8EA375F893D63FA5D903232B276B /* exception.cc */, + F0024B5CF37C4D98BBC16E6CFF9A7D13 /* exception_apple.mm */, + D69FBDD8E0D7D45D243BC7C1BD5F3906 /* executor_libdispatch.mm */, + 3E4C7E829110656B7D0D89B70D33BE54 /* executor_std.cc */, + 2AB865490DA35C0AFB92138DF93F1168 /* exponential_backoff.cc */, + BA4CF79BCA8609BB03C2F55211A7BCF2 /* field_filter.cc */, + F1F691DE2C4B2EE2078D5F5DDB7C8C0D /* field_index.cc */, + B7308CFBA25EE9ECC2D5092FD3966760 /* field_mask.cc */, + 22C16AEFFC563905D84755A6A2683E08 /* field_path.cc */, + FEEF6CA2D1F941134ACE0D24FEF97843 /* field_transform.cc */, + C1DC8938FC1BF8681D158C98E3380835 /* filesystem_apple.mm */, + DD3313811BC74710DC01F44CDB8BFA38 /* filesystem_common.cc */, + 9238BB64F3F699BF552FD098727548E6 /* filesystem_posix.cc */, + C5E6FD2FA98E4C3A91B31A38DEC7002D /* filter.cc */, + D87B85409A67476C18535E1F3BEE22CB /* FIRAppCheckInterop.h */, + C79E522BED35A820FB29B191CE6A652F /* FIRAppCheckTokenResultInterop.h */, + 2C5DABC98FADEABBE529D68A32577D17 /* FIRAppInternal.h */, + A1C5C922864884C87FF7B3296510D4E6 /* FIRAuthInterop.h */, + D79C2181AC03C784171C27E13A02A92D /* FIRCollectionReference.h */, + 5D9D5895EFC31715E01FB32BB3EAA29C /* FIRCollectionReference.mm */, + 935D49CCDA0FF5CBAD50A7A756FE5B4D /* FIRComponent.h */, + EB47F7C063DAEB91DD3D0177C29E3C2D /* FIRComponentContainer.h */, + 52E67834B5A485CB9A2786D5BB6CA406 /* FIRComponentType.h */, + 4D3AD9AD336132FA885B8C0267B5F5B8 /* FIRCoreDiagnosticsConnector.h */, + 91DBFE461EACD0B51D7A71147C9836E7 /* FIRDependency.h */, + 83140535FB93F07F64BC6545C841F42F /* FIRDocumentChange.h */, + AD0ACE76704E6FDE22C9C618982D9683 /* FIRDocumentChange.mm */, + D51C04090763715CC9904FD3DEFD0E00 /* FIRDocumentReference.h */, + 99CF657E87CF22DD81D33BC5A6FB9577 /* FIRDocumentReference.mm */, + 2EC194437E3F222A1DB87AC6D5192C38 /* FIRDocumentSnapshot.h */, + 364D47C7DF4304D7F081B97607B983C2 /* FIRDocumentSnapshot.mm */, + C8B966F5469625D2AE2843A647591C5E /* firebase_app_check_credentials_provider_apple.mm */, + 7C72B55A02ACC830A688EE808CE9942E /* firebase_auth_credentials_provider_apple.mm */, + 28E9243F27B7634BC89EACE85CB51BC0 /* firebase_metadata_provider.cc */, + 4EE670011E8A7D6174BA15BC3C07CDD9 /* firebase_metadata_provider_apple.mm */, + 413278F73A9B70F3EB221A6C33531AA7 /* firebase_metadata_provider_noop.cc */, + AA17E5EAB0C4D3BBC240EDD511841B56 /* FirebaseCoreInternal.h */, + CEA403C1877410EC3BC09DE1466A5B58 /* FirebaseFirestore.h */, + 3EB76217E00B05811AFE4868B5A3B47D /* firestore.cc */, + A1C589A4BCD048A01A5211C4A1707B8F /* firestore.nanopb.cc */, + 51D328A0C077CADA9BA68222CBD31D55 /* firestore_client.cc */, + A450E976C638C4C2B34D8983ADDE7EF3 /* firestore_index_value_writer.cc */, + 4D656E858FEE438DF7FB7B3D4C4CEDC1 /* firestore_version.cc */, + E7D0075F1C1A51AE17810C6204DBD98C /* FIRFieldPath.h */, + 76B59D97F918D6043EE23E9F6F0967C7 /* FIRFieldPath.mm */, + 3264428575B7876E3234C6D9DC705381 /* FIRFieldValue.h */, + C6ED7AD78E76019497BA6CB85C70413B /* FIRFieldValue.mm */, + 954069AEDAAC546361B3E50D08241B11 /* FIRFilter.mm */, + 38EA73EACEF607FDCAC0D2F319DB96BC /* FIRFirestore.h */, + 887EC70F3633A9AE3FBC6E2FB987F759 /* FIRFirestore.mm */, + 0F28D00F3186C8C08E29AD6644B287C1 /* FIRFirestoreErrors.h */, + A61C655D6C391AF9812913174AD4D5E7 /* FIRFirestoreSettings.h */, + B51DDA23E16F0E47E3BFF773C123BDF3 /* FIRFirestoreSettings.mm */, + B40B7B601D444CD283D126DAD758658B /* FIRFirestoreSource.h */, + 55DC5F968EE208F7E795AC84DEA1FFC0 /* FIRFirestoreSource.mm */, + 74A7921A42FA7E95FF4A48499FDF2F2E /* FIRFirestoreVersion.mm */, + 031527DDC738BD83E9A0ECF5C9D969BF /* FIRGeoPoint.h */, + 3D246984ED3F0E9D6B89DB09C774AF65 /* FIRGeoPoint.mm */, + 0F7140E3A88B3ACD475206E7CD166F14 /* FIRHeartbeatInfo.h */, + EE36FDA2D1DDA879C79418D0764ACC8D /* FIRHeartbeatLogger.h */, + 0166B6B5604FA8960C0A0795A637ECA7 /* FIRLibrary.h */, + 4FD7EA9C9F42563B6BC440EAB8AAE188 /* FIRListenerRegistration.h */, + 04436C1AE53DD499F7BF43DB35632911 /* FIRListenerRegistration.mm */, + C068A54678F87D7D7E594C0F4D38C800 /* FIRLoadBundleTask.h */, + D47D130A801D3AF5FA56AB74214F2F67 /* FIRLoadBundleTask.mm */, + AF45222424DF04B96977839FACA4F955 /* FIRLogger.h */, + DFEBE39B1A123ECA6ECC27136BB67364 /* FIROptionsInternal.h */, + A2AC46A0588EE25199E81C334DC799C9 /* FIRQuery.h */, + ECABC7D7AADA09AFE62CD64834BBD7E3 /* FIRQuery.mm */, + AA07F3D19B01CFE3033BF0A4F1F403EB /* FIRQuerySnapshot.h */, + 95DA10CFEB7AA7AB83F0799C26B76326 /* FIRQuerySnapshot.mm */, + 8020947083266B840ACC497C40D9C6E9 /* FIRSnapshotMetadata.h */, + 521C6728CB5AD6BF415E45D1D24E745E /* FIRSnapshotMetadata.mm */, + 0DA82D8D13A4103C703962C9CFAEDFB8 /* FIRTimestamp.h */, + 35090CAE4FD57571082E5A3FC8287D4F /* FIRTimestamp.m */, + 49D88A33EECC811001B9C8BF00BAFFF5 /* FIRTransaction.h */, + 59250A8AD0324F1039172B545A76E233 /* FIRTransaction.mm */, + A84182F77804A6537104D42E15E9930E /* FIRTransactionOptions.h */, + 92A0DF81163B68AF90E9698F1727C440 /* FIRTransactionOptions.mm */, + 95BF937D26B63B99A2470A313D9EC50C /* FIRWriteBatch.h */, + 5BAFB2CD702C07921FC536FD5ABBE121 /* FIRWriteBatch.mm */, + 47FBFF3E9D8C9EE5A88DB2A773644C71 /* FSTFirestoreComponent.mm */, + E8CE084A8AEC04403318EFDA0056A937 /* FSTUserDataReader.mm */, + 015A3B24AB9D56778141F2038E656E9B /* FSTUserDataWriter.mm */, + A925A6ABA92ABCCDCA0399A5ABFA5840 /* geo_point.cc */, + DF024A9B4735921F5BDE91A436CAAF44 /* grpc_completion.cc */, + 7070CCCCF5748DF8CDB36F1E3EDD89E6 /* grpc_connection.cc */, + B2BB8966061EE3FC9C30E7289F1760FC /* grpc_nanopb.cc */, + 3D40D9A43D06695C350F28CDD9B7BC76 /* grpc_root_certificate_finder_generated.cc */, + 7F4F3B44F8088C5C7ED2C0AA67EA9270 /* grpc_root_certificates_generated.cc */, + B33F243B1FAF414A52B92D523434B4E4 /* grpc_stream.cc */, + 83445DFF998294999F449F3AF8027670 /* grpc_streaming_reader.cc */, + FCDAD064366DB6F53D24F6EBB986C868 /* grpc_unary_call.cc */, + 4C59B27B0D0CB9B474C889C3D1697A35 /* grpc_util.cc */, + 4B97F58C704AE38EAB30E3A54A4904FB /* hard_assert.cc */, + E2557EF5D9A3051A6EA018640E7E69EE /* http.nanopb.cc */, + 99256C9BCED0E545B8EBDC0E27613323 /* in_filter.cc */, + 3115FE7A90DBD8CCFBE7780AB549BCEE /* index.nanopb.cc */, + 3F5E3D71DA43E0AFD41E2BDEF46FCC49 /* index_entry.cc */, + 710349E5E371F72E1D5AB9F09AAF80CE /* key_field_filter.cc */, + 86A2188D375906AE14C361A87EE5E14B /* key_field_in_filter.cc */, + 5A9E14D70332E884566881FEB813853D /* key_field_not_in_filter.cc */, + 7869C40B95CE31A8445F55BD2687C8D7 /* latlng.nanopb.cc */, + 002D32355052CBC02FAE1A92DC157148 /* leveldb_bundle_cache.cc */, + 73431018B41E18B97DF055246F3EEBAC /* leveldb_document_overlay_cache.cc */, + 8B49A37BBD02786CF3BE8529C1375A0E /* leveldb_index_manager.cc */, + E41A3E258FEE62A0254B8E29EE72A84B /* leveldb_key.cc */, + B2C74D0EE40FB4F8857D42826FCDA16E /* leveldb_lru_reference_delegate.cc */, + FC735BCC50033E1AB461C0ED4A6536C1 /* leveldb_migrations.cc */, + B1392DEE3196EBD48BE8D727F56F5552 /* leveldb_mutation_queue.cc */, + 6F8102B95DA6099B8E7369746AE56339 /* leveldb_opener.cc */, + 0A41F2FB8125DE50F62D84AB15E5D9D5 /* leveldb_overlay_migration_manager.cc */, + 066817BADE511AF17107CAC1FCB1F74D /* leveldb_persistence.cc */, + 2D152DDBCC800E6139A84DD8101BDE9C /* leveldb_remote_document_cache.cc */, + 6EFAE51403B250F788D9848B7BBE12A7 /* leveldb_target_cache.cc */, + 1A0C1C88D18FF76E9CFD9C3C69A04DCB /* leveldb_transaction.cc */, + 27E22B5A2AB04D3F3E0EBC5011AE8263 /* leveldb_util.cc */, + 01D46E00C5F45C6A1A58C776FDE9655C /* load_bundle_task.cc */, + 479B6FD574DEDFF92947605E6EC1AF75 /* local_documents_view.cc */, + B7B95F82E625D0C58242561528322227 /* local_serializer.cc */, + FBA57E1A6B526DDE632C5B5DC4CD9567 /* local_store.cc */, + F44DC4C5DB5F37EA87926E0F9504607D /* local_view_changes.cc */, + 9F58D31E9E1E34322F82E81D519B3E4D /* log_apple.mm */, + BC196B0419ADF9A76B0E337BB6D273CA /* lru_garbage_collector.cc */, + 34436651D5CB14A308EE00D04232F8C6 /* maybe_document.nanopb.cc */, + 29410FDF4D45C382793A0721F6D3268A /* memory_bundle_cache.cc */, + 8CE8F97D6ECACCB4400071230D4B898B /* memory_document_overlay_cache.cc */, + 1B72B34523D0070F5DDFC241D790198B /* memory_eager_reference_delegate.cc */, + 8C452A7C29524C6EA2F3E7C8BD9B440D /* memory_index_manager.cc */, + D6329E39BE3DD49D5DAFDBF8F5AA6D88 /* memory_lru_reference_delegate.cc */, + 78777920D6D73F548D7A65D0125D67EA /* memory_mutation_queue.cc */, + 8A7FCFACABBFA725B2AD9AE404DED753 /* memory_persistence.cc */, + CEB5EB7C196341A03988A4BAB6F26F3B /* memory_remote_document_cache.cc */, + D9B24A5E61BE721C4F637603676CD6CE /* memory_target_cache.cc */, + 6B79771B7F01C3CE6DAA5D4D8875265B /* message.cc */, + 17CB02934DE998D4F38A000C8A51D960 /* mutable_document.cc */, + 8539645961A2E14D040E589CCAAD8A52 /* mutation.cc */, + A887CBD7627C4AF8ED92FE8119EE1E3B /* mutation.nanopb.cc */, + 13A79CCE29A52B6D4FD7E7D5C5318DDD /* mutation_batch.cc */, + 2CBDACACDCC35885E3EC7F6789EF7EFB /* mutation_batch_result.cc */, + EF526D765996B86AFB7B9FAC9D627088 /* nanopb_util.cc */, + A8DB7628E9FC4B9701C3BC641342B4A2 /* not_in_filter.cc */, + F9C36749518F693AB3B1FF0411E07FB4 /* object_value.cc */, + 7C3F35CADFC8B90CECBA8DB80363E6CF /* online_state_tracker.cc */, + 93DE09F6B0938B9A4CF750933C71615C /* order_by.cc */, + D3E1CB7548B6FD20BC6CB59F51070513 /* ordered_code.cc */, + 94E5CAC4D604516BA11CC16B193F8C17 /* overlay.cc */, + AD46B033C0014C564E010C826B1FB7C0 /* patch_mutation.cc */, + 02592D9B0222C5EF6A2B0838BB1940DA /* path.cc */, + 05890FCFD712ECCCB0C53BB53F8F6ED6 /* precondition.cc */, + 9F8E251FFD37006AA9B04A1BDA6C6F90 /* pretty_printing.cc */, + 2FE61196D1CC69C548EEF2B0187BBCE5 /* proto_sizer.cc */, + 2CF25BB7AEFE3EE86F390512455ABCBC /* query.cc */, + C334ACB0517F9175CE5B8704B4FCDD42 /* query.nanopb.cc */, + 9E0077B879B329B8C3DFD7E9D75BD698 /* query_core.cc */, + 2BA6E35B74B157113D4445CDF9CE204D /* query_engine.cc */, + 05AAC45C541010E098920C3A7CB5B887 /* query_listener.cc */, + B0A868A091AB132A44525680EDBE57BC /* query_listener_registration.cc */, + 0A1BA2040A34A82E9DCC29026731C2F3 /* query_snapshot.cc */, + 1B0556DAB43405BD390C9C68D59C0421 /* reader.cc */, + D57E08F14DBB1077AC132D731DE4E4B4 /* reference_set.cc */, + 4E50DC3370CA901C714CD9AD0BCB9F39 /* remote_event.cc */, + 0B29BA9383B5C37A5AF9197862D8ECE2 /* remote_objc_bridge.cc */, + 2032024ECD488D25330C9045E0447A69 /* remote_store.cc */, + 98D9E719BDAD0DECE222BCEF1C0DCC6F /* resource.nanopb.cc */, + 02A3A96FAE5EA108C16EEFAE846F1A87 /* resource_path.cc */, + 3504954C67B4585D55B86266E8A2FC9C /* schedule.cc */, + 1EC351A0B08F944AEFCEC58A0179B133 /* secure_random_arc4random.cc */, + 8DD1A4CF4842DE1E3C687CFD315D0FF4 /* serializer.cc */, + 01DD2AF3DB65653F1F8710B7A28935CF /* server_timestamp_util.cc */, + BC1C86E9F7028D2EFBF4F0C1E9D2989B /* set_mutation.cc */, + 7BF463CF92DAB5894702B771496620A0 /* settings.cc */, + 6CAE78E40B38E0B7B0B1E8AE189010E1 /* snapshot_metadata.cc */, + 64F39B0407B2831890DB5C751A5AE725 /* snapshot_version.cc */, + 200AE8FE893B253B47778CB2E68F6623 /* snapshots_in_sync_listener_registration.cc */, + 918C48731EB591DA388642BA0A3980D1 /* sorted_container.cc */, + 10E7846E306D2A82EB57ADE332A92B7B /* status.cc */, + 28766E9E6A0C97CEAFCE446EA07B51BD /* status.nanopb.cc */, + FBA774A0D4CDBD75468A90BD3E1EF74D /* status_apple.mm */, + 017FC1E696F93A970FA94F93FC614007 /* status_errno.cc */, + FBE6C7A46AD71A90CD3BE37547709E8B /* status_win.cc */, + BB4D81B891FA440C6DC43EC9871E96DA /* statusor.cc */, + 93C09273543042C1B7ED9B8A0F876EED /* stream.cc */, + 85354C505F236508E27DE9AF8BCEA562 /* strerror.cc */, + F1630001339C3BF10141131BF51338BC /* string_apple.cc */, + 95C3E984D5E3464821AA3048360218E0 /* string_format.cc */, + 71C059396D79BE130E0CBFF2831DCCE3 /* string_util.cc */, + F18E3D047CE6EEB7630C2A5F5A938499 /* string_win.cc */, + 4BAC2D3DDCE5899C9DF403F682E26A2E /* struct.nanopb.cc */, + 03B6F105945501615F43F468340BFC9B /* sync_engine.cc */, + E68289EAB357D9EAB2B84D38798EE336 /* target.cc */, + 0D642A4424EE091D2DD1246FEE90D046 /* target.nanopb.cc */, + 62FED1FA33BAA11E297B4EAC8B35BC24 /* target_data.cc */, + 04D435635C67762543409BFA5157E160 /* target_id_generator.cc */, + E7C31F00E4B79FE409394375C5895160 /* target_index_matcher.cc */, + 5B15B481A7A2E3372BD8319C41CF56AC /* task.cc */, + 6C47AF9D3479E57EC3B0BC3C0FDC7AEB /* timestamp.cc */, + CE1C349D748807CD073DDF23BDDD49DB /* timestamp.nanopb.cc */, + EE758278EBD30183DD68E659E6114CC9 /* timestamp_internal.cc */, + 2EAF91ACDB9EBEF6759C545D91491A17 /* transaction.cc */, + CDA2B5FA75E56C2F1CA13969B50F9D26 /* transaction_runner.cc */, + 45E226A701CFD332B377613DC7AD4292 /* transform_operation.cc */, + C209D0BA4978D3971C2E170713EF48A0 /* user.cc */, + 407B5EC18580E2911C8F401BF6A659C2 /* user_data.cc */, + 4A67B7B1F9521FDDC0E7068069583F25 /* value_util.cc */, + BCC0218C62157626D35EBD1545C77795 /* verify_mutation.cc */, + DAEB608CBE2323707CB13BCA93CFC92D /* view.cc */, + 2ABE74CF13BDE7352E40A1EF617CF20F /* view_snapshot.cc */, + 12DF719AFB5C67913CD5F8E568B47A7C /* watch_change.cc */, + D702069D39967B63E62E5871DD056E12 /* watch_stream.cc */, + A082ACD06AC47E556E2D37AC5E0BE668 /* wrappers.nanopb.cc */, + BEA8D6B766B51703EFDAD7D88F25209B /* write.nanopb.cc */, + 89109053B63576EB455C78AC0D0D9B09 /* write_batch.cc */, + 496AECC9F5B26A3BF8EBABCCE9996FA1 /* write_stream.cc */, + 295F48495C088F55FD6B2E874C3DAA14 /* writer.cc */, + ABF6D7DE87EC907FA6071A61162F5417 /* Support Files */, ); - name = raw_hash_map; + name = FirebaseFirestore; + path = FirebaseFirestore; sourceTree = ""; }; - 058110BE216F7EC7AD9E690F60CDF4F0 /* FirebaseCoreInternal */ = { + 03AD1A8ECE75F35ACDDAE6CB1E5B1675 /* distribution_caller */ = { isa = PBXGroup; children = ( - 357D8DA16FD8A238CA43A10F5357676B /* _ObjC_HeartbeatController.swift */, - 2847383C53A3F02907B58EBA12C564E6 /* _ObjC_HeartbeatsPayload.swift */, - 3B07CDF24AFD76CBF7FE99759886C34C /* Heartbeat.swift */, - 882449BEAD5E24C274937CD60DC230DA /* HeartbeatController.swift */, - 39285212A4A8CF35EA699896DF026AEE /* HeartbeatsBundle.swift */, - 9DA0628D3DC2B1B1EC1E2B622F1B0B97 /* HeartbeatsPayload.swift */, - E8F2E3E057E99001FA8B4A53B7DB4B63 /* HeartbeatStorage.swift */, - 526F3F794218C208C7F18690F8E54E02 /* RingBuffer.swift */, - 40C2FD00BB842A41577CAF6F3813640B /* Storage.swift */, - 7BB9D6AA420B85C89C745776993E58CF /* StorageFactory.swift */, - 6040DB7AF6F89D51334BFA729DC30EDF /* WeakContainer.swift */, - E1C2EF0F4884F498469FEFC14E7DB9A0 /* Support Files */, + DCA9C33BE6453F6488929BDDF12BB588 /* distribution_caller.h */, ); - path = FirebaseCoreInternal; + name = distribution_caller; sourceTree = ""; }; - 05D70BD260BB9814F2DD93FF36A005CA /* internal */ = { + 0666B6B15BF4E9A1DB2191C5A7DBD67F /* base_internal */ = { isa = PBXGroup; children = ( - 6E4CF78C1DD8FA8D4902988E8757EDA3 /* distribution_caller */, - 86FE431394448916008B3F8B67DCA1B8 /* fast_uniform_bits */, - F272C5167FF1B9BCB3B7D6426EFC2110 /* fastmath */, - B7B0C35241CB52932301D87A6B282CC5 /* generate_real */, - B0DEEDD304F744FCF84028996C75D488 /* iostream_state_saver */, - 021C99A7DA016E83911381737DC56CDB /* nonsecure_base */, - 08E464539D98C39D81BA879A9B423300 /* pcg_engine */, - 71FA861EA18C2E949D8944D2525C9D34 /* platform */, - 49692F3658722BB64B875E7875AE0A8D /* pool_urbg */, - 23CDBFC4C4AFC9EE58C84D0C6A2E4F2F /* randen */, - E7D64EF2A5FD892CA8C1D60BB19292BA /* randen_engine */, - 551E11E787AB0C9D3BE3F696ADFD7B94 /* randen_hwaes */, - 36A024BF53F07E8167055C2CA2B5F9F4 /* randen_hwaes_impl */, - 49C46C5A5480CC4BDAAE5E36264670EB /* randen_slow */, - FF0979FDA6B5E71780AD2F1AB771DFAA /* salted_seed_seq */, - 7117076E40C079F7DBE18A54EEBF17F1 /* seed_material */, - 4B4BDF3B5E82F82E427184C90548D600 /* traits */, - B26301A0ED654076A3CBDDB34E4AE370 /* uniform_helper */, - FA4941447F02B3CF4ED30CF8F18D71EC /* wide_multiply */, + 7348FD04A460077BA76DDABEEB8593B6 /* hide_ptr.h */, + 0DF5884D27AC29DA27D743A63C7245D1 /* identity.h */, + EAFDD13172B698703715CDC558AD8E05 /* inline_variable.h */, + F3446DEC6109C3FE2B6943960B0EFD67 /* invoke.h */, + BD56056812D152C3191F327C00983F29 /* scheduling_mode.h */, ); - name = internal; + name = base_internal; sourceTree = ""; }; - 08E464539D98C39D81BA879A9B423300 /* pcg_engine */ = { + 06EE7202247C9E4D455CBB34BA53F75D /* time */ = { isa = PBXGroup; children = ( - 34CC0BD5618599DE64D5433E71949B4D /* pcg_engine.h */, + 63501B7EC1DFBF1E5015A34011CCE92B /* civil_time.cc */, + 89FDA2BE5974964F1F0F157C66D1EB47 /* civil_time.h */, + 5EBE6FA3968CFC72C496AB4F41739B0F /* clock.cc */, + CBA7BFB1BFB0F6887BE57A30D1EF55D2 /* clock.h */, + 7B03A0BF04F84D51E1CC7FDB43D3169A /* duration.cc */, + 5EC033349635A88BA9D841C1F5DEE69B /* format.cc */, + 3C1F147E0487A0FCCAD1986DA59699C9 /* get_current_time_chrono.inc */, + 2B137E4DBF66DE6FF1F325B542871865 /* get_current_time_posix.inc */, + 4A4C28C5DE55D4E6BDDED6B0F165DEE9 /* time.cc */, + E3BA8D00021AA1CCC4F50C99457D31F7 /* time.h */, ); - name = pcg_engine; + name = time; sourceTree = ""; }; - 097FCE724C24321BBF2C60C883A2E544 /* cord */ = { + 099E493802E17BBEC467D05B5BA23B71 /* strerror */ = { isa = PBXGroup; children = ( - 3C29945C319D2BB6C311C66D89A40D88 /* cord.cc */, - F715D3FA7D1AA29064C66D1B95A09324 /* cord.h */, + 2D16F00E439E66A023D5744AA2C89547 /* strerror.cc */, + 1AD079B9A6103ACA3EB4CF51BFE0DBC7 /* strerror.h */, ); - name = cord; + name = strerror; sourceTree = ""; }; - 0BD89095A84A133E22CADAC92A398FD4 /* Support Files */ = { + 0C2DF96B6A951EC18EFE24BABE382E9A /* Environment */ = { isa = PBXGroup; children = ( - 98FB3485C23B4EFE99112C39254C58CD /* GoogleUtilities.modulemap */, - CC8F9E037B1CCC32C489B94082E3E01D /* GoogleUtilities-dummy.m */, - 293EFA39415DA874CC9055DB7E3E2EE9 /* GoogleUtilities-Info.plist */, - B38124AE2984531B5838ECBE17A4004C /* GoogleUtilities-umbrella.h */, - E0E5618767EEE83B43C7EA69399AEFC7 /* GoogleUtilities.debug.xcconfig */, - BA458B7D6BE7998BA4A6D5FD11FFBC2B /* GoogleUtilities.release.xcconfig */, + DCDC4DC3585E687AE062AE199FD8F455 /* GULAppEnvironmentUtil.h */, + 5A9DA72FE98F8B7F23A8C8607D394D26 /* GULAppEnvironmentUtil.m */, + 558CC5751FC1C3DD4766BE6E23031963 /* GULHeartbeatDateStorable.h */, + 59854A68E95665241C4163B3F0631BCF /* GULHeartbeatDateStorage.h */, + 911D7E4F72817D38E2A8C1F6BBD4E7B4 /* GULHeartbeatDateStorage.m */, + 6ECCD0085973107F34EB0A7E5FFFA34C /* GULHeartbeatDateStorageUserDefaults.h */, + 11AA13F1B294918C6B0559A6AEAA4072 /* GULHeartbeatDateStorageUserDefaults.m */, + 73DC7A84F0FF26AA1589B20EA5404B3B /* GULKeychainStorage.h */, + DCC6939CE4AA8BE43C89A7845A85C517 /* GULKeychainStorage.m */, + 1D71042B9FED0E924E032FC2CBD73AC5 /* GULKeychainUtils.h */, + 1BB67BB72FC0674B036B79227EC5F482 /* GULKeychainUtils.m */, + 8B8D1A9C48FD5C8730BE316F8D011EFC /* GULSecureCoding.h */, + 3B4DBCB3412749625EEC3A30195E590A /* GULSecureCoding.m */, + 54F7307B515B07F439BBBD07E6EFC508 /* GULURLSessionDataResponse.h */, + 80E8D12DE255625ACD6D0B7A4F8CEE79 /* GULURLSessionDataResponse.m */, + 9E39A632940037D7148A63ECFEBC7A2C /* NSURLSession+GULPromises.h */, + 050C5D6CE7CDB637D0CDECF2049FB34A /* NSURLSession+GULPromises.m */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; + name = Environment; sourceTree = ""; }; - 0C2AEC5029494B60AD97C4AEF4077139 /* Support Files */ = { + 0C5C39B6E201A8391009E72357A4C2E4 /* random */ = { isa = PBXGroup; children = ( - 53C9801B2F8B2CD50E21AE541468BA59 /* gRPC-C++.modulemap */, - 1E4E73ACFC00C2148A3968C43975F0CD /* gRPC-C++-dummy.m */, - 9BACB101171EAACC85C241DDC813ED9F /* gRPC-C++-Info.plist */, - DCE58A3EEAD1EA60AFF20BB6CBB5AD09 /* gRPC-C++-prefix.pch */, - 3C788C6B17F482BFD35D92A8C1C83338 /* gRPC-C++-umbrella.h */, - 3D53A297877CDC46173C5A601C6DD358 /* gRPC-C++.debug.xcconfig */, - 4DD909F395FB1CB615171423502F907B /* gRPC-C++.release.xcconfig */, - 9F685B60BDAE2BD5F19836424C408CD4 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */, + 18C261E106FE06AA9A81AB9BA206F0BE /* distributions */, + F342AFD5CF1ECBE0AB6988513B72DCC2 /* internal */, + 91D0E323035FD021A6FB18BE47B70723 /* random */, + 31AB8044C51B32AD1A94919BD409AB94 /* seed_gen_exception */, + 16107829A89C8AA8F4C16E54DEB8AB9C /* seed_sequences */, ); - name = "Support Files"; - path = "../Target Support Files/gRPC-C++"; + name = random; sourceTree = ""; }; - 0E930508C41CE18EAABA004EE436B7C4 /* atomic_hook */ = { + 0E519F919982C8F2E004D3A741D3BE0C /* Products */ = { isa = PBXGroup; children = ( - 0944E9991EEBB1536BFF771198D50168 /* atomic_hook.h */, + BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */, + 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */, + CE8765B3053874E73AFDC78B5D6B4396 /* CLTypingLabel */, + 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */, + 8CC9178C366942FD6FF6A115604EAD58 /* FirebaseCoreDiagnostics */, + 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */, + 92000153CD73F7FC2DBAB4AB708269F3 /* FirebaseFirestore */, + 856B5CD56F194FAD26EA91620B66D614 /* GoogleDataTransport */, + B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */, + 1911113E0FBF13CFF9132E5FF7685228 /* gRPC-C++ */, + 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */, + B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */, + C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */, + A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */, + 0A9F46A999C47653013D3AD854352507 /* leveldb-library */, + 6BC54C3D03DEBF9C3A40965E69CAE039 /* Libuv-gRPC */, + 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, + 61E75DC80543DF7605A7EEFE89CE66DF /* Pods-Flash Chat iOS13 */, + 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */, ); - name = atomic_hook; + name = Products; sourceTree = ""; }; - 101134F2D47CE4E3418D4CC608AA0014 /* GoogleDataTransport */ = { + 117D9F357F693233A6E2CC1C1AE9EA56 /* randen_engine */ = { isa = PBXGroup; children = ( - FDC85BEF7CA0C253027CAB59CCE39D5C /* cct.nanopb.c */, - A15DF5B35AFB3F9630D58CB4EA2893AB /* cct.nanopb.h */, - FD6316EF1919C08B570B0D90E1127139 /* GDTCCTCompressionHelper.h */, - 64522C343CB6D8CC239271338E8757B3 /* GDTCCTCompressionHelper.m */, - BFB064FE18187EB3C731BEF2215C2048 /* GDTCCTNanopbHelpers.h */, - 71BCA30FABEA5E587D2FABCE7C423BAD /* GDTCCTNanopbHelpers.m */, - 7B53B3009CC49BDB2753BB8E93BECF53 /* GDTCCTUploader.h */, - D9510ADE57176A17E624D0973FBFD810 /* GDTCCTUploader.m */, - 22A113D06AA76DBF4562F41B3781E9C2 /* GDTCCTUploadOperation.h */, - 158272B4DFAE0E8688667BC5564BD303 /* GDTCCTUploadOperation.m */, - AC5DFED1F01FDCD77D59B03B4E2B3AB5 /* GDTCORAssert.h */, - BD9872F7FFC3C67688F09B39A94026EE /* GDTCORAssert.m */, - 10214F472CD8AC6AEF85EFE63A53ADAA /* GDTCORClock.h */, - BCD6A6F72A851683BA2728B540EAFC96 /* GDTCORClock.m */, - 5822CFBA3FA27C58E263CB725A6FDC1E /* GDTCORConsoleLogger.h */, - D73EDA482871B4A469E78259B2138A8D /* GDTCORConsoleLogger.m */, - 8768919247D8ABCB2FEF928EFC96F826 /* GDTCORDirectorySizeTracker.h */, - 0E4A86F5754EB2CF5721F8EE31369243 /* GDTCORDirectorySizeTracker.m */, - 8E735432382820CF72572A48951A0C40 /* GDTCOREndpoints.h */, - CFFB70412FE861E520AFACE9517AF9DE /* GDTCOREndpoints.m */, - 1F0F1ED998B308C7D5AF20A3BA40232E /* GDTCOREndpoints_Private.h */, - 485A32429AF2B8C89A550B4AAE685E71 /* GDTCOREvent.h */, - 02308FC28DF717728421322BBB9E69D7 /* GDTCOREvent.m */, - E4EF9A96A73109D86F43AC6D681D8A62 /* GDTCOREvent+GDTCCTSupport.h */, - 4C47BF3E59C60249A248FE3D0EE2AF50 /* GDTCOREvent+GDTCCTSupport.m */, - 9835A1F845D7E36E879422D7FAA7CCC3 /* GDTCOREvent_Private.h */, - C8B8E272838902ADC69770B38F458226 /* GDTCOREventDataObject.h */, - CAAAC1CE10834B003C03FB067F27CACC /* GDTCOREventTransformer.h */, - 4811407D5488DD7D66A5363A1508DA3A /* GDTCORFlatFileStorage.h */, - E120DE33311DF0EE2E15E78A6BDD749C /* GDTCORFlatFileStorage.m */, - 94C5F1C21EE4F9D8ABD9A08D695571AB /* GDTCORFlatFileStorage+Promises.h */, - E303A4B867C0A073E43D2705A20FDD53 /* GDTCORFlatFileStorage+Promises.m */, - B78AFC5C7B27A52401A443D615B2D7BC /* GDTCORLifecycle.h */, - A266F66161BD06B1A0009D73C4CB9315 /* GDTCORLifecycle.m */, - 31B7DB7266DFE8353372E95262AE99CF /* GDTCORPlatform.h */, - 60BB127BE875449F53FF031679E0AD3E /* GDTCORPlatform.m */, - 9B3704F22BF62630024FD265BDE8BC9F /* GDTCORReachability.h */, - B64779E85C308D6FCBE9078BF79EB01D /* GDTCORReachability.m */, - 5892480F0D782668E0F1E57DB4B5516B /* GDTCORReachability_Private.h */, - 2BD137A8AC8A1CB486DC69A50603A5EB /* GDTCORRegistrar.h */, - 3CA55C97A9F2D185301AC5EAECCC36E1 /* GDTCORRegistrar.m */, - 6B7008B54F0DA9A4E3C3D37A9789B93F /* GDTCORRegistrar_Private.h */, - 5763BCC22760EB5D5B366C4D7D794273 /* GDTCORStorageEventSelector.h */, - FE88D7FE642F4D3126B18590216A958F /* GDTCORStorageEventSelector.m */, - 3667DEE2D4A0B610F1194FB28CB05B61 /* GDTCORStorageProtocol.h */, - 078EBFF284ED55CA70999B58346EE0E4 /* GDTCORTargets.h */, - 284DA824411F4BCFABD60A0C33573BFF /* GDTCORTransformer.h */, - 47E93296EC1FD5F93DED76D85AFA1881 /* GDTCORTransformer.m */, - C8F7FCD73D7043163D3436BE5E6A9B86 /* GDTCORTransformer_Private.h */, - 37A58A77CC5470E569424CC3B67BD68A /* GDTCORTransport.h */, - 086A00C6B82047D630270FA8F2293E5E /* GDTCORTransport.m */, - F5A5079FA7023F3172142202B0C5412E /* GDTCORTransport_Private.h */, - A48341CBEE573F9AE064E0CC037833B8 /* GDTCORUploadBatch.h */, - DD98A72A3325D1FA05221010208F85D2 /* GDTCORUploadBatch.m */, - FD8E5782C1B2822D458B8F72E0AA219D /* GDTCORUploadCoordinator.h */, - 736A67595CF6FB95B409D4FC91B5E30B /* GDTCORUploadCoordinator.m */, - A4F5FD7486731E0F60433F6C2C15AA07 /* GDTCORUploader.h */, - 19CCF5110D48217F6AC727BE7DF28C9F /* GoogleDataTransport.h */, - E6B09AA943B7E29A4CFB589D15B6CE4A /* Support Files */, + 8B5CA7F4B83038061D4EE6BEEC960BDC /* randen_engine.h */, ); - path = GoogleDataTransport; + name = randen_engine; sourceTree = ""; }; - 10279BFD1A83111BFFBC0E2245D7836A /* spinlock_wait */ = { + 12B272529ABD8FCA24F2B3CBBF1B779A /* bits */ = { isa = PBXGroup; children = ( - 1245EA7C4914BC48F3409224DF7FF30F /* spinlock_akaros.inc */, - 5DF7949BB7626FE5F124F8620005582B /* spinlock_linux.inc */, - 3CF39C684DB827D8F5843149231EDF5F /* spinlock_posix.inc */, - F233A040D5335CB26AC78328CCCFCC1E /* spinlock_wait.cc */, - 398A37D7EE85D3506F8C02E6A7795390 /* spinlock_wait.h */, - 9616CD6E320D3063B973DFE071020991 /* spinlock_win32.inc */, + D92C37A8968CA8FE58EADC429BDE7E49 /* bits.h */, + 34081ECC138CFD39F6E0CE0FCFFD1EEF /* bits.h */, ); - name = spinlock_wait; + name = bits; sourceTree = ""; }; - 11CD517BFEEAE4A2BE859987084C7EEA /* hashtable_debug_hooks */ = { + 136643E5B9B32D9E2276E44A42C0BD55 /* Logger */ = { isa = PBXGroup; children = ( - C38798F9AF84AE7241A2F6AC2632E204 /* hashtable_debug_hooks.h */, + BB01BE7A6353C26BB4B2A77292C93EE9 /* GULLogger.h */, + B7BB25739AF9E433BE8ADE063642EA18 /* GULLogger.m */, + 6062DBB6B649BF59E421DE17865EBB92 /* GULLoggerLevel.h */, ); - name = hashtable_debug_hooks; + name = Logger; sourceTree = ""; }; - 12BACB9C37B94401CA5EFCF6AE2606D6 /* demangle_internal */ = { + 1443E95429ED71CE3C4011C732BD39CA /* cord_internal */ = { isa = PBXGroup; children = ( - 58C4316390D07AD0C9474A71B0DE7AEA /* demangle.cc */, - 7EDCBBB8E734CC48BD9A3F3398235842 /* demangle.h */, + 3987E0D504411F0B2C4E16E143C5FE53 /* cord_internal.cc */, + 133C6133923FD69428B12B73DD9D55C9 /* cord_internal.h */, + 3802DE7DC9ED21508FB4D808334004E0 /* cord_rep_btree.cc */, + 58B5BB47577401F706299ECA6DB4799E /* cord_rep_btree.h */, + DF1C2EBD0C8D8241C1F95AFD4A886F55 /* cord_rep_btree_navigator.cc */, + 1692AF6574C7F2637F422BC2F560CF77 /* cord_rep_btree_navigator.h */, + 9C7366ED0E8F6BC89A59225C4DCD483B /* cord_rep_btree_reader.cc */, + F22ADBD63B4A43C576A2F7CCD1012606 /* cord_rep_btree_reader.h */, + 5AD8887BC9DCCBEBF15C76ACE424BD03 /* cord_rep_consume.cc */, + 9AB804895B5DF75977FAA6CA854BB594 /* cord_rep_consume.h */, + 04E73DA9DFB71052E0421D6FB6F61687 /* cord_rep_flat.h */, + 536A443C7B168F5FE23AC3F89D22B1D3 /* cord_rep_ring.cc */, + CC858E829E3E2EC61D5D1C5D97167934 /* cord_rep_ring.h */, + D2019AC0F0D0B629F65B746F70FB24B5 /* cord_rep_ring_reader.h */, ); - name = demangle_internal; + name = cord_internal; sourceTree = ""; }; - 1473BFC6F208ABCBC71F81CF6134001B /* Support Files */ = { + 153D78EB7C9675C7A3A3587AC52332F1 /* function_ref */ = { isa = PBXGroup; children = ( - 7F50FCE2418EB5D7E1740633F64A7FB4 /* FirebaseCoreDiagnostics.modulemap */, - 73E593D3FCFCEE0F929E4AF2A12D2DD9 /* FirebaseCoreDiagnostics-dummy.m */, - 1A2A76BF99EF52992D62D0379718EEBB /* FirebaseCoreDiagnostics-Info.plist */, - 08DDE828A858C6E4F07FFE0412B333FC /* FirebaseCoreDiagnostics-umbrella.h */, - F39007E062F01D6D490E9282FB37ADBF /* FirebaseCoreDiagnostics.debug.xcconfig */, - 6D92E2648A3FA1689B966AACBF6ABC80 /* FirebaseCoreDiagnostics.release.xcconfig */, + D50DC06CDFCDEB0D1D0762645FD18DE4 /* function_ref.h */, + 1FAB9226871DFD8EED6D114B30C2BB97 /* function_ref.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCoreDiagnostics"; + name = function_ref; sourceTree = ""; }; - 16A2B3F5B6732C6FAA43D70E681C96D5 /* algorithm */ = { + 15E24A6EBFB9C35ABCF4DBCE655401CC /* str_format_internal */ = { isa = PBXGroup; children = ( - 027585817CA4B742EB65A933E9F49051 /* algorithm.h */, + 8993AFD5F19A499A909D9B16E6EE5E88 /* arg.cc */, + B2A4806B0988C8B8EADAA9BAADDAD30F /* arg.h */, + B281AB424F20C96F1C25A3D86CED11F4 /* bind.cc */, + A02B51B1F2BBC58E5835399A4ACE0167 /* bind.h */, + 14466559014F5CA298ADCB555E679C24 /* checker.h */, + F37BF284ED08D201B762CD82A45E8E27 /* extension.cc */, + 5E9472A8FA0A0B3C2A107417B9589FFF /* extension.h */, + 15BEF6F33285905E8B6B7FAAC027D0DE /* float_conversion.cc */, + 2FAA3D5D002C374322680FCC7D54B64B /* float_conversion.h */, + FB86E0114973287E1713211927B23754 /* output.cc */, + 897D44C94A75ADF2B2A6476EF9035A40 /* output.h */, + 9BAE9EA1DFEFA8BD7E90C8BC952D77B2 /* parser.cc */, + 77C64C6002643A0A3C3B48D77789BD83 /* parser.h */, ); - name = algorithm; + name = str_format_internal; sourceTree = ""; }; - 17A07BC5CC31DC17A3665BC0D019B6D3 /* cordz_info */ = { + 16107829A89C8AA8F4C16E54DEB8AB9C /* seed_sequences */ = { isa = PBXGroup; children = ( - 2AF9EE79843E299C5CA738D793A86666 /* cordz_info.cc */, - D67C77147745C4A24D1AF5072FEDA0CC /* cordz_info.h */, + AFE910F44A1BB907BE01EAC14FCDC0F2 /* seed_sequences.cc */, + A6B9672067D3C678E9811DAA28EACAF3 /* seed_sequences.h */, ); - name = cordz_info; + name = seed_sequences; sourceTree = ""; }; - 1AB15B400CAD04AE2154B0DDC2897C21 /* nanopb */ = { + 18C261E106FE06AA9A81AB9BA206F0BE /* distributions */ = { isa = PBXGroup; children = ( - 64641CB105FCA242E88E9472F5C43BE0 /* pb.h */, - 796E3F4399D74C1F67462E63B58D3AF2 /* pb_common.c */, - 7D2CCC76EC22DFFA7A0E43DF3A79F512 /* pb_common.h */, - AD2745458FBCC3CEF88D590EEFD15E78 /* pb_decode.c */, - 537783505D0EDCAD67C308673B6B2BD3 /* pb_decode.h */, - 3ADDAF8AD6A5384E779E32B918916FA1 /* pb_encode.c */, - F61E8E74301241F7AF70B31048B66F46 /* pb_encode.h */, - 56E5B42D19EA27DA8B4603BDCB74AF4C /* decode */, - B96E10D42A7CD6B50B51BF953E90F160 /* encode */, - 2F510A5043A190E6369A89259DEA8142 /* Support Files */, + 9CD0ECFC306E9D9F3D591CC23C302745 /* bernoulli_distribution.h */, + AE28EEEF36C142997E3A9E8D45C286A1 /* beta_distribution.h */, + 66B0AE77E58CB00FB7A01E10FB25A7A7 /* discrete_distribution.cc */, + 31F4323F6371A2D3B91916934F8DE5C5 /* discrete_distribution.h */, + 92B62D4F1182787DF22DB8C2713683F7 /* distributions.h */, + 236D2DCCD30F4B4A7BC4444B0857ABD9 /* exponential_distribution.h */, + B9C7F10C9178AB9E23A6D05B5A9499BC /* gaussian_distribution.cc */, + 5ACBC6730B7C5A478FFBF73FEB242400 /* gaussian_distribution.h */, + 2659DE91DA348E79C2761757C6B8F7BD /* log_uniform_int_distribution.h */, + BC72EECEE7E3BB5401671DA6A316914E /* poisson_distribution.h */, + 2E03891E52EE8CCA94BC6FB82313A900 /* uniform_int_distribution.h */, + BC93175DD24DC4CB4EA66B5EEC92AC8C /* uniform_real_distribution.h */, + CBA75ACEBBA1278606683597FC7A1CF7 /* zipf_distribution.h */, ); - path = nanopb; + name = distributions; sourceTree = ""; }; - 1AD4E62306B70EC255729A9F4F400F8E /* cctz */ = { + 1DE00A4BBCF83685F4923551EFB6FCE4 /* container */ = { isa = PBXGroup; children = ( - F643B8ECEF4B91783884AF2C4A2FDEFF /* civil_time */, - D677001B4CDC3A1CAB6FD754E36D89FB /* time_zone */, + E23AF20608191CF22DF8EA06DE092BE6 /* common */, + D5607CE0E67DC55263563FE39F9E5299 /* compressed_tuple */, + E9D482FD13200E6DA792F523C879188D /* container_memory */, + 99386807118BCEBCCB9948378759C59C /* fixed_array */, + E48CC8FBBCD65379C5F51B2F3C58A171 /* flat_hash_map */, + EEB47C5CBA627BADA6A8409329224BCB /* hash_function_defaults */, + B52023D0C1D5E461DB7D2993110FC120 /* hash_policy_traits */, + 23C3928ACFC0FEC136B7382F681FF778 /* hashtable_debug_hooks */, + 55B9D491AB8413F076177163203CA9C9 /* hashtablez_sampler */, + 734F711FDF3CC81F36F25F3694631056 /* have_sse */, + E6EFE63380E52C7DADCCA6560E5065C5 /* inlined_vector */, + 8C4B25B69324889F7ADD9AD3524B4068 /* inlined_vector_internal */, + 25C0A0A67D0A85E6DD4AA2BD1B912A00 /* layout */, + 37A851251F242ED93A6A46D345C59F49 /* raw_hash_map */, + 539C75B77C80CA6DF80C79184D8EEA5B /* raw_hash_set */, ); - name = cctz; + name = container; sourceTree = ""; }; - 1D1B442D74E2FBFE446C073E963BCCF7 /* pretty_function */ = { + 1F2E0D5CCA221DD5A002C05D6340A855 /* Support Files */ = { isa = PBXGroup; children = ( - CCA0559AD89F4C152AA990E7F686E22B /* pretty_function.h */, + 1712EC8FC1A70831A3DA4C080402A5D2 /* leveldb-library.modulemap */, + 917EB8CBA6B89769361EC6E4B2C6DCEE /* leveldb-library-dummy.m */, + 7B0C899860CE4DA1A92A592F4D7F352E /* leveldb-library-Info.plist */, + 32B217E6757A64D6899564D0CDC94A55 /* leveldb-library-prefix.pch */, + D8A1131D1E00B9B1D5AF88FC6483E418 /* leveldb-library-umbrella.h */, + 60318D1DB6354FDA1E9418E5B58D2625 /* leveldb-library.debug.xcconfig */, + 5979D7585D4D45E6DE0093D79D0B71B6 /* leveldb-library.release.xcconfig */, ); - name = pretty_function; + name = "Support Files"; + path = "../Target Support Files/leveldb-library"; sourceTree = ""; }; - 1E1C136AD4D5DE511DDFAB9E00EEA2D1 /* bad_optional_access */ = { + 207F177004490657FA75CF5ACD17863F /* Support Files */ = { isa = PBXGroup; children = ( - 4FC7F46A765F55FCDB801FDDF5E2D44B /* bad_optional_access.cc */, - 8260A36825F444D43C8FA8ED5D178CB6 /* bad_optional_access.h */, + F4DD5543B93C2556EEB9FBDC6CDC3988 /* Libuv-gRPC.modulemap */, + AB01C283091E3BE91E4FA3945B7130E8 /* Libuv-gRPC-dummy.m */, + AEF9A896B99783502E9917CD6369DFDE /* Libuv-gRPC-Info.plist */, + 45BF8CD2A74A9687016400A738784889 /* Libuv-gRPC-prefix.pch */, + EC25A45D58DB99FCFD9AB5CCE7C1BC72 /* Libuv-gRPC-umbrella.h */, + 5793A690D0457D2634188B00D25F12D8 /* Libuv-gRPC.debug.xcconfig */, + 685C8EA1CC96DB474A21A7DE0E5C2A8E /* Libuv-gRPC.release.xcconfig */, ); - name = bad_optional_access; + name = "Support Files"; + path = "../Target Support Files/Libuv-gRPC"; sourceTree = ""; }; - 1FB550DAAD4190DB18259F11B8289FFB /* base */ = { + 2218496E492AEC5302300D1D90ECEB40 /* Interface */ = { isa = PBXGroup; children = ( - E3EC7C431BEDA3CC8F8D81F339D9B5B5 /* call_once.h */, - 189058C32983FBBDF09FD677C6F662ED /* casts.h */, - 65E2CD4426BAF301B65B5FF7BDE99220 /* cycleclock.cc */, - 351F5AD28BA1065D0765745AE13DBE2F /* cycleclock.h */, - 14BB0A90551130C509C2157B8D216850 /* low_level_scheduling.h */, - 76AA200E816C2A98A8605CB6261B9CB9 /* per_thread_tls.h */, - 3150ED5C74D30FFF0FFD701F245EF0A8 /* spinlock.cc */, - 3196A6973F0A0600A4A185932D3B0832 /* spinlock.h */, - 85A9907A769CC29511FC6CEF4A8F6A69 /* sysinfo.cc */, - 31C40B607709910E6F746EEE5AF5ABDB /* sysinfo.h */, - 258B832FB63945A46BE1F8B81F6F4684 /* thread_identity.cc */, - 63E8F197A90763ADEAF913245931A07F /* thread_identity.h */, - 27594DD949E1F1AF56837B70C828F270 /* tsan_mutex_interface.h */, - 3180921B80BB71E5BD48E14F2730DC53 /* unscaledcycleclock.cc */, - 580385EA62D5F2B7AE7A7FA62157691C /* unscaledcycleclock.h */, + 309E291A30E56D8B13BBE792D7C21CF5 /* aead.h */, + 1184778F3E53194194C498FA283B029B /* aes.h */, + 963CA9F4C6207DEE906E81C2264A6399 /* arm_arch.h */, + 9A31B32D40BAB1FE1F132EB85134B31C /* asn1.h */, + D492A5B92BDDDAD7C19F8A596805D162 /* asn1_mac.h */, + 798E8C54A3924A91102AE0B6230BA4FC /* asn1t.h */, + FD2285038BC5A26D6C8AAF9717EF2160 /* base.h */, + E623072C0106D817DFD2F1ED3B03B4E2 /* base64.h */, + CD2DF681E4C4492B8243CEACF783CE92 /* bio.h */, + ECBFBB1A8C819905817A00DCAE371CC5 /* blake2.h */, + 86C812EA546B4C6707174E4706BE1103 /* blowfish.h */, + 8275596D5F2CC3EB383344D0C79FB32D /* bn.h */, + 310DAF67CBD5C72F475096BB20B3F6AA /* boringssl_prefix_symbols.h */, + 8393534CE74E8E37E8812A5C8600940C /* buf.h */, + F95F318B1943265385245D49E4B752C6 /* buffer.h */, + FBE1195BD5E812EC99D8FEEED599403C /* bytestring.h */, + 112E00FCF89E2FD26358A05AE1219F84 /* cast.h */, + ED0F27A12D8EECBA0E30D9A2244C42E1 /* chacha.h */, + EB0F032EC69A7D0081E03956C191F605 /* cipher.h */, + E0E440BBD064290A9FEC9387097BDA84 /* cmac.h */, + 5081C1D638D299A55ACF28D54851D1B7 /* conf.h */, + 16D1468D1C803576335FC81D21922C9E /* cpu.h */, + DCDD5D1A254E5BA13E241BAE74B85A7E /* crypto.h */, + BC77F18C7F68FEA5CA73A88F15CC7759 /* curve25519.h */, + 2463678D7A084E5AFC1E97F138982AC3 /* des.h */, + B6B21D042FD206E82E3A4CB98773C02D /* dh.h */, + 1676F29F6A7DD486CAF302C0EF81D31C /* digest.h */, + 77A00EFC6DE19312B21355EAAA97DDBA /* dsa.h */, + 54657854D74D490959C971D4D1FDF82B /* dtls1.h */, + 7089E82C27954B63258494BE969DAF7E /* e_os2.h */, + 7E043879D480C8F7A101ACF87C6182CB /* ec.h */, + 24EBC54060D85C73A0359E1AC1AE8BA2 /* ec_key.h */, + A9583E049EBBA340166F70F14C4A595B /* ecdh.h */, + 04DCC796577EDC8863BA594DAE877F68 /* ecdsa.h */, + A93CE75F45729286AEE8124F6D145706 /* engine.h */, + ADD62D131946951438D1455CD3D9DBBB /* err.h */, + E0BF6553E330AD80F1C6B05FB38C5870 /* evp.h */, + ECD77FA9B3989CC597C705A75CE524AC /* evp_errors.h */, + 430556F9724E0321A6D58C3B2110AAA0 /* ex_data.h */, + 58839003DEF2533060B8357A5A7020A2 /* hkdf.h */, + A37D336EF74ACFFF654DB4942C02CC4D /* hmac.h */, + B61B4D08803D7C38D7787DCF0530917C /* hpke.h */, + FD3F9000AB37386213905F547AEDF517 /* hrss.h */, + AA952FABFCF1E42F8DD8BBFE1EF37638 /* is_boringssl.h */, + DD8A84C72D151166A74D3B6A79AA8490 /* lhash.h */, + 58EC6F3EAF65D154020A0AE6DB325B19 /* md4.h */, + B56EB8828B7E6C33165D70EA2F9A9ACF /* md5.h */, + 70F975E9596667E5BD797F569EFA7501 /* mem.h */, + D0D39BF03216EF127279651A43734F1C /* nid.h */, + CB48E2033BC8D5A675C38624F637662F /* obj.h */, + BD865B04E33AF610B8B428994F01D006 /* obj_mac.h */, + C6C12E89078F7CC42BCB1BA2F984DED8 /* objects.h */, + D5121F42EDF3CB2B838C2174C5E29478 /* opensslconf.h */, + EFA15A7032FCE43008EB6A1B20991D5E /* opensslv.h */, + C50FACC187D57AED31D9E13EFD7184EC /* ossl_typ.h */, + CD38C659AC4C361C642DD18142A6EFB7 /* pem.h */, + 843DFC541C4225B1A26D34C45132D306 /* pkcs12.h */, + BF3E9010E79310DA94C901877071BF6C /* pkcs7.h */, + C34A8D32D40B10D34349B36313AB1494 /* pkcs8.h */, + E43618434864864D909C372449EC90EE /* poly1305.h */, + 415AA5B587E40F73B5F16C8C72030CA5 /* pool.h */, + BA784420DA8CAD5D19FEDE6EAAADD426 /* rand.h */, + EC8E4A862AB12839CDBBEAF02AB541E3 /* rc4.h */, + ABD1C40CE08A699EDC05BC352FED04EC /* ripemd.h */, + 5ADD19F2D8F352F26FEC966F69DF46D7 /* rsa.h */, + 377D2116DDE02A4493547BD2A68F6C03 /* safestack.h */, + 24BAC47328C1C9181CE9C233BE3B8E7B /* sha.h */, + CB4D6582FDDEEA3C33E6762AE59500D1 /* siphash.h */, + 80DFC757C71021B15B6C3C05A215D574 /* span.h */, + 4BAF3C079858BAEAE7ECAF1E9EB3BF24 /* srtp.h */, + A2A03D081AA6F1DDB577BFB8BDE069FC /* ssl.h */, + DFDCE1F0D4E68CDD61E4BDFE7B633FA2 /* ssl3.h */, + 42740DB3DA6378C65F6DDD1952C42D34 /* stack.h */, + A66ED89A12669DB8A637369C9A298A40 /* thread.h */, + 2DA242A5B85E864E8DBD2A41CEE95218 /* tls1.h */, + F807C88C8D946C4AE0858F82C1669D92 /* trust_token.h */, + 68339D626D9A1BC6D3FF6AE67E0053F5 /* type_check.h */, + 35587C08DED7EECF8F601C4185B4092C /* umbrella.h */, + D39F80575F4F98634E3ED1E6F2CCBB95 /* x509.h */, + B99BC6CB6A9B3D12AAD97F1101B6CD13 /* x509_vfy.h */, + C73A5ACA65C331B4671916330457A6C3 /* x509v3.h */, ); - name = base; + name = Interface; sourceTree = ""; }; - 211F5C5C910E761232B503199B22E909 /* FirebaseCoreDiagnostics */ = { + 23178FF6E4A791C51B7A9972842942A6 /* BoringSSL-GRPC */ = { isa = PBXGroup; children = ( - C6FA280F4CB294DDADC936C906E8E172 /* FIRCoreDiagnostics.h */, - 091FB50E071D7F52B2E598CBE4CB007C /* FIRCoreDiagnostics.m */, - 6A972C90C3984F44D9345EA92482D662 /* FIRCoreDiagnosticsData.h */, - D8D76ECB21C28DC7140E59D0E33290F9 /* FIRCoreDiagnosticsInterop.h */, - CB87F14890BC900D8882C824C4365F72 /* firebasecore.nanopb.c */, - BA742090B0070F9E5FDB352E494586E9 /* firebasecore.nanopb.h */, - 1473BFC6F208ABCBC71F81CF6134001B /* Support Files */, + 30054B96BC7113A613F7F586CC3FF513 /* Implementation */, + 2218496E492AEC5302300D1D90ECEB40 /* Interface */, + 76BAD0CC6CF2959973B9BB37C4FE66F1 /* Support Files */, ); - path = FirebaseCoreDiagnostics; + name = "BoringSSL-GRPC"; + path = "BoringSSL-GRPC"; sourceTree = ""; }; - 23CDBFC4C4AFC9EE58C84D0C6A2E4F2F /* randen */ = { + 232C2ED8FAE81FEAA0B9E6835FAD6B93 /* Support Files */ = { isa = PBXGroup; children = ( - 103D92F53A7D5B6EEFCB5EC837F89384 /* randen.cc */, - 2FA6D061555D83FF6B468E3F4FEA90C1 /* randen.h */, + 871EA48AC474A65D68F7E044E9D28885 /* FirebaseCoreInternal.modulemap */, + 15C67F9B845B390F64CD30079E052E90 /* FirebaseCoreInternal-dummy.m */, + FAFA56E29E7BD556B98A3FDD4DF32297 /* FirebaseCoreInternal-Info.plist */, + 16C3263396AB3ED576CA61AE2F106151 /* FirebaseCoreInternal-prefix.pch */, + 46122811379EE20D8EE34741D4E43438 /* FirebaseCoreInternal-umbrella.h */, + 5CFA20198B6915E2874A4A286063E4A7 /* FirebaseCoreInternal.debug.xcconfig */, + 637BA9035A6393E0C67237D99B796441 /* FirebaseCoreInternal.release.xcconfig */, ); - name = randen; + name = "Support Files"; + path = "../Target Support Files/FirebaseCoreInternal"; sourceTree = ""; }; - 27449A4B4C1942B64ECAD62E9AAA2569 /* CLTypingLabel */ = { + 23C3928ACFC0FEC136B7382F681FF778 /* hashtable_debug_hooks */ = { isa = PBXGroup; children = ( - E908D78B9685E44ABF94444391558EC8 /* CLTypingLabel.swift */, - 8FEA4EB6BF891A0CE27A39BA041A3F2D /* Support Files */, + E1E7EE1C224F0763C571AD7B9D0105D7 /* hashtable_debug_hooks.h */, ); - path = CLTypingLabel; + name = hashtable_debug_hooks; sourceTree = ""; }; - 27BB5730314294B9FCE5D0AE00AC55F6 /* memory */ = { + 23D9C81FF0F79097D6138DA9335FC05B /* cordz_statistics */ = { isa = PBXGroup; children = ( - 61F66C8E69FAB2510AE6F5AE8C15C979 /* memory */, + 49BFF34B5E2A96F249DE8E6CB07C7537 /* cordz_statistics.h */, ); - name = memory; + name = cordz_statistics; sourceTree = ""; }; - 2B4B7002B2EAEEE9244C3FF52D48A21B /* flat_hash_map */ = { + 24116792843F33FD8223687D99A5E7A2 /* Support Files */ = { isa = PBXGroup; children = ( - 1140BCB2FCA2D020C4A7274336D89450 /* flat_hash_map.h */, + 9EB35C8416A3CB0453962328FDAC632A /* abseil.modulemap */, + 7C96448A0F25D46E3935E853CE361C7A /* abseil-dummy.m */, + 684E9B608BC6831143C9BB2C5B03EF18 /* abseil-Info.plist */, + DBFBBA9D718F5B6F2F851487B9F13975 /* abseil-prefix.pch */, + 2E755A98FF924B8B99D499E5A1AA0B29 /* abseil-umbrella.h */, + 8FA103D88C45B9E753114479F83397C5 /* abseil.debug.xcconfig */, + 48BD7F9E0E0AF3CD0C92970C6287CA31 /* abseil.release.xcconfig */, ); - name = flat_hash_map; + name = "Support Files"; + path = "../Target Support Files/abseil"; sourceTree = ""; }; - 2C175533472DA6D45CB8E104BE7E3104 /* raw_logging_internal */ = { + 25057DCE5273D60E68E95D4ABC28530D /* wide_multiply */ = { isa = PBXGroup; children = ( - BFC81D8FD83A9D46AE01A23BE7468447 /* raw_logging.cc */, - 8632B1A27EDFD373FF377527EE149645 /* raw_logging.h */, + 3C9A55A22AFB9E2CB998A4C43DDB82AC /* wide_multiply.h */, ); - name = raw_logging_internal; + name = wide_multiply; sourceTree = ""; }; - 2F510A5043A190E6369A89259DEA8142 /* Support Files */ = { + 25C0A0A67D0A85E6DD4AA2BD1B912A00 /* layout */ = { isa = PBXGroup; children = ( - DA70F32C24EBC6AF33B5DBC101D36ED3 /* nanopb.modulemap */, - C60F67B29A445EDFA19D3D40C7132D24 /* nanopb-dummy.m */, - B8EF9304FE223CE38E6272FBE7F08404 /* nanopb-Info.plist */, - 2BB3D20A55446593382E747352ED1281 /* nanopb-prefix.pch */, - BBD0C48143F23BAE643E60BABDBB7AD0 /* nanopb-umbrella.h */, - DCB0F88BE32897CF2CE95CC779759D65 /* nanopb.debug.xcconfig */, - 426693FD5A1BEE6E78EB7781E6425DEC /* nanopb.release.xcconfig */, + AEE546FB51AEFD1A39B580521C203882 /* layout.h */, ); - name = "Support Files"; - path = "../Target Support Files/nanopb"; + name = layout; sourceTree = ""; }; - 30CE5693FD21DEAEB4F1A10E4956D6D7 /* Support Files */ = { + 2A3D68E5C987BC6C2A02E653A5854AAF /* optional */ = { isa = PBXGroup; children = ( - 3D82748B45949714AAE3767091D38D8F /* FirebaseFirestore.modulemap */, - B88A7560A32E839E0C8EAC3A03AE4A31 /* FirebaseFirestore-dummy.m */, - 9FC91767C0F0E6E5BDF96AA21B918E32 /* FirebaseFirestore-Info.plist */, - A3B9193B02337E4C6399361E55D876F8 /* FirebaseFirestore-umbrella.h */, - AAA6C7F1B6847261A14DDB3223F6A03E /* FirebaseFirestore.debug.xcconfig */, - B9BEA3EEB33090BAF243B18647356F3C /* FirebaseFirestore.release.xcconfig */, + 4DBED22429E28A5FBF841B6DCDB99499 /* optional.h */, + 345652508477E4EA8900CC27A52000C9 /* optional.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseFirestore"; + name = optional; sourceTree = ""; }; - 3322635168F0511072FD7CB50370D7EA /* graphcycles_internal */ = { + 2A5A59DD6EC309FC2C9E7EBBEF1757FC /* raw_logging_internal */ = { isa = PBXGroup; children = ( - 7B4BCADE378832EA19B9002EDBA7FC4B /* graphcycles.cc */, - A80E88F283CE6125A45C3B9CB42BB3B1 /* graphcycles.h */, + F80D390D1ADBEB97889EF7CF586E87AA /* raw_logging.cc */, + 29ACAFCADF3FF66CC56A1C3D78DB8B2E /* raw_logging.h */, ); - name = graphcycles_internal; + name = raw_logging_internal; sourceTree = ""; }; - 346BE5219C9A8D60B00852703BB6E22B /* Support Files */ = { + 2D558F5C7021CA9B07287E5D0F1794AB /* randen_slow */ = { isa = PBXGroup; children = ( - 0D4CFE1B1B76A3CA107FA023E08C0AD3 /* GTMSessionFetcher.modulemap */, - C089E3B830A7283C0DB5C5098FED9B0D /* GTMSessionFetcher-dummy.m */, - 73D394A08345EED85D39C031B03B7FD8 /* GTMSessionFetcher-Info.plist */, - 6FC4651A74CD9568DB6A23FF3E2889E2 /* GTMSessionFetcher-umbrella.h */, - CD5C4BC9194C5D8456F456356066A8D0 /* GTMSessionFetcher.debug.xcconfig */, - B5D947551ABB4A328FF57D6FB5E753ED /* GTMSessionFetcher.release.xcconfig */, + 1D0639252D21CB4DD0FB35FB40F888E5 /* randen_slow.cc */, + EC4A96E752A1513781C5EF55AC17F5EB /* randen_slow.h */, ); - name = "Support Files"; - path = "../Target Support Files/GTMSessionFetcher"; + name = randen_slow; sourceTree = ""; }; - 35B8BD0EF0674B21C84DD9EEA52DA8F3 /* kernel_timeout_internal */ = { + 30054B96BC7113A613F7F586CC3FF513 /* Implementation */ = { isa = PBXGroup; children = ( - EEB1E143C62286D67ACCFD1C4AA1D928 /* kernel_timeout.h */, + C44C19BEBD57B963F794EFD472C30FE2 /* a_bitstr.c */, + D6CCDCF74C7DF5B855C7B3FDF4FC8226 /* a_bool.c */, + 32DE90642C00727EE76FECFC70EAA5B9 /* a_d2i_fp.c */, + D83AA01D8992425089A2975AEF22FB63 /* a_digest.c */, + CC4104D3ADCCF639FD7CA8C6B134DAD7 /* a_dup.c */, + 4FEF434046F2DD0A82AE0F5A4236C874 /* a_enum.c */, + BFC59C1A891AF645FBA3160A1790A709 /* a_gentm.c */, + 3DFDCF742C7FC841023DF8B1096571E4 /* a_i2d_fp.c */, + 6C88EA555BAEE7B31F9CF9B5F4AE19D4 /* a_int.c */, + 23ECD5385258CBCDF2A438D9384B2EAB /* a_mbstr.c */, + D1BA46D967EA6FD9653681650B9690A4 /* a_object.c */, + 78D23FC5F16960DA217D3361C61D3284 /* a_octet.c */, + 2FA27A60F3529632BBE0A2DE2775460C /* a_print.c */, + FC1F197E0A2414AC0A76AA070E82D015 /* a_sign.c */, + D6A392EC8A59CA278492C3D708EBA3CD /* a_strex.c */, + 78AD5E938F011794145D5ABB51847453 /* a_strnid.c */, + C7D6B96A4CFD035467EC2D215EE5EDFB /* a_time.c */, + EF10D3B4432F1DFC2894DD8FA70E44CF /* a_type.c */, + 4D69529A8B679A5A12ED00EAC6F6829B /* a_utctm.c */, + 97D88932032CFC23313016734D72F048 /* a_utf8.c */, + 2CB7889117B92468097ED8BC9EC1CAED /* a_verify.c */, + 075E6496AD3ED2FDA07353D220C39B82 /* add.c */, + FD43BC099C8B74F7A494EC90F4D1AD1D /* aead.c */, + 3376C39883C69A3443CE04AF7CB1BC34 /* aes.c */, + 376E016602CA27F849C5034F43027B41 /* aes_nohw.c */, + DD9CFB7744000462E241B2B693BAD63C /* algorithm.c */, + B9705A22F3262369BAFA33FE4F3246AE /* asn1_compat.c */, + 7648B29F89CF689336EEA8F8915BC929 /* asn1_gen.c */, + B7E02E3D5BEDD9BEB9D88BA08DA0D5DA /* asn1_lib.c */, + 5267393A51BCC18F488AD6F047B175A3 /* asn1_par.c */, + 9F4E7738BF016E01E2AB6E0604B2C98B /* asn_pack.c */, + AD7F7496A542BBA77E6FF97069DE3D89 /* base64.c */, + 5470F1C011BF310D391B463CBD8212B4 /* ber.c */, + F0812CD98DA81E46941606F756630996 /* bio.c */, + 163E3499E12FCA661CA97B25342D1CA6 /* bio_mem.c */, + 4F287543CCE1C0542023B507685EDF5C /* bio_ssl.cc */, + 220776543426E88CF12EEF9A8DE10F3A /* blake2.c */, + D456399111568A392E68B3B24DD47E8C /* blinding.c */, + B9B3A906BC4194330C9CE9EB755B604D /* bn.c */, + 8E952EF97D176F9E47990C32EA20E524 /* bn_asn1.c */, + C99C71490F8B7E3EEFD1C3B55777D97C /* buf.c */, + CA5F7D582ED0EF76BB2FAAE033805727 /* by_dir.c */, + 3B20A5A8AB31DB4C604172BD4893F321 /* by_file.c */, + 2974D433CBCCD3E08730F77A4C78A9E5 /* bytes.c */, + 8087B78ABE49CF24C022C0B5DBFD3CD9 /* cbb.c */, + 6EA2338E35C7558F6B8A6A339E6C27E4 /* cbc.c */, + E5C78DE07F73CE2DAA7449479AB08967 /* cbs.c */, + 9B54F5F3C5BA438C2813337CB6085409 /* cfb.c */, + 2D49FCA81535286187632C7AA6E4268F /* chacha.c */, + 41C8724A176B8050462592A9E1E2999B /* charmap.h */, + 163AFFD41610F56B608503DBF261541F /* check.c */, + 4238824FCC101FB9FE13D072497BFBDA /* cipher.c */, + 221875720F84DC8FDEE1BD4A6EC00D82 /* cipher_extra.c */, + BA49FE0C4CDE50779437A81F7E5E8C8C /* cmac.c */, + E68C25CF8F323DF36033D259BD951DE8 /* cmp.c */, + F01603FE248696D09F22ADADA6B61603 /* conf.c */, + D4B53D6194CA7B02AD45947E8802E00D /* conf_def.h */, + 5DD9E1B025C3C0BD8D0152D5A42E9550 /* connect.c */, + C00FD1CABAB2CB01D6FB9411D7042884 /* convert.c */, + FF136338EECB99133BC03D4EF0F6F3BB /* cpu-aarch64-fuchsia.c */, + 91D0CF40489E237EC6AD45A7491F4B28 /* cpu-aarch64-linux.c */, + 9AA1171AF0C7005C48921FCFA1BFD99A /* cpu-aarch64-win.c */, + D109C362EBB7E18238A2CAB8B62D6DE2 /* cpu-arm.c */, + 89B88E808881442BC6BBD63B8F1455E8 /* cpu-arm-linux.c */, + 6CEB837565A27E6D92E93E0D5BB3E554 /* cpu-arm-linux.h */, + 599CB6E334D556423455A3483FB57D8E /* cpu-intel.c */, + 35649C1A1F8DA4A9B385662A06861C50 /* cpu-ppc64le.c */, + 4D4F02BEA6621E833C7C42F76A720DE3 /* crypto.c */, + E5EB2F54EC53670336345A9B14498B1A /* ctr.c */, + 9BF455F08AF66120D29FE0C8763906E8 /* ctrdrbg.c */, + D25274984D91971E9FC5B8DB131120E3 /* ctx.c */, + FF3D5B7F804E79B30D146CC587764706 /* curve25519.c */, + 75C65AC14A04A1CE58A33259399FE990 /* curve25519_32.h */, + 6BAFA48F135314D429219A7B8D6BFA4E /* curve25519_64.h */, + 4D4EEF3B185A8F9AA4288068F2512432 /* curve25519_tables.h */, + 0EA362445C79AEA86F016FB5DB50A1A9 /* d1_both.cc */, + 58DA41251C315C48A47FCEF5926DFD17 /* d1_lib.cc */, + 1BEF7DBEB754B90E77033BF43382F05F /* d1_pkt.cc */, + 3730040AD7FDF9B02CDC18D3A8EEAC17 /* d1_srtp.cc */, + 17E4B98F3697B5B943A8154D389EB65B /* delocate.h */, + B44550CAFE9693A03807C3A27A84A3C7 /* derive_key.c */, + 805E5F18BBCCC676978A3CB5EE7D2C2E /* des.c */, + 3C07CB86C3152848282FA1CE23AC0DEC /* deterministic.c */, + E3CBB83B455C610C6674C0142F9BA3FB /* dh.c */, + 3069316F90BCBDE497F4832516091635 /* dh_asn1.c */, + A74844D2AFF84175C7BDDB91B5B7B0C5 /* digest.c */, + B6A1BBC8FC7B4BDF635F51ABB76587D7 /* digest_extra.c */, + 4955739B6D33BB938351246733C7BB09 /* digests.c */, + 96D5D6A6297D6FF5ED2B967F1AF0D3BA /* digestsign.c */, + 3B4D2D3501E5FD23A3F0E48EEA70969B /* div.c */, + 642B3A28175D08569E2ED3819A4E6AD4 /* div_extra.c */, + A40414EB86D6F515FABCAE2ADF80EAA0 /* dsa.c */, + BC87A54C8422336153CB1B1E8975A27C /* dsa_asn1.c */, + 3D94B8E8C0E0119FD1BC1609617F4E60 /* dtls_method.cc */, + 7FCCDFC029631CF6B738608355B72EBA /* dtls_record.cc */, + 3BC1CEAB855770C98427CF981FF0B492 /* e_aes.c */, + DB92F1816C1091E8E799442EDAA5FB5F /* e_aesccm.c */, + F937C57B6E01304BC500F48F291ECE67 /* e_aesctrhmac.c */, + 3F91D284455237A0F247BF293F11D198 /* e_aesgcmsiv.c */, + FCC1F3F2DC312DC808B208B202CBF86C /* e_chacha20poly1305.c */, + 747BAFE6BABB44DF8C5C19A342109DD3 /* e_des.c */, + B41E6933C91A20FBB8DCAB5863419E55 /* e_null.c */, + AEF48F617280A2225A91CF5C986DDD21 /* e_rc2.c */, + 677AFF55909CF1E7284D4E3F42D0FCB3 /* e_rc4.c */, + 71BCC4AE2536A59C6FD58DFEE503475A /* e_tls.c */, + B72CEFF25D1FE2A093A166B572DAC8EA /* ec.c */, + C74410554AA386F56ACE904C266EB31C /* ec_asn1.c */, + D16C16CF8D794A21D92188F4F5A15563 /* ec_derive.c */, + 76855A2E8A4B077A9A0E4091976F98F8 /* ec_key.c */, + DDACF698F62C15D302EC066C251FD3AF /* ec_montgomery.c */, + EDB7C56FE241CE837755DDBDE6596487 /* ecdh.c */, + 5007F81986657D56B490A0AE23DD69EB /* ecdh_extra.c */, + 52CDD63D0B814F0EC4F09A12663A1456 /* ecdsa.c */, + 09A3558FFB8CF545CCB09A6AE8BD0467 /* ecdsa_asn1.c */, + 92231E0D2DF3032400268E65AE5CA8F1 /* encrypted_client_hello.cc */, + 06C376465A570EE31BFA74C78F2631F3 /* engine.c */, + 1A704E907C2091CBC4CE460092EE6787 /* err.c */, + C592034D05F2A5F5E3ACF4061D69A94C /* err_data.c */, + E418A5A0C46B782A038DEB3CD39660A6 /* evp.c */, + 022D057408B4775252007A0BFF06053C /* evp_asn1.c */, + F7C575B2500F87C1C76A330E704DA8AB /* evp_ctx.c */, + 4E662F85AEE6DE5FEB013139002BE6AB /* ex_data.c */, + D727159889609B46A8D62E40EC74F7AC /* exponentiation.c */, + 80406B32B70F9D6F3E9DD1FF3A595592 /* ext_dat.h */, + 66342A8CD6E4FB55F087977258EEE204 /* extensions.cc */, + B9C157A7650300E60D7C65974EB4CCB5 /* f_int.c */, + 167FAD2AAFA32FA89D036C8304E17F90 /* f_string.c */, + 7584896C40A793F6F3AE1A581E786E97 /* fd.c */, + 06F0D59D968FE74B17C59C332385F976 /* felem.c */, + C9C6FCCA5F7B9BED686D8D5124DF6EB5 /* file.c */, + 35EA413283A213CE22D9D7571394350A /* fips.c */, + DD4267C5FC2438715DC7D20B89E53453 /* fips_shared_support.c */, + 06ADD92BEB72399B2C671C9B53526C5D /* fork_detect.c */, + 135BAC057B53B5E870C3649C9664C3EC /* fork_detect.h */, + 86C836C903714BF4F33F102987D94133 /* forkunsafe.c */, + B93B38345C542A8AF51F25E79B36C1CF /* fuchsia.c */, + 1CD6349A1823831EC106C8F9D0192E8C /* gcd.c */, + 38ECD1635081526C85D9B7F1F39E3F75 /* gcd_extra.c */, + B30A528879B61F383A42778288C76C92 /* gcm.c */, + 3BD8DE7BAD4E725344F47233AF850C32 /* gcm_nohw.c */, + AFCE63EE580380491598716844B704A0 /* generic.c */, + 9CA13D0E2C5F02B70E65D1B8D9A28B84 /* getrandom_fillin.h */, + 0D02BFBCD5222F59690D9D4DC27E5308 /* handoff.cc */, + 2034B39682533B208E6260217ECEA2D1 /* handshake.cc */, + 7CE73FCD9D3568BB47C55C93FA4114DB /* handshake_client.cc */, + 9E9153C6AD38072B143FB80FC99645EA /* handshake_server.cc */, + BB8936BC8C24A80862A42F83F9F06905 /* hash_to_curve.c */, + 0D42CF64B96672A9F47053793C26482B /* hexdump.c */, + 8BA938DD9044A6892587AFA1F7EAF756 /* hkdf.c */, + 3519D86314F640F1A4BB887F4714E004 /* hmac.c */, + B971032D8BB96D4E88DF545A80C7B059 /* hpke.c */, + A72C0A8B580630F6FA7191DA88514174 /* hrss.c */, + DEE3BC6FF54128C19BACA54536DFC880 /* i2d_pr.c */, + 142446914E7013E7EC0C220E21F38F64 /* internal.h */, + E56ABCE2943C8B93CFE60CDEAAA61DD1 /* internal.h */, + EBB0FF0D85ABECEAC50405D646598115 /* internal.h */, + DE43F0B95AC9933832AEE1106F6AA4EB /* internal.h */, + D02F71B44EE5976963C8A736FA15B876 /* internal.h */, + 5163AB855D61BB5AFD9C8C6896554FDB /* internal.h */, + 66A30A37B7383A063EB13185824188B6 /* internal.h */, + 2BF3B42A6340059E93A985D000BCD3C6 /* internal.h */, + D4A13186F15804755420D3E3AFF50C38 /* internal.h */, + 27E93FAE5E4169D84B65E57C366F3024 /* internal.h */, + C8FCD49D92D392C1395DA0596B968291 /* internal.h */, + 5B12C6C6C56F70BD556C855547CAD39F /* internal.h */, + A204A0CA3281063585747D75D3DC0052 /* internal.h */, + 0A49E815324E7A045D0A234B8AC5F6B0 /* internal.h */, + 85EDAE58A85DB0EE87E186CCCDF2E473 /* internal.h */, + AEC9B5C91BBD74CD70E57417459CCF89 /* internal.h */, + 0299B5DCAACC5C5282D69FF5DB8E1F34 /* internal.h */, + 893589D422F08B425C13D52D6EB48D51 /* internal.h */, + FAA79673E81FD7A35B4230147E9F3C9D /* internal.h */, + 7B24DF331B199DC71FEC338397503F97 /* internal.h */, + 53326FF73FF8F5F9E3C96FAE75D25FE1 /* internal.h */, + 0C7BE8002CA7F4FCAB0BBA39430E5143 /* internal.h */, + FB04A578884285731832F180BE268525 /* internal.h */, + 12B44D813521C1B3E58ABCA17B2FC763 /* internal.h */, + 956B95854D679C341FABE2A6D285D2AA /* internal.h */, + 1178BD3B13A0B523583E2A649DE2234A /* internal.h */, + D66AC3130F7636C95C6FB4010BD7F853 /* internal.h */, + 62A9736912C39F4F9A7F0A697DB5449F /* internal.h */, + 8FAAE619298BB3E52C17A0D7E402016A /* internal.h */, + 3352DD7E9B32DA32FD0938088A06E613 /* internal.h */, + BEE120EF00AA9CDE2F1DD3DDDBA5C263 /* internal.h */, + 2D599469E42946FF0C5167BDBE014198 /* internal.h */, + 29A51310FB6684DF3660C0B33E9A59A7 /* internal.h */, + 2484DB461B84FEF1ADCF6BCA0F071A5A /* internal.h */, + 92C8590F86762CED5B8F806111C082D2 /* internal.h */, + 88D7E4280638B9DA6462529216378B05 /* jacobi.c */, + ECCE219A6C73A743C0BB01B69B8C82A3 /* kdf.c */, + ED31BA663AA501F6AC88049102071C36 /* key_wrap.c */, + DC00AA74C289D87FA0B86FF0F1D7CDAB /* lhash.c */, + 04B6D0A84A33F2531C58DF18E9DFC5AC /* md32_common.h */, + C0C3B265B944168433D31B78C72A59EA /* md4.c */, + A634A28D0EB7661984CD86D24543098B /* md5.c */, + 8A13B55C4EA76634DB5FEE91AB5F30F2 /* mem.c */, + 96C1A5857F3C39E3EF99DC10BB09FFEC /* mode_wrappers.c */, + A35B79EB0D3EFF7B97DD845599FF25DF /* montgomery.c */, + A1F7779EC03A9C8B5AAFCCA1246419AF /* montgomery_inv.c */, + 16538F1A16138CF2E71237C09FFE3781 /* mul.c */, + E6B44525D0250EF680C44D74BA2E369E /* name_print.c */, + 6710FC1B4A30F4642F288B8D51B7647F /* obj.c */, + 8744DA8827C8B2359FFD2A6F8FBFA83C /* obj_dat.h */, + 648C8964EE54040A5890ED253F80D39C /* obj_xref.c */, + 5E208BB56BB4324506D23849D345BD16 /* oct.c */, + 6644A7F605E4A3D1A185E76E48E19F44 /* ofb.c */, + AFDE60160C80749FB6A3A7D7EB59FB4A /* p224-64.c */, + 91F5EEEA4A3C866E873E742878E641D4 /* p256.c */, + 3EE08506CDE442284DE33807DEA3CDDC /* p256-x86_64.c */, + 9F6A9630CF3E3FA9CB2CA8EA089E4B9A /* p256-x86_64.h */, + 23B960B908E7FDAC2DE97DF0680ED636 /* p256-x86_64-table.h */, + EFD655EBA8B38555F6427A5A6161EA05 /* p256_32.h */, + DC022933E3292FF6FAF8AF37F5F3485B /* p256_64.h */, + D97810310876FF2E3D239445BACD7CBA /* p256_table.h */, + 26C3DB743312655A2C92DAF47A60BF93 /* p5_pbev2.c */, + 7C47BEAF8E46DC904F72BB726BAC2BFF /* p_dsa_asn1.c */, + 05F6DFA326C60FC5485D8DD78CC70DEB /* p_ec.c */, + F31EB3593C9F188E2E3EDD1E8D988A14 /* p_ec_asn1.c */, + AB945A961CCE39200F9B7A61A735C888 /* p_ed25519.c */, + 974C2A361B6997A048B4B4A506ED0F69 /* p_ed25519_asn1.c */, + EDBB64577D13FEFA1E5D232FEB69F8AD /* p_rsa.c */, + F904475DD913EA62FCA093582FE69D9D /* p_rsa_asn1.c */, + 05D67614BF757CDF57583E2011D65ECE /* p_x25519.c */, + 3DCA615F9C26CF99358B7351C1F4E02B /* p_x25519_asn1.c */, + FE1EA19F1D1E10840926EFC33DCAF1C1 /* padding.c */, + 60F7A372AED14A0E7E62734950715DE8 /* pair.c */, + 445402BF5757285959F27894A04EB8A0 /* params.c */, + 685E6D33D6050AA0956550C7D4C71FDD /* passive.c */, + 2A2AD21DCE6BCF48284E974096BDC2D1 /* pbkdf.c */, + 1550D56B8F7D85FBA0010BC48F98C2A8 /* pcy_cache.c */, + 74C87F9D896DF54AB753DCD7F19434F5 /* pcy_data.c */, + 0A238F9B7149289DAE6487F74B99A89C /* pcy_lib.c */, + 146FD369F9BED99CA09DCB1567E03720 /* pcy_map.c */, + 78D244023407702075C9C7D1F56E6674 /* pcy_node.c */, + 05CEAE5F39C72C44F09FFF0479D94BC7 /* pcy_tree.c */, + 754B0D428B68D47F7C14DF67E180AAA9 /* pem_all.c */, + 43D0FD0CFCA1CC8B666AEA1ABA5B8C77 /* pem_info.c */, + 0C0D0FE37BEF51F703EBA8FD1648EFC2 /* pem_lib.c */, + D3953A16AEA4EA92F38D2C0309AFC939 /* pem_oth.c */, + 836E4622712C52CDF72BEE2F2D3016BD /* pem_pk8.c */, + 5AB34B6AD2D066255BC3DDD9CEE5DC37 /* pem_pkey.c */, + F04B6F8289D97B208413C06674E85532 /* pem_x509.c */, + DC2BF52D96EF4D49ED19166D1A4513C9 /* pem_xaux.c */, + C014901C7F654ED4B4262D0079D07AB5 /* pkcs7.c */, + 264ECA18DB4BCE1787F2A8D4B412CD6E /* pkcs7_x509.c */, + 465CFCA72D89FC2E25DE377D37613BB7 /* pkcs8.c */, + FB0B9B27A6EE6CB65F67C1FFC47B15A2 /* pkcs8_x509.c */, + B2B6CEAA241FC237B879B1DE6BB91B5B /* pmbtoken.c */, + 1883CE7E6B62BD54718E10BCD9B1D63F /* poly1305.c */, + B00ED75B5934906127C74DCFF82CBFF9 /* poly1305_arm.c */, + F0216B0B8D9A790EB25B4074058C749F /* poly1305_vec.c */, + 94724F5543CAF24499BC23259116E966 /* polyval.c */, + EFFE699E68466EC9A5C593E5D9EDC027 /* pool.c */, + 62883B5B659C0D486FAFD03B462C111E /* prime.c */, + 08BDB61916906ECB1F57C6BAC216422D /* print.c */, + 2FAD38AFE7BB224C425B7C711C5F811B /* printf.c */, + 932206B537FFE7D3EE341EE861C3191D /* rand.c */, + 3B026653B90572D745AB5D08A4DAA5F2 /* rand_extra.c */, + C99DFFFA5ACD10C00F548D3D5CCCB1D6 /* random.c */, + 961DCD1F25FFEB7072C6B1AF80D9729D /* rc4.c */, + 8B3289AC074C52822E31A367F21C9A6A /* refcount_c11.c */, + 1AF8B08ABFF09681BA30041825072C29 /* refcount_lock.c */, + 8A2076E82E1ADAD17C71E38A4783DC65 /* rsa.c */, + 5475CD392D607B98B19D5589AD113674 /* rsa_asn1.c */, + 8F6FEE6CA8EBEF7D2B808C55CDA44B7B /* rsa_impl.c */, + 92029B7531460F52BDE424BC0BFBC63F /* rsa_print.c */, + F838E3EEAFE0A62FEC4CE93D5C6D9C19 /* rsa_pss.c */, + 9ABBA9A7BDAB499082DA134EDE79CCA6 /* rsaz_exp.c */, + 18883C160D574315685EC1BB725FC8B3 /* rsaz_exp.h */, + AB7644B3B8B5BFCE590A66FAE4A07C05 /* s3_both.cc */, + B8C54DA6F1A92B60BA31D5455A6691DF /* s3_lib.cc */, + 99D73E0918E534395896982111030230 /* s3_pkt.cc */, + 2DB097F61E076F0BD4E82FF623CF937D /* scalar.c */, + 773EEBDA13742F01E2F10464913CCCE0 /* scrypt.c */, + FD5A9E431DABAB19AE25E002315A4BEB /* self_check.c */, + B2C798C0E44B904CD0995753D99FB5BD /* sha1.c */, + 067835A1DBB77FA191748AC963D2309D /* sha1-altivec.c */, + 9248CDF2578447F13C1741E19DB1F6B1 /* sha256.c */, + A302C1A329B7547ACA9610A0E5D97229 /* sha512.c */, + 614E061E10B30F837967FE19A240DE50 /* shift.c */, + 3D994E00BF948C2556C243BE9082BCE4 /* sign.c */, + 0C61CFB780920F12A971FB68C2561F66 /* simple.c */, + ABF274D63A01224C63B4C662A5B7CD77 /* simple_mul.c */, + 9CCC07B0CCF352197BCA376696736EC4 /* siphash.c */, + AE17B390D590E6CB695C2255642A0D6D /* socket.c */, + E7CB4DEBBB0FB03A88662AB9DF45AA3A /* socket_helper.c */, + C658698CFED74C3658759C1999F489D8 /* spake25519.c */, + C74935DE1EB9622B198CE816B700F961 /* sqrt.c */, + 35F4BB0B1C9B09FF40778227CD7AEA80 /* ssl_aead_ctx.cc */, + 2360030921D5EDA7110D07DD65D9E106 /* ssl_asn1.cc */, + 0167C298C9AF396EFAEC955D4EC4AC68 /* ssl_buffer.cc */, + 0C4D9C624DCC8220873962FD2728DA19 /* ssl_cert.cc */, + ACEABDB3C53B230C730FA8D6A6E191FB /* ssl_cipher.cc */, + 0D96795D68F536E24CA907C374079640 /* ssl_file.cc */, + CCB2861C966D7FF982DF67636EE2E9BA /* ssl_key_share.cc */, + 3F837447A5140745F7232F9EDEB41D64 /* ssl_lib.cc */, + 2E364D57E16639645643FD2CAB2024F4 /* ssl_privkey.cc */, + CDD924B4377422E044E36E72863D18D6 /* ssl_session.cc */, + AD786899F7692B3DE526159D7F72BA20 /* ssl_stat.cc */, + BB312C38F6EC04EC2ABCF7D27ADCFA1A /* ssl_transcript.cc */, + 0E7066B36086A204BAFF51CBF0601B97 /* ssl_versions.cc */, + B78624FE5A1DD4220B27584AD7AB86E9 /* ssl_x509.cc */, + 22CEAA74AB85080A95FEF380DBB86776 /* stack.c */, + 365F68BBEB1F7FCBA99DBCC36C12DD6A /* t1_enc.cc */, + 89DE501BE7DA71284D0BACEA81E74A72 /* t_crl.c */, + AD684F740DC4279C4A03E98E842E8AB8 /* t_req.c */, + A0AFA71D9BC5E0EC4BAC81394771B142 /* t_x509.c */, + AAED5F6D94B67BAACAA77FBC4BE596DF /* t_x509a.c */, + F017315273C89416919F230AE79860A5 /* tasn_dec.c */, + 157451DDBD3083BA47AEE89A30BF0885 /* tasn_enc.c */, + B20CC7C12E04A3C8F3308E5AF7EA2989 /* tasn_fre.c */, + F92221BC48D173AB1B9FCDBB945120C6 /* tasn_new.c */, + 0AFAA027FDB8BA806843BB53461DD745 /* tasn_typ.c */, + F06668C8E61E0C198436F6329E8D1B2A /* tasn_utl.c */, + D4CAD48245FACAAD497AB8E8B7F41390 /* thread.c */, + A438524329ABC4AF04FAD58A5F3FAE6F /* thread_none.c */, + E9B014964C908B18868FACBEBAD3C1BA /* thread_pthread.c */, + 9D4A0297B0DE49DC4BB155C61F7CD00C /* thread_win.c */, + 63FC37D1D86EE40DC38D2FCA94F9431B /* time_support.c */, + 8AEC41339BDDE5B947D0FF0114E5EE47 /* tls13_both.cc */, + BC40695F2F6396F032220D1451CCD029 /* tls13_client.cc */, + 3F1AB412051CB8BD374BC3592244FDE4 /* tls13_enc.cc */, + AC6D4C0CBE3A8529216A41C84B9DBEA1 /* tls13_server.cc */, + 8F4479E262F23D6CE285505052349B4A /* tls_cbc.c */, + BE89FEB16A144A810669D8956B8E854B /* tls_method.cc */, + 58170FC46FBF9672498F9CCDADB3BCB3 /* tls_record.cc */, + 605737CF9D35765FD2B4682DAB4B7986 /* trust_token.c */, + 28C4AEE6291F4A2FA8E8DB42E5001A28 /* unicode.c */, + 890607A4A75F662848280DA4B6F2955A /* urandom.c */, + AACE42F21E333D5C884B48171B19FC6E /* util.c */, + A4F4AC7CE28D780EF5C601866021A8B2 /* v3_akey.c */, + E1821704FD7119472F4C40C6B4959A65 /* v3_akeya.c */, + 3CCC8F5C394BA0E030E77C8152AA22F4 /* v3_alt.c */, + CBA310A0A1FB4647DE4D1663279BF6FE /* v3_bcons.c */, + BF8C791CC0644F7FAEE3E2618256811B /* v3_bitst.c */, + 54E648875B677EC5A38C01EA0A28368D /* v3_conf.c */, + 1C959DE385873B396C1158318D2BB186 /* v3_cpols.c */, + 35BD3866AD6D42C1FAAFD41699566682 /* v3_crld.c */, + F0900F090B807817E6695C165EE4DBD7 /* v3_enum.c */, + CA9935A4C4F7DA027732B3CBC5E6E822 /* v3_extku.c */, + 85C0000D15AC9CD6FCE9C11E722E8D00 /* v3_genn.c */, + F0B7A3E2168B047DE16FB4784E54EBD6 /* v3_ia5.c */, + A92B3037E119C806056B8CDBF7D4F333 /* v3_info.c */, + E00E431C6179EA19CDAA28C66E69B801 /* v3_int.c */, + 601B28FAEA8098CD709ED0CDF069EA0F /* v3_lib.c */, + 7D0BAE90AAF4BA0D7171A635853727BD /* v3_ncons.c */, + 54BBADBA5F05DE80A63FA32B8E13088F /* v3_ocsp.c */, + B2A36AD8C0F023A1AED64E1796A175CC /* v3_pci.c */, + BCF944E923AADCF9C303E3ABF28E801F /* v3_pcia.c */, + 8E7A7E4A142B178700C07E6FEEABEF83 /* v3_pcons.c */, + 05011D8AFBBF196ABA67525ABA21BC5C /* v3_pmaps.c */, + 91565BDC67B16DDFEB5909813337E89C /* v3_prn.c */, + 64CBB8792878997852C6291602FDA42B /* v3_purp.c */, + C516F903F750DFFD4965F0DCF59A4FF1 /* v3_skey.c */, + C7CABB5C3C90C87F97C511E56DBCB6FC /* v3_utl.c */, + BE2FD637962AAF867E1FA428AE88D9AC /* voprf.c */, + 29C38EFF725A32910E9F02EB1AEDBB67 /* windows.c */, + 7FA97B123387E58027523EA88449F89C /* wnaf.c */, + BA7898A4AF6C68989B2C09E48E3518E2 /* x509.c */, + A3B8CD40AA61FA847C0ED9CB838E6963 /* x509_att.c */, + 4FA7E2F8C525790747639E0FCCF17755 /* x509_cmp.c */, + 025B72D377693569FBA67D95C614E9EF /* x509_d2.c */, + D0FBF33938E6726F2A111CAF54B650B3 /* x509_def.c */, + 88EE707B1CB626C8421DC306A10720E1 /* x509_ext.c */, + 42962C10FE101E3D9C88E230B79EEAA0 /* x509_lu.c */, + F38FD5F3D8CDCE0F1EA0CC8988F092E5 /* x509_obj.c */, + 7C7E9998E63938F4092E3EEA2FDF9036 /* x509_req.c */, + 10622B48EC6FDECF4980D35B60C0B649 /* x509_set.c */, + EFF9BF17C4944FF6C723BF042E02F1D1 /* x509_trs.c */, + 38D21598A5E15C341C05D98171CAA01D /* x509_txt.c */, + 3206DC71A33E682E65CEB0085F23E65D /* x509_v3.c */, + BAB7BBB693941B4C804702273D2A1367 /* x509_vfy.c */, + 0DD6FB5BB8D62AF84A694AF6B04B260C /* x509_vpm.c */, + B500D4F941472498E3F9456ABED7749B /* x509cset.c */, + 41C7173B924E7350CC56B45B8F82D453 /* x509name.c */, + 798BCF1941D6B7591BF4BA1452DF2855 /* x509rset.c */, + 341E7094CD94588057C95DA2DFACCFC7 /* x509spki.c */, + F31AFCEC3CF4B8560E25D3060CBF9355 /* x86_64-gcc.c */, + 760DF991187D71B53EB8CFDDF9C55A9D /* x_algor.c */, + 29F21C3B2F4A280F9C9170D01F4BF5E4 /* x_all.c */, + D2EB3A2EBB4E664DB91F39B6F770CEDB /* x_attrib.c */, + AED619B4D6A2DB811F625FE8C6BB7852 /* x_crl.c */, + F369BA72BC7AD41AF104B76B5C176506 /* x_exten.c */, + 4A49E730FE7C9CE340FE9149A18B6D65 /* x_info.c */, + 600211F57CC3134EABDFD8F849C976E8 /* x_name.c */, + F765AC190494E9FCD9820E01A6D9EAE3 /* x_pkey.c */, + 9B01216C72F505959175819985653E8E /* x_pubkey.c */, + 01EB475D0C43B21D1BAD5ED8A9B19F37 /* x_req.c */, + A34515ACD6901C51E8FDEB47BDB1C77B /* x_sig.c */, + 203572C88C88B28545416EEB7D67990B /* x_spki.c */, + B837AF5333FFE75A7154E6638FACAC42 /* x_val.c */, + 56ED4D63820B762D5019EFE0A7762675 /* x_x509.c */, + 3C81ACF44586BC3C528605123DECCD24 /* x_x509a.c */, ); - name = kernel_timeout_internal; + name = Implementation; sourceTree = ""; }; - 35F68251231E7D160AD8F2F6A8342D72 /* synchronization */ = { + 31AB8044C51B32AD1A94919BD409AB94 /* seed_gen_exception */ = { isa = PBXGroup; children = ( - 3322635168F0511072FD7CB50370D7EA /* graphcycles_internal */, - 35B8BD0EF0674B21C84DD9EEA52DA8F3 /* kernel_timeout_internal */, - 7B63FA7567B81CEC13EB6B8E01D04110 /* synchronization */, + 0D2AD8116D335BB0A74097EB509FA2C0 /* seed_gen_exception.cc */, + 80B41DFB40D427DEFB68B040A2189B9C /* seed_gen_exception.h */, ); - name = synchronization; + name = seed_gen_exception; sourceTree = ""; }; - 36A024BF53F07E8167055C2CA2B5F9F4 /* randen_hwaes_impl */ = { + 3783F8B7CF6DF0E0D07B47E2BF4DE8EB /* IQKeyboardManagerSwift */ = { isa = PBXGroup; children = ( - 006370D3AB38F7A18323959A5B124EBC /* randen_hwaes.cc */, - ); - name = randen_hwaes_impl; + 4E061617839A02E725F607D4D09D0207 /* IQBarButtonItem.swift */, + 289009D0A76AB9270AE11DBD1A470ED0 /* IQInvocation.swift */, + 70EB36025556F9690F215AB682B84540 /* IQKeyboardManager.swift */, + 471AA1363454D38942778AE62C31A1A2 /* IQKeyboardManagerConstants.swift */, + DF31A195CC312CC81B044ABB91D26AF8 /* IQKeyboardManagerConstantsInternal.swift */, + 2E22CC4B855064617E67E959A27ABA80 /* IQKeyboardReturnKeyHandler.swift */, + 9571256BA6CB453BCBF4F3EF8C5EEFFA /* IQNSArray+Sort.swift */, + CD5E281C1610FBAA1A80883F89EC2727 /* IQPreviousNextView.swift */, + 14C54013C2025C5A82ABD9741BCAAF57 /* IQTextView.swift */, + 8A3A9FCABB5C99D8EBE66BAC40F62FB4 /* IQTitleBarButtonItem.swift */, + DC57BFC02C89F8CFDEA09B01A8A97B6B /* IQToolbar.swift */, + 9549DFFDF5DA5BC98DD3AA35F8DF9D55 /* IQUIScrollView+Additions.swift */, + 1B07EEA98F541CDF7351A3304EBB6947 /* IQUITextFieldView+Additions.swift */, + 88E932C0AEC2712BCCBB855896E9EBE5 /* IQUIView+Hierarchy.swift */, + EF3BCB91B825535DB87DA24D5D723A7A /* IQUIView+IQKeyboardToolbar.swift */, + C2AABB73BB82723F79E422921B9CA907 /* IQUIViewController+Additions.swift */, + EB7FAAE5A5C359B922E75FF5A9F46D4B /* Resources */, + 54241325C476513018424E03BDEFB770 /* Support Files */, + ); + name = IQKeyboardManagerSwift; + path = IQKeyboardManagerSwift; sourceTree = ""; }; - 3A9DA1E56E97B2DA20C6AEBD92A8CF75 /* bind_front */ = { + 37A851251F242ED93A6A46D345C59F49 /* raw_hash_map */ = { isa = PBXGroup; children = ( - CF7FC3F5BBA14AB71E73986111C0C5BE /* bind_front.h */, - 684D16A44C9949E522F0782808B9BFA4 /* front_binder.h */, + 5D7D8191C7D44D29FD318C1BE6AC7B58 /* raw_hash_map.h */, ); - name = bind_front; + name = raw_hash_map; sourceTree = ""; }; - 3DC9DD087BC3E00C90480DC81EAF60D0 /* Implementation */ = { + 387F928FD897484D3CADD7D36E9B0088 /* memory */ = { isa = PBXGroup; children = ( - 653A06BD7CAB74B4A8C25ECCC89A3EBD /* accesslog.upb.h */, - AA1E77257DD61E97BF6D0946527B39D4 /* accesslog.upbdefs.h */, - 35B2EC2870CC90FB892D1544E3724FBD /* activity.h */, - F173E16EF68725331068A2234C23F194 /* address.upb.h */, - 6AE77537ED5BC12A0F5E35BAE5EC2613 /* address.upbdefs.h */, - 5934436C32E7BA87C0B6BB29A4BD77FB /* address_filtering.h */, - 12429A113E4A88203438C07F04B7E0CE /* ads.upb.h */, - 19986ED50EFBCBF49E698A69657018CE /* ads.upbdefs.h */, - D3D6F222923616FCD2E92FC8F0A9E835 /* alarm.cc */, - 6F1E690ECFEBBD45033DD971BDBF22EB /* alloc.h */, - 29B6A5C8B82E5BB8F65103C56D6EC7D5 /* alpn.h */, - 745DC281566A5D1F63B9AE8F192A6547 /* alts_counter.h */, - 79C3A7D7CA612068B66154CFA2106C0D /* alts_credentials.h */, - 58801E32C4A42A16557BA21E4B98364C /* alts_crypter.h */, - 49C7E66F1CC266330DE34F06433B94CF /* alts_frame_protector.h */, - C8AC3660DECA55EDD75182491BE0E02E /* alts_grpc_integrity_only_record_protocol.h */, - 5150B0D594A45DBBA0E0E810AA855123 /* alts_grpc_privacy_integrity_record_protocol.h */, - 484C096A02D4D9A27933DD68418A93BA /* alts_grpc_record_protocol.h */, - 51F5527F8DBCF86CE08054B11994B74B /* alts_grpc_record_protocol_common.h */, - A3D549AA9B0BBF50367D92ECF430330F /* alts_handshaker_client.h */, - 9FDC55221D6E3CC0851C06AEBF1B6C8E /* alts_iovec_record_protocol.h */, - 8E08512D6CB73FDF31801361045DFC10 /* alts_record_protocol_crypter_common.h */, - 381D7A72344929717C0D4200914EC9FA /* alts_security_connector.h */, - 289A2528AAF51BACA0EE77CA6C863A58 /* alts_shared_resource.h */, - 576983C2474543614C202AE55F53F737 /* alts_tsi_handshaker.h */, - 38B950BD01813F0536A3D34594491EEE /* alts_tsi_handshaker_private.h */, - 240A7D21E041DA464BC39040DA88FCF0 /* alts_tsi_utils.h */, - 0B8179009EE4DD7ECDA95B6EFF5C52D3 /* alts_zero_copy_grpc_protector.h */, - BBE2BFD957CE7C38FE4A7FDCDF71D2AE /* altscontext.upb.h */, - D516315A2C543ECE05B528CE3EC67DE5 /* annotations.upb.h */, - 68972317BB82871141C5B4B16D8D7DBF /* annotations.upbdefs.h */, - 9240624901210D4C21AFB04C54534C7B /* any.upb.h */, - 0C672BF1FEBDD57C63F7CDC1885E5132 /* any.upbdefs.h */, - 0CBD774048CF5B1198B6641A7BD58BA6 /* api.h */, - 295EB74E5378050D141386E004672B8D /* api_listener.upb.h */, - 152C94B565CDFA1CA88FB0B2EA1A4669 /* api_listener.upbdefs.h */, - 53066434EF4AE66D061D6B1DB55A75FC /* api_trace.h */, - D1A4740E2C1BF014B7C22B066D82FCD0 /* arena.h */, - FA0B42D0A09220E148EEC932FC36A409 /* async_generic_service.cc */, - ED35CA2F4C3351265B988D788C7563AD /* atomic_utils.h */, - 0F73F97959AF9D69E929C6E5757BE61B /* auth_filters.h */, - 4AFB5D8CE16F365954298D32489F2638 /* auth_property_iterator.cc */, - 532DA9FCB6AAB8630152D8CEA7CD8EE5 /* authority.upb.h */, - 051CFB6A3B8577E17C6BA543DE60655B /* authority.upbdefs.h */, - 4CB3B826478FB3221A7CE8D09EAD6319 /* authorization_engine.h */, - 6BA0393FEBD5F445B039789C2F3AB446 /* authorization_policy_provider.h */, - CA542F9D5EBAA2648641D0696B7DFAC5 /* avl.h */, - 22D345E76B9E1F74CAB790D4F3760C79 /* aws_external_account_credentials.h */, - 0123B5EDEF4A14D9CE53785D79866588 /* aws_request_signer.h */, - 1A7B226E2860EE4A4C2039C99B8C1A95 /* b64.h */, - F553422E6D75F130739156018E7932AE /* backend_metric.h */, - 601E0FEF257129E25CA4A57BB1856853 /* backoff.h */, - 6C6C06250C657E62352B87D002B5152C /* backoff.upb.h */, - 2B24575716E87E99C692991FFA1C4F6F /* backoff.upbdefs.h */, - AA5F3366FEB3E1119249D08C76C36FF0 /* backup_poller.h */, - 806D804C7A2051238803DFCA7E54FCFE /* base.upb.h */, - 1ADAB5732A0C083A127FF5BFBE807394 /* base.upbdefs.h */, - 58CBA3F290BEECE48CB118CA5B45C07C /* basic_seq.h */, - 2134484353B50F8458CA0604E5FD1AC0 /* bdp_estimator.h */, - C9B66061FF666FD862D90913825CED03 /* bin_decoder.h */, - 7BE9EF9D777E71CFE2C59A9655253213 /* bin_encoder.h */, - 13718E78D781CAC908AD69A4AB91F365 /* binder.h */, - 59BFE7FAC516ECD49F76881AC7F57008 /* binder_android.cc */, - 75B075366C40130FB358E1F8AE509FF9 /* binder_android.h */, - C5FAAA7556C6DA30CE973C8CEF0C7EED /* binder_auto_utils.h */, - E0B9AA38F9ECD62D502E9168A7E7D00B /* binder_connector.cc */, - 254F524B944A594C50A83B4875F42C2E /* binder_connector.h */, - 9BBADFFFFD158986AED8859EA96B6EE3 /* binder_constants.cc */, - 79E05EE534DA72A2C427B0B204D75916 /* binder_constants.h */, - 579B3E492708354C7D840C01C706D077 /* binder_security_policy.cc */, - 0D919EFA463CBC77F2DFA8AE1343A8D2 /* binder_server.cc */, - E788A415E25EB920A6EB265B3185EDEB /* binder_server.h */, - 13F35B7C63EC49466E0CB66EC7EAF51C /* binder_server_credentials.cc */, - A818395C8B5BDAA1D9592F204FD2B038 /* binder_stream.h */, - 4C9A0176BD5B0D9AE760206CE5326A7A /* binder_transport.cc */, - F5B0FD512FD44EABE41B08E05BE36689 /* binder_transport.h */, - AA659B0CEC53DE47C207E9E946C54998 /* bitset.h */, - F26B9C2F2E2DA58209865C39C0E53E0C /* block_annotate.h */, - 8B51234E02E93F77D820FA91638307D1 /* bootstrap.upb.h */, - FB20948313E52E2A54C81FE6694CD207 /* bootstrap.upbdefs.h */, - B738AE910C8B12BD51B9DEC8D9EAAFEF /* buffer_list.h */, - 732FD2E501BA15B3643B5E75FFE01703 /* builtins.h */, - 137F0BDD0FBCC30B59A95FBC6AAD5190 /* byte_buffer_cc.cc */, - 47402177CE5A3DE11A053DD3CEF70050 /* byte_stream.h */, - E49801020AFE5E2E8E61195F0AF783EE /* call.h */, - 0DB4086DE19DF3D4B5EA8E42A0AE451D /* call_combiner.h */, - ED97F5BEB8C729A4F52372DD79B4BBE2 /* call_test_only.h */, - C462C711E99A867BDC0A5126C46C710A /* call_tracer.h */, - 9764EE514981202FA1A4B0A4D1D7C3F3 /* cds.upb.h */, - 667BAC6C2BDB2110CC30BBF9610FF171 /* cds.upbdefs.h */, - A8399A14109D216FDED870DAF751F428 /* cert.upb.h */, - C30E8C02095BE8D5E92A9813AC9D3323 /* cert.upbdefs.h */, - 165AF293299953E36888270D3420C4FF /* certificate_provider_factory.h */, - C7F0EED370268E10143DD7516508E404 /* certificate_provider_registry.h */, - 7AB6F42194261B05D48A051B0F2C668E /* certificate_provider_store.h */, - 4770AD5392F71D42C2FDFF3ED05EEC0A /* cfstream_handle.h */, - FC5B3005DDD30B2745CCB8DD7D6C5A10 /* channel.h */, - 26A2410A18AF6C751163F4313DB7FB33 /* channel_args.h */, - 1718D18788DABDA40F35E9DBA31BC622 /* channel_args_endpoint_config.h */, - 5A939795E3519A5887007458869F871E /* channel_args_preconditioning.h */, - 08D11470660AEEBB1A2B43742F4981AC /* channel_argument_option.cc */, - C6A614687D8D96084D0809B9DBC13200 /* channel_arguments.cc */, - 0D6973E9FD4602D0EB5B6674ED6FC4A1 /* channel_cc.cc */, - E32695E7994B6A021A79F8905B13D7CE /* channel_create.cc */, - BFF4C2DC688DA522447E4ADF6FF52B56 /* channel_create_impl.cc */, - EEA7A8C84EDBBCD0CF47112A1D84CA90 /* channel_create_impl.h */, - B8CD8F9BFEE54C15B4D49EA1371C33EB /* channel_filter.cc */, - EACF1A8D502BC2BF2C5DE7ABC793A0B3 /* channel_filter.h */, - 47BB7FFE964FE1203DCCFBE549276EE0 /* channel_init.h */, - 17C760A7FE09BDFDC990826F5DB964C9 /* channel_stack.h */, - 248A796EBE99A412DC59BE302B43CA0C /* channel_stack_builder.h */, - 941DA661277F79EA7FD300E4F9DB6ACE /* channel_stack_type.h */, - C8C1060B2E162C905C627700F8894361 /* channel_trace.h */, - ED28175BE8D554A752CCD22E4BE652CA /* channelz.h */, - 5F1EF5E2AA8D4ED34773A9D3193BC853 /* channelz_registry.h */, - B883A64A540D701D865342BA75CC54EE /* check_gcp_environment.h */, - 408B71D3E0267F149E463A0837B624E1 /* checked.upb.h */, - 7C779E900CA57D44C2F9D63A7B6A6A88 /* checked.upbdefs.h */, - E39F865726404450820E00BAFB232434 /* child_policy_handler.h */, - 6F1DA91C1E42CF58CF833BAA4F552ECE /* chttp2_connector.h */, - 25E4A7E6BBFBF0EA50EEEE38D563D632 /* chttp2_server.h */, - B781E6357ACE48C7978EAFEE31FE0FC5 /* chttp2_transport.h */, - 803EE5BFD0498CB7975A108834085F97 /* chunked_vector.h */, - 8AAA6C1D939B1D52C82F2543E812E223 /* circuit_breaker.upb.h */, - B87166C717DD3DA0B19DEDF7E4907D64 /* circuit_breaker.upbdefs.h */, - 727F581CFE04F74BE5DB606AF581DD54 /* client_authority_filter.h */, - 69B1D299E13969370D04ED9A9C32BC76 /* client_callback.cc */, - 540F2B2E80B217D044C50B4B3024578E /* client_channel.h */, - D271BC81566FE43E6A30021BDF1FF2E3 /* client_channel_channelz.h */, - F43D6F8F97EFC9ADB30BE1BFA495ED8F /* client_channel_factory.h */, - 62C9039CA3722F6D91171D7881B1BED1 /* client_context.cc */, - 103FEFFB2EC36F91DEB028C07461AC3C /* client_interceptor.cc */, - 1B104BE6B4F17949616FD4316E82ED18 /* client_load_reporting_filter.h */, - 4D6DBAB58F5643BDE8B88A4CF90F2368 /* closure.h */, - D55736FA019DE944E9BF69ACBB520148 /* closure.h */, - 4B41A9D4DE4D3CFD54498E4EBE058082 /* cluster.upb.h */, - 36A66EC84DD34F10911E5EC0A70B1675 /* cluster.upb.h */, - 73EAC86445CCAA8B70E31635F665A599 /* cluster.upbdefs.h */, - FB871EBA96139E497887203510BD0075 /* cluster.upbdefs.h */, - B73B66243871E53D2CE0D389DDD20DBB /* codegen_init.cc */, - FA78CE6B038EF8067EE0A0E99CE92620 /* collection_entry.upb.h */, - D8DE670129A60E52265947F84F2B39A8 /* collection_entry.upbdefs.h */, - 2F398789DC69B60337CFAAA89F9C2C2C /* combiner.h */, - E43F67AEE07741EE4D2F439CB32A4D82 /* common.upb.h */, - DAEE076E65297226B99003203899237E /* common.upbdefs.h */, - 2DF6FABDA9E55396A5A08C2A0A88EEB0 /* completion_queue.h */, - E6A2580E1C95493E5B4546C6AF57646C /* completion_queue_cc.cc */, - 95A754F02FF7A7672AC0B2EB718D939A /* completion_queue_factory.h */, - 950D283A1E1DB9EEEBEF9281504677CB /* composite_credentials.h */, - 4EB4857181698949BC3012F44F99E4C7 /* compression_internal.h */, - F0186B61EF4267F27EFB04F25BABC067 /* config_dump.upb.h */, - C480D3A93BA5EA1C610DF0C1B208B9FD /* config_dump.upbdefs.h */, - C3CD6488F7C19732C0D5ADE3B731F6DB /* config_selector.h */, - 4BA0956FF8B0CC3BDF5FBF1BC6561514 /* config_source.upb.h */, - 5C510F2DEFE792F7E0D8D71249619EB3 /* config_source.upbdefs.h */, - FA9C72197B6BC403850AEF928454F46B /* connected_channel.h */, - 6ABEB4983A534AADCC7FAFFAC2B48A54 /* connection_id_generator.cc */, - 4D19F7F151E638E1566A7C053D2C4DFF /* connection_id_generator.h */, - ACE0594724CADA3C6E8F44A890B0A3CF /* connectivity_state.h */, - 9A5993E01767ACEE9738FF31F4AA2AA1 /* connector.h */, - 299CDEE2553897BACBD94BFE14463D22 /* construct_destruct.h */, - 59B6C8A3E2B9043D0619CFF8C04B9E4E /* context.h */, - 95C9C6D9EBF5A41B773C37EC958353DC /* context.h */, - C1A734BF9CAFB89DFA61BC0BA6A7DB06 /* context_list.h */, - 00B301FF6B0D0904B8E79378F6BA801C /* context_params.upb.h */, - 23EBE03537519CE6BB7C75F49EBA93C7 /* context_params.upbdefs.h */, - AA468256CE134AB5B72DB058D43DF44C /* core_codegen.cc */, - 98A39C6B3C8330782B999C80DFA9DF9B /* core_configuration.h */, - 9A7A7D37537D94D33A37B443D4732AA9 /* cpp_impl_of.h */, - BB4A184445C605B0B79BD1A6B8611BF8 /* create_channel.cc */, - 010289DABB71A1F8AE36F645B8AEC3F5 /* create_channel_internal.cc */, - B0BB9F9D829E3114AB84B6957EF89110 /* create_channel_internal.h */, - C0BE8D08025C9530A7003EBB8368559B /* create_channel_posix.cc */, - FE8D49725F8042E90BFFA332841389AD /* create_default_thread_pool.cc */, - 24BB071A53AE872ABC3A9D5797A66109 /* credentials.h */, - 5D95EF273DCCBBB93D71AE2E4B074E65 /* credentials_cc.cc */, - 1A7D1E1EBC55384C3ABA51B3A3FAF830 /* csds.upb.h */, - 7B9D3B1D7D115EDFC90A91EA6CFB2EF0 /* csds.upbdefs.h */, - F6232FDED7D78A155E56486C1DCFD29E /* custom_tag.upb.h */, - A6D28A600B0ABBA17A5C9202636BB73B /* custom_tag.upbdefs.h */, - D4C81AAE6F95E9DC58CD6BB8014B1A3E /* deadline_filter.h */, - 6D3096982B7D3EAE32758EAF2C0F23E9 /* debug_location.h */, - 014FC73DC3798CBA3556EF64137339AD /* decode.h */, - 768F949B40301D207E873B6E6E266E00 /* decode_fast.h */, - 9844C2549A22396640A5E55202C218E4 /* decode_internal.h */, - 7DB40011121B0F1C6A39BC69784C72DD /* def.h */, - 6943DEED378A2F4915E7B9E730F39614 /* def.hpp */, - CFBF0C6B12A6980CE9C1AB6441B71051 /* default_health_check_service.cc */, - 1398368D2FCC28ACF4105DAE1E07AD10 /* default_health_check_service.h */, - C88EA6C7101BBD747B97A0B7481DAC4A /* deprecation.upb.h */, - FA535764C50D67EFBF9B6F306B1CFFD4 /* deprecation.upbdefs.h */, - AD9A09242687CD13126EE381377D5B6F /* descriptor.upb.h */, - A6D93FF8F756E2DF0E4D0F70786B780E /* descriptor.upbdefs.h */, - B2BAC9D0A1AA7CD328C15013960C88D3 /* discovery.upb.h */, - C6109CFE5F5C0D455544CAC1F2CE1120 /* discovery.upbdefs.h */, - 3E51D4ECA1A8BA98D9E1D8F80983F128 /* dns_resolver_selection.h */, - 724A5BAF656370E9A9C5B1E9FDD91D4A /* dual_ref_counted.h */, - E198F4A7374CF35608E3D56C9A802F60 /* duration.upb.h */, - A2BDA11FC910B0DCCB97474CF682D327 /* duration.upbdefs.h */, - D01D764F848732762154906CA67EDE28 /* dynamic_annotations.h */, - DC82D6E91B4E76AF1EF3C92F3AEA9A14 /* dynamic_filters.h */, - DC1C6762A400F6798B0B37360C37A926 /* dynamic_thread_pool.cc */, - D8F18D863A904F7D9A7D3DCEF0753001 /* dynamic_thread_pool.h */, - 088F51DD14C05CBC4BF0EDE08728A569 /* eds.upb.h */, - 889C4559B52459471A44A392B83B1D2F /* eds.upbdefs.h */, - 861297BCB6A32ABD79814726C0A62307 /* empty.upb.h */, - 2B8A4984270A3A0094AD8696AF5CFEC7 /* empty.upbdefs.h */, - ADE5E734449379D20E08E13749DCAE3F /* encode.h */, - C25D306CBA095F95137A49734A38A4AE /* endpoint.h */, - F400C3DD7DBFE9DEE16915515FA6F927 /* endpoint.h */, - 456F64DF049000E597A82DD48D788DC7 /* endpoint.upb.h */, - 5A413DD6F6C84C13CB8EED25FD2255E2 /* endpoint.upbdefs.h */, - B53BAB3FA71F0EA8FD602751F8799634 /* endpoint_binder_pool.cc */, - DD5F9EF7C35287AF0D4B1B7DC5333DFF /* endpoint_binder_pool.h */, - 49A4F8B5D211E97177EA812FF6901D9E /* endpoint_cfstream.h */, - 6EAD9546F1FA9B59F362A87BBA9D14E4 /* endpoint_components.upb.h */, - A4E17436AFD5BB6F11D2BE7382D1EC24 /* endpoint_components.upbdefs.h */, - 19F7B1FAF653D85B0735308B88B25ABF /* endpoint_pair.h */, - BA7C8764CCB1D81C3267CA651EBB7030 /* env.h */, - 391D19E6D30847380C7B1410B0D1797B /* error.h */, - 01A843A33D35776B086BE103F200DB87 /* error_cfstream.h */, - 2D89D1CE8725C18039755580DB45ACA4 /* error_internal.h */, - 281D7CB2C39238AD997A50924356692A /* error_utils.h */, - 3867EC36B10F71588E86C3C566262914 /* ev_apple.h */, - 91DBCA29C23EC9E70C6CF70FBF6D445F /* ev_epoll1_linux.h */, - 37B1B1E1D580E9FA66354D0A8C7E5AC7 /* ev_epollex_linux.h */, - A96B86EE5F4532C937C73D91B261CBB6 /* ev_poll_posix.h */, - 661BCF903B4D5ADFB3247D7C25075F25 /* ev_posix.h */, - 316FC845923E5D3310C933ADD1C6D738 /* eval.upb.h */, - 465B01AC4FBD4F077901D79CB83AEDBB /* eval.upbdefs.h */, - 39CA457A5A01157C2B91E819DDCC4322 /* evaluate_args.h */, - FFE1B0EDF56982F5B5170DFF3FB711AD /* event_engine_factory.h */, - 7DF76BAA4C32D0A75873EEFAB878AC13 /* event_service_config.upb.h */, - 51E7F2038A0FFD81F4DA08919B2465F1 /* event_service_config.upbdefs.h */, - B9D9F47D97A06BE77A5D159A9B329EED /* event_string.h */, - 7BEE68BA6F625E44541785565BC948DC /* examine_stack.h */, - CB554E4EFAE2152B9F0F887AAA50F612 /* exec_ctx.h */, - 3A351E0FD4E085ECD644A596488A38EB /* exec_ctx_wakeup_scheduler.h */, - B2520369B3CE7512D4B94CC515F5884B /* executor.h */, - 95D8B10D97F05A7835C085B0EF2B03B3 /* explain.upb.h */, - C340DC74BD921676B8BCF0EC7E201DDA /* explain.upbdefs.h */, - D3EEF546AA4F79705AC98DACDE3A51E5 /* extension.upb.h */, - F331E697A629AF29DF3B809C5CBD5131 /* extension.upbdefs.h */, - 323E902A459BDBDC083ADB54C910C097 /* external_account_credentials.h */, - 6BBBC0E5EA92566A613D71638D51EF53 /* external_connection_acceptor_impl.cc */, - DDD45AF9835B6BDB1FDEE9D1B4389C76 /* external_connection_acceptor_impl.h */, - 250A209FA4A1DACD384D3BB6584B2D67 /* fake_credentials.h */, - 6A7D939EC7DEFF245D25E3C17ABEF97B /* fake_resolver.h */, - 4BA56DEEB00B9AC6D043C190A8347AA8 /* fake_security_connector.h */, - E28A2D63D5BD3D10CC33E262C66AFB6D /* fake_transport_security.h */, - 9403116104444C696EE6FB86563BFE32 /* fault.upb.h */, - AC8A1B8E3C61F31956CED47E1CCB5BED /* fault.upb.h */, - B062227C71E1663D64363AAD4793DE57 /* fault.upbdefs.h */, - 008B402552EA81359C03A2F1A123C46A /* fault.upbdefs.h */, - 9DC4C9F0C148108AF3970F58AB84F494 /* fault_injection_filter.h */, - 4DA709FA365A48B6CE11B651FA023E19 /* file_external_account_credentials.h */, - D1A6C9AE0E511F6442B4343F210DD8A7 /* file_watcher_certificate_provider_factory.h */, - EC0CAF8725E41FF2AB537CCC9C681811 /* filter.upb.h */, - 85CE76757D158AE389D0EA2BE5A34086 /* filter.upbdefs.h */, - A9D096B0C6CBB57931FEC03C35975E78 /* flow_control.h */, - 7E65AEAD12D47B9D02DFB9657A058EB8 /* fork.h */, - B48CC10D75584ED685E40B257421B760 /* format_request.h */, - AE01C797A96D6234B067C8A84EB931EB /* frame.h */, - 4676A21D65A47A9442C431317B31984C /* frame_data.h */, - 21EB6379863FC4D3BA6BD07B6E5036BC /* frame_goaway.h */, - 40E5DC90843A442FE01FFBA6497092FD /* frame_handler.h */, - 5754AAF412D8D2FF369643708F23553E /* frame_ping.h */, - 3F5292B9062A1DA121D0F62ED11552C9 /* frame_rst_stream.h */, - 4514AD0A7F3CF10391B711522C92E1AD /* frame_settings.h */, - A92F05FA3D1F52F2A55730AA24F82136 /* frame_window_update.h */, - 0F1C751E0CE7DED158C474DA45E6235C /* gethostname.h */, - B96243AE067B5959A749503F23EF3E72 /* global_config.h */, - 083EF7D483AD0F08BCFBDC447AC45C24 /* global_config_custom.h */, - 0146E1CD2F2087892BF302BEF9ED10D1 /* global_config_env.h */, - 236FDF54EC7750B0F5EF5EEF15485592 /* global_config_generic.h */, - A3A05BF3541B60D0B0B9BBE0469DC51B /* global_subchannel_pool.h */, - B2F1E54F59F5091F8178837BD3D5BECF /* google_default_credentials.h */, - 4D6FEE3CA9F96F7CA61E9412C792D92F /* grpc_alts_credentials_options.h */, - 0D1FF92140BB1CB967A19E2081E537C2 /* grpc_ares_ev_driver.h */, - 2511ACDEA600A7860F4479462B373DE2 /* grpc_ares_wrapper.h */, - 6B954F2A8229A780BC39577C5817474A /* grpc_authorization_engine.h */, - 0BAFAE40DB8443E0742EAE7D49932F70 /* grpc_if_nametoindex.h */, - CE6B35F248E874B3A76BC25335F41458 /* grpc_service.upb.h */, - CB25817ED74FEAB86AD0696FCF1FF893 /* grpc_service.upbdefs.h */, - BE63F8FF12D5AF60D207502A5E686588 /* grpc_tls_certificate_distributor.h */, - 65042337FCD51B1287EB16CB9B696645 /* grpc_tls_certificate_provider.h */, - 0C4D1B3173B704482EA24D9558A28E8B /* grpc_tls_certificate_verifier.h */, - B128A2D8AE332941F77E6F017A320001 /* grpc_tls_credentials_options.h */, - 4E0BC17D35593EF35461F93FC3E2EC0B /* grpclb.h */, - 476C6CBD7983889EEADE7A40DBF578A9 /* grpclb_balancer_addresses.h */, - 4301AC34F2619CA037570179A9916F9D /* grpclb_channel.h */, - 555755FC986220016223AD6FEF637404 /* grpclb_client_stats.h */, - 1439354E8BD02F0DCBF6F1E3843F824F /* gsec.h */, - 516ED07CA5ADD6BC0D6E047F1416AD7F /* handshaker.h */, - B8EF2573A9A70EF757EB2234F720B2A1 /* handshaker.upb.h */, - B57334934DFB7A0B38D71BBAB211B84B /* handshaker_factory.h */, - 1B6D451E9D28AD5B6DA5684BA3427B10 /* handshaker_registry.h */, - 0B44DAC196971F034F3867F3EE421F42 /* health.upb.h */, - 7F030BA8B204A84375448D691BFF035D /* health_check.upb.h */, - 930637C627FE0278A59ED9A4B6804A00 /* health_check.upbdefs.h */, - E4665355206BF6E344BFA82DC965B5A2 /* health_check_client.h */, - 364FE1668A9870E8FB906BF8A0E29D4D /* health_check_service.cc */, - AE10C968F0E26A0B9EDCB5D10260C40D /* health_check_service_server_builder_option.cc */, - BA1E732EBE215352395DC3DC9D2CD120 /* host_port.h */, - C3F5F8034D114007F023291DE206802F /* hpack_constants.h */, - AB7138D6A69866788DF7070E6D9E7A7A /* hpack_encoder.h */, - 83A178747E2BB665ED54072C495D013A /* hpack_encoder_table.h */, - 431E3E1E1B3E81C65E6542E4CBBBC796 /* hpack_parser.h */, - D6D5D58B5E8527BB18328F77710A33BF /* hpack_parser_table.h */, - DEC5DCB722723A5C567A8DD9E3ED1F89 /* http.upb.h */, - 0C7C8DE9C3148DC7DC53B3FC43D7D64B /* http.upb.h */, - 0664AB84AF0389F95F3FC70A01619934 /* http.upbdefs.h */, - 113E06EC08373C0D0F5E4A4199783EA7 /* http.upbdefs.h */, - 3CC9630113A9804C2DDB6863BFB961A3 /* http2_errors.h */, - 46A15753A6F5B949E66C26594B35CCDC /* http2_settings.h */, - E732719E9F47BC742EDA62113AD8D11E /* http_client_filter.h */, - 86923368E9A5ADF0DDAB0080F478DF15 /* http_connect_handshaker.h */, - FA920E1981646315519E7CA578F46E94 /* http_connection_manager.upb.h */, - 990EAF86A1B5E6B39C833E81ED66F645 /* http_connection_manager.upbdefs.h */, - BBF31B6CC200EEC3B0FD6307A2C7C63B /* http_proxy.h */, - 645634BF7DADAA8AEB083791543CDE1C /* http_server_filter.h */, - AC8E47E23AA85979785614D578B42412 /* http_tracer.upb.h */, - B9C0B21E3B7E429887BF70F8E1014DC5 /* http_tracer.upbdefs.h */, - 915C738A6579A3F2F59625F24ED5A04E /* http_uri.upb.h */, - 06926B472FFC0205E8282A2D7A31D8F2 /* http_uri.upbdefs.h */, - AF4B551E052F26420522FABCCA7BDAEB /* httpcli.h */, - 03F12C9E238CE872C4E5AD15A6C3E880 /* huffsyms.h */, - E4A731EED3EED71B455FBE13E8938C09 /* iam_credentials.h */, - 645FFB47B73CD219F91F74C132F32953 /* idle_filter_state.h */, - 3D0712B9A9B768261FC354452CE49365 /* init.h */, - 5DC02CD35005D5EC01B54A8BE99C10CB /* inproc_transport.h */, - 1EF4D8A0006A4598309ADE1047F01D6F /* insecure_credentials.cc */, - 2E60938E3AC08188BEA5D9EC936593B2 /* insecure_security_connector.h */, - C34D80071ABCB24F5275D0B26995C805 /* insecure_server_credentials.cc */, - A88CBFC83E1A48C857043DFA10E2653E /* internal.h */, - B02460F5E73D23ED6FD5521C6F407E82 /* internal_errqueue.h */, - 3DA303DBCD0B07FAEF7DD0E176A042EA /* iocp_windows.h */, - 2119AC896E16E18FF0B4C0F4DD01D5C7 /* iomgr.h */, - 6898356BF9B673BC05FE83E21588D19A /* iomgr_custom.h */, - 937A60F9F763A70371066B2C21760323 /* iomgr_internal.h */, - 223CBC3027704C73021CD6046B599261 /* is_epollexclusive_available.h */, - E85E80D625A605827C324C4DDE86CAD7 /* jni_utils.cc */, - 26E13DD99206CFC900786253FACA018A /* jni_utils.h */, - 544621CF0734E8DD6CD34F8DE92591C6 /* json.h */, - B2DCCC73DC8B3EF36A2FC3C2AFF689CF /* json_token.h */, - C1AE2E24967046C26451A573AE94D85A /* json_util.h */, - C92CE0EACD0FC38840D6952A90BE5F5F /* json_util.h */, - A0154A101698E589E1B1B631EB736812 /* jwt_credentials.h */, - F680A8909E35847D60E83EC28C0AAC77 /* jwt_verifier.h */, - A16C986E58C4D4790A01AD205F1C62D9 /* lame_client.h */, - 22828E6A75C6D54E0FCE59C4261CCFEA /* lb_policy.h */, - E65D9AB517F0E6F16A3526448CF1BF30 /* lb_policy_factory.h */, - B189D9B7452AE798D3FC3017FDE61DF9 /* lb_policy_registry.h */, - EBDEE9E5B1C61B8C1AACCE38D96A6160 /* lds.upb.h */, - D396619CDC2A3F891AE60AFDE0FD8F0D /* lds.upbdefs.h */, - 42198CDFAADDC4FBEAE9CD731EBD7B86 /* listener.upb.h */, - 9C4869AB3A39CC22A47E4160BAC0CB15 /* listener.upbdefs.h */, - 80F1561B81C70A802F7EA85B888BE9DE /* listener_components.upb.h */, - 9D5E89E17E28F4CA4D712B3BE50E63D5 /* listener_components.upbdefs.h */, - 8E2D3EDBEC2D4BF48FB40811BF9228C9 /* load_balancer.upb.h */, - 29E839E2409C4DEBF613483BB190B433 /* load_balancer_api.h */, - B272B3AC437369888B4BEB0E375077EF /* load_file.h */, - 2B6BBC2793907037432260D0054EF8C2 /* load_report.upb.h */, - 738E9262168C9608155C0F2377846039 /* load_report.upbdefs.h */, - DD0A15CFFABD2B2AD12F72F339A0140B /* load_system_roots.h */, - 90015403677A1F4E07DF13546F73521F /* load_system_roots_linux.h */, - DF3BA76983ACBBCBA404FCE5F0C36FBE /* local_credentials.h */, - 5EC8B112047398545277E4DF5497BEAF /* local_security_connector.h */, - 3BD55324EBEF7B214149B1324FE3B018 /* local_subchannel_pool.h */, - BF391E4046D3E38846E557EE766872C6 /* local_transport_security.h */, - 31CD1B87BECA28E0D1476AA7FFF433E3 /* lockfree_event.h */, - BF735140546D90B9FCCE110DAE6474EA /* loop.h */, - 5DD9F73745779FDEC3A122752A8A2E96 /* lrs.upb.h */, - 7906A37970F74FF088FEFC41D3688768 /* lrs.upbdefs.h */, - 4488E92A02FBE9F1AE88BC95A1225C95 /* manual_constructor.h */, - 5B792610F189EF2F180F4F1EF110DDAC /* map.h */, - 6E7872D75148C0436CD08E2F285534E6 /* matchers.h */, - A45F54B0F7C8C5870CF72806CC6C37E1 /* matchers.h */, - AF2D82AC3822F81EF63755626F2293BB /* max_age_filter.h */, - 0724A62328D18B5FF33F489B2E8AF32B /* memory.h */, - 1A6247254B867F3497DF7993E91C7A6E /* memory_quota.h */, - D7D50A83BA802440535A19E241DE58AA /* message_compress.h */, - A24B447B954A786A8DA8AF54CA827CAE /* message_compress_filter.h */, - 72BE14ADB8E9D63BE83FA5F437EA17D1 /* message_decompress_filter.h */, - 3CB3512BB1D7A64A38FBA25A1B84D423 /* message_size_filter.h */, - 8C6503482F2C79CAE53AD5EC298F4F62 /* metadata.upb.h */, - 2C23DDAC09916FA1C2F317B501B5A9C4 /* metadata.upb.h */, - 5E5CDAC6B19E41A3101370687183966B /* metadata.upbdefs.h */, - B4B27AE92E921B8A54DBDE52F1E3EBC9 /* metadata.upbdefs.h */, - 5161171B05A0D32C18A67810CCBA11F6 /* metadata_batch.h */, - 167230493EAB5869464F695EFD915F34 /* migrate.upb.h */, - F736C0B3A3BABA4B020D6AC9346D7ECD /* migrate.upbdefs.h */, - 41D96FBC9D0A6E1C99462DA2C4012D29 /* mpmcqueue.h */, - 90EE474DB361EA6A5BC977E3C6AE8ECD /* mpscq.h */, - FD15BA8BB1E9FAA7120F8B11290B2976 /* msg.h */, - 4B3CF7A5C9AA34CEF648438D6AD11152 /* msg_internal.h */, - E3D0EF8BC014BAA93E07834E11BC30DC /* murmur_hash.h */, - 3E0314AB7EE2ED65DE4C224C8FE62B44 /* nameser.h */, - 42FEBA5898FF456F652F06687A007078 /* ndk_binder.cc */, - A3B8C57D4739031520C5CCA6CF873A4F /* ndk_binder.h */, - A3572014B13719B064E0C0820F1B40D7 /* node.upb.h */, - D5033FC242F72DA36AC50CA4FDA61274 /* node.upbdefs.h */, - 055EFA98F92611F06DD3C545A984662D /* number.upb.h */, - 024230598FD5AE93CFD3BB4682695DDC /* number.upbdefs.h */, - C59534164E63CD30114D4065A8CBD5DE /* oauth2_credentials.h */, - ABA4A13C9EAC21C4B7CA8B69309E810F /* orca_load_report.upb.h */, - 87692D90792BBDDC382E34A02ED92B4E /* orphanable.h */, - 5453F7B4FAD6BB59D01E772773491110 /* outlier_detection.upb.h */, - 05A808793AA18FCA269DAA9351AD071B /* outlier_detection.upbdefs.h */, - D0366A98ADDD50070B9F9A40359225F7 /* overload.upb.h */, - CABDE50BEA39C96AECB3BEEFDA031110 /* overload.upbdefs.h */, - B5592154D74A2E3E3DA27A305B0BEFBD /* parse_address.h */, - 71069D0E4B6D7BB8F75C58778D839907 /* parsed_metadata.h */, - 76C5A2094580D570E896A866C22C7915 /* parser.h */, - D2BC235A12F6C796B35D7371BA1AA852 /* path.upb.h */, - F84C8B471ED03E868C3C3F1135141693 /* path.upbdefs.h */, - 66D0A8DF30AAFD1FEC949DB1D6F4CB66 /* path_transformation.upb.h */, - 5838A843FA8C91F40226C6CF88A6C235 /* path_transformation.upbdefs.h */, - 76D7DD4C71EE11254080F7DF0717AEE0 /* percent.upb.h */, - 8629F5CB910A9307E786B85BF9539263 /* percent.upbdefs.h */, - D7B80E822D54F8ACB4C46012E8FB7E6B /* percent_encoding.h */, - AFBDD484888DDC549AB8CA1124B35A18 /* pid_controller.h */, - 67F83FE6CCCA340F3A90FD5F07D208FB /* plugin_credentials.h */, - 131FF3949C22D0E3E07D35ACAC8B2A95 /* poll.h */, - C2456C9738A89EFA5B8A071C2B2732C6 /* polling_entity.h */, - 6EBA67254B9EC025EEA8C09284C6C855 /* pollset.h */, - 36EB534BE9F9A3E573FCF52106032E45 /* pollset.h */, - 05B52CECB19A59ADE013965B3CF4E76C /* pollset_custom.h */, - B2D349EBE125AC26A3E98F058E11448D /* pollset_set.h */, - 09CA4E7C19F69D3FE6A6BF7440C67970 /* pollset_set_custom.h */, - 97E8C20555D426115DE04AB28B27D69D /* pollset_set_windows.h */, - C2050AD2DDD42864B31AC7CF1313B383 /* pollset_windows.h */, - 45A160ECD03432F448182A72378495AF /* port.h */, - 2A70FB5288867A5EAA0C1F5743344615 /* port_def.inc */, - E3C030AD5C975B2D61A9775FDC1D6630 /* port_undef.inc */, - 7673C8C82A949E7709FCE60ECC2E03FB /* promise.h */, - ABA39FE04431B095DEF305EA3E5F4949 /* promise_factory.h */, - 2CB024760AADDA5047FAE3B20A5C4C83 /* promise_like.h */, - 445EC53C4499CDE695F3AE222F60EB69 /* protocol.upb.h */, - 05EA13824C8A5CD55A0A214BC6BF4D41 /* protocol.upbdefs.h */, - E19B3D43D11D5638D68E4CCD659D416A /* proxy_mapper.h */, - 38C071269F35009281C67BF56ED000E7 /* proxy_mapper_registry.h */, - 1201AC5472C2B4881F5AC493870EB983 /* proxy_protocol.upb.h */, - 7CA0185F83ACA006EC727DBDF59D27AD /* proxy_protocol.upbdefs.h */, - 1599917140E7483D292ACA488797E8F1 /* python_util.h */, - 9124B20595A514A26E0E3DA0D809FA75 /* quic_config.upb.h */, - B32195B4FAA7B9B65B5287679EE3068F /* quic_config.upbdefs.h */, - 085C3CC27446B08D4C41619ADA1FFEA8 /* race.h */, - 0D0BF6EEBE006543AB748051BC0E4836 /* range.upb.h */, - FB5AB2338A78A9938C7582B965F370D9 /* range.upbdefs.h */, - 3E2C8B42A4461C643D2A8C3C9A65650A /* rbac.upb.h */, - C4C728DE09CE2A2A6159631A1E8D7B19 /* rbac.upb.h */, - 93AABB1283FC0BF0C130CAAED5CA2E00 /* rbac.upbdefs.h */, - 754702E20515DD719781A8F60A6C2285 /* rbac.upbdefs.h */, - 10641A04E2D53ADED2BF610738EF0077 /* rbac_filter.h */, - C98EFC6D454E6CDF5D7C99C1E1FEFA5D /* rbac_policy.h */, - F612E893C7C7ED1FCB6396D763AD329E /* rbac_service_config_parser.h */, - 03CBEB05F5C2867A917CFACE48EE047E /* rds.upb.h */, - 2E2E8B06225A868EA146B961E725D102 /* rds.upbdefs.h */, - BD0BE4A3B06C86885A15365B31733013 /* ref_counted.h */, - EBE90029584481452022B1912EBEDDE3 /* ref_counted_ptr.h */, - CADBE25E9532EE62AC80186E0C392EFC /* reflection.h */, - D5397304C266A806CDF6150D539B04AD /* reflection.hpp */, - A330A6AF6E4DE3A27FD916DAC0AF18C0 /* regex.upb.h */, - CF2C3151D883C28CD63E7386697F4B5D /* regex.upbdefs.h */, - 43D63C480DD386525C1E4B52028D8688 /* resolve_address.h */, - 5A84DAAB797057EEAC2BBECBD1D3A800 /* resolve_address_custom.h */, - 806F8CF669D69EB3EEC00B4605AF3231 /* resolve_address_impl.h */, - C318166DEC74F9FDC1958B12F6A22CB4 /* resolve_address_posix.h */, - F57A0E11DE528394AA16EC7F0E6A1247 /* resolve_address_windows.h */, - 9F0381DD468E37FB75F272704D445806 /* resolved_address.h */, - 715827E927F450E8F75BCDDDFE144DB8 /* resolved_address_internal.h */, - 6BF07ED97737A40E9B1E40C77C03A718 /* resolver.h */, - 9C88097B53DBFC74DE522D3A6631CAED /* resolver.h */, - 771EBCC52883059ACE8C0E47ABF3BBE0 /* resolver.upb.h */, - 390BDC63537D7CDD7BA077745F6253B9 /* resolver.upbdefs.h */, - 194A4A4DA190C984B4CB804B9DAA877E /* resolver_factory.h */, - 69913553AA2AA69C3F93358AAE7609DC /* resolver_registry.h */, - 686EB5C5CA7E45A4C7F792AA5CCEF0F3 /* resolver_result_parsing.h */, - F8CB86F939FA26E850A98B58CC6F5B84 /* resource.upb.h */, - B2EDC81F15CDAEFA824833F44EFCA60F /* resource.upb.h */, - 51E3E996372F9596593B3594C5F3792D /* resource.upbdefs.h */, - 8B6EEA7A98913CF8835D7D79FADC7D1D /* resource.upbdefs.h */, - 93D3CA6CD5CD08D0835E1A62BA8E4A01 /* resource_locator.upb.h */, - 26B8B4EBA6ACD25E2AB454FBDBDAC6BC /* resource_locator.upbdefs.h */, - 83A7F0AFBC6A66D32632BCEB9EC41490 /* resource_name.upb.h */, - A74F99F5B2B3F4DA94821916777061D4 /* resource_name.upbdefs.h */, - 20223C01D2404ED06B88642B8B6A8511 /* resource_quota.h */, - 4892F676797FE9694FB3CC0FAD5227C4 /* resource_quota_cc.cc */, - 3F6C0E851B9F6B7DDCB7052DB7869ECB /* retry_filter.h */, - 9EEF49E540505AA014B17FEC5135D836 /* retry_service_config.h */, - 3D27ED8FAF5D29E321B635DC5CCEA8C7 /* retry_throttle.h */, - BA765361E698A45CBC71C7A420B671DB /* ring_hash.h */, - 8FA0DE379CA2CE743AD2677FB09A2FAE /* rls.upb.h */, - EF3507125003FC6BB7CDD91111DD98EB /* route.upb.h */, - 5C5AB5AA044F03D2ED736480E3549B6C /* route.upbdefs.h */, - 05618ED55E3E7779BEAA558D074CE80B /* route_components.upb.h */, - 5F932B48A2E2D0D659F06F52FB0ED281 /* route_components.upbdefs.h */, - 56AA12118D3A9F28C995C4618237BFCB /* router.upb.h */, - FE50E931BADD624421DE40023EEA781E /* router.upbdefs.h */, - 82365BE95D0F61322C410B9222B8342A /* rpc_method.cc */, - E596444A54257E1EFD45894FE8CA034D /* scoped_route.upb.h */, - B8F23BAB6E574A3A2E4ECE03B2DCA2FE /* scoped_route.upbdefs.h */, - 8E65C5AAB84E9D9577DCF7C80DEF1CD5 /* sdk_server_authz_filter.h */, - ED14E173B56E9601D4D0462A4EFACFB5 /* secret.upb.h */, - BD6757A48ECB7053F1A1B5F3E091E57F /* secret.upbdefs.h */, - 7155081FDB6782E49C7B2676E50BAC6C /* secure_auth_context.cc */, - 6F2DDC43F322BC51321F4F2FD810D03C /* secure_auth_context.h */, - B935C96B194450D0E2081B217CB68D42 /* secure_channel_arguments.cc */, - A46D6BD081A1DE6301BFF9358093111C /* secure_create_auth_context.cc */, - 322D997FA4CDF6864964B05AD7459511 /* secure_credentials.cc */, - 47BE6CABFBD6DD2F81016393589470C4 /* secure_credentials.h */, - CAA99C6D40B031E5F2A776580E03145B /* secure_endpoint.h */, - D0CD146BB23ADA6C8DE4CC62EDD8F601 /* secure_server_credentials.cc */, - F90DE3DB25220666D1233C3E7D2FFD03 /* secure_server_credentials.h */, - 1380CA1378FD02FCA99D6BD6F8090838 /* security.upb.h */, - 355A3A4870ECB7DFE003AF192D259D78 /* security.upbdefs.h */, - 6ED361DE47D86700B694C6A182A3A372 /* security_connector.h */, - 26044C8A88DBA8070C43339A9D8C66C2 /* security_context.h */, - 93930114593B758A0E571CBA2FC5D445 /* security_handshaker.h */, - 073613EE37261B08AE096C4B0237270E /* security_policy_setting.cc */, - E1217BD05EA599124A79A8E31CA778DE /* security_policy_setting.h */, - A9F6EC22B391B6C38EE4CB9B5758C43F /* semantic_version.upb.h */, - ED526BE498618C869237B2280C4B7296 /* semantic_version.upbdefs.h */, - 45AC354AB6889EBA1ED0CD2C528B6311 /* sensitive.upb.h */, - CA3D0ADFC3A26CA2391392CBA33D0C59 /* sensitive.upbdefs.h */, - 5CF67AD7C6FBE64CCC3B527BC1ACC9CC /* seq.h */, - 2CE893101F2901BF8553CA56AC9EAB06 /* server.h */, - A86B7F7718E3856DCCC9FA5AD5626FEC /* server_address.h */, - 5334B11BB7A0874C2963E2E78591A20C /* server_builder.cc */, - C43F0EAB8EDA84B852C3A713CC2689C5 /* server_callback.cc */, - 298253A9952C4F4EDE1ACCE265869CFC /* server_cc.cc */, - 0D979F92BDF244F13B3F04D4D97CEDC4 /* server_config_selector.h */, - 2F7A57196AD9F95EE44B2819AA1DC7E2 /* server_config_selector_filter.h */, - 61F9135CC68D8C62B3AB5225653B7597 /* server_context.cc */, - 62F0B786F7913F2A931E90C970F29982 /* server_credentials.cc */, - 31F06E334CBB06F34C00DD2B5D2545BF /* server_posix.cc */, - E4CAEEE1E8159A80E76B9C605AA98BCD /* service_config.h */, - E92B7E2A01A1A84C351E4515E391885B /* service_config_call_data.h */, - C7F2144D96047B76445CFC21184EC9A0 /* service_config_parser.h */, - EB7B56FD7376EE690838AA923F85B40C /* service_config_parser.h */, - FDE8C0E638ACDF3599AB17E05D1D57FC /* slice.h */, - E2687499390ECE5053BC5731A5DE7131 /* slice_internal.h */, - 54C0603450EC2B6A1B7F48C52B8955D1 /* slice_refcount.h */, - CE3EDB15AA47F928FC042E2FFAC93322 /* slice_refcount_base.h */, - 00BCD1AAA6A80ED84AED36F68B1A2BC3 /* slice_split.h */, - A7C83086694C96D041164D8E6885D927 /* slice_string_helpers.h */, - C05B927A002AB8ACAF7BF2224C480E60 /* slice_utils.h */, - 6810CC57234BDEE2EC15C865BA9FC065 /* sockaddr.h */, - 413F45D9A1C0BF1D6B4AFF9FEF1236AE /* sockaddr.h */, - 7AE60A7BA6E0A8E04D66350CD9DB972D /* sockaddr_posix.h */, - 32277E5B585B3472A2C9782C3E7147E3 /* sockaddr_utils.h */, - E237E1ACC8358970594371C3DACBE19D /* sockaddr_windows.h */, - BC17C8532FFA2E138B5998A99E8AF139 /* socket_factory_posix.h */, - 91C05435E731F294186DBDF9A1C86D2B /* socket_mutator.h */, - 9A7F3BB78291C139F060A61186E21170 /* socket_option.upb.h */, - FD1265C686F1661E68C612FA3E6317A2 /* socket_option.upbdefs.h */, - 6739EE4F39EBFEA3F019DCB59BE3689E /* socket_utils.h */, - B137F26F3880BE1C08B667F84F176BEB /* socket_utils_posix.h */, - 2D558E5CC8F8FF9A279E6FCB823F78E3 /* socket_windows.h */, - 297258A7C1F4FAE009597544F8343745 /* spinlock.h */, - 6085D4800EDDEA533DB3814CA92DF0AC /* srds.upb.h */, - 21654CCB6253D06B1D4BDDF55434D26B /* srds.upbdefs.h */, - 925C014D54BB986A19735A906FE4E969 /* ssl_credentials.h */, - 976C5F9FD1C0DE156064DEEE69394B2B /* ssl_security_connector.h */, - 6D4AD9FB96555D3275666B4151B20CFC /* ssl_session.h */, - 7A03AE8D2FB86CD4A35C49826D7782B8 /* ssl_session_cache.h */, - 7BE01FC6063EB5F7F464F39C61924201 /* ssl_transport_security.h */, - 64A7A1D31F84665CDE468E26569F5E54 /* ssl_types.h */, - 2AAAC20468B4EA1FF4A649B57A5A3FA8 /* ssl_utils.h */, - FEE0B36B9BDC1CBC2C718224824657AC /* ssl_utils_config.h */, - 042477EE03D18F13CA08BC910A4C1C5B /* stat.h */, - AFEE3918AC5C9AD34DCFD2ABAF7A3BB1 /* stats.h */, - 276275BCEAEF50D5205E620B2405F40F /* stats.upb.h */, - 90751A8815D0D548A9093FE5AFC0C3B1 /* stats.upbdefs.h */, - 03BB18A312AA070D83984098067EF81C /* stats_data.h */, - B20A596BA414E8BA79DCEA94C7207DE0 /* status.cc */, - 8EBBC3300281DF8820FFD0B2517BA714 /* status.h */, - 273D56E4F37878B7A5AA1B034B4129CD /* status.upb.h */, - 0A511B16F2FB557F764FEF88CA4007B1 /* status.upb.h */, - 34B5523EBCFB7AD3B0A50EE4F710AF9E /* status.upb.h */, - 13EA44A2BB6451D6C319F7A782688203 /* status.upbdefs.h */, - 7A3DE77817594D44F6C217357EC78C72 /* status.upbdefs.h */, - 21585847B6ACE5D8A04B10A86825DD22 /* status.upbdefs.h */, - 1960D9067D5E66F3BF55125055D12786 /* status_conversion.h */, - 1C31AC9CEE840BF57B39B2D7E2026AD0 /* status_helper.h */, - 492C1AEDF0F2473348AAD01F9857FCD8 /* status_util.h */, - 8A2963FBCDFA65FAB78F53F2975F33E8 /* stream_map.h */, - 61A3C0ACE1DE0499AB65D2648A3D2764 /* string.h */, - 1B8757EE11A45905CD3C789A32FD30A4 /* string.upb.h */, - 8462D45307158B54E7DE571C0CCC59AE /* string.upbdefs.h */, - D56A9D5E4B8D0F2DACB027EEBF47047E /* string_ref.cc */, - A792C080FAE56896BE34A50BD173F601 /* string_windows.h */, - CCDD770CE4C3ADCF3BE8F8901FD0BD11 /* struct.upb.h */, - E96E38C373753DA20564A46C665249EF /* struct.upb.h */, - E05770E71F657FB048D0F7D4FAC44CDD /* struct.upbdefs.h */, - 8B27C1DBE793B0CB0A66541CE2706306 /* struct.upbdefs.h */, - 0910BB72DBDAB252986ABE9082C84128 /* subchannel.h */, - A0372D9E5AC53789D06A86098177EEED /* subchannel_interface.h */, - CE40B2D54E116F757C325DB401E6A7ED /* subchannel_list.h */, - 8BE9F03D7DEE7284D1A168D66B5E9729 /* subchannel_pool_interface.h */, - E13DC566F5693D7CB358DD61EBD04F6D /* substitution_format_string.upb.h */, - DB6110A19686169BD41F4305AD5F411A /* substitution_format_string.upbdefs.h */, - 8CC9AD7FDB2813620522076911D06528 /* switch.h */, - 176D3E42413213895429CA7ABF70BE77 /* sync.h */, - B4DC05570B01D1BCE88CEB55DCAEA10D /* syntax.upb.h */, - 2F503D6A45B2099D96A857507AAFD6D7 /* syntax.upbdefs.h */, - 9EF2476AB649C02AB753751214A96043 /* sys_epoll_wrapper.h */, - 1089C2A3EEDC66C119FFFEFE90A42246 /* table.h */, - 68718C4CB3EF9D93888DAA3784EFFBBE /* table_internal.h */, - 390689CA897899BB9C8215FD2C1435D1 /* tcp_client.h */, - F424B0036782D65A3C3042296B847DDF /* tcp_client_posix.h */, - 186278B4B3E5C34D3C237CB0FBC9B477 /* tcp_custom.h */, - 108BB5CD4241C0B32A859E2013DB7D69 /* tcp_posix.h */, - 8037E1306A59555C81260D3FD37729A4 /* tcp_server.h */, - AA6A39F4AE049F21C047511BC5A8081C /* tcp_server_utils_posix.h */, - 0880E5E502915CE446F292A316BD0F99 /* tcp_windows.h */, - 665079E50D1F9DE8778E2E894AABADC6 /* text_encode.h */, - 70B99A75D8523C9DEEE2B63870A22149 /* thd.h */, - 4D72A0B04509794A697C481159197774 /* thread_manager.cc */, - 9343A462382C988ACE502EDBDEF7BD01 /* thread_manager.h */, - AEBAB0C93706FEA7F5302559519A1B1B /* thread_pool_interface.h */, - 462EF9D57B7F9C4BAB83EC879D142E8E /* thread_quota.h */, - 1D15FB3B94278C883D217A51158C8F9A /* threadpool.h */, - 4D928F5756871DF72B1E07F5C79BE81B /* time_averaged_stats.h */, - DB938770B5ABB3CEA25FBA2D8B86A356 /* time_cc.cc */, - AB5C53EF60285D55F87F05F004230C53 /* time_precise.h */, - DD47E50FD816BCA648E6A62FB33EF373 /* time_util.h */, - A1D22D6731CA71E045964FABEF3BEFAB /* timeout_encoding.h */, - DD6E3DBC7CF3EF9831EFBBBC57694DEC /* timer.h */, - 6D7217B19C5893A4CDDC16F7325559AF /* timer_custom.h */, - B9345989AF5D41C7AA7DFBFD2228A33D /* timer_generic.h */, - EE1FBF4FFC89B38701D1AC33FB70946B /* timer_heap.h */, - 73925BBE3792C59A94A629CF7E49A834 /* timer_manager.h */, - B2009767EC2AB43C81A67E16B43E0DC0 /* timers.h */, - A7C6FB1722A8E76B4749596C35FEBD15 /* timestamp.upb.h */, - EC1B749CF3C9B8580BFC484CD44D768B /* timestamp.upbdefs.h */, - F8259370A64043B3DCAA9E5824148E1F /* tls.h */, - 2275BF8153B0D1D464CAE45994B5BD5B /* tls.upb.h */, - 8B8A21B052C956C294EDFBECB5232750 /* tls.upbdefs.h */, - B635157D0C0769DC5CF4EA1FF3FE6407 /* tls_certificate_provider.cc */, - FDCD87115AC50E6A80713C963485A6DF /* tls_certificate_verifier.cc */, - 1FF0051089C60C7E7165197BD3E5A3CA /* tls_credentials.h */, - 62713C46785517FFB47B56F2226956AC /* tls_credentials_options.cc */, - 6AEC713274B5BA795D30601AFA25180F /* tls_security_connector.h */, - 387EB660A9A8BC55A4AF697223C536CC /* tls_utils.h */, - F65CF751FDCEDBDBA60DD9E94F92D1BF /* tmpfile.h */, - 07FF581D6BB3B05C9AF491F90CF4D209 /* trace.h */, - C225D98BEC5D807A2CA9653D0623D835 /* trace.h */, - 6B5E9E753B619848AD0DFAC04C71D36B /* transaction.cc */, - 731C9CD88DBDACDDDEC4E2D6712C1BAD /* transaction.h */, - 0D1F365029B9CABA2F3F6E843CE8148A /* transport.h */, - BB08AF5701C2D462EBDBFCB35EDA6FC7 /* transport_impl.h */, - 99529AFB53A046FB2DB3E3A5967BA79F /* transport_security.h */, - 79E0F27F37F7CB6B638A794C270C5FDF /* transport_security_common.upb.h */, - 46E77518A5A98B05D0F1CFC87F3060F1 /* transport_security_common_api.h */, - AFFF590FAD835730FDABC04CC51CEAB9 /* transport_security_grpc.h */, - 0A762BAA1F593DCF2C5508248C2A6CA5 /* transport_security_interface.h */, - D7810A76693B06E29CF3126FEF8A7D1A /* transport_stream_receiver.h */, - C380B43CE839010FBBC62AF26CBCFA10 /* transport_stream_receiver_impl.cc */, - 38C40DA56BB662124BFBC6878106A8B1 /* transport_stream_receiver_impl.h */, - 1D152EEF95A1B79151411BC6D91C8806 /* tsi_error.h */, - 6368CD1DD42541FEC7E30B7745F86C2C /* typed_struct.upb.h */, - 732A82738B815AFB1B4180DA23BC0773 /* typed_struct.upbdefs.h */, - 3ECBD299F5CB35CCCA5E181F73C0A80A /* udp_listener_config.upb.h */, - AC1B7E7C9CAE9C3D76E36D07FA5850A9 /* udp_listener_config.upbdefs.h */, - 75E9383DA3E778B9D79F739FB202FA1E /* udp_socket_config.upb.h */, - 7B848F98AC8E5B6380E17439DE224151 /* udp_socket_config.upbdefs.h */, - 9FED9539579A679A149C62EEB6E3C094 /* unix_sockets_posix.h */, - BBA022C989B90B74C20524FC656EA6FC /* upb.h */, - 3F1837D7B34E7A0B9C4B4DB4AE1721A7 /* upb.hpp */, - EABF70D8A882EE12AF939E7386C8B8C7 /* upb_internal.h */, - 5A8664A9376CF43362546ECA70865293 /* upb_utils.h */, - 9694BCD69FE6E3355E49867C94915517 /* uri_parser.h */, - 85CF5959E52A9BCD943DD4A2513ECD71 /* url_external_account_credentials.h */, - C3CFED6ADCDF1D2EFF227DB4836B1822 /* useful.h */, - E566718B81CF266276E026CC37C9BC92 /* validate.upb.h */, - 27B0120BD8156120D5B01B0A9DED1493 /* validate.upbdefs.h */, - DF6D080175DA2DD01E385F9AE766F924 /* validate_metadata.h */, - 86C089F9BCD9B36830F63A147C686068 /* validate_service_config.cc */, - 02B2BB94E5E99839ADAD523E880D5433 /* value.upb.h */, - 4597EECA664D32D9B171C97CB20990C5 /* value.upb.h */, - 50D283A08685D59D0445348AAF1EF5B5 /* value.upbdefs.h */, - 738262579719C3A86B6310A3C464C738 /* value.upbdefs.h */, - C56B22C77FA201B137512AAEE747F26C /* varint.h */, - 45B97961BF706EE5E1AC410A3430EF27 /* version_cc.cc */, - 82889AE2BBF9643D34B161B9220FA9F0 /* versioning.upb.h */, - E93F49FA1B936E265C8DEA583A74DB54 /* versioning.upbdefs.h */, - 5CA5EE1DC15353402FEEB104EAAFAE4F /* wakeup_fd_pipe.h */, - D6084F302AF7DE26462CE35B96D689D1 /* wakeup_fd_posix.h */, - D94E3A1CB3C6DCD6DCF73B5FEBAF55A9 /* wire_reader.h */, - 3F4D3C79A1EFD71DAFA06D15113FD93A /* wire_reader_impl.cc */, - 3A9A604D130EC6035AF7272F56B6B509 /* wire_reader_impl.h */, - F0D2A6741B6AC3467AD675BC85B73759 /* wire_writer.cc */, - 8CD4010AEA140A8338AF644585089540 /* wire_writer.h */, - DABA334080FF1B8BC3C3702CF0D77E81 /* work_serializer.h */, - 21E0824CE197191EA4748AED5AB0F409 /* wrappers.upb.h */, - 757DF5613183737FB611AF88A607CFB6 /* wrappers.upbdefs.h */, - 851A72E7FAE45B9C9A9C917210006951 /* xds.h */, - 2965F18933BA8826E8718D022CC72933 /* xds_api.h */, - 652D316F848D030738302B4E03E0812B /* xds_bootstrap.h */, - 3E8357A1ECFAF908250B25DCBB8D91D9 /* xds_certificate_provider.h */, - 8C3ED1EDFC37613EDB539E2BF7DEAC51 /* xds_channel_args.h */, - B0D8B99945B0B084C6C02232E8361C9D /* xds_channel_args.h */, - 5F31A1F83903D5B2B2BB71333CD9BED3 /* xds_channel_creds.h */, - 9F018035A19CFC543F3B5AE22068BBB8 /* xds_channel_stack_modifier.h */, - 4643512161FB87430FB3F009482FF48F /* xds_client.h */, - 68C2F2ED49A02598CF47272D3EA5EF36 /* xds_client_stats.h */, - E0513206EB05495F91596B0BD900F18C /* xds_cluster.h */, - ED3709609F8752D5A98EFBE135A01FB6 /* xds_common_types.h */, - 8F35B322825A95585A34A326BFDFD064 /* xds_credentials.cc */, - 50026C6E0C9602DB8FF5797E20E827C0 /* xds_credentials.h */, - B3591DAABD127666506E210FB2D0D5A4 /* xds_endpoint.h */, - 9D365C16CAA0B8C6282A3774A4E36C38 /* xds_http_fault_filter.h */, - F72629B5E3E85846E45AEE242FA15545 /* xds_http_filters.h */, - 4176D58D7F4745AA544A4FD9812706C2 /* xds_http_rbac_filter.h */, - E086E6A087051487FC30ECA133659F06 /* xds_listener.h */, - 395811DC5AA530C99EF2FD78EC043A8C /* xds_resolver.h */, - 64CB5BF62892C0E010318D1AD688A34A /* xds_resource_type.h */, - 3F0F41918E1B54D5852E73828BAFE1C4 /* xds_resource_type_impl.h */, - 4A6DA410D05FF9B136222B9F0D0A19C3 /* xds_route_config.h */, - 397CA41A1D921FC5669816B7D4B7C988 /* xds_routing.h */, - 9A7A8C4E3175798BFBEAE05928BF686E /* xds_server_credentials.cc */, - 3A5CF7FCC3A671D9CFC2BF9433FDC736 /* xxhash.h */, + 2F967F5BE887A7D146BA84361773A1D0 /* memory.h */, ); - name = Implementation; + name = memory; sourceTree = ""; }; - 3EAFFF85DFD1F9CB3DD8CB4EA49C3424 /* optional */ = { + 40FE29309E588643F072B3349F159443 /* NSData+zlib */ = { isa = PBXGroup; children = ( - EC7E86AC2F60004477CA101FB037F81D /* optional.h */, - C8A770B7AABB4322CF784037E10DAC70 /* optional.h */, + 87CA56A9473E8927B8230993AEC4AF6A /* GULNSData+zlib.h */, + A8EC8AF43E0C4DC3B289328DCDCC08F7 /* GULNSData+zlib.m */, ); - name = optional; + name = "NSData+zlib"; sourceTree = ""; }; - 407EA160CD851BAF1543709228EDDB8F /* types */ = { + 418F64359BC065078C027253FE7A1C95 /* low_level_hash */ = { isa = PBXGroup; children = ( - DE76C2CE0DB11891F69D00CE4D99FA36 /* any */, - 706A2FA929F6743CA3D46BE5517BD076 /* bad_any_cast */, - EFB071A6B53035CB4514AA3A70D8BBE9 /* bad_any_cast_impl */, - 1E1C136AD4D5DE511DDFAB9E00EEA2D1 /* bad_optional_access */, - 7EB464E6D9D17690001E1E5D9944E933 /* bad_variant_access */, - CFBDAE4830F2D490E10CE60C1E48E196 /* compare */, - 3EAFFF85DFD1F9CB3DD8CB4EA49C3424 /* optional */, - 64DA161139834157C85D83A2A6A80C3D /* span */, - D2AF5DC7540FC26D0A726D4DA5CBB6A5 /* variant */, + 43497B990E7CEC0EF97315AA1FEE0B11 /* low_level_hash.cc */, + 20BC233FC5E586BC3A206FB53916E509 /* low_level_hash.h */, ); - name = types; + name = low_level_hash; sourceTree = ""; }; - 4174BDD3DEFC82E539AA4A1A256C186B /* endian */ = { + 44CA5AC8DB22EC65FCFD36D46A609132 /* bad_optional_access */ = { isa = PBXGroup; children = ( - 7A665B245C04D150D30C2A30625B2656 /* endian.h */, - 9DED17414A8AF61586F76653428F39B8 /* unaligned_access.h */, + AE4D0C333D9EBFEDD8A906483A1F29E0 /* bad_optional_access.cc */, + 7312C85CA4748F406EEDA4500DD8DB1F /* bad_optional_access.h */, ); - name = endian; + name = bad_optional_access; sourceTree = ""; }; - 41AB780015738496B9FFFE8923243770 /* container */ = { + 4699E2D315B4355E18D2A59D7982C01F /* abseil */ = { isa = PBXGroup; children = ( - A4FD254B0EA85F4CDB8CA65FFEF8869D /* common */, - 83E8FE994C8BCD0CBEE478F864019960 /* compressed_tuple */, - 727E965EB08E0510AAE2793D977D3659 /* container_memory */, - A3A09909A38178D599F3A22DC92574B9 /* fixed_array */, - 2B4B7002B2EAEEE9244C3FF52D48A21B /* flat_hash_map */, - F3DC4A3008F70B97719CC57040CC2FD1 /* hash_function_defaults */, - B8121DF608673F1A26D18AF51CB15921 /* hash_policy_traits */, - 11CD517BFEEAE4A2BE859987084C7EEA /* hashtable_debug_hooks */, - F9FA7E796C9E04F257DBE9EB355B753D /* hashtablez_sampler */, - 60549CBB5074ACB73246E8371D4A694E /* have_sse */, - FDB80A51E5E7CAFB688E14026F195AAE /* inlined_vector */, - 6929411A38F5F33B722000D48DB24528 /* inlined_vector_internal */, - A10DE23739A915FE0510F3408D7696C5 /* layout */, - 04D039002CFC98D9637366C0D1B63869 /* raw_hash_map */, - 7FD188F1FACF11F0BFC19CC421BE5898 /* raw_hash_set */, + A271992AFE5DFD228A4B41156E1535FA /* algorithm */, + CA240BE644538B611F95A81EF051387B /* base */, + 1DE00A4BBCF83685F4923551EFB6FCE4 /* container */, + 485C2AF98C90A29F4A61948198900462 /* debugging */, + 941CB1902895870ED849C4FFC66E6C2C /* functional */, + E426AD4DF0820165CD1B7CE355069FDD /* hash */, + D49D6826AFA6467C28F32FF1C05CD52E /* memory */, + 7E46A0E9F45E80BE6BBC62B6D1C80C1C /* meta */, + BE9F1AC7EEC8D5BB1AE7B17C5CA7C234 /* numeric */, + AFB35DABF35563B0560B74321CCCB957 /* profiling */, + 0C5C39B6E201A8391009E72357A4C2E4 /* random */, + 5985DF92A7BB1CF6F6F3931ECEC505E3 /* status */, + F4B41DD6D6C8D7B11D50F7AF3182CC5A /* strings */, + 24116792843F33FD8223687D99A5E7A2 /* Support Files */, + D2427D4DE6B759C8AB9E708B3541C130 /* synchronization */, + 6B2E40BD0BEA46E39CD7542D342FC5BD /* time */, + 8C120BB19E7D4F83AD4D18D6BA860020 /* types */, + D38F5ACF5AB06FB66A76326961D42AF5 /* utility */, ); - name = container; + name = abseil; + path = abseil; sourceTree = ""; }; - 430C90713851B5C8C35461378BB35B91 /* FirebaseCore */ = { + 47C45B362A9BA01173333FD63A009746 /* graphcycles_internal */ = { isa = PBXGroup; children = ( - 9B5663C982E680F48717C1421DE15D6F /* FIRAnalyticsConfiguration.h */, - B6B0856A30414C2B37E98E43B2F0E636 /* FIRAnalyticsConfiguration.m */, - 1B6718A703B00EB14A073DCFB26491B3 /* FIRApp.h */, - 4FDCF62811B45F39F2F50B6BF289981C /* FIRApp.m */, - 3983670B229BF8C8B83F57F6309D14DB /* FIRAppInternal.h */, - 9ADD56DECB0C96FC080968073B241E02 /* FIRBundleUtil.h */, - C61FE6CD94AEC48833C25BFA1E014AD5 /* FIRBundleUtil.m */, - C4B941A22C04C8C6DF1143C81758C0D0 /* FIRComponent.h */, - 14E9EE3053D8D4EC207AB9CCB6DD5777 /* FIRComponent.m */, - B2B15B6F16FCCDEE6466911D1CC6AEB0 /* FIRComponentContainer.h */, - 5FDCE4408F8DB8598515CB72BEE3C989 /* FIRComponentContainer.m */, - 244335E45C8683CDD25A3A32BE814CC4 /* FIRComponentContainerInternal.h */, - FD3FB7A62D0468C3221CB74747070AAA /* FIRComponentType.h */, - A8D24F79296A85FC3BC27FF65CE24B49 /* FIRComponentType.m */, - 35DC211A1B169631A2AAF447ED18AF9E /* FIRConfiguration.h */, - 9CE64C918297E52F0F66F10B8F140BF5 /* FIRConfiguration.m */, - C368D6A71A3C78EED135868B46878AB4 /* FIRConfigurationInternal.h */, - F5589CD8DD361E4ACC78FCDBC8EAD70A /* FIRCoreDiagnosticsConnector.h */, - 299F7B554D383F28DFF7121F9234D97C /* FIRCoreDiagnosticsConnector.m */, - B2800F81891250A61C71F852B7E69924 /* FIRCoreDiagnosticsData.h */, - 43FB5923F6352F0E64B8415389379F5B /* FIRCoreDiagnosticsInterop.h */, - 84877799626941D050865D6B8237B558 /* FIRDependency.h */, - A314D3C228735D9F7CAD586E0E88D1D5 /* FIRDependency.m */, - 3357F12C6D535E9D39B0257434E716F3 /* FIRDiagnosticsData.h */, - 493CB65C90A34FE875D76FCA4D7E81F2 /* FIRDiagnosticsData.m */, - 921A45EC6E7685EE8DEF303A9074BF72 /* FirebaseCore.h */, - 06EDAC646F9CB4D8FB7544DB9E4B3170 /* FirebaseCoreInternal.h */, - 0A1F48A2124CD01860DD254F8F89D30A /* FIRFirebaseUserAgent.h */, - 5BE27CD6D539A21E10BB1F379FF67E61 /* FIRFirebaseUserAgent.m */, - 1791BD2D278381AD70DEDF0D429E8309 /* FIRHeartbeatInfo.h */, - E260591847D6BC81E6A8BD445C5C9E1A /* FIRHeartbeatInfo.m */, - 5FD1DF123C4D2DCC3447FE82DB494FD2 /* FIRHeartbeatLogger.h */, - 509E04DC4DD7DC7401200EFB5AF05438 /* FIRHeartbeatLogger.m */, - 8EC840D202BCB192C7D00EC299D38CFC /* FIRLibrary.h */, - C373C8B4F652E5E072559B5DA58DD6ED /* FIRLogger.h */, - B2EDC07DCD20913C791F13BEC6B40264 /* FIRLogger.m */, - F8E2FD611083FB1271F8149585390B4F /* FIRLoggerLevel.h */, - 24EF0E90A52894A9FDE65FE9F01D4DD1 /* FIROptions.h */, - E66F5CE31CC30B5FC35F11E8037F254F /* FIROptions.m */, - EDF050AF714F458A3079DC64FC9A39A9 /* FIROptionsInternal.h */, - E055EEDB5448804CCEB4060CE6F61487 /* FIRVersion.h */, - 93B52EFCB10325914C42FD4CE7C2EEB6 /* FIRVersion.m */, - 783990AC3FC3E2EEFD877CA9430BF93D /* Support Files */, + CBBDB68610B579D2E518AF9B49C8907B /* graphcycles.cc */, + 222542F7A5F0F55C44B5116723671F1C /* graphcycles.h */, ); - path = FirebaseCore; + name = graphcycles_internal; sourceTree = ""; }; - 44214F3EC55FB9E70C802092A06893C0 /* hash */ = { + 485C2AF98C90A29F4A61948198900462 /* debugging */ = { isa = PBXGroup; children = ( - 7107980A24FA64ED8FF1546B5F245C78 /* city */, - E58432E09500AA7AA0F339DCF0292144 /* hash */, - 00EE997D7D2EBFFF3EAC0BF2F7725EE5 /* low_level_hash */, + 7B0E9F34A8F1B100811342BC9124B343 /* debugging_internal */, + 688CCBE6041A0B57F0E98D37E7289EBD /* demangle_internal */, + E6B3CDFBED8645AF6CB110AAF036B251 /* stacktrace */, + 7551218E8A4A65A349B1EC3D2E246ED5 /* symbolize */, ); - name = hash; + name = debugging; sourceTree = ""; }; - 49692F3658722BB64B875E7875AE0A8D /* pool_urbg */ = { + 4B391EA00D2FAA6A4CB1D25E9ED9E720 /* encode */ = { isa = PBXGroup; children = ( - BEE10044734B3238201A3C676591E4A9 /* pool_urbg.cc */, - B8BD14A626C65D8B2EFE971E319CBF1D /* pool_urbg.h */, ); - name = pool_urbg; + name = encode; sourceTree = ""; }; - 49C46C5A5480CC4BDAAE5E36264670EB /* randen_slow */ = { + 4C14F369ED05CD1E42D761F6DE48B555 /* compare */ = { isa = PBXGroup; children = ( - DD0A01392CCA1F02BB228D0F2797B114 /* randen_slow.cc */, - A74AEEAA35DF022A0436DB697F080F2E /* randen_slow.h */, + 48B9078ECB6F829D851FD6DCA7E526E5 /* compare.h */, ); - name = randen_slow; + name = compare; sourceTree = ""; }; - 4A65687811C442A52896D6DEB5F36EDE /* leveldb-library */ = { + 4CC0105901CDEA75B3C3A7236F6E374A /* Interface */ = { isa = PBXGroup; children = ( - 0E6E9F7FE8111771743D8A312B998CD2 /* arena.cc */, - AC439C40C5E71AD99666383E06E7084A /* arena.h */, - E7B379A0E11B63FEAEE4C1740322F28C /* block.cc */, - 47D8368B1331F87E64AF3F8F89257749 /* block.h */, - B0C185EB57E244F05E3A0786F995A577 /* block_builder.cc */, - B1A27515041EACD4431FA1EFEB4B51A3 /* block_builder.h */, - 3120041D8C193654BC3E2BF7D733CE35 /* bloom.cc */, - 52BB45DBBAB2980EEBC94F2BFA411AD0 /* builder.cc */, - 5E643F0A66D9C70133AAC679EAF85B41 /* builder.h */, - 5669B37980A2C27B347C88D24A5245A6 /* c.cc */, - FD5AACE58DB36475DB519B19FE32A6F6 /* c.h */, - 9C9DF06BCF4E83237FE65A93FB3B4884 /* cache.cc */, - 9554181735D19BFA24015081EDB0CE4D /* cache.h */, - F230DC6996F5E7002A9B7EA162E28AA6 /* coding.cc */, - 3AC9F2B2AAFA037C3768B7FE6FF141AF /* coding.h */, - 013A3C96BE818C952C2F61253C4447B7 /* comparator.cc */, - 0405A327F66A55E127C175A635EA75EF /* comparator.h */, - A0203E352DB193475DC72FD6DB884C32 /* crc32c.cc */, - D32EEB7FA859C547483EFC63973D03DB /* crc32c.h */, - 39A961976764BF330487B056DE5C71E7 /* db.h */, - F929D05607622872F8B4AF7A7E916917 /* db_impl.cc */, - FBBEB415CDF581F0D0FEE2A27814EC2F /* db_impl.h */, - 2E0BD66856E6AF55D5C343CBCD359A9C /* db_iter.cc */, - 1F11D4EAFD46F076444507B6BBA949EE /* db_iter.h */, - 2EB847EA7567E480A69A6C979104B841 /* dbformat.cc */, - 849A1AC8CEA272691DEB327D46B88ECC /* dbformat.h */, - A0E6D8157E71211666EBDF7C5B8A585C /* dumpfile.cc */, - 38AA84479919B2FFD980307C3D2922D8 /* dumpfile.h */, - 63ABAA30B4B26D75FADB481A2A636B6B /* env.cc */, - 7F1FDBF639CB74864A60D21F5939F2B2 /* env.h */, - 58FBA651283CD0BDF6C1AA81F2BDC415 /* env_posix.cc */, - 2D369DC3002DB936D7ABDE484CD4F9E8 /* env_posix_test_helper.h */, - 5C2DADECDCFC712412643C07ECB91D85 /* env_windows_test_helper.h */, - 3FC5BF75FE215C2E05C25572297F40DB /* export.h */, - 0EC397F569D7D2B5DF68B5054B7260C3 /* filename.cc */, - 24032A9C5706531404A71BA4BB02939A /* filename.h */, - 895E1CEA80836E9355FBB0D9B1F245DB /* filter_block.cc */, - 072F84CD6CCF8A5485861B918443B04A /* filter_block.h */, - C5B6F5FCEDB50DE728724C20810DB6B7 /* filter_policy.cc */, - DA33895D36C435FA4BC565AD172DE4B5 /* filter_policy.h */, - 902C79C2F988CB00311D588742020FAF /* format.cc */, - 886F2C2B3EF92B2D3B0943E0880EA5A3 /* format.h */, - 694C41002DCBBB5B3E2502AC20BA5EB2 /* hash.cc */, - 73E03BF203B59BE424A6EB6AD507DEEE /* hash.h */, - CD79C45A43DBD53D96E4584895F586DD /* histogram.cc */, - 946AA4CDEA08864E41DBA020331B8FB3 /* histogram.h */, - CD70ACA3F6A313E808CA86A0A53A0203 /* iterator.cc */, - B012F97C2E9581291445922A05D0E52B /* iterator.h */, - 3E0B38D5A88BF6FA2B3D59BFB020BEE6 /* iterator_wrapper.h */, - D201AE938325688A6F184084D68B7B36 /* log_format.h */, - 8D9512FC96B3406B60B3E3B1BBF67A28 /* log_reader.cc */, - 350BB5B6ED4023073151A810AFA778F0 /* log_reader.h */, - E2AEB9A76A326E3D381622EA7B9D3590 /* log_writer.cc */, - 015628D7908A39BCEDAA4DC667A59F1B /* log_writer.h */, - 9360FB5B4510F108C95F0124171BCADF /* logging.cc */, - 191F6F794486933834A6A920B289F428 /* logging.h */, - 9D35367D95FD068DB4B92945AF8370E1 /* memtable.cc */, - A1107E5BF01847F78DA2700745DA4621 /* memtable.h */, - D873FD51C63E7E9AC400868B6B35AA0F /* merger.cc */, - 17BCED408F6BD628CEEC4DA6BAD202B5 /* merger.h */, - 2A6023FCAA29295E143235996A575562 /* mutexlock.h */, - CA6AF997449AB6C9E406D9576E3CF119 /* no_destructor.h */, - 13EB72C9B72C5613092F38C7C7222FF2 /* options.cc */, - E171BFC3FEDD0AB3D030A68AD5D52FBF /* options.h */, - 54568FD644571921487F46147E154CF8 /* port.h */, - 2ECD7C45BD93FA085A307E6852B8D685 /* port_example.h */, - 835794F36BDFBDD5B31837218FC86943 /* port_stdcxx.h */, - 35A187026BEB48CC183F2B53F9FD0FB0 /* posix_logger.h */, - 181B0BFD03F5CD3E793CA4720EA9BF49 /* random.h */, - BE170FC7CA84E6477031C385CC1729A0 /* repair.cc */, - D597823B6ABD6474B4C340558C63BFA6 /* skiplist.h */, - 09FC723A640A7C6E406509A5D7C99137 /* slice.h */, - E83840BAED426BA06FE7371113DC90ED /* snapshot.h */, - 312CD1C44A9663F11F15772DA1532D07 /* status.cc */, - B05DBC6E4E6F2CAABE5B0E9AA646EDB8 /* status.h */, - 94C69508ED2E514CC2067BCD234BD4AA /* table.cc */, - 1F2C525FAD66DEDFF64B68820F9343DE /* table.h */, - 4C32542114D83D699B0B70FE71665939 /* table_builder.cc */, - 7C3A4A8AA200F17F3AECD5A88285A09D /* table_builder.h */, - 46533F3DADD032DF1BF49BD402476FA2 /* table_cache.cc */, - B51CBF8F09D2C579A338EF24B3A56F45 /* table_cache.h */, - E93F17885C817A781D7FEA8C61ED67D9 /* testharness.cc */, - 389EFCA755EB4F8668D8F889C277C70E /* testharness.h */, - 129DD4B06CDBCBED6594DD40D9AF5C06 /* testutil.h */, - F33B22EFACD93B2FEF53E71050B22243 /* thread_annotations.h */, - 10AF5FCFDDD0356D5800BBAD7AEE4A7F /* two_level_iterator.cc */, - 9935419A6C0E6B1EAD44499AB3D4984C /* two_level_iterator.h */, - 01F6F82C661D7152709701740551DACD /* version_edit.cc */, - 1F4ED41D435D163928AFE2FFB17FF36C /* version_edit.h */, - 7DAC6D463F38520CDEC390263A93D7E8 /* version_set.cc */, - A5E74D52AD59FBCC6892FA2B9DE91173 /* version_set.h */, - EA6C9BD4AD61CFF187F7EE76821C1BA4 /* windows_logger.h */, - 8EE29E7D1062BC6577A4D494107952A2 /* write_batch.cc */, - 7E28BF9D80CED00CCA8BDFFC2E3A0F20 /* write_batch.h */, - C76FA5CDBBAE22AAB9DBFBE95E3B330F /* write_batch_internal.h */, - D400A358BEC79483A1F6AED4F661E14D /* Support Files */, + 142BAC3E00F92DDA8AC50C4894D1CEBC /* alloc.h */, + F65861A77F437B535A95FF0F9BA7C312 /* atm.h */, + E620F75B4A9F300C31DAFF6E0BD181E2 /* atm.h */, + F9EA6A3F09D4CD645DC140A0B2CE519F /* atm_gcc_atomic.h */, + DEB076FFE6C1664CF4B31BA9DBD36A76 /* atm_gcc_atomic.h */, + A93A25E96B6646D87F59740E5465C423 /* atm_gcc_sync.h */, + 72EB6E8123424B7353248FEE6438E9DA /* atm_gcc_sync.h */, + A6BF954226F3C86469A411A6478CC4DF /* atm_windows.h */, + 300CC38DB0B5158CC7DA24851D85D915 /* atm_windows.h */, + B9CBF4FFF90E24ABF6A57A6C1329C201 /* byte_buffer.h */, + F57DAF752B104388493F9381E10AE0B1 /* byte_buffer.h */, + 0F4ED610D209A731FECDCA1F755C13AA /* byte_buffer_reader.h */, + D2444FB1B29D1AA32C66A29C8B245A51 /* byte_buffer_reader.h */, + DB7CA64EE476A52C869C6CB8479077AC /* census.h */, + AF0192C801E381D3AACAF8E7028B72BB /* compression.h */, + B6F45E436801A1BFF694BD3D754D6CCD /* compression_types.h */, + FEF102239F868716D826D65BC45454C7 /* connectivity_state.h */, + 08A90E8EA63519502C99AF43F65E1EC9 /* cpu.h */, + 4BF21151DACE726AE78BA6A91E52394F /* endpoint_config.h */, + 0AB166A86A15C9A6168BA580967CF507 /* event_engine.h */, + 4E1A4AF91207EFF398216F6D75E5365E /* fork.h */, + 6210309F33436D6AF88C985CA34E979A /* fork.h */, + 9E9A66CC635D1A9FF2F776CA93E7088B /* gpr_slice.h */, + 562464A9098271CC9C9BF184AEF5E852 /* gpr_types.h */, + 5FCC5E2FDD77F250F8DC37D0CB45EE11 /* grpc.h */, + F6395FD60FD3776C43DF65880FFE8819 /* grpc_posix.h */, + 23F048857840E1552D4EE8BB0345A18A /* grpc_security.h */, + FF6EAB0B70F43AAC2C4F021C8D82A9C9 /* grpc_security_constants.h */, + BF4215CBD6B65F5339C83938B61508FE /* grpc_types.h */, + 7193C679299DEB859CE57EE44E430486 /* load_reporting.h */, + 23E3230EDDB33B21720A74DDD06C8F32 /* log.h */, + CA840E3A087AEFC0F15D539A7094600D /* log.h */, + F00561C5C2C53ABCB5BA8F1A327A74A5 /* log_windows.h */, + D42B3AB9160698E7425FCCD0152E596E /* memory_allocator.h */, + 99209FFCA2CC3411FBC2243B07127272 /* memory_allocator_impl.h */, + 403C3AB3414115AD58E217898C0621D1 /* memory_request.h */, + B10851A33C44B4EC8C8E607B2DE362C7 /* port.h */, + 42E91DE07B22E155D8AC0EE01F5DE51C /* port_platform.h */, + 0647D74034C7585F265E71E900324560 /* port_platform.h */, + FEC60A96BE17402D5E64335CAFE447E8 /* propagation_bits.h */, + 8C35293BCDE88E397197E78F775756E0 /* slice.h */, + 6994BCF4F4EED4EC0E81CE7E3CADA3A2 /* slice.h */, + C1A43C770F0E82FB48D84F4EB3501B7B /* slice_buffer.h */, + DDFEE1AA7CC544A225BE1C2CE2CE4497 /* status.h */, + A608A42A171C22F314D75A2603BB484F /* status.h */, + 8F9D535350D7601F8B49AF8FCAEFD4B1 /* string_util.h */, + F4F59497B3D80F88FA6C3C5EFFB0C23E /* sync.h */, + 126AF4997B7141D09E52313EE3366F74 /* sync.h */, + 55D852ECBA3506110319CDB7694912D8 /* sync_abseil.h */, + AB707B7445C8ABA916FED612057CC9FF /* sync_abseil.h */, + 1B393CD861E3F68EA587AE99C2F8D512 /* sync_custom.h */, + FDE57C13CE0BD1FF00774383BDFA28C2 /* sync_custom.h */, + 2AEF8D669655BA0208EFF9CC50D2E500 /* sync_generic.h */, + 86DB2BBCBF9518BA3AA40F08FD664980 /* sync_generic.h */, + 94F91E13FEC3C0614FDA44D6EAA6DD5A /* sync_posix.h */, + A069DA99CCAD2DB2EAE50BDAF70CE923 /* sync_posix.h */, + 35062E72C18DE895C67666887F2ED13D /* sync_windows.h */, + EE2AFBC39DAED75A56A3132E5775A9B8 /* sync_windows.h */, + 51040BD76F8D0881F8636F3AC5E1EC38 /* thd_id.h */, + 9D60C152F48B68B781AF5C39486BE073 /* time.h */, + C3AF09FFC8175DAB3DD55A2B9080EA22 /* workaround_list.h */, ); - path = "leveldb-library"; + name = Interface; sourceTree = ""; }; - 4B4BDF3B5E82F82E427184C90548D600 /* traits */ = { + 539C75B77C80CA6DF80C79184D8EEA5B /* raw_hash_set */ = { isa = PBXGroup; children = ( - 1531EAFD9B94BF49DE0811872AE81E53 /* traits.h */, + 4A2D0E1C0FE0A39CDB68705093EB5AFC /* raw_hash_set.cc */, + 7959245F8371DE65402E60302EEBE8AE /* raw_hash_set.h */, ); - name = traits; + name = raw_hash_set; sourceTree = ""; }; - 4D6E85653EF021FB726F2D950DA03502 /* malloc_internal */ = { + 54241325C476513018424E03BDEFB770 /* Support Files */ = { isa = PBXGroup; children = ( - 13D5B46034460DA584B40760F42C4DAA /* direct_mmap.h */, - 49213FF9A5BE564C95F0B6A2061AF8A8 /* low_level_alloc.cc */, - 991A355D55796AB7BB69E454A4B6E48F /* low_level_alloc.h */, + 5FBDC7AAD706E1F90D76DE780B5CC1BF /* IQKeyboardManagerSwift.modulemap */, + C200A0C0BF6F4F6A5225DBAD53C21C7B /* IQKeyboardManagerSwift-dummy.m */, + 1F40CF0F20027A9DF393F21990AE779A /* IQKeyboardManagerSwift-Info.plist */, + D1AF8BE84633AA012F19E96CF4F43B98 /* IQKeyboardManagerSwift-prefix.pch */, + 2D8AD11CB45F420996FB36FF740A4823 /* IQKeyboardManagerSwift-umbrella.h */, + 1CC4ED28ECDE0D8C895E606DF1A4BE2A /* IQKeyboardManagerSwift.debug.xcconfig */, + 6ACCBFB1978DB94DE7C20DC567EAC616 /* IQKeyboardManagerSwift.release.xcconfig */, ); - name = malloc_internal; + name = "Support Files"; + path = "../Target Support Files/IQKeyboardManagerSwift"; sourceTree = ""; }; - 4EABDDE1547E80B75F542F084D81007E /* GTMSessionFetcher */ = { + 5451FA84D6437958787330E96D61E88D /* gRPC-Core */ = { isa = PBXGroup; children = ( - 00ED19AF75E661ABA0309FE345D77E45 /* Core */, - 346BE5219C9A8D60B00852703BB6E22B /* Support Files */, + 6513DB28DB8BBAC3962B9AB680C93209 /* Implementation */, + 4CC0105901CDEA75B3C3A7236F6E374A /* Interface */, + 84E29B6FF4EA03C9C1A70DA725DC6613 /* Support Files */, ); - path = GTMSessionFetcher; + name = "gRPC-Core"; + path = "gRPC-Core"; sourceTree = ""; }; - 4ED5DD61AAABF1212CF2C116063D5A61 /* Support Files */ = { + 55B9D491AB8413F076177163203CA9C9 /* hashtablez_sampler */ = { isa = PBXGroup; children = ( - 8434161CB17DA4554036A55A1DCE1BD2 /* abseil.modulemap */, - FBA1410D0DE6F9F93C6C8430C26C3D84 /* abseil-dummy.m */, - B9C7017BB3C27702D3154948CFE0BD23 /* abseil-Info.plist */, - E7DE45560437692A216A598C00E9D614 /* abseil-prefix.pch */, - 9C56A8DE9CC940E70F89D1C12AD373D0 /* abseil-umbrella.h */, - 5E511D58A382BBA38D601B2E14812370 /* abseil.debug.xcconfig */, - 1FFFF58013F964E342FC7BFA429875C7 /* abseil.release.xcconfig */, + 5D5B3D260E7A95F8BE74DFDA9BA72A24 /* hashtablez_sampler.cc */, + 9C52D546207DF656FE73935D4F93614D /* hashtablez_sampler.h */, + 95C818AE4B75DFF34F617F351F42C276 /* hashtablez_sampler_force_weak_definition.cc */, ); - name = "Support Files"; - path = "../Target Support Files/abseil"; + name = hashtablez_sampler; sourceTree = ""; }; - 50B035D33D3757208F83884ED8D2100F /* dynamic_annotations */ = { + 57DA87D816BB87BFF746B03C69FACD0A /* Resources */ = { isa = PBXGroup; children = ( - ABA290EC2591C516C56D719B1852CDA5 /* dynamic_annotations.h */, - 7BC94C5B9BAE2B14775EA499DE8D5BFD /* dynamic_annotations.h */, + 4C0B9BC70028F8BDB5E6EF31F3F9986C /* roots.pem */, ); - name = dynamic_annotations; + name = Resources; sourceTree = ""; }; - 50C1FF5BEB3A46CD874798EE3B4E7272 /* Support Files */ = { + 584358D30153E608231A9D297B75642F /* bad_variant_access */ = { isa = PBXGroup; children = ( - 61D19B8AEC91178AB1D8A68FC679EFEB /* FirebaseAuth.modulemap */, - F27183A113D1803C275050826C9FE06C /* FirebaseAuth-dummy.m */, - A7E93837DCF69807648A719A28942B13 /* FirebaseAuth-Info.plist */, - 3ED40FBFF36D5236F836E60AD9233617 /* FirebaseAuth-umbrella.h */, - C8671C2960EEE6841CC7A15BE702D244 /* FirebaseAuth.debug.xcconfig */, - 58AE3D4C9E9EACADE37CAC4654B7A8D8 /* FirebaseAuth.release.xcconfig */, + 931431E6DF51F21A745BDDF263049BE4 /* bad_variant_access.cc */, + E22F844D60F529F5134801ECC367A985 /* bad_variant_access.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAuth"; + name = bad_variant_access; sourceTree = ""; }; - 551E11E787AB0C9D3BE3F696ADFD7B94 /* randen_hwaes */ = { + 5985DF92A7BB1CF6F6F3931ECEC505E3 /* status */ = { isa = PBXGroup; children = ( - F005F70494ED628BB86D4C7FBF979460 /* randen_detect.cc */, - 40DFE258C35DC934C0E722347EE71772 /* randen_detect.h */, - 20A0CE992004A9426ABBC87C8A9F6DC1 /* randen_hwaes.h */, + 688052905ADAB8A05B1C543221A75AF7 /* status */, + EF09DADA10D471E6958156CD9B812EBB /* statusor */, ); - name = randen_hwaes; + name = status; sourceTree = ""; }; - 55A01D2BEC0EBD5AD9379016748C8351 /* cord_internal */ = { + 5BC9D49280CCF661B1ED6525967CAF43 /* FirebaseCoreInternal */ = { isa = PBXGroup; children = ( - 86FD8F68F4A6B1F258C6DC6DCF572316 /* cord_internal.cc */, - 581D4E97B9C153D6581E9FAB58DBE173 /* cord_internal.h */, - 948646B1AFF25DA5C7BE174D5E915130 /* cord_rep_btree.cc */, - 755713338B82495EAAE3EA194A5670CB /* cord_rep_btree.h */, - EB4995C236C3160F2405E7443D18A1AF /* cord_rep_btree_navigator.cc */, - E15D9432149ABFD448857B24887A93DF /* cord_rep_btree_navigator.h */, - 1A6F5673FB2F36B1D67FCF0357FDA396 /* cord_rep_btree_reader.cc */, - 93B49580A9E0B5869DBBD970105CF082 /* cord_rep_btree_reader.h */, - F81B2DEC6F23DA165340E328D390E626 /* cord_rep_consume.cc */, - 0CE331B4A316B5158904BD0AF7046BD1 /* cord_rep_consume.h */, - 6745690495A83AF162F72A6DBE1940D4 /* cord_rep_flat.h */, - 0844B64D32D2C69136CAA33112FE2A5C /* cord_rep_ring.cc */, - FB2417058DD5CEBAC8310A2F6C7DC5F6 /* cord_rep_ring.h */, - 9A42DA666AADED2E2544A554A7B7AFEB /* cord_rep_ring_reader.h */, + 538C5B477539D111D6BF27DA0237F8D0 /* _ObjC_HeartbeatController.swift */, + B9BC0A23DD7CF33F460DFB18F7F3CE1A /* _ObjC_HeartbeatsPayload.swift */, + 911A8E5B2A2F6B96CB03ED205E36B910 /* Heartbeat.swift */, + 397AA49D4E32C37CC6C46FB56AE716CC /* HeartbeatController.swift */, + 68C0F703B5AF27E74CFA839AB320AEE7 /* HeartbeatsBundle.swift */, + 91B0A0A6DECF32C0BF9DA4F223A8FD05 /* HeartbeatsPayload.swift */, + 1C41A01919C55C0302768A0F09466A44 /* HeartbeatStorage.swift */, + 1DE2308B456F61A5053416DE12A392FF /* RingBuffer.swift */, + 96E668612E5C599B08A495CD157D36BC /* Storage.swift */, + 1D8ECA21E4FB0D8DACD0C720E8FDCADE /* StorageFactory.swift */, + 8D7B5132173B2657373F61218A221CE8 /* WeakContainer.swift */, + 232C2ED8FAE81FEAA0B9E6835FAD6B93 /* Support Files */, ); - name = cord_internal; + name = FirebaseCoreInternal; + path = FirebaseCoreInternal; sourceTree = ""; }; - 56E5B42D19EA27DA8B4603BDCB74AF4C /* decode */ = { + 5F4670155108705E4ED5E52B65FA1097 /* traits */ = { isa = PBXGroup; children = ( + A7D269AB0FB453D78BCDB9D50D0A0F23 /* traits.h */, ); - name = decode; + name = traits; sourceTree = ""; }; - 58D1E91B0630900D10C442A552519A6C /* core_headers */ = { + 5F6F4E87D43AA68FD89B743012585E1A /* core_headers */ = { isa = PBXGroup; children = ( - 6846867D83FA317565DCBBD309E8E075 /* attributes.h */, - 625D95E33A7CCAA64F96F303F8DF7849 /* const_init.h */, - 7E7CC535C54B4C290FC6574D455BBC01 /* macros.h */, - 3C217BBE0010EA2018747A49C2E09B16 /* optimization.h */, - 0DBCD24DC3549995F4AFF9F0732601CA /* port.h */, - 067F7C4805B5D6AB5D84D50A8C75A24A /* thread_annotations.h */, - D71D6E7417FA89D1FCB946E368E0ED5A /* thread_annotations.h */, + 9E8E3F8B77B723DB6AC0A3AF53A49375 /* attributes.h */, + A2E13F21644CB7F8EE99B8EAB5205CF4 /* const_init.h */, + 956AACB7C5BDC297F5C379DB0198F13C /* macros.h */, + 4CB6B1AC62511A94BE481FB3593CA606 /* optimization.h */, + C48B24C6C25047B9C23D66D6C8CC09CE /* port.h */, + CE768BF67CC6E9A977A5B2EB912DB27A /* thread_annotations.h */, + 084DE8F2876486094F9CAE017C66B9B2 /* thread_annotations.h */, ); name = core_headers; sourceTree = ""; }; - 5A8299208F2D7F539835A125A30B7612 /* Interface */ = { + 605FA0DFF5430E7F80AF4F084A57B422 /* platform */ = { isa = PBXGroup; children = ( - 2073042D8FC0B43DEF5AA93400752DD5 /* aead.h */, - 1C4E3D4CC02E345C5BD0D5E5FD013CD9 /* aes.h */, - CC063C2A7B8CB16DF2DFD45FBBD5CA20 /* arm_arch.h */, - 80A49061F055B7D233D2FF64AA86922D /* asn1.h */, - E2DEE01B8736E272BF2B3BAFCECD78B2 /* asn1_mac.h */, - 454BC6F09893DB98D038BF08842DDF8F /* asn1t.h */, - D1AE94F64AB48AA3BA2E6A823B375E5D /* base.h */, - E188EC24E7F2369ECC6533CFF6B204E7 /* base64.h */, - 9EA4C37FFC9BB6F490FF72042F5965DA /* bio.h */, - 01268477E858E2ABCF1131613B5DA3BA /* blake2.h */, - 80AA230DB59574DCC959E3FF257A83DC /* blowfish.h */, - E651DB79FC5ADC9A7D0ACA4E8496A1DB /* bn.h */, - 803EDF75568F55113E38FF23D1F613DA /* boringssl_prefix_symbols.h */, - 7E42C7053CD3F40C7B1AF6F78A0D5F3A /* buf.h */, - 7C13AED8D03B4ACC81C7729DFB9C812A /* buffer.h */, - BCD67F62D3A37E89988A0DDC70EA3827 /* bytestring.h */, - BFB6E1805E7B3DFB71AE091FCE70E7A7 /* cast.h */, - 9A8902AAE8256B1B28A69B8B8D0C6518 /* chacha.h */, - 45620454AB15091C96150170C78F36F5 /* cipher.h */, - 843DA236A67DEDF7C48D0607833BCE52 /* cmac.h */, - E52A76C25EF128EC971D9F68027D59FD /* conf.h */, - 296B9FB2DB614DAD2BA84C5A83834DE0 /* cpu.h */, - A8B40FABF7C9DC1A6D565AC76543388F /* crypto.h */, - 50B468FC41F6FACFB7107DD6DDB1A625 /* curve25519.h */, - 439DC80A01D31D0DA565A05B973F8FB5 /* des.h */, - E9FA2AAD6655170A9A03B73C111477A2 /* dh.h */, - E8EC9429436F9734233822710E79603A /* digest.h */, - 4D6FCAC420BD70D8C784331997B03988 /* dsa.h */, - 8B8BF6AC21340963544E8EDB827FF15F /* dtls1.h */, - 99196ECA0D094F3B960C9D145B4A096F /* e_os2.h */, - 9A3A1282A2E933B905C7D1C5054F0D08 /* ec.h */, - 965F7CB033AB2E3BADDF45577EE78429 /* ec_key.h */, - 748535293A4B8357E06D6A89DC8BC041 /* ecdh.h */, - B9577714B976A0958049FC26BED592CC /* ecdsa.h */, - B06D6B84B14FF60295313EF657430D24 /* engine.h */, - 66B2001F35E3D8A9F964D9463FE34364 /* err.h */, - 3906597C467D6690628F0B6330797BFC /* evp.h */, - 3377F11FB830CB2910DC9922CF675B8A /* evp_errors.h */, - DE0321B044440171F6DE03BAC7F46A6B /* ex_data.h */, - C249643E210F1F2C7022B7B6C54BC15A /* hkdf.h */, - 6A3CE590B9AAA81BD046A8434120A69D /* hmac.h */, - AC1757E25D2FF46CC7149B4F5779648C /* hpke.h */, - 9574B180021F11527759A92483EEEAF7 /* hrss.h */, - 71CEA7AFF8F7FF6501D68F03E9D31B63 /* is_boringssl.h */, - C5124ABCF913986F2FBD6E597A502927 /* lhash.h */, - 1D4084D4193630FD21926688D6848A62 /* md4.h */, - 804D74B24C099F007E82385C074E358F /* md5.h */, - 5E8F118AC86E9E7EBAAEBFF0ECFA062D /* mem.h */, - 431FF5DDC22FBBF06A0B03B99793FCF1 /* nid.h */, - ECAD3F5F27AC7B82A341BF9833C8A251 /* obj.h */, - EE7C0C751870C4A9442DA503730D2D98 /* obj_mac.h */, - B24F3DA903BD8100E8D425CD745B55A7 /* objects.h */, - 2D9437CE97B4AB49A4A92D1C11D67C7E /* opensslconf.h */, - 7AADD034B3C585D0C5C8539243228CF7 /* opensslv.h */, - 11D542BDE4D613A4E0F0C144F1E103AD /* ossl_typ.h */, - 06AC0FAC7618637C3953ED6E44B0C385 /* pem.h */, - DCBC5FAAD2345D712AF224E2301033E3 /* pkcs12.h */, - C22D0766A636764E0563915F251CA9BB /* pkcs7.h */, - A39F583D65D9ECFC003B2D66C2E7CC3B /* pkcs8.h */, - E840D06A13004DA5F9D2848A1199EA15 /* poly1305.h */, - A717D22B8ABA4AA45090C343CCF71B65 /* pool.h */, - 213FAC7B282298253E9DE2551076FE8B /* rand.h */, - CCD3458F0E0060AE7CAC7A5C21933035 /* rc4.h */, - 63DCB79C7DF7F13F26253ACA6599A4DA /* ripemd.h */, - 0DCEA46D88606CCB5D800F62EC370C36 /* rsa.h */, - DAEA55D952FC7E5F38FCA8F814871D05 /* safestack.h */, - ABB514FAA54C3281A8E801B225061E5D /* sha.h */, - 2E64C988A06069008CBE7404176446EC /* siphash.h */, - 98D605D86226A52F8A71732FAF42DEF3 /* span.h */, - 8C10ED87C02DADCDA8F7C6BC35FB31CA /* srtp.h */, - E0C232F842638FF1D1B46F350B0E2B89 /* ssl.h */, - BAFC39741BF200511FC99A6EBFC66312 /* ssl3.h */, - B99A03E51536BF873FAF6362BC129688 /* stack.h */, - 519CFAE5E80E0858F22B1207F772371D /* thread.h */, - FD8F6EEE135322871F125D0C7D51B718 /* tls1.h */, - 939004C04998985A7719C668EEBF007A /* trust_token.h */, - B748240AA518D9D87AB8B900C2E689D7 /* type_check.h */, - A90769AEF2AC0A5F00D058E4C00F878C /* umbrella.h */, - E9D2894C386C06DD677DDB65D31CB243 /* x509.h */, - A6868B58A5965A5AC8A6307D6B06D0A2 /* x509_vfy.h */, - 58CA1261190A47476BFFD6E6D5769A99 /* x509v3.h */, + 19E58619A905A60545E7361436CEC842 /* platform.h */, + 44690891378AA8507C2EB90776DDBD5F /* randen_round_keys.cc */, + 0DB1513C2F7F8453BD3E9AED62A6A0D6 /* randen_traits.h */, ); - name = Interface; + name = platform; sourceTree = ""; }; - 5B8BBF86C3EE10EEBF88F2AE23B596C8 /* numeric */ = { + 60B8083C11FF7AA4F59DE4362A25F72D /* Network */ = { isa = PBXGroup; children = ( - 628CEB7BE63CF80334F0AE34657CCA7B /* bits */, - C94A5C8720AE20CB9278CB8DAE6D2B06 /* int128 */, - E152E06602C7E9AEF05896DE68C73546 /* representation */, + E17F2EE6208F50466B652F4334748216 /* GULMutableDictionary.h */, + 0555D00DD1A75BEBEBD60DD89971510F /* GULMutableDictionary.m */, + 87797C848BD4CB4D3F2998180CA0E047 /* GULNetwork.h */, + 8BE885DE77972A097FAFAD69969415BF /* GULNetwork.m */, + 4488D1F40EC76A480CBC912EA2F4EBF4 /* GULNetworkConstants.h */, + 151AE99B8D21F573846F6D33F9804E9A /* GULNetworkConstants.m */, + 126A51B36C106D311BBA22FF9600DF6D /* GULNetworkInternal.h */, + CA04015DD20574F92E7BAA916AA6CB1B /* GULNetworkLoggerProtocol.h */, + E99CC9EEFE9C5E325F63C1723699E6FA /* GULNetworkMessageCode.h */, + 87A4C65A5A10C9E21C560E8B98D3943E /* GULNetworkURLSession.h */, + EFA41B7180704E364FC7085DE7AA41AF /* GULNetworkURLSession.m */, ); - name = numeric; + name = Network; sourceTree = ""; }; - 5D972A31AD0473DDF9BE7EA7EA7E45C9 /* strings */ = { + 61C08477B9457FD8A2D7465B718BBF1F /* str_format */ = { isa = PBXGroup; children = ( - 097FCE724C24321BBF2C60C883A2E544 /* cord */, - 55A01D2BEC0EBD5AD9379016748C8351 /* cord_internal */, - F694ADB62E083C397A4B43EC4D0B05BA /* cordz_functions */, - 736A492E4A71360B57CD115F14D5A5B4 /* cordz_handle */, - 17A07BC5CC31DC17A3665BC0D019B6D3 /* cordz_info */, - FAEF9ED9BE148EA0FA9714B40BBECF78 /* cordz_statistics */, - 7C1C831D5A41153CAA61AAAED73B051B /* cordz_update_scope */, - B1EC3E3C8A92DAF105AF25D4C8EE23D4 /* cordz_update_tracker */, - 8841A658708A7D8D67EE1848E4886F77 /* internal */, - B2279B2AA90090C510EF34A20C9CCB50 /* str_format */, - A94242E6CBA4D0D3CFC21A314E5E4851 /* str_format_internal */, - BFA92DBD63A08A99FC1E5F393BF1D1CB /* strings */, + 0CB6326033EA1B1A7C15ED9360D8311F /* str_format.h */, ); - name = strings; + name = str_format; sourceTree = ""; }; - 5DF217806CFBE7DA9B640F7102058397 /* time */ = { + 62F3BA6BF49B671B968138287E7E3B61 /* Pods */ = { isa = PBXGroup; children = ( - 89274D0E80CA9AE9EC08FE08AEAF401B /* civil_time.cc */, - 09A090612BA2D7BFA79EFEDE37B18C92 /* civil_time.h */, - DA906284FC068648F7216A429E622F62 /* clock.cc */, - 0ABE47976C44914C32EDB89690E04A02 /* clock.h */, - 3DEB0765CA6612B20935BDE6214A3B76 /* duration.cc */, - 7D4B26A4EACD684AC489DECF84D7AE37 /* format.cc */, - C309F76B736E422845A3DDF683DFD0EC /* get_current_time_chrono.inc */, - 8AD15CC95EFDF231753C086B3E07BB4D /* get_current_time_posix.inc */, - 16A5313D7B313F88137F8A59086AAF1D /* time.cc */, - 2DCF8F8EA5F27C10634FB81A368742EA /* time.h */, + 4699E2D315B4355E18D2A59D7982C01F /* abseil */, + 23178FF6E4A791C51B7A9972842942A6 /* BoringSSL-GRPC */, + F4A634DD9C61C340488863027F2F0328 /* CLTypingLabel */, + BBAA066C9D6979DB16722638BD77FD50 /* FirebaseAuth */, + C1443155B67EE2F43A3437A08858712A /* FirebaseCore */, + B9ABCDF92C43295182DE9A171FA21B04 /* FirebaseCoreDiagnostics */, + 5BC9D49280CCF661B1ED6525967CAF43 /* FirebaseCoreInternal */, + 03A2681F9131402F240B8F441D05F244 /* FirebaseFirestore */, + ECF8D6D3838869F5852FC4B4928A7B6B /* GoogleDataTransport */, + B76EBB27A5596DD680240ACD06E9045C /* GoogleUtilities */, + 77B8EE84F4D390A5568FAA078B3B8408 /* gRPC-C++ */, + 5451FA84D6437958787330E96D61E88D /* gRPC-Core */, + 67FEB637EE3772CD395DEC9B42310CE2 /* GTMSessionFetcher */, + 3783F8B7CF6DF0E0D07B47E2BF4DE8EB /* IQKeyboardManagerSwift */, + D6B62B7D57E5C5DC40861644773AD0DA /* leveldb-library */, + 633509E2F0D9DDE919CE495B8C2A745A /* Libuv-gRPC */, + B47AC2A2B916CFFC58054574982DA294 /* nanopb */, + DED676CBFCD942E19DB07F09C8132E99 /* PromisesObjC */, ); - name = time; + name = Pods; sourceTree = ""; }; - 5E201643EAD2A4098ACB579743658CD4 /* utility */ = { + 633509E2F0D9DDE919CE495B8C2A745A /* Libuv-gRPC */ = { isa = PBXGroup; children = ( - FF602C6B56AC57B500B8C62ABC8828EC /* utility.h */, + CBDA8F8AA923576FD111AFA495292A8E /* Implementation */, + 946BBB63A070714BF91A8FA3EB63265B /* Interface */, + 207F177004490657FA75CF5ACD17863F /* Support Files */, ); - name = utility; + name = "Libuv-gRPC"; + path = "Libuv-gRPC"; sourceTree = ""; }; - 60549CBB5074ACB73246E8371D4A694E /* have_sse */ = { + 6513DB28DB8BBAC3962B9AB680C93209 /* Implementation */ = { isa = PBXGroup; children = ( - 339451B1E530FE7CBDA9C45BD6ADD87B /* have_sse.h */, + 32FF9A95BC61747B387449B0212A6666 /* accesslog.upb.c */, + 4B615C246F827C5529AA65E2EAB8D932 /* accesslog.upb.h */, + 492648A11C172B7FD87BC647777317A7 /* accesslog.upbdefs.c */, + D28093562E3AD4577A45CFD0D1A7616B /* accesslog.upbdefs.h */, + FDF9132F36FD5A2879860E650BDC7EFB /* activity.cc */, + 0243BFC51D0FE9BABFBC22D2AF3CC1DB /* activity.h */, + D2DD942DE37A1C976C70E36196ABC577 /* address.upb.c */, + D55F3E7EC07CAB9AA780456A2D19703E /* address.upb.h */, + 3FAA18511C34D208F7D35CF2BFAF4224 /* address.upbdefs.c */, + 00920AF9A5329398C511ACB2668D298E /* address.upbdefs.h */, + DCE9A776DDC0D8B3FA3920962F113D22 /* address_filtering.cc */, + 006B361EF0DDA63FEA280C8DBC84677B /* address_filtering.h */, + 1E2500CB9DD4EED57F5C6C3C4DC88E5D /* ads.upb.c */, + FBFC9891497705E665B3D4F6DEF80E18 /* ads.upb.h */, + A449FB7CF969D503D80E613DF2452CF9 /* ads.upbdefs.c */, + ECD9C1AD00A434B0B894FA3052AD97CF /* ads.upbdefs.h */, + 15B504B86E720B714D5846F2762C80CB /* aes_gcm.cc */, + 1F27EC5B1A5F8DF113FD359C3B115943 /* alloc.cc */, + 48075C8CCFDEC075472B34BA1DE2E7DF /* alloc.h */, + 7DDDF0F1CEBDFA8806A37A31E237B099 /* alpn.cc */, + 81E806B3541DB451F73D7DD5A39A3A5A /* alpn.h */, + 499D04FAEF069609B2E94043FDC91872 /* alts_counter.cc */, + 806D89885BFC7E5DF1C298DD4C7A714D /* alts_counter.h */, + 4DE7350C9BE67FDB878476E06F1B18EB /* alts_credentials.cc */, + 8576198941D22B1B99E314936F2083B1 /* alts_credentials.h */, + 2A907CC6D7933639291D149B0A7CAEA5 /* alts_crypter.cc */, + 24437CC2BC4649F4243DFCC14E1DAE09 /* alts_crypter.h */, + ED00133570DACEA6B2BABAADC608C385 /* alts_frame_protector.cc */, + F769F0E06CD49A8FC7635DB140A9E63C /* alts_frame_protector.h */, + 2DAC98092449261BA82F469C1837FEFB /* alts_grpc_integrity_only_record_protocol.cc */, + 497E117FE5B34BDE747CAD5EC371C268 /* alts_grpc_integrity_only_record_protocol.h */, + 919774887117C902CEDC901D1DF25E3E /* alts_grpc_privacy_integrity_record_protocol.cc */, + D5DA043265ECF82E27BA78E66469A58D /* alts_grpc_privacy_integrity_record_protocol.h */, + 72F4FFB3C62AEADA83E764B0CBE11311 /* alts_grpc_record_protocol.h */, + 8F033835A1E7CF680CB3E11638D47E2C /* alts_grpc_record_protocol_common.cc */, + D0B6BD5E6BDC6B8215DFAACF48190C23 /* alts_grpc_record_protocol_common.h */, + C385857C6EF39474FB39532ADFC34227 /* alts_handshaker_client.cc */, + F5592AE487A64F81BA6B6D75D03950E8 /* alts_handshaker_client.h */, + 760DC6159A6824A6D8439DA5B10F561A /* alts_iovec_record_protocol.cc */, + 54C2ED12431B10F5E01F87923D41C2F4 /* alts_iovec_record_protocol.h */, + C0F3984CA713818B460B6CEAFBDDBB2B /* alts_record_protocol_crypter_common.cc */, + 6882255841D4F9B10CB68867864064F7 /* alts_record_protocol_crypter_common.h */, + CFA29A7114330E1FAC3D47B23BE454BA /* alts_seal_privacy_integrity_crypter.cc */, + 01E646F778B3EBA695C4BC81397D91F8 /* alts_security_connector.cc */, + 55A7E306843BBF9740DD3498CEB9873A /* alts_security_connector.h */, + 9880324B4514D1A6A702BA66BECEC1DD /* alts_shared_resource.cc */, + 6D3814C1269878D5B32600D028F2AFD7 /* alts_shared_resource.h */, + AACC353BA8BF0B096EF718E492724AFD /* alts_tsi_handshaker.cc */, + B25CA275CD71214CCA50293281D337FB /* alts_tsi_handshaker.h */, + 42B5D53977DB945726C49CBBEBC47361 /* alts_tsi_handshaker_private.h */, + 886ADFF92E86D9070F5632C8A8E55526 /* alts_tsi_utils.cc */, + 80970750882AC55CC666A8DAAE072D87 /* alts_tsi_utils.h */, + 5CFAEFD67C646FB49382613BEADA2544 /* alts_unseal_privacy_integrity_crypter.cc */, + BFC5F518EAD7FDF7AF14F9346F4E5F64 /* alts_zero_copy_grpc_protector.cc */, + 5B79D2AF181F21AC6D0214D2E5B8AFE1 /* alts_zero_copy_grpc_protector.h */, + 267CB669FB91A7500E5A02EF2C573020 /* altscontext.upb.c */, + 9CFC452A280BD8091CBD238A621270F2 /* altscontext.upb.h */, + 7B5C084B3ED94DB76A990EB0282A3355 /* annotations.upb.c */, + 5B9A30E4D69D5CA645AA2905BB09E506 /* annotations.upb.h */, + 9678763CE5D372B4DEC3C74681688B8C /* annotations.upbdefs.c */, + D07D685E707E7F242C354E361F8076AD /* annotations.upbdefs.h */, + 7FB7E286913B33681221E4685CF90A9E /* any.upb.c */, + D3DD53AA4FC87F50475CFA80C04DCD3C /* any.upb.h */, + 8E7C5ECCDDF015341817F62C190D25C1 /* any.upbdefs.c */, + EFFD7B3C2B5EF824BD95FBF58EEE8BAD /* any.upbdefs.h */, + 78B20338386F13EACAB9839EF45B9D52 /* api.cc */, + 203099FB0E8257AF41C6F891C3C55B6D /* api.h */, + ACB19832AC5DD190E0FD6D0ADE5DCE03 /* api_listener.upb.c */, + 39FF8A679572874826445F00962112C8 /* api_listener.upb.h */, + 1919AF9EADD9D62F6BF5020A84129F75 /* api_listener.upbdefs.c */, + E5055D8187C0A775F6B45F2F298B102D /* api_listener.upbdefs.h */, + EBA5B66010CA214851C9C0EEA70CCA5E /* api_trace.cc */, + 6F5288621737CD47050C406C8761597C /* api_trace.h */, + 560AF41FE8958C2FEBB0DC10319FDA88 /* arena.cc */, + 267C2810B9F8E1E4F4D99EB8713EA979 /* arena.h */, + 8F9887C18FD290B3FC48ED448BB3AC8C /* atm.cc */, + 77A7974DD49392B55DC143C7ACA24D39 /* atomic_utils.h */, + 638B7695EC6F1CD6D44BEC11D1DFE44F /* auth_filters.h */, + 764089E2FA6D55FE8C4A8DAE740A886A /* authority.upb.c */, + 0A6B81FFECACC796545E147BE723E4C5 /* authority.upb.h */, + 6D4533F2A36AFFE480A9F7FAF5E34248 /* authority.upbdefs.c */, + 70C85EF373FD87205BC5E879DBBEDDE3 /* authority.upbdefs.h */, + 7D8FB42255FF02ABF43AA485C778403B /* authorization_engine.h */, + 5D563A37FCB837032CC6816203AFB2AE /* authorization_policy_provider.h */, + B04930504767C05A2FC7D4F1638024E2 /* authorization_policy_provider_vtable.cc */, + BA26B2BC9BC04A695DE8C3D65FBD2CA9 /* avl.h */, + 752DA0A6C007A01CFC1F7C1AA13F396A /* aws_external_account_credentials.cc */, + 39D725A6D66D200A4062814D8DCD798D /* aws_external_account_credentials.h */, + 9266FC025E8F264D30AB21F0E42AE989 /* aws_request_signer.cc */, + 7057A7950D894C0BF5191CAAA40E0E5D /* aws_request_signer.h */, + 8D5EA5666B1298991B51D16361E8CBB8 /* b64.cc */, + BF4FB011FBF38983A560A386F247B366 /* b64.h */, + 01FDC7A97AFF00DD0D8ABFAFBB0DB2DE /* backend_metric.cc */, + C33FFCE12E841F4D422156626D2EB150 /* backend_metric.h */, + A10072035B5A053F75D0F472BD4D2A04 /* backoff.cc */, + 6D9F280597D57C6D3E455A588E4C156C /* backoff.h */, + 2324ECB5A326712897DDD9C76D11F9C7 /* backoff.upb.c */, + 3BE3E85F22BFA2653E3BB2C4936F61B7 /* backoff.upb.h */, + B048076B96CD466AF68DF53C85E28524 /* backoff.upbdefs.c */, + C18E3FD7F2341479AE24F24A7ADB425D /* backoff.upbdefs.h */, + 9607F8706F16146FDE7800CF12964BF3 /* backup_poller.cc */, + 00879357934899F0C8BA56AC5A95A09F /* backup_poller.h */, + AF592134A72CB0C30C9EAF1F2AE1F9F6 /* base.upb.c */, + A65A56AFFEC3C9F0AE54C0FCEAE76102 /* base.upb.h */, + BF62FBF57F7BEECBD1E57458F58C79A9 /* base.upbdefs.c */, + 572FBEA03BA545ADF8FB59E62C4BD2FD /* base.upbdefs.h */, + B5F49B4FB642AF64CEE861ED7BC34E15 /* basic_seq.h */, + F113D3ADFB58195F3443398B6E9D3D06 /* basic_timers.cc */, + F512630DF934F17FFF541C759659343B /* bdp_estimator.cc */, + 41CE5CCD52BF239731484BBD5209F70D /* bdp_estimator.h */, + 44DB22EF141FC0320D8A50C4162ED541 /* benchmark.h */, + 6A1863EE3EBFDB0909A88880C808ECD7 /* bin_decoder.cc */, + 07F0289768A955BB891AEB439771BF16 /* bin_decoder.h */, + 95E32BCCC5363DFC9FCFDF8FE5FAD5CB /* bin_encoder.cc */, + DE3359BA5884380CB0C246704179F199 /* bin_encoder.h */, + 09F5F49D53B9BB3DC563AC80A2EFAB1B /* binder_resolver.cc */, + 10C635B39A61EDC24FA680F668742DD0 /* bitmap256.h */, + 40D2B8E95257152412E5DF689FE7AAB9 /* bitset.h */, + 8B24BF66614DCB2302F24BDC56E654DC /* bitstate.cc */, + BAFD412FDD2286D101551673E224839E /* block_annotate.h */, + 02FC08EB17418E66A5E005DE0F37AE17 /* bootstrap.upb.c */, + FD51DBD3E53972319EDAB4144F5A2328 /* bootstrap.upb.h */, + 5FF4D2B86A46C7C52D455671215CF541 /* bootstrap.upbdefs.c */, + 25B85E37ECC402FEBB103BADB23FA683 /* bootstrap.upbdefs.h */, + 15C97B12DC98C9967D92ED8337225EF8 /* buffer_list.cc */, + 3779E0F16F1521F6F3277F478A65B3C0 /* buffer_list.h */, + 7132DE232F85CFCB70E56BE252C3A4EE /* builtins.cc */, + F068C8027FEED50109D6A4B529672C23 /* builtins.h */, + 622F6DEC6B803A3EA0D4FE7279B72B20 /* byte_buffer.cc */, + B0CED8E1344B32A921026E75B3C1A32E /* byte_buffer_reader.cc */, + 14084DFEF25675C6B4B7269904E8C7A7 /* byte_stream.cc */, + 5973C9D8C59541173331872A11564099 /* byte_stream.h */, + F456401E236AB8A6F0725BFB197AFF7D /* call.cc */, + ECE02372DB1C641C1931FA7D4C85099D /* call.h */, + 5B16156FF014C01D83F102F5C887C479 /* call_combiner.cc */, + 6313C40257275E95BD33D614D3445410 /* call_combiner.h */, + D31FE068A127C302D8F7F5D7C76D98C5 /* call_details.cc */, + 3DA6A57FFFF5160D75A42F983AF7487A /* call_log_batch.cc */, + 2914F5E8E2267E4A8BAF8D191F4AAF5C /* call_test_only.h */, + EFE03AF06D51C162CD4743C4A87F406C /* call_tracer.h */, + 9CDF8178D302358527F79694E239436B /* cds.cc */, + FF987A20278666261487785ABDF92545 /* cds.upb.c */, + CDC97BB76E35D7F30C048607AACD4F38 /* cds.upb.h */, + BC0F1F1A4256EB58FB26AF116CBC8E40 /* cds.upbdefs.c */, + 072D1AB381FBB39A6A8037063331AD10 /* cds.upbdefs.h */, + E8FE79EB3890AFB95FCFE2A919F02167 /* cert.upb.c */, + 359D731067F13BF105D9BA28817FB2A0 /* cert.upb.h */, + 135B8B0CA70D96984E3DC15DFB332A8D /* cert.upbdefs.c */, + 7506595E1A717BB3A9F6703838620EEB /* cert.upbdefs.h */, + 5EEBE74FF56720CB8ADEFB48C6437519 /* certificate_provider_factory.h */, + C31B294CC0DB58D6F2B509E44D1707AD /* certificate_provider_registry.cc */, + 82A59E6E4AEB2EF6C4B0620D3837A95B /* certificate_provider_registry.h */, + A112657624EC7269A7F5F0723405518D /* certificate_provider_store.cc */, + 3CA4F43E44484A3AD75B6B060C3A394D /* certificate_provider_store.h */, + 446B8C05915B2EA7BC4DD869CE3DD222 /* cfstream_handle.cc */, + 5538E61C17F9316886F4E51BB8C0A731 /* cfstream_handle.h */, + CA654FB05A53DBC89801F3A99AF0FE18 /* channel.cc */, + 8520AFFA2978E05AFA6EAED696FB4EB7 /* channel.h */, + 784684E7B5949AEC5486ABC77D2D65DB /* channel_args.cc */, + C7F62D38A2775EE80B1748767B6986F7 /* channel_args.h */, + AC1A0A7DFCD286929648B1FAE0A14B51 /* channel_args_endpoint_config.cc */, + 2F29F306315360662F87534E6F560F13 /* channel_args_endpoint_config.h */, + 8A596FAC82D96C68D759F5E9171E4C2A /* channel_args_preconditioning.cc */, + 6D5841F8520AA8E5E142712400F2B607 /* channel_args_preconditioning.h */, + 2658663D9FA7D2F5524BDB67C4E4D350 /* channel_connectivity.cc */, + 309CBD8BB74EDB1932BF53FA1FBBA230 /* channel_create.cc */, + AD4DDE22FE799C744B853593FF4793B7 /* channel_create_posix.cc */, + B8CA2D21358AB3D8B1763C378CEFD64F /* channel_init.cc */, + F1057FAB8C3052F92105AD81BBACDA9A /* channel_init.h */, + 95D8117E65C593C0C7B1713D58654AFE /* channel_ping.cc */, + 8BFCE9DF2C61AD5A8FCF9025D41995C1 /* channel_stack.cc */, + 484B9ECC054B1DEE954B91CFEA77F341 /* channel_stack.h */, + 76F103B75E51B9E162F85CA081D14721 /* channel_stack_builder.cc */, + F592EFAB282167BEA02F2D825BEB5072 /* channel_stack_builder.h */, + 05711C93F4D9C8238D2EE5C91C99A58D /* channel_stack_type.cc */, + 8572275BAD31AF313D1E9651ECC699E0 /* channel_stack_type.h */, + 999C652C58E56484E3E1F5702832271D /* channel_trace.cc */, + ECDB16D56F4307BC842215F4A960A93F /* channel_trace.h */, + 3DF537A84EFD3960A0A1CCD4B970AD3A /* channelz.cc */, + 5781859900B1E947D7510BBCB0CF0D76 /* channelz.h */, + 007B120B423112F45A3727724D0FF503 /* channelz_registry.cc */, + E7631C6857E1FCAD4E94B8437BBC3425 /* channelz_registry.h */, + 7D7B642DBBFC8855AA92F401A5394F4A /* check_gcp_environment.cc */, + 4102AA4D934483719AF83C6BF818E021 /* check_gcp_environment.h */, + 8C188E04DF1C2257B843979E9187DC63 /* check_gcp_environment_linux.cc */, + 029515E0EF6EBE6E350B8384AC34EB7B /* check_gcp_environment_no_op.cc */, + 18BDA5949C07AA38F5C2A6BF4BCE6E07 /* check_gcp_environment_windows.cc */, + 696AB914AF5F9986FBC651828F72F532 /* checked.upb.c */, + D64A09F049F99289F7A8803ADD48DE7D /* checked.upb.h */, + C98B47989E9CD155B621638ED85C5CF0 /* checked.upbdefs.c */, + 912F7093A813CBD76A294FF378F6E19D /* checked.upbdefs.h */, + C6812AA0CAD1171442D8A0781FFA0DC7 /* child_policy_handler.cc */, + 6EFED1EB7904940E57293695D1FB106D /* child_policy_handler.h */, + 0FBD575224EFDFEB6B5910C74FCE280B /* chttp2_connector.cc */, + 62713261DFE8C7DE41FB439F9D4A21B8 /* chttp2_connector.h */, + 0AD4C25D111EBCD7A285BA534D7114AD /* chttp2_plugin.cc */, + 8C7A7095D5CD0446D8D8A783372AD861 /* chttp2_server.cc */, + A73ACBDA5EABF651B090C16886794A7E /* chttp2_server.h */, + B063F8B367D896FF50DC4B81E08EA986 /* chttp2_transport.cc */, + 75043BCBD0E8257C1EB6CC913D1921A9 /* chttp2_transport.h */, + 5803ADE7B3AB6FB872E2B2286B208C3E /* chunked_vector.h */, + 43BED2383F9D549DD2848B05E53240F5 /* circuit_breaker.upb.c */, + FF04A5357ADBD8413D0900AD2C7A263D /* circuit_breaker.upb.h */, + A64CC4020799B8E992984694F6305C83 /* circuit_breaker.upbdefs.c */, + CF260A4356D6041BB4E9D7FA7D31A48E /* circuit_breaker.upbdefs.h */, + 3EF57A78639380AAF8E47B110FF609D1 /* client_auth_filter.cc */, + FEE386601BAB8C15BCF9C45961455790 /* client_authority_filter.cc */, + 7C665D1FC2400C7FBD0985A56412D91D /* client_authority_filter.h */, + E07B4B5591B8BE7A130D27A1383800BC /* client_channel.cc */, + A5298F5507196E30966765AEF9A12C81 /* client_channel.h */, + 1390E11AC6DACF63251110EC2EC85541 /* client_channel_channelz.cc */, + FFA54A0203ACC12DBFB935BB78ACC2EC /* client_channel_channelz.h */, + 1E30CC57EEBC812C9E45A5E9010E3922 /* client_channel_factory.cc */, + B228A3BA0D841F288B97AF28C6D29154 /* client_channel_factory.h */, + 3CC57CCDC3471978B257B37E0C3C911E /* client_channel_plugin.cc */, + 2CCCD23A2078F328966CC394207AC8BF /* client_idle_filter.cc */, + A690ECC41782304699232B8FBB95A0A3 /* client_load_reporting_filter.cc */, + 321BFECEF6999A994A74CCDDBEE3155B /* client_load_reporting_filter.h */, + 7351CD6C6FF3C7673164A80FBCAB51F1 /* closure.cc */, + 46FD6EA8B3CF0B9F1E0FA67D28EFF8F9 /* closure.h */, + FDE9C33B7249A91C26C6615344F3D91A /* closure.h */, + 91FF92BDAE6FCBBE8D38CE5DDEE72E0F /* cluster.upb.c */, + AD353950023E563AB79B582282B11022 /* cluster.upb.c */, + 208684B9B33542CD9573C1798AAAE64F /* cluster.upb.h */, + C19C66C81F43400E6B7F3A1A6332C07E /* cluster.upb.h */, + 48A6841FEE537E960B30F075A0263588 /* cluster.upbdefs.c */, + 5A935D1215A4F83C6391B6F1ADE279DC /* cluster.upbdefs.c */, + 396DBDDCB905DB57DBCB4BD46C24ED3E /* cluster.upbdefs.h */, + C5B3DFB69F3749843207BB70517664A4 /* cluster.upbdefs.h */, + 0855FCABC5CC29BF405ED80CA5914841 /* collection_entry.upb.c */, + 5858922D99E8E158080A289DDE9D003D /* collection_entry.upb.h */, + 4ECA1EE622E19A95455C13C2E5F77CB6 /* collection_entry.upbdefs.c */, + 37C5A878B8F9C2938221A570432644E3 /* collection_entry.upbdefs.h */, + FB64A299FA079200E0FFD9E416DE4B65 /* combiner.cc */, + 778944EF90E0AF6A8F76FC1C448D3DA3 /* combiner.h */, + F6C8934F4006159D3C59FA43FBDE1EAC /* common.upb.c */, + 6D6498B238B0D884E33878D6430C73A9 /* common.upb.h */, + 932159A5B60C35572F4F285173CD8BCE /* common.upbdefs.c */, + F9191D37BA551900F6BC97464182CFE1 /* common.upbdefs.h */, + 0AAEA4B59D6A4A5D3AF14E3189117991 /* compile.cc */, + 31009BED7AAF5A9E454E636103159E2F /* completion_queue.cc */, + 4F99C09C601326FC2A42B485B897C92B /* completion_queue.h */, + 15060E5D1AC87590BF1DB6D4711416EE /* completion_queue_factory.cc */, + 48D8265656FFB2A95AC849DF5F1BBF70 /* completion_queue_factory.h */, + 4A94F90F7F288FA4CD24208DFF7A1DB9 /* composite_credentials.cc */, + B5ABE53DDF1514BE545E1416D9BE1B58 /* composite_credentials.h */, + BBCB50AFF80CF8A3B908BFAF073011C5 /* compression.cc */, + BE7E1B85B2127296946E2328446E9232 /* compression_internal.cc */, + 262B0481D4BE48ED29EF7DE5A6868D73 /* compression_internal.h */, + E89766E350AA39D9253360D977A2B93B /* config_dump.upb.c */, + 16D81653BF9F1A673F7092B8DBC3C29E /* config_dump.upb.h */, + 70201AB404B80BCFD74785BE68F49F69 /* config_dump.upbdefs.c */, + 8896A5F9E14C7E43C5FDE0EE69112D81 /* config_dump.upbdefs.h */, + 372DADBE14421823DB7341B40A977724 /* config_selector.cc */, + F4D62B773DB53025922B293C0273A9FF /* config_selector.h */, + 824ACA31A49C961E34CEE26C94515B59 /* config_source.upb.c */, + FA89B4B878CA605910CFE2EC42101CD7 /* config_source.upb.h */, + C62BBC0332111AE4487B73BFDC845BB0 /* config_source.upbdefs.c */, + 31BC3E811530CFC8F0EF0226B7348954 /* config_source.upbdefs.h */, + 596254AF98AE198BB3766F558BD4B779 /* connected_channel.cc */, + DBC481F7767DD342D2A38E88DB0DC061 /* connected_channel.h */, + C90F9B6E14FA8A0A2B5CB5BD033DC3D1 /* connectivity_state.cc */, + 840BD586EA3F2FF045F833F88B5D2D4B /* connectivity_state.h */, + AAB2830BDE4A6BEA0914A4C0B58F1358 /* connector.h */, + 7BD9F4D44B1C856C58E7CBBC4BCF8198 /* construct_destruct.h */, + 24C1F69F35DD6E593DCB74A3AA13ABBD /* context.h */, + B344AFAAF604BA0DF872CD167361676B /* context.h */, + 0098A4E3BD46BC9E53D89653525BA4CB /* context_list.cc */, + F17777EAD8BDD682D13AA0F1E06A28E5 /* context_list.h */, + 4554FE62434AD47E7BE5AD8D41FA21AA /* context_params.upb.c */, + C81D1C36629B2EE09FA0ED1A417D46DF /* context_params.upb.h */, + 4647CFC9238F8CBCD4E621328943A4CC /* context_params.upbdefs.c */, + EBD130E1500A13073B025DA6F72BFEF2 /* context_params.upbdefs.h */, + B7367647018216267FDFF67F4CA2FC7E /* core_configuration.cc */, + 413336A3AD8A68C59E99DCE2EA66D53A /* core_configuration.h */, + F5CC6BBCD8477E1A3B2223362E4153EE /* cpp_impl_of.h */, + 724BD849C8EEB14B5E2F02C50FE1421C /* cpu_iphone.cc */, + 34AF97BA28592DC7F5C3A97979CBFA56 /* cpu_linux.cc */, + FA0F2F4F285D42BF2CFB6BCE4B858952 /* cpu_posix.cc */, + 78D65E58792CBFD7E57CBEC8D657DEF2 /* cpu_windows.cc */, + E4C3864BF98BE105781E475394D65B5D /* credentials.cc */, + 493954DBDE29FD4570756388741CAD04 /* credentials.h */, + 418C58E37D96EB403A28D55DD86E31A2 /* credentials_generic.cc */, + 9BC50F9EEF9CC809F40CFD35B6D24D45 /* csds.upb.c */, + 29D75BD93CB111E10CB5FB61FB5E8193 /* csds.upb.h */, + D027DA0D473F0811F0E010C9945FA145 /* csds.upbdefs.c */, + E58C81289A917C9C8CE1312F6459BC03 /* csds.upbdefs.h */, + 4059BC07EACD150FF20B681A90D3013D /* custom_tag.upb.c */, + 3103D2707A39D8E54EE8A61BA87FE160 /* custom_tag.upb.h */, + 5B1D381FC620812B7160FB2B6F5315FA /* custom_tag.upbdefs.c */, + 543C9A412F08F2FF8E20DAC07090DD68 /* custom_tag.upbdefs.h */, + 33CC137C078B1C7033561A34382A5F6E /* deadline_filter.cc */, + 9B70A676789C4036F45575C5400D5CAB /* deadline_filter.h */, + 5E96910125E734038FDCEFD0E533E850 /* debug_location.h */, + 87F2DE9B7144CDF1B1CDD6ECCACC74A4 /* decode.c */, + 4B99CEF7CC07DAA0ED03E00EC195A0B2 /* decode.h */, + 7C90747DB81AC465985B192149AA7505 /* decode_fast.c */, + F1264FB8E80312972C194247C7A7BF40 /* decode_fast.h */, + 97351319126C6E12F0989A29CE01309F /* decode_internal.h */, + BBCD703816993D667C25512C6416C90B /* def.c */, + 8CADFD2E9C9E9D0FA1119A0312A0CCF4 /* def.h */, + EA1EBB0FFFCE5E65F3BAB536F2BA3228 /* def.hpp */, + 8BEB4B6334A6A2FF9B3C3DF7DE1FEF65 /* deprecation.upb.c */, + A0E87F5100ADC1233799FF3EC2ADDA82 /* deprecation.upb.h */, + 06EBC8B1D097C52B9BEB39D39CA483E7 /* deprecation.upbdefs.c */, + 0AA469C5A2390D89F888254BE32C63D8 /* deprecation.upbdefs.h */, + 56057FB488A750ED673ADDA72344E7CE /* descriptor.upb.c */, + 609D8229DC5796383B372B11BA4CE4F3 /* descriptor.upb.h */, + 33B79C59F59F3A79716C2C69E630659E /* descriptor.upbdefs.c */, + DF6BC080E1C49276809A3A3A20803233 /* descriptor.upbdefs.h */, + E37F2AABAADE5025DE0828D9A595345E /* dfa.cc */, + DF8F6E6F7ABCBE5FC9BF034F55A2C170 /* discovery.upb.c */, + 2DBA37C445628D1DDEC56CF0C0D006D1 /* discovery.upb.h */, + 4A7B7582268692FEEA52E674ED68797E /* discovery.upbdefs.c */, + CA85223E8FB7D38B6D9C4DDD12F5618F /* discovery.upbdefs.h */, + 2CD950219F348C7EC48D1211809E6117 /* dns_resolver.cc */, + 685C4C02AA2BC8DC76BC9BD3611D88AC /* dns_resolver_ares.cc */, + E9EFE1F476CC5B039CCC68D5EC13805C /* dns_resolver_selection.cc */, + 48A7939C380950AF9C80BF3538AD3569 /* dns_resolver_selection.h */, + 30B8747CF4B6991912C14A471762EDA1 /* dual_ref_counted.h */, + F0537B2D6FFACD3B539A00A9406B5611 /* dualstack_socket_posix.cc */, + 58646B88661D5D3A973664E34220D43B /* duration.upb.c */, + 4026E53AE81A7A1FD6DB893ED084676E /* duration.upb.h */, + 4DEDA71BB7E1C1C8534C00B1BA060716 /* duration.upbdefs.c */, + D67FF6EDBA9EB3C5C4A871B7FED5C7B4 /* duration.upbdefs.h */, + 2A26D5DA9D23D45D2B4F240A0A6E4923 /* dynamic_annotations.h */, + 69E678E29ACD6A376DB477E1556D2D2F /* dynamic_filters.cc */, + E3EE72E50F4818844B60E39819557CE0 /* dynamic_filters.h */, + AF892002BF0B20FAD65D1802BAFC9ABB /* eds.upb.c */, + 4B646F91E0AFE8ED3A71A02AF4589A29 /* eds.upb.h */, + 799111C34A20120534FEE39622188F58 /* eds.upbdefs.c */, + 7941BA33958084DB7766BA4544C318DB /* eds.upbdefs.h */, + 8EB6251B5CB5D835A15D94801C034F4A /* empty.upb.c */, + FE085D2F673689A6EFBDD8FA64154F1C /* empty.upb.h */, + BCE53906EF594B37ECA01FEC8E2F31E8 /* empty.upbdefs.c */, + C2A9A58EF080DB671CD159B73866D874 /* empty.upbdefs.h */, + 2E625E60169FFE650103F1022492C6D8 /* encode.c */, + CF1910744D731D8D1DE5D406923944F5 /* encode.h */, + 3C698D114E0EE6E7F70E713612BC1979 /* endpoint.cc */, + 6121E59BAC646E8C26449AA7C3B2B744 /* endpoint.cc */, + DEA04C956E10597DF939666F703AC80F /* endpoint.h */, + 8E45FACEF041958D30FDD2368545F208 /* endpoint.h */, + B003672412C6F617EB7B44F073F9287B /* endpoint.upb.c */, + FE62FAED0B82D41029BFDB7AAA32A6BB /* endpoint.upb.h */, + D22F5F204AC6427322AC7B623C0EB91E /* endpoint.upbdefs.c */, + DF2F603DF81AAB0CCDCB04B75162B522 /* endpoint.upbdefs.h */, + C4DF734238FE975A06865A21EFDEEE26 /* endpoint_cfstream.cc */, + 5F1C213C08DDC760EE67C2738174148D /* endpoint_cfstream.h */, + F08A0D25742710B0B4C354EB51BC35F6 /* endpoint_components.upb.c */, + 18B497E857E3157981E0F07BC7C3AA74 /* endpoint_components.upb.h */, + 9F45A1698308FCB29D391C5B6CD5E3A5 /* endpoint_components.upbdefs.c */, + 8837D5D326B1FFADCBEA8814537B3113 /* endpoint_components.upbdefs.h */, + E7BB2D194EFAD897D8F13523729764F3 /* endpoint_pair.h */, + 87CA1AD95DCD2E545747474B90C3ADF5 /* endpoint_pair_event_engine.cc */, + 971E8D8964B43658FA29AA67920C9F22 /* endpoint_pair_posix.cc */, + A8CBABB5330A57379F1DCC9820C39FBD /* endpoint_pair_windows.cc */, + CB3642375BFB3A7FF907CD0C33DECD85 /* env.h */, + E4CB4E7D3F695A3BF053E1DCCF808172 /* env_linux.cc */, + 56086DD8C914204EAD42BE9137D76CEA /* env_posix.cc */, + EDE92FF333BC8CAD95393C844FDABD52 /* env_windows.cc */, + EFC13648B23490CFAA1B1A8F3F863EED /* error.cc */, + 79828274D3FA905866B6193BB65EB029 /* error.h */, + 460A395B99F62B1F22F4C0BAB3509D73 /* error_cfstream.cc */, + 230B38CC0F95584A3C8FB7465C7022CD /* error_cfstream.h */, + 0D59D30EE8FEC9F2B562D40BFB1A8E90 /* error_internal.h */, + 10BCA44F44C44BE5FDEC11ECB7288C30 /* error_utils.cc */, + 0DBB98ED72932F3B131F2BC52EF61DDD /* error_utils.h */, + 778F3114A7F821D2CB8EA76A30D11459 /* ev_apple.cc */, + C57A40087137252FA4A06E35B91EA5BE /* ev_apple.h */, + 19C8644BD153A68FAE898C7DADAC77E4 /* ev_epoll1_linux.cc */, + D7B9B5ED968B63DD8BC408D31698D781 /* ev_epoll1_linux.h */, + B6FDDCBAF741F078592B4F6FC4F68A18 /* ev_epollex_linux.cc */, + 1B641524A57DEDE4FD658ADB4E6F40DC /* ev_epollex_linux.h */, + F9E38DE18063124BBA380115509B40B9 /* ev_poll_posix.cc */, + D4AC709391190685A171F7294535A4F6 /* ev_poll_posix.h */, + C0DFCA71D49EB2490C0737837D1089F2 /* ev_posix.cc */, + 3175E8BB3C13622D66AFFD8B387AAEDE /* ev_posix.h */, + 93F59121210F83ED6A4B3FC2CA90C6CD /* ev_windows.cc */, + A2945DC03E0F587DAFE51AAAC3CEDB6F /* eval.upb.c */, + EE7F7FDC6C14110117495E63EB547DB6 /* eval.upb.h */, + 9CB9A91E336036732879A84936462A8A /* eval.upbdefs.c */, + AC6803AEC8CE42020AADAC373F34D1B0 /* eval.upbdefs.h */, + A6F3FACFAA9496F5859F4B5ACE2B36E8 /* evaluate_args.cc */, + CEB27B98C18EEDD14BC4B8407B110EE3 /* evaluate_args.h */, + ADB6752C944E0D899CAA1B175EE52BC1 /* event_engine.cc */, + 91A86155B3BF4759FEB5E659A3825CDA /* event_engine_factory.cc */, + 4FA7A6D0AA2F98D94B5FE10BA0741DA2 /* event_engine_factory.h */, + C7C103F7132A324B121E10E32D1B847A /* event_service_config.upb.c */, + 97193282CC0A0BB73562FD56E5794447 /* event_service_config.upb.h */, + 204688A39C5D245A038A935A011098C5 /* event_service_config.upbdefs.c */, + CA13424FD925EC7888C2E33D9E26B86D /* event_service_config.upbdefs.h */, + C3B9AB427A7A1CD0B31DC58523779A42 /* event_string.cc */, + A84E7F226E3C004C5461E352E1F2A5A6 /* event_string.h */, + 664F2FF1956DD241358DCC9C1C6439D8 /* examine_stack.cc */, + B79B40B94165084BE2B90DB925E978D3 /* examine_stack.h */, + F4BB15B708325B752104BA81DBEE5C02 /* exec_ctx.cc */, + C05EF9276F6E3DCF6EF14F5FB6ACF481 /* exec_ctx.h */, + 13A4903B887D28A4F360F77F8D02227E /* exec_ctx_wakeup_scheduler.h */, + 20AC0CD7ABA9A0950228102872F92492 /* executor.cc */, + FE1B461DD8FB42EFE382F301978AD4FA /* executor.h */, + 9847F3EC76AF4E22C980390DCCF12AED /* explain.upb.c */, + D1B73FA74579E80BDBDD2E69EA8B4603 /* explain.upb.h */, + 3A0593E089D51D14F7AF5F09D44C5F6F /* explain.upbdefs.c */, + F479BCB7EBF03A2A870C2996081DC1A3 /* explain.upbdefs.h */, + ED908D81EEEC2E9F5FDA5F9232DB8962 /* extension.upb.c */, + 51A41A971D478C0E5D2F4F099C975992 /* extension.upb.h */, + E531F55E753FAE6077D3EE402840C25A /* extension.upbdefs.c */, + D677C309DC7A4598A885B09B74166C1E /* extension.upbdefs.h */, + EF9E94A5AD9CF54AC256710DEE8AD108 /* external_account_credentials.cc */, + C06DA6C37EF321C0B3B75509245056EF /* external_account_credentials.h */, + 53CF56B97347B06CB9F69B1EF3B426C6 /* fake_credentials.cc */, + CACB85BB6B18ADBDE11D5F2E96BCEE91 /* fake_credentials.h */, + F871B511401EA2EAE19D01EA89E96474 /* fake_resolver.cc */, + D548C5C39A726A11AC762B31FD04D125 /* fake_resolver.h */, + DC6EA39A7CEA95090CB3735B4F464EDC /* fake_security_connector.cc */, + CE0DA6294A1F394195D5C458BBF4E3F7 /* fake_security_connector.h */, + 106C962D55E5E9FD365F1E3420B3E65A /* fake_transport_security.cc */, + 35CFDBAB2DF3427D0062AEB0D84A4C5F /* fake_transport_security.h */, + A93003B5E5DB89A84967D70A216EF942 /* fault.upb.c */, + BC44DB69FB393BB7C0FD2E9E3293C692 /* fault.upb.c */, + 652F158B81A24E5BD410FF6854B9DA29 /* fault.upb.h */, + 2656ACBCF3C6F21833E2CE96110EF667 /* fault.upb.h */, + 8EC4B47CD00631DCC2B8CAC99816828F /* fault.upbdefs.c */, + 5F2641B223DC241AEE22BAAFB9CC5979 /* fault.upbdefs.c */, + 331C32CDC4285A8C87B67DC6635AFF28 /* fault.upbdefs.h */, + 1CEA9A540A7FB773DF80871998673162 /* fault.upbdefs.h */, + 838B5F52BFBB6FEFC791F69888D7B910 /* fault_injection_filter.cc */, + 2D1840C3A3BDEAB8AC286D7A8907A08E /* fault_injection_filter.h */, + BB0254C4F88F8607F19C0AA4086B9A44 /* file_external_account_credentials.cc */, + BDFEAAFA1B15857D7D2008957A008CEF /* file_external_account_credentials.h */, + 29FCB186AD77D8DF86397C4CC449F96F /* file_watcher_certificate_provider_factory.cc */, + 6FC84C2D9C7AD4F1CD742375F966DDEA /* file_watcher_certificate_provider_factory.h */, + 34A9DAE4BB1E9A698B68626C59670CA0 /* filter.upb.c */, + B73E5707E6FB413A7D32BF38A22CE23D /* filter.upb.h */, + 5DD58F957D9FA700C07D76E450532184 /* filter.upbdefs.c */, + 4E33BBEAE7D9E78940C9F05199516105 /* filter.upbdefs.h */, + 6D40DCA681F0722E521C04D416744FC5 /* filtered_re2.cc */, + 9BE629906350B1134E3C1F6681F78F4B /* filtered_re2.h */, + 5F4793D4FB08E017F36672C625C1B442 /* flags.h */, + 0B407406A297E5821D45097AA84D7367 /* flow_control.cc */, + 12E08B96E1AC0086A2909DDA889B3E8D /* flow_control.h */, + DA66DB0A77FF700AF7A1963B28569A71 /* fork.cc */, + DBA1F171A1C4CD88CFB8676F5051EED7 /* fork.h */, + 96C81F829B25916B65028F29DBAA2B0B /* fork_posix.cc */, + D334B3828F4F4767196F23108BB5846C /* fork_windows.cc */, + FF60FE427E6D73A36A82F403660012BE /* format_request.cc */, + D7F745270746B4C000235CDF6E67C12A /* format_request.h */, + A05465B9E12D78FD43F7A73E4E6B3F14 /* frame.h */, + EE84FD5E13F3C257C122807367563B93 /* frame_data.cc */, + 634567A16F2336F2EDC62581B1C95B67 /* frame_data.h */, + 4BF139E955AC55F95242D5919BB3D5E9 /* frame_goaway.cc */, + 36540E334219492265103DE5E0358D25 /* frame_goaway.h */, + C579DE30B2031FB334B688C12290A2F5 /* frame_handler.cc */, + B8D4082C966EAD53C38D25E82C3CF562 /* frame_handler.h */, + 7D037E5D40A1FA64E42B31F5BDFACAD2 /* frame_ping.cc */, + 751518CFFD5287DD2EDA4424BECDB6E2 /* frame_ping.h */, + 7BBF9892183FBA8FF8104247F600A549 /* frame_rst_stream.cc */, + 4618B6384304D5C44FD318CC9CF960D2 /* frame_rst_stream.h */, + 95DB763AB8CA32A1BDDB274EEFC9520D /* frame_settings.cc */, + 7BC357F159AB2D06254EB80D5F2FDE67 /* frame_settings.h */, + ECE48C47B2B5E75769BA1B7D0FFEF4F1 /* frame_window_update.cc */, + 484DA31ADCACFCF47E5220521550FF3E /* frame_window_update.h */, + 336AEA0D478579AD0455B11FEEAC47D4 /* gethostname.h */, + 7AC5B4FD6BC35B4C7B4CB1FDCE633C8A /* gethostname_fallback.cc */, + 1268E0F9DC9478A9A439BD4FEEF76881 /* gethostname_host_name_max.cc */, + 1023A84DCEDD89D1D36F01D451EFB345 /* gethostname_sysconf.cc */, + CE4581D24C43A1FA130A6D0FA9F59447 /* global_config.h */, + 04435BB7737DFE0C78B83AA0B59E79E3 /* global_config_custom.h */, + 808479517641C3A8C5C0941B066FFA0C /* global_config_env.cc */, + D964A86004DCB03D0B2C06B2ACC1FCA5 /* global_config_env.h */, + 1DC39D8F1175E5AED6FC651D797346CC /* global_config_generic.h */, + CA7B3AADA086A045D4093A0D2D12369D /* global_subchannel_pool.cc */, + E8204D118101E3A3CAD932F59F0ECBA7 /* global_subchannel_pool.h */, + C1ED71E46964A959DA577A8AF622682C /* google_c2p_resolver.cc */, + 58A2CEECDBAD57D1406A2A60442E5818 /* google_default_credentials.cc */, + 82658ADBAF80503D4D468962746B5764 /* google_default_credentials.h */, + 20F266EB0176740DB67A0017DA20C29D /* grpc_alts_credentials_client_options.cc */, + 0A6BECB27E7E3C78D262FAFC88810168 /* grpc_alts_credentials_options.cc */, + 852D87FA829225C0C14DC3310E22967B /* grpc_alts_credentials_options.h */, + BC411FEAB616521F0A7A822B7F964777 /* grpc_alts_credentials_server_options.cc */, + 781CFE7BF46E5D0702850B2E0631EBF8 /* grpc_ares_ev_driver.h */, + 2365850ABBE6EDE8C5DC3E53CD3D64D6 /* grpc_ares_ev_driver_event_engine.cc */, + 87C37E0F74E90802B4C198C52406E500 /* grpc_ares_ev_driver_posix.cc */, + B6803D19F3E096F6F2F6026178306E1B /* grpc_ares_ev_driver_windows.cc */, + 865DE1252E8E4CBEBE625C7284BCB9EF /* grpc_ares_wrapper.cc */, + 79CCD076FDACB345396DDC61B5569A98 /* grpc_ares_wrapper.h */, + 6C43D5418E8AE86821AAEF6CE87BEB6F /* grpc_ares_wrapper_event_engine.cc */, + CE3D9B706DA9DF15365475E104730DE8 /* grpc_ares_wrapper_posix.cc */, + B30A5CBE75B419D608CE8F479A4703D1 /* grpc_ares_wrapper_windows.cc */, + 4893D60E86466E3611D0C8FD4F90BAE5 /* grpc_authorization_engine.cc */, + 4469E78323B212B8AFC4393309C64628 /* grpc_authorization_engine.h */, + 8EE752CC152608CA9E1D014309AF7AED /* grpc_context.cc */, + 93FD45C0379AB56C320890B481E0F25B /* grpc_if_nametoindex.h */, + C83812C10B2D52B02085F80B6848F02F /* grpc_if_nametoindex_posix.cc */, + 1EA929391E979C6C3610357AA3851912 /* grpc_if_nametoindex_unsupported.cc */, + 47F98BD868336A279338135DFB37AFA8 /* grpc_plugin_registry.cc */, + F7A0B5335D9EC081986BCB9304F71700 /* grpc_service.upb.c */, + 5E54A65A2EC49C88D13B982FBD555AFD /* grpc_service.upb.h */, + 9B6E8D89B905945F0E30D280DF92A845 /* grpc_service.upbdefs.c */, + 6F16AF4276DECC40BB2F6A01E008B332 /* grpc_service.upbdefs.h */, + 50673DB4FF2C811ACEC8D9DF490200AB /* grpc_tls_certificate_distributor.cc */, + FD33F30B2FB49CE7048394F59294EBFC /* grpc_tls_certificate_distributor.h */, + 20BDF532A4A95CBF9B8A01DE1E9508AA /* grpc_tls_certificate_provider.cc */, + 2628E3421B909EF60D4064F91DB5987F /* grpc_tls_certificate_provider.h */, + 0E74A9069C4282D4DE7ACB35D340663E /* grpc_tls_certificate_verifier.cc */, + 1041B58E8196CF0D0F0DC3EEBEAD5054 /* grpc_tls_certificate_verifier.h */, + 82374BB87E7C7DD902CFF6354380C71C /* grpc_tls_credentials_options.cc */, + 3DF7220F9AE1ECC253DDFD8C68BFC64B /* grpc_tls_credentials_options.h */, + 3A8E71C1E843F42C9B8A15417A36247E /* grpclb.cc */, + B7FDD037DA14D1B6BE7756040A7DDE77 /* grpclb.h */, + EDF4E45195E829B89F5EC7907E4F1196 /* grpclb_balancer_addresses.cc */, + 56D5D8F5A884BEAAC976329B01817876 /* grpclb_balancer_addresses.h */, + 4B35BD7CDFA46C68589BF278CAB0B546 /* grpclb_channel.h */, + 4985B65829FE3B7A8AD4E1AA559626D0 /* grpclb_channel_secure.cc */, + 37DAC466D0FF2071D7F2C0A2907317CA /* grpclb_client_stats.cc */, + C1C13ABE79DFFB8A1B66FDA6EF6E509E /* grpclb_client_stats.h */, + B555DD7C687F90D054D09B34C98D0E8A /* gsec.cc */, + 85432502D15B6E72081464943274CF23 /* gsec.h */, + 47B407B6BD3043518E3CE8A8139EF1F3 /* handshaker.cc */, + 46859B2560E594DB99517CDA6D0E49E1 /* handshaker.h */, + E39B1588A3667C7C222A061377B7C4C2 /* handshaker.upb.c */, + BB8A170E6CAA0E267AABE1E2075228F7 /* handshaker.upb.h */, + 8798EA403E74AA0BDE073CAEEDB17C51 /* handshaker_factory.h */, + 0646C62C2674B344913002AFC41D6730 /* handshaker_registry.cc */, + 2F540C0A381A4CD3FACA6BAAC0F1AD64 /* handshaker_registry.h */, + 6EA6A3E3C9EF16C263706A2C3F9D9807 /* health.upb.c */, + 9619DE816C44176FC6421B31D867A284 /* health.upb.h */, + 956618836FBA7615F7472E1EF33C0E20 /* health_check.upb.c */, + 6B60E266A09859B3D011723E8A5AB7BC /* health_check.upb.h */, + 329E482859E043F8419B897E6DFBCA76 /* health_check.upbdefs.c */, + BA202995629A2A49F55056D1EDCA7174 /* health_check.upbdefs.h */, + 6DAF9FD088B541C528FA9D11B1E2E3F9 /* health_check_client.cc */, + 65EA23A824F58CC0F46B0FF39A270012 /* health_check_client.h */, + AA84D14CAA88BA3D6F0FCDD38ACCB9DE /* host_port.cc */, + C33D77F50AE2C38F9A7FB90E19CB6998 /* host_port.h */, + 3671B452B382FB4338497B5ACF2484C1 /* hpack_constants.h */, + 5A4445845F7D292F5FAD39D1D91C2503 /* hpack_encoder.cc */, + 9D07AAD8561BEC59439A97AA268AF084 /* hpack_encoder.h */, + B6E2E23BAC11E8C8C8DA298F18AA39B8 /* hpack_encoder_table.cc */, + 8BEF85FF714DCC87054B8A44FB701E8B /* hpack_encoder_table.h */, + 4A7CAADCEC9D2522056349E31EF87F4E /* hpack_parser.cc */, + 2E8FFFB7075DEEC8E07BC77DE129C678 /* hpack_parser.h */, + 0EA828250FD680F9A84D1970911EF0D8 /* hpack_parser_table.cc */, + 4C17AA89E04AB38E6AF89E0ADDEC55CE /* hpack_parser_table.h */, + 99B246E5A78C7EE25817BB807F5C0857 /* http.upb.c */, + 12C07E7B43D8D4BBC6E37C9D5D10DD46 /* http.upb.c */, + 449D3BEED9BEAD11CBFAA6C16151CC60 /* http.upb.h */, + F6809995FA08D0A56E48B41021600834 /* http.upb.h */, + 2F424470EFAB364140FB72FAA7F35855 /* http.upbdefs.c */, + 3A5347C2007CE7658DEAEE91C2477223 /* http.upbdefs.c */, + 19AF83F9B66111EF9205C8264B70A2DB /* http.upbdefs.h */, + 79EA410E7DF81FC7428509ABB882C156 /* http.upbdefs.h */, + E32903EB471342B3111D3F2ED4399336 /* http2_errors.h */, + 289BA2375C442A3A461998E58831FFC4 /* http2_settings.cc */, + 2ABA1BB21241BABD9B5843658E5E9069 /* http2_settings.h */, + 67DAD8BFB5979458A4C4033988CB9360 /* http_client_filter.cc */, + 05A12DCADF2010275BF065C130BBAC83 /* http_client_filter.h */, + 7AB6D41D889746350C005621CD558C9E /* http_connect_handshaker.cc */, + 3774C4542B6C507E5EAD504513669F21 /* http_connect_handshaker.h */, + 3E46E71EB194B72EBE2CD3DAF8AF8B56 /* http_connection_manager.upb.c */, + BC0019FB7094896803003559673A97BC /* http_connection_manager.upb.h */, + FFA8AB854FBEA8254B954427C957D9A2 /* http_connection_manager.upbdefs.c */, + B5F22DF64BA2F1A14D74813715DE2394 /* http_connection_manager.upbdefs.h */, + AA2968F993473CC9613F8CB73260C186 /* http_filters_plugin.cc */, + 70F381CF1202BD44C3ED4CB0ED05E529 /* http_proxy.cc */, + 69F9760BE422D096B78408B1FD8BB406 /* http_proxy.h */, + AAA7990389FDF245F8D711F5BBB3369A /* http_server_filter.cc */, + 6CB243670593D683E62616F35A00BC1C /* http_server_filter.h */, + 79B9E61FF27B6DC6701C0DCE79C6DB19 /* http_tracer.upb.c */, + 713006068D25F02038ED52811E7DEAF8 /* http_tracer.upb.h */, + D2719F00215B987763C41B360250EC1A /* http_tracer.upbdefs.c */, + DCAFCA36C17F097B39508480ECEE77CD /* http_tracer.upbdefs.h */, + C075A31908F7742A25720BB203F9A1C0 /* http_uri.upb.c */, + 0B52BADE309AAFDD6B7278A1DE1A4B87 /* http_uri.upb.h */, + 46492E723D9D610960667AB9A9F5D317 /* http_uri.upbdefs.c */, + 53B4A0DB90F0A089EE202EFBF4448746 /* http_uri.upbdefs.h */, + 7D9935D9ACEA68928B838D3A704D3315 /* httpcli.cc */, + 7FF5A0B8EFFB565299FCBB477AB565A4 /* httpcli.h */, + B31FCEA4EFBB54E9B1529FCA3C4E608B /* httpcli_security_connector.cc */, + 57AFB6CACF2ABBDC0F29D4CBB7295BBE /* huffsyms.cc */, + 7A7A35D2FD55AC6076A5ED6600BEBA25 /* huffsyms.h */, + DBA6805F360807EFB886BCE5C17FEB00 /* iam_credentials.cc */, + 94B6915237B37F77FF5A15BB8AA8E474 /* iam_credentials.h */, + D99A700AF6FC8866173B03A7AE1A46C6 /* idle_filter_state.cc */, + 29490FDCE98BE2D344510A014D2FC3AE /* idle_filter_state.h */, + D99F5A30E8D0B776FC0EB1CC1D13278F /* init.cc */, + D4DA9088F7741792E65933299B7AB363 /* init.h */, + 206906A0938FB14D1ACBC98E98230F9F /* init_secure.cc */, + 5FDA73441FE5D284321681223E300BA5 /* inproc_plugin.cc */, + 22FAADBE9161C41F969EC7B33D3F731B /* inproc_transport.cc */, + D9D21B7F89E0D6FC0FD1112FA64C83CC /* inproc_transport.h */, + 3003F099289984414CED81BE6CCEC1C8 /* insecure_credentials.cc */, + C39E9073AB7C012889178092695DA052 /* insecure_security_connector.cc */, + 1DFD1873DBAF346A39AE6655E4C2F7BD /* insecure_security_connector.h */, + C10D8CDF50E90BA044CE070187FA8CAD /* internal.h */, + 8182DE90E9DABD62595CD545BD3EEC31 /* internal_errqueue.cc */, + 5AF2AB200CE8CF35B110FD22C65B1032 /* internal_errqueue.h */, + 32EF15AF9464B10EB878D6622EB20C70 /* iocp_windows.cc */, + 93C21671B040C5E0E61F6549AC5C4962 /* iocp_windows.h */, + 25FDF53685E5436630851E85F4DE2110 /* iomgr.cc */, + 5185E88A2D9C61BD59B3EBC18D69E539 /* iomgr.cc */, + 682D2A63DBF9975DA26FB307A40E1E78 /* iomgr.h */, + CDF5B1016A26B103A4299BDC0CA940F3 /* iomgr_custom.cc */, + EC83AFB0DEB26E32DCAB6AFC67D0892C /* iomgr_custom.h */, + A3E2E4D857DBE3DDDF9384F40AB3FB28 /* iomgr_internal.cc */, + F70C991E3001830588C1EBEF6AAB5517 /* iomgr_internal.h */, + 23A367FE81EE60BD8BE332CCD04E955E /* iomgr_posix.cc */, + 3EEDF6368E08A6BCD4137A180189CF20 /* iomgr_posix_cfstream.cc */, + 976000458B3BFFD96274AE754CD628D2 /* iomgr_windows.cc */, + 30A5CA2A1D39466D67AE1A6F566FB11D /* is_epollexclusive_available.cc */, + B971A02D27FBE26BFA9BF16706726AEC /* is_epollexclusive_available.h */, + B4285EB5E539A6DA9DF6108FF788F74A /* json.h */, + 5E02A5310281DECDAC8A4F2E230DEFC4 /* json_reader.cc */, + 0EA23B100238C72A77EB89D40FDA2A18 /* json_token.cc */, + CA236160B250DBC03987657357527F86 /* json_token.h */, + 5DB0CBCC6D9D5ACCD5B3C22384F861BB /* json_util.cc */, + D49D3574454881ED60452AC6106E9B38 /* json_util.cc */, + 72575879F4DC1A1A2E136BA6ACC4E0DE /* json_util.h */, + E4781B75B403259AF1253AA2CEC6F616 /* json_util.h */, + E8CF61761DF2A588E248A08DD0E0B4DC /* json_writer.cc */, + 8FC28C51467CE70661D52A8F3E742373 /* jwt_credentials.cc */, + D8949839E9396BA9155319F8AB64DD05 /* jwt_credentials.h */, + 4CEEDD5CC4ADCBF313B6404649CF45A5 /* jwt_verifier.cc */, + 942E8E3C0283C3BD288698D96178731A /* jwt_verifier.h */, + 099A94D98F7B32784E2D8FDC5219157F /* lame_client.cc */, + B1489C57C2D740CF8F0FB7881F160FD1 /* lame_client.h */, + DC63FEE2C1FDC68BDD445C8A3383ADB5 /* lb_policy.cc */, + FB42068789F275D0C1B4666437E87C9B /* lb_policy.h */, + 3E5C9ADB25F767269DDF5EF2AF1E60A7 /* lb_policy_factory.h */, + E98836FB765D34596D83CB9324AF2EE1 /* lb_policy_registry.cc */, + 7894D79CB3F0575E5741F981F8A991F6 /* lb_policy_registry.h */, + 5A768144AB6D73F5C5F43D1FAD0ACFF0 /* lds.upb.c */, + 0E761B9427A79B15C7FE15E0B479590A /* lds.upb.h */, + A7E4563046220F18248154A24B1EA08C /* lds.upbdefs.c */, + 61F665335A2D26D806800176A35A5354 /* lds.upbdefs.h */, + AE576357FEB6F45DA403E80FD9989363 /* listener.upb.c */, + E7439E531A2B4EB5820C3D676B31CB2C /* listener.upb.h */, + 6E4B2C0DF70958F59A8B7657891062B0 /* listener.upbdefs.c */, + 543A65492B40E5159C7D45DFD719A1AD /* listener.upbdefs.h */, + 2CC9A447ADE521D437042E901C5495EC /* listener_components.upb.c */, + 8D754F915A54F7204B4133F864F51534 /* listener_components.upb.h */, + B0801996947176F859989048E1EA3194 /* listener_components.upbdefs.c */, + EC25DA102025232AF50B43127E9E078C /* listener_components.upbdefs.h */, + AE9C74461EFBD124EE10FF8AECDA9CC7 /* load_balancer.upb.c */, + 67589FAA91F55B2DA2016014453B2117 /* load_balancer.upb.h */, + 79F37191C73878568A494700DA5C9527 /* load_balancer_api.cc */, + A05A40261754506FABB178A913D4875F /* load_balancer_api.h */, + 7992083964FCE8984C9A5DC875F43EEC /* load_file.cc */, + E3C287327CB905A8CFD3B0BCBF671F71 /* load_file.h */, + E4EECC067F84800BF94B85BB6A166CF1 /* load_report.upb.c */, + E774C1D7AB45580BE965C9A9CA68FB84 /* load_report.upb.h */, + E1A75791B2C78571C490B64C3EE72B19 /* load_report.upbdefs.c */, + 25475A593A6B1686B40F8951AEB0E93E /* load_report.upbdefs.h */, + 849C02D7041F661F4B3866E9502F5A07 /* load_system_roots.h */, + D148C3309672434068C0F2367C9B4A3A /* load_system_roots_fallback.cc */, + D9DFEB078FF507AEC246A1898FDC9C8D /* load_system_roots_linux.cc */, + 0B943E9756E367B7096BDBB2C5F8B918 /* load_system_roots_linux.h */, + 3B413C77F04AE0E63FC2DDB36A89F9D8 /* local_credentials.cc */, + F0F01A7D0217CE8010BDF5743529779C /* local_credentials.h */, + 4783AF1178193413669B02559EBBF983 /* local_security_connector.cc */, + 05B0E2FD160673F9272707AD7732C648 /* local_security_connector.h */, + ABEB41AA71C95E5107014797EB035498 /* local_subchannel_pool.cc */, + 4C5921B00E6545679F98ED5E437FE12C /* local_subchannel_pool.h */, + 7259CACA0FF6037B7DFF51D7F0472E51 /* local_transport_security.cc */, + 6DE5F3108C75A790516A74709CB5B7AA /* local_transport_security.h */, + 7B13F0FBAEF17735A4523662506F3914 /* lockfree_event.cc */, + 9C2D50CB54DD9E731EE5BFB3DE731AD8 /* lockfree_event.h */, + AAFB0099F62BF51790DC54FBAF2E0195 /* log.cc */, + AF1229F20CF0EDF89676F8A0D946C729 /* log_android.cc */, + A2D2E339367E4EBDE2345D7D1288DF86 /* log_linux.cc */, + C84700A2950E54155CC06C993ACA8C6A /* log_posix.cc */, + 903517329C6671ED88E163A4C5BF5147 /* log_windows.cc */, + E9C432CA2DC48A0BAB7331D1C39C35BF /* logging.h */, + 4D3A047081A1C37353133DDFEA02AD17 /* loop.h */, + 5BCFBA884ECF9CCF3BFEF0D26F911F89 /* lrs.upb.c */, + 013B743A93E8962FA126FF160E6FBCB2 /* lrs.upb.h */, + E733FDCA707987697ACCD6A6DECA99BD /* lrs.upbdefs.c */, + 17F95E2F98990722F0B6E5C0F79D25E6 /* lrs.upbdefs.h */, + B931188CED9DB2CC9B4DF75D63AAAFD3 /* malloc_counter.h */, + 5FD466A36A2926E71267AAAEE18ED261 /* manual_constructor.h */, + 20BA58D3CE652887DDD9596CAE8DA09F /* map.h */, + 30DBB5E0E9EF475E5CEF957A8593DB08 /* matchers.cc */, + EF856F510FB3B7B9DAA03F58796D661B /* matchers.cc */, + 99CF319969081F2A5C1B0E8831D1650B /* matchers.h */, + 39E7D270746FB452F796128CA38B9F1E /* matchers.h */, + FC6A5E4AFB72F7D605E12AB3EB2AAC76 /* max_age_filter.cc */, + 46DE872B0050A0BE3E96703126ECF66F /* max_age_filter.h */, + 640D3D180A9943A63803BD1A485C2689 /* memory.h */, + 29B98E664D12A493E78F0E45CD3C61A7 /* memory_allocator.cc */, + 7B6597F65C9467798C5583F0C43E8D40 /* memory_quota.cc */, + 3D2C31FD91332382DCDD740BA14BDADD /* memory_quota.h */, + E34C0C51DE600F90F25D778A38806744 /* message_compress.cc */, + DDEC335E818B06B1A6A5F9A33196DFA9 /* message_compress.h */, + C6C45CC61C936EB4B1FE2F24A9087A4D /* message_compress_filter.cc */, + 14BE6CBA4A8FD41686C9217B067DBC1B /* message_compress_filter.h */, + CE49A2017D10686059D6F0F8F7C7ADD5 /* message_decompress_filter.cc */, + 72EA8DCD42512897C0EF310A5BD1D87A /* message_decompress_filter.h */, + 4801E6AB32A0D8798AD68AF31EE96DF3 /* message_size_filter.cc */, + EFEF2A92504D188B7030E2CE7FDB8E2B /* message_size_filter.h */, + 5582C68BEC05A1A50FEE4094B97F2FF2 /* metadata.upb.c */, + DD792DF8847D4A2CFD8417BC53034BDE /* metadata.upb.c */, + EDAFF821C8C502AAC716571F79D85D75 /* metadata.upb.h */, + A8D6F54224E9124D8650200B84B472D7 /* metadata.upb.h */, + A438890524DE6ABD2A7A03027D111EF5 /* metadata.upbdefs.c */, + 50F0B86F29FD3A5AC444923EF9B0166E /* metadata.upbdefs.c */, + 29E03EA70BBFA58F0095601A7AFAAD78 /* metadata.upbdefs.h */, + 6E4777A13A57B52DD08A9F5BE6A0500C /* metadata.upbdefs.h */, + 68CB51D6D7C498BC54CA85F04AC6E3E2 /* metadata_array.cc */, + 2AB1F8C47463C6721CBCA00D749E0BFE /* metadata_batch.h */, + 5497677C626BB870BE8E80C814B64709 /* migrate.upb.c */, + CA1CF0A600F340B06EA28F808B2E735F /* migrate.upb.h */, + 8B16F267C2B92E53B3285C9C5B242577 /* migrate.upbdefs.c */, + 2AA0532207375403CF92AF2C395816E3 /* migrate.upbdefs.h */, + BA30F8C06E619CC55B085DF645542476 /* mimics_pcre.cc */, + FDD8B152FDF5329D4D956A45AE51D1F9 /* mix.h */, + 9445FBC4986C3462CE06523F7D0E3449 /* mpmcqueue.cc */, + 6FE23C300ABA620FFE1BD8C5B0C2C8F2 /* mpmcqueue.h */, + CBF101E79C7875F99D92BBEA1ABC72BC /* mpscq.cc */, + 332CABF320340B8B8D7B16E4BE4D57F1 /* mpscq.h */, + 9D6AECB4BD0FA3D16FE848360F98D248 /* msg.c */, + 8ABD334F67674CACA227946663851F9A /* msg.h */, + F52E8DD757480375403A65E722992DB7 /* msg_internal.h */, + C689853BCEC04F39DBC3CDC25ED9B530 /* murmur_hash.cc */, + 8FD28D8E3D0EF43B0B8025DA6BF4E5E2 /* murmur_hash.h */, + 180E90F16A68DD95194B4D6F687F8608 /* mutex.h */, + E00793AF2FC1C23F2EF4991F2C5F2F95 /* nameser.h */, + 9460C8034F3846AE3B96C4AE7CA45AA2 /* nfa.cc */, + 1843FF071574EFE4EAFFDA8FB05EA639 /* node.upb.c */, + EE4EA332B4ECE89650652BF5BF5C72B0 /* node.upb.h */, + 61CD4B7CD2101D99DA77109FEB66D5C3 /* node.upbdefs.c */, + B7AEE217840AC844F882F50A0DE17100 /* node.upbdefs.h */, + E75A7A32CF9AB372B21F1F0A4B75ECC8 /* number.upb.c */, + F05900771B1B749660A7694EDA6EADE0 /* number.upb.h */, + 805D47521AB994262217E99469683294 /* number.upbdefs.c */, + CE4E865E41100BB4D30895E1DF6C98CB /* number.upbdefs.h */, + E65C30B2BE80BE8ACE88E13D7D22710F /* oauth2_credentials.cc */, + 2EBA5F0E365A852BBC20AEE91279504B /* oauth2_credentials.h */, + C57FEF3E2EAF1B1042658C8A003494F1 /* onepass.cc */, + ED569D96FBD3AF85F4BF096E002DD60C /* orca_load_report.upb.c */, + A590B4C068B532984A690705AE30ACBA /* orca_load_report.upb.h */, + 97DD17FA98885FEAB42F23FD4C634423 /* orphanable.h */, + 557B589946C7EC02A7EE572386E686C2 /* outlier_detection.upb.c */, + 57B50E314A574C569D8F89C169D2468C /* outlier_detection.upb.h */, + C9250F7644521E8F86CB6711FE9345AD /* outlier_detection.upbdefs.c */, + 705B71EBDD700FD76CBF927F52C848EF /* outlier_detection.upbdefs.h */, + 5DA59009B2C868695D64A4DDCF2D8AF7 /* overload.upb.c */, + 845D2DCD64F94846EDEA586E33704AFA /* overload.upb.h */, + CD7016891023E5ED7FA6673DDD1F1A81 /* overload.upbdefs.c */, + 37314311BD2A89FD9D2B43819D2FD7B7 /* overload.upbdefs.h */, + 243E411F0BBE46610F4DF84B5B8F2D50 /* parse.cc */, + D2AC56DA987BF772F73364DE87A6FE69 /* parse_address.cc */, + 4AABBBBA6D8C6D3BE428CC78811A4E01 /* parse_address.h */, + B9177F76B26D9D939CA5497501BA0789 /* parsed_metadata.cc */, + FE86F5C36629FA2E79F4E65DE4973094 /* parsed_metadata.h */, + 41AC9AF7A36BFDEF1AE07F4DCD877B21 /* parser.cc */, + 9E73CB1F95874E3060D7B5ECA7F26D82 /* parser.h */, + C119E0D9FCAF3199104CFC3A9C5E9183 /* parsing.cc */, + B661693A70976B945D486A2E272A77D0 /* path.upb.c */, + 5A85C07A03628EF4CC56719F0B3124E6 /* path.upb.h */, + E3DFB205995D2845B8E85C0FA72A986C /* path.upbdefs.c */, + 41D040B7ABA0E45E9AD9CD4F74BD26A1 /* path.upbdefs.h */, + CE2B8A82A971758962BBB721DA2F0FC0 /* path_transformation.upb.c */, + 867F70F338F6C0A8C26B84BB412CCB07 /* path_transformation.upb.h */, + 776C3CD077E12B0B20C9426E1A8F4F52 /* path_transformation.upbdefs.c */, + 1210CE283772A28E7CF653F032DE1200 /* path_transformation.upbdefs.h */, + 16E90061D5013D1340BE1AB635ACB033 /* pcre.cc */, + 77B00D9AEA5BB3B3C6EBEFDCCC8199BD /* pcre.h */, + 8CA7A083FA276C3FC0A13B31070F3680 /* percent.upb.c */, + 34BAA9CFE82C4136E17331565A543E6B /* percent.upb.h */, + 2069CC42F6F35499F7782CE6A4B1BFFE /* percent.upbdefs.c */, + D6EEF263EF1C997343E5F88EFE420B76 /* percent.upbdefs.h */, + 663876DAA54F21351A5690E7EA796641 /* percent_encoding.cc */, + 276AF1CBBEE1544ADE18AF5606A90C6D /* percent_encoding.h */, + 0E295FDBD10E3E6347AA7DA2B1A2C720 /* perl_groups.cc */, + 518CCCDBA18368CC09736CB7D3F4E30C /* pick_first.cc */, + ED6C64A34877B7E5C3F8DA981EC3EC56 /* pid_controller.cc */, + 3DA9886A902315B6320DF9455EDF5D5F /* pid_controller.h */, + 9EFFA4682102AE7CCE9FB3D96D8A9EAC /* plugin_credentials.cc */, + D1793911BA5401D60911E96552F3D962 /* plugin_credentials.h */, + B30DF76266D5E6CBC677DE20AB324755 /* pod_array.h */, + 52B39CEAE8BA72BD85EFE35F1A19EDBC /* poll.h */, + 9352576ED027EE3B325D33C6A5865AF4 /* polling_entity.cc */, + 383F6C8E79280562AAA56C59CE1B3A8C /* polling_entity.h */, + 4E8C20C03AC3B8E521758C20B1C85CDC /* pollset.cc */, + ED7D5316BDAC4344BDB8916050AF0F94 /* pollset.cc */, + 4250B9623BA15260062BBD6AE1E0A3E7 /* pollset.h */, + 84F0377569D87841D4BD240BA27CE979 /* pollset.h */, + 2403EF933B9FB179636E4156668A1D17 /* pollset_custom.cc */, + 4ED09D5A2A1D89F9F5B167E3728CB76B /* pollset_custom.h */, + 153C6D1E0F5FCCCA89FA9B69CE05F308 /* pollset_set.cc */, + 2512390F87CDBFA15A61C6C56E05373C /* pollset_set.h */, + B7CD5CD31F4E652A9357587500D385FD /* pollset_set_custom.cc */, + 53266F3E4A6C38A63464E4BFDB662845 /* pollset_set_custom.h */, + 4067D4FCBD355E4B1A7FD4E4424933FC /* pollset_set_windows.cc */, + 4374B43425A2707FC3455E40C8CD9C40 /* pollset_set_windows.h */, + 74C3C535FE78EEC583E88F8D8A8B758D /* pollset_windows.cc */, + 3C77C8C358148481DED102534EC051A8 /* pollset_windows.h */, + 259AA94ACB87C797446F50D98DDE29E7 /* port.h */, + 3AEDDFE15F190AF5153C2F9559D81F50 /* port_def.inc */, + 600EEAEC4ED6D644F6542CA87A100B95 /* port_undef.inc */, + 9A905AB9657C6C7863C017C3344DD351 /* prefilter.cc */, + 2C255764C963350E4763406C1D855388 /* prefilter.h */, + E0645C653F59701B65A6DB5806E841CB /* prefilter_tree.cc */, + 81E9D9ABC1BDD1408A467293D25BDD4B /* prefilter_tree.h */, + 15B22F4C4313428AEB70273A9E7B938C /* priority.cc */, + B06C1170ED64497F684CF7766A0636BA /* prog.cc */, + 411245A94573E0146371EF8E7004EDD5 /* prog.h */, + 1B30D39911306059B5C85DD6C6767DF1 /* promise.h */, + F0F6484DE0549E65A4DB351A4FEB7820 /* promise_factory.h */, + 459CB2DD679D5E0E47E2F6A4DB44544D /* promise_like.h */, + F90C1C8B0575BF54FF179737758A1278 /* protocol.upb.c */, + 6457F60731C37593649BBD3F18137C43 /* protocol.upb.h */, + 15DFA99A1E4FFDD6FCFA2ED7C18EADDC /* protocol.upbdefs.c */, + FEDEE89F293FCCFEC3C4C9BEBCE26F2A /* protocol.upbdefs.h */, + 126E8649D741165D87C9D87A62104E7D /* proxy_mapper.h */, + 8AE7849DF1BB683FA2789BCC2EDAEC1E /* proxy_mapper_registry.cc */, + 854A24B8B40EC74722FFDFAB92716C3A /* proxy_mapper_registry.h */, + 50D661EF9FF208956D0B356ABFEC2FB1 /* proxy_protocol.upb.c */, + B5EDD9AF1068695B85AF4B4C41E75757 /* proxy_protocol.upb.h */, + E49C151FEF20A135ECBA2128BBC19233 /* proxy_protocol.upbdefs.c */, + 36B25D5358C16E94A2090B6FADECE50D /* proxy_protocol.upbdefs.h */, + 9DB01B854BE88579BC434E62D41ECB74 /* python_util.h */, + 9018A4B08997B453C54AB03F0A79D725 /* quic_config.upb.c */, + 3E8C867C82832200FB3115DCC32263E9 /* quic_config.upb.h */, + 39DE07AE92093F3843EBE19EEC9D9F68 /* quic_config.upbdefs.c */, + ECCAB5AC4FDBE75FE57A7ED462ACF7C7 /* quic_config.upbdefs.h */, + 72C015BE10B5B8840C593D3E9F3924B4 /* race.h */, + 8818478001D272E336997914DC6C1767 /* range.upb.c */, + 5530801C6B53BE3CEC32D4D763EB7306 /* range.upb.h */, + F4D42A3426A8B9A83F558D573B03698A /* range.upbdefs.c */, + 3A9B3F493B4EDDCD98FCA40CAAB479FB /* range.upbdefs.h */, + 5AA9BE6346C0C625CF9BD0E6454EAA0B /* rbac.upb.c */, + EA4827BC54E088A1C91C0F51BC8063E5 /* rbac.upb.c */, + ECB47805342E7A90CB31798A18F1E70A /* rbac.upb.h */, + 6F5BF11D03159A73A25B80FBDF634D8B /* rbac.upb.h */, + 7B4EAC746E9A821140B46676A1924A11 /* rbac.upbdefs.c */, + ADF5883BB998597174345EB23C5871A4 /* rbac.upbdefs.c */, + AC3DE822A415380A04861E03AD6B163F /* rbac.upbdefs.h */, + EFE55E7780A19D564F6256D77BAEFD1E /* rbac.upbdefs.h */, + A0D56A007E4D3A6DFA2BEEC05957FCC0 /* rbac_filter.cc */, + A574194E513FB51B9833E63744D57C5C /* rbac_filter.h */, + 7D29CA65A649FCAF3015C9CED5C78F31 /* rbac_policy.cc */, + B60334F3C22AE7FFA20028879915E9D0 /* rbac_policy.h */, + D2572A32A30D2AAD2640265BE6AF51DA /* rbac_service_config_parser.cc */, + 56A130193EDE174AD63252F7BDD616DE /* rbac_service_config_parser.h */, + EB5AE02D039B69EA98F12BAF40ECFDBC /* rds.upb.c */, + AB1EFCD7D07615F09FE73ACC195BC51F /* rds.upb.h */, + CA76024018A23C79F7A68D22680B8985 /* rds.upbdefs.c */, + AAEEA2A09150DDCD5716B7FFCE5F33DD /* rds.upbdefs.h */, + BA265B1849D98865AD0DEB52B14AE2B4 /* re2.cc */, + 5E118E2CCE673570D15354FC58A70E95 /* re2.h */, + C00C2E14BE4C51B11857C4890AF198FA /* ref_counted.h */, + CB7ED9C61A95D6F808AA92EE929C8548 /* ref_counted_ptr.h */, + FB7500A37B5D60CBC2EE76F76685F82C /* reflection.c */, + EBF7D7BF67C828552B092F108A769505 /* reflection.h */, + 8D64C48152A6AD8DAC186AC84864C66A /* reflection.hpp */, + 064BEC923177682D7555AF96F850F50E /* regex.upb.c */, + 749C4DE49651E51D73AB76CD86B568AE /* regex.upb.h */, + E391DE91602C3AD845DED1E075A0D9DD /* regex.upbdefs.c */, + 952596A0AEB8945984149E20ECB38C30 /* regex.upbdefs.h */, + CCB246DE62A0AD426BBECB0F93E033C4 /* regexp.cc */, + 2216972EA04C05B04C0645B1BBC93DB5 /* regexp.h */, + A2A4F441DB8D183CF38A95231C44257B /* resolve_address.cc */, + C84159350C081455E5B835937ECCA41D /* resolve_address.h */, + 0E3809946146EBFFC1D3D9F81254F8D6 /* resolve_address_custom.cc */, + 100FE90A8B72D75B1436A17BBD682595 /* resolve_address_custom.h */, + 9786932E81B631C1491BAE8DD40D67F1 /* resolve_address_impl.h */, + CEB4645596E4523B6FF908CC61CC9B16 /* resolve_address_posix.cc */, + 4045AD9B7A955CA1B36E76BF863F8D1A /* resolve_address_posix.h */, + 5D4784C5A2C1F40FD630BF3CBC1B8120 /* resolve_address_windows.cc */, + ED65DFF9F6A363A8F74668B1F2E7926E /* resolve_address_windows.h */, + EEF552252F6F9AA31D017F3E97A5AA8F /* resolved_address.h */, + 55674C7EE7F57FB87B45619E7967E73B /* resolved_address_internal.cc */, + B639A70BB67FEE84AD657027E13D7014 /* resolved_address_internal.h */, + 99E5B9384D55FA6A2BD92539EB67666E /* resolver.cc */, + 298EC841485A28BF76A38AD0264552FE /* resolver.cc */, + 3D9E1CF00AFF7FC9675A9C34B7B8A868 /* resolver.h */, + AF36D0A14EA7174365C2D5C6BCE9303E /* resolver.h */, + 1A9520B5273367133F30CCE539AF606B /* resolver.upb.c */, + B232530AE2AA3C7C25150F093749C9DB /* resolver.upb.h */, + C8FA4486D5A721F5D13271ED43191451 /* resolver.upbdefs.c */, + A589EB5B36B16429CC2324C505DBDBBA /* resolver.upbdefs.h */, + F3AE3B9D1B0C92E1EB29B6DCF9651D39 /* resolver_factory.h */, + F7DF8F926243F2400E74D5F17A51ACDB /* resolver_registry.cc */, + 454B4B848A2E8AB1AEDBDEBA9DF8FAB6 /* resolver_registry.h */, + 273FD335D02F9824BB111E9C9D73129A /* resolver_result_parsing.cc */, + E00671B2C62962CE76E0C7AA3F4861BA /* resolver_result_parsing.h */, + D9F0AF9299D6AAB91D45AA5A4799A991 /* resource.upb.c */, + B91303F46DB00EBCAB2BBC1419BC4EAE /* resource.upb.c */, + D3C95DC3E93F043B54A480FF49EF1672 /* resource.upb.h */, + 881A5F2831C8F1406AF1DDE69874A1F6 /* resource.upb.h */, + B507C7F5EFB7EF0FA40738639403AA2D /* resource.upbdefs.c */, + 13A8A9C3A3D99493D43FE7E3BE6D9B68 /* resource.upbdefs.c */, + DDF98ABBA75103345A5890C2B7D1E881 /* resource.upbdefs.h */, + CBD4EBBC8434D3600C301F73169E9F6B /* resource.upbdefs.h */, + C9917FD6C52304012269DE3BB11CE7B8 /* resource_locator.upb.c */, + 43E1AC3595795D667AADFD1FA7682A1E /* resource_locator.upb.h */, + A382E161DE3F60E6C6C30E53D873B3BA /* resource_locator.upbdefs.c */, + 8CB8AAFF8D14709D6DF2941E63605F4C /* resource_locator.upbdefs.h */, + CED68264D7E8C8882D0A53A7F0EC7285 /* resource_name.upb.c */, + 6F31A74823311E90FE61D5C1788EFDA2 /* resource_name.upb.h */, + ED46BB964E2B7D13A6C1D826FC69F225 /* resource_name.upbdefs.c */, + CC3CEC9C57ED25004EF4BD6269028BC8 /* resource_name.upbdefs.h */, + 45B6BF8B1A1589D9D239A0926D071AA6 /* resource_quota.cc */, + 157EA21DB6DBBF871479254BF0D78322 /* resource_quota.h */, + 95566BA50F3E79FF09D2C3A4F9176BF7 /* retry_filter.cc */, + E2ECF6C2E5835032E5396D6E76540AF8 /* retry_filter.h */, + 58BD8B8512B90CE9FABED5BC1CAAEC45 /* retry_service_config.cc */, + 9DA0038BC773B41686BBE6972DE7EA86 /* retry_service_config.h */, + C7DC21F2D1957E1115246B35A248A272 /* retry_throttle.cc */, + 910E378A0F61EF9D7E8EE0C7336771C2 /* retry_throttle.h */, + 53E4044B7D53854CADFAE96E62EC9CE7 /* ring_hash.cc */, + 72182DAA485BA61009AD0E25141ABFA9 /* ring_hash.h */, + 9B219835816FFC270FBFCE7193EFB76F /* rls.cc */, + 0A1DF3AFB51F6B4EE74955460554113B /* rls.upb.c */, + E3E7BE90EAEC4900541C84DA446337B9 /* rls.upb.h */, + 5EF17E22E1293A1E8AA7CE14FE2DD8B0 /* round_robin.cc */, + DEF0ACA15C0C17EB696B6265209894D5 /* route.upb.c */, + D8EBCCF41C1F4E8704D2768F33C143B0 /* route.upb.h */, + 2198D6F3ADA69B721E9CEF218CCD4549 /* route.upbdefs.c */, + 2843361DC8984047607235C06B4311EF /* route.upbdefs.h */, + 434AED16135B8A938A18D1462E5B6BB2 /* route_components.upb.c */, + 4D28233D4CB29F7EF88CDD713352D611 /* route_components.upb.h */, + 6CA46D20FBE09394CA4B481DFF46A890 /* route_components.upbdefs.c */, + 72F89D6411F6C8A7627440EE8E74AF26 /* route_components.upbdefs.h */, + 61CF949A3152F88CA5A8970BF70CE656 /* router.upb.c */, + 7B0CBC307BF2785388B9DE79084F0707 /* router.upb.h */, + 7106F5DA46DBF6EBDD4F975642688BED /* router.upbdefs.c */, + 740A4D3CAB52397695F4157A914418CF /* router.upbdefs.h */, + DF7815B12C9CC9E562868DBB01482606 /* rune.cc */, + D5305BEBC418E974C9FE3663A26B3FD5 /* scoped_route.upb.c */, + 7784D97B57EE1C91F8B93163F7706DCA /* scoped_route.upb.h */, + 15EC71C45589ABE710DA61A71E7F579E /* scoped_route.upbdefs.c */, + 2BBD00E88D9A4E83D49B88F521C64FC2 /* scoped_route.upbdefs.h */, + 805D1F28B4EBBC096CDCA4C0441A0F90 /* sdk_server_authz_filter.cc */, + 5E5A4E92379536DAFE52CF2D7FE8A1E0 /* sdk_server_authz_filter.h */, + 148CB503D506579430970C22995F370B /* secret.upb.c */, + 2C37635D27D01FAE0330CE6722508EFC /* secret.upb.h */, + 889C864A1F59B74D7751F3284A91E5B1 /* secret.upbdefs.c */, + A5B3360E488D0504D1641A5A332E94E6 /* secret.upbdefs.h */, + FBB0D9B099F6E472C3D850C757605ECC /* secure_channel_create.cc */, + F7BA7A83A1D08EE02799D9CC3063B029 /* secure_endpoint.cc */, + D1C824C4D900253027727CBD5D73F9D5 /* secure_endpoint.h */, + 82720EE919EC12A4CE0169CCB97936A8 /* security.upb.c */, + 1CF9D6D2B5415928BF1B33A46932DC17 /* security.upb.h */, + 30869874CF99E787A83C44EE7F69EF44 /* security.upbdefs.c */, + 405A12FB51047FDE28B4FC9E5B0ABBB8 /* security.upbdefs.h */, + DF916185ABDC977904C46809F017DEE1 /* security_connector.cc */, + 6A3ED48C48EEF76302A1F3A1EEC1BFFA /* security_connector.h */, + 6F1CAE205BE8600281AD6B95AA003996 /* security_context.cc */, + 554C08C67E86F0CB79FCDB0E27DF2AF0 /* security_context.h */, + 64A56DF7864275EAE4410DA073BCE087 /* security_handshaker.cc */, + 3A9065CFD3738637DF3726FF12EB2BD8 /* security_handshaker.h */, + DC11AC772C47E495AA62CA4E5B930ADE /* semantic_version.upb.c */, + 05DA15F57C9AA6BB5B02F71D09009840 /* semantic_version.upb.h */, + 3AC33586939174D1419C097321225B57 /* semantic_version.upbdefs.c */, + D7950CC2AEABDFD5A7412F38A98C8862 /* semantic_version.upbdefs.h */, + CAB003C14FE22662B5D4165FA2F56FA4 /* sensitive.upb.c */, + 4DA53456E41B59A8E6539F7FB5B44164 /* sensitive.upb.h */, + EFA836A419AD8F3FB1535F98F899942B /* sensitive.upbdefs.c */, + A5D2F2CAD024C8FEC6E2FEC3B7DA5CAE /* sensitive.upbdefs.h */, + 73DAE0328E7FC880D14EBA7FF9ADB39A /* seq.h */, + 3FE24130314C63F638FB7E800F35692A /* server.cc */, + 778173FC20F6C801F5CBC3ED92A4CBD7 /* server.h */, + 327C3F7CD52C11727E32EE2AEF37A055 /* server_address.cc */, + 7F857556AC267BAE04A7D84DB5D70EB6 /* server_address.h */, + 4BD5B5411379344FA68FA87D7794E603 /* server_auth_filter.cc */, + C8D0E6AAC5235812E294025696E9570D /* server_chttp2.cc */, + 7FF26D5467153BD1283BE0286DBBC338 /* server_chttp2_posix.cc */, + 8FB3ECF23FD324FBE2C5036B4160DEBD /* server_config_selector.cc */, + 49D541372A216CFDDEF530731104F2AC /* server_config_selector.h */, + 2910A547CAFED325878987C83937C91C /* server_config_selector_filter.cc */, + B32A4B770F20EDD27C33060711D612B3 /* server_config_selector_filter.h */, + E1C58E306BAA0198D9D4947C5DD40A82 /* server_secure_chttp2.cc */, + AABF7AC5B726AFBD8BBB5CAA0A4ADE41 /* service_config.cc */, + AB0070729BCC641953AB26E53874B408 /* service_config.h */, + D21CA2E32F37DFDA5BBB2E97A1D718B4 /* service_config_call_data.h */, + 0A3370A34A8A42C350A696C7C66D7534 /* service_config_channel_arg_filter.cc */, + B97F8B8F610AF4D1A46AA7B45514F2B1 /* service_config_parser.cc */, + 4B59BBAF728D7E8D8A07D8EEE6C412B5 /* service_config_parser.cc */, + 6D340931AD1ACBE50D367F7714D0085A /* service_config_parser.h */, + DE582E4F72274D3CF9E0C7E72DA4C274 /* service_config_parser.h */, + 8888187E6FFFB35BAB353167AE07E37A /* set.cc */, + F42742954F5F438E444EAC53A3A9B888 /* set.h */, + 479D4BC05C7B7260F62B3EE3157D7036 /* simplify.cc */, + 0E2333760FD6DD6D07C333E847DC7FA4 /* slice.cc */, + 91C7D882359E58D5DF66F8256D68D001 /* slice.h */, + D209503ABF2DFDCA5EBF6823B1CF78EF /* slice_api.cc */, + D54C6B4437D484FF319583FCCD27B0C1 /* slice_buffer.cc */, + 129FAD63C94C83A999DE0048921AC99B /* slice_intern.cc */, + F07C634F2E5B9CA70579B7B818A319BD /* slice_internal.h */, + 7212B845226AFA2FDAD5863D12046450 /* slice_refcount.cc */, + 5FFFD88CD72F19BE852782F0314B8426 /* slice_refcount.h */, + EEA4B78520EC797C2DBF1527ADD08590 /* slice_refcount_base.h */, + E46B6D9A60CEA5CAF065D6C652B7BBF7 /* slice_split.cc */, + 6E7F6DE1B54194B24326EA48EB0ECD15 /* slice_split.h */, + 8B95BDCC9CCD952A4A729EB3B31C701C /* slice_string_helpers.cc */, + A8E076F92E18E2A176410D2D847A5901 /* slice_string_helpers.h */, + 2470C9D1B5C531B52E827D6C7FF7E5AC /* slice_utils.h */, + F602A603FDEBF028767129997CC8BE0B /* sockaddr.cc */, + 6D6CD9FDBAD9C4F285C5DAEA6B1B47CA /* sockaddr.h */, + 2A28A31A9FFA7ED3682395CB06658486 /* sockaddr.h */, + FBC45472822A2A5EB4611E94D3CAB6AE /* sockaddr_posix.h */, + 151D45A82F00DF52927D877C7577CFF0 /* sockaddr_resolver.cc */, + E49C592CA2093EEE92EE163B8C749FF0 /* sockaddr_utils.cc */, + 5D24150129CD79110035F2220F2D4708 /* sockaddr_utils.h */, + FBA7E613E5290B814A53A8D7EA35FD00 /* sockaddr_windows.h */, + 3E93ED9904FE00AD99C6B2E59DB2B128 /* socket_factory_posix.cc */, + 5497FEAFC542025412CC1664379ABA61 /* socket_factory_posix.h */, + 0BB8D97F53536E0D5DEDF06E13062450 /* socket_mutator.cc */, + 843B10F6EE0003084A4E8FD8070FD47D /* socket_mutator.h */, + 201DCA0D7E33967E0DA8F376DCA5B661 /* socket_option.upb.c */, + 522EEC6EB39210AC7D2EA76AB081C34C /* socket_option.upb.h */, + 9E01585D5EE13EAF99B21782B42995DB /* socket_option.upbdefs.c */, + 229DA5C38ECDEDF43ED5927FE1273B72 /* socket_option.upbdefs.h */, + 140C13A72EBDE3E5621FE3B0134B8FF0 /* socket_utils.h */, + 1B6EA9CEC1EB01C0EBE79ACA724C8434 /* socket_utils_common_posix.cc */, + BF39244B6FEFC7E2F530B26A4A58BF5C /* socket_utils_linux.cc */, + 34BD4DCEDEC1E1F332A79C29D8CCC5A2 /* socket_utils_posix.cc */, + 329058B2D7C9767BFF63C26857EFA30F /* socket_utils_posix.h */, + AE0E0DCB96E3660E543EB03718B17251 /* socket_utils_windows.cc */, + BF4AD51EA04E5DDBACC14BDB5BC4E926 /* socket_windows.cc */, + A8DD9720F99EDC3CA2075BEF05E41FFF /* socket_windows.h */, + 255509EDCBC1B216299A27803BE6275F /* sparse_array.h */, + BC0BACD880BA194D84ACE595AB85B11F /* sparse_set.h */, + 281E42975152E5BED409E8A175D94A2F /* spinlock.h */, + 96737F25BB5020712C4548B46FF44F27 /* srds.upb.c */, + 34F8A847C8D1A7DD0D7E3C3FD2BBFF7D /* srds.upb.h */, + 07EED25C4AD60E02DD317B24DCA55C35 /* srds.upbdefs.c */, + A7004524BFCB1C39091C7A2B20D6F9B0 /* srds.upbdefs.h */, + D14C22B31990C7D41A68D90394330BEF /* ssl_credentials.cc */, + 82466B292831540539085B0B9CBF9BA6 /* ssl_credentials.h */, + 4B4CC2179BBD5C1D6161F28DEDC084D8 /* ssl_security_connector.cc */, + DF07A4029516D12629925D465E1A510A /* ssl_security_connector.h */, + 9F718B3E77CFF3D4A7A5F54834AD7B53 /* ssl_session.h */, + 1351E34079EC47D7A4D9BFF4F25E7308 /* ssl_session_boringssl.cc */, + A674FC20142C5A137221EFD651FEA1FD /* ssl_session_cache.cc */, + 763961238FDB0238DA1A42718AC7D25D /* ssl_session_cache.h */, + E12A8ACDDFAE3C205308833A30573E7B /* ssl_session_openssl.cc */, + A61DC357F49DA109869B7EC541E0B27E /* ssl_transport_security.cc */, + ADCFC3DB92BA3F61AD2B0A282BC91E0F /* ssl_transport_security.h */, + C82355AA43AB7E03ACD40F073CF1932C /* ssl_types.h */, + 925CA7E7FDBE6EE2291E759446E66FF3 /* ssl_utils.cc */, + FF50389AA628ABB808CA4F98D2AFD5D5 /* ssl_utils.h */, + 5400D00C86CDECFAFFAA711688901853 /* ssl_utils_config.cc */, + 84ACDA529F2AFEA779F7FE3FF01046F1 /* ssl_utils_config.h */, + 2771190208E108C4435A375D231C89C5 /* stap_timers.cc */, + 6D9566A5C0F6BB475438957CA385E999 /* stat.h */, + DF575700ABB5CD5091592C2A8D3DF24B /* stat_posix.cc */, + 16D42AD6E8DB67B92CA80E83C97666C9 /* stat_windows.cc */, + 75DD8E4F8E6CBC2B0481C530DB70826D /* stats.cc */, + F321BAD48247D42A7D478B93DFBD3ED1 /* stats.h */, + 9F549B47C1CE0D40723AF220761E385D /* stats.upb.c */, + 5E0A282AD7C8B84D1CA4DF8A555374FE /* stats.upb.h */, + 624EFFA91B9CAAE17A227C9A45FADF7C /* stats.upbdefs.c */, + C5F988C03E0959C610A627039F9D1FD9 /* stats.upbdefs.h */, + 29AE2A81D2F03CD7F2F0B2210A8AB030 /* stats_data.cc */, + 232CA3047B6991CC86BB140F8E7258D0 /* stats_data.h */, + 88354CCFDB011C967418B8C61B951D83 /* status.h */, + 22983DF9A1162EA90005A0D80BADF909 /* status.upb.c */, + D22D6AEC8C37B39BB6C8CE152B3E96C8 /* status.upb.c */, + 3127AC598F2779B660A46CE00B1E91FB /* status.upb.c */, + 39DC2C0141F8B43D27B7416DCBD80462 /* status.upb.h */, + 8E023981F9B188B33FE9DEEA957C6D97 /* status.upb.h */, + 24FF28E0674B5CA68D1A64E6BFB66B9D /* status.upb.h */, + 3132C87EF9727DF1E2E73C7611959107 /* status.upbdefs.c */, + 8EEFF349D87D2CB09B943001635CED76 /* status.upbdefs.c */, + 42DDD94EDCFBF26669E7EF2439E635C2 /* status.upbdefs.c */, + 09CA805890B9FB97530A75769790659A /* status.upbdefs.h */, + 6F0D579F47928FDB95DFA056A689CF53 /* status.upbdefs.h */, + E652D90040370B08F7621D0FFD2E3263 /* status.upbdefs.h */, + C541380223B9C03E19ADCE5EE6D64BBE /* status_conversion.cc */, + EBE553AAE7AC5CD57E21E9BF474A802D /* status_conversion.h */, + 8122035A9922CCF7CCE95CF2255231D9 /* status_helper.cc */, + 3F3FEE1643F9FF05FA78359BD2B9A54A /* status_helper.h */, + 50138F551D6860C60910FC86222087ED /* status_util.cc */, + 905C34C484002FAF9696597DA4F3DA29 /* status_util.h */, + 6396116F4FEBEB9360503BBF9978CB8B /* stream_lists.cc */, + 75B21D0AE9E1E3C0B86F7270BC4D9388 /* stream_map.cc */, + 4499246A540AEF224C151AF576A8A51D /* stream_map.h */, + A5E5E299BDA914EAF9CC010B26720B63 /* string.cc */, + 3B056ADB961043F51C223BFE78B79B4F /* string.h */, + 07A1CF47194A5D7FD4CECFDF9DC2D7FA /* string.upb.c */, + 0C247CB8F9C91C722C551A75D2C643B8 /* string.upb.h */, + D04530E46789E7001F028CD83ED8A097 /* string.upbdefs.c */, + B3A0E7C79C10BC1B915AB5991D550A09 /* string.upbdefs.h */, + E4C8D7ED4154FFF4D487CAEEF2A73989 /* string_posix.cc */, + 0F75956A9C0ABD6732DFB75A97D98D80 /* string_util_windows.cc */, + 09553541E60F0BE59E0E76738074EB32 /* string_windows.cc */, + 53E8352E869D06DFCDE803C7A17C457B /* string_windows.h */, + 474F7F8069291C6D0A6484CDD3B29BF7 /* stringpiece.cc */, + 788895ABF601AED9FD7556E17B0C84E5 /* stringpiece.h */, + 145D6E11DA81A21E9A97F366CF876104 /* struct.upb.c */, + FFF7D20085306646CE254E3C50304AF9 /* struct.upb.c */, + 06E092424B003E7B0667FAE0E04B7D7A /* struct.upb.h */, + 9BC200AA7AEEB2C4D0CDAAEB3E00FD92 /* struct.upb.h */, + BBCE3762E1316A390F345D01E14C839D /* struct.upbdefs.c */, + 2765BB061255BDBF94EE79E5872143F1 /* struct.upbdefs.c */, + 89921609E3270099F8F7701E6D44469D /* struct.upbdefs.h */, + 2B5C27C52BF568DFDF1AF4B53997D8D5 /* struct.upbdefs.h */, + 3B827D0848DAE139C23BBD236D7C9D3B /* strutil.cc */, + 78938AE84B4B0CD3E092DB5BFC209BE3 /* strutil.h */, + 749EC29295DD07149C5CAEB9B787F0D2 /* subchannel.cc */, + F6ED0B0B5095379956BF16B23EE805E0 /* subchannel.h */, + 0052729435F79E558EA2A4605778A9B7 /* subchannel_interface.h */, + 15800B0EE834E5EFEF6D530B72BF7C01 /* subchannel_list.h */, + CB2047C17112F9E110082629C5119BB3 /* subchannel_pool_interface.cc */, + 5F45A35347768D0326C16D8A0940ACF1 /* subchannel_pool_interface.h */, + 9BA87148D17BC321FAF29EE1B004D62B /* substitution_format_string.upb.c */, + 448E5C3BEAF8FFD3514B2747523F9606 /* substitution_format_string.upb.h */, + FE30EF06B491C97160BC13D9E9C05400 /* substitution_format_string.upbdefs.c */, + 3E505547600DF223F5A37FC073FFD086 /* substitution_format_string.upbdefs.h */, + 715276421DBEED576448CC1444534199 /* switch.h */, + BD05B7C9A5F6F94C585B4133D260B43B /* sync.cc */, + 9EE8FC11D8F7B67D27375238D0FB6A6C /* sync.h */, + 5C187D996C52747EC74DBFF72DA22AA2 /* sync_abseil.cc */, + 69FEB814AFD43E3B95D8C3936C7CD50E /* sync_posix.cc */, + FA1E491D3D78ED13CC97525B38A521A6 /* sync_windows.cc */, + 58AA9126E1537B7A9F2CED6CCFA40D01 /* syntax.upb.c */, + EF3C42C0285CE69BC04D9AECC36D0AC8 /* syntax.upb.h */, + 8CB5B93E9C1B162258DD762BDBC8B33F /* syntax.upbdefs.c */, + 0FD5CCABE31125C9DB07B78E72C489B3 /* syntax.upbdefs.h */, + EF6B65448CF0B79235BFDB077BDD7D28 /* sys_epoll_wrapper.h */, + 72E254EE716AF566C6DE2A6F4F54A9D2 /* table.c */, + 0710B7069F765DF8F52BCCA73398A9EA /* table.h */, + 391181D14502A21D0CA7FAA8AC458586 /* table_internal.h */, + D1AF5814ED48C619C19922C6A9173B6C /* tcp.cc */, + DC2B28850898308399BDBC2962B21B47 /* tcp_client.cc */, + 07B22FB88D07228E17B62130C422CC26 /* tcp_client.h */, + 06D183844F0FB96451404D1DE9B7ACBF /* tcp_client_cfstream.cc */, + C1D37B3907D8B3354CEBB3285181C738 /* tcp_client_custom.cc */, + 873DD2840DADB3C645196BAE6B7BE204 /* tcp_client_posix.cc */, + F2A35D4FB28A438142E0B19E7D7145E3 /* tcp_client_posix.h */, + D8A3366922F86DE7980F06C0D3FB8B00 /* tcp_client_windows.cc */, + 77634631A973E51BCAABC5942D30FC0E /* tcp_custom.cc */, + 990BD39D3B1915F7706BAEC88238201D /* tcp_custom.h */, + 6E54604D5B9AE9DBB1A6BDE21A5DC0B1 /* tcp_posix.cc */, + E78F35C1E0FD3FCD285C059AE6D2B434 /* tcp_posix.h */, + 627B3933E29E078943A12645966B8BC9 /* tcp_server.cc */, + CC93C8868B8EBD1B0F7FE3F612EBB777 /* tcp_server.h */, + 4C1444F0884C76B35AEEC6DBE3F4A597 /* tcp_server_custom.cc */, + 574E8CCB1260C950568FBFE18EAFCF52 /* tcp_server_posix.cc */, + 185A93251CA76BA6DE2EF2C4136B28C7 /* tcp_server_utils_posix.h */, + 8E5FF79ECA85B7E16399D9CB96ED3D3F /* tcp_server_utils_posix_common.cc */, + 668F69D63E6602990F4176032A89E1BB /* tcp_server_utils_posix_ifaddrs.cc */, + 0FB8F0DD531BBB892CD003D00247D067 /* tcp_server_utils_posix_noifaddrs.cc */, + 77A93A1F4E26ECE5ADC71856B90F81E7 /* tcp_server_windows.cc */, + B141D250E7199A117FD2C720A7C6D68E /* tcp_windows.cc */, + 1E72981128DF99B536C689AA588FC97C /* tcp_windows.h */, + 1D16D46EC3AC395484AFCB680B7BE5B6 /* test.h */, + 02D73A913E0C81296AA5B6889B4DCB54 /* text_encode.c */, + 1AC1CE77C59F8F7806F4191395CB303D /* text_encode.h */, + 4C3EF07B99AB4671688F8C8F60DC738F /* thd.h */, + 4064FB58F64FBEDBE6D329DAC2886EB6 /* thd_posix.cc */, + 1160A49E3C6D7555FB189F4252876757 /* thd_windows.cc */, + 1910D0E26C5FC60D8078C35D348851F3 /* thread_quota.cc */, + 725D353BE6A25FC2F52FBB2AC226E80B /* thread_quota.h */, + 55A5F90FC76D4C8EBC2AE24BA3534EDD /* threadpool.cc */, + 0366E26FD67CE451C4FEA7F53141CC29 /* threadpool.h */, + C38130318F5AB1D4AA51736E617E0C6C /* time.cc */, + DFEDF66CBD59687CB311776859E52ACF /* time_averaged_stats.cc */, + 231105B6F76806840920DD259AD9E87E /* time_averaged_stats.h */, + 927BF294F8E5EACA32AFE5701E85BDC5 /* time_posix.cc */, + A924953216E01026039BB228A3C81B36 /* time_precise.cc */, + 2D6CA8F2BB1C640C922CCDE5CDE5B2D2 /* time_precise.h */, + 1D1CF84A38DC55E9BA304BF0D47D4FA8 /* time_util.cc */, + 145004F69577554E27FFC4C38782A33E /* time_util.h */, + 9FEB9FB4EF94DCE5046C4586E74463A9 /* time_windows.cc */, + 09B7B69AA8DAAECBDDC6C1BC650832EE /* timeout_encoding.cc */, + 205BF1C76A0E9D1481CE6AD28CD46992 /* timeout_encoding.h */, + BF1244C45253F59894428DC5998B63C1 /* timer.cc */, + 0440A58B534CCD5742E404FDC354C9C6 /* timer.cc */, + 73A13B1A242B4DCC250E43043F247B8E /* timer.h */, + 95217393FE89317F66049807680095B3 /* timer_custom.cc */, + F027F748DE09374E33EEF623E027B559 /* timer_custom.h */, + CE4BFA847DD3772F87F1B74127714663 /* timer_generic.cc */, + BFD97307A56651615D2D945105452D50 /* timer_generic.h */, + A5D4288EED520DD7D8DC029C39A050AD /* timer_heap.cc */, + C7F3BD3E475891FA642722F28E23BA9B /* timer_heap.h */, + 9C8C9AEB5E0026B6CB2F7F28F5904A41 /* timer_manager.cc */, + 7BB3CF4C25ECF864BBD7C871A0458776 /* timer_manager.h */, + 87CF470B7FAD3566E00188390D024EEF /* timers.h */, + 2492C1BBFE9EC02D90B86DE11BB7E7EE /* timestamp.upb.c */, + 90A68867A23E6110499E26416486C6BE /* timestamp.upb.h */, + 182BE69470AD1E636F77EB00C6F36428 /* timestamp.upbdefs.c */, + E6720827ADECF10E452CAB236C96F245 /* timestamp.upbdefs.h */, + 528D8C22EFC92F9C6B6033E1FCC2A23A /* tls.h */, + 102F12FBFF72CECAFB0CA4B9E9A41FC4 /* tls.upb.c */, + B743115E61809D3AACDACD4BE8F49239 /* tls.upb.h */, + 19076A2C5016C5EE3A67DBC27E848691 /* tls.upbdefs.c */, + 41FBAB31C967E337C38682013E259BF8 /* tls.upbdefs.h */, + 037CE7D8799949627D7F03AA644D92C9 /* tls_credentials.cc */, + 733E1CA7C71F7950FF73F6837C5546BE /* tls_credentials.h */, + 8DD775C228B77D19382CEAD806C14BCD /* tls_security_connector.cc */, + CC74B5B73E27947FBBE1A246F3E739A7 /* tls_security_connector.h */, + B2BE641C335300342D11BC21AD50BAE3 /* tls_utils.cc */, + 399E51C93DF60A489E484E4EF8386834 /* tls_utils.h */, + ACBD1F61FEAA2BF69351754794A7BD10 /* tmpfile.h */, + 7D058C0932547364E18861638B8F05A6 /* tmpfile_msys.cc */, + 7CAC12485EDC5EBFAF2C9BFE36DD228C /* tmpfile_posix.cc */, + 3F4B4FEF5E72B2BCB3C00855E3F44495 /* tmpfile_windows.cc */, + 24955F4CC62D3C300B7C8506BBB5DD6F /* tostring.cc */, + 2085D0E376A3DF92FCA463AD20618178 /* trace.cc */, + 641E946F5257CA321F994BB18B69D1E7 /* trace.cc */, + 553B5C2F520098A2D86DFFA10B08F3AB /* trace.h */, + FFDF70E20EEE2F656DACD6A5BF0E0784 /* trace.h */, + EF1AA395BF38312767C218235922183A /* transport.cc */, + ABE9A4DB4213279E3BEA47ED0B8378AB /* transport.h */, + E194690CB60601C0C178435C75812721 /* transport_impl.h */, + 46FCE4356896D32454A7257D3664D009 /* transport_op_string.cc */, + EC5E25539C244364943D638C2B923355 /* transport_security.cc */, + 03CAD07613933D09F7AE52AB328A46FC /* transport_security.h */, + B278E5FAD18C8EA038B4FAF1D213B7DF /* transport_security_common.upb.c */, + 40154881319707638ACDE245B78A7688 /* transport_security_common.upb.h */, + 25BDC04086F8F801DE64DAEA31138278 /* transport_security_common_api.cc */, + BCDAD635D272845EA15B9510042A2246 /* transport_security_common_api.h */, + 1B54E96D150A757A3AFD6758439BC347 /* transport_security_grpc.cc */, + D65E50A6E2055A0DAE2828664C16334D /* transport_security_grpc.h */, + 41106B6D5A056B269F476E360E205C8A /* transport_security_interface.h */, + 88E8C9FCF0029802A9758840676839ED /* tsi_error.cc */, + D63C471852D75F593755EB4EE6EFE07B /* tsi_error.h */, + 0CFE2AFB6AE7C484E3568EEB3E713F85 /* typed_struct.upb.c */, + EB850A2DE46F29DB2E41E627503B4B8A /* typed_struct.upb.h */, + 8097ACB8095A69F1499BB0CF65AC0EFA /* typed_struct.upbdefs.c */, + 9FF5D7AA695FA56292F502C3023132E6 /* typed_struct.upbdefs.h */, + 76A1BCD4EF094E6734D06B606765D481 /* udp_listener_config.upb.c */, + 2B5F0C27B4FFA4320EFE23323AED954F /* udp_listener_config.upb.h */, + 538D1976E185A62525630DDBF81E5EE1 /* udp_listener_config.upbdefs.c */, + 4A2F1B38CA3146C5A92CB9247522CDE6 /* udp_listener_config.upbdefs.h */, + 1D1C850B5184BF26698AB9FB25B10D3E /* udp_socket_config.upb.c */, + 4E89AF5197CAE8B11B179A8C903013E0 /* udp_socket_config.upb.h */, + 8B307F18226C5A138D57A01E0E3BB4A1 /* udp_socket_config.upbdefs.c */, + 83B1C655EAA1CBAA9F9C42A1C3343D85 /* udp_socket_config.upbdefs.h */, + 763B8673B66E20EE8807F080845C7278 /* unicode_casefold.cc */, + B55BA53A8C2E3F0DE8D3D80641291C57 /* unicode_casefold.h */, + ED0ED539C1209494C4B35342852EF579 /* unicode_groups.cc */, + 4BB952D963F7A967B498C2A24D239E85 /* unicode_groups.h */, + 65AC65EB59A885C16D9A87744E9F0DAA /* unix_sockets_posix.cc */, + 198EA4AFB67D47868AABDD1A8301B6DB /* unix_sockets_posix.h */, + C0470EDDE4EF43E478AB45929CBD1396 /* unix_sockets_posix_noop.cc */, + 3F25BE28D3A44A3F0D3F7C326C30FC68 /* upb.c */, + 6806DB7E8C48D470D09A998C4BDD0EAB /* upb.h */, + DC19A601B51721914230A09F736C4924 /* upb.hpp */, + BA30B576B1BA480374C2BEDDF57E47F8 /* upb_internal.h */, + CF3DEBCCBEDF6A950945F9F9E791A7DC /* upb_utils.h */, + 973371F8B812DE7DFB532BAFE9E57F07 /* uri_parser.cc */, + B31E493DE8DE83242F803FD0DD0041F6 /* uri_parser.h */, + D61097D5AC2C6DFDA704C3D88D7EEA70 /* url_external_account_credentials.cc */, + 6DFAF9B53518753656AE8F939DDC8C5A /* url_external_account_credentials.h */, + 8C38037DB6EC55DD10758FD4552A32DB /* useful.h */, + 6DB74C7061F8F431F858E94577B365A5 /* utf.h */, + 985E21E84662452DCB94526D7FB112AC /* util.h */, + CA4C8C101C050162DD8009745CE5A1F6 /* validate.upb.c */, + 06A963028A6ED07940143366C6815FC0 /* validate.upb.h */, + 30B73ED129AE8AB0157A1E8395F33F34 /* validate.upbdefs.c */, + D6F41A9F8DDA943C36374194CE45F422 /* validate.upbdefs.h */, + 2B2A55F055DCB8AAF7AEE4E408666839 /* validate_metadata.cc */, + 63460B2B494F427AE6F587B816106346 /* validate_metadata.h */, + DF3D7EACE9186EFE061408CEA41BDD09 /* value.upb.c */, + CDFB935BDD6450B2CB53B5F610410FF5 /* value.upb.c */, + 9B8162CCB2B857FDAE262DD5D1BB4E70 /* value.upb.h */, + B7202EFCF92A26B903E03337FD622E68 /* value.upb.h */, + 1F9EB54DBC921829EC3541C0EE26EA3B /* value.upbdefs.c */, + DC98114CFC67D485D39A7F336475EC28 /* value.upbdefs.c */, + 1CBCFBB0EE42C6DF8519FF2E620DCC79 /* value.upbdefs.h */, + 10C8359BFC350D204571F3FF56B69D7C /* value.upbdefs.h */, + 90CA7A4D9A60AED60C2ED15B3B12CFFC /* varint.cc */, + DFE07933A04C0722304262517A731B5A /* varint.h */, + 81D22140348EC32ECDDD7440A8085A6B /* version.cc */, + 923414142451CBCB51D40B20CE4B7E21 /* versioning.upb.c */, + D99226CD44FB2E95D0DDD3F98256E425 /* versioning.upb.h */, + D4B64B102E996DC9605FF21A838751A3 /* versioning.upbdefs.c */, + E46CDF73C34F2A6DBFFD58BCAF0B14AB /* versioning.upbdefs.h */, + BAC4D3FAB5C4EB71C6ED3C7A8616CE16 /* wakeup_fd_eventfd.cc */, + D3C906D7583DB5E0ADAB96CF81104AA2 /* wakeup_fd_nospecial.cc */, + 2D0FC19AF7E30E1EE0611516B3047469 /* wakeup_fd_pipe.cc */, + ED4E196EACEDA89C19CEB1555B75046A /* wakeup_fd_pipe.h */, + 9CAA344E77ADD75BC2579E72EE792290 /* wakeup_fd_posix.cc */, + C43E3B31216E05531D22105ECFD7DDF3 /* wakeup_fd_posix.h */, + B357F6F302DB165EBBC31386F7737D89 /* walker-inl.h */, + 09B6666EC9A0C08622EA201A0E08F5E1 /* weighted_target.cc */, + 8CCBF6D166FF1AA1F309F7F54B3A6170 /* work_serializer.cc */, + A879AEC0F0A243E1D3A00C3C36F00405 /* work_serializer.h */, + B9068FB16837279648FFDF1E2633B711 /* wrap_memcpy.cc */, + EFB9DBFBD4CEBEC5835AC85A3DC2BE7C /* wrappers.upb.c */, + 198C357C02FEF365AE8234C0CD73A2CC /* wrappers.upb.h */, + 299A7D06986AC088A4E87C7B039AF1F8 /* wrappers.upbdefs.c */, + 6929B47C4F83DE0C499A27FAEB6BF188 /* wrappers.upbdefs.h */, + E73406809630E5B914C51CF3A3BB440C /* writing.cc */, + 1E87530FB01C3F204CD3BF8DEA67B806 /* xds.h */, + 901CCC423D5A9F828B8E0F9155248B9D /* xds_api.cc */, + A5264B7609CEEB42C70F945195835EA1 /* xds_api.h */, + 7000B9F16EE10BE80F556E4CFF081DD0 /* xds_bootstrap.cc */, + 5F96B73C87B74A710538088CC3CC42C8 /* xds_bootstrap.h */, + 5A17BBE0CD29A162BE14DD34DFE6AF7D /* xds_certificate_provider.cc */, + DC1FC86FE8E910ABE8A8BCBDCD433D9C /* xds_certificate_provider.h */, + AB916CF7DDB009115D08B1AC15BB2C18 /* xds_channel_args.h */, + CBB7D5EA53E1CDB39161C3BD73DA709F /* xds_channel_args.h */, + 5E20BC731E6E488E4C265B07378D28D1 /* xds_channel_creds.cc */, + 750F6C4D528695305EDE1B157BF14683 /* xds_channel_creds.h */, + 3A2929F85EBE366283E83E4F709FF192 /* xds_channel_stack_modifier.cc */, + 9AFD1BA961BCB07D0872C543E6F2D8E3 /* xds_channel_stack_modifier.h */, + 9248441D9003531B1ECF2AF753EB95CD /* xds_client.cc */, + 1F11D02011EF5B75BC559C250C5539C3 /* xds_client.h */, + 59D727EF6E97707891D89A497C0760C5 /* xds_client_stats.cc */, + C7CAF10C22A23D622C7AFBAF6349D373 /* xds_client_stats.h */, + A4AEFDDAB80A142A8333FE94FCFB10D1 /* xds_cluster.cc */, + 5FEFEA0A04CFA4775970BCC6A52F4771 /* xds_cluster.h */, + ADCDFD7925373795ADFAD37C00E0839B /* xds_cluster_impl.cc */, + C324C86C728B8EB693C8B78FC782FEF3 /* xds_cluster_manager.cc */, + 1E47076D997131059520FCAE8CB30167 /* xds_cluster_resolver.cc */, + 426580D44D2B04FD5C013D640EF4D630 /* xds_common_types.cc */, + DAEFE00953709D5B426D1BBB084D49D6 /* xds_common_types.h */, + 0B1041ED09916BD4F1266BC9E45EFC2D /* xds_credentials.cc */, + FDED8CA1A863A892DC54D8801FBA581C /* xds_credentials.h */, + F986E070DB671475D9B00EFCE41BBA09 /* xds_endpoint.cc */, + 0BCB60D5B114261EC492AA2D3F7D66E3 /* xds_endpoint.h */, + EEC179D11CD29528573A0648C0E94F80 /* xds_http_fault_filter.cc */, + 7151F8B6A513A491A9ED1DF985822077 /* xds_http_fault_filter.h */, + 7A4AF187C9F371D2BD403A1153BE15D4 /* xds_http_filters.cc */, + BCD1545900C0E9A02EE796E16CF9B24A /* xds_http_filters.h */, + 125CE49479A3847C09BBCF5A579D0D39 /* xds_http_rbac_filter.cc */, + 78DA39A4531D719ED9349175AED2FE7A /* xds_http_rbac_filter.h */, + 8A95AC97F778874B7A50D717CECF43CE /* xds_listener.cc */, + A481A804862AC9632FFE812C9E592E9F /* xds_listener.h */, + 707B7BB8C58EF90A1687CE05C1F8FCD2 /* xds_resolver.cc */, + 31EC79FFC0C2D25B66EE18D8EBBA580D /* xds_resolver.h */, + E17DBF5F48E222DEBFC34246F62FBC31 /* xds_resource_type.cc */, + 753DF97634FB28A0BEC213F480F0159A /* xds_resource_type.h */, + 56B8516AE59330EEC37AFBBFCE18D088 /* xds_resource_type_impl.h */, + AAA3A9AF05FF8CCCC31CC5F6ECF8E26B /* xds_route_config.cc */, + 744588BE50B70EC86CDBA607F4426EDB /* xds_route_config.h */, + F2C09302D8B38966851F525B109AB81F /* xds_routing.cc */, + 52168929D6894E17968064856D22624C /* xds_routing.h */, + F77354A1E9BB9F966A7D2D0BEC2F0B10 /* xds_server_config_fetcher.cc */, + 926A512B945681BC9FF1DA81E2B5F32D /* xxhash.h */, ); - name = have_sse; + name = Implementation; sourceTree = ""; }; - 60ECA1955764FFA54ECA719DEEB1C980 /* gRPC-C++ */ = { + 674CB3F232EE971380C86297A8D113ED /* fastmath */ = { isa = PBXGroup; children = ( - 3DC9DD087BC3E00C90480DC81EAF60D0 /* Implementation */, - 97F8B28A902F72904985789025B6E8D4 /* Interface */, - 8D264271F20180A0C474C49205AECCD3 /* Resources */, - 0C2AEC5029494B60AD97C4AEF4077139 /* Support Files */, + A5EAF5C086D9D3DFF4B6433874C511B9 /* fastmath.h */, ); - path = "gRPC-C++"; + name = fastmath; sourceTree = ""; }; - 61F66C8E69FAB2510AE6F5AE8C15C979 /* memory */ = { + 67FEB637EE3772CD395DEC9B42310CE2 /* GTMSessionFetcher */ = { isa = PBXGroup; children = ( - AE2CE103B38BC976DA045BA966B95FA2 /* memory.h */, + E01436AB6E119FD8C3A265BDC672452E /* Core */, + E0CAB210422DAC8CD2B5B1CA3672AF1C /* Support Files */, ); - name = memory; + name = GTMSessionFetcher; + path = GTMSessionFetcher; sourceTree = ""; }; - 628CEB7BE63CF80334F0AE34657CCA7B /* bits */ = { + 688052905ADAB8A05B1C543221A75AF7 /* status */ = { isa = PBXGroup; children = ( - D97D1568AF51BD1FCBC9CA817FB74DB2 /* bits.h */, - 4F6FDEA4A5F1E357BF4010C8A5BAD9F7 /* bits.h */, + 080672C3CDB0A09966240F2293768AEC /* status.cc */, + AADDA1FD3D52A25FF3A6581871567896 /* status.h */, + 510E8005B247211C51B3AE7B7633AA1D /* status_internal.h */, + EBBB14D94FA540F2B0839A1528CD6A6A /* status_payload_printer.cc */, + B2AB0C00581CC927D8FC929EBE615FCF /* status_payload_printer.h */, ); - name = bits; + name = status; sourceTree = ""; }; - 62F8194557A5582DE542DE75F8340C08 /* sample_recorder */ = { + 688CCBE6041A0B57F0E98D37E7289EBD /* demangle_internal */ = { isa = PBXGroup; children = ( - 4F416956D1C0D99E46922CC4EA6A5184 /* sample_recorder.h */, + 8B00CC442D6B8433B3B58953DDEC870D /* demangle.cc */, + C326E59137784B375EF1E2CCA8621DE2 /* demangle.h */, ); - name = sample_recorder; + name = demangle_internal; sourceTree = ""; }; - 64DA161139834157C85D83A2A6A80C3D /* span */ = { + 69432D862A22284F6EDB29504B1CBF10 /* Support Files */ = { isa = PBXGroup; children = ( - D5308B145BF7938146E0E27F9F531C95 /* span.h */, - CCB304597FED9277C05362D1BC6433A1 /* span.h */, + 2B8F32280889B338E9556ADDBF686BFC /* FirebaseCoreDiagnostics.modulemap */, + BCA84FBB831E18DAEED6780BEC07AA8F /* FirebaseCoreDiagnostics-dummy.m */, + 6CB7A655A2BB7DB74905C3E682C82E37 /* FirebaseCoreDiagnostics-Info.plist */, + 4D6C4CAD50BCE677F87D51D5F5F7E067 /* FirebaseCoreDiagnostics-umbrella.h */, + 47159ED6338906AF1C4429988001F568 /* FirebaseCoreDiagnostics.debug.xcconfig */, + 61EA2FB9EB952EC12664AE32EFDCA9E2 /* FirebaseCoreDiagnostics.release.xcconfig */, ); - name = span; + name = "Support Files"; + path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 653A0BA05D1F35EB6CED4496EF7E4C62 /* utility */ = { + 69A69502F95AD5D5C8948622F7ADC781 /* type_traits */ = { isa = PBXGroup; children = ( - 5E201643EAD2A4098ACB579743658CD4 /* utility */, + 18CF02946F92A54A130D3B825555C008 /* type_traits.h */, ); - name = utility; + name = type_traits; sourceTree = ""; }; - 6550404F5F1577CDA570D746833A8B50 /* NSData+zlib */ = { + 6B2E40BD0BEA46E39CD7542D342FC5BD /* time */ = { isa = PBXGroup; children = ( - 8F8F19F9E1481749C185D71E041EE600 /* GULNSData+zlib.h */, - 03609EE23B2A58FDA5D12A5ACF25C22C /* GULNSData+zlib.m */, + 0234A25EA5E35A8E2B64DD706882BE0B /* internal */, + 06EE7202247C9E4D455CBB34BA53F75D /* time */, ); - name = "NSData+zlib"; + name = time; sourceTree = ""; }; - 6614BCB6AE70ED69BD6E731DE74CB691 /* Libuv-gRPC */ = { + 6BDB843EC5DD0C8A884D0BA59F755DE8 /* Support Files */ = { isa = PBXGroup; children = ( - E68A6945C9EBEF0C1FC06E11D11DB5EF /* Implementation */, - FE8A985CDEADE77DDA1336A2A072C069 /* Interface */, - E04BECE761DE98C9DAB474E938A33563 /* Support Files */, + 3161FE98E759013EF058F4386C9F0439 /* FirebaseAuth.modulemap */, + 645876131EFC4E362E8B4AE9ACBD1D02 /* FirebaseAuth-dummy.m */, + 60F464F201D3B207993F6B2A71400AD9 /* FirebaseAuth-Info.plist */, + A22E6AD4E4D02DC7F8512B538CF8E99D /* FirebaseAuth-umbrella.h */, + 783BDAFB88A48948A9C559D76DB2A5FE /* FirebaseAuth.debug.xcconfig */, + EDC78F1FC5DC9C020F097CE738FE5872 /* FirebaseAuth.release.xcconfig */, ); - path = "Libuv-gRPC"; + name = "Support Files"; + path = "../Target Support Files/FirebaseAuth"; sourceTree = ""; }; - 6929411A38F5F33B722000D48DB24528 /* inlined_vector_internal */ = { + 6C911BEF94075252D135E58017D81A9A /* civil_time */ = { isa = PBXGroup; children = ( - 660E6521D0B46DBFE7868052386A018B /* inlined_vector.h */, + AAEBF1B8573F27431022C28AF0366694 /* civil_time.h */, + FB3C513795C9F950E138615E8D59D59C /* civil_time_detail.cc */, + D8579DE5DE27A25EAB2B7E9D5BD1B08C /* civil_time_detail.h */, ); - name = inlined_vector_internal; + name = civil_time; sourceTree = ""; }; - 6B551507B226FD4381DF147743FE6CF8 /* symbolize */ = { + 6CE7F0C515FD831EAC1B027772A3412D /* nonsecure_base */ = { isa = PBXGroup; children = ( - ACDABAD6D0A30541241E684EE23EDA1D /* symbolize.cc */, - 18F4037BAD085E86E22627E24B18A6EB /* symbolize.h */, - 18D5C614881B5B957AC21C397F05C4A8 /* symbolize.h */, - 1016B6533B6334EFBB41E2B0CE9C6394 /* symbolize_darwin.inc */, - E03193938D6B2092668107D6C262DD29 /* symbolize_elf.inc */, - 2313BB422A91B3865C047C93A1C13F67 /* symbolize_emscripten.inc */, - FCF0B6D2ABA038FFFEA9BAC95BB318AE /* symbolize_unimplemented.inc */, - 64D5D8B4689A4459A9513880B7C0B3F8 /* symbolize_win32.inc */, + CAD9F8EDA37D573B615E3E91B6C834EA /* nonsecure_base.h */, ); - name = symbolize; + name = nonsecure_base; sourceTree = ""; }; - 6BEFE271461AB6906C590CC1433A786E /* distributions */ = { + 6FA702FBC71ADC3F6D9FEA47F9EF66BE /* bind_front */ = { isa = PBXGroup; children = ( - FE66F2484E35FB0A463C35AEF2D4B8F8 /* bernoulli_distribution.h */, - 12135DF65E1F0C38D520F5E15E5F19D4 /* beta_distribution.h */, - ABFCFEFB639BAAB4AA7406E1B9C8A3E0 /* discrete_distribution.cc */, - 9897228EF3C68866C58B48DDA6C763E8 /* discrete_distribution.h */, - 07382E56313C06E32A5F9E349763D60E /* distributions.h */, - DEAF412D0CFFB39E1BFFDB1E64048FE9 /* exponential_distribution.h */, - E0EF834F0C98BCAA3413536D1CC6D427 /* gaussian_distribution.cc */, - CB3434DB42D580FF9206FCA5DC1B7285 /* gaussian_distribution.h */, - A1C0E9DD7973D516B834F0D05357E4E6 /* log_uniform_int_distribution.h */, - 065A175D13E9F5A503FB946D1E6E7577 /* poisson_distribution.h */, - 86C040CC9AD6FD805F69679AB74A6023 /* uniform_int_distribution.h */, - D672F3F3F312F2306B924BEC11F7DC20 /* uniform_real_distribution.h */, - 8DA346353DD8B04B3A8A1F8B6725A0E9 /* zipf_distribution.h */, + F212BA9FFB5A28E0D76AE4446168A7F9 /* bind_front.h */, + EBBCEE53953D27CE077646266D0A8E0C /* front_binder.h */, ); - name = distributions; + name = bind_front; sourceTree = ""; }; - 6E4CF78C1DD8FA8D4902988E8757EDA3 /* distribution_caller */ = { + 71F29A6F26B2539017BEFDDE4D792EB1 /* fast_uniform_bits */ = { isa = PBXGroup; children = ( - D6C60E3941E66348B76800E5F9E3F5FF /* distribution_caller.h */, + 76FED6B6F154E081C7C535EDF5F62F5F /* fast_uniform_bits.h */, ); - name = distribution_caller; + name = fast_uniform_bits; sourceTree = ""; }; - 6F6C5E6F35B13B0AAAF9254918A2C722 /* debugging */ = { + 734F711FDF3CC81F36F25F3694631056 /* have_sse */ = { isa = PBXGroup; children = ( - AA21C7D1C8E25DE641647299728AF180 /* debugging_internal */, - 12BACB9C37B94401CA5EFCF6AE2606D6 /* demangle_internal */, - C2D029DB2738DEDEFFB0F904408900A1 /* stacktrace */, - 6B551507B226FD4381DF147743FE6CF8 /* symbolize */, + 2DFEA2C7CC83143DBE5DD4659CA99DC2 /* have_sse.h */, ); - name = debugging; + name = have_sse; sourceTree = ""; }; - 706A2FA929F6743CA3D46BE5517BD076 /* bad_any_cast */ = { + 7551218E8A4A65A349B1EC3D2E246ED5 /* symbolize */ = { isa = PBXGroup; children = ( - F36C18E462F395CD7CE249F81FBD0971 /* bad_any_cast.h */, + 1002C20A8475BD0EB332200B1073AF05 /* symbolize.cc */, + 429A9536EDA7C4DFF3CC15AC3BB3AA23 /* symbolize.h */, + 38D298BCCDFBF6F5A131F2F74529E894 /* symbolize.h */, + 6FAAF56264CE98B1859A2EC38441CA4D /* symbolize_darwin.inc */, + 793F3686ECD9B80BEE1B236A01E4A7B8 /* symbolize_elf.inc */, + 5C39C22DBFBA6BCBE8E1007E3C5FE6C4 /* symbolize_emscripten.inc */, + 2A372A0C9F80AD87724D280D1BE7EB81 /* symbolize_unimplemented.inc */, + 64F43F5F8D77B7AD63DF3CCF68AF04F9 /* symbolize_win32.inc */, ); - name = bad_any_cast; + name = symbolize; sourceTree = ""; }; - 7107980A24FA64ED8FF1546B5F245C78 /* city */ = { + 75798C05772968D63E00DC2A9F415FFB /* Support Files */ = { isa = PBXGroup; children = ( - 190EFD6CB0B891E1ECD261122E6CAD43 /* city.cc */, - BEE479A9ED41540EF83A6C10E34FBA50 /* city.h */, + B3946E9E6F5BEB73291420F1C49E892B /* CLTypingLabel.modulemap */, + E4A1B5A4E5416F8590843CE6E648D56C /* CLTypingLabel-dummy.m */, + 4F42D93E27A8586CF0912FDC7A4774E9 /* CLTypingLabel-Info.plist */, + 95F89D07F00D4FFA02D4F7896869A9B4 /* CLTypingLabel-prefix.pch */, + E0219BB149B161C8D7AA5D9494CC0140 /* CLTypingLabel-umbrella.h */, + 9AD1F57949459C695AF66472407A73EC /* CLTypingLabel.debug.xcconfig */, + 950288086A35B2B8CC5898D866AD3DE2 /* CLTypingLabel.release.xcconfig */, ); - name = city; + name = "Support Files"; + path = "../Target Support Files/CLTypingLabel"; sourceTree = ""; }; - 7117076E40C079F7DBE18A54EEBF17F1 /* seed_material */ = { + 76293802FAFC470E6FB346F5F5CAADB7 /* int128 */ = { isa = PBXGroup; children = ( - E89C97DABA46937FBF097A0108E131F8 /* seed_material.cc */, - 29162625476EED4B899EAA781ED51679 /* seed_material.h */, + ACE3917478381E30DC5505EDDBC5BFB3 /* int128.cc */, + 4A8E749951CED7CB6B2A116637E92ECE /* int128.h */, + 8E0A7645FDF394A22A20A5E5B468EEFD /* int128_have_intrinsic.inc */, + 58BDC78857AC000484A9BFAE623D3117 /* int128_no_intrinsic.inc */, ); - name = seed_material; + name = int128; sourceTree = ""; }; - 71FA861EA18C2E949D8944D2525C9D34 /* platform */ = { + 76BAD0CC6CF2959973B9BB37C4FE66F1 /* Support Files */ = { isa = PBXGroup; children = ( - 30A54D8F04C5CC171F121955E24AB69E /* platform.h */, - 6AF361982F7AAA0BB626D002AE0E90B4 /* randen_round_keys.cc */, - 572C085368F67605A3C1B0315F611E38 /* randen_traits.h */, + 02CA55E2A62787F06B72E173006E4553 /* BoringSSL-GRPC.modulemap */, + 78898DA0880A6CD33F5C26E3D76B4285 /* BoringSSL-GRPC-dummy.m */, + C394F7BF92B7905507AAB07EB603D42F /* BoringSSL-GRPC-Info.plist */, + 0ABA1EF90595AE460B7F37B0ED35B9D5 /* BoringSSL-GRPC-prefix.pch */, + 401BE371D29722629BA4091EA6B161B7 /* BoringSSL-GRPC.debug.xcconfig */, + 7289B0F87C60F11F99A29597B3E4E922 /* BoringSSL-GRPC.release.xcconfig */, ); - name = platform; + name = "Support Files"; + path = "../Target Support Files/BoringSSL-GRPC"; sourceTree = ""; }; - 727E965EB08E0510AAE2793D977D3659 /* container_memory */ = { + 77B8EE84F4D390A5568FAA078B3B8408 /* gRPC-C++ */ = { isa = PBXGroup; children = ( - 0ADCA58369C9314BEF7FFB6A8CEB21CA /* container_memory.h */, + B6DA95563FD5CAB40E67480AD2A9AC84 /* Implementation */, + 858A40CFCFA3F88A0E03C88298FD5AC1 /* Interface */, + 57DA87D816BB87BFF746B03C69FACD0A /* Resources */, + 034561957FC45F1E7834F6AF4689A126 /* Support Files */, ); - name = container_memory; + name = "gRPC-C++"; + path = "gRPC-C++"; sourceTree = ""; }; - 736A492E4A71360B57CD115F14D5A5B4 /* cordz_handle */ = { + 77DF85D70D3E28D9A80D94E41911B173 /* uniform_helper */ = { isa = PBXGroup; children = ( - 98971124D8175C09D02E5D0DC663FDAC /* cordz_handle.cc */, - 95D6D17DF99D5EE2E2A39F06166EE31F /* cordz_handle.h */, + 356335F3B31FAA05D7F6EE5A31DE2C9F /* uniform_helper.h */, ); - name = cordz_handle; + name = uniform_helper; sourceTree = ""; }; - 74F08F306EBA38899FA713644B061BD1 /* AppDelegateSwizzler */ = { + 7B0E9F34A8F1B100811342BC9124B343 /* debugging_internal */ = { isa = PBXGroup; children = ( - 75A5594AC85A4BCCDF3A3BC14AC1F2EE /* GULAppDelegateSwizzler.h */, - C998A8231621FB295F4B4010E042AE41 /* GULAppDelegateSwizzler.m */, - C6DE9B717DC0FEA593046F3A90FDB8AF /* GULAppDelegateSwizzler_Private.h */, - B8A921BA900C324829CAA4A172811395 /* GULApplication.h */, - C9752E1EBD2815BC2CD3D61E95571CBA /* GULLoggerCodes.h */, - C08F143799202F9EA4BBD8C7E164FBA8 /* GULSceneDelegateSwizzler.h */, - D51E402969C54FC1717EF537D7692127 /* GULSceneDelegateSwizzler.m */, - 5C09E600218F805ADBA20C8D9B7EBE83 /* GULSceneDelegateSwizzler_Private.h */, + 04B0CD9888751808B2F391226DD32645 /* address_is_readable.cc */, + CE6F5E13696F4586FD19BB57DDB63251 /* address_is_readable.h */, + A72B3E41AA162406450C089488B6FEC6 /* elf_mem_image.cc */, + AFD7C45756478E689495818423B017E0 /* elf_mem_image.h */, + 2EB336BF11A711432F910B52B063C3CF /* vdso_support.cc */, + FEA25BB35EF0DD0B7FDD42E853FA6383 /* vdso_support.h */, ); - name = AppDelegateSwizzler; + name = debugging_internal; sourceTree = ""; }; - 783990AC3FC3E2EEFD877CA9430BF93D /* Support Files */ = { + 7BECCF74289F76BC9FAEF827BA9B98EE /* Support Files */ = { isa = PBXGroup; children = ( - 966B5FA65A5FAA0851CBDF158F75DD1F /* FirebaseCore.modulemap */, - B10135E87098E777EEA98A3A723C17C5 /* FirebaseCore-dummy.m */, - B383B4EF2C21852CF7F1D3DC1B4C4E78 /* FirebaseCore-Info.plist */, - 2BFF89B8F40635722A0E211E8D2AC34C /* FirebaseCore-umbrella.h */, - AA3A5D68BA26751D3EBE80AC04D33436 /* FirebaseCore.debug.xcconfig */, - 99990B79859B750223B653E08EBEB3F7 /* FirebaseCore.release.xcconfig */, + B64B1F09BC02786F942F5669B90807B5 /* GoogleDataTransport.modulemap */, + 2788B911DE2B28C61EB36476DBD51598 /* GoogleDataTransport-dummy.m */, + FDEDD2CD9E7823407F8F61981EA730B5 /* GoogleDataTransport-Info.plist */, + 1161FC299CA118C5AB65FFB4373F2634 /* GoogleDataTransport-umbrella.h */, + C29A0661738030DE0724A0F9CB685EB9 /* GoogleDataTransport.debug.xcconfig */, + 743F91B42AB2B0DF8FFF6CC4D6C54B46 /* GoogleDataTransport.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; + path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 79CC5F6E35B0D3F9266EE020CEF45FF0 /* exponential_biased */ = { + 7E46A0E9F45E80BE6BBC62B6D1C80C1C /* meta */ = { isa = PBXGroup; children = ( - 05945181925CD902E93B6CC28DB4AFF4 /* exponential_biased.cc */, - 27AE0460F042D36393F55774BE28F3D8 /* exponential_biased.h */, + 69A69502F95AD5D5C8948622F7ADC781 /* type_traits */, ); - name = exponential_biased; + name = meta; sourceTree = ""; }; - 7B63FA7567B81CEC13EB6B8E01D04110 /* synchronization */ = { + 8004A032EA3247BB7C7B4ED5EF00309F /* city */ = { isa = PBXGroup; children = ( - ADEFA34F846145BD04F8B7816D476913 /* barrier.cc */, - C1401BBCBC6B2957DDA7FD27DBEEF71F /* barrier.h */, - 00196DB86F777EE3545D422DE44E59DC /* blocking_counter.cc */, - 2ACC00B7FE338483A04323229E7A25CB /* blocking_counter.h */, - 3473FFFF8960559F72A9FB33E8906BDC /* create_thread_identity.cc */, - F0CD28FEFFE9BE1FB6AD4EF9B24FA93D /* create_thread_identity.h */, - 53212C870257E407514D0B7EBBC7CAE3 /* futex.h */, - 44E70B4D044EDFE27528626FA49D8BEE /* mutex.cc */, - E8248AC1B424553C75E095E2F0A5A7F3 /* mutex.h */, - A20A55B085DEBD64FD6A4D703D6D5CD0 /* notification.cc */, - B84F41C1783AAC6BE49E27B856763A76 /* notification.h */, - DEFA22796A64CE2A3C7F2975BEE267F8 /* per_thread_sem.cc */, - F68E7432DBC881D4E811C5C30F103151 /* per_thread_sem.h */, - 837537285C9BEC5295F81A450E80E355 /* waiter.cc */, - 9E6BFFA9D269D9E1F76D8E3EB80AA2AD /* waiter.h */, + 95BCDE09AEDF13E2D462E8CB0E87A3C5 /* city.cc */, + DEBCC1E682E8B7415409A5066CAD5090 /* city.h */, ); - name = synchronization; + name = city; sourceTree = ""; }; - 7C1C831D5A41153CAA61AAAED73B051B /* cordz_update_scope */ = { + 817A4C2F01DF0EB186E19F2DEFAC5169 /* randen */ = { isa = PBXGroup; children = ( - 587F6CD8D7DB682D57FDFE9C5C5E59DF /* cordz_update_scope.h */, + 7726294043E91B12FE274BBEAF1BCEC3 /* randen.cc */, + 6C60803E23C62ABCA5CB9FC8246AF59F /* randen.h */, ); - name = cordz_update_scope; + name = randen; sourceTree = ""; }; - 7D7F9BBEC00B72C288284C8ED5113FFE /* config */ = { + 83FE3447B1C26871E20979DC5CB4D0B4 /* dynamic_annotations */ = { isa = PBXGroup; children = ( - CD8FB3756F6658B26C1416C73BC4E6DA /* config.h */, - 394011907B2C5045603AED3A65EE8EE4 /* options.h */, - 398C58EA6AFF8D30B83671182AE98735 /* policy_checks.h */, + 744FD330FACC2569A4859FC9F49D0E80 /* dynamic_annotations.h */, + 2EB24F97021E7DE0A5E11AFDC2B63B1C /* dynamic_annotations.h */, ); - name = config; + name = dynamic_annotations; sourceTree = ""; }; - 7EB464E6D9D17690001E1E5D9944E933 /* bad_variant_access */ = { + 845333EC1E2E4793C409A18CEE1116E1 /* generate_real */ = { isa = PBXGroup; children = ( - 32A9E9202EEA853D80E2AF093225EBB2 /* bad_variant_access.cc */, - DCEBE57AA1157990290F48A8B0B75D9D /* bad_variant_access.h */, + F6D32FDD67CABDC8E6FD4735A297DDB9 /* generate_real.h */, ); - name = bad_variant_access; + name = generate_real; sourceTree = ""; }; - 7EEA5AF3C3815EF67877D41538133C19 /* throw_delegate */ = { + 84E29B6FF4EA03C9C1A70DA725DC6613 /* Support Files */ = { isa = PBXGroup; children = ( - 519111FE31AF9C33771556A6A7CFF355 /* throw_delegate.cc */, - F57622D49B27A597B810667D2AB89B01 /* throw_delegate.h */, + 96084192572C6759B72A559F4362F303 /* gRPC-Core.modulemap */, + D04545346C295C4C80EF1715C4B32DFD /* gRPC-Core-dummy.m */, + 96219B6BEEC3D463EE9351DEA9E91C3D /* gRPC-Core-Info.plist */, + AF9C48EC005C380A1825DD6E82B49372 /* gRPC-Core-prefix.pch */, + F1F33F62688A0542F04E8CF04A7C4999 /* gRPC-Core.debug.xcconfig */, + B0295B6950116DEC5ABF66D74803854F /* gRPC-Core.release.xcconfig */, ); - name = throw_delegate; + name = "Support Files"; + path = "../Target Support Files/gRPC-Core"; sourceTree = ""; }; - 7FC94320C0C9CB6136D53698B26F8980 /* fast_type_id */ = { + 858A40CFCFA3F88A0E03C88298FD5AC1 /* Interface */ = { isa = PBXGroup; children = ( - FC0413FB7D016F2CA26B29C8FF107925 /* fast_type_id.h */, + EA914049B77FD58C15602EACBAF4ABDF /* alarm.h */, + 3DDAE5285DDF8A5FEE9A3585E992E336 /* async_generic_service.h */, + B10863E311D88E6BE55F77948390B0EF /* async_generic_service.h */, + 2377BF3B9FB76D3DFA2304AF542EDFB4 /* async_stream.h */, + BEDF664DB16A959C39F6ADE0982DAACE /* async_stream.h */, + DCCD391CA113201864C4D7ED2B2D268C /* async_unary_call.h */, + 65A2D17ECB9E8B2B71278108C094BEE3 /* async_unary_call.h */, + 1CBEDE14DC9EB9B242439F210D6978AA /* auth_context.h */, + E82751FDA492DE54F28088233BF5AA8E /* auth_context.h */, + AABB9408CA7882A2C975D53814794902 /* auth_metadata_processor.h */, + 56C71BBAB31252A3F311FD3B14185D69 /* authorization_policy_provider.h */, + 7DC2455AF37775A57CF18B34D380CCFE /* binder_credentials.h */, + 270F5A63E032F374CE90F81F22941A32 /* binder_security_policy.h */, + 132F3CAC3F715125DFCFCC869B568597 /* byte_buffer.h */, + 6659678F74F091AEAA980474E5005B11 /* byte_buffer.h */, + 857D08E60D8CB5BC175923097FB528C3 /* call.h */, + F5A8F14066AA2F741A3439B16CA86352 /* call.h */, + B81F965BF413D73610690E9DF52126DF /* call_hook.h */, + 01F1100AF8018C34A8A962DBF2D89521 /* call_op_set.h */, + 307F79BD8E072C96401D9524CEE36EF3 /* call_op_set_interface.h */, + 49B2176F8D282A3427D5188FF3D84A6D /* callback_common.h */, + A35EEED096D1927031D2A2E656B22BD5 /* channel.h */, + 7C276AE3088683A164B97EB9C7C6F22C /* channel_argument_option.h */, + 22E2B34670BF782DDEA1810E557343D2 /* channel_arguments.h */, + EF33649D1762EB5CFB7C515A41307E90 /* channel_interface.h */, + 36F988D40EF06BAB7C6FBBF995871876 /* client_callback.h */, + 58124EB98D750BA1CFFDC0655EB6B863 /* client_callback.h */, + A875C914E0049F3F9B16804307836321 /* client_context.h */, + 913D768C528599FA45E6EE130726957D /* client_context.h */, + ED91E1A11C312D968889ECD726B8F4BA /* client_interceptor.h */, + C3D5B832E4B32AA1E544140497AFB731 /* client_interceptor.h */, + F760C6ACD2C371EA4C41B055C08FF1BE /* client_unary_call.h */, + 60660BFC635B76416DC9904483AFC9D5 /* client_unary_call.h */, + C1B65B50C5C5DF709CB6D2A92CD9DA98 /* completion_queue.h */, + 35229B169CB0C25BE73F74AD2D0DAADE /* completion_queue.h */, + 349E8CDE793B2CE932F468BEBEFD1386 /* completion_queue_tag.h */, + 7975E31F0C8EBAEBBE73151E99AF94B7 /* config.h */, + 02825FF3FF46AAAB26D9F0C99194FD69 /* config.h */, + 38CAE81BDC193A192B682DC6CD1C3669 /* core_codegen.h */, + 294F3668682383F451A9A8112D5311A5 /* core_codegen_interface.h */, + 67539DBFAB6D7470EBB4B81CD395A2D0 /* create_auth_context.h */, + 4094F04C795DF5C4C1EB3A044EB567A7 /* create_channel.h */, + B2379B2C6D2F0F2F6314B58CE7353DE0 /* create_channel_binder.h */, + 44DBAA8BA13AB884664F922538587524 /* create_channel_posix.h */, + E1D5E1D287122207DC6E949C078FD696 /* credentials.h */, + 82F03B3AFF5A629FC564EA968D93C103 /* delegating_channel.h */, + A4EA3A2631F90C41940B04ABF9CB8D89 /* generic_stub.h */, + EBC27C685ACBA0821D33659D7D62D512 /* grpc_library.h */, + 12BE2B743BE4A30C2CC5716431158137 /* grpc_library.h */, + 2528C3C880BFEA3EE930B275FE410BC7 /* grpcpp.h */, + 34A2A0D4FE749206479626D6608F02BE /* health_check_service_interface.h */, + 46B13EC77F2FEED477A102B965DC9FA2 /* health_check_service_server_builder_option.h */, + 9661672C0188C0FA91EBE4F7D17DF119 /* intercepted_channel.h */, + D806BC6E3AC9A90601B95EA95C3C6A14 /* interceptor.h */, + 0B38BF9C1AABD653720CB3B55AEEDCF9 /* interceptor.h */, + 2B033A1AB06994F5A86D4D7687680540 /* interceptor_common.h */, + 4B12C2321E0D337A40480C526BEEDACE /* message_allocator.h */, + EC749BA5CA64F3EB128BC0F0391BCAE9 /* message_allocator.h */, + 1DE6E6755A31DC227B90792B742314D3 /* metadata_map.h */, + 2CD96C498CC7A481D4FA1E46850E70B3 /* method_handler.h */, + 077C7B49D7C3D3B7F58E511F2A15C8FA /* method_handler.h */, + 0EEEF532676816FF3CCEE669CDA0A179 /* method_handler_impl.h */, + 9323ABB89CB8331D8EA0E30B772E7EBB /* method_handler_impl.h */, + B9606DE331107B83AAC28256BFC09685 /* proto_buffer_reader.h */, + 5098FDF29A1ECEBA473D667406424987 /* proto_buffer_writer.h */, + 0C620150225E9E4585B1D60E98B2C14E /* resource_quota.h */, + 70C68E19B3CED84B740E4C000451E576 /* rpc_method.h */, + 7F8949D831C4D2F73FFE546A0CA73752 /* rpc_method.h */, + CD7B9328FC6D2EB87D03CA6A2340FB97 /* rpc_service_method.h */, + E66C7244BCF0AF79F4888D4E8ECF2A94 /* rpc_service_method.h */, + 3DB8473268ADEC083011731CF039518C /* serialization_traits.h */, + B8E55544382FB77DD1064F492B7567FC /* serialization_traits.h */, + 2D3B8EA09BE3F4E53FF2A9D7B6AC2096 /* server.h */, + C3A16AC189AD201D2EBA52EC6AFCA5C3 /* server_builder.h */, + FEE94F79FE7127AA158E61CC4225D145 /* server_builder_option.h */, + 953FEF398311C9BE9A0D296346A778F2 /* server_builder_plugin.h */, + 9429CB622DF6DC1E05E32040C38BC7C0 /* server_callback.h */, + E0E221DC8B64F9E6B36DC7EC8BDA9D77 /* server_callback.h */, + DCDF6188010FA4A96C4BD3D5C714685A /* server_callback_handlers.h */, + B7687F639EA004D3E834587C5AC8762B /* server_context.h */, + 56260DBAA0F9BD43B745A48DEA138C1C /* server_context.h */, + 297FF06C68058D0F2AE5344DAF07B0DF /* server_credentials.h */, + BCD640408F442FF20BD84FF1F5D38346 /* server_initializer.h */, + A306AB4ED438BEA0DFFBB16B7F30A79F /* server_interceptor.h */, + 9ABDBBFA7111C3AA50A9BCF22642C98A /* server_interceptor.h */, + 747F5398DD2517835079DEDFB1AD1BB2 /* server_interface.h */, + AF6850876B61AB849DB2BACED33F6367 /* server_posix.h */, + 4AE5CFF2183C250DC7FC6C04A6B2886E /* service_type.h */, + AE20E56D4208DB5E99DE7BCD4012755C /* service_type.h */, + BA37DBD77E02BBECC5B75B832E306850 /* slice.h */, + 38A9B6F0A90CC5BA7B33CF2237F9C9BE /* slice.h */, + FE71CB28FE35F07DB90EE91B9A4EF980 /* status.h */, + FE7AD42B54146B924E4B47C584A8E70F /* status.h */, + 2A52BF253E4C5847F80B6F42E98E8FE8 /* status_code_enum.h */, + CC59C91458601AC2EB638F6AA167A20A /* status_code_enum.h */, + 6E8F4741A311D58CB49FE20A92076559 /* string_ref.h */, + F97B32F463E2C5EACE7D8468D433E84D /* string_ref.h */, + 5A547B8A18E1D0E42C8ADB695A04ED8B /* stub_options.h */, + 3A320C40973853310B12442B3F0EE31D /* stub_options.h */, + 17709BD907C756BB74CF73420D01051D /* sync.h */, + 5E743000A70E8D991D7ADA9D7CFF58CA /* sync_stream.h */, + 49DE1AEEF83CAB8467865CDBBFFAC641 /* sync_stream.h */, + 9B56100E024F41DA6EDA583EEFEEDE52 /* time.h */, + EAFD9B90E108EC468FC3C7FA14AB2D05 /* time.h */, + 2F1BACC607AF3B082CA3AA766D0C1CF9 /* tls_certificate_provider.h */, + 2EDEA4B672BEF332C5AB18AC0B9034FD /* tls_certificate_verifier.h */, + B96466820CBD62F2AF9E32BCEFB5E952 /* tls_credentials_options.h */, + D17D2D23D02A201C6628436CB5B4DE6F /* validate_service_config.h */, + CE9DE2957DC9E5479BD03AC0EF64406E /* xds_server_builder.h */, ); - name = fast_type_id; + name = Interface; sourceTree = ""; }; - 7FD188F1FACF11F0BFC19CC421BE5898 /* raw_hash_set */ = { + 8C120BB19E7D4F83AD4D18D6BA860020 /* types */ = { isa = PBXGroup; children = ( - 58725D54B32D5B77A2724A66D7ECF9FD /* raw_hash_set.cc */, - BE9B3771AD49B4115D29B2442FBD608B /* raw_hash_set.h */, + BE8476B6934FA56D3CAC4772950AFFEA /* any */, + C600A9322953F093F1E9C643BE832FF6 /* bad_any_cast */, + FFFF8A1EEB30E5ED59C373265CD318A7 /* bad_any_cast_impl */, + 44CA5AC8DB22EC65FCFD36D46A609132 /* bad_optional_access */, + 584358D30153E608231A9D297B75642F /* bad_variant_access */, + 4C14F369ED05CD1E42D761F6DE48B555 /* compare */, + 2A3D68E5C987BC6C2A02E653A5854AAF /* optional */, + F7A66B019C81ABD1784C97DF1585CC1D /* span */, + BED66A32822BDEDD39F34AF5FBFB2539 /* variant */, ); - name = raw_hash_set; + name = types; sourceTree = ""; }; - 81D2B8C0FC1E7B3DDD2086AF8EDD0DA1 /* BoringSSL-GRPC */ = { + 8C4B25B69324889F7ADD9AD3524B4068 /* inlined_vector_internal */ = { isa = PBXGroup; children = ( - C0A206B325D30756AED35B434C23348F /* Implementation */, - 5A8299208F2D7F539835A125A30B7612 /* Interface */, - F14791818F9FB48C68E4B40513DD85E4 /* Support Files */, + 651389A6C373E3A2F8445934C5E6B4A6 /* inlined_vector.h */, ); - path = "BoringSSL-GRPC"; + name = inlined_vector_internal; sourceTree = ""; }; - 83E8FE994C8BCD0CBEE478F864019960 /* compressed_tuple */ = { + 905C409A5CF3128CD894BB8DB86FFE63 /* algorithm */ = { isa = PBXGroup; children = ( - 764766F27DF531CBB6300370021F1667 /* compressed_tuple.h */, + 0A2321910D7457C35B1D8ADE1292954C /* algorithm.h */, ); - name = compressed_tuple; + name = algorithm; sourceTree = ""; }; - 843D57A85F97731B896363114AD4ECA9 /* PromisesObjC */ = { + 91D0E323035FD021A6FB18BE47B70723 /* random */ = { isa = PBXGroup; children = ( - 71C8645FD664462639F4CC7BAA73B33C /* FBLPromise.h */, - 13274DA87457F27BAA718528E39BE269 /* FBLPromise.m */, - 473F4BECB31AE3F460DE823AFA12826C /* FBLPromise+All.h */, - 0B19703192BDEA80C0D6167C677F1992 /* FBLPromise+All.m */, - 517B97015B3FC5EA2B07A71FDE8D1FFA /* FBLPromise+Always.h */, - 64E041CE6B4F7947253B18999C4AF56E /* FBLPromise+Always.m */, - 3036537CDA0649E0878E8594EB35397F /* FBLPromise+Any.h */, - 024C89604927D27644723703E868DD3F /* FBLPromise+Any.m */, - 4011999713AC069C531D4FE0CBD5366D /* FBLPromise+Async.h */, - C65F4480E8AAB8456693B6C7292E8837 /* FBLPromise+Async.m */, - 40D31D0B14057F3C93CA1E68111B6050 /* FBLPromise+Await.h */, - A9CC64BCEB57A6B464B6A3B79D4A5C23 /* FBLPromise+Await.m */, - CE2A944A1ECC8689E7A9DDDB9023F511 /* FBLPromise+Catch.h */, - B2E3EDCDAAB73EE084826C2356ED8E20 /* FBLPromise+Catch.m */, - DFBB19560673ECCA382E404ECF23EA31 /* FBLPromise+Delay.h */, - 59AF2183B7FC040CF5BF53E5F0B49803 /* FBLPromise+Delay.m */, - D9F284BCC7EABFB22CBB8C7AB7736E3B /* FBLPromise+Do.h */, - D1E58DC922865B2EE4CE984D5564B038 /* FBLPromise+Do.m */, - DD9EE5CE0162E2CE20771D5FCD674031 /* FBLPromise+Race.h */, - D77538918830180FEB3FC2011A25CD4E /* FBLPromise+Race.m */, - 8F5D5C8068B8E1F69212579EA2A684B0 /* FBLPromise+Recover.h */, - 3128BEDF4F00F8CB1A853FB82AF9B0EB /* FBLPromise+Recover.m */, - 5983163DBF8E6D8A4ADEBD3302183817 /* FBLPromise+Reduce.h */, - 375812A905BE95F82BD50E548C00BDE8 /* FBLPromise+Reduce.m */, - C50C5B10DBE4BA6B94C7711AA67F4C39 /* FBLPromise+Retry.h */, - 191F3DCAC92B9D78ABAC07E8A5CB5FE4 /* FBLPromise+Retry.m */, - B9AD17140052F8C4B16D097734D5F0B3 /* FBLPromise+Testing.h */, - 831D024AFACC9C4176CDC6EEBF791F28 /* FBLPromise+Testing.m */, - AAD0488A3346289766F43E611AC6666E /* FBLPromise+Then.h */, - 902C59F262D45C1D61EFC1DB32949C5B /* FBLPromise+Then.m */, - 3D4F58B23B78A48C12D4370FFE84800B /* FBLPromise+Timeout.h */, - 048D1F5340C8D142942B39088DF3692B /* FBLPromise+Timeout.m */, - FA9725B601F031FEFE1B4E213F49A52A /* FBLPromise+Validate.h */, - A33EE0C16F7BBE321ACAEEA656D09EE2 /* FBLPromise+Validate.m */, - 6354B4239EA2CA91A7B1A931849D7460 /* FBLPromise+Wrap.h */, - 1CA236348EC6D78D789EE5B5434CF7D1 /* FBLPromise+Wrap.m */, - 3A8A9152B5AB331998D27BC332BCFF8F /* FBLPromiseError.h */, - 2E5B07CD3F0EB4A6A7FF7CC9EF0AF6C4 /* FBLPromiseError.m */, - 79EBAB0589A529CD029D4516380260F2 /* FBLPromisePrivate.h */, - 70598FDB7508AB320D1A279910567961 /* FBLPromises.h */, - D97CB7CE6AA1F41B011B2B481EF9B41E /* Support Files */, + BE6D14482E6565B89855E198AF5F709D /* random.h */, ); - path = PromisesObjC; + name = random; sourceTree = ""; }; - 86FE431394448916008B3F8B67DCA1B8 /* fast_uniform_bits */ = { + 92395B8FBCADFA3DF4D0C2B4EFDFF664 /* iOS */ = { isa = PBXGroup; children = ( - 1BC6E86F97EB3A0A9244A0E6A3DBC8F6 /* fast_uniform_bits.h */, + CA3F633D2DE6FC6932F7C9D3FC3CAAAF /* CoreGraphics.framework */, + B0C528433E4AB648F8EFB9D48FF421D9 /* CoreTelephony.framework */, + FDF66B982B737C9B402013AF90948F7A /* Foundation.framework */, + 03EB39BB6C3BA4D31A87BD4D92559F44 /* QuartzCore.framework */, + 8C8A763312D617599A7A957579570C55 /* SafariServices.framework */, + 64FE2E264AD3E279593F90ABFE9BBF78 /* Security.framework */, + C35F9509DB579DB6879A5B1C96E24659 /* SystemConfiguration.framework */, + 1BF4AF04F728BA8821EB2D1EC0F73469 /* UIKit.framework */, ); - name = fast_uniform_bits; + name = iOS; sourceTree = ""; }; - 87AF9FF89E2E1DAC080819751F53B583 /* Logger */ = { + 941CB1902895870ED849C4FFC66E6C2C /* functional */ = { isa = PBXGroup; children = ( - 274BF973A4BDA252715ED0617D4AA568 /* GULLogger.h */, - 0DEF4D15E45040D73F213FCB8E3E80D1 /* GULLogger.m */, - 1A72859B749BE05E10B9A733448830F3 /* GULLoggerLevel.h */, + 6FA702FBC71ADC3F6D9FEA47F9EF66BE /* bind_front */, + 153D78EB7C9675C7A3A3587AC52332F1 /* function_ref */, ); - name = Logger; + name = functional; sourceTree = ""; }; - 8841A658708A7D8D67EE1848E4886F77 /* internal */ = { + 946BBB63A070714BF91A8FA3EB63265B /* Interface */ = { isa = PBXGroup; children = ( - 2C6D86BA89D5C38DF0769CD58B4FFA71 /* char_map.h */, - 0E41D4B5CEA53B9599AEAEF856A2193A /* escaping.cc */, - FB431DE016E0C15DED146DFD83946FDD /* escaping.h */, - DE065B3FF36AF498B88D7E0451533BC1 /* ostringstream.cc */, - F56838B6870AC5CF4883318A61922AB2 /* ostringstream.h */, - F67364A0B636B3915967F77B4404605B /* resize_uninitialized.h */, - FB502533DB2A8389BBCAC2AE2C212BBB /* utf8.cc */, - 96DE2286415A052344C0F6506BB6EC17 /* utf8.h */, + 190029DD0627717EE904F54D51DA4EED /* darwin.h */, + D09B74402F1F8CFCFB63E8D8D5DCE5BF /* errno.h */, + 43068C97EE9FA2EA49CBE0B443056E4A /* threadpool.h */, + 933530FA9348CAEF73564D0671656304 /* tree.h */, + 6EED866FE480A9B5A210769C74A1115F /* unix.h */, + B438E00EE2302FFAB47FF1C055E1333D /* uv.h */, + 617B5B0176953E43067CA810CA6F66EB /* version.h */, ); - name = internal; + name = Interface; sourceTree = ""; }; - 8AB5895215889637EC42325748C407E2 /* Pods */ = { + 95AF2F3A6BF6B054F5B2C3FB8F96548F /* Targets Support Files */ = { isa = PBXGroup; children = ( - FA7A4344C30BFDC22CE7F2673C5C8908 /* abseil */, - 81D2B8C0FC1E7B3DDD2086AF8EDD0DA1 /* BoringSSL-GRPC */, - 27449A4B4C1942B64ECAD62E9AAA2569 /* CLTypingLabel */, - 8D3411DB03BA2A2F98E061931556FEB7 /* FirebaseAuth */, - 430C90713851B5C8C35461378BB35B91 /* FirebaseCore */, - 211F5C5C910E761232B503199B22E909 /* FirebaseCoreDiagnostics */, - 058110BE216F7EC7AD9E690F60CDF4F0 /* FirebaseCoreInternal */, - D7E844A5A7A67C03A023297108240E7A /* FirebaseFirestore */, - 101134F2D47CE4E3418D4CC608AA0014 /* GoogleDataTransport */, - ABB4E5B8B85EC9740F611A770AFC1A8A /* GoogleUtilities */, - 60ECA1955764FFA54ECA719DEEB1C980 /* gRPC-C++ */, - E31C386CE6B9CCD06D040F9747D2DBC2 /* gRPC-Core */, - 4EABDDE1547E80B75F542F084D81007E /* GTMSessionFetcher */, - 4A65687811C442A52896D6DEB5F36EDE /* leveldb-library */, - 6614BCB6AE70ED69BD6E731DE74CB691 /* Libuv-gRPC */, - 1AB15B400CAD04AE2154B0DDC2897C21 /* nanopb */, - 843D57A85F97731B896363114AD4ECA9 /* PromisesObjC */, + E5051AF8D1464E55AB23BF3732F5BDF1 /* Pods-Flash Chat iOS13 */, ); - name = Pods; + name = "Targets Support Files"; sourceTree = ""; }; - 8C1EB3A7C13508E3CCB702B2651EBCE6 /* profiling */ = { + 99386807118BCEBCCB9948378759C59C /* fixed_array */ = { isa = PBXGroup; children = ( - 79CC5F6E35B0D3F9266EE020CEF45FF0 /* exponential_biased */, - 62F8194557A5582DE542DE75F8340C08 /* sample_recorder */, + F772031CCD8FC7FBB7FCB07D3A11A4EC /* fixed_array.h */, ); - name = profiling; + name = fixed_array; sourceTree = ""; }; - 8D264271F20180A0C474C49205AECCD3 /* Resources */ = { + 9A763521970580057DDB13D1CD0817C6 /* strings */ = { isa = PBXGroup; children = ( - C7092725CD6866BAD043B6BBB2434107 /* roots.pem */, + A858C99EFBDE50F8CD262E0CB965F90A /* ascii.cc */, + 70A30CF567AB51F97AD2C3048D5713D3 /* ascii.h */, + E67D8E31B9026919881D55F2147FB223 /* charconv.cc */, + D2564F7D167827D88EB0EAB6805C59F0 /* charconv.h */, + 490C469AC8D61613CB759BDB8011132E /* charconv_bigint.cc */, + 2F0A9DC7D59052BF3F1AFDE8E4D68D31 /* charconv_bigint.h */, + 0C1EAE9B99F5A697F72267446E4519FF /* charconv_parse.cc */, + 81D198033F014ADC43BC5501664D54E2 /* charconv_parse.h */, + 48C5E4E5599C0326958185410FD3C31A /* escaping.cc */, + 270FF3A8B12425F38CFD22F2846283C3 /* escaping.h */, + 939CCCA1C2D40D64D237663D83FAD147 /* match.cc */, + E1838FC4A4A4EFE513DF31759F6F7F3B /* match.h */, + 7D4C904E7473EA059F0F2233C30BFAA3 /* memutil.cc */, + B2266929A10D29E98094837686875F34 /* memutil.h */, + A2D8326C7EA23FBC3B0AA3B359F05227 /* numbers.cc */, + C6A1C94895BD2E41F4BBF6932858C072 /* numbers.h */, + 647DEA0A9A5C67111B68A36821C589FA /* stl_type_traits.h */, + E4F61E0E65173FB7D6D802CEB3DA7950 /* str_cat.cc */, + 5742684EC1615FE2F7E77176288E43F1 /* str_cat.h */, + 7B5BE996EC8EF8DD39D79379B8789E70 /* str_join.h */, + 0C8A57C3A80422C2E82B0DBA5C51B833 /* str_join_internal.h */, + 57546376472B90DE81C00D2A64798A66 /* str_replace.cc */, + E1FDEF47BBD2D6AD4C5D2F59A916C4EB /* str_replace.h */, + 112074D0FF06DD98C181DE2E969EC055 /* str_split.cc */, + 3AEF06ED64999A6F10753E3EDAEDF7A5 /* str_split.h */, + 574759FB8FCB2104B700F4E20287655E /* str_split_internal.h */, + 8C5554B7F91793B6890CAA3EA32B72FA /* string_constant.h */, + E30729039880C474D5F3D2EBD5099DDC /* string_view.cc */, + 37E93DA065798B44653FDAB12CC9975C /* string_view.h */, + 0B205205CDE45E431788D7A0A12CC39A /* strip.h */, + B49386D8BA60171F27083C2B42C6906C /* substitute.cc */, + B2E7FA2488E4397291796EA25EF256F4 /* substitute.h */, ); - name = Resources; + name = strings; sourceTree = ""; }; - 8D3411DB03BA2A2F98E061931556FEB7 /* FirebaseAuth */ = { + A185D9ED225044295A61761F833851BF /* pretty_function */ = { isa = PBXGroup; children = ( - 1A8884C73DFDFC7B06F018B8496D3382 /* FIRActionCodeSettings.h */, - D1C858F819921D5FD0F665E90B34271D /* FIRActionCodeSettings.m */, - 068B3FD6A0B13CF7CCBE5913E3110ADA /* FIRAdditionalUserInfo.h */, - D13D74CB48A75E26EB2CA5C2B4235795 /* FIRAdditionalUserInfo.m */, - 52B105DF984AFC8E0B4DC9069FAA1CAF /* FIRAdditionalUserInfo_Internal.h */, - 4D02212315D8427A4561D868E99354EF /* FIRAppInternal.h */, - 85DBE458F32F3C34DEE6D0B3E4F858AA /* FIRAuth.h */, - 9DA8107F067C6979ADF3814FD6C4DF40 /* FIRAuth.m */, - D10509B00BE01DD3698883859BB908C5 /* FIRAuth_Internal.h */, - 39E8209446678F9C564D937FCBAB0C03 /* FIRAuthAPNSToken.h */, - FF3DAF6EA55447CA1D19DC60B88962D6 /* FIRAuthAPNSToken.m */, - C75D296438925FC92ABFA90B90F9BFC8 /* FIRAuthAPNSTokenManager.h */, - C621179BFB1E37F5306E3CD5329A64CC /* FIRAuthAPNSTokenManager.m */, - 6159D2B884D1B076A43876DDB5E2A991 /* FIRAuthAPNSTokenType.h */, - 38D9852020646367A2F232171EE79850 /* FIRAuthAppCredential.h */, - 6B50B1686E684451FDB2B656393A1974 /* FIRAuthAppCredential.m */, - 37D0B811F017EF432AF6BAF29C425735 /* FIRAuthAppCredentialManager.h */, - 42D20D8C5C8621068047E76E3C4D7884 /* FIRAuthAppCredentialManager.m */, - 657ADD2FE6B1590B50E001526DC51AD2 /* FIRAuthBackend.h */, - 6F6A34A6CD3CA88236F65719A3C7134D /* FIRAuthBackend.m */, - 146BB52D40F58BF18FD4E0C931AF55D0 /* FIRAuthBackend+MultiFactor.h */, - C367CD8F105C4739554637A876574A44 /* FIRAuthBackend+MultiFactor.m */, - 7466C9F1DE3D2944732F7DB8C1334CAD /* FIRAuthCredential.h */, - 35CDFD297A319020F3F9A2DE24F7A104 /* FIRAuthCredential.m */, - 1D0BBA69D5C9396D599BF177EC2668EC /* FIRAuthCredential_Internal.h */, - 2746AE4958096327AC70E58678BD23B4 /* FIRAuthDataResult.h */, - 6CF6EF7DAF219862B03229693893DC9B /* FIRAuthDataResult.m */, - AFA31394D90226A94823122D7537827A /* FIRAuthDataResult_Internal.h */, - 1B5D05458B59200757E195D54A4C21DC /* FIRAuthDefaultUIDelegate.h */, - 3B1E528EA4055534B02F72C39638A213 /* FIRAuthDefaultUIDelegate.m */, - D5A8123E62684C3D6ECE4DFDA0832DEB /* FIRAuthDispatcher.h */, - 600986C66218DA16998B8594BE60F5EB /* FIRAuthDispatcher.m */, - CA432932CA7C470A3DF820BB6360486E /* FIRAuthErrors.h */, - 0898EA6E1B9E38125C80EF6E982755C2 /* FIRAuthErrorUtils.h */, - 407479761867BC51108FDEF5AECCA921 /* FIRAuthErrorUtils.m */, - 23F444C749369E35D8C929DC01DD41D0 /* FIRAuthExceptionUtils.h */, - 03B4748FCF138B7F32F0D3DFEE60261E /* FIRAuthExceptionUtils.m */, - 0C5D2D56A0F193DFEAD2D94346235DC2 /* FIRAuthGlobalWorkQueue.h */, - A1AFF2F47D853E17885D2F382D5B391F /* FIRAuthGlobalWorkQueue.m */, - 84B5EBD6C55FCC15FC3EC63FA107C532 /* FIRAuthInternalErrors.h */, - A55767199B2674BA39980F45AB17A379 /* FIRAuthInterop.h */, - 280F12DE9BC85D65A9BE1CD815E0F008 /* FIRAuthKeychainServices.h */, - D85093D2E5A2786BA6F08D51D6B94DC9 /* FIRAuthKeychainServices.m */, - 886A8EBBFDD898F9E662627471854DF0 /* FIRAuthNotificationManager.h */, - 3B4C87F1BA0D825360C1186ABDEC1741 /* FIRAuthNotificationManager.m */, - DB090B7C2BDFB39C0463B0C158AD6B11 /* FIRAuthOperationType.h */, - 8C7ADAD18A55A4DF52919C1BC4BBCD42 /* FIRAuthProto.h */, - DDD1A765EF37CB0AA9CD55D346E5DA33 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */, - 911425A24CE9DB88B1F38D82CFDA9147 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */, - D1DADAB4E7A60BCF4A6299B8C14315BC /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */, - 221D8A8F051385514616E6519F967FCD /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */, - 712F2B9399D2FCA0353D1365313F3274 /* FIRAuthProtoMFAEnrollment.h */, - D0E85C6EED65C44F5B979A374A81034E /* FIRAuthProtoMFAEnrollment.m */, - 0E93FFB691C4C2349B8A0794CA0D9F4C /* FIRAuthProtoStartMFAPhoneRequestInfo.h */, - 609B04049D55BFE2C3B432EC0355856E /* FIRAuthProtoStartMFAPhoneRequestInfo.m */, - 5AD40BAC0C7B4B7D167A059CD8364CDB /* FIRAuthProtoStartMFAPhoneResponseInfo.h */, - 2BA5BA0F46B851E957F968A90C435EBA /* FIRAuthProtoStartMFAPhoneResponseInfo.m */, - CE455BCF094DE1095B8D3E4C98E662D0 /* FIRAuthProvider.m */, - 3D65FF7D663DF78C36F741B6304075BE /* FIRAuthRequestConfiguration.h */, - BC1139405CD94C77CF048C1E27CF1293 /* FIRAuthRequestConfiguration.m */, - 080BF6BA304EA321ACCB99762F26AAE6 /* FIRAuthRPCRequest.h */, - 359F4AC1A320E4BE15F76DE391F2AF78 /* FIRAuthRPCResponse.h */, - 5F2D72FB05727E906682E7C4A9C2C7DE /* FIRAuthSerialTaskQueue.h */, - DC641807268E1AC1DD2C9AC572CCC1BB /* FIRAuthSerialTaskQueue.m */, - B5946DBD845B9323E97F6B98B585DF02 /* FIRAuthSettings.h */, - 0531C82DEF32707A12F9BAAD419C0D84 /* FIRAuthSettings.m */, - F2D335D665F2A4868D2118D1F02CB604 /* FIRAuthStoredUserManager.h */, - D3775D0CDC52BDD5A7CFD3EE88368628 /* FIRAuthStoredUserManager.m */, - B302D325B6A31BB4DEAB926BFFDD3014 /* FIRAuthTokenResult.h */, - DCBE62C0B163E9CE657447A8139A5807 /* FIRAuthTokenResult.m */, - 0A79386C98FA637B665D093A6F55CF97 /* FIRAuthTokenResult_Internal.h */, - 3900532E6EEAAA1FBA1F9E37322FC946 /* FIRAuthUIDelegate.h */, - 748BD441E5DE6B375A3A71D3551AD5FF /* FIRAuthURLPresenter.h */, - 17E6A8E601C57AE36A52B3079F9DCA48 /* FIRAuthURLPresenter.m */, - 019E255684CF5E4E67BB030E7BA79D47 /* FIRAuthUserDefaults.h */, - 7A9E28BABFE3A996F00F85950675FA30 /* FIRAuthUserDefaults.m */, - 693515DF5F490BDCDBC5AAACCF7D26E6 /* FIRAuthWebUtils.h */, - 74E34A4C6DBCA5F911A58F405A3DCE33 /* FIRAuthWebUtils.m */, - 226D1191440EAC029F2D6D08503B2D0B /* FIRAuthWebView.h */, - CDB9354E8802B92EE62BAFBF065D4710 /* FIRAuthWebView.m */, - D2299334CC90B4B12520DC15F16FC1F8 /* FIRAuthWebViewController.h */, - 277CCD76DA7B067320BA681117836189 /* FIRAuthWebViewController.m */, - 18F4AB179872D100B381C405083401D3 /* FIRComponent.h */, - 33467055A1131134E290ED6BA1AFCC00 /* FIRComponentContainer.h */, - E6196DBAF2CA9416A88ADB40066B3C3C /* FIRComponentType.h */, - B76D8BFE88D7CF0160716F1CCD743470 /* FIRCoreDiagnosticsConnector.h */, - 55FC2064FC20D690EBA7B427A819CDB7 /* FIRCreateAuthURIRequest.h */, - 221B4E95EBE3473FCFEA9C187412B2DB /* FIRCreateAuthURIRequest.m */, - F184372EF0DD7867E4C7A15532681777 /* FIRCreateAuthURIResponse.h */, - 34DA46C8AD75AC54D0AE0F95E7CB5580 /* FIRCreateAuthURIResponse.m */, - A075502B0971B7CA755D892DF582AB78 /* FIRDeleteAccountRequest.h */, - CE03DE28E455BF7EA43BA2D1DAC48B55 /* FIRDeleteAccountRequest.m */, - ECE350535DA59CACFE56629B0ECDE9DF /* FIRDeleteAccountResponse.h */, - 3DB438BD3219AEECDF6FD1E4A82E83B0 /* FIRDeleteAccountResponse.m */, - E4B7487E1643CE26881ABE43E4784145 /* FIRDependency.h */, - B2A7DF1FCB624BA88A4A1A63AA7C8518 /* FirebaseAuth.h */, - 4F002DD35698729F7C777D90AAEE8B8E /* FirebaseCoreInternal.h */, - 3CF7C4E9CC3AE527B125BE9BB12CAA60 /* FIREmailAuthProvider.h */, - 18CE6C911AA09F7B71282A834834102B /* FIREmailAuthProvider.m */, - 1049A0D6E69B70BEC0AFA43348A93D7B /* FIREmailLinkSignInRequest.h */, - C4990273A131F327C2A6DA911B32D46B /* FIREmailLinkSignInRequest.m */, - 4BBEBFE33DAFDA452902344CF828AB0A /* FIREmailLinkSignInResponse.h */, - 5C6AB1C491089F8F5FD5FF2F1D09FE2B /* FIREmailLinkSignInResponse.m */, - 6676A4E053E5FAAC048CDB22FC05A195 /* FIREmailPasswordAuthCredential.h */, - 4882020D02BEE009A13FAFEA24653A32 /* FIREmailPasswordAuthCredential.m */, - 39D4D290E2C339574F8276D54D461A34 /* FIRFacebookAuthCredential.h */, - 47F9209A1375FF6B6C5B0867AECC73AC /* FIRFacebookAuthCredential.m */, - 357C0EE43A790060F71C003C23DF0341 /* FIRFacebookAuthProvider.h */, - 0E52B729C93F31620E4F86CB92E33AFC /* FIRFacebookAuthProvider.m */, - 7D33C8BBC3875CADB64091D8130C98D5 /* FIRFederatedAuthProvider.h */, - 272D43B1469F028934436B767A61C6D5 /* FIRFinalizeMFAEnrollmentRequest.h */, - 8720A2514F3AA488CA36988AB1BFF7A4 /* FIRFinalizeMFAEnrollmentRequest.m */, - 6E2048D275758EBDF2820CBC23D261F4 /* FIRFinalizeMFAEnrollmentResponse.h */, - 42AF9E9DCB7DC1A118368FF058184E4F /* FIRFinalizeMFAEnrollmentResponse.m */, - E33EC5D4DBABE8940D18D69C54D9D1EE /* FIRFinalizeMFASignInRequest.h */, - 3D45033A5D40A36FE64F1E831E32F47E /* FIRFinalizeMFASignInRequest.m */, - C87A121731B0E72BA0E8122F4BCE45FC /* FIRFinalizeMFASignInResponse.h */, - E22CAE7A7003499908E6265DD4CBD778 /* FIRFinalizeMFASignInResponse.m */, - 0366B5B04275EA3FB9BFE02F9677EC3B /* FIRGameCenterAuthCredential.h */, - DEE81A8EC18A0B5B1E43DB60ADFF2EDC /* FIRGameCenterAuthCredential.m */, - 7AB0BB5E25F9A4E8A7A014ACF9A4963F /* FIRGameCenterAuthProvider.h */, - 9B5477454A0680070AB8EBB2B5792118 /* FIRGameCenterAuthProvider.m */, - 6918EA537480CEFB1349C0A2BD0E4231 /* FIRGetAccountInfoRequest.h */, - 5710B7DECEFB5CADF81ECA6E0521C5B8 /* FIRGetAccountInfoRequest.m */, - 423513AA1A70B126235C93E3323B6A1E /* FIRGetAccountInfoResponse.h */, - 6637FA7E8865B423159B3DFDEB5826DB /* FIRGetAccountInfoResponse.m */, - 0277278048B10C5B447C256BB4AC9539 /* FIRGetOOBConfirmationCodeRequest.h */, - 379BBF8B6B02A03A6FF782BEE0703C5B /* FIRGetOOBConfirmationCodeRequest.m */, - 4CB352F07A72645702A6D215603714DA /* FIRGetOOBConfirmationCodeResponse.h */, - CC0CBDAFB6698BA7CC2DAAC93ED2FFE6 /* FIRGetOOBConfirmationCodeResponse.m */, - F8A01E1671B3BB46D43523807EAB98B2 /* FIRGetProjectConfigRequest.h */, - 8753297205A15687AAC62143DFB8A370 /* FIRGetProjectConfigRequest.m */, - 8C472DEB0BEFDBFBC36D5A4706B6ECF5 /* FIRGetProjectConfigResponse.h */, - 16A85F6C2100EF7345C885ACD1142D2B /* FIRGetProjectConfigResponse.m */, - 10545D77D9C1A01F70E4CF99E617B359 /* FIRGitHubAuthCredential.h */, - 39215536261C68C18E489F54AE7533EA /* FIRGitHubAuthCredential.m */, - F2978EC0CE5A13374B10982A42E1848C /* FIRGitHubAuthProvider.h */, - 5588F70B6B250953B5D1E23B172C337E /* FIRGitHubAuthProvider.m */, - 787355FBC8B91E008ABF5DD157CE7FE6 /* FIRGoogleAuthCredential.h */, - 7AC23454BB32F73F9583DB52A0C93FFA /* FIRGoogleAuthCredential.m */, - 366B7A05A66F656E0F1A68137EE718FC /* FIRGoogleAuthProvider.h */, - 9C18F8BAB40B71BCFA65A6DB85571109 /* FIRGoogleAuthProvider.m */, - 061468C930A9406C41997EBF42AFBFFA /* FIRHeartbeatInfo.h */, - B7B8E3942834457E0C677497D95DD467 /* FIRHeartbeatLogger.h */, - 48388DE98C2EC1620B66D911004DB48C /* FIRIdentityToolkitRequest.h */, - DC637756A9F0249C0C1714D9543D98CF /* FIRIdentityToolkitRequest.m */, - 80B56502FE541E7DD799C011148B62A3 /* FIRLibrary.h */, - 8E8CA55F955A8FE8947084FA9608D6EF /* FIRLogger.h */, - 3FB8A5EF7795FC6028C4CC6AA5C56E06 /* FIRMultiFactor.h */, - 94924A2F675D4906C7761445B7B8CF7D /* FIRMultiFactor.m */, - 26E90942413AA60D17440D86F28422B1 /* FIRMultiFactor+Internal.h */, - 50AF2EB2D8A9A72600617F361DA02B89 /* FIRMultiFactorAssertion.h */, - 0DEA7A9E2B2A73D4BC2A0E2670F1570F /* FIRMultiFactorAssertion.m */, - 693AD50BB3C191C00EDB944DAF718041 /* FIRMultiFactorAssertion+Internal.h */, - C2D79FD11B6F243423DFA89100E4DEA2 /* FIRMultiFactorConstants.m */, - 42CF32CD743B55BBCC6BDDCE7C8A802E /* FIRMultiFactorInfo.h */, - FD599A7D2B8816BEF600F4E42B4AA145 /* FIRMultiFactorInfo.m */, - FB225E62EF172357B3E0DA86D4AECB84 /* FIRMultiFactorInfo+Internal.h */, - 99EBB25D785FCBCCE4D4D9F97E432A25 /* FIRMultiFactorResolver.h */, - 4B18B60FDC4329B766B328DCF9868221 /* FIRMultiFactorResolver.m */, - 402AA420871B41EA30B847C4067C9005 /* FIRMultiFactorResolver+Internal.h */, - C449FFCCC30AD8E23058396786A3C6FC /* FIRMultiFactorSession.h */, - 9E49949DF85BAAA58610162F286B233C /* FIRMultiFactorSession.m */, - 96B990F482D91B469D396DBF9C358702 /* FIRMultiFactorSession+Internal.h */, - 0408792A4E03A83D5F5BF0199DC0EDA0 /* FIROAuthCredential.h */, - 9D1E1F5BD74F47BC088CF0EE7695EF0A /* FIROAuthCredential.m */, - CD49DBCE5F26C030D3026C20CC3B4633 /* FIROAuthCredential_Internal.h */, - 120ABBD46E407F53EDDB9B34A20925BB /* FIROAuthProvider.h */, - 1B86D006209A2606308FB2EFB58A22C2 /* FIROAuthProvider.m */, - 18698A808976E119CF4B0AE4CD22F90E /* FIROptionsInternal.h */, - 6E809B84C33ED7692831ED08EF62149A /* FIRPhoneAuthCredential.h */, - E54A45C82715C6857D1231EAE542E134 /* FIRPhoneAuthCredential.m */, - 5970A2BD89CC425DC336C86C012215F0 /* FIRPhoneAuthCredential_Internal.h */, - 2B96B9F8E30E3E523EF8A827500F70E5 /* FIRPhoneAuthProvider.h */, - 301F5C96FBCB9D74BE64E69DED8C8DB8 /* FIRPhoneAuthProvider.m */, - B484180B4EBEBFB48A405FCF3FE70C99 /* FIRPhoneMultiFactorAssertion.h */, - 43A351C64FF7F024EE93ED93530FA1FC /* FIRPhoneMultiFactorAssertion.m */, - FD6513770E658A6C321E028E0E393E28 /* FIRPhoneMultiFactorAssertion+Internal.h */, - 6D2FA6C3EBD0F779B1CF4D67B70802E2 /* FIRPhoneMultiFactorGenerator.h */, - E3BE049556DEE07E98DCD21FF9ACFB00 /* FIRPhoneMultiFactorGenerator.m */, - 007E478F711A95978A982971A9CE62C1 /* FIRPhoneMultiFactorInfo.h */, - 01800632BDFA1E468AA8488910C566CC /* FIRPhoneMultiFactorInfo.m */, - 3F32C5407C3B2DD0049AE55A06D8AD6F /* FIRPhoneMultiFactorInfo+Internal.h */, - E79C807B8417BF0363160E2A52C5B9C7 /* FIRResetPasswordRequest.h */, - C1307A7BCACCC3F4A4E9C91FB20801F2 /* FIRResetPasswordRequest.m */, - DB955FFBD28F186FDA952864D12C7582 /* FIRResetPasswordResponse.h */, - 383C0F8BFC5DB8E70916CD8D5DA858AC /* FIRResetPasswordResponse.m */, - DC94A1BD26897C1BD28D3106022C00BA /* FIRSecureTokenRequest.h */, - 38D90CD3D87BD8FFC13023AAAED32CAC /* FIRSecureTokenRequest.m */, - 6AFBA70A38970E5D8229E7B07CD9658A /* FIRSecureTokenResponse.h */, - D854381C4F85DC44C055AE41D1BFEDF9 /* FIRSecureTokenResponse.m */, - 9310962558BBBD83898390BF377C5EA9 /* FIRSecureTokenService.h */, - F9D89DA5B5D6A1C5AAFD95C0B26C03F6 /* FIRSecureTokenService.m */, - A250DDC6597003E290FABCD6A7634020 /* FIRSendVerificationCodeRequest.h */, - 619CE7E61B208EE84E3B1E3101D2CD75 /* FIRSendVerificationCodeRequest.m */, - C96CFA094D08F6CA77B07E8EBBC2CC98 /* FIRSendVerificationCodeResponse.h */, - B6C9D3967C9E8A1EA197C9D497FC4C1F /* FIRSendVerificationCodeResponse.m */, - 11AF86F9EF33BD7DF6343A3B802DCB6A /* FIRSetAccountInfoRequest.h */, - 74FBE83E302340F1AF0E9527E57F9E36 /* FIRSetAccountInfoRequest.m */, - 3A6B5F2A71E7C74B21DE797E5DE5A864 /* FIRSetAccountInfoResponse.h */, - D11F8528FCA68FD9E9D3DB4A443E448E /* FIRSetAccountInfoResponse.m */, - B4B7A95FC90C43CE5CEB2E7EF6999506 /* FIRSignInWithGameCenterRequest.h */, - 13382D730A85BD6B46B67A89B976C2DB /* FIRSignInWithGameCenterRequest.m */, - 783E4592B9F93EF4B78080B20DA9DCE2 /* FIRSignInWithGameCenterResponse.h */, - F217C159D65636F0F061BCA2D529E92B /* FIRSignInWithGameCenterResponse.m */, - 9D56EE2C10C9213AD3996334DF7ED268 /* FIRSignUpNewUserRequest.h */, - 8F1EB8B4CAEAB2701BEB14E7F75FB028 /* FIRSignUpNewUserRequest.m */, - 90AB132D549C5212035D94596705C0EC /* FIRSignUpNewUserResponse.h */, - 505FD4E7742B62F8703900FF50585766 /* FIRSignUpNewUserResponse.m */, - 57D4DC1CB570DD9F0991A0C0B936A1BF /* FIRStartMFAEnrollmentRequest.h */, - 9E97BF1A61EDA6EE0C6161ACC6C91271 /* FIRStartMFAEnrollmentRequest.m */, - D0B1EE73AF16D4A5AB6FABF5065CBE44 /* FIRStartMFAEnrollmentResponse.h */, - 186AB981471D537A21CF9D1312C54DF1 /* FIRStartMFAEnrollmentResponse.m */, - AB71DFBB3FF79835FA9A296BD2A811E5 /* FIRStartMFASignInRequest.h */, - 7FE21EF9D264BCBA0535BE5B4C1B9763 /* FIRStartMFASignInRequest.m */, - 1E52F4B3EA787624F36715A80D0ED675 /* FIRStartMFASignInResponse.h */, - 683B7B019CD25FF573249C768E4DDA5B /* FIRStartMFASignInResponse.m */, - EEF496676802304202D5940F12569C51 /* FIRTwitterAuthCredential.h */, - 2483FF59FA39CF3A44053E5C7C678D77 /* FIRTwitterAuthCredential.m */, - 821374D67A9F6268117D35B2ED29F9F8 /* FIRTwitterAuthProvider.h */, - C28F5CFA19045E7315C4DEC6E24A1EED /* FIRTwitterAuthProvider.m */, - 1EFAF1562947C29EB39F3F46749E7784 /* FIRUser.h */, - 3DC0107F0C9D63E698485CE5E573541E /* FIRUser.m */, - 068DD85788D07843FF3FE2DCC0A0345B /* FIRUser_Internal.h */, - 89F082EB7C70AA62FE666DD1D372858B /* FIRUserInfo.h */, - DA5049626C841D064ED3EF1E3BAD31B3 /* FIRUserInfoImpl.h */, - 5644112402B53656046A5C2E62B210CB /* FIRUserInfoImpl.m */, - F49CB4FBA3DF06BEC049B6BA4C9E21CE /* FIRUserMetadata.h */, - D84906327689C0432C441F86D5E92F54 /* FIRUserMetadata.m */, - A784040043ADC2DD236E835E5674A71D /* FIRUserMetadata_Internal.h */, - 38758B9C60618B24EF16969AB849A353 /* FIRVerifyAssertionRequest.h */, - 3228A2741A4C6E799D0B11D846CE6B63 /* FIRVerifyAssertionRequest.m */, - 513939EF797A0D3FFC253412CE4699F7 /* FIRVerifyAssertionResponse.h */, - CACC8B25D9AC22712B4DC3749F6CDEF5 /* FIRVerifyAssertionResponse.m */, - 1441803C9A9B4E9C8B17DFA2EE420B4D /* FIRVerifyClientRequest.h */, - 4FD0C845F190D7AD681D8171AF0A6D98 /* FIRVerifyClientRequest.m */, - 4CA284AD4088A4114E393D5BF3E14BA9 /* FIRVerifyClientResponse.h */, - 65BA807BA676D6B509550FAD392E8904 /* FIRVerifyClientResponse.m */, - 4C0842CE55EAEDE841060BAA8A1FA6C1 /* FIRVerifyCustomTokenRequest.h */, - 02173BFC07D0ACF77EFD0440C35F6ADE /* FIRVerifyCustomTokenRequest.m */, - 58C9EADE8BEF8BE5F34E1E7E31A8D1E9 /* FIRVerifyCustomTokenResponse.h */, - 64D133CB14A556181F89F1648028F02F /* FIRVerifyCustomTokenResponse.m */, - 5A9059B544057592A07E7EE271AB952E /* FIRVerifyPasswordRequest.h */, - 8D10EA9EED3A818D297A55364817B99B /* FIRVerifyPasswordRequest.m */, - 02CBA8D76D22BE12FB8B493C4E990614 /* FIRVerifyPasswordResponse.h */, - E3A731AC3AD96D4A9F2590A4263C5903 /* FIRVerifyPasswordResponse.m */, - E107805DA7D7B89CBF0FA4E981BF1949 /* FIRVerifyPhoneNumberRequest.h */, - AB8E2D4C439A02A15B365386BCAC509E /* FIRVerifyPhoneNumberRequest.m */, - F2C38DC3C3143523A4E2AEBF9222C627 /* FIRVerifyPhoneNumberResponse.h */, - 489EB4EA70CC5221481BF03B7197BFB4 /* FIRVerifyPhoneNumberResponse.m */, - 8025D595C262037DB6D82C7FCFB75049 /* FIRWithdrawMFARequest.h */, - 3D13134B34AC6EC7100DC5153B9F095A /* FIRWithdrawMFARequest.m */, - 8673FE441D778EFC8EDEAB4F97ADA7D4 /* FIRWithdrawMFAResponse.h */, - 0C084BC6B112233FFF6F45D47996A083 /* FIRWithdrawMFAResponse.m */, - 9A1AC7F30C8EB64FE27E72D5AE4658AF /* NSData+FIRBase64.h */, - B55EBC5013E331D0CBAE3B934574111C /* NSData+FIRBase64.m */, - 50C1FF5BEB3A46CD874798EE3B4E7272 /* Support Files */, + 6E1CF0CF101F4040390066149F6CCD54 /* pretty_function.h */, ); - path = FirebaseAuth; + name = pretty_function; sourceTree = ""; }; - 8FEA4EB6BF891A0CE27A39BA041A3F2D /* Support Files */ = { + A271992AFE5DFD228A4B41156E1535FA /* algorithm */ = { isa = PBXGroup; children = ( - B5F255458A1454DD9A8A8D315A84DC64 /* CLTypingLabel.modulemap */, - 3EC32066E9E3661CC345DB644256EB42 /* CLTypingLabel-dummy.m */, - 4D5BE0510E6733C4EE475FA4B5573541 /* CLTypingLabel-Info.plist */, - B227F52BE76B38DA33800FA8916A7553 /* CLTypingLabel-prefix.pch */, - F85B1285B8139AED8F758256483FE150 /* CLTypingLabel-umbrella.h */, - 8B18036E1C30982D96418E7F0EF028F9 /* CLTypingLabel.debug.xcconfig */, - F900FF5448DCE4BEFEBC824D038C5598 /* CLTypingLabel.release.xcconfig */, + 905C409A5CF3128CD894BB8DB86FFE63 /* algorithm */, + EBE8D48B4A2B78B88FB29341A43AD34E /* container */, ); - name = "Support Files"; - path = "../Target Support Files/CLTypingLabel"; + name = algorithm; sourceTree = ""; }; - 9164BA249F632786CBE113EDE1238726 /* random */ = { + A31AC87D1ADD4FC20B84720575E40EFA /* cordz_update_scope */ = { isa = PBXGroup; children = ( - CCABC239B4A170829EF83176891AFCC8 /* random.h */, + AAFC3D390499839CC90583698B0FCEC7 /* cordz_update_scope.h */, ); - name = random; + name = cordz_update_scope; sourceTree = ""; }; - 91CABF22EEA0B20C2864D5C314151D29 /* Environment */ = { + A35875836FBC42F1556AFA84C7B216C1 /* Reachability */ = { isa = PBXGroup; children = ( - 2FA12178C1547ECC33770020AF8B1C2F /* GULAppEnvironmentUtil.h */, - 948215A8233C514A246E79A56982434C /* GULAppEnvironmentUtil.m */, - 255697C72A715B47AB9A661A94CBA082 /* GULHeartbeatDateStorable.h */, - 9F8BAE0E68120AB138691AA34E6652C3 /* GULHeartbeatDateStorage.h */, - 0CBDFA6628F937717EC9AB0E3DF6D750 /* GULHeartbeatDateStorage.m */, - 846272CE906ECA1A80A02B7AEB41BAD5 /* GULHeartbeatDateStorageUserDefaults.h */, - B5C42C603585AF08237A177C3F4EBDF0 /* GULHeartbeatDateStorageUserDefaults.m */, - B04BB6DEED1E3A806BB4A8871E6093D2 /* GULKeychainStorage.h */, - DD8FC2845807DC1F93E2AA11FBFD2A6B /* GULKeychainStorage.m */, - F5A34CC87BF55F8D3984703D92C62FD1 /* GULKeychainUtils.h */, - 0705F9ABAC36C590EFDAC7F72B26B23D /* GULKeychainUtils.m */, - 2310AD88DC074D5CA55FDF1C2208A771 /* GULSecureCoding.h */, - 3B932235E4F3FAD4839BE79EC00B2B1F /* GULSecureCoding.m */, - 67548E2657F4C9A087F1BABDBC72E3BF /* GULURLSessionDataResponse.h */, - 47E46DFB995A1607B149A8F97C7AB2A7 /* GULURLSessionDataResponse.m */, - F0EBC78591DEFEF7921E1840BC6FB4C4 /* NSURLSession+GULPromises.h */, - 29C34BBE3DDDE111AD578FC8259C3D89 /* NSURLSession+GULPromises.m */, + 3F731FB3ABE9F8EBECC0796D509137B8 /* GULReachabilityChecker.h */, + 8AE7A78F3992A2253E40F24B33DE9401 /* GULReachabilityChecker.m */, + B07BACDECDE6605E9E7576DA543F2976 /* GULReachabilityChecker+Internal.h */, + 4F53D0D3D50556857E62F6B2004D257A /* GULReachabilityMessageCode.h */, ); - name = Environment; + name = Reachability; sourceTree = ""; }; - 94F7F5A80BF423FA2D39DC8EB3259E3D /* function_ref */ = { + A98FB1235401D3CF4BB7580CE02991EB /* errno_saver */ = { isa = PBXGroup; children = ( - 5DF5B999A7319F583528EBF1C39974AF /* function_ref.h */, - 209719DEF4DC58AD4FBCD23512B758EC /* function_ref.h */, + 783FAFEBB4F3765E41AC93CBA8311C55 /* errno_saver.h */, ); - name = function_ref; + name = errno_saver; sourceTree = ""; }; - 95AF2F3A6BF6B054F5B2C3FB8F96548F /* Targets Support Files */ = { + ABAD7BEEB80568195561EF5DBF737F7D /* sample_recorder */ = { isa = PBXGroup; children = ( - E5051AF8D1464E55AB23BF3732F5BDF1 /* Pods-Flash Chat iOS13 */, + D7A1CBC6CA547FDD0D2BEAC649F534DB /* sample_recorder.h */, ); - name = "Targets Support Files"; + name = sample_recorder; sourceTree = ""; }; - 97A7442F37073B4FF15D0CBC12787340 /* random */ = { + ABF6D7DE87EC907FA6071A61162F5417 /* Support Files */ = { isa = PBXGroup; children = ( - 6BEFE271461AB6906C590CC1433A786E /* distributions */, - 05D70BD260BB9814F2DD93FF36A005CA /* internal */, - 9164BA249F632786CBE113EDE1238726 /* random */, - BD4EEEEDEDCCE1E07BE3E0A14EB99007 /* seed_gen_exception */, - FC37DF1E3686E009DDFFE7E33E9CDBF4 /* seed_sequences */, + EF775FE6E0729386E5A3225896A70704 /* FirebaseFirestore.modulemap */, + 8CDCF32E7E553DD01F4577832CCBA156 /* FirebaseFirestore-dummy.m */, + DACBBBAEFEB7299D8B5F80665345C475 /* FirebaseFirestore-Info.plist */, + 8380D25D4C223BFD7AEBC7293A7F86E4 /* FirebaseFirestore-umbrella.h */, + 1AD3A4E4C659DADB746C8E6475CA7A32 /* FirebaseFirestore.debug.xcconfig */, + 64CA3FC10EDB7E6F9BDB7CBA59545D80 /* FirebaseFirestore.release.xcconfig */, ); - name = random; + name = "Support Files"; + path = "../Target Support Files/FirebaseFirestore"; sourceTree = ""; }; - 97EBC0745F64EEED5188065E91317101 /* log_severity */ = { + AE26FA46A130589B621A3E7076E58FD7 /* Support Files */ = { isa = PBXGroup; children = ( - 023E7A4FD949DD5A05E54771B81175EE /* log_severity.cc */, - C23376E4170712F175AE36145E20BA78 /* log_severity.h */, + 2F3B25C6ACD0648462C1A2B931ACDCB2 /* PromisesObjC.modulemap */, + CFE39AB61B3E70C96732AE4D4994F6C5 /* PromisesObjC-dummy.m */, + 7DD0109179BF094DE99742CB655C74F7 /* PromisesObjC-Info.plist */, + 214D1C72B2CE741E27B6F3B230C432DA /* PromisesObjC-umbrella.h */, + 4F5E31E8A170BEDFBC5C4D6542D58356 /* PromisesObjC.debug.xcconfig */, + 481E6AE9D864CA767B119756910C870E /* PromisesObjC.release.xcconfig */, ); - name = log_severity; + name = "Support Files"; + path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 97F8B28A902F72904985789025B6E8D4 /* Interface */ = { + AF554F8AC7F6A47400BF0F4A8E7A86DB /* iostream_state_saver */ = { isa = PBXGroup; children = ( - 6B2D4E1C23A7D4BD6F6F6BFEC49D8504 /* alarm.h */, - FFD52C1D89BE68534B3058B5C01D5E70 /* async_generic_service.h */, - DE0D449B2F65E2ABB08DF305B4B650C9 /* async_generic_service.h */, - 577369043FA5FA8FDAF630730C417706 /* async_stream.h */, - 4201631D453E8A4896B50ABEAFF06D13 /* async_stream.h */, - 9EBEF183D1561CEC4392816F0B6B7C13 /* async_unary_call.h */, - 88632C13B6ADCC96DB3E842E58AC3691 /* async_unary_call.h */, - A39434E78E6418F535A5C51C30D60571 /* auth_context.h */, - 34491EBAE4F913D87F311FE88219C475 /* auth_context.h */, - 65A0049FDBD6B133C6A7CA37A895F911 /* auth_metadata_processor.h */, - DD9291D160844646275766D62CC3BD45 /* authorization_policy_provider.h */, - 021CAE0AF549BDF7E56675BDE315D6F3 /* binder_credentials.h */, - 5FE0FDABB311ED38489D45C52777A2DD /* binder_security_policy.h */, - 93340BEC2EE5028AE4D77EB7A5353190 /* byte_buffer.h */, - C0181A546BC885270BF0ABB42116D71B /* byte_buffer.h */, - 64092E5672D484FB049C66D8FE31415A /* call.h */, - E1EE6A492364C823126EED0463057D97 /* call.h */, - 2633CB8F25B0870D37571A671A3D11B5 /* call_hook.h */, - 7775282BDFC7F8B4AFF2CABDE7D3EE41 /* call_op_set.h */, - 4C7E475A835489D536032B2126BB7F46 /* call_op_set_interface.h */, - 537964F0ACE37B6A892730099609A883 /* callback_common.h */, - A11FCF074AAB713B048A641C6C88975F /* channel.h */, - C465A378E915E97B7FE609DDC0D28B3C /* channel_argument_option.h */, - C071FFFE6BFD5876239513081F41DEA3 /* channel_arguments.h */, - 1DEADFADE249FA65EDDB9B9EC3554ABD /* channel_interface.h */, - 303B101274BBDA3CB492D5B770804466 /* client_callback.h */, - 06E8C0DF14FF51DF74FF293B35FF204A /* client_callback.h */, - 7CE0A4D62BC222B2960459D7DD3FCC3A /* client_context.h */, - 16BF8D2A37975F69B29D91B636352945 /* client_context.h */, - BC089CBF220AAA95F653C56DBC6E785D /* client_interceptor.h */, - 9DC5941767E8FD037EE9D502A9F3EF80 /* client_interceptor.h */, - 185ABA0DC179F9A6BCA461B114A1240C /* client_unary_call.h */, - B832731D92AE66792B5A68300DE0FACC /* client_unary_call.h */, - F156CFB7E64F64A271C8B53E40F249B2 /* completion_queue.h */, - 0A712F3423A4271693EE4062740620EC /* completion_queue.h */, - 740F77311CF0732E5C9A39BD5781AECF /* completion_queue_tag.h */, - 42E0116AA1827518C6BA3EA94F423BDD /* config.h */, - 3A2D112D05844BAE85A9D5F277C4600E /* config.h */, - 9A048F6F5A158C9E6ABC79AE89F2232E /* core_codegen.h */, - F507942283D65C20EE7AADED44DC257E /* core_codegen_interface.h */, - 11F203843CE6C7F85506A846373E8668 /* create_auth_context.h */, - 32C6FB56F78EB56A627DADA006124E0C /* create_channel.h */, - E8BA8631E8E3418C7877A784E5394DD9 /* create_channel_binder.h */, - 231FE5ED1ECABA37FE98975101A24994 /* create_channel_posix.h */, - 09219B6965124D7CC583F7CAC19DFB79 /* credentials.h */, - 44B3BEC899FC6061C55B49912B75671B /* delegating_channel.h */, - 968DE242C1A9C9C4A61776D3BFE06487 /* generic_stub.h */, - 2A550B61F9A6CE6ACE773AA5F2734EF0 /* grpc_library.h */, - E1459E43783B982C187E00129DD89CC8 /* grpc_library.h */, - DCBC1F3E107D759242A1C3955BC6AC49 /* grpcpp.h */, - 2C57EEA26AD6BBA77AE13C7A4D4FFFC3 /* health_check_service_interface.h */, - B275B83B87E96B5234513538FC683415 /* health_check_service_server_builder_option.h */, - DFF073FFC72C100A9B8AA5298287D6A5 /* intercepted_channel.h */, - C7629139556F5591A69225C1C4A4E5F9 /* interceptor.h */, - 15D0A302434364C99AF37CD09B4CC84E /* interceptor.h */, - ED93ECD107BADD0ADC249CD6139437FB /* interceptor_common.h */, - C44C4FD3A6FA9FCC87B572A73B7BCF58 /* message_allocator.h */, - C1D5F80D3D9518CA8312A8A564F580F3 /* message_allocator.h */, - 5E64D68F5D8E7D028DE843A09A9015B2 /* metadata_map.h */, - 92CF45BA77F86CCD6819B0D98F0C0BAD /* method_handler.h */, - 3964536927C75365D692CF7268D5C2C1 /* method_handler.h */, - 2F261C77E4E04DE5A3675B7EAD8EA528 /* method_handler_impl.h */, - 1B780970491C760B52EC07420DFDEAED /* method_handler_impl.h */, - FE2A5D385714451F620936B2F23E9EF3 /* proto_buffer_reader.h */, - C2479404D5324CCA7B5194BA770E6A62 /* proto_buffer_writer.h */, - 882FCB0DEF4E1541895FE27775FB4E05 /* resource_quota.h */, - 233028B39C6DBA8BBC89EDB37D2B0A41 /* rpc_method.h */, - F9CF7FF71520172A54AA51AA42DDEB02 /* rpc_method.h */, - 0D148EE2BDFF3B88B93A22DB6FC96920 /* rpc_service_method.h */, - 2677578817C44F7EC0A65F90A311093A /* rpc_service_method.h */, - 03CFAE30300C2CB9B8F90D95DF297431 /* serialization_traits.h */, - 3C1D249510EBA504A9223F7F6DFD0FAA /* serialization_traits.h */, - EC1AB1800A8ACA9451B945397CA7931C /* server.h */, - B5B4949DE576DB5D0512953BEB5ED70F /* server_builder.h */, - 4592725643DE1ADCFCE8F803BDA0A417 /* server_builder_option.h */, - B3A3FCB84793B382ECB528EF6C51A92C /* server_builder_plugin.h */, - 1A587CE9582409E4F9F8A18CE9770F81 /* server_callback.h */, - E6E380CAF586F48321C4B88645489180 /* server_callback.h */, - 212E4E04C972A790054A66B6563CD0FF /* server_callback_handlers.h */, - A943B7EA46BDD4487B2819B30DE43230 /* server_context.h */, - 5F9C32276C53E6A913ED1701941C5D90 /* server_context.h */, - B7564503FA87A0C717B9C8A8631A32B5 /* server_credentials.h */, - 32585DA0E531CAE90EFE97D49B826F56 /* server_initializer.h */, - F7849998A15CCC4FE82E1E692A7440C6 /* server_interceptor.h */, - A99088ED062AB2C27087B746077C76B1 /* server_interceptor.h */, - 5EF1073619ADC568CC5135D837E09048 /* server_interface.h */, - B77A855DC916D0B4BECCA939B00687A9 /* server_posix.h */, - 6B89BF58B0C0A2CFFCA992DEFDFED189 /* service_type.h */, - 9CF6338EB9CC49F5A00F849713258C5E /* service_type.h */, - AF9B49254C141180AB74FCDA7F84AF04 /* slice.h */, - 08C312EBBA1FDC1A9251678212F6CDD3 /* slice.h */, - 86E2962D8352B9D73AD74FBC94939A39 /* status.h */, - 95823E1ED04B0D9FE33CECFFD1DCDA55 /* status.h */, - 457ECAB0F72D308E112B3CF8F64AEA41 /* status_code_enum.h */, - 48B4DD9A9938072A07CF259F4C5F30E0 /* status_code_enum.h */, - DFECF25E986CF23DED9CE2C28C5C3D12 /* string_ref.h */, - 080DE6EFA8EC19278A62615B0C71678C /* string_ref.h */, - C84F92D72E05064A11C297612A80AA00 /* stub_options.h */, - EF975D81A087BA3F429817DFB625AB49 /* stub_options.h */, - 3CCD4027D7B087861F3F55BD3690487E /* sync.h */, - 12E4771F2C7E5533F2EB5C0B2B1BE64B /* sync_stream.h */, - DC78B1A132A43E5B8AFE780965E476AB /* sync_stream.h */, - 3D1419752C0DCD92DAC4A5D71D54E846 /* time.h */, - C2E8514D03C47A03032FFE5FCAFCAFF2 /* time.h */, - 2C37C2024A74B505A1B63B1BE5BEC548 /* tls_certificate_provider.h */, - FEA01C9D6CF7CF60C94967B2E89B02D5 /* tls_certificate_verifier.h */, - DD6BCBB3FC57E054A0EEBB19DE632159 /* tls_credentials_options.h */, - 0B93226B0B0A22CD8D9078E645982A33 /* validate_service_config.h */, - 4A2DE0F3F1C5EB3D90EFB27BB328A22B /* xds_server_builder.h */, + 7D6A5AD140B93E51DF64F8CECD92518A /* iostream_state_saver.h */, ); - name = Interface; + name = iostream_state_saver; sourceTree = ""; }; - 99A8CCA483D48C1E7B0D7768FF85BCE0 /* meta */ = { + AFB35DABF35563B0560B74321CCCB957 /* profiling */ = { isa = PBXGroup; children = ( - EDD1D66C8B96866864795696EB5382A0 /* type_traits */, + EB8824C2FB77B0F5D3440E4E22AE16F7 /* exponential_biased */, + ABAD7BEEB80568195561EF5DBF737F7D /* sample_recorder */, ); - name = meta; + name = profiling; sourceTree = ""; }; - 99C0C08DD8FB96E6183CBA90E677C0E8 /* status */ = { + B006CF2840EA77C5C80B57AE9B894237 /* kernel_timeout_internal */ = { isa = PBXGroup; children = ( - D4A08A55866B3D7F6DEB9754ED9FA00E /* status */, - E6D020B86EE819B80531BEE35561AC12 /* statusor */, + CAA7BE784A76795F672E38B9933C257F /* kernel_timeout.h */, ); - name = status; + name = kernel_timeout_internal; sourceTree = ""; }; - 9DBEF8FB9706EBE3F33EF28C13CC783E /* internal */ = { + B30F02436DDCFAACD5C3B3506E02B7A8 /* randen_hwaes_impl */ = { isa = PBXGroup; children = ( - 1AD4E62306B70EC255729A9F4F400F8E /* cctz */, + 2FBD00947D24CF5785EA0CB5DB2A4640 /* randen_hwaes.cc */, ); - name = internal; + name = randen_hwaes_impl; sourceTree = ""; }; - 9FDE8AC4E22EF98C5F1179BBB7C176B0 /* Reachability */ = { + B47AC2A2B916CFFC58054574982DA294 /* nanopb */ = { isa = PBXGroup; children = ( - 567DE34A17B6351564C1B1B156942529 /* GULReachabilityChecker.h */, - 40012589098D7D4EA2D89C5B597D61CB /* GULReachabilityChecker.m */, - 814867F6F30BF5DBC233EBFB76375055 /* GULReachabilityChecker+Internal.h */, - 652E141444A00112AEA4C767510F5D5B /* GULReachabilityMessageCode.h */, + 8112C08896C168B42924C4F9DD4AF3BC /* pb.h */, + 35E26A23E0EC6AFAFEC2EB6AB1D7F5AD /* pb_common.c */, + 2F3025D0075E7FBEC29538D761FAAD4C /* pb_common.h */, + 38082B58E056105068CA8C37CF7E947A /* pb_decode.c */, + 1BCF6DEBBF75F2C1690709D0A24141D4 /* pb_decode.h */, + E7A9F15C5AF4C3A29A9FC06FDF9BF54D /* pb_encode.c */, + 517871A7A6AD7891E694D83320BB59AB /* pb_encode.h */, + E9B4D60549EB302E59437D58F3D54BBC /* decode */, + 4B391EA00D2FAA6A4CB1D25E9ED9E720 /* encode */, + E7B8C2C083F3C204BFA55A2455D33836 /* Support Files */, ); - name = Reachability; + name = nanopb; + path = nanopb; sourceTree = ""; }; - A01729D2EDD2382FB536DC4C06532DF8 /* errno_saver */ = { + B52023D0C1D5E461DB7D2993110FC120 /* hash_policy_traits */ = { isa = PBXGroup; children = ( - DE4C3B5107632E3D71E08E88B47F9C28 /* errno_saver.h */, + 4B7783D21B5D4C98097C79E98F17BEE0 /* hash_policy_traits.h */, ); - name = errno_saver; + name = hash_policy_traits; sourceTree = ""; }; - A10DE23739A915FE0510F3408D7696C5 /* layout */ = { + B6DA95563FD5CAB40E67480AD2A9AC84 /* Implementation */ = { isa = PBXGroup; children = ( - 10E00607DDE6722CFFD71796198FD0C1 /* layout.h */, + C289277C3D3052223FB6396FF2A7F75D /* accesslog.upb.h */, + 74904B350160421E317407EDD5A75F19 /* accesslog.upbdefs.h */, + D72C7039A8F4008759839E9CD5A20BEF /* activity.h */, + 79D55EAE70CC0A017B4FA25867C21720 /* address.upb.h */, + 392BB8539BEAF514B949281B459BABA2 /* address.upbdefs.h */, + F212891CDCE8903259890FB865565D7D /* address_filtering.h */, + 626B787D7C663EADCAD9F21032E3FE61 /* ads.upb.h */, + B591BD44488D1E7D5910CF9452C12F03 /* ads.upbdefs.h */, + 336D40D08AA9DB93F4E84221474DDE52 /* alarm.cc */, + C6A531481170F7956D6F0E925FBABA66 /* alloc.h */, + 6D17F65FCACB1CD6C18F5FE57B23A666 /* alpn.h */, + 0773CA613BEEE144C6B56FA7A7A4F6A9 /* alts_counter.h */, + 80AB9FB90254696C9DAA7CFA451B93B6 /* alts_credentials.h */, + BC5E4BC5D37F2CCF687305ADB6AB5BE2 /* alts_crypter.h */, + 8D71B53866827B85965320F23512A32B /* alts_frame_protector.h */, + 24A7FF794D74680E79DDB3AF9D3C8634 /* alts_grpc_integrity_only_record_protocol.h */, + 6ED2FBE98224920237BD3DEFC52428A9 /* alts_grpc_privacy_integrity_record_protocol.h */, + AC804C7AC738C2FEFF3CFCAC76FDCB0F /* alts_grpc_record_protocol.h */, + 771911D024A4F199E25F767A888E94A9 /* alts_grpc_record_protocol_common.h */, + 46EB2652C8B6AA9C465C8F9C5F17C105 /* alts_handshaker_client.h */, + 813B88885DA9DE97E9BA345D551F8C51 /* alts_iovec_record_protocol.h */, + E2C94B3B5862469CC683367DAF30B7F2 /* alts_record_protocol_crypter_common.h */, + 27065E4D8ACC86A453FDD3106E950F4B /* alts_security_connector.h */, + E6E7FA61B05670098B8D3C531EA0F120 /* alts_shared_resource.h */, + 31682EF8984ED45FFB920CD03C8174D9 /* alts_tsi_handshaker.h */, + 162643445CD199EAFDE2348B6B554257 /* alts_tsi_handshaker_private.h */, + 096A4577C777108A77FCC83BFD800096 /* alts_tsi_utils.h */, + 7194109719C1344EE7ED556CEF056D92 /* alts_zero_copy_grpc_protector.h */, + 1FE34445A0DAE4FBA8733D9C802AA7B2 /* altscontext.upb.h */, + 54E50FB8E46928CD02C2BE37F132DC95 /* annotations.upb.h */, + 1DDFB03E2128FD6392BC9A535F108099 /* annotations.upbdefs.h */, + 38858852E3D433E71E057F1421478E14 /* any.upb.h */, + 628C35240C13CF558832C181A764E9F8 /* any.upbdefs.h */, + D4BF27C591D9E0653E7CC81E8949400C /* api.h */, + 7CA141588C83E1DC9DEB8C5366BDEBDD /* api_listener.upb.h */, + BD95B891564A766981E6C5C298DC0C45 /* api_listener.upbdefs.h */, + 76E848596FA67D95D4AA7402689FD0A0 /* api_trace.h */, + 00CCFDDE8D218C5C1A3E507359207336 /* arena.h */, + 63BB3D2BA0EB77E4198EFCD9AE926814 /* async_generic_service.cc */, + 794EFE21FBF1C0C765D8F5CFCCC99D59 /* atomic_utils.h */, + 9CD095D61CD762988F69F2547176BA3F /* auth_filters.h */, + DD69D10B189C6344EC511B4232C175F7 /* auth_property_iterator.cc */, + D94DF377B8AED97811D82A83777524DB /* authority.upb.h */, + 6CE314F3BD47892F514EA0B7D26AF3C8 /* authority.upbdefs.h */, + E467C5222696F19EFE394E9FA1EAF738 /* authorization_engine.h */, + 6C998E9485581FAB657353652C0EFCDE /* authorization_policy_provider.h */, + F4D29F66AD6E89740C27AA0D4C0B576D /* avl.h */, + EAD6839A4B66CA9058F3762710A8C52E /* aws_external_account_credentials.h */, + AC88CA5F34ABDDDA4427D0459F54F9BC /* aws_request_signer.h */, + F58830A197D5922AA38E7CA675C7B581 /* b64.h */, + D801DD5175E00D9FEE5AA45CA3A911B2 /* backend_metric.h */, + B42EDFE4CD5479CC36B78484866E7536 /* backoff.h */, + 7FCDA6FED7566AD835DDAC45606FD285 /* backoff.upb.h */, + B1DDD57E91967F8567B8980146F3FF44 /* backoff.upbdefs.h */, + 1C4B82517BFE2546A857A801C65C8DB2 /* backup_poller.h */, + 1482574A051A389DB54596A9609F0B0D /* base.upb.h */, + B95E26F5DD0E0200994946BB75423CF2 /* base.upbdefs.h */, + 413E3D73361C2269037D45CE8AD34851 /* basic_seq.h */, + B819813C8087E3C90A97749F0D41EDB0 /* bdp_estimator.h */, + E74A4166AFB9C828ECDF3C1E6FA3708E /* bin_decoder.h */, + 5E0B09B8E39DBD7B2561AB2BFD17FB5B /* bin_encoder.h */, + 3880011408AE9B2C6734988D40BB2F4D /* binder.h */, + 1EDA997AF26146BE99371FB2A016685D /* binder_android.cc */, + 3E40EBC1855C8EFAF5BD5E47F26E9B8B /* binder_android.h */, + A448DBD94F59B1C64E5CCE504D3E2A19 /* binder_auto_utils.h */, + 55ECE9F4148DA56473E0E39E5430FF5F /* binder_connector.cc */, + 08D8F550974F11AF5EABF9D96ED3AED9 /* binder_connector.h */, + 6FC055740FFBC25400723E7E8BE49B73 /* binder_constants.cc */, + 79AC40B4FA4CBEC2B00045AE929EC044 /* binder_constants.h */, + 68C8FE50ACD3F3902B6CF12DD5A2F568 /* binder_security_policy.cc */, + 60CD80DB817A8AD9DA0F8C43CBAF68E7 /* binder_server.cc */, + 61F4D90A66553ECB5B8FBD7AEBFFE385 /* binder_server.h */, + 21FF7B5C6347E698893351A6AB5487AC /* binder_server_credentials.cc */, + F44D9F31CB94014634D341019E1ABF27 /* binder_stream.h */, + B417D3569C012966923407E6DEB774C8 /* binder_transport.cc */, + 84C76D688AAC5A1CD64D289A14CE83CC /* binder_transport.h */, + 1B685E3D71363DC21693DBF44033EAE9 /* bitset.h */, + 93A189D82FC573270C4A6BDB40765BAC /* block_annotate.h */, + 948040A0D6D6F64CEA32D4F6F01D13F3 /* bootstrap.upb.h */, + 5120C5825D365733032564F8F7BBCD12 /* bootstrap.upbdefs.h */, + A5265DF14ABE675F239483F3A05DD65C /* buffer_list.h */, + 7AABBF38B8A78C05E7EAB74FBD685DB9 /* builtins.h */, + 6F7FB592844C934765F08672C1B4FE8F /* byte_buffer_cc.cc */, + 82A014C0E83F78E507B018268BFE8856 /* byte_stream.h */, + 32CC31E7EB007F583AA305EC87E9BE43 /* call.h */, + 7819D4D3EE92CF6D15E6203497B80CCA /* call_combiner.h */, + 1B16692F5DE3C0A73E926EBBB08409E5 /* call_test_only.h */, + 1982CD77FC83B105C24BBD999DABAB38 /* call_tracer.h */, + 17E8AC9CA616687A62A1D217EAAA0043 /* cds.upb.h */, + 1012E2A551E352D40D82BE29DFC29234 /* cds.upbdefs.h */, + 3D04A61482DA8F87EA8F0F6161952AFD /* cert.upb.h */, + 586812315DD91E7234B03949EF011EC3 /* cert.upbdefs.h */, + 01E07A650FE7160BAB9DACE08C394D98 /* certificate_provider_factory.h */, + EB8E12ED139BA28B1E37DA0A59314B8C /* certificate_provider_registry.h */, + 0D92D6733C37F35C91FECE17257F594B /* certificate_provider_store.h */, + 2465DF4B6EE830DE9169C9B86D2D721E /* cfstream_handle.h */, + 9D4DA7AE45C5A2BBADADC9FA8311E9E1 /* channel.h */, + 2B3418F0E37EFE0A2E7BBB05E0D601D9 /* channel_args.h */, + 63759BD8A6513431CF55C91021C41070 /* channel_args_endpoint_config.h */, + 2F6E3475A9594FA195C20D959FE7D9F1 /* channel_args_preconditioning.h */, + EF1279F7B4A4DE2B4F92D60A0A9E2BEE /* channel_argument_option.cc */, + 581E18306CB3C9E0AF7960D07181784F /* channel_arguments.cc */, + 92BB54664A47BB755B95ED0EF337E66D /* channel_cc.cc */, + CB55B75F8FEA78EBF2DF722BC85D349D /* channel_create.cc */, + B0337C4810FF047FA9FF7C5557AB9741 /* channel_create_impl.cc */, + 589167D5C8BDA3FE3F85DE8886322F05 /* channel_create_impl.h */, + 8A52197B134D6DE7F3370BF4FA788EF1 /* channel_filter.cc */, + 5237DD4AC24D76012695C8AA066EEF29 /* channel_filter.h */, + E7929FBC54D2EBD1B237C549DA8FD255 /* channel_init.h */, + 65FD40FA10E1F2AF6995B2EF0AAAC97A /* channel_stack.h */, + 674051A6FC394A45123BAA764DE19639 /* channel_stack_builder.h */, + 21B23DC7B656E3396815463C2E5A2088 /* channel_stack_type.h */, + FA2744F25B64103423574268D739E8BF /* channel_trace.h */, + 383F744E37406F5D7B9AFA63D9CDA094 /* channelz.h */, + C3EFB0ED11280C1E41A8A1D9B7D1E204 /* channelz_registry.h */, + F18F7F9EB9772B9F6F708D26C1A28ECA /* check_gcp_environment.h */, + 8F29064F2D6A013195064F0716BB3D89 /* checked.upb.h */, + 8D654D74647471C76A56573D9C721FDA /* checked.upbdefs.h */, + 7F928376AACDA275738F34450038DC04 /* child_policy_handler.h */, + 62CDC71CAA741FAA16FB284AE08DA8FF /* chttp2_connector.h */, + 059F43CCF5FC232429B49809FBCDF5CA /* chttp2_server.h */, + EA4A4BBC8AC14AF4ED27FBB7E9A6153F /* chttp2_transport.h */, + 20C6132682307EC691BC2DE03A3EEA26 /* chunked_vector.h */, + 7ADBF7E208A13DB7F2D93C1F9576C4FF /* circuit_breaker.upb.h */, + 0EE1E7BD4756928D0F851341E7E4A06E /* circuit_breaker.upbdefs.h */, + 47A48BA2C9E10B0F9E1DC021C6593150 /* client_authority_filter.h */, + 4AEFBD6C2E836A696A53E4AF4F88341C /* client_callback.cc */, + 627CF6264B5E0CB198AF480C714B6318 /* client_channel.h */, + 6FDEE7B96072B088D68D10306D615233 /* client_channel_channelz.h */, + 9C416ACD31BDE9B0B51D1E74D7D296E2 /* client_channel_factory.h */, + F47D396799EFF46107DE16CD61E55989 /* client_context.cc */, + 036A9E9E9BFA9504041DA98C1D65A333 /* client_interceptor.cc */, + 2631D6E1D13D75FF2CE956EF87A51DE9 /* client_load_reporting_filter.h */, + 5CF1FC8FF108789C10DBCB78E9CCB781 /* closure.h */, + D9ED6DFC01AFDF930B2E6EAF8B62A328 /* closure.h */, + 8CF67D95B032EB40B43D6099104711A4 /* cluster.upb.h */, + 5E302CE0BDBAF46ED6F33137AAAEA625 /* cluster.upb.h */, + 4BA3CE3E8B6DEA5E1781D80A12024B67 /* cluster.upbdefs.h */, + C7A59E75EA30D3AC8202A07F9C1C58AB /* cluster.upbdefs.h */, + 73A7CABCCB1DDC9DB9E4632D1D065DAE /* codegen_init.cc */, + 09F8F64D8949332C56A38E3F1FE2E302 /* collection_entry.upb.h */, + 70AF0374A0C974C8FCD8E23041B355E6 /* collection_entry.upbdefs.h */, + 52AAB4328C9B8F610F0CAD473987B725 /* combiner.h */, + 5D8FC3DAFBE674B0BA0E270CD10C9E5B /* common.upb.h */, + F782281BC26A1B05582437F9ABC3CC42 /* common.upbdefs.h */, + C4138AF48FD95F99619C33DF0D042ED2 /* completion_queue.h */, + F5C52A480DB31557DBCAE9B405A65F78 /* completion_queue_cc.cc */, + 4E6279DF857D0563EBC8192D586355CC /* completion_queue_factory.h */, + C9A0730473ECE7E6D796BE448B056586 /* composite_credentials.h */, + 54AF541A6B3213A6177848801664F754 /* compression_internal.h */, + AAB101F27CBBDDEDC48CC31E7B9CD218 /* config_dump.upb.h */, + D04DD6B5D7323AF5DDA85D042C1AB074 /* config_dump.upbdefs.h */, + 67DAA88D18A635D9E46AFD6D8B97DE23 /* config_selector.h */, + 4492CB36E7CA1653A2EE6413BAD60735 /* config_source.upb.h */, + 58076D9E0F17E46B6AB73FB3F6A727F0 /* config_source.upbdefs.h */, + 4642B128CC6C587830218395CD98CBFD /* connected_channel.h */, + 2C95C3C2A0FD2BB8DD06D6DAE3EA066D /* connection_id_generator.cc */, + 6C56AE9D896B83AA75D0AD32B2567502 /* connection_id_generator.h */, + 88A2399C198EB36223D5493C17A30453 /* connectivity_state.h */, + FBDCF3E195CEFDE721E9F6833F34D3F8 /* connector.h */, + A4D952853F9C9CD4AE7CA566C31E2298 /* construct_destruct.h */, + 9A8C6C2BDD094FD039F5730EFDE8C3C5 /* context.h */, + 410A02A7A8793A3207ABBC47D9829925 /* context.h */, + 007F15A5EC4CC06FF5C5B8A8C989F5E8 /* context_list.h */, + ECE47FF262A1F6B0328D935830F2AD3C /* context_params.upb.h */, + 42CC879F729CF2725DD87F5DCE7E06F6 /* context_params.upbdefs.h */, + 7B08F8FF9A8A0E11F0C2E909CFE65D0B /* core_codegen.cc */, + 0AD2DBB335FDB80A89F6676079F6CAF7 /* core_configuration.h */, + 6032C1E83060EDC635D637E9042FD938 /* cpp_impl_of.h */, + 5F805874AC029880EAE7423DAF72EA4F /* create_channel.cc */, + D65E6BBEF6E43985A0337AA16A01530A /* create_channel_internal.cc */, + E793B27DD447D1E56046628AF07FE7FF /* create_channel_internal.h */, + E235DC66D55AD743C05FE5521CF188AB /* create_channel_posix.cc */, + 31F550F5C89C025EEC6B4C0B981FD656 /* create_default_thread_pool.cc */, + 256CDDA97DE535252457CA8A1AF5F4DA /* credentials.h */, + 161B486AAD1402A066E0C1AB4FC3E7B7 /* credentials_cc.cc */, + 8C85EF0D08D2FF11034DA87C23F94731 /* csds.upb.h */, + C22C05CB079D376E0606F56E33CBFBCE /* csds.upbdefs.h */, + 866A4785DB4A328DDB16AF225F6BA93B /* custom_tag.upb.h */, + 3CB509D8D53E64002169940AB93BD057 /* custom_tag.upbdefs.h */, + AD1B5494ED3619D7254F7C9EA1BD3FAF /* deadline_filter.h */, + 4D713C2D01046042F563D47361ECA4DE /* debug_location.h */, + 377DA236AB03F2BAEE4F557B1579EC84 /* decode.h */, + A85ABF9A978CCF58ECAA13659377DAB4 /* decode_fast.h */, + EFBCC660E5148BB857231197D240E220 /* decode_internal.h */, + 4A2DEA38EB7A0DC4708E23315BFBF57B /* def.h */, + 06623FA63AFC0B81C8AFA3991287469B /* def.hpp */, + B50CCA9B665772297B530FBB088C1FF5 /* default_health_check_service.cc */, + C7A9A1921E856E2A3029045F9CBFE1C6 /* default_health_check_service.h */, + E2C9422F8379A5977C8650C49921D87C /* deprecation.upb.h */, + F5C5469BEE33BD141E988B82CD2AFE34 /* deprecation.upbdefs.h */, + C9ACE6358741EB4F732E20B285549454 /* descriptor.upb.h */, + 613B0D3859FAFBD69DD8EF2121CF2F7A /* descriptor.upbdefs.h */, + CEE6DCE0F9080D814DD15BB63174A1BF /* discovery.upb.h */, + 20C19B3C458BABD720C789445E1FAEC3 /* discovery.upbdefs.h */, + 3459A147E55050F3E4F0CF09BFEB9730 /* dns_resolver_selection.h */, + 7043E79F03F3F1F7874FC445B5E3FE12 /* dual_ref_counted.h */, + 7CD86E17D37EA0CEC576516DB45D4C4D /* duration.upb.h */, + 61B312742C5B5B307E5AE236256D240F /* duration.upbdefs.h */, + 58AA555DCB7AD2C4980AEE79A710784C /* dynamic_annotations.h */, + D1964D920690D6BC66477832572B1AD3 /* dynamic_filters.h */, + AF57A95FE24A6492671FF625730034FF /* dynamic_thread_pool.cc */, + 3FAFE69347C9C9CA51175A905DFEFF37 /* dynamic_thread_pool.h */, + 97347F8569ED71CE39BEE9D484175D6B /* eds.upb.h */, + 995E7BF357E15220AE93194C1C3E2AB3 /* eds.upbdefs.h */, + 0E67C8FDD242BE3A0B13CEFFFCD3B17A /* empty.upb.h */, + 9018AE5E2C963954DB8A8CAAD664FA0F /* empty.upbdefs.h */, + 3094B075B65B70B3E4496B4CA50A5EC5 /* encode.h */, + 78B6B707EF284BAB3C353C12785B1CA1 /* endpoint.h */, + 45CF1D6176424B8001AA00B201E8750D /* endpoint.h */, + 455ABDFBA4081D197600675A96310DAA /* endpoint.upb.h */, + 9F6123768C733BF2D6B87CF04AA8502B /* endpoint.upbdefs.h */, + E0A9044DFCE3D735ADC731CF58598CC0 /* endpoint_binder_pool.cc */, + 1AF86C8D5EF20E9198FFB39960024140 /* endpoint_binder_pool.h */, + A279D11295A3FABCD8D789A5849F3B1A /* endpoint_cfstream.h */, + 5090E2455BFA521DBFA58566083C0C53 /* endpoint_components.upb.h */, + B91A4041C80BE52EB9E2D1C78794AE1D /* endpoint_components.upbdefs.h */, + 717928F9914AF0BC957E001257AFFC30 /* endpoint_pair.h */, + ABA7A6CC74669E4A400517189A0410AD /* env.h */, + 996C87E6EF0570E37CAF8955C0145D42 /* error.h */, + CD5439BFC642CF6B549988DCBDE5440A /* error_cfstream.h */, + 56FDCD49996225437CD3FF22F6D2D023 /* error_internal.h */, + 972ADBCE9AC8D64B492448AF497AE8B4 /* error_utils.h */, + D70CFB3D8B86BBEE58C9B3AC4E4ED3EE /* ev_apple.h */, + FE621FA81410BAB146B7C4CC1CEC31C3 /* ev_epoll1_linux.h */, + D65DB9AB0AE07A52F640B1A83F99C672 /* ev_epollex_linux.h */, + A9589447B075C852C449954C75EC2A37 /* ev_poll_posix.h */, + E4CC65A6BBB36F189EDF9C5655FD5494 /* ev_posix.h */, + 8F0833A0809587A3E2BBD871FDBA7B9F /* eval.upb.h */, + 325EDD8F5946E6544DAE6BFA35B43A4C /* eval.upbdefs.h */, + C296127BD57AFCDE78841A748D2B9B07 /* evaluate_args.h */, + 6A6A7371271803399B58D28FDC091837 /* event_engine_factory.h */, + 433B554DE9925183DF09D9DF8DCC2A02 /* event_service_config.upb.h */, + 47D61E20DD02A0B6145065A62DED3A12 /* event_service_config.upbdefs.h */, + B17C8988B4A74CD61388A7A7B54E0293 /* event_string.h */, + C0EF4305A9FDADCB8678097C6FF6FE6F /* examine_stack.h */, + E7102C7BA76F3346AC2E89CDF54D281E /* exec_ctx.h */, + 37E04BB2F4FAE36E40FA6E84D4832EC3 /* exec_ctx_wakeup_scheduler.h */, + C780C23EF2208591C3E842433F5658E4 /* executor.h */, + C0CA4478DEEFA84A0F4539B305637EBC /* explain.upb.h */, + A13ED55F7FBAC08C8BA47A98C694F982 /* explain.upbdefs.h */, + EAA2C67264E8FCAC1FC3D26BBC0C9E1F /* extension.upb.h */, + 8BEF0F83D632BA61BC77FB1E12AAD094 /* extension.upbdefs.h */, + 4BC7B31F32A3BD8757EF10BAD153AA68 /* external_account_credentials.h */, + EB9D60005C9301E5F5CA687ED5C15F01 /* external_connection_acceptor_impl.cc */, + 7D92EA3A7FC3953CD3989F4E8DDAAAD0 /* external_connection_acceptor_impl.h */, + F08BA25679EF1CD8BE2EE7C4FB7A25B8 /* fake_credentials.h */, + 53A9AFB7FE6AE452B55617783E794CB5 /* fake_resolver.h */, + 2A7129E41AF5610CD59C78ED31085B69 /* fake_security_connector.h */, + FBA28F23C40C8E5F6A7CC32376915B7F /* fake_transport_security.h */, + 56EC8AE9A54B2039172E235F6EB30C27 /* fault.upb.h */, + 60639E4923A2E5E97635FAB8820F369E /* fault.upb.h */, + EE0AF2E9A3F6083D84A9BAC44CB43310 /* fault.upbdefs.h */, + BAE58DCC88D406362C6583666854E38C /* fault.upbdefs.h */, + 5574AEF7F63E0D5632D47E8E659813C4 /* fault_injection_filter.h */, + A7EA77369641C931E35B5B460DE692CE /* file_external_account_credentials.h */, + 510285E4877BE07331DD7620323B6718 /* file_watcher_certificate_provider_factory.h */, + 3769EBD9F895C2674A207DF500AED3B6 /* filter.upb.h */, + 96400A779A1FA998E3130C99F0E430FC /* filter.upbdefs.h */, + F3C29E28355E14AE9A7D4348F5E9BF3F /* flow_control.h */, + 1000DC36A6C7933EABF1DB7E0C95C009 /* fork.h */, + EA552F08AA3CEB33A3D1B895A325400E /* format_request.h */, + 1FBFBC0FDE52DFB2152249B660BC787B /* frame.h */, + D204DAFA60EFA77DB3C8AB1D10655D2A /* frame_data.h */, + F668908B692F59BAF8286406692DDCB1 /* frame_goaway.h */, + 40251BC4BA5D224ED709E620C05C2379 /* frame_handler.h */, + 171451AD179ABFADC8A281A419A41F47 /* frame_ping.h */, + EA9256E994D4BE2493D09B9350AAA2B9 /* frame_rst_stream.h */, + 913BCD1982DB939F726E9611FC22FFC0 /* frame_settings.h */, + 3BCF72BAF98210BA2D49A68D2B9139B1 /* frame_window_update.h */, + 43F950E9FC973A2770F7B1460286EB4C /* gethostname.h */, + 3333EA7F312E1EA6226237E3F0DB9641 /* global_config.h */, + E30456D735D95D8C38AAAAE622055005 /* global_config_custom.h */, + 4E611AFAA746E11E2FA8697A64C02ADF /* global_config_env.h */, + E17A26765EC010979E39EF987B0D5CD1 /* global_config_generic.h */, + 7890FE3703D80D553218BB2FCC38A893 /* global_subchannel_pool.h */, + 94BC6A18087B326095A636959A53FB53 /* google_default_credentials.h */, + 6E0E5DB93718DEE01AEFB4F749167C72 /* grpc_alts_credentials_options.h */, + CD220291DD02937BFEB2C49AC2105E6D /* grpc_ares_ev_driver.h */, + B0C1583274B07075008203C27B8A4FCD /* grpc_ares_wrapper.h */, + F08DCB8DFCDB30C21FA1134455BD354F /* grpc_authorization_engine.h */, + 30949AB31E938072A3E89FBCA6C2B6E1 /* grpc_if_nametoindex.h */, + A0193A288EE4200049EBDCA32B1B2E25 /* grpc_service.upb.h */, + E12E8D566FAF45FCAD196BCA4B92A17B /* grpc_service.upbdefs.h */, + 06A9CDCE24434CA2EA25945DD7B50187 /* grpc_tls_certificate_distributor.h */, + 13A81DECDB45B0513452F97881D5B2C2 /* grpc_tls_certificate_provider.h */, + CC2975F41161A709BB2DD91C78C66278 /* grpc_tls_certificate_verifier.h */, + 4DC92CB1DCE4968F8CEA3BC5D2489598 /* grpc_tls_credentials_options.h */, + 9CB7B8147038BF1175402ACD2895A616 /* grpclb.h */, + 92326C60643CC8CB6057D8DDF4984D70 /* grpclb_balancer_addresses.h */, + 41950B925144F8DAC6DD365736BAB556 /* grpclb_channel.h */, + A7CD411E0BF99D427E9E2D714CF77398 /* grpclb_client_stats.h */, + 7FE94FDBC6214D20A441583351D621DA /* gsec.h */, + 524D842718C6D4D3D8A29931942B3FEF /* handshaker.h */, + DD5844CB192FC0211ED392D2EFCFFE6D /* handshaker.upb.h */, + 5B8299BB74DC49117B8A7A9A56D147DC /* handshaker_factory.h */, + 20502864ECDB477A336242904C216395 /* handshaker_registry.h */, + 31F49596DE6787F85B343DA7908CA831 /* health.upb.h */, + DCBBB295CC84238735D6707ED2C1C215 /* health_check.upb.h */, + 2D430DC36E369224FE80AA1C779C873A /* health_check.upbdefs.h */, + 7A04F894BB371F658D3596F92B32CC63 /* health_check_client.h */, + DC6C2809A58ECCB5F595B10F26E501C6 /* health_check_service.cc */, + 9EA8B0670C869E5745119CF205E76A4F /* health_check_service_server_builder_option.cc */, + 245CAEA8281F211B07977F7FA592DAAA /* host_port.h */, + CB14276897DF5D6F7E900533E4E6A13E /* hpack_constants.h */, + 7DEB1FE9DF15D5132C2DED30E63F02C6 /* hpack_encoder.h */, + 91AE9EE569472E395A9D36E4ACF8A48C /* hpack_encoder_table.h */, + 73A13E6CA2407CBDC57E189D6980E82D /* hpack_parser.h */, + CC95201DF4B580BFBB30742544ED0158 /* hpack_parser_table.h */, + 5F77F0786C3132A7D9BF38659872CBE9 /* http.upb.h */, + BC1920D969E10B9A607326A637566D9A /* http.upb.h */, + 959F0A7992D04F656F1D1378D9381315 /* http.upbdefs.h */, + 788FB90AC07FE36E0135FEE285AB339C /* http.upbdefs.h */, + 2A4A392088B74EE77B2A3EC002E127CE /* http2_errors.h */, + 984785F87CE833DC837D41FED974BC16 /* http2_settings.h */, + 217E8CD74BA05131F6F4D8CC99945BC1 /* http_client_filter.h */, + FC305D3BE1AB21685F45311DFE9308C7 /* http_connect_handshaker.h */, + F11E073EAF48F7AACC47F18BAC36DF3A /* http_connection_manager.upb.h */, + 88D8E8EB449E5FF259371BE8BF84503B /* http_connection_manager.upbdefs.h */, + 4C394F11DE2D57CE916E89F5D66298DC /* http_proxy.h */, + 944859D49FF85ADB6CD028421F09B1C0 /* http_server_filter.h */, + 4E7DD4D2285193FBD94561970A93CADA /* http_tracer.upb.h */, + C579B2042565ED6A5B0CA497951F52EB /* http_tracer.upbdefs.h */, + 604286557E9CE4D862024F4ADE68E839 /* http_uri.upb.h */, + 35AD2C99758DAD9E42EBFA31E4911CB0 /* http_uri.upbdefs.h */, + 730DD5E67DDBA111BECCEB74FC7A0053 /* httpcli.h */, + A2792D02215858692BDC811B398E9F98 /* huffsyms.h */, + 3B211B34506D911E2F346BB8EB0E71BF /* iam_credentials.h */, + D2AD7FAC3C13F626E1056C668709C2CB /* idle_filter_state.h */, + 149990618120ACC66DAF53C0E2D490A9 /* init.h */, + 01E4A4FEE82EB285236C12E3188E6205 /* inproc_transport.h */, + B039F1D718EBAC0531ED804E9B18147D /* insecure_credentials.cc */, + CB029FC3D64CCC86FA19B6EB8F2FF958 /* insecure_security_connector.h */, + B5B7845C1B65AF0B44092BA97078C62D /* insecure_server_credentials.cc */, + 7B65C34B49D2CCFFE7CFDC736C362AE6 /* internal.h */, + 1797587926958D2B47137059BAD1A27B /* internal_errqueue.h */, + 784EDAC21B9A7139AF68CDB3C25DB71E /* iocp_windows.h */, + 2A46FC8676E4DF53127F09937C918D4A /* iomgr.h */, + 5B8678B2EB1A26A48D1ADB9DEC9D68BD /* iomgr_custom.h */, + F9D7145FE966D1A57FA5273801F45E57 /* iomgr_internal.h */, + EF2F0C97F1D9CF3CA234BC13964EFE5F /* is_epollexclusive_available.h */, + FF6DE32A196E55EC9F8BEABB1DB36C1F /* jni_utils.cc */, + D4D2B53496312573E585E4DF06D556D5 /* jni_utils.h */, + 4D8BCB168CEA2973C48A5E16CD76B396 /* json.h */, + 2C551BEC5E9F578374192C51A0CA631E /* json_token.h */, + D3CDC1DA9E8272F3ABC0188F99122068 /* json_util.h */, + 5AB9E3B05EAE54A19AF83995D8BBDE6F /* json_util.h */, + 582DA92D9E02573E166CF86393FE4E01 /* jwt_credentials.h */, + A9DB8990B2A3BEFB85485420AAEB9F5D /* jwt_verifier.h */, + 0E91AEC2BC41558828140FFDAC5544AE /* lame_client.h */, + FA1F48C9248CAC723C8B9BF925790608 /* lb_policy.h */, + 78447660FAE3FC793AFA0E4C888916E1 /* lb_policy_factory.h */, + 3E5E8BA21D9F1638EEE94FC9B32B4A5A /* lb_policy_registry.h */, + F7346FCF77FC5A6AE459E9F786718732 /* lds.upb.h */, + 193F7ADDA156958CBF17C7CAC7B1FE6D /* lds.upbdefs.h */, + 70089ACAEC66A055C801C99325A4898A /* listener.upb.h */, + C9C026D1D43CF542627D0CEEF3F19B4A /* listener.upbdefs.h */, + E72BBE7A201A7E58EAC6CDF21FE608A1 /* listener_components.upb.h */, + 53A0AAEF727687C88D648A8CC8E8E034 /* listener_components.upbdefs.h */, + A31911DF5E710CAC623D379A317EB89B /* load_balancer.upb.h */, + B305A820FD6DEB4963E54B7976215E30 /* load_balancer_api.h */, + CC1DCD05491EFCA8A659AEB63F5CFD85 /* load_file.h */, + 5304665D07660799AF09C13B972D6C4F /* load_report.upb.h */, + 4A2EC831F5805DAC385FF95CF951B6EA /* load_report.upbdefs.h */, + 3182329ECB517D3B918932194D3E7784 /* load_system_roots.h */, + CC3A8DA1395808F7C9399B31FCEFCEB7 /* load_system_roots_linux.h */, + F78D4F6D3A907ABFE2E9F53C83924D48 /* local_credentials.h */, + 5E24EAD78E3E26042B4725AB2D11B336 /* local_security_connector.h */, + D2DBA07DF8C74BB78C556334B35CB3BF /* local_subchannel_pool.h */, + 490F71E4D42C8D5B386EF3E2752A953C /* local_transport_security.h */, + F7314AA78CF30ACA70AB7A3E074F7279 /* lockfree_event.h */, + 7FAEE13B322EA73E2BA902F8F862B6F8 /* loop.h */, + 1ACB154EBD66395F6831D480F5B7A350 /* lrs.upb.h */, + DD4E9400C20E1C6BBF2559F178EE0606 /* lrs.upbdefs.h */, + 762BC53D27EFCEB2B9D073FC2E6B3184 /* manual_constructor.h */, + C9310DDFAB9D2356CAC7C7E193950A80 /* map.h */, + C4790882F294F39BDD533F41E918AC39 /* matchers.h */, + 494092AD735B85454D60DB6E474A6BA2 /* matchers.h */, + 3C520F246B7C82D3BBBC969D2AB0E518 /* max_age_filter.h */, + 162C6DE9E32FEC142567BDBE275447E7 /* memory.h */, + 845D25547CFB827A33FA7CD82DCD1A68 /* memory_quota.h */, + 4CB0A385FE4DC4D30F86505F542818A0 /* message_compress.h */, + 019F83968128F6F24839D3D064259166 /* message_compress_filter.h */, + 143B53D7DE25B883F9C47A16B13588FD /* message_decompress_filter.h */, + 3C47F293D49C30B3E0290BBF2DC9CEA5 /* message_size_filter.h */, + 864B590F269205D2D79425DF9F027FEE /* metadata.upb.h */, + 1765026A58394FF23CBEACD729275440 /* metadata.upb.h */, + B44BDD24C0C5179C294AA148F294B59B /* metadata.upbdefs.h */, + A7EACACD390B4C75B4D8D99A0F0A07C3 /* metadata.upbdefs.h */, + 6409110958CE063FA6748CE38BA66377 /* metadata_batch.h */, + A22F7E79E07AC9D0A325EE756266DC6B /* migrate.upb.h */, + FBC02DF74ED6D3AA3D52FBB31B769066 /* migrate.upbdefs.h */, + 02D814363943F5E57C4E7D6E4F8CEB8D /* mpmcqueue.h */, + BFF3A9F1169983E682305EE6A95DD333 /* mpscq.h */, + 17578BC869E742BB357A3CD1575791C8 /* msg.h */, + F3E028A6EEFDCA41F9BC13458E22E158 /* msg_internal.h */, + 04179AC3B879C20206978EEC815FD882 /* murmur_hash.h */, + C0E54EC9767B1069A725D44C80D1268F /* nameser.h */, + 0C73A9C5D77E0778594A42F25CF2C2E8 /* ndk_binder.cc */, + 1E0F46DB2E7E772B6C0945211FC3103D /* ndk_binder.h */, + 1C10F29B244D15ADC7FD05A5DEDEABE0 /* node.upb.h */, + 8B90F15E60881E22092AEF3BC52CD7DE /* node.upbdefs.h */, + 9348ABAFD3447D445B4FF87D9287A5BF /* number.upb.h */, + 74BE481278D4B8C57FA590A10DD8504C /* number.upbdefs.h */, + 70991E1BC079F3A393AB61E9202F626C /* oauth2_credentials.h */, + 118F8264C836D074537B3930975AD221 /* orca_load_report.upb.h */, + 3F3445E98AE21D6D0A7D19BDB808307E /* orphanable.h */, + 6FF8DF228868753742F43A64B9DBA840 /* outlier_detection.upb.h */, + C53DA64571379C8C591E440D024F8E6A /* outlier_detection.upbdefs.h */, + CD133E1028F8BFEAC1DACCC6090A8DE1 /* overload.upb.h */, + 24A4B46F0DC31689CFA6FA776753E974 /* overload.upbdefs.h */, + B23FD13FE224A936D0261009BB69C601 /* parse_address.h */, + C5997FDAA3B91F53C65F59734682639C /* parsed_metadata.h */, + 0887F377419852A856F156B9B0AE94EF /* parser.h */, + A6012AF4B8E27052CCAA36F5AD001CF2 /* path.upb.h */, + A5DF75113F4185F5EEFBE5EF2AD41B06 /* path.upbdefs.h */, + 510F9412B268983A1428EE5E0DB030E7 /* path_transformation.upb.h */, + 0406507199D904BDBED7C13AEF78965C /* path_transformation.upbdefs.h */, + BF6B2AED08B7B8325D2C3E00110A8AE8 /* percent.upb.h */, + 80C57F179BFC42A798C67E22CB90D5ED /* percent.upbdefs.h */, + 55C7BCE68CC73ED513E70158AFA22B33 /* percent_encoding.h */, + 30B1BC53D15048019DBE5A986F160113 /* pid_controller.h */, + 10ED6BA4F1EA9C7ADEC40AF5BC4ED233 /* plugin_credentials.h */, + 5E27ACE453E2FF392BF2C0E58A69CA35 /* poll.h */, + A6FA5B34BBAB9666CAB504AD23D5C483 /* polling_entity.h */, + 46736FAD9318C2F7FE1755B3D57CBE43 /* pollset.h */, + 6C9BEB4F172D8FEE91AC0AE8B5E13C74 /* pollset.h */, + 77E41E672126381DB5F4F7F297E7035E /* pollset_custom.h */, + B022821111E61F489BC52E4BCE4C9B3F /* pollset_set.h */, + 27C7D84AB0688CF0D6A1973FB29EA0F9 /* pollset_set_custom.h */, + ABD0DABE1780A68EA9BE5735E6DD0B48 /* pollset_set_windows.h */, + E37AA8DEA0AAD92413F3D4762A3FF6ED /* pollset_windows.h */, + A54FA3126EB2F87B50889081BD285D76 /* port.h */, + 7B8708073A39FF01D99A3CA282001D1E /* port_def.inc */, + A1D2ECA061DFA3050BC9F153F9ABFC3B /* port_undef.inc */, + 1A1FF2DE0F03417B3F591DAB71618553 /* promise.h */, + 809CD436344167C509DE2A4EFA647373 /* promise_factory.h */, + 42F8EDAA7C98E998379F3DDF756142F6 /* promise_like.h */, + 2D240863EF0AD60E5406EDABE5F1B968 /* protocol.upb.h */, + 2E9C92C3C93711461B1F302470718B6A /* protocol.upbdefs.h */, + 2884FD554F251B8BCE0E7AD7CC7BF9A2 /* proxy_mapper.h */, + 261304909E0B32F44FFE110FA8C58EE3 /* proxy_mapper_registry.h */, + C74E796F933D74A73320FFEA8BA90C0A /* proxy_protocol.upb.h */, + ACD9FA229759D28F5D2BEF588C96B06E /* proxy_protocol.upbdefs.h */, + 820E2EAC0F61C0F66E2FA35B975ED290 /* python_util.h */, + 6020A818941C7158C7D06DE82B68E8BC /* quic_config.upb.h */, + 6B7D6FA8081B12F306D3960C3D23B9EF /* quic_config.upbdefs.h */, + AE6A6F1AF18E38D907AE9FE3EB2340D0 /* race.h */, + 62823349E2627FF623A5B03416D1B7E1 /* range.upb.h */, + 8B8CE964626F35AB0631199A33A0649D /* range.upbdefs.h */, + 2AC0E36EE9018FEC5A11B2BD8B6E2EC6 /* rbac.upb.h */, + C9C3BAAB919AB554800D7FEDD1A7436A /* rbac.upb.h */, + BD9AD77C0B70F4A3D45FC51E2CF23024 /* rbac.upbdefs.h */, + 738AC6A787B65F7CF70CFAEC95B76ACE /* rbac.upbdefs.h */, + E88D524B148079DD23ABB081E5B9FDFD /* rbac_filter.h */, + 4F3BDC65CB66DB3C6CCF50CDF798258C /* rbac_policy.h */, + 09FD99D95491898583FF1FE210975D1B /* rbac_service_config_parser.h */, + 3A7692299C7A761674EC972450ECB93F /* rds.upb.h */, + 4B5F3A0BA70E884D7CAF02006F257B70 /* rds.upbdefs.h */, + 53B321657BF2CF0B5BE76A98027CA70E /* ref_counted.h */, + 0F19BEFDCA620B0A44BB79C7FC8C78D7 /* ref_counted_ptr.h */, + D7414D9AF32CDD61601B8D433A1579F2 /* reflection.h */, + E807EC6E22BCBFDBCEEB44711D16ABF0 /* reflection.hpp */, + F4747333E10AAF0379ACEEF4BE7AF2D3 /* regex.upb.h */, + 595C7E13CAC37B571EFC71EE2EFEDC98 /* regex.upbdefs.h */, + 695354E011B4785914545C7878A1D405 /* resolve_address.h */, + A79C1FD9D5E49DCF20306E7E6B80AEB7 /* resolve_address_custom.h */, + 444954F4ACD1A30472226959F2A84942 /* resolve_address_impl.h */, + 197FE6916163BD0C008EF8193DA5BDED /* resolve_address_posix.h */, + 9D43F253405F60D294BDB61035F6814C /* resolve_address_windows.h */, + 10E61A3C03FF41EECC9021B264B8291E /* resolved_address.h */, + 87C7187EC817D520314BC079AC6E9983 /* resolved_address_internal.h */, + BB77292601473E9A170636A1AA174E03 /* resolver.h */, + D9A70D931D7BE20DC9F573A5D004F46F /* resolver.h */, + EF375D0F95249AF8180A517BBFC62C8F /* resolver.upb.h */, + 9AE8E76EE562C2855DB0BCEE275822FE /* resolver.upbdefs.h */, + FE29B99AB49861FC7138440CF3F53333 /* resolver_factory.h */, + EB9E515CBD6869BC40A229BE5697607C /* resolver_registry.h */, + 62A5DD862D4E7B6816BA41249305620F /* resolver_result_parsing.h */, + 01AF25EF722D3914BF9F97D6A7484E30 /* resource.upb.h */, + 2E12363CBD194ADA1E2348F272F5ACE8 /* resource.upb.h */, + C60B04EA53FDB2E30B78E6828FCCEE9D /* resource.upbdefs.h */, + 2E504EA23615955675EBD96AF8D7D6A1 /* resource.upbdefs.h */, + 877965113A7A741215891D68DE9D45C4 /* resource_locator.upb.h */, + 1FF4C24B8F3D8AEA6D6B6DF20EE5810F /* resource_locator.upbdefs.h */, + B40EFBE07116E3F340C6FF7DA728FBE7 /* resource_name.upb.h */, + 73C5C4EC3C7729330CFE04D86CB1A1F3 /* resource_name.upbdefs.h */, + AC8A7A510C0D687C6BB71C1332B797B5 /* resource_quota.h */, + 956B466714344BB700AEBA587FE54639 /* resource_quota_cc.cc */, + 73A73D17771BBAEFEBBFE5724EF32F1D /* retry_filter.h */, + C548C055488BCCA3FC5C1C309AB1A094 /* retry_service_config.h */, + 41FFF27F876FCD691DE067A5A6BB448A /* retry_throttle.h */, + 9D2D0B809D7F772E23E7BCBFF7A91477 /* ring_hash.h */, + A7DA8E332C56FFE90181557403F4A9DA /* rls.upb.h */, + D8DA2372B5110504AB5BC8B0B97348F8 /* route.upb.h */, + 1B8995363BFA50249B4FED9E5267CF36 /* route.upbdefs.h */, + 631DD5BDE4C1167018A5138C69489B41 /* route_components.upb.h */, + E6BA021FE48666B3CDAFA6323EDAD2CA /* route_components.upbdefs.h */, + 9AF29D9D90837C068695EEC13D6D749F /* router.upb.h */, + 3A908152B7B2D5531DA8798A30739E48 /* router.upbdefs.h */, + 2364B2393F1AAB8A305532A64870EA9A /* rpc_method.cc */, + 244C209FBC79E6BB73F7A7E0E5F53D63 /* scoped_route.upb.h */, + 30ADE7D86FE79B7209769E41B9B2F663 /* scoped_route.upbdefs.h */, + 8601D64811212FA8C779850E369241CE /* sdk_server_authz_filter.h */, + 0761DA0584D292762B1C9B221B77E850 /* secret.upb.h */, + 212546C840FDB70C540C95566D66E1BE /* secret.upbdefs.h */, + A7F41942CDE5EA53B138D359B83DCAB6 /* secure_auth_context.cc */, + 92DFA4416E263E772F71F89F9BCC8143 /* secure_auth_context.h */, + A2A822252CAE104E735C2DB6624CFA3F /* secure_channel_arguments.cc */, + B7C10F1081335E2D389212D12F3D8F5D /* secure_create_auth_context.cc */, + D6B6345A582066F6B6D46C6547AF8598 /* secure_credentials.cc */, + 75CDC588D64A4FAE82B586CCD3A06252 /* secure_credentials.h */, + 6D0C52F83102EC7ED35242EAEAE3F93F /* secure_endpoint.h */, + 12788084A63E94EB146B6FB49F5DBECD /* secure_server_credentials.cc */, + 8891128A7E3C0456DC9B5DB1ABA0E365 /* secure_server_credentials.h */, + 3874B77F56584C8582A6FED538C523B5 /* security.upb.h */, + 95BA6B7DDAB6CAB918C7B0AE9D612724 /* security.upbdefs.h */, + 56015EE01B06FB947B8D0773128E0B6C /* security_connector.h */, + A01195D0F179247601C472163D777A4E /* security_context.h */, + 7EB9DA88EA599C781F3AC59D73D48539 /* security_handshaker.h */, + 68AA84DE5BB2091547F58B75D88E55B6 /* security_policy_setting.cc */, + C4059BFE58999271A6B6CE71DF543AE2 /* security_policy_setting.h */, + 788A841BC05B9265D71AD897949481C6 /* semantic_version.upb.h */, + 0D81023203E4EE2DA52F4796A0F5A9BB /* semantic_version.upbdefs.h */, + EC4CE2894263ABCB3E3AE8098AA3D881 /* sensitive.upb.h */, + DA96F498DE648C92B374764C9DE0BFA0 /* sensitive.upbdefs.h */, + 1719A2E866C59CB761E7391982451327 /* seq.h */, + 7374C9BE75E299EBBD473AB2D8209DB6 /* server.h */, + E7FB1E241ECD03B9343961227C2044F6 /* server_address.h */, + B6876370D7276848422512DADE7E20C3 /* server_builder.cc */, + 7B43FF235702065C6B602B71ED71778D /* server_callback.cc */, + CC3074AE2F21EBE83C77A8A7B79234E0 /* server_cc.cc */, + F23F2261C0D101B68BC513F5758408E8 /* server_config_selector.h */, + A33C253FDF7FF6BB8B6296377CA1D78F /* server_config_selector_filter.h */, + 0A6C043C324359451D4A4E6C0402372F /* server_context.cc */, + A68E10E0782E9124117D7F00B408CC62 /* server_credentials.cc */, + 7DEFB7554EEF13EBDB29DA72D2624D1F /* server_posix.cc */, + 1DA0044453006D2C5CBF5D2D23F519C1 /* service_config.h */, + 0FFDD1633DA780D2E1B55E1818FEBA88 /* service_config_call_data.h */, + 5DFAF8D48A76BBBFF540F71C6D14EA46 /* service_config_parser.h */, + 59C780C773EC1CC8B0DAD0CC29C2E536 /* service_config_parser.h */, + 4C86B60C37497122EFA11C28477DCA0D /* slice.h */, + 900037B35F0BDBA6BED6BA2260B42EC4 /* slice_internal.h */, + A4892686DBDF059CEE86AD8608CEC3A5 /* slice_refcount.h */, + 4696C3A1E17C292F74E651A0285FA330 /* slice_refcount_base.h */, + 79C37F3296F115E675C5B32B6D543182 /* slice_split.h */, + AE4FB61735914D78871A7044BD3BBFD2 /* slice_string_helpers.h */, + 7DDE7DCAACB69DE02622F6D9ABF31B57 /* slice_utils.h */, + 199275C966E2ADC325321F0E28F9BD92 /* sockaddr.h */, + 7598C107A7457216F0FED97EB6A2CA3D /* sockaddr.h */, + 16AE8D8956A420D88D796D777467A2ED /* sockaddr_posix.h */, + 97ED18C78A80B95465644D5DE6CB03BF /* sockaddr_utils.h */, + 37D0DCB4D87AEB162B62039EB34D2C87 /* sockaddr_windows.h */, + 6B8284E07202C75CF12909F6248B03B0 /* socket_factory_posix.h */, + BE0D23A5D5765304560022F42EE13C28 /* socket_mutator.h */, + 2F6B3F5D9726A6E35E2694A088F72FBC /* socket_option.upb.h */, + 1A6EC7CAFAA5C3A2DC6F364A8D59D3DD /* socket_option.upbdefs.h */, + 0B982740FEDE20A5B630B710AECD2054 /* socket_utils.h */, + 666E9966EDBE9BEB538B4943212E9D46 /* socket_utils_posix.h */, + 9392D1B69EDA15DCF84E39203D3E8A67 /* socket_windows.h */, + 158ADFD30912CFECEB65E075D3CC1331 /* spinlock.h */, + 9F97BB4B975667319CC34C4E05585709 /* srds.upb.h */, + 7D6A66D1510C22F05BD043A93D688A3A /* srds.upbdefs.h */, + 3FAC7979171866E44ED6649805355B9E /* ssl_credentials.h */, + 41097F5B724FCE12E5E9A0F5DCB0E747 /* ssl_security_connector.h */, + F0410AA02FE28AECEF8FCDF4453444E9 /* ssl_session.h */, + 02084469FB2D895A0332629EF7EBCD59 /* ssl_session_cache.h */, + 7CAD0FC48830950333C3F295883EE408 /* ssl_transport_security.h */, + 0E43E0640447A49184F89B50011ED238 /* ssl_types.h */, + 2417D45F1B0CBC31D6E9C142D79C1E91 /* ssl_utils.h */, + FE11DF1311A4ADED090E9E3FF9A0CA47 /* ssl_utils_config.h */, + 62C055D29FB379E969FF9FBB32ECD71B /* stat.h */, + 1C353511EEB33ACEEB6EFDE44335FCE7 /* stats.h */, + D359CE8CB3DC0FD7B140401414AD13C8 /* stats.upb.h */, + B8D2606A7860B8C389C2F0C68B582E27 /* stats.upbdefs.h */, + 44D989A4ABD25F5EC4EF560B78B91872 /* stats_data.h */, + A71133C43848C32F798FF7225E4E9C01 /* status.cc */, + 51CA796C398964CC455D2F3EC4BA518A /* status.h */, + 06CC698B0FAB17DE34B480F086167D08 /* status.upb.h */, + AD309C486B0085B236F6C02877B670DA /* status.upb.h */, + AA3B5914D6B0D2E44D359BC34A4FA48E /* status.upb.h */, + B66B8585233E47D4255B365517D5477D /* status.upbdefs.h */, + E3681E55D1464113B9A11C54FFBA84E5 /* status.upbdefs.h */, + D5071F640EDDFF8422D793FF0A7A5162 /* status.upbdefs.h */, + ECEF990FB374A6DD79E7235EEBA61A8C /* status_conversion.h */, + 5F273B70495F0FAA39045538F2C804A7 /* status_helper.h */, + 52936EE7429F440B406067E34858A26D /* status_util.h */, + 9E8C3E40D06BAB73DDAB836409E7D91F /* stream_map.h */, + 202B0381245BE30EA25F7C112E0D59A5 /* string.h */, + 249761F3FACEB2EFD25A150E8E368F14 /* string.upb.h */, + C32E272CA62338AF25481DB13397E7EA /* string.upbdefs.h */, + 880E0EDE0ED9877F26015F4036CFD906 /* string_ref.cc */, + 933F733BC59FD4CFF9E425C8596CBFF2 /* string_windows.h */, + 075034EF4575143C83D2DC2385883C42 /* struct.upb.h */, + CA53B9F49A9BFFEE15799E33954F4A46 /* struct.upb.h */, + 4991E31C6D3E641142B9E9D56823DAF0 /* struct.upbdefs.h */, + AE5BD4AB2FE880F958ECBED48682DBC7 /* struct.upbdefs.h */, + 204DC4204DA867B3F228BE10F537B0B0 /* subchannel.h */, + D1772E72C57385D1D1736D1C2820D802 /* subchannel_interface.h */, + 2DAB5C39646D116D0AD2229811DB3323 /* subchannel_list.h */, + 6499B3A0501BFA989CEAC7A7C2811AD8 /* subchannel_pool_interface.h */, + 3CD48BB29CFBDBF99649B7B31601B1B2 /* substitution_format_string.upb.h */, + 86E5CC7F641F436DB1282A0357EFA81E /* substitution_format_string.upbdefs.h */, + C2C62FDC134D55EE0909F4F199BD41A3 /* switch.h */, + CEAA5456D2C906E466F988613D321E4B /* sync.h */, + CD12C11143FF64F755770566177A3E0C /* syntax.upb.h */, + 01C312C2156B3EF34C50EBF092ABF23D /* syntax.upbdefs.h */, + A6D7BAE6B7E3E2068A1CEF30090B4940 /* sys_epoll_wrapper.h */, + 31AAB36AB80672070D4A20E260A19077 /* table.h */, + 95D94DC5EB10EB24B17D5E1B44ABA40B /* table_internal.h */, + 1904031C54D94AF4E4DC7064ECE58AFD /* tcp_client.h */, + 9117F129DEFA75ED8A5DC8BF41A3C486 /* tcp_client_posix.h */, + A3CCFBAFBBDFBEDA3B381E7478DF01B9 /* tcp_custom.h */, + AC4F977E188A75FD08909BD7BF440471 /* tcp_posix.h */, + E2ADD3D7C577F3E409CABE752BF825FC /* tcp_server.h */, + 42BF5DE423D00ED5D6A8889DC095038C /* tcp_server_utils_posix.h */, + C67ABC7E8F3F52C2022DE6B6F0B95425 /* tcp_windows.h */, + 3780C86B2D7E7B1F9D078392B213D9A7 /* text_encode.h */, + FE71C6010C11F3ABD587C08B796665BA /* thd.h */, + 34B27D61E5DA1540B8F9A17334862E18 /* thread_manager.cc */, + D64A1CBC16799D8F3CB7578B9E8E2E2C /* thread_manager.h */, + 929150B4045F2DCB2B08088C1E8FEC90 /* thread_pool_interface.h */, + 3B6789BA15DC23EDC6CE289C05236B08 /* thread_quota.h */, + CC59AAC0894304666F3DB450A030C448 /* threadpool.h */, + 20A44DC14E720FCD39B4281C2FBB611D /* time_averaged_stats.h */, + 33C6124DB53A2D3166FC1DDB38F5C0FB /* time_cc.cc */, + 1E663C5EEE51907770579F3EE9E738A6 /* time_precise.h */, + F4733682BA869D0448BC37B74CCBB0E2 /* time_util.h */, + AFA08182C445DAD5AC15C787A3BA4A5E /* timeout_encoding.h */, + 9EED8C8B5F4FE9081061882F86B10660 /* timer.h */, + AFE1A0DB8051D3C1EA049C4B54CC7AB2 /* timer_custom.h */, + 9A21638A705836FB8D1DE9E7E5807C15 /* timer_generic.h */, + 6691DE6916DD7B3E50CC466797F82D27 /* timer_heap.h */, + DB750341229EF0193FB051A0DD01945A /* timer_manager.h */, + 820BA2CE621665F48E8756C22D9EE4EC /* timers.h */, + 9E0587499A9B271011636CCAE94F855B /* timestamp.upb.h */, + E0B72185B536292DE4C06283D97838F7 /* timestamp.upbdefs.h */, + 679465A778C0BF0F03AF076A922B9D41 /* tls.h */, + 0126B52F1141B03D61C3F41D44B994C8 /* tls.upb.h */, + 58FEA1A780B83E853DAF4F70D9FC54AE /* tls.upbdefs.h */, + B6D3FDD22B08EEE932FF7B63A136BFA9 /* tls_certificate_provider.cc */, + EA9DCC88F94852D8BE7975CF84D8EFF6 /* tls_certificate_verifier.cc */, + A59111147D0FD772C57D9441FDF499CB /* tls_credentials.h */, + 28FAE91B102057E191E5B244934E1CAC /* tls_credentials_options.cc */, + 109B9E8DEF6E02099373D79A6B08F095 /* tls_security_connector.h */, + 3BA5DA75BD6CCC7F96512FDCC497C869 /* tls_utils.h */, + 1BDFBFCFC84F2930C0291A23840C86FC /* tmpfile.h */, + 66F6F322987E1625E381BDCC3AB53230 /* trace.h */, + CF203CF9C6A726C4C9B45CADD83B2F8C /* trace.h */, + 312BAC6CF8DE4AE1C603E9C22EA8C092 /* transaction.cc */, + 51B81A93BDE44C556A5FE22B2FBE96C0 /* transaction.h */, + 9979BB597EE6C4B79BAC85F623FAF21F /* transport.h */, + DC140C516E89FDFF2F95956E292D4086 /* transport_impl.h */, + 9DC2368D64D3CA2CE800E521E617E5D1 /* transport_security.h */, + D05C050174DEC044CD74071CFCED5D28 /* transport_security_common.upb.h */, + 55E780D3DEC7162B7C05CE991F97AEDF /* transport_security_common_api.h */, + 002E293BDF3750B77F88893D7AF16764 /* transport_security_grpc.h */, + 15807E1DAA45F1553ED3B84BBC14C2AC /* transport_security_interface.h */, + FED5109C8E4512A06486763331BE451C /* transport_stream_receiver.h */, + CBF019511DB1D12F6B423551AD46FA04 /* transport_stream_receiver_impl.cc */, + 57180A05BBC12B57923046D1F8F700F5 /* transport_stream_receiver_impl.h */, + DDA1CEE8CB59CDABA988F6C957893E92 /* tsi_error.h */, + FC7C4FD91647C3A6763204A088C5C224 /* typed_struct.upb.h */, + 09984D5C11EC37361F717D7AA935EB30 /* typed_struct.upbdefs.h */, + 7FEF38F474D7E723A2E0AE559B86DD7B /* udp_listener_config.upb.h */, + B10AE260DD1CD28D3AF1D2436CAF94AD /* udp_listener_config.upbdefs.h */, + D043CCB711AD8C7E6D010C7B1906A4DC /* udp_socket_config.upb.h */, + E79C56C6C365923E6C2C10CE463BE8B4 /* udp_socket_config.upbdefs.h */, + 846E4B27F82DB6D413EE2FE58A2C8412 /* unix_sockets_posix.h */, + DA58E4CCA90BF427FEB844C7C6B3E247 /* upb.h */, + DC7062B0EB4486D0F9C08C7AE84B4973 /* upb.hpp */, + B212E640A5232604D0FBBF9485AD1FFC /* upb_internal.h */, + 8C8164B1BA614D4D234CF542EDE68673 /* upb_utils.h */, + F9B172F7E02233AD6D323D4B04349142 /* uri_parser.h */, + DF06DE0B6B56AAEFDE8FF6EAECA194DF /* url_external_account_credentials.h */, + 8099F38C1FAC2720EC57C0783A005C79 /* useful.h */, + F77E316C33525C5A6483CCBA154AB987 /* validate.upb.h */, + 85489F6700C73CC4D6870F413D6C1B82 /* validate.upbdefs.h */, + 3D4D6BFF9FFAD8A0B2B952DA0D7C0645 /* validate_metadata.h */, + 82229B5ECDBB2AABD9861F13B2D9F901 /* validate_service_config.cc */, + 29A14B79E189E7C160640B4B103FC4C9 /* value.upb.h */, + 98CD9EB80BC3DB00131781570B3BC68B /* value.upb.h */, + F93FB085A4BEF25B32E9DF109FFBA472 /* value.upbdefs.h */, + 7F061713E7492965AA12B740C44C736D /* value.upbdefs.h */, + 51DAB97EB9A8A3D3B41D1BCE503086AA /* varint.h */, + 04FF8C1CD67447ECD74BA2B277663D77 /* version_cc.cc */, + 09E22F5BBA2821892FAE4BA5F29673E5 /* versioning.upb.h */, + F577EB6166E335961FE1C2B06914CDA5 /* versioning.upbdefs.h */, + 1718F57490A3DF6DA7EA83B04D801B1D /* wakeup_fd_pipe.h */, + 8A541BA5FA6A3CE99602CEF52D1A94FD /* wakeup_fd_posix.h */, + 9AD56F360B8048474973F95E6595E647 /* wire_reader.h */, + CBD7C3AFCB3DAC521687BE2D2FDC6536 /* wire_reader_impl.cc */, + 1B70087CC033B6B7F50AD0D8C3BAEDD4 /* wire_reader_impl.h */, + ECA148A240B38E8ACD8B1A9E9618F3CD /* wire_writer.cc */, + 8EDB2624825A4D169C48AB7C9FAFE0F8 /* wire_writer.h */, + AAE501746679E6AE6FAF6E11EF8621AD /* work_serializer.h */, + A814A92CDA18032C88AA1D37CEDCFD97 /* wrappers.upb.h */, + 740DACDD3F5B8CD5EE986D22C6DB29F8 /* wrappers.upbdefs.h */, + DB284E7C4E4EAAB08AAE74F89B00DB5E /* xds.h */, + 6A4E9605CCB29C2A2FD2F166AF822B8E /* xds_api.h */, + 6CAEA2B223635550821BBD7A0A4BC5F8 /* xds_bootstrap.h */, + 24C4A45B486A03422B6A2B27F2ADF62A /* xds_certificate_provider.h */, + 8EAEAACF765AD1901713D2AFFAB9E2A5 /* xds_channel_args.h */, + CC74B22DF2F89580C724D5F2D81BE721 /* xds_channel_args.h */, + FE2CE0C1EF6DAE2575B2E99FDF544AFE /* xds_channel_creds.h */, + E7399D7828226A4A12D3CFEE4FE72855 /* xds_channel_stack_modifier.h */, + 955869E9911576E0FF221E5A4E819851 /* xds_client.h */, + F02F9A6236BF5305E266163E293CA687 /* xds_client_stats.h */, + 62CCDBA8A951452096D19CA6C7098998 /* xds_cluster.h */, + 349BA6408FE27319939D143F449200E7 /* xds_common_types.h */, + 664C0C917A80EDEC57D9D55FBE00FB10 /* xds_credentials.cc */, + F2DC1B0A9E93749AEDD26BB9BE70E97B /* xds_credentials.h */, + 9C5FB6FFB7FF6BDDE102E2FFBFFBCF9E /* xds_endpoint.h */, + 5CB01F073A2C48F74641E4DCF704031E /* xds_http_fault_filter.h */, + 92387A676D8ED841D760841B167C8E06 /* xds_http_filters.h */, + FD7D211322B5D3D691BD340D297086FB /* xds_http_rbac_filter.h */, + 31762A74C2BA97BCAC41C45C3EAC24D3 /* xds_listener.h */, + EB7531907CF6D24F9726C2E2127BFE13 /* xds_resolver.h */, + 281A84F8DB9CB877F887499F64ED43BC /* xds_resource_type.h */, + FEE7E4634142660836B0F1984913687C /* xds_resource_type_impl.h */, + 34D28D3A405D888584AFA9814535F9F6 /* xds_route_config.h */, + 779F0DD508566888E01FE684961D919D /* xds_routing.h */, + 45ECD0A69C3890D9259F77DB8B9B7CE4 /* xds_server_credentials.cc */, + C31ABE5A506EAAFC6D614E6722359819 /* xxhash.h */, ); - name = layout; + name = Implementation; sourceTree = ""; }; - A34206E284FEE6C5345D3EB3F9934561 /* Implementation */ = { + B76EBB27A5596DD680240ACD06E9045C /* GoogleUtilities */ = { isa = PBXGroup; children = ( - 4462AE185F80EE00EE01D49339A5BEC9 /* accesslog.upb.c */, - 96723ED02F57A6A85C05000131EB5BBC /* accesslog.upb.h */, - 7B1BACB56D2CD9F872B1C6755A7E0496 /* accesslog.upbdefs.c */, - 7A1598AA01C5003E6C88928A771D6724 /* accesslog.upbdefs.h */, - CFA9D0C4C390F2E6682AC1BF86962118 /* activity.cc */, - 38CCC93525E024F10865F0FA8C041B7B /* activity.h */, - 34632AF358CE4E6CEBFF021A951862A8 /* address.upb.c */, - E81199DFCC42FBE07DE7CE783259513E /* address.upb.h */, - F770904C7D178770A2BA31A6AF947AA2 /* address.upbdefs.c */, - E168C2D1F463B1E816DACA078EDE1AF4 /* address.upbdefs.h */, - CF46505CD318965F101C06DE376A38C7 /* address_filtering.cc */, - 06FF34CB5D2A71F22620F073FC69B8F0 /* address_filtering.h */, - E3B766557559F5FD34F3189EDD5DDEF0 /* ads.upb.c */, - DFAD14B32EA7BF53E160C42E43D50DE2 /* ads.upb.h */, - 4F54CD61985D2CF088FC6A50AA6D9CB9 /* ads.upbdefs.c */, - B8BAAD8DC1B8F6E696C82AB47F3634A2 /* ads.upbdefs.h */, - 1BC93782BDCC796123A9A98BCDEB70D5 /* aes_gcm.cc */, - F77EEB1F31D4AE20B3422EAE116B8F27 /* alloc.cc */, - 8E3E41FFE5E35BF2A37E4E9BEF010F8F /* alloc.h */, - FA6C384225F43B1F3957E13A76557E3D /* alpn.cc */, - 8EF14B3D35E555BD070ABD8E3F6AC264 /* alpn.h */, - D1AA625C021C4761EAC2FD5B2FA5366F /* alts_counter.cc */, - BE3078062B091F0752096479B2C7E1ED /* alts_counter.h */, - EF9E51701BA237D68C21BB5A16E65A85 /* alts_credentials.cc */, - 50F383CE603CBCB82B2296FF8F0C9C88 /* alts_credentials.h */, - 481784854F1A018C2CB4C1DC76669268 /* alts_crypter.cc */, - 2E4F6A1682FB6A646EAD4A871E104DF0 /* alts_crypter.h */, - 953581EFDC6C8F5FF62438557AF04192 /* alts_frame_protector.cc */, - 86E4A691EE109ED2C12573E958F94A57 /* alts_frame_protector.h */, - 0CC2DB07FA7217E9ABC8066A6BCC9DE7 /* alts_grpc_integrity_only_record_protocol.cc */, - 165DD603E57F15999F1C1F665D769035 /* alts_grpc_integrity_only_record_protocol.h */, - C408EC37BAA293E7155C7D1648D2FD10 /* alts_grpc_privacy_integrity_record_protocol.cc */, - 3C1475707A7E54804EEDDC26C78F1881 /* alts_grpc_privacy_integrity_record_protocol.h */, - 31E8BB4CBB6CC716DFCDE95657E0D4A7 /* alts_grpc_record_protocol.h */, - 864EA35C8E28017343BC673750F71958 /* alts_grpc_record_protocol_common.cc */, - BD1CC498F0F3AD4EB47FD2C2A09BEB57 /* alts_grpc_record_protocol_common.h */, - B1CF1B07EA145273F6E0E38F0F8A8525 /* alts_handshaker_client.cc */, - CAB992E9093B80F86021A07E2067C487 /* alts_handshaker_client.h */, - D86D20653032359E9748E2D481FF13A6 /* alts_iovec_record_protocol.cc */, - 5A8CCD4CF85DA2D2CF5927AB48A8D078 /* alts_iovec_record_protocol.h */, - 3ACADB5AE041394DC7A79FB2DBAF6173 /* alts_record_protocol_crypter_common.cc */, - 594423FC6BB5CE4613E472B5C0E865A8 /* alts_record_protocol_crypter_common.h */, - C9DACB60866DE5EC67581EE57AAA2414 /* alts_seal_privacy_integrity_crypter.cc */, - 82FC36A5821DFC147387DC7BD77868CE /* alts_security_connector.cc */, - EA8FB6449FDFDFF8C9E2213EBB0AD778 /* alts_security_connector.h */, - C1707012F867F69FFC65F10497BFCEC4 /* alts_shared_resource.cc */, - 4F43D0D8F09FCC95BD0EF4D386F8E8F9 /* alts_shared_resource.h */, - E27BA693190BF853791F6233AB26A3BC /* alts_tsi_handshaker.cc */, - A319E2848167F302D33704B54E9C1BB9 /* alts_tsi_handshaker.h */, - 61F5FB0A7D8F47A97305C64CC2404AB3 /* alts_tsi_handshaker_private.h */, - E668578DAFC72287B12587A5773FB725 /* alts_tsi_utils.cc */, - 28A678D600E6B93AA271B7F611DC318B /* alts_tsi_utils.h */, - 9AE172C90D185A9FBDBAAF64606089AA /* alts_unseal_privacy_integrity_crypter.cc */, - EBD806A3ABA3D64B269E18BE83711909 /* alts_zero_copy_grpc_protector.cc */, - 251BE7664DFB6CFCDED2BEDC9448B275 /* alts_zero_copy_grpc_protector.h */, - 63C023C1EF54E20A4BAF35581645B0FD /* altscontext.upb.c */, - 1360D9522A38AFAB3B1B9BC5E8F4E907 /* altscontext.upb.h */, - B5AB5B621FBEA0ED53A252369C31F521 /* annotations.upb.c */, - D4D3D25A4EEC86ADFE439BAE0D32F9F1 /* annotations.upb.h */, - 0DCB722C5580C3374611E817F413456F /* annotations.upbdefs.c */, - 4C899FE818FE07B81B0033853E8C5360 /* annotations.upbdefs.h */, - 08784A562EE7D4FC1393492470FA3740 /* any.upb.c */, - F0C30F1566D0583AB7AE5249E64EB59D /* any.upb.h */, - 64060B2D9AFB12B064F19D77A7627D14 /* any.upbdefs.c */, - 23FE49622F05665B444EB1EF40E26AB9 /* any.upbdefs.h */, - C754FD76ABD2B110D8118F685362AA51 /* api.cc */, - AAAAC8BDC3C4A01BA8BB78D86F0E41DE /* api.h */, - 99A86B621B15BFF8685D7AB3AB6F541D /* api_listener.upb.c */, - 89BFE9384FC50E4B4557762346397B7C /* api_listener.upb.h */, - 2FD71EC52CB8E6B1C76E04C40B49DECA /* api_listener.upbdefs.c */, - BDCD01606BE101721D72F2AB17CB1F2D /* api_listener.upbdefs.h */, - FA3E56DE2F04D016CA72ACF03FCB2F5F /* api_trace.cc */, - D62734CBF3A3CF169A326C3AA4874874 /* api_trace.h */, - 409F28C9A0116E758506B28846AF151C /* arena.cc */, - E3D79E31FC5357C1A031B15D2AF7998F /* arena.h */, - 0FE2327D3ABB7E533C6F89E6F421DC8D /* atm.cc */, - DCF332F2DDD31827838523295C7C02A6 /* atomic_utils.h */, - 237003C6E93AE690EEAB407C47E3479D /* auth_filters.h */, - 3E5110634BE96839141BF5E440B99114 /* authority.upb.c */, - E807A42D134D52C54CC6F2A3641297A8 /* authority.upb.h */, - 021E812C1CB6B8EED60F900BC62BFBE4 /* authority.upbdefs.c */, - D5AF258E4577E6ECFDC07B7D70237A35 /* authority.upbdefs.h */, - 1B07DEBFBDA24D1D3F2412DF0F81656B /* authorization_engine.h */, - BFA3FB9DBFA3D42EA939C6DDDB126768 /* authorization_policy_provider.h */, - 761E7749E8DAAF445F45115FF371FEC5 /* authorization_policy_provider_vtable.cc */, - 4051854AD41ABC7EB6239401ABA9230A /* avl.h */, - D65CAD5624BD2F29D6B46EFE7F095817 /* aws_external_account_credentials.cc */, - 7BC6F61972B12C5AFE35B95B4E2FEF46 /* aws_external_account_credentials.h */, - AF5B9C98F68CE8090916EBEEEAA1499A /* aws_request_signer.cc */, - BEB1461DAD8F5C423349C319FCDCB58F /* aws_request_signer.h */, - 7D7ABAEBB49E4E3F643B8E5E52765383 /* b64.cc */, - E264E033AD2FFC131B3D21D214DE1329 /* b64.h */, - EFE7EE4B2EF0BB0A05FA4334345FA0CA /* backend_metric.cc */, - AC15C14ACB2B3450BD84A52512E34452 /* backend_metric.h */, - DC7A402F407A94D0DB2197EC732C8805 /* backoff.cc */, - 0EF741DBBAF3D551A3DDC41183993E16 /* backoff.h */, - A9AEFBCC5FE630F7B74682D889D19331 /* backoff.upb.c */, - 33B7EEF5256573EE04339179405CAD3C /* backoff.upb.h */, - B9A15C3F0F169748196B13B3AC2D0AAE /* backoff.upbdefs.c */, - 39DD3E5B16720861D303CAF81013C359 /* backoff.upbdefs.h */, - A0C69BFBFCA5CD5C18A86F75037AF1DF /* backup_poller.cc */, - A305B8EC7BE1B6DFB330B3DA7B058344 /* backup_poller.h */, - D18FD77FC0C53EBA15ABA83EDB7480C0 /* base.upb.c */, - 932C4CE365D2907D95A111EA2F0CB107 /* base.upb.h */, - B07AAB01B8090BD561A3C0213041F205 /* base.upbdefs.c */, - ADB178BF359DB0F4B6B9B290983B7E82 /* base.upbdefs.h */, - B40847EB83546152901CB2DEEC4DCA4E /* basic_seq.h */, - 9592C8F1871303A56760B4709A60B134 /* basic_timers.cc */, - D8DE4E2C9C14967A29E55F97DC61342D /* bdp_estimator.cc */, - 0AAEA5BD6F309E1297C47444FDF40F85 /* bdp_estimator.h */, - 068F4F2AD949B3784C2592596099624D /* benchmark.h */, - FBF329FC08B1C7ED5CA09A4920080461 /* bin_decoder.cc */, - 910995BA774B1A6E8989A8FAEB7D4CEB /* bin_decoder.h */, - 8A3C04A89FA9AF99E398FDE3D7CF9AD0 /* bin_encoder.cc */, - 80B005971F5C75C1E0DDBCB4C334266F /* bin_encoder.h */, - 3BCEBE2AF0BE7EA1D917527508500E80 /* binder_resolver.cc */, - B3FCF85413C8149E93213E18CEE7EED6 /* bitmap256.h */, - CCD8D9D7DC02DD36502C40878046E492 /* bitset.h */, - 685081A1902DCC533A453331A17B3466 /* bitstate.cc */, - 2ECE464BF00D647D8E8BF568F0CFEBCB /* block_annotate.h */, - 9972D2B84D50B5AC97D2A5CDB225F53A /* bootstrap.upb.c */, - ADB48F0EF1186F007742AE75AE55357F /* bootstrap.upb.h */, - 3C1A6A4E290291A81FBA6C32461036A6 /* bootstrap.upbdefs.c */, - A732803E8CF1E8DAA46F6404CC27507E /* bootstrap.upbdefs.h */, - C15EE8F33D1ACD481736782683F98BC3 /* buffer_list.cc */, - 400B92186A836269136B82034DD5B23B /* buffer_list.h */, - 475BED9E80993D7BB3C1F31E3FF57207 /* builtins.cc */, - B8CEC288DB255133814B49990155B678 /* builtins.h */, - EA8A5FB349D280095EDE58AB34326E4F /* byte_buffer.cc */, - E2CE7272D09CDC1E4A2D66205C7E290D /* byte_buffer_reader.cc */, - ACA807973220EAE1B3BB88488899D30A /* byte_stream.cc */, - BEE7451B0DF47427A671DA88BB59CC83 /* byte_stream.h */, - 75E01D751EB5E14DE51A53730AEB88EC /* call.cc */, - 802D64B40B4B0444252CC7C35097323B /* call.h */, - 40D7BDFCAEBC2D27A1490492E9B46142 /* call_combiner.cc */, - C7269CBBBB056E18A8989C8BA49561DC /* call_combiner.h */, - 2EAB187A812125CAB25053C6485756D8 /* call_details.cc */, - 98442E5BC3671841C2AB4BA613701840 /* call_log_batch.cc */, - 1758E1C18988D684BE111C96BDA7C639 /* call_test_only.h */, - F51C9F9C01AF60DEF26C5303CF8C3E26 /* call_tracer.h */, - 14FB791CFD1D50E67A6DEBBA1157911D /* cds.cc */, - EA6C84B01B4B3F4253B9620219390EFA /* cds.upb.c */, - D1D1E1A02A5F5C0A4633B469BA7A792F /* cds.upb.h */, - 164E08AB20A64EFAA7F2A8B2D5DEE2B6 /* cds.upbdefs.c */, - A043C3A05AF6ED8594DD9916B685B94D /* cds.upbdefs.h */, - 8F01A7FAC7EB6BCF690CF54EF48A7DA7 /* cert.upb.c */, - 4359F7F3150EE9F87188C87CFE87FBCA /* cert.upb.h */, - 773E3F9A2FEDB8A6657BEDFB3204550E /* cert.upbdefs.c */, - C95978BDFFF773913E34C5ED2DB9488F /* cert.upbdefs.h */, - 447FDB694B22D633833151F2E5B3317A /* certificate_provider_factory.h */, - E0DE70107CB844BDFB9383271BF9831B /* certificate_provider_registry.cc */, - D85C569EC3C4CDADDF6D05C449DD50B2 /* certificate_provider_registry.h */, - E270BEE109637DD62BABF331C4C23A69 /* certificate_provider_store.cc */, - 82FCA0F0AC99D2ED11719EB48DB90138 /* certificate_provider_store.h */, - 67454EC80B766A49853CF4628723875E /* cfstream_handle.cc */, - 2AC6F4188AEDBDD96CBF8092C5A0ABB3 /* cfstream_handle.h */, - 8793B3EB2A5FF8636FE624671A5600C6 /* channel.cc */, - 2A4DB39031B2F9441E734C5161E5FA96 /* channel.h */, - D13697CC896FF38298F4E35327AA46A4 /* channel_args.cc */, - 07002E4BA9911E20048212DE5F9AFA94 /* channel_args.h */, - 3BFD8FDEFD9D04376216A771C75FD9C7 /* channel_args_endpoint_config.cc */, - AC6008769FBFD150D014895EDDB149D7 /* channel_args_endpoint_config.h */, - 160FF1B64A68C3D8B86C39F366D491E0 /* channel_args_preconditioning.cc */, - BB85668B872EAE26D4C8F2C12E3645FB /* channel_args_preconditioning.h */, - 873687AEFA557524CD837B9CAB380039 /* channel_connectivity.cc */, - 390FB7D3156824871D761D76C5B0CF24 /* channel_create.cc */, - 8A15AED959B11C9E86D8F20E08D6B883 /* channel_create_posix.cc */, - 804D22677E760A249DDE43EF70328314 /* channel_init.cc */, - 9DB47FE0D474930DF72A68D3B6F6E9EB /* channel_init.h */, - 344E025219EFF315DC636FCB840F7266 /* channel_ping.cc */, - FFBE4E46246B71CB25C5165AC1595419 /* channel_stack.cc */, - 76080F0588F5B9893CAFD758CD88D968 /* channel_stack.h */, - A9DC59AACBC5A355A732AF1B0ADB4FF5 /* channel_stack_builder.cc */, - 7D8CF18C9D9D17FD06BFF9E3C01EBC9B /* channel_stack_builder.h */, - 0DC4E75E5DDF106E57A9722F56804C51 /* channel_stack_type.cc */, - 620416995AE0343ECE6E6346F774F1FE /* channel_stack_type.h */, - FD56926ACD15BAA46120D5F9A461E2C9 /* channel_trace.cc */, - C6C9742D5F12BF35FFE06B12EF359D6A /* channel_trace.h */, - C9853E639C92F35434C27D19B4960659 /* channelz.cc */, - 786F175B02526C091DF5E32111D951FA /* channelz.h */, - 1E3D851D11D6B61DD65016960CECCCD0 /* channelz_registry.cc */, - 1BB0A3E584BEF0F85A6C342E357C3BD2 /* channelz_registry.h */, - 7362292FFBC4989459F130E05D20F022 /* check_gcp_environment.cc */, - 8632A07B4FA18EC716EFF44F1531135E /* check_gcp_environment.h */, - 911460E9E1D764F7B156E18A94819507 /* check_gcp_environment_linux.cc */, - 6218BEC49AB8CF32D9AF9EF618C404B5 /* check_gcp_environment_no_op.cc */, - 8B20EB3E0A60999DCDAAF55B3E053B74 /* check_gcp_environment_windows.cc */, - 65440612011E1BD83B6365E703F597DB /* checked.upb.c */, - 95E810A34AFED77E56C2233E4B2FDDFE /* checked.upb.h */, - 7846833EB999FD2711E68ADA15782793 /* checked.upbdefs.c */, - 1BDAA77E4D4E97DF2602DA099F5A30B8 /* checked.upbdefs.h */, - 01EDFCF5D02DCACA3EA8AFE078A56372 /* child_policy_handler.cc */, - D2D3E59A8DD760ADE17730F3FA6553BB /* child_policy_handler.h */, - 83331FBE99339EE695C88DA833274ECD /* chttp2_connector.cc */, - 7EAE5FB266127D499A978EB17A9D62DA /* chttp2_connector.h */, - DCC9D2A05792D26EB7C2CD9B3C482660 /* chttp2_plugin.cc */, - 51714DDCB074E204B6F3BE9E3EB66986 /* chttp2_server.cc */, - D93F471F1CB78A80D807F8494A18278C /* chttp2_server.h */, - 0F8B9887C1AD07620725764CEC688E60 /* chttp2_transport.cc */, - FBD13DC0CA3448437E698AEF12BCEC82 /* chttp2_transport.h */, - 75ED761F119C0CF1FE31AEF10B707E9F /* chunked_vector.h */, - EFA7D76D3BB268FC03E410CB6541E819 /* circuit_breaker.upb.c */, - C0FD7E8CDCE2D3AC3E45F2022FB15C89 /* circuit_breaker.upb.h */, - 7FF061B73082F8F2022C4100C6C7E6E2 /* circuit_breaker.upbdefs.c */, - 76D316A7E42F6ACCE9F12FD0B422FB29 /* circuit_breaker.upbdefs.h */, - EA5D1E61EF8C0592D12C1A2B4A893AF9 /* client_auth_filter.cc */, - 08C9E81DF8129B2441B49C3B9F58FDB5 /* client_authority_filter.cc */, - EC44168BAA289E239377CE1F0728929F /* client_authority_filter.h */, - 86365DA0FA0891FF1DB367911C01D1CC /* client_channel.cc */, - 97DA45B8BA1834AD8D49573C31C09F6F /* client_channel.h */, - 2D0534E332838F7F012B7DA614821326 /* client_channel_channelz.cc */, - A71E7264BCC67FB63EDBC52A55CA956D /* client_channel_channelz.h */, - A6042C751468C19CD9E6F28714C6C383 /* client_channel_factory.cc */, - 45DADBB766F537F6CFE3D29BEC01A64C /* client_channel_factory.h */, - 9988F94F0496F3AD8CB87A58EF807E8D /* client_channel_plugin.cc */, - 2E7C3B971E061CAA4118317470F26C80 /* client_idle_filter.cc */, - 9EA31E7DD758C02D9539090885F535D0 /* client_load_reporting_filter.cc */, - 03A7283B85028846B7E4135773D656AE /* client_load_reporting_filter.h */, - 43733C341BEB1BFC9FFD78C36E397DCC /* closure.cc */, - 7CC3B7274B204C5BEF266656A274CBAD /* closure.h */, - 33F6EC1DF8D438D5408BDD437ABB19C2 /* closure.h */, - D54CC4A988C6BF58A89322CADB3D7F53 /* cluster.upb.c */, - 3ACF56318EEBE01E1CC84185811B87B7 /* cluster.upb.c */, - 3261546B3FF64262DFE3888B391CD023 /* cluster.upb.h */, - 0722CA38178D3469D4A31A4E2D184724 /* cluster.upb.h */, - 4AC3582CABDE28ACD6CF8B538100805F /* cluster.upbdefs.c */, - BC0B1494CB044A37D202181203443587 /* cluster.upbdefs.c */, - D31088DAB37DE2293502AB4C2C235526 /* cluster.upbdefs.h */, - B060AFD6C415714E4C53B721E30D201A /* cluster.upbdefs.h */, - B02499D441682B0266E4EBCE4CC8D1F1 /* collection_entry.upb.c */, - BE2DF5EBEED0D89EDDEADAC0D721A079 /* collection_entry.upb.h */, - A8F15779E33AAE7CD9984F36B19EFD85 /* collection_entry.upbdefs.c */, - C31D0750EBFDE96E619288FCAE5CB988 /* collection_entry.upbdefs.h */, - 129BAE49CC1DFD58DA05B51BD7686FCB /* combiner.cc */, - 5D31156CA5F808041CACA74DBC166803 /* combiner.h */, - D620BCDF1AEB62F6BAC0833653E67E8C /* common.upb.c */, - 13B7D7297C71BB30F9F2F238C429AB7F /* common.upb.h */, - 446BE777A8F458662FB9871F3C5CF874 /* common.upbdefs.c */, - B9B61A0A883C527CC5C0C6C971E7AC3C /* common.upbdefs.h */, - BF2BDCB3DCE8AA66A08BE3492F9E85B8 /* compile.cc */, - 410EE88F2B8901B01E6768AAA8C5A931 /* completion_queue.cc */, - EF8585BAC73F56B2FF65C8BB3C7A5C5E /* completion_queue.h */, - 3EE49BD522D8869C70EF8353A9E3DDAF /* completion_queue_factory.cc */, - 2FB5B22D1EE806E8722D9A8220E2E181 /* completion_queue_factory.h */, - 3A58FF6E7DC626C03C28441DD98EFA40 /* composite_credentials.cc */, - 5D83DC3A83153B97A813CDFCBE6D1C45 /* composite_credentials.h */, - 99CA1A6009A9DCE15FA186C735E652D9 /* compression.cc */, - 0E23C7BB6473142E7DEC19539D93EE45 /* compression_internal.cc */, - B5BA4FE9B899AE7D9B702720917B5102 /* compression_internal.h */, - 30C3B201B17396A9C773F2DF111BC999 /* config_dump.upb.c */, - CFCBF557B450C28C62115DA5A09D5BA5 /* config_dump.upb.h */, - F0E9C076EE4562F169398AB1E094ECAC /* config_dump.upbdefs.c */, - C9D8AE15FFFB887131033ADAA1AD8CD9 /* config_dump.upbdefs.h */, - BBB309C9AF6FDD552127343789B6BE13 /* config_selector.cc */, - E7F562839B8733B44E6DE53F84BB97F3 /* config_selector.h */, - 40AFCF9EB59D9CDAD4CC7EBBCBDEC219 /* config_source.upb.c */, - DE68FFC8358FA04D5889EF2C3E394D68 /* config_source.upb.h */, - 26937D15CDA7807683604E02EF6A1847 /* config_source.upbdefs.c */, - 4F6D54E934FA1E9E2820BF7A14052CD6 /* config_source.upbdefs.h */, - E0ECD12E084BC15CD3104BFA48CC9DE0 /* connected_channel.cc */, - A42A68A37270D926C25343AE4E625A95 /* connected_channel.h */, - 09400F7221E967EAE32529B40064FBBB /* connectivity_state.cc */, - B9562B6E77B62B0AB48D5E6B4E698AAA /* connectivity_state.h */, - 1B07088A0727FFC2066081EE02A8EC01 /* connector.h */, - 35F9879CE34CA6270EFDABCFFDC56A87 /* construct_destruct.h */, - E62307E7B559EDCC9BAA7D7D24E57C72 /* context.h */, - C5E124B89D667ED1449BE4C47509B52A /* context.h */, - E7B18BEBE462292C1D1AED6B07156D28 /* context_list.cc */, - 4873DE47782D39C26B46D0A1D2C29BE0 /* context_list.h */, - B9CCB0C2169275C37E096261EFBF36C7 /* context_params.upb.c */, - 32398E89BC47DF807E68FE2F84AEA156 /* context_params.upb.h */, - 865D385616D742CD2147A5718A155362 /* context_params.upbdefs.c */, - DD7BACA8BD1F55CB592E9D37E4AC694E /* context_params.upbdefs.h */, - A1B6C5F8DBAC200371CF3B2610CA4650 /* core_configuration.cc */, - D37875305F6A495BA1F49510058F5E64 /* core_configuration.h */, - 52F297625EFD545077312FD10FF822EF /* cpp_impl_of.h */, - 639B40463B96C85EBD02A4F619BBAC16 /* cpu_iphone.cc */, - 9AF1C503AD3D4A904AA918CF09D40A9F /* cpu_linux.cc */, - 6FC28FC157D231D4A6F0070E3F51DBD9 /* cpu_posix.cc */, - 70DDE73A07F0F639D868A2C7010A32F1 /* cpu_windows.cc */, - 64D26241A3BD73C0AE191FD0FC1B2B6A /* credentials.cc */, - B42C1109B2541422EAFA3594E8E83C60 /* credentials.h */, - 3853CE95ABEC5DB440397F8DAED51930 /* credentials_generic.cc */, - E760D29944F24E42412686AC46A044C9 /* csds.upb.c */, - 54A803D5151E2BAE1312FCFA725C61FD /* csds.upb.h */, - C24D078D0AA495C15B5466E120AAFB0E /* csds.upbdefs.c */, - D7D415C7C36A9A8D7F3F9675703F552E /* csds.upbdefs.h */, - CC2AF9358F90E27C92C5EE8088F89502 /* custom_tag.upb.c */, - 7F0490F09EFFEB632ED4629FE5DFB41C /* custom_tag.upb.h */, - F76E4AFB78F50DDE9A7713280841D684 /* custom_tag.upbdefs.c */, - B9EB8511E9EB7D9FAEFC0E02897333B1 /* custom_tag.upbdefs.h */, - 465262F247160F3B86CC14880CCA471A /* deadline_filter.cc */, - 105F6F2140CC8863CCF1D3A3E2F88F44 /* deadline_filter.h */, - 62097D92B72E809967C8D0989A77FCDC /* debug_location.h */, - 36EA0F59F5ED9E0B2462C4D22414A774 /* decode.c */, - 3E1C7031109AF63AFA8568C092D4108D /* decode.h */, - 01A73D0F5DB33ABBF6E4AC874879FC13 /* decode_fast.c */, - 346711871383A162527FCAD76FE81CC7 /* decode_fast.h */, - B41124671B074406DE87DC81428576DF /* decode_internal.h */, - 1C25D6A2BE37006EE65C81CC8D71A26A /* def.c */, - FF23BFB1C6FB85C06C093E0EBAFC9624 /* def.h */, - 55BEB17780C7EC816508770FC262F1DF /* def.hpp */, - 7C619C5FDC8C2239E0C41D44C8CC2C8E /* deprecation.upb.c */, - 1C37AB794E353DD50C86E9F36B53870B /* deprecation.upb.h */, - ACFC339F608B0702502060B8FFBC8B72 /* deprecation.upbdefs.c */, - B52102069F00E34703FE84F3AE7022BF /* deprecation.upbdefs.h */, - A7C0AC51D89C96C1B03EB8A29E743630 /* descriptor.upb.c */, - 1B73A52E907D3A6B150B21444BBDF190 /* descriptor.upb.h */, - B55D6A085CDC8D4E64B07CF2C6F48223 /* descriptor.upbdefs.c */, - 83F725D38876C56067106AFBAFA14666 /* descriptor.upbdefs.h */, - 39EBD7290309927D11A478C725CFCC20 /* dfa.cc */, - 72A655216ABE7DC9CBB40C33A77F095C /* discovery.upb.c */, - 6AA7470987765837DAB872FDDA2A62BA /* discovery.upb.h */, - 1E99D68AFE1BC93F0C2874C72C6E4A27 /* discovery.upbdefs.c */, - 38C3FE5C7A68F5C25C983342F8F06A78 /* discovery.upbdefs.h */, - 117D757718A4B70AB2CC66799941DE34 /* dns_resolver.cc */, - 5F497E5FFDFF8821B3417D2ADA45C726 /* dns_resolver_ares.cc */, - 999BC742BE34501113ADB53F17174735 /* dns_resolver_selection.cc */, - F9D802CEE2442557DBEBBB89B9D745CB /* dns_resolver_selection.h */, - 76DD4EA6CACBF3D5EE51596430225743 /* dual_ref_counted.h */, - B7AE0C1E4144A0E9DBD24D4668DEFCCA /* dualstack_socket_posix.cc */, - 120F321E499139142877333EE282EFA8 /* duration.upb.c */, - 7DF7AE67E3BE5A28A3D46D9E468EE3E5 /* duration.upb.h */, - 8A5F7B06CDBF7E9AF90CF256D49D8043 /* duration.upbdefs.c */, - 545266DC416A734DB0D2DA7D63AB8BA3 /* duration.upbdefs.h */, - E48D36F8EF0BD5B1226A31B16C558557 /* dynamic_annotations.h */, - 801B4E8061868343881352B94F4097CE /* dynamic_filters.cc */, - 8D24F2197A3CAB3D035C336389193070 /* dynamic_filters.h */, - EEB052A50906220DD857C7AAFA1FBE4A /* eds.upb.c */, - AA36937CC3A8A62A4DEC31C2A8DBD1BA /* eds.upb.h */, - 0B201214C661C3A8FD1F30C55195002E /* eds.upbdefs.c */, - F08A0465E472D1FDBAC50E174D8EEE82 /* eds.upbdefs.h */, - 9DA0548A6EB21AC934BE34C725B61F00 /* empty.upb.c */, - B2EBC1C80C77FD4FC1787C9FA16F2F25 /* empty.upb.h */, - EEA4FDB6F17DAE059FF724EC9F5F896F /* empty.upbdefs.c */, - 18BE2E6F39B4A8181A5196C60C54BE48 /* empty.upbdefs.h */, - BD49302C45F7A5BB6E788EF11B82B834 /* encode.c */, - E2FC9010A499AC6F06F9233BA1D72B18 /* encode.h */, - 4BF3AD27D17E8D39FEBAA125959DB952 /* endpoint.cc */, - 6110000C637C734612869D8720E11740 /* endpoint.cc */, - 5076FA3CE1D5975DC29A378E65C75CBC /* endpoint.h */, - 4458F0D1F10EE69E8665971EC6085E38 /* endpoint.h */, - 0D7A711902FAFD58B0D51DE512C7F0D9 /* endpoint.upb.c */, - 7EF8B743BA5FA6FCD61DCF9EBCA2178D /* endpoint.upb.h */, - 3E34FF44D3B8831D1BC8865E33160244 /* endpoint.upbdefs.c */, - C997D04DC51A54D4B2318DB1F5AEA7D9 /* endpoint.upbdefs.h */, - DF733EF4B1566BCA7A9112EEE57C2775 /* endpoint_cfstream.cc */, - 85B5B5E212867EF230C87ECF050446B8 /* endpoint_cfstream.h */, - 197F775A96CBA9FF12D0845FF18C85FB /* endpoint_components.upb.c */, - 07CB71535C746BAF1620AA034BBDE774 /* endpoint_components.upb.h */, - 5A988B88B8C81B7439F14B3A81FB90F5 /* endpoint_components.upbdefs.c */, - F91D2A7725CFAD9D1DA90A801FADB7B7 /* endpoint_components.upbdefs.h */, - 89EF1F94D9B6A76129355ED7CC85C80C /* endpoint_pair.h */, - 153C2CA41EDAE13B8C59C9858FAAACA2 /* endpoint_pair_event_engine.cc */, - AE63FAE1A38BD9B16B58DB8F0D76AF70 /* endpoint_pair_posix.cc */, - 43E9E567C990AA1967FF1BDE5F12269A /* endpoint_pair_windows.cc */, - 817AB778B3E5601BB11379797A86C8AE /* env.h */, - 6270D4F2F333A591768623A17DFE9559 /* env_linux.cc */, - 9C14CE566BD41CAD85EEE1A4C32A4739 /* env_posix.cc */, - 78B9A6E0D9415CEA91BBE749CA784FBF /* env_windows.cc */, - FFC4ADCB64730E3C3E758C157EEC9A00 /* error.cc */, - 36E890972A8A84EF7401755010A2EEE5 /* error.h */, - B4F95FF3A843AA8C313482EFBFEBEF81 /* error_cfstream.cc */, - CAA40620D11149B143346DF983137CD2 /* error_cfstream.h */, - 53CF68FC9387B7C4FCC322FAFB715A17 /* error_internal.h */, - 6D25181B45562534755E321362639C2C /* error_utils.cc */, - 2F1E94508EB4E03B4A7860CCBC54B098 /* error_utils.h */, - B73AC2B79FB582F3A46C91119F13B650 /* ev_apple.cc */, - 72E7ED9B89F137804E723E6D8C7FDBDD /* ev_apple.h */, - 21685A6AAD2642B772F84140E578B0A8 /* ev_epoll1_linux.cc */, - 4FFA452DD4DD483849260352468A085B /* ev_epoll1_linux.h */, - 20F372708514C259F15778DEF50A5681 /* ev_epollex_linux.cc */, - E2EBBE7064951DC0E72B9D6A5B1FEFD6 /* ev_epollex_linux.h */, - 4E8937448E2B68BD01C5C0C401607418 /* ev_poll_posix.cc */, - B88F781463BF5BE39A8E9E8A7DAFEF9D /* ev_poll_posix.h */, - 2F68E55D20F0EB8F288CBDF8CB4BA9AE /* ev_posix.cc */, - 85CDB0869C1EF72668489A231E5AD02A /* ev_posix.h */, - 4F3BADBB781CD5803D97720792F617B5 /* ev_windows.cc */, - A9CB1DF3A5F94E00496DDF8FE6BF58C7 /* eval.upb.c */, - 829605E36EDA6B0E8845C26075B1EC53 /* eval.upb.h */, - E71E7A3D5C56D23CF026879467561E29 /* eval.upbdefs.c */, - D2D2165AD6802C93FB32098129B45A30 /* eval.upbdefs.h */, - E421476D80888AFE7A0647615D36D8DB /* evaluate_args.cc */, - 4932837CAF53E06EF71B43412AFA8D78 /* evaluate_args.h */, - 75682C0FA51A0354F41CAB4D0CA10FE8 /* event_engine.cc */, - 9821E5906EADA510A7B428FF76438DC8 /* event_engine_factory.cc */, - 80E2B9C80C1D2401825B16CF52C16D75 /* event_engine_factory.h */, - C5BE69C5A2C904956ED2F634D6E20987 /* event_service_config.upb.c */, - 645DAB0A7138E785398918876DDAC4A6 /* event_service_config.upb.h */, - 06D1CBF5AA64F18DF7A7F11F8C8BAAA0 /* event_service_config.upbdefs.c */, - CC2F8AC21E20AE51FFE111ABB972A7BD /* event_service_config.upbdefs.h */, - 338DCFDF07BF23D05CF7099E55CD03AD /* event_string.cc */, - 1B03E6D535171A4A06590C4066009F2A /* event_string.h */, - 16ED48FB8B8CFE8D24F33556B41EBFE9 /* examine_stack.cc */, - 10BD02C45CEC656C881CDDFD5DDBAA2E /* examine_stack.h */, - E311060DD11CA125094EE84B5A3793E2 /* exec_ctx.cc */, - 6C941E45990F09473D99E998FF8A7D2B /* exec_ctx.h */, - 27D3E3E005C028D8C54EF2B9AEDBD7C5 /* exec_ctx_wakeup_scheduler.h */, - CFBD1990DB242CCF51D6F5241BBD8BA4 /* executor.cc */, - 4659196B4EC3C5F86E39E5406F56C8A0 /* executor.h */, - 611247BE1EF371C6C932C6BF3622FF43 /* explain.upb.c */, - 89408EFD5BBDE9305EA1CF534689D874 /* explain.upb.h */, - AC1101C998BFC206F537191514D7EBEB /* explain.upbdefs.c */, - 651B3EABCB682CF0D00F0EE27B208D9B /* explain.upbdefs.h */, - 87DCEE445BFC18950D3EA956CD9F708E /* extension.upb.c */, - E886BAAAD0217251B889F27BBF6E6AEB /* extension.upb.h */, - CF4CCCE0933285D444F1B3FCD018A42C /* extension.upbdefs.c */, - 3F7947C8FF937D06BF74A57189163EA0 /* extension.upbdefs.h */, - 90D58D3D2C3225AFA9FAE7A5741010DA /* external_account_credentials.cc */, - 60DF5A86AFCAF4C686591D657333B86D /* external_account_credentials.h */, - 5B28F283A00DB24FC9776C6CADCBFBD0 /* fake_credentials.cc */, - 30B5D24B68DD6839E1EA306C4838C3A2 /* fake_credentials.h */, - 79D05D52E31B4094E284232985324159 /* fake_resolver.cc */, - 5C659DABC9D85BE329800DB9D46C639B /* fake_resolver.h */, - 2EE4CFF0200FE73D7112F7C9279E1EE8 /* fake_security_connector.cc */, - A7ECF7A3A3C5B540F77DEE2086FDC9C5 /* fake_security_connector.h */, - 7A4A7FDBFB29EDE523370E23DF2693EC /* fake_transport_security.cc */, - 21DCCDDEFBD25A66AC91F8FCF8ADDC6E /* fake_transport_security.h */, - 2579B86C049C5FFA3434D76F294DECFF /* fault.upb.c */, - B66296B5A828844EBE63423D4CCFEBA6 /* fault.upb.c */, - 1A806E667BE778D74815FCA1EC42366C /* fault.upb.h */, - A6AD12EFCBDC400DF3A8218708542632 /* fault.upb.h */, - 66A99DEF9170B961BA2F5F7671D5FA00 /* fault.upbdefs.c */, - CB66DD72E8C1A2D3A12051569026F198 /* fault.upbdefs.c */, - 2B5D6CFEE2D2D303F915C5B485902924 /* fault.upbdefs.h */, - BA9A4A88BB49FEE871D1EBCB60188E51 /* fault.upbdefs.h */, - BCAC0051DF6BCED758E1C8A451A2C598 /* fault_injection_filter.cc */, - A4879F426982C95E908B0DC4B0B5EE4A /* fault_injection_filter.h */, - 968FF90945CF7D58958F29673235DBEB /* file_external_account_credentials.cc */, - 01EE093E08022F490ED57BBA14ED7A2C /* file_external_account_credentials.h */, - 76A681E025F34AF7680341E8C5F67977 /* file_watcher_certificate_provider_factory.cc */, - 7B40B1F51FF6B7F02B55E11CB5B8B7F1 /* file_watcher_certificate_provider_factory.h */, - B88B1173F2207725E6C40B5C06013EF9 /* filter.upb.c */, - 2E9E7BC9B124BBAEF0FF9F056080C648 /* filter.upb.h */, - 5A054577C50CFE5E8610F768511DA469 /* filter.upbdefs.c */, - 851DB4108E572EFE5F11384675ACE17A /* filter.upbdefs.h */, - 264B41E145D441C27ED2ACBCF935E7A3 /* filtered_re2.cc */, - CA2E1EAFC399537BCAFBE133BC2B1004 /* filtered_re2.h */, - 397E69A1BF13B0B9D1B1B6EB7AB9EC2E /* flags.h */, - F6578E4C29BCEDCB97CA7D2598188115 /* flow_control.cc */, - F2EEA44DDFFE109C6FF944EF696AB884 /* flow_control.h */, - 171BA3B97CD6CB3ED48D6A2E0B877CFF /* fork.cc */, - 6F6C50611EB192ADF0EA7F709939DE50 /* fork.h */, - 43EFCE7070AAA6A176A01BCA9AB3FEF2 /* fork_posix.cc */, - 26D09F96E4744FBAA1B641E5ADAC5528 /* fork_windows.cc */, - C025D0ACDF630B43FA270B5A85E82439 /* format_request.cc */, - A135513E6914703307777A672262B80F /* format_request.h */, - CC72DE90953D843CA4A9CDF23F33366B /* frame.h */, - 38B368D8B91E7D953A57ABA58FFF99D1 /* frame_data.cc */, - 4D508A85648BBFD2090CE02F1272B214 /* frame_data.h */, - 6DAACA52181FF6C4675EF2F7A9A5D16E /* frame_goaway.cc */, - 6992F760957F3C24EA06E6662CBE66D8 /* frame_goaway.h */, - DEAFE4C13D8FF1FDE065A8794EC86245 /* frame_handler.cc */, - 46D8DEF4E450DE3F1C8C4C92BCD68576 /* frame_handler.h */, - 2FAA5C95A4C739C9F9D5C01AEA8E2FE9 /* frame_ping.cc */, - 1599A6F8C155019451146520A7A94AB9 /* frame_ping.h */, - 5A537E6AEB37B00D25E6A1396917BE5A /* frame_rst_stream.cc */, - BE7424704490822F4A39D8365399F223 /* frame_rst_stream.h */, - 93552E3D46EBC5AC5E6FD12E94BAF86A /* frame_settings.cc */, - 1AC602E91A9265BD8C92854BE65FBDAA /* frame_settings.h */, - B34BDA9AA0E38F8C1AF5B9CCC50B4537 /* frame_window_update.cc */, - 26636377EF83406F8696B60416119593 /* frame_window_update.h */, - 1AE9E31F364445B9B1803AC0FEC39BE1 /* gethostname.h */, - 0C99074E38B6B0820675CB8246AEA784 /* gethostname_fallback.cc */, - 84CE4D473CB4B1B2A08A99F858424D05 /* gethostname_host_name_max.cc */, - 22AC2D28592341FF9F2FCB5D9E63E64E /* gethostname_sysconf.cc */, - EB67F319D5A6DBD6F3DFC7872D41DAFB /* global_config.h */, - 22A246B9CD6287F1683AD66E6FE13A18 /* global_config_custom.h */, - 04734AB5AF74C9DE20D6D8802C0D9E18 /* global_config_env.cc */, - 63052411865EABC071586B4BA0935098 /* global_config_env.h */, - 79C3CFDF38FDFA63226560FBD6A6A8FC /* global_config_generic.h */, - CFD081566DFEC6AC03DDE5B3C7256851 /* global_subchannel_pool.cc */, - 09E52E93BE86560301BEE49508E9FB1D /* global_subchannel_pool.h */, - 1D1B18550D6F805BD7DC779F15784C34 /* google_c2p_resolver.cc */, - 99CF5F7C50B01AB89627F004A27781C7 /* google_default_credentials.cc */, - 6D20E187C00FA90B22573DFC7CB5AB48 /* google_default_credentials.h */, - 6312472BA3F98D5BADB2AE51A14D38B3 /* grpc_alts_credentials_client_options.cc */, - 6E68F38EF3C14DCBF89FEE9BCA464476 /* grpc_alts_credentials_options.cc */, - 1139487F571F09B49842A7C5D226CF35 /* grpc_alts_credentials_options.h */, - 4F0918A9481279281090CA6C38F60206 /* grpc_alts_credentials_server_options.cc */, - 93CAE6005958CC133C4263A5AA707DAF /* grpc_ares_ev_driver.h */, - 24ACF7FDBEFE569BE1788D2B3CC96992 /* grpc_ares_ev_driver_event_engine.cc */, - F386BE668E88666BA052FB9B36FDD17B /* grpc_ares_ev_driver_posix.cc */, - 8C50941522164CC5B709F5098D927E84 /* grpc_ares_ev_driver_windows.cc */, - AF0435CDC5C3BB45A9AF2EE6A467ABA4 /* grpc_ares_wrapper.cc */, - 3B14D60525A22925EDAD0F0C1BC7987F /* grpc_ares_wrapper.h */, - E6C5D6968181A44C5AE9A6F0811EAA82 /* grpc_ares_wrapper_event_engine.cc */, - 5EFB92FE6ADD9FA33092D20A95C2E9CA /* grpc_ares_wrapper_posix.cc */, - 6C9E7768547EF72E76EED5720442DFBD /* grpc_ares_wrapper_windows.cc */, - F3A67551D5639EB99BC8DE8AC3A031D2 /* grpc_authorization_engine.cc */, - 235CC43425366ED60206A650CBDD7AB7 /* grpc_authorization_engine.h */, - 61B54FA6ADCE920BE0ABBDF87B9B4F5C /* grpc_context.cc */, - 727C1911DFCF06D6C803047156E83F1E /* grpc_if_nametoindex.h */, - 69A3A3909341E4214E30E4F0FAE601A4 /* grpc_if_nametoindex_posix.cc */, - A9139E951B16A769D99336B2EF472CAC /* grpc_if_nametoindex_unsupported.cc */, - 03CF886D35E03504769A922450BA26E2 /* grpc_plugin_registry.cc */, - 958D65B217E5EC5E56405E2A89A567E0 /* grpc_service.upb.c */, - D94C17DF99BBF14FD287F41375DF2721 /* grpc_service.upb.h */, - 483F1BA8EA46A62D62C118AAE3B83C36 /* grpc_service.upbdefs.c */, - 7673737FC609A1373ED10CCED84DC1A6 /* grpc_service.upbdefs.h */, - 998690A270B8FE55E3EC79A3B9FF8641 /* grpc_tls_certificate_distributor.cc */, - 27147275BA0B70A69E1075EF4B67F09B /* grpc_tls_certificate_distributor.h */, - C44DDAF38CF22A343A43031C03BC8850 /* grpc_tls_certificate_provider.cc */, - B9A7227AAB7C29CA7F1A7E03D3C1FA1D /* grpc_tls_certificate_provider.h */, - 84239BCC5B81A8DEFD7602C353FD75BC /* grpc_tls_certificate_verifier.cc */, - 1CE7A83080E48FDA75B4EACB16B8D1C3 /* grpc_tls_certificate_verifier.h */, - A36B4BEDEB17BC89D54D38110051BE8B /* grpc_tls_credentials_options.cc */, - E23B9ABF6D6C4F37041C82AB78050532 /* grpc_tls_credentials_options.h */, - 6FD82FCC4566255B10DBBD0362C8C0E6 /* grpclb.cc */, - 4D53CE77152F94AA6B5FB8C17D891F6B /* grpclb.h */, - 579EEBC70FF37E85F4B04D70864B58AE /* grpclb_balancer_addresses.cc */, - F8F1D4906E47871EB1E4F74A6363EED4 /* grpclb_balancer_addresses.h */, - 697D22D308D8BE411DD9678A283BB4CC /* grpclb_channel.h */, - 22E0EF64C357445231796C90CDDB2DC3 /* grpclb_channel_secure.cc */, - D25B6C442FF545F49CEFEAF985590F2D /* grpclb_client_stats.cc */, - 2ACDD6D7F925875C5D0B3F4C4C345AB3 /* grpclb_client_stats.h */, - C1FCB318C0C0144F3ED976295FF71A5F /* gsec.cc */, - 474616FBF04AF1BCBEB7714A4421854A /* gsec.h */, - D55B6488075C9D963E44ACCC5D36E521 /* handshaker.cc */, - 799A6BA38BA72F02C43FA66FAC4E03C3 /* handshaker.h */, - 74918BCE829F544BBC95587ECAB7AF67 /* handshaker.upb.c */, - EAE351CD4D924458B9CEA52AE415FA4A /* handshaker.upb.h */, - 28FBC142C4AA69D45856DEB3ABB67C9C /* handshaker_factory.h */, - 6A60B45FCB497485D236AA563671464C /* handshaker_registry.cc */, - D9CA3B79A51828D14120773EDA89C3C0 /* handshaker_registry.h */, - EA044D27F2CFCA94044FE2FE079A4C86 /* health.upb.c */, - 7F382F4DCC010C3268AD3E4B54E0C010 /* health.upb.h */, - 2DB80BD156C6ED11C149487F60C7C1F1 /* health_check.upb.c */, - 0A4786DF96C94BEA793A9C5243A9B166 /* health_check.upb.h */, - 50AF0D85488F4449C0EDBFD8A4823417 /* health_check.upbdefs.c */, - 5A5690602DE554031B6F660D4731ED42 /* health_check.upbdefs.h */, - A598D61B75F14E1FB7BDED718B610719 /* health_check_client.cc */, - 01781C87CC57C5C88AE2D6A81AC6E2C8 /* health_check_client.h */, - 4DD43ABCAA2190CAA602953C834255F6 /* host_port.cc */, - 7A9A6AE481C213A802D349EAA9F4C45A /* host_port.h */, - BAC34A20E46843D5D450731D82A01217 /* hpack_constants.h */, - 5ACDC0CFC469F0C6CF83000833DD0625 /* hpack_encoder.cc */, - 87B20CC8A728B6D40F4FF620667944D9 /* hpack_encoder.h */, - D678AA0C66CD6BE034B10A87C4F259D0 /* hpack_encoder_table.cc */, - 3CF867A681925FB1B8E1F5D78D5D35BE /* hpack_encoder_table.h */, - 9BEEEEDD134FD7A4B7EE339EB8085D4A /* hpack_parser.cc */, - C09F988BE5F5A2AFB1AE65EA56151CC3 /* hpack_parser.h */, - 07A4D675C662616BC90B0903CE156B19 /* hpack_parser_table.cc */, - 705F25D27A2748D63FEA1E2ABCE6C90F /* hpack_parser_table.h */, - FDAF8ADC84471FF705E01D9095797EAD /* http.upb.c */, - 63B89EC784BA917D65E4143918F626B0 /* http.upb.c */, - F7391DE403FB21A53277E5EE16782E6C /* http.upb.h */, - CDF34C585EF858951B444984D28BBD12 /* http.upb.h */, - E46C379ED94A55A89F6F983FD07B2087 /* http.upbdefs.c */, - 35381D5F445307A4BCBD97FDC475B3C2 /* http.upbdefs.c */, - FCC2155119C04BAC7B6DC58CE331B31C /* http.upbdefs.h */, - 4EA10F768A51A4AB656C10E6B7141961 /* http.upbdefs.h */, - B13EBBC179E790092217B7A4731EACC6 /* http2_errors.h */, - 356E0DEB164D923940B3FE6991E71990 /* http2_settings.cc */, - 309C3640AADEE30CED9436741796BD75 /* http2_settings.h */, - EAB845998AE346CA019CE1E12E5A0417 /* http_client_filter.cc */, - F8945C5C7F9E2F863D8819348D0F453E /* http_client_filter.h */, - 4C966CB172076FC303F3BBB47A1B1F6C /* http_connect_handshaker.cc */, - DC37F2C6B67598116FD1520F1EF960EB /* http_connect_handshaker.h */, - 09EEFC05621D99984DB106D7160A0F6B /* http_connection_manager.upb.c */, - 20D46D7A1A5F88080AB5F54DE174971E /* http_connection_manager.upb.h */, - 906C7238D6A8B1A8D4803481347A4160 /* http_connection_manager.upbdefs.c */, - FF46A9A7423D03217525584FB0EB958F /* http_connection_manager.upbdefs.h */, - 3AAAB9DCCEA56127320FB14C51D3BE7F /* http_filters_plugin.cc */, - E5302244D099757754F2D0B45FB759BE /* http_proxy.cc */, - 32F802F6AB37F162D6A36B9BE0562664 /* http_proxy.h */, - 37045676FB2CEDFE2136BC4ECED519A7 /* http_server_filter.cc */, - CBE18E936DE3AEF0D077965B343DF523 /* http_server_filter.h */, - FD4E78625E8C3DB087988B80CC1F91CF /* http_tracer.upb.c */, - 801DB2F445C95D9AA81B40844F3203D7 /* http_tracer.upb.h */, - DB4C7ECB33E87C6E974F7975A09D9176 /* http_tracer.upbdefs.c */, - B24ADA12A72D17B8F16CD5021D839E0D /* http_tracer.upbdefs.h */, - 57D9D04F4FF69AA878CB56C2CE564C89 /* http_uri.upb.c */, - 9CB347B060AEE9899E9C7B094FEA5BCD /* http_uri.upb.h */, - DC5825CA05529EBCC409BCFD67DAACE3 /* http_uri.upbdefs.c */, - F021F07F2BB1EA0B57EBDCB932408C98 /* http_uri.upbdefs.h */, - 220976223099B776CFEE5AEF80B7B732 /* httpcli.cc */, - 2EB807AF59CEBBFEAD5D068C2AF0C15B /* httpcli.h */, - 9EC5C54A6994BCDB5029DFB45D66AEDE /* httpcli_security_connector.cc */, - F0C1D8200BF9B7DD0B2571512F931245 /* huffsyms.cc */, - E2A467762A7C41D8C3DE86CC6E2BE3B6 /* huffsyms.h */, - 814EFCD04166FA022143B812E4AE54F4 /* iam_credentials.cc */, - E6FE6F7D69C20EDF333264214F637C5B /* iam_credentials.h */, - 866E034609AFF2AB1DF5E2A47DBCB64F /* idle_filter_state.cc */, - 7C32B7A8822FC8375E6AF4ACD507022B /* idle_filter_state.h */, - 7C3770DBCF5BCC6E005507C30119B889 /* init.cc */, - 31CFD654A9B427BD7D1F2A1B4C52BF1E /* init.h */, - C4CC0C1FF019C419087C5855EBE95A23 /* init_secure.cc */, - 9D65CAD60522E81DABD5E36486DBCDCC /* inproc_plugin.cc */, - 2B95705859DA0C47A4F47C74AA021174 /* inproc_transport.cc */, - DF133F2683B39795BBB6F7B19E6D29E4 /* inproc_transport.h */, - F20DC61653D07A5218B80C88EDBF46CA /* insecure_credentials.cc */, - 2B25468BDC04AEF0C0643FBC675902B4 /* insecure_security_connector.cc */, - 15BB6E7E26F87757A2EB4F37788D9228 /* insecure_security_connector.h */, - 34FCA4B5D9C8BB7BECC604BFC2D98AD4 /* internal.h */, - 2FBD16630C80A72BE52123E66DAB8F4C /* internal_errqueue.cc */, - DE31F621CAD4A75C21F0F9B1769442D7 /* internal_errqueue.h */, - 9E5B7AAC1336D406BE31037E5441A12B /* iocp_windows.cc */, - CB97F2AEDDD7B018E84CECF9EA3CA927 /* iocp_windows.h */, - A82D46BE4221AD1794F4E23C051CA014 /* iomgr.cc */, - C91B02EEFA3E664251FDF793BCAA4794 /* iomgr.cc */, - 4C3CBF9A2AEEFF612EA6090F5C5849DA /* iomgr.h */, - 793E6076D2665F1E548074DC8DC78322 /* iomgr_custom.cc */, - CC9D9002A2F38A3892043EC9E0BF3891 /* iomgr_custom.h */, - 042663A38D86B562E4534551771A4C7C /* iomgr_internal.cc */, - F9E6ECD0031EF129A9FC62746415E60A /* iomgr_internal.h */, - CB16C0F892A968FEF894B2D211E63F25 /* iomgr_posix.cc */, - 54160E37AF4805883EE529E53FE80C53 /* iomgr_posix_cfstream.cc */, - F22B9B31D85DF26312A861D0CCE2A8AA /* iomgr_windows.cc */, - E8FAFD4A53F35F90DF0A545F674F55EE /* is_epollexclusive_available.cc */, - 74F65B120DDCF4943829A077989BC940 /* is_epollexclusive_available.h */, - 99A9C05F900A594BDEBF20B2BBDF9D97 /* json.h */, - A35BF9F813177891C1221FF7B6E1EFA3 /* json_reader.cc */, - D71A76C212C2678D75A263CE58A8AD06 /* json_token.cc */, - C61C6E21E370D90A0AF9C13AD012973F /* json_token.h */, - 0C9DEA443590B430A4E0BA9F624F705B /* json_util.cc */, - 1B901BC05BCB1833AAB7767F5E40870A /* json_util.cc */, - FFF7D6F11E84CE27EA2F85C34828A26C /* json_util.h */, - 5D9363E6577190A2B9F0486708525D44 /* json_util.h */, - 7B105965769545C5B0B9E99C26DC589A /* json_writer.cc */, - F76C167FF95D245F602D460422DAFC83 /* jwt_credentials.cc */, - 5825553765E09FFBA84EC6D34FA6EC0D /* jwt_credentials.h */, - F82B58759F2F0B6A915BCBF266D1BBCE /* jwt_verifier.cc */, - 6BCB6EF77612A02652B40481FC7C0ED3 /* jwt_verifier.h */, - AA44046E15985EC93ECEEC85F0FDF855 /* lame_client.cc */, - 9AD19B658F379932BE01372F570E5D64 /* lame_client.h */, - 9C4BE9962FEB74EDF589C4ADB20AA4BB /* lb_policy.cc */, - 0A9F1467DC185EDC5A308A1DBA464392 /* lb_policy.h */, - 4DB00C3343089AE1ACEDBEE4E901DD69 /* lb_policy_factory.h */, - 92A1549ADA2260C3ECC7D1153E1892B0 /* lb_policy_registry.cc */, - BEF6DF5864028E3C2AD14E09D21E240F /* lb_policy_registry.h */, - 49F0BB19841D136A33CDBFA501957671 /* lds.upb.c */, - 5186766C19ED0E80B260A731B62EAF96 /* lds.upb.h */, - C6C32CF6931BAE69159E53D68CAEFA01 /* lds.upbdefs.c */, - 1EC6CC8FEAC7C2A5DF91F812DA05106E /* lds.upbdefs.h */, - 2A3D6BAECA5BE1975F12C7FCA3B0C62E /* listener.upb.c */, - EB7AC6D0022C4E8E5D8A87CB7A4D419D /* listener.upb.h */, - 0AE2E7AF105E233173E49B4CACCBD993 /* listener.upbdefs.c */, - 6A943E7E1569DD2A06C682C436A15E61 /* listener.upbdefs.h */, - 5F0680FA08CD94F81F03FDC036EEA693 /* listener_components.upb.c */, - 96F270D4CF013B47C1BF78D821D60FA1 /* listener_components.upb.h */, - A3288A87CEF66B021246F5A3001A6365 /* listener_components.upbdefs.c */, - 492D2DC2280346F2F0164538187158A4 /* listener_components.upbdefs.h */, - B11E5D7BB0C1C65418D24E4509F26585 /* load_balancer.upb.c */, - 3FE643B03358BF78DFBC8DC6A52D5CA7 /* load_balancer.upb.h */, - 86D1B73F3665D1A80C9F693DD31116D9 /* load_balancer_api.cc */, - 1D7F91ABBB27B2B6603C4A42C6795236 /* load_balancer_api.h */, - C36DEB3E1303FC9907F60D9A13C16113 /* load_file.cc */, - F3C365A6481D30E9535EED7CC2D910AA /* load_file.h */, - 63FC3BB05A9706FAE0BE209E9D4BD017 /* load_report.upb.c */, - 37725DEADFA99A97087236A5E26BC783 /* load_report.upb.h */, - 4FF58CDC1AB166052E72D0CEAF53AA68 /* load_report.upbdefs.c */, - B515EEBDBB4AFBDC0AB59659D3B8CFB2 /* load_report.upbdefs.h */, - C863B9815B90F21CFBD4CD5E2CA640D6 /* load_system_roots.h */, - 78693431167DC8F6BE8B700193296E81 /* load_system_roots_fallback.cc */, - 79A4B04EC5A7C06D99B6CCB2A86DCA24 /* load_system_roots_linux.cc */, - 9EFC2DC0949691ECF6348F58BF217772 /* load_system_roots_linux.h */, - 78DF3922EE4BEEE03E14216231A46B18 /* local_credentials.cc */, - F3041B8C822A72DAE8A333D61EB79A31 /* local_credentials.h */, - E900281EAABAE1D29ADE22362A955E51 /* local_security_connector.cc */, - D5D3D20598A55161711B9B6E509BF708 /* local_security_connector.h */, - FCF50DD9E1F68DB063FE2AFCA2BAC23E /* local_subchannel_pool.cc */, - 256CE2BBC3FD4CFC24A11F0AF4E63EF6 /* local_subchannel_pool.h */, - 5B1F43074F22A077884B27BBAD53F797 /* local_transport_security.cc */, - 8DEF7F7016C87683E118732A218CE324 /* local_transport_security.h */, - B29D014ABFCFC4733B0DFD77AFBCBE2B /* lockfree_event.cc */, - 11711EFED4ECA4494FD187B235B8CED2 /* lockfree_event.h */, - A3C8FEEC10682E55A9D6201EF28275D7 /* log.cc */, - F7A78EC8A546A7F77990F67141891918 /* log_android.cc */, - D61FCF06A99C152C877D668205EAE127 /* log_linux.cc */, - F7B3FFCB9BCA2ECEA5E9056F6CD391B4 /* log_posix.cc */, - 388B364F57743F942647BC5FB98CCA27 /* log_windows.cc */, - 1B798171AF0544B2942D9ED30CF2C7F0 /* logging.h */, - 2C60B7A7C032805CF2ADE7B597C33DBA /* loop.h */, - 52F16022C649ACB97E6AA6764CD9EECA /* lrs.upb.c */, - F71296438012632256D049B9544C1A20 /* lrs.upb.h */, - 7442F7EF9EA5A5B5F4C694A4D4D90EB9 /* lrs.upbdefs.c */, - E56F9C2783CB4AD0BCAC21122DB2F4D8 /* lrs.upbdefs.h */, - 1305C0B1E6A416895C6478B37E56FEA2 /* malloc_counter.h */, - DDC87770B5482CDB35C42F1DDF578D42 /* manual_constructor.h */, - 29DC2ADCA18C838ACC4D893D940E986C /* map.h */, - 9034F4E1070E412BB88D4515C15ADABA /* matchers.cc */, - C91559F5E07109588C37C0D2D1A46486 /* matchers.cc */, - 772C7BD84E3DA84CCA800FDA58C9B0C3 /* matchers.h */, - 7ADED8F1E6190B3D423AE2A96A2BB920 /* matchers.h */, - E23B213AF99F8385AC041E7DC39DCB3F /* max_age_filter.cc */, - E4528AB5A3133E3F42FFDA529B0B572D /* max_age_filter.h */, - BD7B2F4FBCD4F14B3A7BEBF4EB0B4C4A /* memory.h */, - F6E40EDCCB76C1E818797E5DF4BE37D0 /* memory_allocator.cc */, - E7F1B8E58D1581F110C3B3FDCC04ED95 /* memory_quota.cc */, - 55932A25182FDD770F09E6659F107218 /* memory_quota.h */, - 3991A41E8862EA047524A7B5353D4C08 /* message_compress.cc */, - 1C55468D656DA68A0FEBB52B02448A1D /* message_compress.h */, - E51B30EDF4ED3DE4FE989BB8F808ABDA /* message_compress_filter.cc */, - 4A0E0BC8A2E3A70F65E0772F6862AE16 /* message_compress_filter.h */, - C16D69764B5A336CE2E754A80C2D7336 /* message_decompress_filter.cc */, - 78AA8F8957017331CC7D32A3E0BDB059 /* message_decompress_filter.h */, - 8B7C21D21FCD4FDC4F74C259991D3440 /* message_size_filter.cc */, - B316CAC1D290248CFAFD4D6EF23B2DF1 /* message_size_filter.h */, - 695B2647A3F36EB5EB43FE6D55E7B604 /* metadata.upb.c */, - A1D0E07D29D909DC36EF28E62B54C614 /* metadata.upb.c */, - 63D10555A6CCE00AD2AC9CA7250A7EA0 /* metadata.upb.h */, - A9B48197CEDBD7C46BC341423D7DB74E /* metadata.upb.h */, - 9C33E4BF618DE2E532A00F94FFE3E2D1 /* metadata.upbdefs.c */, - 4F6172BD84D4D8EC2DCF7845B81CE647 /* metadata.upbdefs.c */, - 5DF9144218CD230FCDE9F2B69D01587B /* metadata.upbdefs.h */, - 496C34846079E9EC78D047FE2E773626 /* metadata.upbdefs.h */, - 5B71F3AF31F718C75C12F8DBBC60F4F3 /* metadata_array.cc */, - A47C09FE9C6851B0C41A5DEF0AE11EC2 /* metadata_batch.h */, - AC186EC970ABDA7C3E9CB4256FE06988 /* migrate.upb.c */, - AF9E441B0346B45C4472AD4CA8211B60 /* migrate.upb.h */, - 38844297584C3846ECDD30F16E3104EA /* migrate.upbdefs.c */, - 272EAB0B07CEF88D86A697C7A8E149ED /* migrate.upbdefs.h */, - B3BA59DBE2075E2D9E66626F98883560 /* mimics_pcre.cc */, - 56693F7593922AF3CEBA0E29564AF012 /* mix.h */, - D17BA513E45AD12BA2ADFFCAD7C1CACC /* mpmcqueue.cc */, - EA3F173689A0C2FE9591AD9013ACD0B0 /* mpmcqueue.h */, - 07E5EF2CFF5AE29412E5C52C1C300013 /* mpscq.cc */, - 7583D15669BBCABA12533DDAEA5A9EB8 /* mpscq.h */, - 2788C5C4A897FAEC338FEA9DED0482A7 /* msg.c */, - E7C0C0E1E847F84B5E23FC49A2629F6B /* msg.h */, - 78336347EE982FA32B1624A1D5F4E7F8 /* msg_internal.h */, - 1B03DD138741DE953FF1480D4440815A /* murmur_hash.cc */, - D8417D60AFAAC26362E49B188B8C5DE5 /* murmur_hash.h */, - 93E48864D26805719298E22359DEEE0A /* mutex.h */, - E46E1F47CB726BCAD4F834D3C073CA7D /* nameser.h */, - E8573B22D701832A339D06B71454F1A9 /* nfa.cc */, - 6D4A1FFF4985DB9C0BFA07DC78CD5C22 /* node.upb.c */, - 4A473E17BCA02A26F2CBEE82B4FB074A /* node.upb.h */, - 79F6FEF2BC6EFF376E1BAD23A3CA6CFC /* node.upbdefs.c */, - 88B8EEB34934317FC62E45B56F0DABEA /* node.upbdefs.h */, - 56AD1C946FE54FCFEFB46C426675FAC4 /* number.upb.c */, - CDB37A77A9F84910B17B9F14844F5A59 /* number.upb.h */, - 8877D7B9D41A73338304318D2795F633 /* number.upbdefs.c */, - 4BAA1FACA74D6AB50362A5ED659F87C4 /* number.upbdefs.h */, - FA03A788EE692C767890B8599E7DDD82 /* oauth2_credentials.cc */, - DC971175DE82493CF24B7F675C52309B /* oauth2_credentials.h */, - C84AF9160F4FD8BA56412517C9DE9414 /* onepass.cc */, - F1F679A621E1A792F46EA9E04B40CF35 /* orca_load_report.upb.c */, - BBCE318F8243FA9CE289E45A666A4960 /* orca_load_report.upb.h */, - 34961D4577F6699640DCBE1FE90D3889 /* orphanable.h */, - D74C0DBAC3C74BF1DF99DDE17F9B8FB1 /* outlier_detection.upb.c */, - 7BDB673E3DC250F32BEE1887018D2DF5 /* outlier_detection.upb.h */, - 7A5486BE9CC1F388E324C9C7EABD8B15 /* outlier_detection.upbdefs.c */, - 4FCFAECC0B9457C5990B27906BE2E680 /* outlier_detection.upbdefs.h */, - 8717876E56C270791F761EAF3BB61D9B /* overload.upb.c */, - 37BEF1C798DECA77BBE0F70C5D42BF8C /* overload.upb.h */, - 45706FD070DE133D0E780598AEC28161 /* overload.upbdefs.c */, - CABD9C6B4B12971819F0BB5FE75CE838 /* overload.upbdefs.h */, - D93C74FF2F3EB52B18FBA4028AF762A7 /* parse.cc */, - 2F7287B6C3806AC1BFF064656453E95A /* parse_address.cc */, - 7C50351F88C76CEDFFED2073AC0B442F /* parse_address.h */, - AF238BFB741F007C0817C2B5DB680F33 /* parsed_metadata.cc */, - 9725AAB7A869B143B3B6D3B3FECD790C /* parsed_metadata.h */, - FC00F275871BA9CCB21D1871779468AA /* parser.cc */, - 3A14B53094333DAB228DAD025ED01610 /* parser.h */, - A443C7E39A2DE8BA64E26D8242D2176C /* parsing.cc */, - F9B982D25E697F8CBC0C37D13FB4562A /* path.upb.c */, - 6ED4E1B1FA31185EF5FED7A8115E01BD /* path.upb.h */, - 74D9013913FD7F5373D1E286F0D3E22D /* path.upbdefs.c */, - 63DE475E04E958BAE243E82AACEB54C9 /* path.upbdefs.h */, - 6D5F933BD1F3A33D9F5834CA43667298 /* path_transformation.upb.c */, - B30887F8A983D0F76ABAA697A90050D0 /* path_transformation.upb.h */, - 704829E59C868FF2AE2FA253816AE828 /* path_transformation.upbdefs.c */, - 4E7987C9EDCB7BA1803E4D1C4E46FBC3 /* path_transformation.upbdefs.h */, - 0CCC667FD79B757B4B75C1B064DCA254 /* pcre.cc */, - 0CC06ADACEB1AD6CC264389DC5E29D7A /* pcre.h */, - 99C2E67575ACD53548D30A6942AFEF42 /* percent.upb.c */, - 3EFBD16C412F0BFC36EC99FC51068230 /* percent.upb.h */, - 8FE8C5CBF1F8AD9E6F207D320F127150 /* percent.upbdefs.c */, - E3DC2819FA4380B3479C1CE4F49175DA /* percent.upbdefs.h */, - 3A59B322654824183166FA38D78FF95B /* percent_encoding.cc */, - 311249B28A37ADB26D2F8496EBE1606E /* percent_encoding.h */, - A569E416AEB5DE37366B255AB8FD8EA7 /* perl_groups.cc */, - 46C163AA895CED2B35401CB704316C16 /* pick_first.cc */, - 1205F2889A96427D02569CA6D5C6EBBC /* pid_controller.cc */, - 572E01E608361DD0DF7B1AB2C7BE8447 /* pid_controller.h */, - 0C64F12EEE81876D57916AC68BD7D1FA /* plugin_credentials.cc */, - CE325CF2B3B0AB572793CC4925DD03E2 /* plugin_credentials.h */, - 531F41E910FA8C57321514F25F119A01 /* pod_array.h */, - EF84631B1BD863A89DFD6F285BF43554 /* poll.h */, - 2CFEA868DA0718FE2E6F5C21105EDAB3 /* polling_entity.cc */, - 4D811938FE470F6F794D4F17C60FF7BA /* polling_entity.h */, - DEDFE2D9923BBF6E4912316E851F60B1 /* pollset.cc */, - 5A0E81CE3F628D747868EC97D07285BA /* pollset.cc */, - F3EE28BA0A3986A37071EC9847F32046 /* pollset.h */, - CEE92F69E76D3A4C9CEAA12B91A26695 /* pollset.h */, - 738018E185B998882FFF2C726F216913 /* pollset_custom.cc */, - 53D0AA6AE75C3C240E84BC6339E5DAFB /* pollset_custom.h */, - B17D3765AC63DEDCD4562043E72817FA /* pollset_set.cc */, - 49C50D8E8A7F1F4AD6D32A4405FD242E /* pollset_set.h */, - 9F4C7F33E74A38733C463A079FC14396 /* pollset_set_custom.cc */, - 34DC42CCEA2E96DE368DF549B28BCC6A /* pollset_set_custom.h */, - AAD6A11B21495CF049CDE05CAB35A774 /* pollset_set_windows.cc */, - 5892894960C914E174B043795089BF47 /* pollset_set_windows.h */, - 9E656B5E025CF677BA2290063704AF31 /* pollset_windows.cc */, - 93916BDF32BE21A9CED7B77D6DFB980B /* pollset_windows.h */, - 21A5B9C7E61545B76E4EA0DF8218CB77 /* port.h */, - 3F9A2324EFE1A9094AB146BD55BE5FF2 /* port_def.inc */, - 9278345F85F2E616B43C10F4D8D79E22 /* port_undef.inc */, - 4A9F06DE7D615F3916E1004267B2C151 /* prefilter.cc */, - A091525807673B1231450A472D4B1267 /* prefilter.h */, - 803A26BEC92C06FEA4714F80D68CD846 /* prefilter_tree.cc */, - 9FF43D78A918D7940A31B8373CDDB1CC /* prefilter_tree.h */, - B0FA88EF49B79651198EE74047D6AFED /* priority.cc */, - 5654679A04C2B3B66EFF7DC0BB2B6001 /* prog.cc */, - BBD80B793F358EA6A9BF500CE7CED2F2 /* prog.h */, - 6D0BCC32ACC07E85423AA18302BB9A54 /* promise.h */, - 2E5B439F90A941226BD2EF48024DF759 /* promise_factory.h */, - A9BFF848B98DE459D79C6FEB43146143 /* promise_like.h */, - FA1F2970262B2B17870B752504553D11 /* protocol.upb.c */, - B7768AEE98D9AEACB1068789A9E7553E /* protocol.upb.h */, - 8BCD98D145DC8703C436C52D1817B837 /* protocol.upbdefs.c */, - 817A25A1858B0BC5B123C4EA1B50F85F /* protocol.upbdefs.h */, - 1703CCAA0723A71572E930CB0369F2A0 /* proxy_mapper.h */, - ACBB700D1FFD3CBCBAB5AC9BEFDCB9A7 /* proxy_mapper_registry.cc */, - DD72F7E5E08707846370D7D0F991BCC6 /* proxy_mapper_registry.h */, - E265193DCCE9BD9FFD5DB1CA1F821870 /* proxy_protocol.upb.c */, - F1FB242F75F16071761D1F27A801B3E7 /* proxy_protocol.upb.h */, - 925BA70FA70A630DB8F7F22EC2019ACF /* proxy_protocol.upbdefs.c */, - 28F67E9DEFE42E74DEF2154F9947DB82 /* proxy_protocol.upbdefs.h */, - 910B9E157C56A0513EB5A2E521E2432B /* python_util.h */, - EC52F6B0CFCCBEDCF1ADF353116D9FBE /* quic_config.upb.c */, - 0C2095D264506F6C53E5E27B74BCD841 /* quic_config.upb.h */, - F324F90A3E58BB250B2027A6494539D5 /* quic_config.upbdefs.c */, - 804EBECD19957CB235E9415F60286B92 /* quic_config.upbdefs.h */, - 17D6DB6DF4AA4B150207E77864495927 /* race.h */, - 96C66E47752B8C1238D754CF11A9F93B /* range.upb.c */, - 2A7CA3D6AD61F23A0E12CD6631866A53 /* range.upb.h */, - 430F4518F77FD77BD3C0FDA487E3FE49 /* range.upbdefs.c */, - B485907E37DB770775AC8FD16708587B /* range.upbdefs.h */, - 1579B526F8670F3007B2CBF0B82CB2C4 /* rbac.upb.c */, - 23B1C5DB10E572DE6A04CD75C2B520C4 /* rbac.upb.c */, - 9982753F35141DA7C6C7223EC7AB08BE /* rbac.upb.h */, - 5331B21BF9163E6BEFAB03650F5C2B26 /* rbac.upb.h */, - 26EB6670A7BE940E343F862120174E7C /* rbac.upbdefs.c */, - 31CFD08288EAA99304CA81EF453B57DC /* rbac.upbdefs.c */, - 04B224CEDF61E100299461ECBB4903B8 /* rbac.upbdefs.h */, - 19DD9438E0B2C19378670964B332C600 /* rbac.upbdefs.h */, - 64D934788C061DB7268A7225C4E67251 /* rbac_filter.cc */, - 59545D091D38858ABA313424F20D5C82 /* rbac_filter.h */, - 6A36A494775EB023FD732D2B6A27E117 /* rbac_policy.cc */, - AFE270738743B940CC0385606BF70507 /* rbac_policy.h */, - 70394CD12CD6E329869CFDEF38DC21B2 /* rbac_service_config_parser.cc */, - 860D5BADE72B0C37EC664BB2F54A06A2 /* rbac_service_config_parser.h */, - 8473F989FCE12F29EC1D5981DAAA5216 /* rds.upb.c */, - A4BBBE1B26BB85CE249D843C6DEFC784 /* rds.upb.h */, - 90222205E434BDAB81FCA3BEF6115232 /* rds.upbdefs.c */, - B412DAE2C6175672DE35941A3450AE03 /* rds.upbdefs.h */, - 3A1A0D08D2628871FED2065BA20D2836 /* re2.cc */, - 194D9E902B5032863A3872DFA38643E3 /* re2.h */, - CC08A282FD10411FBFB14760A5279F1B /* ref_counted.h */, - 6609D3D9D07068384CDE196697A79A1A /* ref_counted_ptr.h */, - 34FBC651550B80DE130C4659DB76FBF9 /* reflection.c */, - 2AF97FCF21560E17B42AB9A924396382 /* reflection.h */, - FECB7D91E22F4D2504A111623A6A6ED9 /* reflection.hpp */, - 01B074B71CF6D4B2259BFB54CB344488 /* regex.upb.c */, - 37B8C76488233F9B77C6A3CA062AEB52 /* regex.upb.h */, - 87AAFB04B55856F0F2D76B2B5CA6A303 /* regex.upbdefs.c */, - 870D8EB45AEF8BB328D6CF7239FDC52D /* regex.upbdefs.h */, - A95F72F61CE015ACAA3EE1209D90D042 /* regexp.cc */, - 0B024046359A066F10122E255FB19398 /* regexp.h */, - 6D15C235D1CCACB2377AC3B9C0DDE55C /* resolve_address.cc */, - 16F960930908E8DB8DBD6B435D9BEA20 /* resolve_address.h */, - 97A2526456E50D10C83586F355E84D0D /* resolve_address_custom.cc */, - 58D5D7A847B5BA00D7E5289BAC10EC22 /* resolve_address_custom.h */, - F9CD7F32C915CC6D9E5092E802ACB02B /* resolve_address_impl.h */, - 60828112F37F6D0FC95FDADBCEDB3837 /* resolve_address_posix.cc */, - 76D3D6778B042F5E5557F3971629DD15 /* resolve_address_posix.h */, - 6CFD6FA5AACDD4CCC42C4444F49C2B8D /* resolve_address_windows.cc */, - 3DCB25CC4DD1BA3BEE60D51CF3DCED63 /* resolve_address_windows.h */, - 2F89D8C7938A637AA1A669F498A3845A /* resolved_address.h */, - 91B2A42FD20545A1F0402BE218D11D34 /* resolved_address_internal.cc */, - 5D749EFF81E7CD5C75DAA368FB61B1DF /* resolved_address_internal.h */, - E592DAE2079B75A9B744AAA603FF2E0D /* resolver.cc */, - F35BB122C0FDC4A5A66F3E973547181D /* resolver.cc */, - A6AAC288D8B06F235F9538819D512760 /* resolver.h */, - 424A4650FD0F4CDB844B98D3AF750136 /* resolver.h */, - 026CF909AE1FC9038429B4C1362CC194 /* resolver.upb.c */, - 5BE9B172CBA2D6DB99D3CD2D96C5D90A /* resolver.upb.h */, - 42E19A0322478BF04B55DFC7F64BB28D /* resolver.upbdefs.c */, - 59FA3D0E52D47A2DDDEF7023D073F101 /* resolver.upbdefs.h */, - 7D92C9A74272B6812313FAAA4491CD59 /* resolver_factory.h */, - 095F41438DE678236B51E05C4C1BCABE /* resolver_registry.cc */, - 315EA5002D682DA429221872CCA3E771 /* resolver_registry.h */, - A0A33EA6D08F5B6D726F20B3FEBCD8FD /* resolver_result_parsing.cc */, - 787CE6B6D5330420BF853E6E010ACDE2 /* resolver_result_parsing.h */, - 926328329625E95604DF09C0249E122B /* resource.upb.c */, - CCB58DF526AD4589CB46243E1739BCB4 /* resource.upb.c */, - 6C09F723A5CB27AA07BCA67668904220 /* resource.upb.h */, - D93BA2E1EAFFA2E2E92C9EAA934DE96B /* resource.upb.h */, - A4632EECCDDBC00FF8A89DB23C7D800E /* resource.upbdefs.c */, - 2ED0AC6123468E1997F88580F045E67B /* resource.upbdefs.c */, - 73E4878C53A125467996EC828E47CCFE /* resource.upbdefs.h */, - 4E74012D0138C064621AA13083FC17AE /* resource.upbdefs.h */, - 79F77340050550C9D5F35B7FAB1483B9 /* resource_locator.upb.c */, - E0AA062F356DE5E81D6DE8A6B65CC870 /* resource_locator.upb.h */, - F073FC63DCEF38ADCB635B9A108B42F7 /* resource_locator.upbdefs.c */, - 8E84B4C0FD222118A07FFDD1F4FEDBDF /* resource_locator.upbdefs.h */, - 8C4A54ADC637409E26CB1E73A461CD23 /* resource_name.upb.c */, - 306E4A2A6123F1EE9F9EE17D5D64081C /* resource_name.upb.h */, - D96D70C8DF3C10C3AA273E260D59BD7A /* resource_name.upbdefs.c */, - 716DE36C7E2FF2578E9DBCE01E4F825F /* resource_name.upbdefs.h */, - B0EA8D24AA9C1CD7267BCFB6DB564487 /* resource_quota.cc */, - C54E9148FEA94098F4CC3629623CBF7A /* resource_quota.h */, - 45341594EB71BDEF55F6210D28469D89 /* retry_filter.cc */, - 7C3EDEC56FAC05820A497B6E4829A4A1 /* retry_filter.h */, - C080DEC7E66CDD884AA5D181A79249D7 /* retry_service_config.cc */, - C7C58B7F97CDE713ADE08F118160FEA4 /* retry_service_config.h */, - 3B66A91920AEEC73F3627121DD04780B /* retry_throttle.cc */, - 85EA5C1B46421FEEA8749ED536BEEF1E /* retry_throttle.h */, - 9467481F7E2603037ADC577E208A3BC7 /* ring_hash.cc */, - 698C96D39E5B7CA5276758B607E300BC /* ring_hash.h */, - 90BADB2D9732E8472FE44DA83861CEEE /* rls.cc */, - 558B59B0974DAC57D0A823C464CFB9A6 /* rls.upb.c */, - E89A85148727E57700EEFC54A410F463 /* rls.upb.h */, - 61104922BC555E34C04B2C080A9FD978 /* round_robin.cc */, - F7A100EE1ADAF19FCC191974945A2BD3 /* route.upb.c */, - 0EC00C7BC8E5010AB1C694A593AEB2C8 /* route.upb.h */, - 676F110A1AEFEFA2BA40EE451C96B67A /* route.upbdefs.c */, - 587BF25E347F3F5B394DC39E2EF64039 /* route.upbdefs.h */, - C8C751CB698DA970855E6D515D81C9BE /* route_components.upb.c */, - 7A237ECCFA8B96B54BBA8C415640B0EA /* route_components.upb.h */, - C90F6CF45AD2EEE90F41347E67511EF8 /* route_components.upbdefs.c */, - B79883322CB09A08BAE47FE41DE6C433 /* route_components.upbdefs.h */, - F885E11DD802A4EC67111CDD2CFE9638 /* router.upb.c */, - C7C80B9D1D22E6DFB41051C9CA6E49F7 /* router.upb.h */, - F0E89013BE4C90A38F93A7C351868777 /* router.upbdefs.c */, - 1AA58BB75490621BF68FE5B54FF306C0 /* router.upbdefs.h */, - C725D72881475EB1E4C44CAABCFDE942 /* rune.cc */, - E00B0C136969A5895435928AE7AF7F7B /* scoped_route.upb.c */, - 6494D8ED6C32B87FFE753464418D50C9 /* scoped_route.upb.h */, - F02965C5796544EDFF3A08F7ED61F859 /* scoped_route.upbdefs.c */, - F320CAD1AAAB5139D3D07236FD50A61D /* scoped_route.upbdefs.h */, - 7ADCA55EEAF99EBE87B8C93CE2B6790F /* sdk_server_authz_filter.cc */, - 83BC52BDCE224833A93A71638D8819FD /* sdk_server_authz_filter.h */, - 7782A1146E6A2F48B994E88620F5D44D /* secret.upb.c */, - EF0E9618951890E5D02ADFF1F7E3577D /* secret.upb.h */, - 8A09EDCC235649B6FFA8B11DC8A18C86 /* secret.upbdefs.c */, - 9C4568144909C2F6D106A7ACD175791C /* secret.upbdefs.h */, - 285A0A08A325E8E833899F82592A8BBB /* secure_channel_create.cc */, - 42AA348F4D249921F504E4AD6864C962 /* secure_endpoint.cc */, - 66E7D05D43D2681FB8A647B71EE5EAFC /* secure_endpoint.h */, - 946ECDA26094B9C25497FB8DC4AD10ED /* security.upb.c */, - AB2EF2AC113FE66E4FB3FD3391F5E241 /* security.upb.h */, - 0BFEA9FB016A5AE331A2240DF946E29F /* security.upbdefs.c */, - 85D2EC4A893F19F738E391FCF01CB18C /* security.upbdefs.h */, - 6C9C3A7DA98E3A9B773F318A2675CB31 /* security_connector.cc */, - 6CC93CBE5474FA282C8C18A49F029B47 /* security_connector.h */, - 6B8AEE8AE63ABFE1AE73E6465E11F9E0 /* security_context.cc */, - B185F37F8856671E8CB87C39AC2E7261 /* security_context.h */, - 4717E45003D2AF5D00B6E73220748A53 /* security_handshaker.cc */, - DC1E4C15DD4AFED68BE7C12B431F3A3F /* security_handshaker.h */, - 9EBEF4EBDCB00B8CFCBE12997A5C4354 /* semantic_version.upb.c */, - 68090B8120A1CE8ECA411D4A0029B6DC /* semantic_version.upb.h */, - F5EDD3CFEEC26EF50AEBFE1683C69B26 /* semantic_version.upbdefs.c */, - 2EB0FEB99427CEDF311876D733252FD3 /* semantic_version.upbdefs.h */, - 751CBD225EA549F3C7051A909250DE2E /* sensitive.upb.c */, - 439C188D35D5C60571AEF9E9CAB07ACA /* sensitive.upb.h */, - 5E4841A36EA67FEB52E6D60914F58BBD /* sensitive.upbdefs.c */, - 1CA4882F4984BEFDC9C47DF4E1CBDCEC /* sensitive.upbdefs.h */, - 01AEC015FE1445352B9747AD1ED24B6F /* seq.h */, - 1EB69F46ABEB0B6AD59483A6A99CE5E3 /* server.cc */, - E6A3DC25092FF62F5600E56A662F43DC /* server.h */, - 4C2E904B299A912A882B296AE204105D /* server_address.cc */, - 2B90957A6D6006C1C1D3FFCEA5391A00 /* server_address.h */, - F5D482698E307862028290C8A6E90F07 /* server_auth_filter.cc */, - 603070AE0F113799A7C404D161CA89EA /* server_chttp2.cc */, - 170F436A7AE394349E0529630C42DA91 /* server_chttp2_posix.cc */, - 1EE6DBBF7386BDD194B872FB77EE4117 /* server_config_selector.cc */, - A31FFB39CA5C2873483DFD64F1E75356 /* server_config_selector.h */, - 5D85CD32021920D135B7882D57E6F139 /* server_config_selector_filter.cc */, - 03EC09431A21733C761853523EB8F447 /* server_config_selector_filter.h */, - 479EB203FBBEB87197336466B7CB6653 /* server_secure_chttp2.cc */, - ED61FCFCBC151356785B88227EDE6C86 /* service_config.cc */, - 42A3036A3EB3F2CAB574A190EEF2227B /* service_config.h */, - D56F948E9047188CE4C2B2366B8E71DB /* service_config_call_data.h */, - 043C52BD169975B49DE0110B63349929 /* service_config_channel_arg_filter.cc */, - 268E8B0F9C65AFCF0500BCA88D7A6407 /* service_config_parser.cc */, - CA428B7057A5A62FB68686C4F09239DD /* service_config_parser.cc */, - 8F0FE9CBBE3D5C6C2E72EFC98F311B32 /* service_config_parser.h */, - F15C801A0DA65B1D98130F7A0EA0A48D /* service_config_parser.h */, - E598D5945193EF65D52D21390E286354 /* set.cc */, - B654291838E7D415925BC88E230F0EC8 /* set.h */, - DD1A9376D1B750DF242C83896A072A31 /* simplify.cc */, - 619BACD9A4B2BB39113CC3F2FECD2E97 /* slice.cc */, - A68EA86884D69D502BFE4170135DC461 /* slice.h */, - 7BB46D2645FF96E502A1BD97E9687DEC /* slice_api.cc */, - 7DF92B730120BC397228E9C0DAB6ED6B /* slice_buffer.cc */, - A60956DCB23BA71E2EBF485DB58F6EB9 /* slice_intern.cc */, - 90DD8408E8AA3022043E97E9984359C9 /* slice_internal.h */, - 49622E3E5F58C83A87A039F6458A2A02 /* slice_refcount.cc */, - 56547311CE3860919BB8FEFA51ECB0C1 /* slice_refcount.h */, - 5CDFAF2E35260024A1BE63BD60A6A486 /* slice_refcount_base.h */, - 515F6C8B63220BF7C8868F8699C2ED1F /* slice_split.cc */, - 396DFEBE30AE4E198AAB74002B3C8CBF /* slice_split.h */, - 849051CE414BC29F7A237A39EBCD55F7 /* slice_string_helpers.cc */, - D543BC6FB6E3DB0066CC5AC3C589CEE5 /* slice_string_helpers.h */, - 5C1A9BD5F38531A5B1B100037F6260BC /* slice_utils.h */, - B8DB0B72E5DFCB96209DC7048E35F641 /* sockaddr.cc */, - F61603C41D94BA4F96FC0771D64F232D /* sockaddr.h */, - 1245C30E3BBB5BA0EBD6EEF7E7995ADA /* sockaddr.h */, - CD9035BC8BCF884010568F764CAC6565 /* sockaddr_posix.h */, - 9CE9EF99063E82F0C81A8357E0AF4DEC /* sockaddr_resolver.cc */, - 9560E302186CDFDDE1DB54E444160ED3 /* sockaddr_utils.cc */, - F6812B437C1B185EF3A69575A2372FB4 /* sockaddr_utils.h */, - E7D2DC228CAF707CB39D12A2F8494002 /* sockaddr_windows.h */, - 3BEDD253E20BA09C7983444152C002AF /* socket_factory_posix.cc */, - FA6807FCF63A1D43B0E71A56AB378C49 /* socket_factory_posix.h */, - 5C6137321C1B2F35460BB9271B14F891 /* socket_mutator.cc */, - C6ED1D2DD590E86D9F22C0BAD48C6BB6 /* socket_mutator.h */, - 257F33CF7173065407120D50A63780C2 /* socket_option.upb.c */, - 2AA605CFFABB8AFE2AF4D199805E9B53 /* socket_option.upb.h */, - 7797727CCC804F0D262A0D1AB926340E /* socket_option.upbdefs.c */, - 7E0904CB978C8745FBBBC1BB1C47E042 /* socket_option.upbdefs.h */, - 3B99AF27C2D6137A74F0735CA1DEE096 /* socket_utils.h */, - 6C4603547437175244E4036F2FC1D763 /* socket_utils_common_posix.cc */, - 2D8E98012D224137DE647D294723AC15 /* socket_utils_linux.cc */, - CA203005E2A8CEBFA37A200D2ADED6AB /* socket_utils_posix.cc */, - 204A7CA3893FC0E86FC7AF6E7DC09EB3 /* socket_utils_posix.h */, - 2BCBF59C495AE53E708AAD10DC35B022 /* socket_utils_windows.cc */, - B8DDBC7DBF588914F56027797FAFD438 /* socket_windows.cc */, - CC2B41542185814F8B2E458C30ED2F92 /* socket_windows.h */, - 7ABD10E2B1E588523AD9FBD3940CE282 /* sparse_array.h */, - EA8A415FD529DD061B3E1E52B489E778 /* sparse_set.h */, - 711A3BE5499C4C42FE3B5B309EC31F25 /* spinlock.h */, - E7EFB82A20A4AE926CBC13C1F37A689A /* srds.upb.c */, - EA03399A7B468623B9679F0EECD5B912 /* srds.upb.h */, - 8909F43A7103E527828F577EF6B571D5 /* srds.upbdefs.c */, - 2F59D0A701AC559D06CD851A4EF0701F /* srds.upbdefs.h */, - 81A5FA94A9CC5868125C6303E957DE48 /* ssl_credentials.cc */, - 50EB175CD8D55263964AA3FCC78A6EAB /* ssl_credentials.h */, - E5593CF7B0CAFD576AD24EE8A30CBBC6 /* ssl_security_connector.cc */, - 578C04481D513F9AE055EBCA062B77F7 /* ssl_security_connector.h */, - AF15D34E5EF4A11A603648484E73A016 /* ssl_session.h */, - BC46D9B27D539E4B26C20500CA66FA09 /* ssl_session_boringssl.cc */, - F96007A87BF3248224B01BF4AB37B1C6 /* ssl_session_cache.cc */, - 351C2030094A0B30ED06BA4FB171AD64 /* ssl_session_cache.h */, - 769B35410097BA9D4221360F33FF5BC8 /* ssl_session_openssl.cc */, - 37BC3E2508C15E58712F08C92BE75E1E /* ssl_transport_security.cc */, - D52B171A495DB04AFFCAFB7A28E8570D /* ssl_transport_security.h */, - EA2596B068E37E2DA464F89021B3C799 /* ssl_types.h */, - 7CC81E13AD0EA063C5581E4EBA665ADB /* ssl_utils.cc */, - 26132B0505FD1F5C6017C3F830906A0E /* ssl_utils.h */, - 6BF5501B7CE09FE9C7876F3801A3A7F8 /* ssl_utils_config.cc */, - 5A21B5A9674571E25435EAEF9834CCFE /* ssl_utils_config.h */, - 7032DC72FF3E68D589B453895CA48C61 /* stap_timers.cc */, - 63E41FB55A6D9DD6F01BE04E3226029F /* stat.h */, - 3C8EB784B0ABDB3DB9B7F1A8CEE65174 /* stat_posix.cc */, - AB10E3BFDA47A548969E1E40B54ECA6D /* stat_windows.cc */, - 0E0678F2283ACC9375BA35241FC9DA07 /* stats.cc */, - DB7BDE5FDADF95A04A3D4250F5B92A00 /* stats.h */, - CCB7B9E539043AC58010754DCF25C64F /* stats.upb.c */, - 1EFFFF6D25138BB3DA03E950E6B4E009 /* stats.upb.h */, - 6278C8ADAD75508AF874C23117B78181 /* stats.upbdefs.c */, - 7FB991C75FBD4B12C3473928DD556C8F /* stats.upbdefs.h */, - 3D4935C97E91F885941132A44D5310DD /* stats_data.cc */, - 80175968A0F7C9E05B272E4D1A300475 /* stats_data.h */, - 0AFFEBCF57F8E8D177A9585FBF21FD22 /* status.h */, - 5880A4129D44D0A02E2246BC3EB7DD79 /* status.upb.c */, - 0C8A983BD476638DE1C216B609CD70D1 /* status.upb.c */, - A19A4DBBB48441280DD05AF5A59904BF /* status.upb.c */, - BE3545A69FD8DBB9F1BF5937E8A99D07 /* status.upb.h */, - 6340C2B09120725DD5CB5FE4DFD0DAC7 /* status.upb.h */, - 44F3C9AB9BAB9E5902D368EA28EC9D91 /* status.upb.h */, - 1BCB8C2ABCAD8DA94966E4B5E657A0E3 /* status.upbdefs.c */, - 46E26E0AB07201DE7A2C043A2B469A6C /* status.upbdefs.c */, - 28F5EAD524F4BBF3F2865235F5FD5927 /* status.upbdefs.c */, - 846BB8B1516FFB4ACEB09BA01E3213CE /* status.upbdefs.h */, - E7D2C044AEDDEA9CBF48C3FA49A909AE /* status.upbdefs.h */, - 537E6C959AE50F65BB780F3D99DE18CE /* status.upbdefs.h */, - 81FA0F76DB5ADDF6BF62D4FDA4C212A6 /* status_conversion.cc */, - 8BCBD362A14615B5389CE7DFBD4D8006 /* status_conversion.h */, - 1D4811168E4A7A39B2BC5B601D65B9A4 /* status_helper.cc */, - 27EB040C9F6623F53A8CEDBC2A07DE6C /* status_helper.h */, - F1A9B32250BAC29DB540FB31DEE78F6A /* status_util.cc */, - 77F9C8511B95518FA2CA0C524B274D56 /* status_util.h */, - F6FCA450EF8F65BF78359B228372F377 /* stream_lists.cc */, - 6337B3FB5A0440102AF76A3F6D5F8F45 /* stream_map.cc */, - 4F7B89AD70178C95E83274ED63BD29F6 /* stream_map.h */, - 41A3E8ACFA912A9AF76F6483F37B9328 /* string.cc */, - C36EC1A4CF3BE368F9605138CD7CB99F /* string.h */, - 9588A547B728A1D2939D655BAD7F0544 /* string.upb.c */, - 9DAC136197FF32241C217A185AE9D3EC /* string.upb.h */, - 4949754FF74ED2EA97CF481173C0F132 /* string.upbdefs.c */, - 3D49089E8EB06F2A253519BB7EB28D96 /* string.upbdefs.h */, - 0A7AAD420E50EEB88CD367F5F33EC811 /* string_posix.cc */, - E6700B793E2D1C6EFBA12F4C7C8D5668 /* string_util_windows.cc */, - A9D3F89FA2345069EB342004C13AF450 /* string_windows.cc */, - 4F97B8898465846AB44BB5D78E704921 /* string_windows.h */, - 99D0D3AAB534D43C7EEB45DBD581E44C /* stringpiece.cc */, - C07E225FC776C11EA0F84C20D4E00D68 /* stringpiece.h */, - A14C379D092139FDCA1B28FC4240E5E1 /* struct.upb.c */, - 13D8F5B5DC6F45DA97BDDE979B842BBF /* struct.upb.c */, - 89ECED4B6E1792842207C72F7101FF9D /* struct.upb.h */, - EFDB94C4488339479A5FBB96F4A77AB2 /* struct.upb.h */, - 315BA1F94307C1F97FD43D2C8B36831E /* struct.upbdefs.c */, - 850FB736D8A70EC850956A82CD5849D9 /* struct.upbdefs.c */, - 62582003A5DC7A58FB6C3BCC1BB0C99E /* struct.upbdefs.h */, - 5ADF5062370B339DB0986D23451D2F61 /* struct.upbdefs.h */, - E2FA57F253AE2D3A72E3A68B54CD2933 /* strutil.cc */, - 98A4B3AEBC039061423903FF3DF79250 /* strutil.h */, - C6EA938BA2D74D97E81DD55F0F7C3E43 /* subchannel.cc */, - 3B03CDE5AAA98BDEC3F7E232BD652E69 /* subchannel.h */, - 7640767001365462E5951CA08527F9A8 /* subchannel_interface.h */, - 79F093F8BE761F244B6DB67078B233B0 /* subchannel_list.h */, - B2C0C8C74796BA8C752625895946CF86 /* subchannel_pool_interface.cc */, - 0AB859AFBDF808CD70C9D89CA6B9B99F /* subchannel_pool_interface.h */, - CF8EDF4A7DD376AC2749424763FABB28 /* substitution_format_string.upb.c */, - 9A9B338A2651664FA7B64850744F91A5 /* substitution_format_string.upb.h */, - 5FAAF296D8C41C5E6F712A89A98BAA4F /* substitution_format_string.upbdefs.c */, - 06EC2F2CF14E9C040A2BD2941944B9AB /* substitution_format_string.upbdefs.h */, - 2B108932F308EF62DB064CBBAA1EEAD7 /* switch.h */, - A36629E6950ED349411C0194B70BEB88 /* sync.cc */, - D1CCF723D1B26DB04AF16726A65BB223 /* sync.h */, - C9701281FDA344DBA24DF7E07024D6B4 /* sync_abseil.cc */, - C782842554B9F337E71CD48E2C85E5EF /* sync_posix.cc */, - 9A9FC5BC956B95C077D810572ADB1096 /* sync_windows.cc */, - 18FABB9F395C08BEAB2D3BB7826E8115 /* syntax.upb.c */, - C19801C5C5306C528B28DA52BD5E10AE /* syntax.upb.h */, - 98E19F5DDBD7553791BE7FBB55EAAF19 /* syntax.upbdefs.c */, - A493829C65E21C07D91AF4F87EA6C2CB /* syntax.upbdefs.h */, - 18F8F6DB7AC44C59BF6198BA77DA9ABE /* sys_epoll_wrapper.h */, - 515A8039F086F2C6B49BAC0CB5580503 /* table.c */, - 320B54A3BA2F1AA334EA800DA62CF99B /* table.h */, - FA91580EE93856FD88ED75C260987E44 /* table_internal.h */, - 6A7659B13EAB7C9751A82F8E7EB8896D /* tcp.cc */, - C2F8FE67065265A16B1610AC79E7F42F /* tcp_client.cc */, - 5EBACE88C2B991171319B4FF23125C45 /* tcp_client.h */, - 4D6799C40D723F2EA94222DB17A1E4FA /* tcp_client_cfstream.cc */, - E05A18C9830C52CA3BEDE113EA6A519F /* tcp_client_custom.cc */, - 681BC9F8EB6118CCAA35162AFABE34A1 /* tcp_client_posix.cc */, - F3A4B256D7B81123C933D00EEB5FA81F /* tcp_client_posix.h */, - 29BBFB150446397511913BAF16FEF106 /* tcp_client_windows.cc */, - AE149CD2442E49160ABF54AF40FD99E1 /* tcp_custom.cc */, - D42394AFD21771B30F21D48CC55A5C8D /* tcp_custom.h */, - FEB5E7DDCA3FF8B23C041BE45ED60ED0 /* tcp_posix.cc */, - 17F11C58B1B9088856035B4F5B4CB2E9 /* tcp_posix.h */, - 4693B836E1309591AFED39C93D9CE572 /* tcp_server.cc */, - 4E0E06C5D4EA976E046F997190A76DCC /* tcp_server.h */, - F4B67B7D07D09B82A59B5CCA57C16C6D /* tcp_server_custom.cc */, - B24A2C29F88781ECA8C691DE44DE600C /* tcp_server_posix.cc */, - 41D97CEA6CF023D662FDCA100E717093 /* tcp_server_utils_posix.h */, - 857EA4814AF020796AE9D746439F0390 /* tcp_server_utils_posix_common.cc */, - 8FE937010042E5CD11DC4C146355C53E /* tcp_server_utils_posix_ifaddrs.cc */, - 3BC5E432E01D2FA1A51A2A43783CFADB /* tcp_server_utils_posix_noifaddrs.cc */, - 241F7BD662A57FAD921F7E51E7A17B80 /* tcp_server_windows.cc */, - 2A7444BC97F1D298FB1712842043CBC8 /* tcp_windows.cc */, - C7E80206B45ADDCEAB1569064FDA5ACD /* tcp_windows.h */, - 26C293EEBD555F0093D25E9338CAC79F /* test.h */, - 1DE593DAF8F85BA6D4B4D6CDCE8D272F /* text_encode.c */, - FE30B0B96ED39FB5F73754230A57BD76 /* text_encode.h */, - 842C6DD85798D71FFE0F6A3978064B29 /* thd.h */, - 62F24680A7191E0AFB2AFD85F1CDB863 /* thd_posix.cc */, - 6499B5E2D93CDB8E5DB72F18F8D4E328 /* thd_windows.cc */, - CB12FE3D2DB278EC95BA232B873626CB /* thread_quota.cc */, - 851DEDC9DCA1CDA1721AF7FC32D0077B /* thread_quota.h */, - 2E6E5A9884964163F23FB4EF2D037847 /* threadpool.cc */, - 3F71566D09A34EC5C42C27FC4DCD6911 /* threadpool.h */, - 4E3615D76DA8B5E946AB2F0F10B647D4 /* time.cc */, - E4D3CB0CE6FAFA4A3EA9A781FFA104CD /* time_averaged_stats.cc */, - FDF122BF4B038C3DAE23472B7EC2006F /* time_averaged_stats.h */, - ECB17867ECE1D701EA31E17DAE72FF57 /* time_posix.cc */, - 032B23396516DD7A1D65EA615F8B3100 /* time_precise.cc */, - 54D2E0296904A01121472F6025702E25 /* time_precise.h */, - AF34AD69E917276389B10B463DFC4DEA /* time_util.cc */, - FD2626A7C8244BC1830F80CAB64788D9 /* time_util.h */, - B771955A4CF01CC7A51B204023248969 /* time_windows.cc */, - 0477AA6CF1B36AB9D8D58B968512BE93 /* timeout_encoding.cc */, - A6750FB37B2CCF78031E3D09A2A05F51 /* timeout_encoding.h */, - F02DA9FAF929FEF2B82003022CB2154D /* timer.cc */, - 93F3D52C2DF0FC57942B889E9D3CD7C9 /* timer.cc */, - EDFBD28B8B0233E8BD26BDC0EBE44644 /* timer.h */, - 2E25E97677A1F67935E003006B920A24 /* timer_custom.cc */, - 26783FFD06BDFB3076708698B2BEE932 /* timer_custom.h */, - 4346B0DFD149A2399F33D6770A67B990 /* timer_generic.cc */, - 28FD653AF6EE2E8E0101B0B496730D20 /* timer_generic.h */, - 2C6F632ECF7BDA73193731720C29D133 /* timer_heap.cc */, - 4F96768A3D8951D7AA42A0BA458EF7C0 /* timer_heap.h */, - 7CA55CBAF2E98B57BFFEDABA03F25B38 /* timer_manager.cc */, - 8BF5D76A3CA3083DD4BE85649E7DD57D /* timer_manager.h */, - B1D23DBF05EC7616586E3128C524322A /* timers.h */, - 218EE2F0CF0A30A862E8758F5857CE11 /* timestamp.upb.c */, - CABC20E5064D11C863B55866F6D74AD3 /* timestamp.upb.h */, - 0053C09A789A18B70B272E4C7999B5C2 /* timestamp.upbdefs.c */, - 49227DD1593D1911AB2C7D0809DFB7AB /* timestamp.upbdefs.h */, - E65254C7F4A2A475753D63DC57C94241 /* tls.h */, - 4207773A082DFEE41152DF199C6E7BE0 /* tls.upb.c */, - 2E9C813306FE4637E3A1F3F671AE68B1 /* tls.upb.h */, - 16E16CC3956A82204A9FA94DCB43F459 /* tls.upbdefs.c */, - E4B3FB2498E704230EE92C863837CC22 /* tls.upbdefs.h */, - 79E75A2A64ADC6B112F117C024ECBB58 /* tls_credentials.cc */, - 778B7A0BF342480EC6F96B9D0D5F5333 /* tls_credentials.h */, - 72EEBA3EAD4BEC7B279F66AF4A9BD5B0 /* tls_security_connector.cc */, - 3682895FACDF0D37E958708E547839C0 /* tls_security_connector.h */, - 486B2A05F8690A41848B07F503F37C85 /* tls_utils.cc */, - 3047FB83474EAFCB097933548DB42C08 /* tls_utils.h */, - DFAEF6561E267CBD51ECA0CB30CE1C7F /* tmpfile.h */, - 66BCA1F64D4618F6A075CFCFEE4C3CC3 /* tmpfile_msys.cc */, - 5D0CBC24FE3C66CAEBDDE5783D7C683A /* tmpfile_posix.cc */, - 4AA8E7D424EF8D56A1B62571FE186717 /* tmpfile_windows.cc */, - 30CCB2159D5C999162A39AB66BBBEBD6 /* tostring.cc */, - DC72CB81E12AA31C703F7BB4579F8897 /* trace.cc */, - 6D838FE157D63BD8E610C1FF83B8DDDE /* trace.cc */, - F0279C2FB3DEAE77649A5360F9E3A262 /* trace.h */, - C09630187431D682F28B9EF86B91E3FC /* trace.h */, - 0D73C62F74C60A0038816BE380CCFB1C /* transport.cc */, - 9BD5515A5433C313CEFF12AC90FD080A /* transport.h */, - D1BF1B629F0D9837451E1439695FA3A2 /* transport_impl.h */, - B2FBF9E6367F69C3C642BA8281F5E82D /* transport_op_string.cc */, - A637D97158BCCDA36190D250E7E0D300 /* transport_security.cc */, - 0A9302647F77DB9B0C47A2E75BA59730 /* transport_security.h */, - 422AFB3BFD9E3B15F6863171275A548C /* transport_security_common.upb.c */, - 297FC92917D7076EC5381279B860A3BF /* transport_security_common.upb.h */, - 2BE9CF2096C3004AA4744BD750E3AFEA /* transport_security_common_api.cc */, - D288EF42924243D421A2DF302D696E7E /* transport_security_common_api.h */, - 7A25EF913710F67CCE26F52CB41CD585 /* transport_security_grpc.cc */, - 462805E562D5F862B285CDEF040DCB0A /* transport_security_grpc.h */, - 093F493F9F1708A9BFC9D9CC9BC36975 /* transport_security_interface.h */, - C8C6CD11CED6B0BDF15944727972ABB8 /* tsi_error.cc */, - B18882219F9B11BFA89439644B1C5CD3 /* tsi_error.h */, - 076E8422B2457B1D1A05CF6DEB52DBED /* typed_struct.upb.c */, - 3A609003157E264550C579338BDECEB6 /* typed_struct.upb.h */, - 791E99B7A60C6BBD3F48D9044F46B429 /* typed_struct.upbdefs.c */, - 4E3EC9FBC638972A41DEEE83F8B1D59C /* typed_struct.upbdefs.h */, - 491C5B9E8DCE4FAD6CF9F43BBBDEB359 /* udp_listener_config.upb.c */, - F3E7E7FEA136401A4F0A999AB6E35A19 /* udp_listener_config.upb.h */, - 0AFE4AF6BADEF74CD5AB394132C86502 /* udp_listener_config.upbdefs.c */, - 8B49BDB0B122F7A383A21639753D0255 /* udp_listener_config.upbdefs.h */, - 739D4FF66BEB47E0F6269CCDE0CE4A11 /* udp_socket_config.upb.c */, - E2D327B3862D4AFA0F0F250F058C4BD9 /* udp_socket_config.upb.h */, - 542E2201649FD3BA033B8BA4C225AB0F /* udp_socket_config.upbdefs.c */, - AB278426E730FA69DD5BC8703BE4ABCF /* udp_socket_config.upbdefs.h */, - 3514264010C09B881E6399A2067BD9AC /* unicode_casefold.cc */, - 4E756628518B41DDE180232871CCD954 /* unicode_casefold.h */, - 737B6661AD0760D4D5414485B0660AC2 /* unicode_groups.cc */, - 17B73653A6E77DBE5B4C4D0CAE6EFFD7 /* unicode_groups.h */, - 8E1B174FEECD67B732F4B53E8CAC8B2E /* unix_sockets_posix.cc */, - E595D21180F46EC1D31980433C2CDE28 /* unix_sockets_posix.h */, - 6D8427AD34E3BD97B10C729A03F31357 /* unix_sockets_posix_noop.cc */, - D79A4F5BB76F6BF5BD9A1968A3F80295 /* upb.c */, - D4EEBEB7898F2FE1A175505C29D11F80 /* upb.h */, - F87DE3ED40247E87F65E4242C07E580A /* upb.hpp */, - 9EE984C6FFA08D78838F9D8AB59D43F1 /* upb_internal.h */, - 6C9312774575FDF80F1289CC775A360A /* upb_utils.h */, - B66B93D5000DA5C21FF15A6A0F3C8BC2 /* uri_parser.cc */, - 9F8955684B1A4A09A1A5E59199EF40E9 /* uri_parser.h */, - 3D2367412FDBD2B02BCC9F3F95E2137E /* url_external_account_credentials.cc */, - B73CD2EF881EEFFD3B2755144FCA37C8 /* url_external_account_credentials.h */, - 3FC4C4C93886B9E9326D162E2DD4C7C5 /* useful.h */, - 4ABF63F882F4DD9763E0CCDDFFA63080 /* utf.h */, - 13B72E44E24DD163410789E57AD9C4CE /* util.h */, - 6D242905080C9B8F4F29CE9A29007048 /* validate.upb.c */, - 9E7A22249F18452FC677E82BFA9F8256 /* validate.upb.h */, - B6B6FC6C8C36B2AAA03E9D840094C610 /* validate.upbdefs.c */, - E6810D0196C1EB8D83072918AFC948C3 /* validate.upbdefs.h */, - C9511868A4CEA24D50389DAB2D7BEFC0 /* validate_metadata.cc */, - 38960C23A5CDEF5518BA2D029DD0B7B8 /* validate_metadata.h */, - 4D645D2697EDD388B99515B5CD568C59 /* value.upb.c */, - 14FB3AFD1D96EB8865F674ED16F8F9BC /* value.upb.c */, - 173E5A4C450048B6C6C6B302691C1974 /* value.upb.h */, - BD89197787961B81A6DB15F600E03C3C /* value.upb.h */, - 71DB43E21179D2027ABF07979D1D220E /* value.upbdefs.c */, - 1DEF0FE1C57D52046F1679B62D82BBC9 /* value.upbdefs.c */, - C3026A74C8A47C9916019DC5612A832A /* value.upbdefs.h */, - C31858E4515A83E1F4971BB4EFB1ADA4 /* value.upbdefs.h */, - 1C4396D42440B47D972C429C01F5B858 /* varint.cc */, - 1DEE616058B744730B0D59A55A36A813 /* varint.h */, - 0DA0F50CCF3ED2684A872EC348D3A902 /* version.cc */, - BA9307C509854FD4A7A28A1873BA97C0 /* versioning.upb.c */, - 76E489E853597BF2D6F33EF918DF4ED9 /* versioning.upb.h */, - 65D3CB1B485FF8F7E058F4C197D06891 /* versioning.upbdefs.c */, - 3C5F42D556C26DB296C6B68AF657A8EC /* versioning.upbdefs.h */, - 5AA069650C7EAC552FD5DD0AB2CADC6A /* wakeup_fd_eventfd.cc */, - 34092176C974227E1B825D596BB3580E /* wakeup_fd_nospecial.cc */, - 0709B52C49A88C084216A76A6F816228 /* wakeup_fd_pipe.cc */, - 65F62C3B8A444B71E0A3B4BF1B03D155 /* wakeup_fd_pipe.h */, - 663A111C8C2CE477620645403636787F /* wakeup_fd_posix.cc */, - 475993D0793102301F1F6242EED7CDF4 /* wakeup_fd_posix.h */, - 62481F32653432C7A1D0E8F8A6445054 /* walker-inl.h */, - B46CD8F0885C87FA85231ACFC5552B77 /* weighted_target.cc */, - F1C1BFAAB2C8A5FB9112D556774EA352 /* work_serializer.cc */, - 2A90AF16F929756ABD2D82DA0C0D638C /* work_serializer.h */, - 4ED571A34E3B677C5F7AEA3F2FBB929B /* wrap_memcpy.cc */, - 986D98538B575CF72D63387538891DBB /* wrappers.upb.c */, - C174AA07C3256E1DA497927FF6962A9D /* wrappers.upb.h */, - 09B5ED5FF8068FC36343D9D450D40A8C /* wrappers.upbdefs.c */, - 847F94B62BC4C08B64A8B1A285CDC65B /* wrappers.upbdefs.h */, - 7C47A0B5C04C4EAEAB4E3637CF1386F3 /* writing.cc */, - E2490F9EFDCD38D0882590687B9960EA /* xds.h */, - 0A688A2D2E641068B51C641ABE7E28A3 /* xds_api.cc */, - 4F58040F8DAD60DB9E92C3636B08166B /* xds_api.h */, - B0CC3090F23B3576D934D51450358FF2 /* xds_bootstrap.cc */, - 903A97B774EE927AEF7320B91CA5A2A0 /* xds_bootstrap.h */, - A1D289E4B6273605034E98499C47A590 /* xds_certificate_provider.cc */, - 9E84782180234D80DDAA46771D10D223 /* xds_certificate_provider.h */, - DE46969394F93E30E45B318EE4D104E0 /* xds_channel_args.h */, - FA5F2259F1F974EAD2E550059282DF46 /* xds_channel_args.h */, - DAF4BD13C4CDBC3FD9BA2324E42B1467 /* xds_channel_creds.cc */, - DD70D9CD6B0432AEB93E02E1FB8489E2 /* xds_channel_creds.h */, - 08F56A47FD47D730D49C1F0AC250A77B /* xds_channel_stack_modifier.cc */, - 33D878849C7C735A5538DC91CB06B95E /* xds_channel_stack_modifier.h */, - 0DF09409695F4FDF672633C9D5849BFE /* xds_client.cc */, - 4EB1DD57F7FE82E39EAD20F2B74F0CDA /* xds_client.h */, - 26F520E1CA138A7A296559A144520015 /* xds_client_stats.cc */, - 2C162A8765788186600371216F98F67D /* xds_client_stats.h */, - B4763C786CE3AC0D9A7CBDF0C2B9A324 /* xds_cluster.cc */, - F42F8A9459FA648D94BDFBB529A123F2 /* xds_cluster.h */, - 00906BD353BE3993A86E048716F07463 /* xds_cluster_impl.cc */, - 2A45C27079B48D59BF85661F6D3ED49B /* xds_cluster_manager.cc */, - 0A0303B9017479130F16A465F2F04856 /* xds_cluster_resolver.cc */, - 222D5CD5D1F9F334073952EAF77795A3 /* xds_common_types.cc */, - 43573CD239787D73DF3CB946F948C1A0 /* xds_common_types.h */, - 972561565E92A4BA5A5C6C1509292AD7 /* xds_credentials.cc */, - 6FC3C0AAE4B7ADAEA82189879E4AB7BC /* xds_credentials.h */, - 9E6391EA8F6B7CB2142584D4C462A3A3 /* xds_endpoint.cc */, - 146753AD1D969149BF2CBEC9CE315452 /* xds_endpoint.h */, - 57675477D4DB0E5E71E74831B267B9F6 /* xds_http_fault_filter.cc */, - 01D620E45BD3B627CFB5EFB06408CF0A /* xds_http_fault_filter.h */, - BA49C069162FFC8D8C567CAA398552CC /* xds_http_filters.cc */, - B9595CB87A6A7D9B9ADB477A24A1D960 /* xds_http_filters.h */, - 017B4D3115AFB76F1624CEE3990915EF /* xds_http_rbac_filter.cc */, - ADAF088419ED98FE6E8A89C24FB71413 /* xds_http_rbac_filter.h */, - 9EFE22F6E0E0B54AFE8CE1C1D031B6A6 /* xds_listener.cc */, - F3BDC6E666DC47C867D5776A20B0F742 /* xds_listener.h */, - 22A644ECF56754B4B4DF74E6A40ACAC5 /* xds_resolver.cc */, - 76C31F7D30AAD11934DCF28A2F30939B /* xds_resolver.h */, - 39D1C24B205845449C3DD36C7733E568 /* xds_resource_type.cc */, - 1CF483FE30166C6F9C092B78F1DA9732 /* xds_resource_type.h */, - E5E22965A8E2CB5BC99C33E43BE01C61 /* xds_resource_type_impl.h */, - 5C4AA539E9FCA0404B32736D54E2329B /* xds_route_config.cc */, - 30AC3A8E167308D1D7240D3DE5D834AF /* xds_route_config.h */, - B3C6C6A84FDD092305F1808E82E13B45 /* xds_routing.cc */, - FB3F7C722862A72BA6197A56886703C4 /* xds_routing.h */, - 4DFA71A50289FC31A750032EB1A1E902 /* xds_server_config_fetcher.cc */, - ABDA16D605B2CDE3BDC3C7046A243A15 /* xxhash.h */, + BEA4835009B689EA278D319FF3255E8C /* AppDelegateSwizzler */, + 0C2DF96B6A951EC18EFE24BABE382E9A /* Environment */, + 136643E5B9B32D9E2276E44A42C0BD55 /* Logger */, + 60B8083C11FF7AA4F59DE4362A25F72D /* Network */, + 40FE29309E588643F072B3349F159443 /* NSData+zlib */, + A35875836FBC42F1556AFA84C7B216C1 /* Reachability */, + FA453D3692263FCAC0266B2017CFD126 /* Support Files */, ); - name = Implementation; + name = GoogleUtilities; + path = GoogleUtilities; sourceTree = ""; }; - A3A09909A38178D599F3A22DC92574B9 /* fixed_array */ = { + B9ABCDF92C43295182DE9A171FA21B04 /* FirebaseCoreDiagnostics */ = { isa = PBXGroup; children = ( - 0228BFD2D8F7A219960F55844927159E /* fixed_array.h */, + A7477848E9C32365E7D6633A65BFFED2 /* FIRCoreDiagnostics.h */, + EA746CA91047F98307F850B98BC40558 /* FIRCoreDiagnostics.m */, + F7F01585B26A44F76414EBED6D38AD26 /* FIRCoreDiagnosticsData.h */, + F37F1BB4FC370429FF4B9B51F75D78DF /* FIRCoreDiagnosticsInterop.h */, + 78819602C38336B6A02B60CDA1F953B7 /* firebasecore.nanopb.c */, + AD534EB127F02E3E86055D9DF95D78C3 /* firebasecore.nanopb.h */, + 69432D862A22284F6EDB29504B1CBF10 /* Support Files */, ); - name = fixed_array; + name = FirebaseCoreDiagnostics; + path = FirebaseCoreDiagnostics; sourceTree = ""; }; - A4FD254B0EA85F4CDB8CA65FFEF8869D /* common */ = { + B9FF1B83BE9D85FDDE4C4C97ADD52BB1 /* cordz_info */ = { isa = PBXGroup; children = ( - 936BA4CAF22250B9C86D349C8466FBF3 /* common.h */, + 79626D81A60C93F09ABC1A997C630CC3 /* cordz_info.cc */, + C1635AFD84A6B1B4041499D26FAF01A1 /* cordz_info.h */, ); - name = common; + name = cordz_info; sourceTree = ""; }; - A5045BEE17B3C6878EAC52D049660046 /* container */ = { + BBAA066C9D6979DB16722638BD77FD50 /* FirebaseAuth */ = { isa = PBXGroup; children = ( - CF84102C19E84A907B43C8B687D2EC5E /* container.h */, + 879EB36DAEAD524BBDA2B9CFA6182EF4 /* FIRActionCodeSettings.h */, + FCE4421EC627FAAEBEA77A5FE37B4E23 /* FIRActionCodeSettings.m */, + B9040320C1CB412C60A6A4FA1C723CC8 /* FIRAdditionalUserInfo.h */, + 6F480194DD431451C80EAF7E292B052C /* FIRAdditionalUserInfo.m */, + 8BAB536E289DE3F300BE1B0145F3D113 /* FIRAdditionalUserInfo_Internal.h */, + 521B91E77BF94B866CBB3FDB3A41FA97 /* FIRAppInternal.h */, + 477CE6BABF27F3EE00B02190BDCC2B8F /* FIRAuth.h */, + 8A11C0A6FB6BA0C96EF2E6E43C3E4233 /* FIRAuth.m */, + A2F6BD49597D2B6F92781A90DB26B716 /* FIRAuth_Internal.h */, + 75657D8E204963652AE48744EA47754D /* FIRAuthAPNSToken.h */, + 6BBFE892DE18EC94257F90037B3A47E7 /* FIRAuthAPNSToken.m */, + CDF91304F598119171D5047014E8371F /* FIRAuthAPNSTokenManager.h */, + 44723D065C9A8A4D2C38CE4FFB9634CC /* FIRAuthAPNSTokenManager.m */, + C58023E6A779DBAB49B47D22F2F7E801 /* FIRAuthAPNSTokenType.h */, + 54E88675BB15AFFA27D7211E8A5AFA2A /* FIRAuthAppCredential.h */, + FE0833A3F9566388CFA611A5DF536E7E /* FIRAuthAppCredential.m */, + 1A4BF35E68828D6975FFCC44A1B34A77 /* FIRAuthAppCredentialManager.h */, + ECDFD149C03EFFE94F66F8EB8E73CE76 /* FIRAuthAppCredentialManager.m */, + 1FBBC2CDF5D1DF33A2E82128A6FC3B99 /* FIRAuthBackend.h */, + B437BB0C58D1F2C6B8682233F0E8F27D /* FIRAuthBackend.m */, + D499FC2C2EA1EA16DC2B666670E97C2E /* FIRAuthBackend+MultiFactor.h */, + A2C3EFE5CB5842DE580323D9957317A6 /* FIRAuthBackend+MultiFactor.m */, + B23AE3F60167E893AB927FB4F1D7510D /* FIRAuthCredential.h */, + 9EA2ED234CDB93EC3F697F04AB814C9B /* FIRAuthCredential.m */, + 1A3AE5A31B5AEA6AB4C30BE04DA5F00A /* FIRAuthCredential_Internal.h */, + 0F814C42A3EC2530D6D418DBBDD6995F /* FIRAuthDataResult.h */, + F7B72EAE990F8E18EF3876197015C20F /* FIRAuthDataResult.m */, + 8ED4E9B594F2EF1387350F8A7F070D4E /* FIRAuthDataResult_Internal.h */, + 00C6452C5F9FCECAC8273E733BDFB741 /* FIRAuthDefaultUIDelegate.h */, + FFC6C80631658133A66CF1F125F5FE9F /* FIRAuthDefaultUIDelegate.m */, + 77552EB18CD885E66C200BACA5FA0831 /* FIRAuthDispatcher.h */, + 57A0DFA918CF7DCFA299B3329F35DEFB /* FIRAuthDispatcher.m */, + AFFD2D88B73783F06582A9C7710BE467 /* FIRAuthErrors.h */, + D48695A91ECA100ABC640B5C018E6DF8 /* FIRAuthErrorUtils.h */, + EDFC08C7A5E9BA4465E4E0368C7F6F9F /* FIRAuthErrorUtils.m */, + 7DFD83B014E45EE47DFF2DEC599671CE /* FIRAuthExceptionUtils.h */, + 70FE3BE36F396F0EEBAF0368A25FCA42 /* FIRAuthExceptionUtils.m */, + 7FEDD8FE45FA214D8E636E31FA3734DC /* FIRAuthGlobalWorkQueue.h */, + 05D83D0E0C3D491F291B11C287B131FE /* FIRAuthGlobalWorkQueue.m */, + CDB8A24539B9AA5078F48DC60784A68F /* FIRAuthInternalErrors.h */, + 791B1A7CFDA66689702391888EBBCC2F /* FIRAuthInterop.h */, + 7425DC3914D3335DEA73DF46DB6B56D2 /* FIRAuthKeychainServices.h */, + A10D0D00E0B2F6FFB703C52B37B48DAD /* FIRAuthKeychainServices.m */, + AF8EBC9309AE8A177D8BEABE31D0A98B /* FIRAuthNotificationManager.h */, + 86DFFCCC7E7FBF799135A6010B45A3F4 /* FIRAuthNotificationManager.m */, + 02AB8AC1CC334AAE331BB0343973A9CD /* FIRAuthOperationType.h */, + EBED0621CC3ED815E5B64865EA428F6D /* FIRAuthProto.h */, + DB085E33BA3949B0A03FCE79AB8F1FA7 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */, + 77E18FA9FF8A595831D9B9590E13D802 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */, + 101194CD2C8DE102E3A0F1B9CE9719F3 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */, + B430EF219DE6AF565B54570D358AF22D /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */, + 0D83085055F60CA17755EDF90A5110E6 /* FIRAuthProtoMFAEnrollment.h */, + 3F5967F0676C6A24CEEF85ABA5D672D5 /* FIRAuthProtoMFAEnrollment.m */, + EB4F1F6009F93E10BC94802865508443 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */, + 24535C698A0195B571B5CBF6734B6963 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */, + 3877C2FF7363C478318D1570ECA4AC01 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */, + AA8ADF2D3F0CCE03BCCF7B642477EF17 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */, + D3F0D305E643BE3C8E59649EBC01C3BE /* FIRAuthProvider.m */, + D94425EB1D3A5AA867FEF18E733240E9 /* FIRAuthRequestConfiguration.h */, + 47D932414022EC9A2A59D90434F80849 /* FIRAuthRequestConfiguration.m */, + 808E0C2D63FF669DDE1442C36A4C20AD /* FIRAuthRPCRequest.h */, + 889EEEB4EDB273694D6B2168E661BACE /* FIRAuthRPCResponse.h */, + 9F3AA2D50848F56517D1FF0993EC5E9A /* FIRAuthSerialTaskQueue.h */, + 48F1007AE390F9D3188E8FB6809ED38F /* FIRAuthSerialTaskQueue.m */, + 8ABD160F1091AD7CF9EB4B9C9A3932DB /* FIRAuthSettings.h */, + 6B4E699F60BDC9D7B947E956F7351296 /* FIRAuthSettings.m */, + BF53D64C08E5253830689DB14CF31A6C /* FIRAuthStoredUserManager.h */, + 298BA738ADB1D61E877A43293E89B169 /* FIRAuthStoredUserManager.m */, + 9DD46A054630618014019271AFD33BD3 /* FIRAuthTokenResult.h */, + 7E62E27427F0AFE765A98F8FCC33D0A1 /* FIRAuthTokenResult.m */, + 347236CC35C107AB1AB78F5169C4B556 /* FIRAuthTokenResult_Internal.h */, + B17738D891417B98F9F8FBA04929B4D1 /* FIRAuthUIDelegate.h */, + 1BEA5CED217FE4E1D219573C4ACA749F /* FIRAuthURLPresenter.h */, + 8F88FF690853FD7851D3E61081F57FC8 /* FIRAuthURLPresenter.m */, + 63C8EFD10891E8728DE99B0869B8A724 /* FIRAuthUserDefaults.h */, + 93A7B8B6DBAE0538F17EB2DAB7E5DFED /* FIRAuthUserDefaults.m */, + 030D9CC2D8A108AC77CF6158C5408A6D /* FIRAuthWebUtils.h */, + 155BCCC589828DAF3A42306AD6E122F4 /* FIRAuthWebUtils.m */, + 5197A5BB51C676A7E2D142CFBC76CC3E /* FIRAuthWebView.h */, + A0EEB92B21A22CA56D35DED421126094 /* FIRAuthWebView.m */, + 605A6A3A9617F15346A7A0B7688DE823 /* FIRAuthWebViewController.h */, + D1E24F32126A81E77B19F2C15A8A12B0 /* FIRAuthWebViewController.m */, + 60EFC22609D6812930E3601D2BD74F2B /* FIRComponent.h */, + A093F80F9120B6B9D64137FFFB66A4FC /* FIRComponentContainer.h */, + 9B3F0B4A00FB713051A73CC8ADEC325B /* FIRComponentType.h */, + 0F76F045B57917451E4B7CBA72C02390 /* FIRCoreDiagnosticsConnector.h */, + 77F463CEF0EF2441522F6F3D223329D7 /* FIRCreateAuthURIRequest.h */, + 3D5694A827C36B21402B1056213E7307 /* FIRCreateAuthURIRequest.m */, + 04958F931B3C3F8124FF420CA40F22F1 /* FIRCreateAuthURIResponse.h */, + 31ADCF55E097F295B6CF83A4F8650A98 /* FIRCreateAuthURIResponse.m */, + D60E4E8E58620EC53F9029521141338C /* FIRDeleteAccountRequest.h */, + 0255947B73F9D231FDB1F9468A734938 /* FIRDeleteAccountRequest.m */, + 7099B4CF878ADB2443AA1E616375CED8 /* FIRDeleteAccountResponse.h */, + 8D3BB518CC632FB3081A19BEC238298B /* FIRDeleteAccountResponse.m */, + 5BD4821D6E145615E6F2B31373A41997 /* FIRDependency.h */, + C0D595532931C4E308169CD53104436E /* FirebaseAuth.h */, + 95D159FEE6E54FDC41C697A2E6435B30 /* FirebaseCoreInternal.h */, + 7D57196BC18A2CFAD5928D02AAA1AA73 /* FIREmailAuthProvider.h */, + 8D35BEE2025ED271C0287817F421B033 /* FIREmailAuthProvider.m */, + 69554C42615EE5BBA4920EBC13FD1F64 /* FIREmailLinkSignInRequest.h */, + 99934B9738535BE85AF35DD96796E611 /* FIREmailLinkSignInRequest.m */, + AF9D1966DB5879AC81FE4761282F3670 /* FIREmailLinkSignInResponse.h */, + AE97A43861136C2583C8E904B391D05A /* FIREmailLinkSignInResponse.m */, + 9803CEE8999CBD865FCB76D78D4B0343 /* FIREmailPasswordAuthCredential.h */, + CC7A0E9CA2BD44CA4E71AC377B3117D6 /* FIREmailPasswordAuthCredential.m */, + 6752DC94ACFA57DF3EF28EDB85FDF9B6 /* FIRFacebookAuthCredential.h */, + 154E416EF39A403550F51DA81A0B32B4 /* FIRFacebookAuthCredential.m */, + EF21339D1EBD36F16F0C839B782DC84F /* FIRFacebookAuthProvider.h */, + 864F49F71A38068C775E72856B75BA11 /* FIRFacebookAuthProvider.m */, + 8D06B24F85B989D2BA004B5CDB767846 /* FIRFederatedAuthProvider.h */, + B3563EB46A817257E6BDC38AC7359405 /* FIRFinalizeMFAEnrollmentRequest.h */, + B2B0069BE8FD1A797CEC575F2029A9C2 /* FIRFinalizeMFAEnrollmentRequest.m */, + A9727725BB8C06E94DB8881EABC9B36B /* FIRFinalizeMFAEnrollmentResponse.h */, + EA2740E451367A01589EA044F23D158B /* FIRFinalizeMFAEnrollmentResponse.m */, + 8F8CFD4C0E1CAF54D4D855705DBED6F3 /* FIRFinalizeMFASignInRequest.h */, + 4BE3A062E351A3059228607882A4A2F6 /* FIRFinalizeMFASignInRequest.m */, + B2A6E7908BF85BC6DBCC19074CE7B30E /* FIRFinalizeMFASignInResponse.h */, + 18C9098F0AA10D81D38432D8F0D001AA /* FIRFinalizeMFASignInResponse.m */, + BD1DB3DFE1F6E9AA1ADA0F536309E35E /* FIRGameCenterAuthCredential.h */, + 95EE03B9EAEA1048290C96FB15080D74 /* FIRGameCenterAuthCredential.m */, + 189BE9F0F9C3B90FF2847B32DA15A742 /* FIRGameCenterAuthProvider.h */, + 2757EF76F5556A9F75638A8B36E167BB /* FIRGameCenterAuthProvider.m */, + 47A8498570BEB4875B3F1B6365EEA9EC /* FIRGetAccountInfoRequest.h */, + F725FDA8784B5A8178AD286A4B87538A /* FIRGetAccountInfoRequest.m */, + B5D20CB329316D9E0BD50AB1E7BFCF54 /* FIRGetAccountInfoResponse.h */, + 26F8A69679E852A4E9B7F6FB03A51956 /* FIRGetAccountInfoResponse.m */, + 3F0CEC729566C0D94170A473CAFEDA04 /* FIRGetOOBConfirmationCodeRequest.h */, + 2EB8C00256225A9BA8C1B51EC4B203A4 /* FIRGetOOBConfirmationCodeRequest.m */, + 64AB3AAD31D7D6E93C693757039E1487 /* FIRGetOOBConfirmationCodeResponse.h */, + 9A51DE2FA7B6C73B8FF536301C2F9B34 /* FIRGetOOBConfirmationCodeResponse.m */, + F60B31F0E4AAA0B72FF267F2FA8430F9 /* FIRGetProjectConfigRequest.h */, + 62FD6D6776C4B69CF58C92BED1CB348D /* FIRGetProjectConfigRequest.m */, + BDB2D9BC37BB263B3E75760B33A58EBE /* FIRGetProjectConfigResponse.h */, + CCB17755FE79D3644838238EF45A2A58 /* FIRGetProjectConfigResponse.m */, + 1F41C0000CC5C14E085CDEF4E387CD3B /* FIRGitHubAuthCredential.h */, + DC524CB3262A9D45FDC1F53DA406B415 /* FIRGitHubAuthCredential.m */, + B9F1B3138853534A0F038A300DA8FAF0 /* FIRGitHubAuthProvider.h */, + E2AE9A876DFD772F87DBD1C715318B0E /* FIRGitHubAuthProvider.m */, + 81BF27A9D92C5634528A983610301302 /* FIRGoogleAuthCredential.h */, + CBF3F651D0E04E106315360DFABE9A9E /* FIRGoogleAuthCredential.m */, + 214643DD544826724EA993D9213BA3A5 /* FIRGoogleAuthProvider.h */, + 4E1A8AAA43D56A8C6FECECD23938CE18 /* FIRGoogleAuthProvider.m */, + 1D3271BBF5FDB56348DA67BE051A937F /* FIRHeartbeatInfo.h */, + 3C94CEDDBD08866F36CB208C07CB3CD8 /* FIRHeartbeatLogger.h */, + B36B32D91F1F810D092819DEFF0BE8A6 /* FIRIdentityToolkitRequest.h */, + 9C71A9C432159D417D4D56459A5FC6B5 /* FIRIdentityToolkitRequest.m */, + 4D7B133F87D98A84DB5CC78D2895AB25 /* FIRLibrary.h */, + FE096CC79FB761BEB3AD648E5CCB4563 /* FIRLogger.h */, + 3AFA09B191C24C5363C0D7AAD76305C4 /* FIRMultiFactor.h */, + 7C78BA3A60FA852B83EC6E98A124D7A3 /* FIRMultiFactor.m */, + A364CB3A6B417F7A3D69445D36C9FC22 /* FIRMultiFactor+Internal.h */, + 932D34888131B3A6D230A3B5967F2788 /* FIRMultiFactorAssertion.h */, + 83054DCEB1E12453BA6FA0C990431A8D /* FIRMultiFactorAssertion.m */, + 75FB01168CEEE27FDD56EEF60AADACA8 /* FIRMultiFactorAssertion+Internal.h */, + 2F762CDA5FE9DEFA3A1BABCED1730757 /* FIRMultiFactorConstants.m */, + 3600BC5465490F7D0650A582AAAC8E59 /* FIRMultiFactorInfo.h */, + 433E46B2A1E263EA78866579B845FA33 /* FIRMultiFactorInfo.m */, + FD0FB67B806D8EEC8C3E053D846F955F /* FIRMultiFactorInfo+Internal.h */, + 43623CB6C4DAFF7D742D70A6E3E9390D /* FIRMultiFactorResolver.h */, + B28604B517C2CE2A8E7A6FE766721961 /* FIRMultiFactorResolver.m */, + F35231F53F623CC193F69DAE6DF85620 /* FIRMultiFactorResolver+Internal.h */, + 2C1601C89FB6C32B2F1828CFB4A663E0 /* FIRMultiFactorSession.h */, + B0E3C25D0AF48B726D5BFF08AE27CBD8 /* FIRMultiFactorSession.m */, + 204B6969AA8AB4B7254F7B3780CA30AA /* FIRMultiFactorSession+Internal.h */, + 432EAE3FCBDEF38E16D4815BFE8FAD36 /* FIROAuthCredential.h */, + 5A3957DDDF1467DD664A2B73B6668DC9 /* FIROAuthCredential.m */, + D09A85EF031EDDF34D6E70C0C6862F97 /* FIROAuthCredential_Internal.h */, + FF89CA39139724FBB70CA9F2C5F044A4 /* FIROAuthProvider.h */, + 5810AC4EA2A014E30E25A6BF5CFCFA48 /* FIROAuthProvider.m */, + 8E4188992B9B4A607DF20124CF73D9D0 /* FIROptionsInternal.h */, + D03F2F8A6F5C508C40A6FBAA0B6E69F7 /* FIRPhoneAuthCredential.h */, + C2BF957D6662E4477A4518C82A7380F7 /* FIRPhoneAuthCredential.m */, + 6D0C7686B1EABDA98BAF2F1379567516 /* FIRPhoneAuthCredential_Internal.h */, + 42FD8A4A0C7CD39B663EB7E302B645B2 /* FIRPhoneAuthProvider.h */, + 317DEA1DD53EE8F564157910F8FB34CA /* FIRPhoneAuthProvider.m */, + 69CF973F5BDDFFC976063970BE29C7B2 /* FIRPhoneMultiFactorAssertion.h */, + DC13FD278763C3F982C3DABFF1AB1649 /* FIRPhoneMultiFactorAssertion.m */, + DCAE0419CD3F7E14DC4A749AFB8E1F45 /* FIRPhoneMultiFactorAssertion+Internal.h */, + 22999C0770A2A8C2DD0A290033F68E1F /* FIRPhoneMultiFactorGenerator.h */, + 704B3C60447FFFC6BF7270E781FD58D2 /* FIRPhoneMultiFactorGenerator.m */, + 55B9F6438DBDE1C305B9CAED6CC1C042 /* FIRPhoneMultiFactorInfo.h */, + D2AE186D200463881AA9E8C56AC37AE6 /* FIRPhoneMultiFactorInfo.m */, + 49A8BC6A4373AD4E7F01605786C47E9F /* FIRPhoneMultiFactorInfo+Internal.h */, + 4A7242FA240BCEA5FBC0B1EC7C49C1AC /* FIRResetPasswordRequest.h */, + 5BB4312F3C1536478D54B6CFD2694530 /* FIRResetPasswordRequest.m */, + 424FAE9ABE662E2041DF2DD341DC229E /* FIRResetPasswordResponse.h */, + 340FAE272D76CF2EAD2FBB111B2191C1 /* FIRResetPasswordResponse.m */, + 48A44ABF905DA4E1DECF657095CFE0C5 /* FIRSecureTokenRequest.h */, + 96FAC6858622270B2F1AAF166048DF64 /* FIRSecureTokenRequest.m */, + 743248BC90870500509F1E9FA9EB04E3 /* FIRSecureTokenResponse.h */, + EBC3BAA571FBF68C4B2494866427D388 /* FIRSecureTokenResponse.m */, + 5EA85A72A034EC7898DDC137CFA18AB7 /* FIRSecureTokenService.h */, + 11350B25D668B01D5F6C0AE072A85580 /* FIRSecureTokenService.m */, + 7BDBF5918ABB127A7110E6425D61B517 /* FIRSendVerificationCodeRequest.h */, + 96572DFF9523581D6A99FBAC33B61583 /* FIRSendVerificationCodeRequest.m */, + A15196D6BFF9F8EE0462014322CB7565 /* FIRSendVerificationCodeResponse.h */, + B7DE0D03E5F3591F88D52D0456AE8FC3 /* FIRSendVerificationCodeResponse.m */, + 99E93A68160D429C48D952AEDB6D5474 /* FIRSetAccountInfoRequest.h */, + 852CFE5705D2AF1D33ABB27047842573 /* FIRSetAccountInfoRequest.m */, + 3F07C77D37BBEB966B0CE90240AE06DE /* FIRSetAccountInfoResponse.h */, + A2370CA1B0FD198E1530351E03AB3821 /* FIRSetAccountInfoResponse.m */, + 7191D1AE4A0885DD51D293AABD3D5E25 /* FIRSignInWithGameCenterRequest.h */, + 2C4B7CA9BF2D3C222DF08D472B4D12D1 /* FIRSignInWithGameCenterRequest.m */, + A06142FBB03FED26CFAB82F4EB374B5A /* FIRSignInWithGameCenterResponse.h */, + AF4621DC259B3BAEA8D4A7BE864041C7 /* FIRSignInWithGameCenterResponse.m */, + AB08E06B8E7808869C178FC7BFAB605C /* FIRSignUpNewUserRequest.h */, + D1EED044830F35BCCD3E3693972928CD /* FIRSignUpNewUserRequest.m */, + DC6BADA7CFA2BDD243DF9F1DFBAF2A93 /* FIRSignUpNewUserResponse.h */, + D993D57BB99C0DC1B3D77ABC9CFA42C2 /* FIRSignUpNewUserResponse.m */, + DD9B57F54A40D98C10EAE29E3F9C063A /* FIRStartMFAEnrollmentRequest.h */, + 06B3274063146539E7E3A5F2D72A5699 /* FIRStartMFAEnrollmentRequest.m */, + B4106416E9A18B90FA106750EC6622A8 /* FIRStartMFAEnrollmentResponse.h */, + B48EC21DC51F83B43AFCF673086917BD /* FIRStartMFAEnrollmentResponse.m */, + A08B53D0578E12601473FF4FE53ABF55 /* FIRStartMFASignInRequest.h */, + B844374A4F1A180C70C5CE73E953B94D /* FIRStartMFASignInRequest.m */, + 80A6DD4469D7AEE305F861A6E4E0C1DB /* FIRStartMFASignInResponse.h */, + E46B8D887C2FB665C5516BE6FF751BFA /* FIRStartMFASignInResponse.m */, + 349759C76FDED862A17E3B0E68A23820 /* FIRTwitterAuthCredential.h */, + 497B38044A3B2E213929A7AB30CB92F0 /* FIRTwitterAuthCredential.m */, + 16B71C91BC7BBEEEDA06D84190BFA53F /* FIRTwitterAuthProvider.h */, + 441E390BED00ECDBAD143E8ADC407525 /* FIRTwitterAuthProvider.m */, + 84E3B20A912687365F0B84225C3ED4A5 /* FIRUser.h */, + 291B7588D2B44879CEC511C858E6F4AC /* FIRUser.m */, + 676F71ADF7F9CC0DCE1551B7AA7E5B09 /* FIRUser_Internal.h */, + DD15D42C5ABD98B97781169C4548A123 /* FIRUserInfo.h */, + B0EDBCD8C226A77650A55FD44F506476 /* FIRUserInfoImpl.h */, + D8A2A001B1875165A8CC5E189E7E044A /* FIRUserInfoImpl.m */, + 0AE222D90681D945A7875E9256C6E5A0 /* FIRUserMetadata.h */, + 3974236CCD6A8FF64A8F9E8CB7CE3499 /* FIRUserMetadata.m */, + 1C3ABEB86788C9BC4944430649D6CE67 /* FIRUserMetadata_Internal.h */, + FB034D79C25A19F3E63CA19E4BDFAFE9 /* FIRVerifyAssertionRequest.h */, + 22C571854FA0C75EF282D6FFAC1AC270 /* FIRVerifyAssertionRequest.m */, + 2BC9B624633F09E297AE7E0F849BE807 /* FIRVerifyAssertionResponse.h */, + F85AC0D6836FDF5C20288B41676B6035 /* FIRVerifyAssertionResponse.m */, + 38B994EA2A5E3AFC58F55F16CEB3E0BC /* FIRVerifyClientRequest.h */, + 4CC18E826F72EC8D9F4600B143EB4AEE /* FIRVerifyClientRequest.m */, + 7A4880463DB317816F763DBF10A2517E /* FIRVerifyClientResponse.h */, + 5393370B135AF4280F012285B2494AA5 /* FIRVerifyClientResponse.m */, + E2CE8F3FC5547AFF874A1340C5D91830 /* FIRVerifyCustomTokenRequest.h */, + BCF3C9F2D9DC24DADEBBED200F8F9269 /* FIRVerifyCustomTokenRequest.m */, + 08A061BE510424EAD58EE1D515F81219 /* FIRVerifyCustomTokenResponse.h */, + 23EB8461FE9A5920EB1054D7523B84A4 /* FIRVerifyCustomTokenResponse.m */, + 7DE20194A71A1880BA4293EA14A536A8 /* FIRVerifyPasswordRequest.h */, + 431B842BEBF7785C996A9996E65FCDCC /* FIRVerifyPasswordRequest.m */, + 934319B123D066178A68B166635E1F2C /* FIRVerifyPasswordResponse.h */, + 7BC372F2C46820D841CF199C69F954E7 /* FIRVerifyPasswordResponse.m */, + 7C2D58474F99FD672F93808462DB98DF /* FIRVerifyPhoneNumberRequest.h */, + D98384995DFB7952271D53952D08CE86 /* FIRVerifyPhoneNumberRequest.m */, + BF45AD67A294EEA6993ED68FC20DEF0B /* FIRVerifyPhoneNumberResponse.h */, + 2943E0282918619D43A4D485F20573D0 /* FIRVerifyPhoneNumberResponse.m */, + D8B6E6F781558B7591CD661D84A45716 /* FIRWithdrawMFARequest.h */, + F27458A8E8BEEC635D225538AB2D66F5 /* FIRWithdrawMFARequest.m */, + CBA5392354B9AC3ABE144B7D433B22B7 /* FIRWithdrawMFAResponse.h */, + 78655707A30ADBDB4A17858D355D7D81 /* FIRWithdrawMFAResponse.m */, + 3F16A1CDECF69530553D067E7C11A0DA /* NSData+FIRBase64.h */, + FD575D16DDAFBC163ED6E2F28A266DF3 /* NSData+FIRBase64.m */, + 6BDB843EC5DD0C8A884D0BA59F755DE8 /* Support Files */, ); - name = container; + name = FirebaseAuth; + path = FirebaseAuth; sourceTree = ""; }; - A767A86A5F517CEEAE1CE62E75777056 /* time */ = { + BE8476B6934FA56D3CAC4772950AFFEA /* any */ = { isa = PBXGroup; children = ( - 9DBEF8FB9706EBE3F33EF28C13CC783E /* internal */, - 5DF217806CFBE7DA9B640F7102058397 /* time */, + 441C1B0460B79D6FD2E83B38B32302EB /* any.h */, ); - name = time; + name = any; sourceTree = ""; }; - A8F46D6D2AC4C82B28CACE59F214C142 /* base */ = { + BE9F1AC7EEC8D5BB1AE7B17C5CA7C234 /* numeric */ = { isa = PBXGroup; children = ( - 0E930508C41CE18EAABA004EE436B7C4 /* atomic_hook */, - 1FB550DAAD4190DB18259F11B8289FFB /* base */, - CDDFC2E45B06532E66CAD3F9DA55DCC4 /* base_internal */, - 7D7F9BBEC00B72C288284C8ED5113FFE /* config */, - 58D1E91B0630900D10C442A552519A6C /* core_headers */, - 50B035D33D3757208F83884ED8D2100F /* dynamic_annotations */, - 4174BDD3DEFC82E539AA4A1A256C186B /* endian */, - A01729D2EDD2382FB536DC4C06532DF8 /* errno_saver */, - 7FC94320C0C9CB6136D53698B26F8980 /* fast_type_id */, - 97EBC0745F64EEED5188065E91317101 /* log_severity */, - 4D6E85653EF021FB726F2D950DA03502 /* malloc_internal */, - 1D1B442D74E2FBFE446C073E963BCCF7 /* pretty_function */, - 2C175533472DA6D45CB8E104BE7E3104 /* raw_logging_internal */, - 10279BFD1A83111BFFBC0E2245D7836A /* spinlock_wait */, - D58C35EE03241AF7A95DF3FBF2BAC299 /* strerror */, - 7EEA5AF3C3815EF67877D41538133C19 /* throw_delegate */, + 12B272529ABD8FCA24F2B3CBBF1B779A /* bits */, + 76293802FAFC470E6FB346F5F5CAADB7 /* int128 */, + C900039A9E5CFE0D6742F8745C3C584D /* representation */, ); - name = base; + name = numeric; sourceTree = ""; }; - A94242E6CBA4D0D3CFC21A314E5E4851 /* str_format_internal */ = { + BEA4835009B689EA278D319FF3255E8C /* AppDelegateSwizzler */ = { isa = PBXGroup; children = ( - 600C85A3414AA472DF15EEF665CA4872 /* arg.cc */, - 34EB3707EDF7F049D8480DCB263651A9 /* arg.h */, - C7B775C26829ED5BC91474B6A43CB9CC /* bind.cc */, - 111E5827F6D4C420280AFC436891B7C8 /* bind.h */, - 8CEEF3B6D7A39DD59099C171ACDF08DA /* checker.h */, - 1E1076622A68901C6A2041768AD5D700 /* extension.cc */, - AFD18D432E2332B5C75BCB6B5BD47F65 /* extension.h */, - A5B2F976074655FA3C46ECC6383AE45A /* float_conversion.cc */, - 4E486D36F2AE99C0A115C39B41F6D75C /* float_conversion.h */, - 201389BFE7A89264E2E4CA963DED02C8 /* output.cc */, - FD64371E6762D728A7887F2E44CD1C1D /* output.h */, - 657F6655E90FCDCADE0FAB5DCEBA9EB2 /* parser.cc */, - 175C317BF8EFE3C4D8C373956A73D82B /* parser.h */, + 264577CB833051B51BA2360BE30F51A6 /* GULAppDelegateSwizzler.h */, + FC7620558C27A701A19D7C63A06096DB /* GULAppDelegateSwizzler.m */, + CBF2ADAFDCEF68C96653D3C2F8C493ED /* GULAppDelegateSwizzler_Private.h */, + B3AA16E575585AD11C88B0058A32E070 /* GULApplication.h */, + 56C2BA60FF682D3D5FE784C92EE0D78F /* GULLoggerCodes.h */, + 5BD7D4ACC940332DD4CD98A1DAFE8A48 /* GULSceneDelegateSwizzler.h */, + E9F8333DE034AF9EE1F874C8E984C9D9 /* GULSceneDelegateSwizzler.m */, + A435EC9B400C5113CDA3935FBFF22932 /* GULSceneDelegateSwizzler_Private.h */, ); - name = str_format_internal; + name = AppDelegateSwizzler; sourceTree = ""; }; - AA21C7D1C8E25DE641647299728AF180 /* debugging_internal */ = { + BED66A32822BDEDD39F34AF5FBFB2539 /* variant */ = { isa = PBXGroup; children = ( - 0C20B6C2076551C65ACE4BD190E6370B /* address_is_readable.cc */, - 4B0F1D207BEC3C04E7AA502B953EE645 /* address_is_readable.h */, - C5FC4119F20B28824DC1F434BBC1607D /* elf_mem_image.cc */, - 008F4B3C6F0E06E4FD9D7DA2C275B58B /* elf_mem_image.h */, - 4C0C9AE08A070FC5514190C63DFA6258 /* vdso_support.cc */, - 5706A32E275C03E7E6636938B7384037 /* vdso_support.h */, + 7882FDD12247B86650EF81C6BF395E76 /* variant.h */, + DBEFB06ABB0547FCBC68B8243D928339 /* variant.h */, ); - name = debugging_internal; + name = variant; sourceTree = ""; }; - ABB4E5B8B85EC9740F611A770AFC1A8A /* GoogleUtilities */ = { + C02229258EC85A964DFD2CD3EB0F6AA7 /* utility */ = { isa = PBXGroup; children = ( - 74F08F306EBA38899FA713644B061BD1 /* AppDelegateSwizzler */, - 91CABF22EEA0B20C2864D5C314151D29 /* Environment */, - 87AF9FF89E2E1DAC080819751F53B583 /* Logger */, - D63716C19643B2498ADD379A91B6CFCB /* Network */, - 6550404F5F1577CDA570D746833A8B50 /* NSData+zlib */, - 9FDE8AC4E22EF98C5F1179BBB7C176B0 /* Reachability */, - 0BD89095A84A133E22CADAC92A398FD4 /* Support Files */, + E9B61ACFE82A0D1552E1BC063D6CB952 /* utility.h */, ); - path = GoogleUtilities; + name = utility; sourceTree = ""; }; - B0A12B7E34BDA2CF6E19C333ADBA4729 /* iOS */ = { + C0A2891087831CD062ED3A813C1228FB /* atomic_hook */ = { isa = PBXGroup; children = ( - 15BF773627AFF8CA45BA4352D0262F77 /* CoreTelephony.framework */, - F6F8EDB5F658CCAC4035F4862D17CE9F /* Foundation.framework */, - 75025A8A27096CDB6E8AE8E4BC9FFA5C /* SafariServices.framework */, - 05C92F39C7289C2EAC486EF107DDABC2 /* Security.framework */, - 3AF0C86B29D67C1A28FFB6043385D4A3 /* SystemConfiguration.framework */, - F85DB4CC446BCB5E866C9F9494CFB717 /* UIKit.framework */, + 40085EBCFAAFAEB4C3F55ACE596D9F62 /* atomic_hook.h */, ); - name = iOS; + name = atomic_hook; sourceTree = ""; }; - B0DEEDD304F744FCF84028996C75D488 /* iostream_state_saver */ = { + C0F71A58FFB3A1DC18D360DD75FE751A /* seed_material */ = { isa = PBXGroup; children = ( - F8BCD3ACC3A9537DB76A1799829D4C5B /* iostream_state_saver.h */, + C9E00ACA6C8A9371C296BE6A7E6020F0 /* seed_material.cc */, + 626FC2372703C60F1BD6817728CD608E /* seed_material.h */, ); - name = iostream_state_saver; + name = seed_material; sourceTree = ""; }; - B1EC3E3C8A92DAF105AF25D4C8EE23D4 /* cordz_update_tracker */ = { + C1443155B67EE2F43A3437A08858712A /* FirebaseCore */ = { isa = PBXGroup; children = ( - 6C1009E1760E792A6FCB70388FF52E70 /* cordz_update_tracker.h */, + 69A6F15512FD954D6AAE989555BB0A0B /* FIRAnalyticsConfiguration.h */, + 0C75096FD45589E24775540F5BEEBA02 /* FIRAnalyticsConfiguration.m */, + 89B94BF79C69FB8EF3D74A0466812538 /* FIRApp.h */, + 453166266E6CC074A78B633F0FF2D214 /* FIRApp.m */, + 1FF1302302014562FC94BA678BE3F0BF /* FIRAppInternal.h */, + C4BA9BCA705A4117158D4086C88287EC /* FIRBundleUtil.h */, + B61C4C73C51F782696D9D7163F58A2FD /* FIRBundleUtil.m */, + E9992FE27D08C290F3EB2F302A4B1552 /* FIRComponent.h */, + 28B8E254F935B04DBD8B8DF54132EAB8 /* FIRComponent.m */, + FF6B505239931B7EFF6591E61538E4EF /* FIRComponentContainer.h */, + 18A6F6C2016365E0F69E9585A6AEEDDA /* FIRComponentContainer.m */, + CE2FBFC5F33BF4066D8D9F069B729B3F /* FIRComponentContainerInternal.h */, + 0F2F6ED8B55E72E56F11BDB00A2752F0 /* FIRComponentType.h */, + 958E8351578505527FCB759A7C765334 /* FIRComponentType.m */, + E83F465080EA10F0FF17E25E29D16051 /* FIRConfiguration.h */, + 191D71414D48D06EFAA313CBAC1353D1 /* FIRConfiguration.m */, + 17EF716DCA7F21EFDAC2921908E2183A /* FIRConfigurationInternal.h */, + EA491EDCD0F43AFDCC2D0D47A8C1980F /* FIRCoreDiagnosticsConnector.h */, + 217812DDEA1A6A9F50A98540E88FA497 /* FIRCoreDiagnosticsConnector.m */, + 0F81AD0386B5067773E2C30B36570E46 /* FIRCoreDiagnosticsData.h */, + 32D5DD29E5A90125973A285D0ED42E24 /* FIRCoreDiagnosticsInterop.h */, + 78E8982C846BF733048731B9C5489A17 /* FIRDependency.h */, + 25F27CE39E14DAE847144E02398A4EF6 /* FIRDependency.m */, + 335D624CF6D6FB7C309EC768389861AA /* FIRDiagnosticsData.h */, + 319EBB9904E3DB737CD831F84DCA675E /* FIRDiagnosticsData.m */, + 79BB073974C028E5718B59F0FB150F44 /* FirebaseCore.h */, + 23B2972A80C7CA3212B9FC9FE5814F2A /* FirebaseCoreInternal.h */, + DBDEDE9AB4B16852F9F44D21698692B3 /* FIRFirebaseUserAgent.h */, + 67B09CD1A1B6281CBA7B4842DA070C45 /* FIRFirebaseUserAgent.m */, + 6EBFDE66E0994FBC2676A5EC03E46FC7 /* FIRHeartbeatInfo.h */, + F84781EEEA6845FEB19422F9000FF5B2 /* FIRHeartbeatInfo.m */, + F182BCF0888326C97348648ACA52CA59 /* FIRHeartbeatLogger.h */, + C296C5E349BECEBF19D3BB0380C89B28 /* FIRHeartbeatLogger.m */, + 57339499D4F6314B963D033E7E151C44 /* FIRLibrary.h */, + 5E11B10628FD678A98B2A12FF3373B24 /* FIRLogger.h */, + EC53C91F199D4793C36DF4E2FB119F8C /* FIRLogger.m */, + 891C39F4CA113B558FEAD086E597FF5C /* FIRLoggerLevel.h */, + 772E5117E1A32631FDFFFB53A0491588 /* FIROptions.h */, + 3D47B977BEC42ED99A40800584DE2CEA /* FIROptions.m */, + E8BA3F1BFF8C8F4805D8AB1B53E3B48F /* FIROptionsInternal.h */, + 4E91F8A1C7D8B5702777AF5E3B47B833 /* FIRVersion.h */, + 32F532589F28D3D46227FCF234D9B056 /* FIRVersion.m */, + F3765CE05CCDD678824F9A0F33D8B8CF /* Support Files */, ); - name = cordz_update_tracker; + name = FirebaseCore; + path = FirebaseCore; sourceTree = ""; }; - B2279B2AA90090C510EF34A20C9CCB50 /* str_format */ = { + C1A0941DD54C6A50D6F75741E8492232 /* cordz_functions */ = { isa = PBXGroup; children = ( - 590AE90506EFCE06B4EDCD9CD77DED30 /* str_format.h */, + 82D1BEC33AF5E8C2F7C809125E1C293F /* cordz_functions.cc */, + 78C4D796153F4FBE4C8AE94FB1566618 /* cordz_functions.h */, ); - name = str_format; + name = cordz_functions; sourceTree = ""; }; - B26301A0ED654076A3CBDDB34E4AE370 /* uniform_helper */ = { + C2EAEB5C3A0487B85909AC679C0B230D /* cctz */ = { isa = PBXGroup; children = ( - 22ACE164D2C00A15FE6817EE0DF044DC /* uniform_helper.h */, + 6C911BEF94075252D135E58017D81A9A /* civil_time */, + EA258B2F78A7DF15B508D3ACD7373161 /* time_zone */, ); - name = uniform_helper; + name = cctz; sourceTree = ""; }; - B7B0C35241CB52932301D87A6B282CC5 /* generate_real */ = { + C522B99EAE26F3B96D7A2362AA02AAAA /* fast_type_id */ = { isa = PBXGroup; children = ( - 16EEE417B9EE9219567DCAE5CDAC7A6A /* generate_real.h */, + AB967AC814DD7BDF14A489564ACADB92 /* fast_type_id.h */, ); - name = generate_real; + name = fast_type_id; sourceTree = ""; }; - B8121DF608673F1A26D18AF51CB15921 /* hash_policy_traits */ = { + C600A9322953F093F1E9C643BE832FF6 /* bad_any_cast */ = { isa = PBXGroup; children = ( - E95CAA6C502E1AF1DEB32A8F1E108ED8 /* hash_policy_traits.h */, + 2F50C49EAD40A5514FCEB3CCBB068E8B /* bad_any_cast.h */, ); - name = hash_policy_traits; + name = bad_any_cast; sourceTree = ""; }; - B96E10D42A7CD6B50B51BF953E90F160 /* encode */ = { + C8C23F9AE02C77F282383576826AE038 /* throw_delegate */ = { isa = PBXGroup; children = ( + B275C00144CC65AD1C0E0C9D68E451BE /* throw_delegate.cc */, + 2BE0C66EE00225CD86D66522CD44A9CD /* throw_delegate.h */, ); - name = encode; + name = throw_delegate; sourceTree = ""; }; - BD4EEEEDEDCCE1E07BE3E0A14EB99007 /* seed_gen_exception */ = { + C900039A9E5CFE0D6742F8745C3C584D /* representation */ = { isa = PBXGroup; children = ( - 8DD345AC22042207A48873400E33BA5B /* seed_gen_exception.cc */, - 73D0572F39352BC74B95DE020DB3036D /* seed_gen_exception.h */, + AF39D74010F3156AE465688D8C4700EB /* representation.h */, ); - name = seed_gen_exception; + name = representation; sourceTree = ""; }; - BFA92DBD63A08A99FC1E5F393BF1D1CB /* strings */ = { + CA240BE644538B611F95A81EF051387B /* base */ = { isa = PBXGroup; children = ( - DD7DD370D040B24E02809DC936611A86 /* ascii.cc */, - 278F37A20F9EE3B1A2577D97369A38F9 /* ascii.h */, - 27F4181ADFFDC3F99788E40652CDB660 /* charconv.cc */, - 0BA6652B31A30D9100EAF433066BAB5C /* charconv.h */, - 46D0D328706447157D50228B9F5CD475 /* charconv_bigint.cc */, - DCE4B2DDA68818DC0F0051E95A3BC73E /* charconv_bigint.h */, - 6170F6B8B3C4F10900FAF44A41BB2731 /* charconv_parse.cc */, - EDC309F641F64D59235FC2D1EABF756D /* charconv_parse.h */, - C5A8B75D615666E91690FA79F7D8FD89 /* escaping.cc */, - 30641BF0C9A6C56579616B86B9CBEDC0 /* escaping.h */, - AE012EFDCB5F347565AF1BA8EFE4D954 /* match.cc */, - 7CEA1E95AB3F2E8B15CA2ED5A5DD1569 /* match.h */, - 93E51131E89E282662C4268F2360825A /* memutil.cc */, - 5441A34E201EDA4BD82DD79DF4FD031A /* memutil.h */, - A676A6A1675341F75A6780FF241E92E5 /* numbers.cc */, - 069431580008CFFAF0D9587C310BBE0D /* numbers.h */, - D63E35D73C8758A1BFE4882CB13519CE /* stl_type_traits.h */, - 5E343720A4CE8C235BFBCB0C0A437D97 /* str_cat.cc */, - 205B82C2AE7FB26CE9CC8CABF4CA119C /* str_cat.h */, - 122B00E616010981938DF57113539D0F /* str_join.h */, - 65317CF0A859C74DB9311356E180086F /* str_join_internal.h */, - 8DA51001DB24BE687C06CD98B1E8784F /* str_replace.cc */, - F82EBB8CB2C5F61673E11E0F567ECE9A /* str_replace.h */, - 2DBC6A7D941C308EA8FF996B1CEE1F16 /* str_split.cc */, - D336A7ACE4B95A3B5F8A8D1E3EAF3099 /* str_split.h */, - ECBC9522495EEC9154681570104F395C /* str_split_internal.h */, - 92AF8E96F7C3EB355BAE1B4CC4875012 /* string_constant.h */, - 05EFEE8FC860BAFA424F582FFF89EA53 /* string_view.cc */, - 71120AED1D2D58A379F679EA3D7E57C1 /* string_view.h */, - A51DA9A47C221DE2090EF57FA1A16CCE /* strip.h */, - 50EB4F883CA772DD7132C582C7324DBF /* substitute.cc */, - 0B34697920BDD3E002E685D02B9B736A /* substitute.h */, + C0A2891087831CD062ED3A813C1228FB /* atomic_hook */, + 01F6440D12C56374422F5FCA389030FF /* base */, + 0666B6B15BF4E9A1DB2191C5A7DBD67F /* base_internal */, + DB0A3DE7AFA468A54CC0BE26735971D2 /* config */, + 5F6F4E87D43AA68FD89B743012585E1A /* core_headers */, + 83FE3447B1C26871E20979DC5CB4D0B4 /* dynamic_annotations */, + E5BBD01E37358A814957C17D23DDA505 /* endian */, + A98FB1235401D3CF4BB7580CE02991EB /* errno_saver */, + C522B99EAE26F3B96D7A2362AA02AAAA /* fast_type_id */, + DAD80FB4D10EB15B46DF226D7CCE072B /* log_severity */, + D854302983624FAA1B3EE0FE79D90533 /* malloc_internal */, + A185D9ED225044295A61761F833851BF /* pretty_function */, + 2A5A59DD6EC309FC2C9E7EBBEF1757FC /* raw_logging_internal */, + E1515B0E6859E37F83A7D250E88A9527 /* spinlock_wait */, + 099E493802E17BBEC467D05B5BA23B71 /* strerror */, + C8C23F9AE02C77F282383576826AE038 /* throw_delegate */, ); - name = strings; + name = base; sourceTree = ""; }; - C0A206B325D30756AED35B434C23348F /* Implementation */ = { + CBDA8F8AA923576FD111AFA495292A8E /* Implementation */ = { isa = PBXGroup; children = ( - FE75190669FC3181BD3F33A236258758 /* a_bitstr.c */, - C3878639BF87EEB27B1B1A16FD452E87 /* a_bool.c */, - 5852C08B5630DDB5A5C96AEC96900138 /* a_d2i_fp.c */, - 251C9D15ECB381146A595D0AE61D8549 /* a_digest.c */, - 590F9DCB1F32514A63FEA3F6982C033A /* a_dup.c */, - 13CB3D02B8DAA0AF8C9CD37D36DA7E73 /* a_enum.c */, - 22C4EE5E8A8FDDBD29545F1E50629978 /* a_gentm.c */, - 23E70C2685EECF559FD8D1A5B98E6E42 /* a_i2d_fp.c */, - 6EF78F69FA14F1CEA6270D635445FAD4 /* a_int.c */, - 8640AF57CE7046398BB5BF4BDA9D834B /* a_mbstr.c */, - FD1B5F391FD32940B0A27533F8EC0203 /* a_object.c */, - 1C18DC46EB1303F2504D3AC050477F96 /* a_octet.c */, - DB6539463074E567351285C084FA86C5 /* a_print.c */, - 8E276779D90404FACCC5FE5D75C05700 /* a_sign.c */, - 7F1BC2CC17F532F47E23CF44D9AADF91 /* a_strex.c */, - BA1258603851C250209F3A04E1F98819 /* a_strnid.c */, - CC7E2A7F82347F1D0D3DCD64E95B64B8 /* a_time.c */, - B9A3B58D793C55394A7A17101387427D /* a_type.c */, - 69251AC89D2B10C14A16B0821DB6B957 /* a_utctm.c */, - D0E34BEAE195F627DC431779EE2B11B2 /* a_utf8.c */, - 7E2CC987BD0D69D5B588FA66E42CE33C /* a_verify.c */, - 19171CACBB3AEE462136219C2747D233 /* add.c */, - 02BB76AB70FEEB044C2A851E3C5D8D7A /* aead.c */, - 76947F9133E5DD0EE4AB28A6D56A25B9 /* aes.c */, - 4CD1185D1C535BF4DA84F99F1ED091F8 /* aes_nohw.c */, - D0FE88D8D2512BABB09D84291E98BDED /* algorithm.c */, - 61FCEE24C2F608101EA8C8453E76DDDC /* asn1_compat.c */, - 1BB45A6DDE7C6F47DD54F7FEBE6E9432 /* asn1_gen.c */, - 4163B365CE1DBF17D040516574BC57D6 /* asn1_lib.c */, - EF2575DA89A6EB446485DF147818F554 /* asn1_par.c */, - EE63AC1FD47F00F6B061F81485AD4DB0 /* asn_pack.c */, - 5AD49DD9C8B5221B6CCE7DD902E02B57 /* base64.c */, - 81DA078477DBCCB0C1972DA80C4812BF /* ber.c */, - 34651B372889054CA1EF487B86F7754E /* bio.c */, - 5FB4585FDADA76F94A66C13ED420659A /* bio_mem.c */, - BFAD82D80D202F12003E17BFE2F36495 /* bio_ssl.cc */, - 150445BDBA63DA02F8A9D99400A7FA80 /* blake2.c */, - 0DE70EB1DB433C520CB28E01F35FB98F /* blinding.c */, - F5BE855D21326F8EEDF5368996E2194D /* bn.c */, - 966E52D69FD3F5346CCCCA92BF9380C3 /* bn_asn1.c */, - 4E0CA0615F0100D4812DD20785E2F8FB /* buf.c */, - 2C4551AC6FC31FB427136348DC26800C /* by_dir.c */, - 11182830AC95751FBC2D7BAB97A3C855 /* by_file.c */, - 0F71C1A9FAC37518FD3EDB1CDC02041A /* bytes.c */, - 7043E454584F0054D86E8711B5867952 /* cbb.c */, - 49AE3FB8C15125F66DEC967D521E2B9D /* cbc.c */, - 67C1F9C2B5791C770EDE2921B42CA920 /* cbs.c */, - 478F7FFDAF0AD48E7A8E12867769CA73 /* cfb.c */, - 82519058DB16C1508CCC9DB903349F65 /* chacha.c */, - 171F490AD49757C7C83F7B0E22ACB1AC /* charmap.h */, - 8FB4960543A440EF3011186E7332F7CC /* check.c */, - 98FA2A9E36953720EF63E0E6C7674964 /* cipher.c */, - 22539ED4ED6419590B656234F6A85E51 /* cipher_extra.c */, - 7102048A99536A6A568A63A433C2477A /* cmac.c */, - 65052151644EE762B6E4E04DA0AB26BE /* cmp.c */, - A9AB819DDB8EF30BC4642833C78C4FEA /* conf.c */, - B00D53290AAB3FCF0EAC9166914E3837 /* conf_def.h */, - 0F181B431456C24E0CFCE7C42D099FCB /* connect.c */, - 3E03B4CC5DFFBDAF1F4AC00B0D31B6C1 /* convert.c */, - C24BB8BBC14D491017C07EAB5AF616A0 /* cpu-aarch64-fuchsia.c */, - 72395D28CCE51076629E53B7EC8E0E91 /* cpu-aarch64-linux.c */, - BCED264BBCFE204D2BD0C8D3B6BE4EE5 /* cpu-aarch64-win.c */, - B68DAC0B178D1225D56403D595003F83 /* cpu-arm.c */, - 96015440687E795360D3B0316D01F281 /* cpu-arm-linux.c */, - 575DD436391DC3BA9D4CED488AE2F6CC /* cpu-arm-linux.h */, - 9A77FF1E67E9A96C8E729CB4935B56F1 /* cpu-intel.c */, - A358635C800C1314106163F2032B1D1C /* cpu-ppc64le.c */, - DEE9080859018223B5C219AEA15FF95F /* crypto.c */, - 900CD7FC507E62C267685CB5EE49AA8B /* ctr.c */, - 7CC01C94C1B4D012E0C86982C368B583 /* ctrdrbg.c */, - B76D89A02E1DF3B51B10F9C24E717326 /* ctx.c */, - AAFE7E183443DBFE7338AC383B6100F6 /* curve25519.c */, - 0BC4CA131A02B29CEF60507DB1FB7CA0 /* curve25519_32.h */, - D4A48F0FC2B5B383E5549A55EC186092 /* curve25519_64.h */, - 40DFB51FDED20D07155B0DC85FF4FFEA /* curve25519_tables.h */, - 890230CF2B8236EA6EF05EC09ECFEFEC /* d1_both.cc */, - AB8027132186DC1BF0A50C17448690CD /* d1_lib.cc */, - 35B979CA7A8CFBCCFB84C79CDB0131CD /* d1_pkt.cc */, - F2265CDD259ECBF9355CD4A223DBD4D3 /* d1_srtp.cc */, - 04F5AED04D774AFB1CDCBB0DBAF1EF04 /* delocate.h */, - 5C5B625764F5A5455D61EFCF3CE3C7E9 /* derive_key.c */, - EFF54E47F13A60E7BF9B7A0E2E1C8783 /* des.c */, - 544F68A089CA6E9F03FF9B22195FA661 /* deterministic.c */, - 544EDA90AB94329937EC7A44A714E704 /* dh.c */, - FAFA58FB10054832862CEE0482F24D2D /* dh_asn1.c */, - BD960606F502C6BF27146661CB9F3505 /* digest.c */, - E8256504B391A133658A9F53E70BF601 /* digest_extra.c */, - 028EF34AE84526E6C26DE38242962783 /* digests.c */, - 039EC92088632A500B7C3599B617F460 /* digestsign.c */, - A68DF4B310E5F88FCD5FAE5991D0CB43 /* div.c */, - DD81BFD2D733C61E88BCDC297E49A022 /* div_extra.c */, - 81EC1C4A9F7749F4A776E8360C14B313 /* dsa.c */, - 9EE0EB330B5F4A1F324D863C3AF5B592 /* dsa_asn1.c */, - 824F564055990B89D6937834E865A79A /* dtls_method.cc */, - 10FEF88193B0994E2CA1AAEBBDA1E5BE /* dtls_record.cc */, - 478D5AF4B55E749ECFA3D66985065523 /* e_aes.c */, - B6E2BA0DB94840B41C6E1BE69DE86BFD /* e_aesccm.c */, - 0273057575C7E444F4111D593C90F269 /* e_aesctrhmac.c */, - 2553B6B0242BB468D7301153F95211CD /* e_aesgcmsiv.c */, - EA252865CAAACF7FC55E8E8B86F8097E /* e_chacha20poly1305.c */, - E586021E930683DC5C528A2D8B64D3D5 /* e_des.c */, - 5ED101EBE79DF646C3062C490E14A567 /* e_null.c */, - CE1D3F5CECF3126959D7FE0D1F812792 /* e_rc2.c */, - 7714CADF8EED370782F432BCC600112D /* e_rc4.c */, - EB242366755BF06AABF518B6372676AE /* e_tls.c */, - 51F7BBC9E6B6BFF79BF1321A3AF0DD44 /* ec.c */, - F549F5326DAE57963E865B97E61C8817 /* ec_asn1.c */, - BD15625037E9471300A002C478F59397 /* ec_derive.c */, - 9E107C47ED42260DD000F5A0C92FB288 /* ec_key.c */, - FA629B5DBD44D22B5379CA0BE84C472C /* ec_montgomery.c */, - 19435DE142DE1C914D59812EBA19D370 /* ecdh.c */, - CC90425DD9169FFEADA8355B46159D01 /* ecdh_extra.c */, - BE2D74B683D68FBA5BDFFD070850F111 /* ecdsa.c */, - 1EC6D0B2A934D5E1720D46892D868F10 /* ecdsa_asn1.c */, - C13BC162567A1BE6DB8C4EECE4EDDF43 /* encrypted_client_hello.cc */, - 153B0A74C9969A6DC4C81676C52EFBEA /* engine.c */, - 048FEF35773E60377A355722C171880E /* err.c */, - D4AF8E54559D6984DFC27D03A680EAD6 /* err_data.c */, - 3119C9E31E7411A07B4708EF92B43450 /* evp.c */, - 8695BB135034FF365003E14EA12AC98F /* evp_asn1.c */, - 4A6F99F62FA9BA661DFD44BE2E3BB7D2 /* evp_ctx.c */, - 1CD343035A33161B83D3029139BDC01E /* ex_data.c */, - 95BE7705F6D2E744FF8423ACFF85F920 /* exponentiation.c */, - 86C24E9D2FB1CEE0ADFEEB298B87A8E6 /* ext_dat.h */, - D7881D3A9F10FC22663BE44A7D6C427D /* extensions.cc */, - 9AD14038C725088873BF6D46BB06583F /* f_int.c */, - B5D0D14AC60503E73AB89888CFDF995E /* f_string.c */, - 093ABA6BEE3C66EF9CE1EA5CF4CB0985 /* fd.c */, - 2711A0841A9A031734E61B68B49B1E33 /* felem.c */, - 8EDC6706EC9766F8AB498A6387EC5B4E /* file.c */, - 8AAD56369A9309A51A1E810C19CBFC3A /* fips.c */, - FE5646D09597315455D96DEB01EBF2AA /* fips_shared_support.c */, - D7FCE6674BA17AF287B0D45E98D523B8 /* fork_detect.c */, - DA49D325838E71B66BCCEE312008835E /* fork_detect.h */, - C46576BB3125EA5A63BBE2F24564C6F6 /* forkunsafe.c */, - 9A1360F8E69155D476DD612468023F94 /* fuchsia.c */, - 6475FB5507F63E26986D31F5A256DC4D /* gcd.c */, - F27799AE30548C615991718BB2206374 /* gcd_extra.c */, - 62406121C08F30D2E7BCFAE7377CA5CE /* gcm.c */, - 4AA6E32CE176EAA4A511A77FCF3C8D0C /* gcm_nohw.c */, - B795D9A40FA2C0A605AC3A6E1EED4509 /* generic.c */, - D212BAB6F36CDA459758DC064DBF0801 /* getrandom_fillin.h */, - 89137C271D9AE7D2F71EE1A95A351912 /* handoff.cc */, - DF4831465B7E4BBC06DB8DAB743BC086 /* handshake.cc */, - 3C0AD87FAD0EF5A2541ED6F75DB2FAB2 /* handshake_client.cc */, - A5FF12DB2508C279536226306C092B5C /* handshake_server.cc */, - FEAF83A65BEBB3504AE2E52098A98E84 /* hash_to_curve.c */, - 3B03E4AAC355F994818EB10B9B5D850E /* hexdump.c */, - 42B03F2B5C06689922427E4BFAD136C0 /* hkdf.c */, - D080EA6F461026ECFFBE2225B832311E /* hmac.c */, - 35866E00BBAA2DE6F52A7E7BCB54D059 /* hpke.c */, - 4FA2248941B6C9399BA70E437690BF94 /* hrss.c */, - 06FFACA6173CC50666E4F1FBB01CEE73 /* i2d_pr.c */, - 94D67BDCE3A36359AC4F1B678B390EC8 /* internal.h */, - E40D05F40778528A6D07508416613D8E /* internal.h */, - B4EA72EFDFDE1E7FBB8C29A3AFC16093 /* internal.h */, - 3DC9F3AB799D826433E59BBAC00C70D7 /* internal.h */, - 0376345AF21E938726D4C37516953861 /* internal.h */, - 5388D55251110326A062F6A5A4FE54A6 /* internal.h */, - 149F71522D39AD65C4611C373A772AE7 /* internal.h */, - 9400B2FE3A8884771EA2BAF46AFB2B41 /* internal.h */, - 128BC5B34F91B957F31D73633B525055 /* internal.h */, - 81EB19368A1498215B0CA970BDF9707C /* internal.h */, - E07766BBBDA07E4BC2FB9C6661DA6AA6 /* internal.h */, - 395189B957C79ED0720D3385CC82A700 /* internal.h */, - 15321B846B04CB1F6A881383F0DB88B1 /* internal.h */, - C5035EAE6156F66A833FA2CC97DDFBE3 /* internal.h */, - 93236C3E3F4C8B59F9D23B90083E88ED /* internal.h */, - C43412CF783078771C9977A38D5AB68B /* internal.h */, - 2C7AA62AE0F3FFB59513C0F688C50545 /* internal.h */, - C430DE4B2EA74D3BA63BE58F917EA493 /* internal.h */, - 738E49FCC1C6A280494F479A639A4A46 /* internal.h */, - D58712F06503B873DE8C8927559B158B /* internal.h */, - 1B3B8A3B521B2D672486E73D221BB385 /* internal.h */, - 85A1F02DAC8F20ECD50F07FB6A5DFA18 /* internal.h */, - 27B83CCB6B3B7094AA5781C0E039A723 /* internal.h */, - 7D4A083B309091D9258E0D4C82F1D3CC /* internal.h */, - 8169A1A883278213BAE6489152180CC1 /* internal.h */, - CD215B139F99764ECFB4ABE97A34FCE1 /* internal.h */, - F9514C0821DE3D9512A12B6846090A1E /* internal.h */, - 0C2F2A3AFEA0D5D4CE3E81BE0F27E0E0 /* internal.h */, - EB6473C00A114F36597B1C0E29FD0D37 /* internal.h */, - D08A2638176BCEEA41B0DAF7016F25A7 /* internal.h */, - 51E18CD16C038114D5BD8101417BEE2C /* internal.h */, - 495906018B5E0F8CE64C60C2A6A381E8 /* internal.h */, - 7EB189B09A053244B12686A0DD331D66 /* internal.h */, - AE66776D4A64507FBCBD86A561DCD6A6 /* internal.h */, - 6E4A108B2F782A780221F6949D9A1757 /* internal.h */, - DB67F5C32EF498043599DE2BFAAA2ABB /* jacobi.c */, - 3DEAD1104A9AC86FE223A9055633EE29 /* kdf.c */, - 704B4F61A507CFB618CAA54C2943DB8A /* key_wrap.c */, - F29E47AD285743120CB04BFD9F819687 /* lhash.c */, - 6132F3A5BA54BFB1D488321C522B589A /* md32_common.h */, - 6E905C1ED2D4D8850CDF8CD236014367 /* md4.c */, - FA8DD3BE0C57410703E94BA4CA213FB1 /* md5.c */, - 6BB6983E8BC2ECF6213B854B0FE9607C /* mem.c */, - 0CA261CBF415CADD6F1C0A78F1D53B0E /* mode_wrappers.c */, - D341324B667D52FF17BB9DEB60FAEA2D /* montgomery.c */, - 02B122C13233EF7357BDD2C2048ADBF8 /* montgomery_inv.c */, - 84C8A845119E06EE804C88BE83FB10E7 /* mul.c */, - CD61D5C404275309588C25D934759FF7 /* name_print.c */, - 403AD6E4A0A1B734B555ABA203AAF905 /* obj.c */, - DC8FD461109F4BFD28EB78275FC9DE30 /* obj_dat.h */, - 6C04053BA4D1A1EBE044216B5507888E /* obj_xref.c */, - C9509D87C0A4DDAD090B3C9631D46A12 /* oct.c */, - D43B052152B2FCB5579B8AE0F75FFFC6 /* ofb.c */, - 214DEB6E60ED630E65F21ED4FF7FFF77 /* p224-64.c */, - 993D19EAC26F3C8A5D486CBD92C5192D /* p256.c */, - 164B93CF4BF89AA050D6CF1436CC31F1 /* p256-x86_64.c */, - 3A17E56634F88242B97A2500C7BCD957 /* p256-x86_64.h */, - 190D8C358B73CFC381C6F594D00A22FE /* p256-x86_64-table.h */, - 2D03D337B47AC826656C9CD58DF6A277 /* p256_32.h */, - A10CE7BE687855CE8651F3515B545B3A /* p256_64.h */, - 55A9350584631285065A0B7A19044102 /* p256_table.h */, - A38A47C5FF6941B440544DC542982694 /* p5_pbev2.c */, - 01DC83CB71CDF7A5E4311BACFCDB6718 /* p_dsa_asn1.c */, - 27EED20F777EDB7606ACB8393D53F6EA /* p_ec.c */, - 4756B5CFD2C831C8628FE8C262AE8617 /* p_ec_asn1.c */, - 389B4E55E130BCB027299458035FA3B8 /* p_ed25519.c */, - 009EA74778F49391B657C1ADB3136375 /* p_ed25519_asn1.c */, - 00CA251CC67B1A10B62249E6F289493A /* p_rsa.c */, - FA24B90275506B2AFF2CC4E35D9AADB2 /* p_rsa_asn1.c */, - 7C02D0BC1F3D82EE13DDE1561F800B14 /* p_x25519.c */, - 82903A1639B3CB3E512E6527CB87B7C2 /* p_x25519_asn1.c */, - 8B34E0F018EC128E411D87A1E801DAA0 /* padding.c */, - EBFC42E958DF0803F6F22DDF7A26A347 /* pair.c */, - 682FFBD320EF46754D9D88D64EE0FE45 /* params.c */, - 4F20F018998C445B11421D01998A59F9 /* passive.c */, - 878926A72A3EAFAA9A53CE7282E98E4C /* pbkdf.c */, - 4BE0C3B364EC5024E1030B3114141A52 /* pcy_cache.c */, - C5F13CBEDBF4289B7B9D1A04082910E5 /* pcy_data.c */, - 12F4B140B7C4D81DC3382CF6BA78EA92 /* pcy_lib.c */, - E0A85F283FE7D435DADBCF60CD3329AA /* pcy_map.c */, - 14AF2DEDAF2B5F381E2B74C997BBD786 /* pcy_node.c */, - BA30102B225E3E37D31C1AD65F3155AA /* pcy_tree.c */, - 2AA2D49E46F308C2B9D7AEFFF440297F /* pem_all.c */, - 0D705894742B7AECE42C642F46A004D0 /* pem_info.c */, - F95C628C2A27D30BED6DCC9D38BDF1C5 /* pem_lib.c */, - 7BDED696BE75F68B6825C21F5E27B66D /* pem_oth.c */, - C065202260D03BDA9AAA9C3FC89C4A2D /* pem_pk8.c */, - 520993DD615B962BCA83B87043F6B5C1 /* pem_pkey.c */, - 66939B5BD35335176BE852BF1F68477D /* pem_x509.c */, - 884791E9AF39E8C3C863A28EB681D6A3 /* pem_xaux.c */, - 6DECFA26782E608905AB20B2BA23DCE3 /* pkcs7.c */, - 7E79E4EA366048EE1E4AEF5E266F4A51 /* pkcs7_x509.c */, - F12ADB1764B204CD1A020753579C360E /* pkcs8.c */, - D5DF8494FFFDECFE6AC1E315C51FDFA2 /* pkcs8_x509.c */, - 9DB399ABB45D98928AE439A4EAD697EB /* pmbtoken.c */, - 5308BA4B92B51B01985457197C540C9A /* poly1305.c */, - 4111BC5322C8CBCDE833BCD63559BC15 /* poly1305_arm.c */, - 96EE001538F3FBB6B876119092EF95CC /* poly1305_vec.c */, - 7783292392AC373A65539E922FD7FE09 /* polyval.c */, - 765811F439771B8FE3F28A99188BBB05 /* pool.c */, - 0D1D9B7FF9B113BD0D08F70177D4C792 /* prime.c */, - AC56D82519B5C156EEE1D93D2A771B3E /* print.c */, - A4A529CED747C68F5DF2F2655FD30CA6 /* printf.c */, - E5FA3A38FA52055AE790370AE1C7D782 /* rand.c */, - CF3F3AA21887C68B6B22D4563A4E23D9 /* rand_extra.c */, - 4B9E632ADB408AA9CCF417432865BA8E /* random.c */, - 214B04D720FC7B254E359E8C73D2EA34 /* rc4.c */, - 2517A8D97C1C3BFC7DDF2D1CEE2601F1 /* refcount_c11.c */, - 4B68D369102811A3FCBE53E268FE1869 /* refcount_lock.c */, - 7451A4279638DD3D6B8057DACAA6E0BB /* rsa.c */, - FFD3EA5B5B99831F4F9144944A1B4ABA /* rsa_asn1.c */, - 22614C12534A0DA77B903B8EED70F18F /* rsa_impl.c */, - BD32FB5A07861CDE58BA4E26DC7496F0 /* rsa_print.c */, - A5A25621FE607FF55D8C182BD8B2DE82 /* rsa_pss.c */, - 1C8BE7FC0C0D8C3D4E18CDE3BEA5AFB0 /* rsaz_exp.c */, - AEAB44A52ACC36D38CC3CF28AF0B2E5E /* rsaz_exp.h */, - E155A005DF25CE96972E3AC05FB3A94F /* s3_both.cc */, - DDC90827167DE07186F2C45B18646DBF /* s3_lib.cc */, - A3AB34F81142DFB082834B70783FE229 /* s3_pkt.cc */, - DBC6321CBE1EADECC1A7375957D40CCD /* scalar.c */, - 79E9B6BF8F213DCB21DB892917ADF5DC /* scrypt.c */, - 62DF19CFF1EE9F5FD48066FF71779B14 /* self_check.c */, - 588A030CF215733900465F808EDA6BE5 /* sha1.c */, - 7F6E41B7326949C6F5E48863E5798E38 /* sha1-altivec.c */, - 47346890DB8CADEFB681BBA5D928462A /* sha256.c */, - 2F58B2BFA46E8AB96575505C1596C57E /* sha512.c */, - 11051F2C2550E6A52CB1022EE4E6A73D /* shift.c */, - 292127B5970DD256EB9B4D227EC52820 /* sign.c */, - 782C8B1210DD99790B729C9A51E5F835 /* simple.c */, - 1A9428B14F787924821F5CF6A803F297 /* simple_mul.c */, - 302A18CCD614B9AD5B368E47920E56A0 /* siphash.c */, - CCAA24BD543FAD45679BB35E20E75EF2 /* socket.c */, - 46A25C63BB58461F1ED4B77AAC130AE7 /* socket_helper.c */, - 9BCBE3146C591FB9B610D094A393F919 /* spake25519.c */, - 1D1D46CAAD98F49D19E437BF915C6B4C /* sqrt.c */, - 355446109EE55B4B00E77AE497275B42 /* ssl_aead_ctx.cc */, - 953A8091CE0C592123D1B5B837034795 /* ssl_asn1.cc */, - 6C3269DF933A36AD67E3F2C509E627EF /* ssl_buffer.cc */, - 26475598C62DA2BA400EEF0977CC14AC /* ssl_cert.cc */, - 492A21B3320D00AED3907D59249ECB03 /* ssl_cipher.cc */, - E695C5A78EA0B2F78681E3C1E6415550 /* ssl_file.cc */, - BF53444CA98CB0EEF8C2DE8E7F24355E /* ssl_key_share.cc */, - 27B41D444990669E3462B974E545950B /* ssl_lib.cc */, - 0AB3814B23C67744B7CECFC49B590473 /* ssl_privkey.cc */, - 2410EB361482A60F6EB96C7995A9D9A8 /* ssl_session.cc */, - 4303A2830306E65C9BEA2AB456ECBD04 /* ssl_stat.cc */, - DC1F569971BB63A727BCC88CA83A0FD4 /* ssl_transcript.cc */, - 0BB83BF4747E3E2DC80C6A3D27F17062 /* ssl_versions.cc */, - A38E6B74E76C605238B5E0961F228A08 /* ssl_x509.cc */, - 721F9D482BA10B75BDB5049CB8A83D57 /* stack.c */, - 58F5126CB35CFB3CB89D34370E0F55E3 /* t1_enc.cc */, - 186841B5446847B2D2442BE32E6BFEE1 /* t_crl.c */, - 87437CB2E5BC7E0D3721AE274DC57BCD /* t_req.c */, - B19A3739C63962C5F9250B750515A462 /* t_x509.c */, - DF4B715D2D3CD1E93A5E116190319997 /* t_x509a.c */, - 31CB79105C6E07611318E0573FE4D179 /* tasn_dec.c */, - 72FF79FD68F7FA479F1A649295F18AC7 /* tasn_enc.c */, - 02D2B48E16EEC1144F53F98D6DF73E99 /* tasn_fre.c */, - 484F6034FC172EDB0E0A8EA1FCEAC697 /* tasn_new.c */, - 372B2854CA1112609CD54E7C2AB696D9 /* tasn_typ.c */, - 338AD937C5D82034B874829C27B672D3 /* tasn_utl.c */, - 4DB6308303A943EF7C14532AAC3E0B29 /* thread.c */, - 577E93AD33C9EEE4C4DD5DF22B63F93F /* thread_none.c */, - 76067A3A72F9B8616CBA331F79721759 /* thread_pthread.c */, - 6BBC125812A1446D376318684CB0F227 /* thread_win.c */, - F5F58EB19671336B06F38DCB8077B470 /* time_support.c */, - E3FBE8F2B818881C05811BD975B4C16B /* tls13_both.cc */, - 23D7E87599070B56E740C1C2545B0E72 /* tls13_client.cc */, - 3484B2187B50937B04F33D472FC3A18D /* tls13_enc.cc */, - 79BB29CCDA18A39BF0778946D15438FB /* tls13_server.cc */, - 731AC8A2D407FA7020DFBFF5B56D8DDC /* tls_cbc.c */, - 7723C6D3B664A8FA682151019390F965 /* tls_method.cc */, - A1C07E68D4709890E188A735AB158086 /* tls_record.cc */, - 849A1163BE198D6657617FC151F0FFAD /* trust_token.c */, - 10A7F346BF20586EC4872FBDE4276041 /* unicode.c */, - D937FAE2336CFED96D2E760413BD2C52 /* urandom.c */, - 403420FD57F801406BA09CF67AA34299 /* util.c */, - 40ABC8FF1A58776E5D32779906E6AD60 /* v3_akey.c */, - C2F2316CD0DC56F88085F05A94197C8E /* v3_akeya.c */, - B12193B39AB9C9AD0B1D620F66457FE3 /* v3_alt.c */, - F55F6CD510B964675BE20024CF1921EA /* v3_bcons.c */, - 6E2D695C2736C5F6227401C45D9405DC /* v3_bitst.c */, - 91403BCF3BEB47BAB571115894508A85 /* v3_conf.c */, - 71FB8186443BF2952B72DB1B90382FB9 /* v3_cpols.c */, - 58AF641AC2B1113B880F899C1B65E8E9 /* v3_crld.c */, - 294CD7B9276C69405498746C2F4D395E /* v3_enum.c */, - 778BD763D34B93A6562A062315E4E0EE /* v3_extku.c */, - 9174CF0C5EF191C21D645C89DC9A15F4 /* v3_genn.c */, - 1F6FC346A052F9DB23C8B2447686F55A /* v3_ia5.c */, - F9203645BA0FAA60CA2F8F8FE1F5B21E /* v3_info.c */, - 799E8D80EBFBBAFAB822B01F28704954 /* v3_int.c */, - 0ACCE5A9C30AC47F61D3D672E8987859 /* v3_lib.c */, - 6F74C4B79EF23F4C098059ADF87CBB9B /* v3_ncons.c */, - DC6E7037F102DEF924EC45B262BE86D8 /* v3_ocsp.c */, - 5944AB752283D98A6EE08F0C1216B66C /* v3_pci.c */, - E5327910D0BDF08F4B39E825521C1512 /* v3_pcia.c */, - 572CC7E63EBE5612809F5A345639FF5C /* v3_pcons.c */, - 8AF0CDC6253EC8A2EA0CA4E6F62E4F16 /* v3_pmaps.c */, - 6676A792A9EB52E749ECD4C348E14EEB /* v3_prn.c */, - F348CA9589917F4EF4379A54EF6D350C /* v3_purp.c */, - 7A33FE4C521E1833DF1A4B2BE96DE21A /* v3_skey.c */, - B4F2982B337149EF34F636899118D04D /* v3_utl.c */, - 15367EA7C9BEA1146813DE3A0264036D /* voprf.c */, - EBF78627D85A05E925BCEC8B289D3D03 /* windows.c */, - 7E5B7F006D924395AD45CC2BA3703911 /* wnaf.c */, - A87D2959BC118BB2B56C983CECC7A4A0 /* x509.c */, - E007083C7EC0E69EEC5D3781AE86F704 /* x509_att.c */, - A0612DD7EE2C36175A1AA90AF6F8D4AA /* x509_cmp.c */, - 151D3117B5252D9812C5A2E2ECC77483 /* x509_d2.c */, - 427CED8AF3C4C27C7D6BD3F25EA68822 /* x509_def.c */, - AAFEE7754ED460AA142415E9EA87E4EF /* x509_ext.c */, - 7683E2F4EAF3627096B3860DE992A8F2 /* x509_lu.c */, - 4D1FCB656FB363AB1952BCBAD1A9F5B3 /* x509_obj.c */, - 7DCA23E37FB828A5C060E1EA6F1A8780 /* x509_req.c */, - 4D8EDCFC2622E277B355AA171FBC0407 /* x509_set.c */, - 70C1949E3EFF2D26D7CE9767E418B4B0 /* x509_trs.c */, - 6B1538F88DB716CC834D004C2CBF9B3F /* x509_txt.c */, - 2EDB2F167EADB2E8637A3DA5B1B162F5 /* x509_v3.c */, - 051E0706CD1594CB9D0E0EEC0FEF443E /* x509_vfy.c */, - D0D57CC0DF6920802DFB3317EE2240BB /* x509_vpm.c */, - ED0248F7016CA5C4A61F1CFA3D000F60 /* x509cset.c */, - D47048AB6CBE069988DF05B1D60FFC5E /* x509name.c */, - 301F96EF0324E4BB2ABE6AB951938A4A /* x509rset.c */, - 0AB212895931C1B830B838DED31B7217 /* x509spki.c */, - CBB9ABE80AE02D4BA51EBD6FD14CAC50 /* x86_64-gcc.c */, - CE0237899554CBB5F63DDAA329A2E06F /* x_algor.c */, - DB1E94CE7108438A6FD3DAEB224C426A /* x_all.c */, - F9C2700FD1B3D06EF98074306A411168 /* x_attrib.c */, - E98D24A1EC19DC58525C92E2A5F33B90 /* x_crl.c */, - C8D8F191902ACBE0F9EDCB74002C74E3 /* x_exten.c */, - F9D1CC3EE498999B30139AB65F642E84 /* x_info.c */, - 8D472872B5C24DFD93CCA5D8229AE8EA /* x_name.c */, - FDFDBD984846E1D8C8DDE6D4AAB1301D /* x_pkey.c */, - 7F672F0F888388AF3B470D815231A394 /* x_pubkey.c */, - E6B8E7E067A2BA1EBD9CB451591FF59C /* x_req.c */, - 18BE6DD368D580B5F84D88AB5E966528 /* x_sig.c */, - DD49D66BAFBE891DA7AA4111007D11DE /* x_spki.c */, - B5155D03FDC418BAA79EA193BD56B51F /* x_val.c */, - 3EDE27C56EE9D0DB6355BD59E4D57CB7 /* x_x509.c */, - 42D62DC109DA630D1DF0CFA43490597E /* x_x509a.c */, + BB33F485C59C7D64F34094F3C72906D2 /* async.c */, + 88FE02D7AE28CDF1F7EBE77EE8446860 /* atomic-ops.h */, + 67F54BA416CE20B11D28EFDCE6FE3157 /* bsd-ifaddrs.c */, + ECE20E52A132177D7F657454BF8E7C1C /* core.c */, + A19525F33674D372058D61FF2D3D3F5C /* darwin.c */, + 1E11132A5FA4E0699617B44029821CFB /* darwin-proctitle.c */, + 0BAD236D539E6BF688941098C07304E0 /* dl.c */, + 7906C19C47E966370A6167C903D84A38 /* fs.c */, + B6B8330FFF32C66DA58803E12204777E /* fs-poll.c */, + B4392D4D79EB0971BB641D2E77E27397 /* fsevents.c */, + B8F68D2D17CCD4428CCA31DA27054974 /* getaddrinfo.c */, + 8825F518BC3E5BD39FB1DF12108DFA76 /* getnameinfo.c */, + E50EC0C9B5933F5F2677892B60458CA3 /* heap-inl.h */, + DB45FBA5AA94CFB9045E5BFBFCBC067F /* idna.c */, + 1B51F9282D3B8773AD78B1301431BE7E /* idna.h */, + 71532035C5419BA505928148B8B69A9C /* inet.c */, + 4D16374A016B73B7C4CB4BFF1F229D3A /* internal.h */, + E005303BECE7BBDE0659498D611FADB2 /* kqueue.c */, + 6CE28B9ABABF7CB4285248F06FFFD5D5 /* loop.c */, + BC82608A1C2C06D7B4D713590A6C026D /* loop-watcher.c */, + 4C5BAC96761DFCABE4AC41DD71319A40 /* pipe.c */, + A60723C690B73630F2C3E7CEBB14E1B7 /* poll.c */, + 86F3189D9152A240AD1258D1760ED329 /* process.c */, + 34B4760C29B7455EA1C78D9C508FA68A /* proctitle.c */, + 1526622BBE214154302C8B3AA42F3B6B /* queue.h */, + 18261E4BAE253A6F6BA582C2E392E430 /* signal.c */, + 815DFE58523F1EEDDE428FE336B5F6E6 /* spinlock.h */, + FB4FC5B429AEA88E7F2E5B30F1EB13C3 /* stream.c */, + 4EA4E231445C9D0F0A0B00DC15A0FB9B /* strscpy.c */, + F68A522557564E4AAB4DBE58A6A1FC57 /* strscpy.h */, + 91BC5A400DD66545B6E9B9B32B08A7C5 /* tcp.c */, + B10B14F8CC0F37A0079EC2A2B4380B33 /* thread.c */, + CF89D8AA06D13A1B96598C7F3344355E /* threadpool.c */, + EB23431A9071AEE58D6C566B4E355AB1 /* timer.c */, + 6787750E22F13B7E22B16F739824A76C /* tty.c */, + F810BA782A8F9A327A4F37F535FDEC25 /* udp.c */, + D2E8DDF817DCEA13DECA000B455CF0EE /* uv-common.c */, + 8CB59C5A9A17D79DBB88D695B114CA39 /* uv-common.h */, + A524D397E70310B2E0229697A13AB1AB /* uv-data-getter-setters.c */, + 5293FFA252779DEFD7660E60C27E7948 /* version.c */, ); name = Implementation; sourceTree = ""; }; - C1DCEB57E23EC937B8FB85F8119B7C6F /* Products */ = { + CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( - BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */, - 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */, - CE8765B3053874E73AFDC78B5D6B4396 /* CLTypingLabel */, - 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */, - 8CC9178C366942FD6FF6A115604EAD58 /* FirebaseCoreDiagnostics */, - 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */, - 92000153CD73F7FC2DBAB4AB708269F3 /* FirebaseFirestore */, - 856B5CD56F194FAD26EA91620B66D614 /* GoogleDataTransport */, - B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */, - 1911113E0FBF13CFF9132E5FF7685228 /* gRPC-C++ */, - 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */, - B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */, - C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */, - 0A9F46A999C47653013D3AD854352507 /* leveldb.framework */, - 6BC54C3D03DEBF9C3A40965E69CAE039 /* Libuv-gRPC */, - 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, - 61E75DC80543DF7605A7EEFE89CE66DF /* Pods-Flash Chat iOS13 */, - 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */, + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + F119B4A0ABE017AECEE69836596133B2 /* Frameworks */, + 62F3BA6BF49B671B968138287E7E3B61 /* Pods */, + 0E519F919982C8F2E004D3A741D3BE0C /* Products */, + 95AF2F3A6BF6B054F5B2C3FB8F96548F /* Targets Support Files */, ); - name = Products; sourceTree = ""; }; - C2D029DB2738DEDEFFB0F904408900A1 /* stacktrace */ = { + D1093F443CE8F3551432F48C07408793 /* pcg_engine */ = { isa = PBXGroup; children = ( - 9EC7C9CDF520CEEBB66F272EEF7CB07E /* stacktrace.cc */, - 16ED6AC448078AE5BC8D36393271F233 /* stacktrace.h */, - 42090D55DF53D66BCF53836855CA9799 /* stacktrace_aarch64-inl.inc */, - 1B2C8D3AB989E23FB1D5E93C680949B8 /* stacktrace_arm-inl.inc */, - 756E5FEE42F22FA5F6A346ED037D2DCD /* stacktrace_config.h */, - CC0A5D90843E279269F9A66DA5AD1C87 /* stacktrace_emscripten-inl.inc */, - B10C863EE1FF3EC2F3DFFA963B297308 /* stacktrace_generic-inl.inc */, - 67CEB26B33A88C6DDC93A6A9D6C26247 /* stacktrace_powerpc-inl.inc */, - 3C646D57A34E390E5AD2E5E427DFBE04 /* stacktrace_riscv-inl.inc */, - 8C000874FD38C4F18E56DA495B7814F4 /* stacktrace_unimplemented-inl.inc */, - 8B33DF1B3D916AD1E131CB9E5F76A057 /* stacktrace_win32-inl.inc */, - 09E7A06DB41077318FAA5DD03E533C32 /* stacktrace_x86-inl.inc */, + 4E766CAE6130F17BCF4C80F2189C4888 /* pcg_engine.h */, ); - name = stacktrace; + name = pcg_engine; sourceTree = ""; }; - C94A5C8720AE20CB9278CB8DAE6D2B06 /* int128 */ = { + D2427D4DE6B759C8AB9E708B3541C130 /* synchronization */ = { isa = PBXGroup; children = ( - 0B0867D9044F28DE7A8D0F3752F15364 /* int128.cc */, - 70971CF4DE9C361E7B00EEDB67B2CA31 /* int128.h */, - 6D61EC7FD66A8CB74562DAEFC173E0C7 /* int128_have_intrinsic.inc */, - 00B97DC0B4F0A9A2781B471DD61B80C6 /* int128_no_intrinsic.inc */, + 47C45B362A9BA01173333FD63A009746 /* graphcycles_internal */, + B006CF2840EA77C5C80B57AE9B894237 /* kernel_timeout_internal */, + F027363706E60E45742EFCB36558A96E /* synchronization */, ); - name = int128; + name = synchronization; sourceTree = ""; }; - CDDFC2E45B06532E66CAD3F9DA55DCC4 /* base_internal */ = { + D34A019704F13A6EB864FC8CAC46BB98 /* randen_hwaes */ = { isa = PBXGroup; children = ( - 125E7C9EE2431EDDF575C7D0014726E5 /* hide_ptr.h */, - 4779625A715B73E29A8413C645E64F81 /* identity.h */, - 47AAB4EAA21F13C8410B01D184CD9981 /* inline_variable.h */, - 9BDA870F6A997E924EC4374F49264977 /* invoke.h */, - 20655B60247AFCFFA77E32454DB87EAF /* scheduling_mode.h */, + 9F97F096CE1E84B2B7D21901D3C56B38 /* randen_detect.cc */, + 67CDA08E1558C35E1DC16E82F9C69C2D /* randen_detect.h */, + E699D1B75123201FA73DEF28A80857E6 /* randen_hwaes.h */, ); - name = base_internal; + name = randen_hwaes; sourceTree = ""; }; - CF1408CF629C7361332E53B88F7BD30C = { + D38F5ACF5AB06FB66A76326961D42AF5 /* utility */ = { isa = PBXGroup; children = ( - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - D68CA58901FBF589D75F5E40F1EAF5BA /* Frameworks */, - 8AB5895215889637EC42325748C407E2 /* Pods */, - C1DCEB57E23EC937B8FB85F8119B7C6F /* Products */, - 95AF2F3A6BF6B054F5B2C3FB8F96548F /* Targets Support Files */, + C02229258EC85A964DFD2CD3EB0F6AA7 /* utility */, ); + name = utility; sourceTree = ""; }; - CFBDAE4830F2D490E10CE60C1E48E196 /* compare */ = { + D49D6826AFA6467C28F32FF1C05CD52E /* memory */ = { isa = PBXGroup; children = ( - CDF6EA864689F2CC9D215984D6B411D0 /* compare.h */, + 387F928FD897484D3CADD7D36E9B0088 /* memory */, ); - name = compare; + name = memory; sourceTree = ""; }; - D2AF5DC7540FC26D0A726D4DA5CBB6A5 /* variant */ = { + D4A1E6311475356E73DFE81FBC487805 /* salted_seed_seq */ = { isa = PBXGroup; children = ( - A814B69D1F85F802438ED668CFDBE5DF /* variant.h */, - 44039DF72B4BF0B25C130FB6CB5D4EB5 /* variant.h */, + 583DFBE6D4A137F69A4B9368A742D1F0 /* salted_seed_seq.h */, ); - name = variant; + name = salted_seed_seq; sourceTree = ""; }; - D400A358BEC79483A1F6AED4F661E14D /* Support Files */ = { + D5607CE0E67DC55263563FE39F9E5299 /* compressed_tuple */ = { isa = PBXGroup; children = ( - 03CC49C3B01DDFAA85DCE5CE96BAC488 /* leveldb-library.modulemap */, - B78D77EEB3DF4256C73F29E5FB7B3497 /* leveldb-library-dummy.m */, - C283B4B18029941C291B5DB40FB284E5 /* leveldb-library-Info.plist */, - 77D4A200637EB55E9B87B72A6B637C85 /* leveldb-library-prefix.pch */, - 2A76F1906C8853A58783E519A67E1174 /* leveldb-library-umbrella.h */, - 1FA7EAA56B657EF8C16E2544E895206D /* leveldb-library.debug.xcconfig */, - DDC5467A6D118C9C70E8C109BAA8D824 /* leveldb-library.release.xcconfig */, + 705F100A728668F0DF00FBDD3C907CB3 /* compressed_tuple.h */, ); - name = "Support Files"; - path = "../Target Support Files/leveldb-library"; + name = compressed_tuple; sourceTree = ""; }; - D4A08A55866B3D7F6DEB9754ED9FA00E /* status */ = { + D6B62B7D57E5C5DC40861644773AD0DA /* leveldb-library */ = { isa = PBXGroup; children = ( - 3998BB66C64F6FB6F2C28162B2E8AF50 /* status.cc */, - 708130ACF964A8D33BF1C90ADC381495 /* status.h */, - D730797E39DF8B969E19E57AAFF8FEE6 /* status_internal.h */, - 2E7811BCD18DEBE33FDFEBFC5D70119C /* status_payload_printer.cc */, - 80A2F96EA0BE65CE1AC28E09E53B5222 /* status_payload_printer.h */, + 8258791535999377ECF95F6C05A42690 /* arena.cc */, + 5B0FCFDE5A85A9FF604CD0A31D8DB65F /* arena.h */, + 1F451B60944121FEFC1FC66A4AFD61D5 /* block.cc */, + 56D3FE75F1B1D41CBD708A800DD8DE7E /* block.h */, + 3D48C547DE2DFD29C7E93652DE5048D1 /* block_builder.cc */, + C3E0718250A8E4A74B431A01D19FE34E /* block_builder.h */, + 627F348A709184931C81C7DC6243D335 /* bloom.cc */, + 9617ECBEA3D046DEA2E92E7C19AA772A /* builder.cc */, + E85CA170651FD4B710B267495F88637B /* builder.h */, + 69AF57F8DF6E3DB946A1BB3D1CBA7725 /* c.cc */, + 05C28F3B72B151276555410668D8643C /* c.h */, + 34FEA3E610E827405AA5544188088986 /* cache.cc */, + E106DDDC07758BF20BE9DF79C4DED214 /* cache.h */, + C3D22391D63CA983FE0930C3FE3D44F1 /* coding.cc */, + 60C1DF1EA5F39F27D4422E5EE532A857 /* coding.h */, + C0269689F05C73F4A61251697E1AF937 /* comparator.cc */, + 66494F04CF8C36BEB0AA90498E9C2FC1 /* comparator.h */, + 1BD7AEAFC9279838D18F7EA69E9430FE /* crc32c.cc */, + 7114A1BBD0A88B90A7BD7BA736A002BB /* crc32c.h */, + E9613020AD0125F4B8BE1C91A4C70AAA /* db.h */, + 53AC386B0850DF29A012F1C2BE733C22 /* db_impl.cc */, + 4A65C0B477975BA37D09B734D955E8D4 /* db_impl.h */, + C4871B46F2DA745D913A50C049CD99D1 /* db_iter.cc */, + D0001475ECDEAE1DD9B8CDF7F4A24A34 /* db_iter.h */, + 5D87612D6A95A1E643AC1CD7460BEDB3 /* dbformat.cc */, + 48C3EE15FB94E15FA92722FB867B7D4F /* dbformat.h */, + C9CA1C767D40D3B5E20E960BD370548C /* dumpfile.cc */, + 53137AA5BD2EB0BA3A556E9690CC740C /* dumpfile.h */, + B3D77C530658F53FAFEA226D83A90A7F /* env.cc */, + 9AC366CF27ADEC900D1116A2BC1475D2 /* env.h */, + 223B0017B4C77BE4D604446D11920FA8 /* env_posix.cc */, + 0A19B43A8EEFC3CDC8ECB094A7374160 /* env_posix_test_helper.h */, + B86E275AA5E7E3977F5AA59FDD19702D /* env_windows_test_helper.h */, + 20BA2C217877C918003B2B98FEF8511B /* export.h */, + 5199E32BCE5C570B66FA0F57B6D682ED /* filename.cc */, + A286722D838B8F340572D1C263D3C0BA /* filename.h */, + 9788943FC7DB8E2ADB55B65E8F8E0BDD /* filter_block.cc */, + DD7491A8987E9FBCBE8F125AE340B1DB /* filter_block.h */, + 8A5E82C9952318E9F868D9394412CB87 /* filter_policy.cc */, + B48ACA416D5919AACC1A750C2849036B /* filter_policy.h */, + BF1979D8929617FAEF348191A2E06EE9 /* format.cc */, + 9522B42463AE4917E0BA399D3106B1E6 /* format.h */, + CFDC3787ED419800135E2AC94699703C /* hash.cc */, + 93A6C8AA95D15B12577C8E9C6458EF19 /* hash.h */, + 7D7C444F6FDEEF8094244CDA322A3BDC /* histogram.cc */, + 60AAB986D98FE2F729B493DA6CC9C066 /* histogram.h */, + BE610C5B61E2AC9BA369DF4D2704CF7A /* iterator.cc */, + 6C648D09F08F8E6A3ECF80A287201519 /* iterator.h */, + 1B7D2CA49842CAF0F5C8A63B458418C0 /* iterator_wrapper.h */, + 9507861C2A1FE93F3DAAE3C299CA5B7A /* log_format.h */, + FD0E24185D12F451AC29668BAE6A8804 /* log_reader.cc */, + 71BF023C603DCCCAFE0663AEE43044E7 /* log_reader.h */, + 56386944F1390AEEC7302B7F060CD7C3 /* log_writer.cc */, + 2C3853E0DC5EA6896A116AD6FFDFF67A /* log_writer.h */, + 08EB99F26F7D35BE29E373EA799789BA /* logging.cc */, + D494A11D43248225F158629F7A68458B /* logging.h */, + 392DD530D6D0760FD5D217FEFA49696D /* memtable.cc */, + 9A0D99BAF98C0BEBBC672D91723DD3BC /* memtable.h */, + 20CCBB8B7E1FF77ED33700685F4876E0 /* merger.cc */, + 585BF855EAB3E07C70D84B14DEEC470E /* merger.h */, + 58626C8BFD8833B7F7E8999F42ECB758 /* mutexlock.h */, + 011A747DD6E1D7CD9ABE6373A0BFED98 /* no_destructor.h */, + EB96E9B576F79DE00D2708CF4AE7174F /* options.cc */, + FC34D9BE39A78FEA6E005FAA55C5BC8A /* options.h */, + 0DD294B92ECD517E655FB0A17B672024 /* port.h */, + 73A5930687BFDDBDDA1BE6C4331B552E /* port_example.h */, + 8D58406B63AAF6FBD7BA1E3D656A283B /* port_stdcxx.h */, + F95A0B77E4366D086D267B00561DD262 /* posix_logger.h */, + 1430D03B25D104A42F82CE76AD517CEC /* random.h */, + F15F6A517CA7BA8ABCD8C867C74A5B1F /* repair.cc */, + 8D5F131E85E45ECA63832E0B19237D34 /* skiplist.h */, + 151AC94D7046FCF14DE6DD223CBFBEC8 /* slice.h */, + 1F838F33E12E6DC68AF33DCD094AAE58 /* snapshot.h */, + 3A588735D33B9410B0E7E3BA2B42ECA5 /* status.cc */, + DD95AFA33B7DDB1544B2E443238F02F7 /* status.h */, + B80C37F98F4FC7219C79270D8F991D52 /* table.cc */, + 354C62BDA8DCC7D3DA0FFA69418D57D1 /* table.h */, + 8DADD6A71217D1C6E5BF6864A57632EE /* table_builder.cc */, + 44FC0E9CE6C3B92C7D2B44E95498A324 /* table_builder.h */, + 9B99BBA2743E8D6DA8761F2E03886760 /* table_cache.cc */, + E4244F940DADB07C9263186B7844DFC2 /* table_cache.h */, + F2A7AF7CEDEFDE3FB43A553AD80EE77A /* testharness.cc */, + C5DF24B9D98AB1252B93075E60282939 /* testharness.h */, + 7D3A1284464B508492692682F0A0E29B /* testutil.h */, + 30315E980D315C55E1326F4F751F03F7 /* thread_annotations.h */, + 48299CEED2A49262C6EF76B318B31623 /* two_level_iterator.cc */, + 1A92270940A15FEC6C6751BC8558C25A /* two_level_iterator.h */, + DA33063B918A2ED89801D6DCEF1DE7D1 /* version_edit.cc */, + 228E366A9D6D040175B01E63369F74EB /* version_edit.h */, + B64D025EDD08BC07DBBFB883A804FB4F /* version_set.cc */, + DC8DF9B81455915D6BAE137EA69A36E0 /* version_set.h */, + F68DAC0761180F8A33071A006C096B96 /* windows_logger.h */, + D3990CBEE55BF68E8726FA882C3E50A2 /* write_batch.cc */, + EBFA885EF93320E46228BAA084A62515 /* write_batch.h */, + CA57871C8D840E07D16B64F6D4103272 /* write_batch_internal.h */, + 1F2E0D5CCA221DD5A002C05D6340A855 /* Support Files */, ); - name = status; + name = "leveldb-library"; + path = "leveldb-library"; sourceTree = ""; }; - D58C35EE03241AF7A95DF3FBF2BAC299 /* strerror */ = { + D79920EDF5324C6806044AE0C3A2DBAC /* hash */ = { isa = PBXGroup; children = ( - 3AE6417212A9C1AE8A5B704BE8BE7FA6 /* strerror.cc */, - 2239C4362DD148908BD031839107AB18 /* strerror.h */, + E866D5C11DCCEB4847206E4C901BC3F1 /* hash.cc */, + 07E0092795BD8E928F460DB840A8F13C /* hash.h */, + FBB3772FA0CFC6FE664C881C261302DB /* hash.h */, ); - name = strerror; + name = hash; sourceTree = ""; }; - D63716C19643B2498ADD379A91B6CFCB /* Network */ = { + D854302983624FAA1B3EE0FE79D90533 /* malloc_internal */ = { isa = PBXGroup; children = ( - 8F7AB6697F012D5B4C6CAD1527648734 /* GULMutableDictionary.h */, - C5812F8E628993B351C6066BFE35E56A /* GULMutableDictionary.m */, - 553AF1D17FF3C303161C8CE4614D629D /* GULNetwork.h */, - 72350D6A51CDE93C4DF9CA2C4CDB176C /* GULNetwork.m */, - 5B5F1B2CD3C7C4A727C96B227BADCAEA /* GULNetworkConstants.h */, - 527C17EF3B4C69823F04617EC5125736 /* GULNetworkConstants.m */, - DBFEB3D4747533FD2C19D99D744563B6 /* GULNetworkInternal.h */, - DC8552EF2CAB93C5141DBBD292FFE15B /* GULNetworkLoggerProtocol.h */, - F0E7F4AE48EB81AE062C4372FD027BEE /* GULNetworkMessageCode.h */, - 38B9273E7AE3746D054C8426D81E4F11 /* GULNetworkURLSession.h */, - 36B1F4ADC2A1AE05945D9DD5887D8C3A /* GULNetworkURLSession.m */, + ED9CBE0F7524619D3A0F210215C21035 /* direct_mmap.h */, + C2F23EB7B1DF87A20AE1CD0347B8F4DD /* low_level_alloc.cc */, + E7A81290BBD10CD8C868AFFF1885AAB4 /* low_level_alloc.h */, ); - name = Network; + name = malloc_internal; sourceTree = ""; }; - D677001B4CDC3A1CAB6FD754E36D89FB /* time_zone */ = { + DAD80FB4D10EB15B46DF226D7CCE072B /* log_severity */ = { isa = PBXGroup; children = ( - 08E13ECFF2261B5D89C0EE63092ECCAC /* time_zone.h */, - 1DEBFE4A61DCBA5995E99136EBB60381 /* time_zone_fixed.cc */, - 2E2092D66C4B88A11CF1BD9D12226F21 /* time_zone_fixed.h */, - C51B5200207C17F77D9517A51B97C6DB /* time_zone_format.cc */, - 03281A9BADCE0D3F956492525C03536B /* time_zone_if.cc */, - 2D4CA1D2355D777A33E37CB19E837A67 /* time_zone_if.h */, - 51C01A0A42203BF3A2AEBC597A235616 /* time_zone_impl.cc */, - 22C62FCFCF0BCD4614045187C1B27BFD /* time_zone_impl.h */, - F14F0DE50B4CB633FAE83E281885F8D9 /* time_zone_info.cc */, - 2167347ADE2E4333838FEEC3311BA218 /* time_zone_info.h */, - E6E1DE6163A6D4EC0E925B494E7AB7F0 /* time_zone_libc.cc */, - 9B756D9A2C31F832C76F825485E51440 /* time_zone_libc.h */, - 38B8E02B0D17EF431AC21F08FCA42544 /* time_zone_lookup.cc */, - 00AAD56CAED7DA6A268CE5099AD23829 /* time_zone_posix.cc */, - 57154B976BBF46B3B191F57066FBB2B6 /* time_zone_posix.h */, - 42355E783CB4889255904EB91487EF96 /* tzfile.h */, - AF9DEF0109F3CF6416E2EC1779559E08 /* zone_info_source.cc */, - 558FEB78138F8D6E914C3226741CBFE6 /* zone_info_source.h */, + AD6272B3ABBE476B1DEE30DE473E0074 /* log_severity.cc */, + C9D69D1FB058E741B878E2EA0AF11B3B /* log_severity.h */, ); - name = time_zone; + name = log_severity; sourceTree = ""; }; - D68CA58901FBF589D75F5E40F1EAF5BA /* Frameworks */ = { + DB0A3DE7AFA468A54CC0BE26735971D2 /* config */ = { isa = PBXGroup; children = ( - B0A12B7E34BDA2CF6E19C333ADBA4729 /* iOS */, + 7760EB3569504B2BE667954F0E622034 /* config.h */, + 25E8F8CA9D47FBE4D02A871FA5C28366 /* options.h */, + 1F60678A89679FFFD3C3CA52B98AD7F5 /* policy_checks.h */, ); - name = Frameworks; + name = config; sourceTree = ""; }; - D7E844A5A7A67C03A023297108240E7A /* FirebaseFirestore */ = { + DDD2F0DB7E32E66568224BA7620E0898 /* cordz_handle */ = { isa = PBXGroup; children = ( - 3A114BCE9571AA2D9ECAE71024A349E9 /* annotations.nanopb.cc */, - 6966DEA203904AE91FD20E8881552F78 /* any.nanopb.cc */, - 082DF87FA64B8555F0A22DA75AA9F2FB /* array_contains_any_filter.cc */, - 34DB73A41B0B3D3E2D58654BF92182FE /* array_contains_filter.cc */, - CFA4F84ADDE9D42E8A533CA19310F62D /* async_queue.cc */, - 4BAB95E1B5D560D31ABE95BFB7348DB3 /* auth_token.cc */, - B3E780272BAD67304665F2C021A720BB /* autoid.cc */, - 030219229BE5BA4A5D3AE7087D1EA6FA /* background_queue.cc */, - 1C31F25B1C421AC8C5E1B06DAF5190D1 /* bits.cc */, - 9529D7F9B12E9292160BCBEDCDEC6DFF /* bound.cc */, - B73CAE13E3638576F3A52306BC74F26A /* bundle.nanopb.cc */, - F59C17FA51337D4E1D53DE48D24CFB1E /* bundle_loader.cc */, - 8128F2E689D384161325885434437A7B /* bundle_reader.cc */, - AFAA0269C3521FE07920601F784DC1D4 /* bundle_serializer.cc */, - D8693045961A4F90EB797D43A606E523 /* byte_stream_apple.mm */, - 91BB38196304FAAA1B318D6220C17D9F /* byte_stream_cpp.cc */, - BED43F18EDA973069665FC5F582F01FD /* byte_string.cc */, - 691441895B3EB5739F8E21306168AFA4 /* collection_reference.cc */, - 3F7102986CCAAD8488D026CDA6A6B5C4 /* common.nanopb.cc */, - FE3B5D68080F146728C8997C4A33236E /* comparison.cc */, - B9831C4DBD2223F1C95190A0D511E27B /* connectivity_monitor.cc */, - D1278476EEAF9DCBA841C37F3109080A /* connectivity_monitor_apple.mm */, - D7A4D4F24271BABBA08D314EB1F8DA79 /* converters.mm */, - 8F089400446FF39AEE585E9EB90DCC06 /* database_id.cc */, - E08BD7600DB08ACCACAFB35E3B0D58E7 /* database_info.cc */, - AB970916F21CA2D5729CE8F3C058F34A /* datastore.cc */, - F2738DBED4DD1018F316A2BCC19F191F /* delete_mutation.cc */, - 0491067842479745D9A5CAD7353AAA78 /* direction.cc */, - 9F7C4BA109A1D722C7E7DD56A694AF4C /* document.cc */, - E1C937C3027E078D1518FD5A761B5503 /* document.nanopb.cc */, - F28D93D0392D301003A54356AB26BD46 /* document_change.cc */, - 0797522F0757818688768EF3E2DDCAF7 /* document_key.cc */, - 823307DBB99753D7D63E4240D7AB7532 /* document_key_reference.cc */, - 9E27BC682ACD3CEF13F6C23E2283D152 /* document_reference.cc */, - 46B584C459823DF83ABC276F03C171E9 /* document_set.cc */, - BC45D0BB316586D6D853CCF62185FADB /* document_snapshot.cc */, - AE9E6B5A42C82C2BC06FBFE8EABBB5A2 /* empty.nanopb.cc */, - F3C74FB6699569A51F2AB5B01D0470FC /* error_apple.mm */, - B0BACA7AF1F29511585CA8F32612F946 /* event_manager.cc */, - 9BCFD6C0C19E74A5FAEB69E748A33728 /* exception.cc */, - 7D4A427A4270E220B6DB9600522D32E8 /* exception_apple.mm */, - 8F6621CA44D8B72E9E90EEDDC58FC8C0 /* executor_libdispatch.mm */, - 46EC2848BF69F0FCD2CF694ECED54685 /* executor_std.cc */, - 45A8734345F07709480D7823C549FED8 /* exponential_backoff.cc */, - 15463D2206CE9BDF45FF9F3C957A5952 /* field_filter.cc */, - 47A19DBC2BDF461D70C4145E0880B0E3 /* field_index.cc */, - E23C76272ECD4ECB694402E88B794149 /* field_mask.cc */, - 3338EF7CC0F6A7B5B62EFF92A3FA755F /* field_path.cc */, - 9A745238172ED92D4CEFF0C0CF78092B /* field_transform.cc */, - 8BC194407DF61191096C06CF542587B1 /* filesystem_apple.mm */, - 15202DDC387AB84537DCCCEB03246778 /* filesystem_common.cc */, - A2368298FB75DBE1B86D762ADFDB8EDE /* filesystem_posix.cc */, - 2D55881B4D51668D099863AD66D35FE4 /* filter.cc */, - 8A360C4E0E8DFA7C76B2BF59DB3D65E4 /* FIRAppCheckInterop.h */, - 350F82129B072868F3B3EC0AB835B050 /* FIRAppCheckTokenResultInterop.h */, - 2CFF16852C2AFC38C831643FC787D0E2 /* FIRAppInternal.h */, - 6C8CEDFF36B3667702B1AFA34A9B9A7F /* FIRAuthInterop.h */, - 4B60CBE0EC099335CFEC19ADB8EEC731 /* FIRCollectionReference.h */, - 8E0E42B27A0C562BD52063883A093B81 /* FIRCollectionReference.mm */, - E16F600F5BFFC32128B93D6DA86C2DDC /* FIRComponent.h */, - C07B7906FDE9FDCEE614599B22B4C281 /* FIRComponentContainer.h */, - 46C8727CA006A6CF451B6EDAAD249B57 /* FIRComponentType.h */, - 6E3F352FB05A9C17F11825B91558346E /* FIRCoreDiagnosticsConnector.h */, - 616F9F183EFBE5B98C5791972DD1ABA4 /* FIRDependency.h */, - 43862307DEC25588167313C147983B33 /* FIRDocumentChange.h */, - 52C8017BD512BD1CBD411D507040798B /* FIRDocumentChange.mm */, - EB261D2E8DEF8C7F3DEFC6A0E40124B2 /* FIRDocumentReference.h */, - 38336A03A8D5B55061CD43C2CA7AD1D8 /* FIRDocumentReference.mm */, - 31FB8D5B4FC165FEABA997D168908CBE /* FIRDocumentSnapshot.h */, - 77F634E5FC9C8843C5E7D717581C76A2 /* FIRDocumentSnapshot.mm */, - EFCDBABFCFCDD85E1D659C09448A7BA7 /* firebase_app_check_credentials_provider_apple.mm */, - 0F00A066CADA55FF51D7D626B01EB967 /* firebase_auth_credentials_provider_apple.mm */, - 41A034203E4D9789F401092AC3308040 /* firebase_metadata_provider.cc */, - 87D14E6E9EC2BC22A4D7C68274C25BA6 /* firebase_metadata_provider_apple.mm */, - 689BCD4A69BC62B4DE25A7D617450B06 /* firebase_metadata_provider_noop.cc */, - BF0E9AD1D54D168BE2EED10556C27EC9 /* FirebaseCoreInternal.h */, - B999C5BBD7419FCA918DA140A294925A /* FirebaseFirestore.h */, - D7A6E1BD7B1922B011D56859695076BD /* firestore.cc */, - 93BBC3402C79F0310D07B56F0E79E803 /* firestore.nanopb.cc */, - F7509B6E3A393E84102B2CD2D6C28FC8 /* firestore_client.cc */, - B4E237C549EB7530084E39A5BD628FA8 /* firestore_index_value_writer.cc */, - 4CAC45ABAEAEF192E6290FDD3286F4ED /* firestore_version.cc */, - 48C982BD56A0CA1D5B756A336180642C /* FIRFieldPath.h */, - E253167A05AC66A4F9B0084C15177D55 /* FIRFieldPath.mm */, - EB772318A59C605E4C6DFC555E79904B /* FIRFieldValue.h */, - D434BDC04715A1EDA7B91096A897AC44 /* FIRFieldValue.mm */, - 0534BDFCB05C211DF3E7EE6BAFA4C0DE /* FIRFilter.mm */, - 97224898A8E89C03905068F65693EE03 /* FIRFirestore.h */, - FD01CAAF1CB8E468112CB41BFF20BE1F /* FIRFirestore.mm */, - 4A5A80D2FD12EB9BF337108FB83801DA /* FIRFirestoreErrors.h */, - 7DC59AAE557C5D8876B7CAA3FBF631DF /* FIRFirestoreSettings.h */, - A72880DF767EA1F6BEB0EF23FDE047E3 /* FIRFirestoreSettings.mm */, - 445D3A262160D62A827D3907AD6C3454 /* FIRFirestoreSource.h */, - E6A4871BDC1F28C1FD965F1685D3BB02 /* FIRFirestoreSource.mm */, - 4FF241228E1D7A5D8F3D14681DC4ECC6 /* FIRFirestoreVersion.mm */, - 5822F78F5E1490E66C1B4E5CBDAFE96D /* FIRGeoPoint.h */, - A292C6FFC9286CA78ED588E91CB94A07 /* FIRGeoPoint.mm */, - 4088D74A22F2C8BA9604AAD6BBEA807E /* FIRHeartbeatInfo.h */, - C4B8AA83F3EC994CCADAD9294FD100BB /* FIRHeartbeatLogger.h */, - 3CCAB43DC02E598FC4D40B6F9B118BBE /* FIRLibrary.h */, - 4D4F7392040D08FFEA15676381598298 /* FIRListenerRegistration.h */, - E06E0ACBC7AD67018F9414C5C3CC5036 /* FIRListenerRegistration.mm */, - 11D3F44C7D05DC20BBFDA01D021730AD /* FIRLoadBundleTask.h */, - 3019D75318370CD3F98D6EC27E1BD637 /* FIRLoadBundleTask.mm */, - 50C2F3FAC412F3F87B88FBBB69FB45EB /* FIRLogger.h */, - 97DE13C4E349D8FB18F0F3CB3193965C /* FIROptionsInternal.h */, - 6D28577CD5265D4152156278437C81F4 /* FIRQuery.h */, - 681149C34A4F645D6CBEBC911ABAF9C1 /* FIRQuery.mm */, - 24261D04D1AAB92CF8F1244AAFA8313F /* FIRQuerySnapshot.h */, - 9455CE2666E6C815644C967E7B1DCEBF /* FIRQuerySnapshot.mm */, - A4C921B1A372B68D80CD4463811A224C /* FIRSnapshotMetadata.h */, - 5EF5B116F4455A1595B671345AD15A87 /* FIRSnapshotMetadata.mm */, - B385F9E1755D429AAD18C5EA5D3FA9C4 /* FIRTimestamp.h */, - C6D86630663F758EA2D3029744C730C4 /* FIRTimestamp.m */, - 99E69B26388C023E3672467A76CCED67 /* FIRTransaction.h */, - C3178AA1C1D7B8AF668B13F35208BB37 /* FIRTransaction.mm */, - F2F4CF16F8909913BF91E0D6289B56BE /* FIRWriteBatch.h */, - 7C39B82C23E304C4405C33DB91B2EF6A /* FIRWriteBatch.mm */, - 40A3CB94F9F0A09887BD7D5CF7B2CEC2 /* FSTFirestoreComponent.mm */, - FEB604D15FE98D324F07E7D3AD9C746A /* FSTUserDataReader.mm */, - 90870DE07B32AF11702B9B7186D45229 /* FSTUserDataWriter.mm */, - 0694CC8E77BC7242BAA35ABFFC770A96 /* geo_point.cc */, - 8A183A96D23C6A3969C3121A9FF9905A /* grpc_completion.cc */, - B9E146F70D02B8CC0A7E50612484142F /* grpc_connection.cc */, - 2C8C251885ABD3047EBAF2443F9E18F9 /* grpc_nanopb.cc */, - E4228D7609B06D2AD530873B28AA28D8 /* grpc_root_certificate_finder_generated.cc */, - AAD55419D7EC5B103AE513F2F4EF9CDA /* grpc_root_certificates_generated.cc */, - F0E89286887058C2C817910578913803 /* grpc_stream.cc */, - 8B88E0C25A38850E3616E84F5C36C4EC /* grpc_streaming_reader.cc */, - B37F5099C45824EEAA04C58C396669E9 /* grpc_unary_call.cc */, - C0898967AE05308D359F3516E496E156 /* grpc_util.cc */, - 65FF07469E3E003F22E6DC2F69A5E9CC /* hard_assert.cc */, - A0AB6AE6D2CCC47F08DA0806F70553C6 /* http.nanopb.cc */, - 65C4F6C9239CE764D0188A0F8B0EF0A5 /* in_filter.cc */, - 3C6DFD5E1EFE0699F1666D90AB5D9D8E /* index.nanopb.cc */, - 895CEBE178D620DB513F64F9CBF4ED59 /* index_entry.cc */, - 4EA4FE0EB23C0EC7AC83EA50EBFE7212 /* key_field_filter.cc */, - 8F885CE4DB729CCDCBEBF5F515800D4D /* key_field_in_filter.cc */, - BF2FE446350A1E047C2367CD87369454 /* key_field_not_in_filter.cc */, - 5250D9750970EC72662A4328BC6D34DB /* latlng.nanopb.cc */, - 6D3B69AA6B3D6B45583CFBC1B10EB2A7 /* leveldb_bundle_cache.cc */, - 6EAEA415A64F8DB6CEDDD4A59B706A06 /* leveldb_document_overlay_cache.cc */, - 9FB4A7CE6B95676BD9DE1C91B045ACBC /* leveldb_index_manager.cc */, - 2A09129A84D16BC2141876A2ECF39439 /* leveldb_key.cc */, - 58D272EA215EECAE8DC278AE15D91714 /* leveldb_lru_reference_delegate.cc */, - 91D00B671669A00EB739F6894916C79B /* leveldb_migrations.cc */, - 71E8FFB0BADBB1ACC9E9503EB6B6A4AB /* leveldb_mutation_queue.cc */, - BF36737EF3290BF92212CEB76D0F1111 /* leveldb_opener.cc */, - AD32C21BF3431BF755C1A9D4D9FBB224 /* leveldb_persistence.cc */, - 66A6513433CF495099C957118F59AC12 /* leveldb_remote_document_cache.cc */, - 98C9ED461B398EC3B0DC4D473566E8B1 /* leveldb_target_cache.cc */, - 3203273057655BF14A87E80BB9B001F8 /* leveldb_transaction.cc */, - 71A8C0E6EF560847943F61F7B99CBF3D /* leveldb_util.cc */, - 9177571BE7454B91753C83EB97D2EE57 /* load_bundle_task.cc */, - C9429E0E6D8F7BF91DC68FF398D7ED89 /* local_documents_view.cc */, - 905A7EA781C7788A3FEA5515F64BCCD3 /* local_serializer.cc */, - A0090069E44E1463B0D85EDA9F28EFDC /* local_store.cc */, - 98341E91CA9FA8B8C50C0EA6B878F943 /* local_view_changes.cc */, - B64CFE40FE5A39557FA57AA845062583 /* log_apple.mm */, - 57BB953F0CB0C433464020B0E00F59F9 /* lru_garbage_collector.cc */, - 5D8668150FFE78F4E1915CD4AE4BA246 /* maybe_document.nanopb.cc */, - CD10693D79C4585EB7768E62B52B9822 /* memory_bundle_cache.cc */, - E81FDB3722FFACFB579184408B8B40DD /* memory_document_overlay_cache.cc */, - 778A0AA9A13B9870BDB5FFC5D9C08489 /* memory_eager_reference_delegate.cc */, - 06214A3F5DE0E5E97C1063F4E5C4CA1E /* memory_index_manager.cc */, - 43FA37281A22B19D72F841F269ACCE2C /* memory_lru_reference_delegate.cc */, - 0267924C8F19F2FEBFEE014398CF5B95 /* memory_mutation_queue.cc */, - B10BA2A48A4387790E2E8E48FD9575A8 /* memory_persistence.cc */, - EF994F46A9C8965E8ADC6066B89D511A /* memory_remote_document_cache.cc */, - 46B947F779A6111861D50A97B81A9F89 /* memory_target_cache.cc */, - 37DA25A646BF1A4E8B198FA3A2DBC6B2 /* message.cc */, - 55F980E84623602E0204B77CE99A9372 /* mutable_document.cc */, - A0A557D90815FEAC898E3BBCAE0D6167 /* mutation.cc */, - 51E171201B95E22D24FE86EA60539F2E /* mutation.nanopb.cc */, - 44605840B9B334BDDB4C7FCBE5FD834E /* mutation_batch.cc */, - B9832B887B590C7F41D9F8D0E438773D /* mutation_batch_result.cc */, - 1347E56BC088529A1E10AB3717C8D528 /* nanopb_util.cc */, - DDF341C1AC91DFF46EFC5323EE23D3FA /* not_in_filter.cc */, - C4E98A827DDC89CDC66B26FA1BBC60EC /* object_value.cc */, - 557AF053195E4E1535624B1F30AEE6AE /* online_state_tracker.cc */, - 5BE83B8E9DF939E3C5AE171BFA0D044B /* order_by.cc */, - 1CBC7A784CB8D56FD8185B16AEB663FA /* ordered_code.cc */, - 4A06A319259E70B5428B5F626BA3B93B /* overlay.cc */, - 9A32E86A187F522D01C7A8D7BC727210 /* patch_mutation.cc */, - A9954561F37DDF67338EC19E63424575 /* path.cc */, - 726A0D5A76092A2CB4107CF225B5C259 /* precondition.cc */, - 99D793024EDD5BB6A78FF667AB3516AC /* pretty_printing.cc */, - 0BE317B351B87093CD8D68D54373ADD5 /* proto_sizer.cc */, - CACBC4FBE9681958C6A8F52CD5B1DF40 /* query.cc */, - 3FDF4D5DF64A51C8ED5950D01332A0AA /* query.nanopb.cc */, - 0730AE84D2819641162A6300FBCE6EE9 /* query_core.cc */, - 645D28926BB292C897A77E7D91F4689B /* query_engine.cc */, - 33E148A32E81CE02789BD5E8B8E6A2F6 /* query_listener.cc */, - C8485145882155D44FD39FE4D318CBD9 /* query_listener_registration.cc */, - 6A8E4912054D86CE62D7131A5ED68EE9 /* query_snapshot.cc */, - 44AB9CC0ABD6027D0E570AFA0B38B90A /* reader.cc */, - 81F35E616D7A24D8E2DD72A96E7F1047 /* reference_set.cc */, - C5AE5875EFB2BA3FAADE1A0F36FA79D0 /* remote_event.cc */, - 930BD135D5F2536283B699A4A89B3642 /* remote_objc_bridge.cc */, - DD330175DAADA9ABC12A31910A009140 /* remote_store.cc */, - 2964F8AF13523FA15B09EDE310B8B483 /* resource.nanopb.cc */, - 2362F1A093F5A0B02C13C48CFCA63057 /* resource_path.cc */, - 8D9E0EE4D598A8F9EE984C18B90E9FA8 /* schedule.cc */, - 8DCD2DC78A51F2AD295CDE68DE7FD054 /* secure_random_arc4random.cc */, - 75F0CE0B64C08C2E2FF9B625156052AB /* serializer.cc */, - 9C813F8A997726E718F1618490583249 /* server_timestamp_util.cc */, - 8A6F30CCF75DFB0083A0F777243BF9F7 /* set_mutation.cc */, - 162E2896B50B3D18BC8864E30E9E6311 /* settings.cc */, - 2DB98B4A4B93C6E39540C9E8C9592547 /* snapshot_metadata.cc */, - 8998326D6B9B8AA7EED6F75FEB6F07FF /* snapshot_version.cc */, - AC31EC92853B558E1C2883EAE6D73CFC /* snapshots_in_sync_listener_registration.cc */, - 3C48F4AEA8295429A5420D9D9DD1142C /* sorted_container.cc */, - 46C779AB4B47750DC30EE09E7090DC7A /* status.cc */, - B1B52374E6CA0B8B8C0C64FCEEF01811 /* status.nanopb.cc */, - 89E86D9D5C91216F784927BE854E964B /* status_apple.mm */, - B0D56F15F9934C53F709C44216DB31FA /* status_errno.cc */, - C869A9447A230E6F32C9AEB80C606443 /* status_win.cc */, - FD3FC72340EF81CF403FE3EB25A9BFDD /* statusor.cc */, - A4BD3D5D2949EA7DAE24682665A60C4D /* stream.cc */, - D97C24A3A1EA7413ED97C014D2C7D1FF /* strerror.cc */, - 68AB35173A33BA8AF7A1A16103FF7ACF /* string_apple.cc */, - FEE0985A810CBB33E3600CDF51198CA0 /* string_format.cc */, - A423E8F5F0EDF4D36CA45D77AFBDFCD6 /* string_util.cc */, - 289CA993EA579980E413B37B337DFB83 /* string_win.cc */, - 3E6DC40E351A47A3F7D5C7FD67BD475C /* struct.nanopb.cc */, - E76A4836D972DD833224C99A523BF6F7 /* sync_engine.cc */, - 80CE9C3AC50A854AF113402C03D22840 /* target.cc */, - 644662E714272EBD09A89D7E82F6F076 /* target.nanopb.cc */, - C2C9BA32B760A37579467B79FCBFDDE3 /* target_data.cc */, - DB8119CC0ED14A26F19C03B8C405C890 /* target_id_generator.cc */, - CF2126D3715D7168FDF9329EFBF6BDA3 /* target_index_matcher.cc */, - 6A7B4C59C93E9A050D590A8FE2178153 /* task.cc */, - 996E652CEC50B42968C0FF94701A3804 /* timestamp.cc */, - 34FCD35F76CD3465E5CF8DAE795F964C /* timestamp.nanopb.cc */, - E8C560804BBFFB22FDAB00E46EB12B05 /* timestamp_internal.cc */, - EF21D0EFD59FEE50F44DAA3937253DCB /* transaction.cc */, - 9B3B5492C6BD9C894299ED99B20A54CA /* transaction_runner.cc */, - 29F7778080EB562735F2C40AF72D594A /* transform_operation.cc */, - 8E613F3839FCACC24554D0B02C7A7EBA /* user.cc */, - 16C6CBCD7F5BAC1B71AB0B1087EB8B8C /* user_data.cc */, - 99E29A909A749D0B0FD23F47A8748436 /* value_util.cc */, - 072500AACD576F7DC05582E9B1DFDBDF /* verify_mutation.cc */, - A6FC3CBF51C0704C33A30858817A0B6F /* view.cc */, - 241985D60215FEF6DE94B3F95DE0AFEE /* view_snapshot.cc */, - 8F0B1B0E7A1D412E162549929B57CB3A /* watch_change.cc */, - 514443CE44B5457F38360560E21CB2B7 /* watch_stream.cc */, - 37E4386D74668883C28C4EE80EB8EBD1 /* wrappers.nanopb.cc */, - 17CE8D39CE1F05421B72E10D0F414CDA /* write.nanopb.cc */, - FEB341F099142FC8448988E75D653662 /* write_batch.cc */, - C0B54C1A94EF671BCA40735DC923B743 /* write_stream.cc */, - EE0D76860924C5B664B07C8F94ADA018 /* writer.cc */, - 30CE5693FD21DEAEB4F1A10E4956D6D7 /* Support Files */, + B729A0B28831B865FFC228E9243456F0 /* cordz_handle.cc */, + 8B20B4103C0E5F35249B039FCC4B515F /* cordz_handle.h */, ); - path = FirebaseFirestore; + name = cordz_handle; sourceTree = ""; }; - D97CB7CE6AA1F41B011B2B481EF9B41E /* Support Files */ = { + DDF9D343DB91593565629E494DBD5086 /* cord */ = { isa = PBXGroup; children = ( - 5DAD8B947353E328A8FC5C94C23AC6AF /* PromisesObjC.modulemap */, - F08BE196034109B697180D78D809E347 /* PromisesObjC-dummy.m */, - D39AC4C19A7AB69AFE17F5704DBCD3E7 /* PromisesObjC-Info.plist */, - AD03B17B162D6269292321BFD27133AD /* PromisesObjC-umbrella.h */, - A214A92A42B23975946F9EE5CB5228DF /* PromisesObjC.debug.xcconfig */, - 5EE740E8816C4FE50351436882289E58 /* PromisesObjC.release.xcconfig */, + BA992609998A06D48AB905C980A8A653 /* cord.cc */, + 98036C7758723472C438D6C9CE903790 /* cord.h */, ); - name = "Support Files"; - path = "../Target Support Files/PromisesObjC"; + name = cord; sourceTree = ""; }; - DE76C2CE0DB11891F69D00CE4D99FA36 /* any */ = { + DED676CBFCD942E19DB07F09C8132E99 /* PromisesObjC */ = { isa = PBXGroup; children = ( - 7CDEF017CC0F2CC3666D9416805B34DE /* any.h */, + 3BBC78FCE741307FC70E6D8F1CA1FDFA /* FBLPromise.h */, + A1778B16B7F012004270639F0A0A79F5 /* FBLPromise.m */, + BEC713DFFD4769298A41171C604612C2 /* FBLPromise+All.h */, + 91859C984A1BE240D368BF6064F74BCF /* FBLPromise+All.m */, + 9D17ADEEAD91FDA8C6C122329E95479F /* FBLPromise+Always.h */, + BC9334B46F819842EF69A205DF8890A2 /* FBLPromise+Always.m */, + 2CC35E62FA38C77AC880C7C3046F6524 /* FBLPromise+Any.h */, + 384744E9A7CB5EB7C59645E755F1DDE1 /* FBLPromise+Any.m */, + 1C2750C567685AE956C86EF8B8EE8939 /* FBLPromise+Async.h */, + 69B198744FAADE385016BDEEB449BF92 /* FBLPromise+Async.m */, + 5BBD750D47C737D420A6BE511B0BC8C7 /* FBLPromise+Await.h */, + 94ECA8F9F303CB43D3D094FE0D4176DC /* FBLPromise+Await.m */, + 621F768B9F77B387B7F47ACD32C5F614 /* FBLPromise+Catch.h */, + A34DB664E4CD2DCC8E96FA99A38E3873 /* FBLPromise+Catch.m */, + E0115BC359C26ADCFC6D4073AD2C28C8 /* FBLPromise+Delay.h */, + 22F5D30C0E112764A41DAE840272B8C7 /* FBLPromise+Delay.m */, + CE32EA3B644833C9F6D0BAC57CFE796F /* FBLPromise+Do.h */, + 654BE00EBC62B53E6899D68C43500D5E /* FBLPromise+Do.m */, + 2BEDC810B1D43E393454A6622C5DACBD /* FBLPromise+Race.h */, + 42C7BC7BDD98899718ACA0F772DB0DD0 /* FBLPromise+Race.m */, + 9FFB9E4F6BDDA0BB2184F2A180C5368C /* FBLPromise+Recover.h */, + FAA3E19066591F8B4897FAC40AE1A0CE /* FBLPromise+Recover.m */, + 2DD38E71CE8D3BEB5228C34708D1E683 /* FBLPromise+Reduce.h */, + F84035A1EB615E4B076FFB63108745A7 /* FBLPromise+Reduce.m */, + 2E5649426DAF95BCF463ED454EC04582 /* FBLPromise+Retry.h */, + 7CC3E8F9F3FE65DFDFC7B18ADD341327 /* FBLPromise+Retry.m */, + 936F0354279ABE5D67102F1A05A99A48 /* FBLPromise+Testing.h */, + 22385A28598D6D8A4BFF5BD2C6AB7789 /* FBLPromise+Testing.m */, + 950F03FF3AED9D20A9F94169461D9BBB /* FBLPromise+Then.h */, + 3096D54860191AA7536F3095F77FECC8 /* FBLPromise+Then.m */, + 0A1F9F41FD89B3832697BE0FF12833CA /* FBLPromise+Timeout.h */, + 15E87C8B481F6FB5098F9D59BAA96EF1 /* FBLPromise+Timeout.m */, + FECDF8B33466D335601BDC5A3CABA4D5 /* FBLPromise+Validate.h */, + 09B1BE6DE39B375CA74D5E55F3B24694 /* FBLPromise+Validate.m */, + 0D59B4B3ECABF4081057E07F604736D6 /* FBLPromise+Wrap.h */, + 27486CAEE5F1C6AE56240324BB169185 /* FBLPromise+Wrap.m */, + 292BF7C6CFBECA61BEA63D51369D35E1 /* FBLPromiseError.h */, + 89464B08F22814E62E57CBCDC768E354 /* FBLPromiseError.m */, + 7DAD0EA9A05D9AE09418FDC354C265AE /* FBLPromisePrivate.h */, + 03BD962883F1E2CC018715E58E6F58E9 /* FBLPromises.h */, + AE26FA46A130589B621A3E7076E58FD7 /* Support Files */, ); - name = any; + name = PromisesObjC; + path = PromisesObjC; sourceTree = ""; }; - DFA2949B79C7EB5D3D4B94AAF4B3C54A /* functional */ = { + E01436AB6E119FD8C3A265BDC672452E /* Core */ = { isa = PBXGroup; children = ( - 3A9DA1E56E97B2DA20C6AEBD92A8CF75 /* bind_front */, - 94F7F5A80BF423FA2D39DC8EB3259E3D /* function_ref */, + FE6F896254E8E816BDEDBCCC409E6E2A /* GTMSessionFetcher.h */, + D9AA0A5067796AB2F599C2EB79483457 /* GTMSessionFetcher.m */, + 44A9478CDCBA9390CF8C399BE2709326 /* GTMSessionFetcherLogging.h */, + 2FBB62935A88ABBAC9F577706066DF9B /* GTMSessionFetcherLogging.m */, + A9B0876B2A984BBCEB77AA3C036072C2 /* GTMSessionFetcherService.h */, + 23B216EE179C1F4501083821CFAA255C /* GTMSessionFetcherService.m */, + F1C909BB7925C56B9BC5EE5B29DEDB62 /* GTMSessionUploadFetcher.h */, + 840D5E7D16F24BD6FFF4C4858FDA05AC /* GTMSessionUploadFetcher.m */, ); - name = functional; + name = Core; sourceTree = ""; }; - E04BECE761DE98C9DAB474E938A33563 /* Support Files */ = { + E0CAB210422DAC8CD2B5B1CA3672AF1C /* Support Files */ = { isa = PBXGroup; children = ( - BDDD4658EE78ABCE64C2EC821A9FAD39 /* Libuv-gRPC.modulemap */, - 3A852D5097DE3A16C56B0E8443BF11CA /* Libuv-gRPC-dummy.m */, - 09FE1F9AD0B515229BE968DEFB62C134 /* Libuv-gRPC-Info.plist */, - B207C8E8F1F8F449F1218FB78AF0F5E4 /* Libuv-gRPC-prefix.pch */, - 86D31D663533283246BA26F6E695B978 /* Libuv-gRPC-umbrella.h */, - FEFA76422F8B32C035952A1136818341 /* Libuv-gRPC.debug.xcconfig */, - 84437FFB956108EEA9F62285047A0CCC /* Libuv-gRPC.release.xcconfig */, + 95B6155C8F43581C2B166B5A018EA040 /* GTMSessionFetcher.modulemap */, + A0E09081A4FD8ED14E5FE10495EB159A /* GTMSessionFetcher-dummy.m */, + 6F0262CA6E95B88461D34B1540AAF928 /* GTMSessionFetcher-Info.plist */, + 9D9F59154E63C03EA3DD1AB09DBC1F62 /* GTMSessionFetcher-umbrella.h */, + 5AA9F7C2DBF27A84F0AEAAB843C653A1 /* GTMSessionFetcher.debug.xcconfig */, + 72C74E02940FB4DA4D7AA6FE51E2B2CC /* GTMSessionFetcher.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/Libuv-gRPC"; + path = "../Target Support Files/GTMSessionFetcher"; sourceTree = ""; }; - E152E06602C7E9AEF05896DE68C73546 /* representation */ = { + E1515B0E6859E37F83A7D250E88A9527 /* spinlock_wait */ = { isa = PBXGroup; children = ( - 61A706224965F379548D81D1EB652B78 /* representation.h */, + 96EA1014529F136E06820A11DF557C0F /* spinlock_akaros.inc */, + 8CB7DF5A9AD9F5005B81FA459DC5ABCA /* spinlock_linux.inc */, + C7EC4CEE262400C70C131AE32751A9E0 /* spinlock_posix.inc */, + 7AB696A6100378080A6E1745D84CBA2C /* spinlock_wait.cc */, + 29661B030480BFE3B7104DAF36FE7A81 /* spinlock_wait.h */, + B0A6C83A9B970807250C58F83C214595 /* spinlock_win32.inc */, ); - name = representation; + name = spinlock_wait; sourceTree = ""; }; - E1C2EF0F4884F498469FEFC14E7DB9A0 /* Support Files */ = { + E23AF20608191CF22DF8EA06DE092BE6 /* common */ = { isa = PBXGroup; children = ( - 9C513110E8BA5300C81D117B6D72BCB0 /* FirebaseCoreInternal.modulemap */, - 32027744A97394A95DC5724E3F25AEE1 /* FirebaseCoreInternal-dummy.m */, - B2AAA7B7D74FE5C27B3D957B795DFD17 /* FirebaseCoreInternal-Info.plist */, - 30B3E3E58ECF0A0F7A49A3DFC99C46C8 /* FirebaseCoreInternal-prefix.pch */, - D89E60C69C9D8691D454FB1B145ED0F4 /* FirebaseCoreInternal-umbrella.h */, - 87FB35B4B8D497659A575754E0D6694B /* FirebaseCoreInternal.debug.xcconfig */, - FE2DCC69A9C0C4C92718B9924A9E5BDA /* FirebaseCoreInternal.release.xcconfig */, + E9D185BE21E7EABFE79FBEE3A207D578 /* common.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCoreInternal"; + name = common; sourceTree = ""; }; - E2149E72E981CB29B039947E20C4EDB1 /* Interface */ = { + E3BD970F3F58A485F61DA95752373334 /* internal */ = { isa = PBXGroup; children = ( - 393DA0FC00B49ABF622D54F72B096A0D /* alloc.h */, - B52F2B0AB87360DB9AC86BA63FE8E5C2 /* atm.h */, - 85467C630EA8DE88330CB36D54EF3198 /* atm.h */, - FF6CCAF64B4F5CEDF52B7EB62B9E963E /* atm_gcc_atomic.h */, - B7D788FC8C9E1701C7F8FA6661BDAED9 /* atm_gcc_atomic.h */, - 5E48E851EDEE80DD2DD3A4244A8882BC /* atm_gcc_sync.h */, - ADE7945AC9854C300F67AD6CFFA4BC35 /* atm_gcc_sync.h */, - A4D71A3F7964F4CBD250DE3BC54339B7 /* atm_windows.h */, - 14551A96E7B02E8A89F4E0A37FE0DC54 /* atm_windows.h */, - 7FCCD9A63BC16F8C70552E3B5888B2A4 /* byte_buffer.h */, - 3D1CF25D3DC1DA684B7B1C3E37744E49 /* byte_buffer.h */, - 1F66012B53DADA982C07E04F86E2CBD2 /* byte_buffer_reader.h */, - E1792A159A644096F31504A3F4CE6B43 /* byte_buffer_reader.h */, - 3E9C70FCB53E4F64BA9683873770CDC3 /* census.h */, - 82013083E21F9C4C42AB2F17800F12AE /* compression.h */, - 629946C6BD3C66B3D8F2B92BEEE509DE /* compression_types.h */, - 433314235FA7FB503210A48A7B8C3553 /* connectivity_state.h */, - 5C8E3A4D669EB97BC1F5525004F1B0F5 /* cpu.h */, - AA0DD1FAB8621882656D150DFE901068 /* endpoint_config.h */, - 1C8AD2D5CC93E773F479FD4EFAFA1E14 /* event_engine.h */, - EF0C17AC04718859D77F9EC3118D7215 /* fork.h */, - FA6F17DE47110BDFEAC55F8AFDB69450 /* fork.h */, - D7B07C3D9BF4FC3E9BAE8CEDFEF26ABD /* gpr_slice.h */, - E8C736684F4696714E6AEC832225730C /* gpr_types.h */, - 3B40A5FB78E381513B04D30F0F3DF49E /* grpc.h */, - D97CA3AEF43D21B8BF128FB1F7782F5C /* grpc_posix.h */, - EA58CE37525AB947BF6101C7E0E176CD /* grpc_security.h */, - 7475970E1198DE8F552DE4D96C8774DE /* grpc_security_constants.h */, - 4D169A2922435604B1E58316FF17DC28 /* grpc_types.h */, - CDB77A157E055FBB99BE17E6FB5EC206 /* load_reporting.h */, - 376F71550B79518E43168F2BFFB5DD9A /* log.h */, - E3BAB4CA449A540C0DD9127A10E54745 /* log.h */, - 6934C7AE4DFE5FE0423641593EC7D0A8 /* log_windows.h */, - 02BA4924C1398B9F2F4BA5A3721B3520 /* memory_allocator.h */, - 5E4B3F78F1AF4BD460176A1003D94ED1 /* memory_allocator_impl.h */, - 98B0008F4793AB277EB46B1A6D539153 /* memory_request.h */, - DB5D2488D6272B40E8D8FF936E5BBADF /* port.h */, - C0EFB6B2E865C9C1C5F304337A94CC15 /* port_platform.h */, - B4938879DA38CDFB6B4644E9E0600C6E /* port_platform.h */, - D8A6510FEAF022F1A7D52FAB5DF8E970 /* propagation_bits.h */, - B99997C354F774BF2D6DFBA0C326C38B /* slice.h */, - 230853402A57B29BFE6552B7D2B51FCC /* slice.h */, - 2AD7E04B247A048A8B2E9C43B804FDBB /* slice_buffer.h */, - C264B61845741E4F457B9EDCF2981396 /* status.h */, - E25600AB4491B7DFB66FFBFDF46DC259 /* status.h */, - 7F7B28EE0F74B9AD0BB0A3DF09BC5A61 /* string_util.h */, - C805321F397B4B00FAAFD18D1288C36E /* sync.h */, - D7A1BCC1BD351D2E82C4A73CDAD1E3B1 /* sync.h */, - 16879689F72DC8AF3940C9F3C8B7CC01 /* sync_abseil.h */, - 6187F081F340EC2B3E66DF800D9E5AB5 /* sync_abseil.h */, - A32A614EDB59E1810E5D358C3DE001C3 /* sync_custom.h */, - 70597DC93E879CB99A5FB9B4486E74B6 /* sync_custom.h */, - E4F7B2DB581CD295CBB5CEA8D69212C8 /* sync_generic.h */, - C2907F9DE65F15117C89FF5CE675D045 /* sync_generic.h */, - 8ACFE6B00DFFBA1DE88A5D10C90D6ACD /* sync_posix.h */, - F17342CEFFC42DB864338830958B7006 /* sync_posix.h */, - CEEE2EDA66AEC36646307BFF0AC34628 /* sync_windows.h */, - 23EEE0EE5AEC1D97BCB9966C6C910AD2 /* sync_windows.h */, - 139DD96B689C090DA3A1D2413E0C3867 /* thd_id.h */, - 2677924889F0BAF829EA6C296F2F417F /* time.h */, - 1B239BBF54E94500FE09868C3FA904EE /* workaround_list.h */, + 261FBBE7FA4EB844936AB2D3BF2EEA81 /* char_map.h */, + 488BC5D7F922DDCB2206C27BC4A2EE66 /* escaping.cc */, + F83E3A8812FBA630EDE81551029FD8D2 /* escaping.h */, + B5E5C9FFD5E5904CFD37E082A1B56B78 /* ostringstream.cc */, + 4F000AB570CE4D5019AEC98EA860295B /* ostringstream.h */, + F5763691672D70E1DF660250E90F67D2 /* resize_uninitialized.h */, + E69244DFD082692966F0157DEF6438F1 /* utf8.cc */, + 0826AD4D55B465E7EF0F9D8A5702EB4A /* utf8.h */, ); - name = Interface; + name = internal; sourceTree = ""; }; - E31C386CE6B9CCD06D040F9747D2DBC2 /* gRPC-Core */ = { + E426AD4DF0820165CD1B7CE355069FDD /* hash */ = { isa = PBXGroup; children = ( - A34206E284FEE6C5345D3EB3F9934561 /* Implementation */, - E2149E72E981CB29B039947E20C4EDB1 /* Interface */, - FABEECB88048B4E8CEAC223261C8554B /* Support Files */, + 8004A032EA3247BB7C7B4ED5EF00309F /* city */, + D79920EDF5324C6806044AE0C3A2DBAC /* hash */, + 418F64359BC065078C027253FE7A1C95 /* low_level_hash */, ); - path = "gRPC-Core"; + name = hash; + sourceTree = ""; + }; + E48CC8FBBCD65379C5F51B2F3C58A171 /* flat_hash_map */ = { + isa = PBXGroup; + children = ( + 07BD01F84009288BECF85674D22D6050 /* flat_hash_map.h */, + ); + name = flat_hash_map; sourceTree = ""; }; E5051AF8D1464E55AB23BF3732F5BDF1 /* Pods-Flash Chat iOS13 */ = { @@ -21863,526 +21970,456 @@ path = "Target Support Files/Pods-Flash Chat iOS13"; sourceTree = ""; }; - E58432E09500AA7AA0F339DCF0292144 /* hash */ = { + E5BBD01E37358A814957C17D23DDA505 /* endian */ = { isa = PBXGroup; children = ( - 164E3F644881E2C2242E7291223033B4 /* hash.cc */, - 32F61F17A57202CF69FADE3454DF795A /* hash.h */, - 98234679E486BCE9D8751FD1C81A41F9 /* hash.h */, + 315277415A9A34154F99B049F2D43DF9 /* endian.h */, + 4F564CC2B91600E34BDD4B0384D34637 /* unaligned_access.h */, ); - name = hash; + name = endian; sourceTree = ""; }; - E68A6945C9EBEF0C1FC06E11D11DB5EF /* Implementation */ = { + E6B3CDFBED8645AF6CB110AAF036B251 /* stacktrace */ = { isa = PBXGroup; children = ( - 78EAAA073E8BB7481AD3F7027C08AA08 /* async.c */, - 8D5A8BAB2E25201187BB80B51865699A /* atomic-ops.h */, - 5FDE287BB040CA3F221AE9267FD8E4FF /* bsd-ifaddrs.c */, - 419A2F5E500E7EBB744EB470E5EE7A83 /* core.c */, - 6ACC066566EEC8E49BC3D5EBD90F7791 /* darwin.c */, - 6CCB348D7553450087F289308D1EDED0 /* darwin-proctitle.c */, - 2F7C12CE21BB724195A589B8F46ABD86 /* dl.c */, - 1E5E8D5A2E417044141E107B704A2AFC /* fs.c */, - C765437E421FAC1FFC95D9BC8EB9A1DD /* fs-poll.c */, - 43B970854EEA5E76968918991FA1B328 /* fsevents.c */, - 8CB04F54C9B2F140BB565119A014EE30 /* getaddrinfo.c */, - B01BF79872DB72BBE0BFD4EB0527C9D6 /* getnameinfo.c */, - 305CAD5D23F53FEEC4B49E2917B19A8A /* heap-inl.h */, - 74EF4AEDECE802843357099594532B26 /* idna.c */, - 7F18835E43AAE743B6DCA77EB490B186 /* idna.h */, - BD7E8B028D397147AB01F07D6053B91B /* inet.c */, - 43F56D27A7F0FB1BFEA420D74D40807A /* internal.h */, - C6AF56E05FC2FE32ECEAA6204218D847 /* kqueue.c */, - C9B5D395F4C7395880FEC38279818836 /* loop.c */, - 6107ED9DF040806A97C0E7147B35C005 /* loop-watcher.c */, - 5E43D3DA570D5CFFDB99A9610AB9CB35 /* pipe.c */, - 7D695078CAC476D795B2CBAB84FA5821 /* poll.c */, - EBC37F490E9C93CF4402A78E798E4295 /* process.c */, - 06D7201BBAE66F5F5EB93E1C26B1A9BC /* proctitle.c */, - 6291E4CE586417037130E076746A1DC4 /* queue.h */, - 4A63E6C3A44B7F2ECECECAF4C02BE6C0 /* signal.c */, - CC0BD34C39553239FE70DFB4FA7F6483 /* spinlock.h */, - CB4D14A531525F369307B4D8D5300CF9 /* stream.c */, - 6EFD965A64C04FF63F73B842343678BC /* strscpy.c */, - ADC6A7477E4FA6256FCF730818E74E40 /* strscpy.h */, - 28FF6F3483284C0EC671060F3A0F499F /* tcp.c */, - 9A9E2991785F4124A0E3EDBC1221B5AD /* thread.c */, - 3E7B6BB468DDEAFC93A24A78361E0DB2 /* threadpool.c */, - 2575528806B23DD6726B5F4B9FFBB8F9 /* timer.c */, - DF96EB173C3D3D9BB5CB096769BB2EF3 /* tty.c */, - 5C3BDBC50FBA7DF6C99C6F031A342A14 /* udp.c */, - 56DDCC36A630FCE427DE8B99BF1CA8E7 /* uv-common.c */, - 9603979BD46FE61BDE7CEB10C6AD4DCE /* uv-common.h */, - 0FB52414EBBC4DA5816C50E7F604E478 /* uv-data-getter-setters.c */, - E9CAA198FD151FBEDE21AC4EC956EC2A /* version.c */, + B00E27513B76C540F82BEFD6EF042F78 /* stacktrace.cc */, + 40E0B3F4298A562DF404EE763DC0EC4D /* stacktrace.h */, + DAC8B492D1B2176E766F52876E1016DD /* stacktrace_aarch64-inl.inc */, + 91E64A129C1D35AAD4034428FA45CD9C /* stacktrace_arm-inl.inc */, + ECD57E5A719A281AED4A752EF641EB1F /* stacktrace_config.h */, + 2DFE59557A38BB968888F6CBBDAA35E8 /* stacktrace_emscripten-inl.inc */, + 13743C53A4F9FB6AC87CCBA6AF9C035C /* stacktrace_generic-inl.inc */, + 89219B24124C1EA0EDCB9934EF49C6C5 /* stacktrace_powerpc-inl.inc */, + 3D4DCE849C7AC8497FC8AABED6DB0ABD /* stacktrace_riscv-inl.inc */, + 7DD83751577D96401B786F117A54F043 /* stacktrace_unimplemented-inl.inc */, + B8C665012904BB80A284E2D263686479 /* stacktrace_win32-inl.inc */, + 133FB577F3DC9FF29E6F7CDF9D9795DC /* stacktrace_x86-inl.inc */, ); - name = Implementation; + name = stacktrace; + sourceTree = ""; + }; + E6EFE63380E52C7DADCCA6560E5065C5 /* inlined_vector */ = { + isa = PBXGroup; + children = ( + E9B3F50A4DF4D0F0009DA463D28EDFDC /* inlined_vector.h */, + ); + name = inlined_vector; sourceTree = ""; }; - E6B09AA943B7E29A4CFB589D15B6CE4A /* Support Files */ = { + E7B8C2C083F3C204BFA55A2455D33836 /* Support Files */ = { isa = PBXGroup; children = ( - 3717200A1A6922825FAC49F73D112EAC /* GoogleDataTransport.modulemap */, - CC3A0B9BF28899FB9B0139659E71B356 /* GoogleDataTransport-dummy.m */, - DB3311B11943FB75B9B41944CA924FDA /* GoogleDataTransport-Info.plist */, - 034BCB0F41D9A8B27B9EBCF60671A30A /* GoogleDataTransport-umbrella.h */, - C5C8B26B98A7824DFEFB1F9F680AE3D6 /* GoogleDataTransport.debug.xcconfig */, - 5073BE02EEE87077825A5847FA8C9A17 /* GoogleDataTransport.release.xcconfig */, + 92F2CA13558E54BBD40C2842251CD001 /* nanopb.modulemap */, + A5069FDF61745774096993F061838B86 /* nanopb-dummy.m */, + A03BF8048663D3E04CC50D69245262C9 /* nanopb-Info.plist */, + 9CB9B67B6408CD4E9226B941FA441D61 /* nanopb-prefix.pch */, + A06E5892C037299DE92E89A8290AAC45 /* nanopb-umbrella.h */, + 89CA23EC82E4C307789F21BC02EEE090 /* nanopb.debug.xcconfig */, + 51B5928DCE2D65CBC9E19579CBEE2239 /* nanopb.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GoogleDataTransport"; + path = "../Target Support Files/nanopb"; sourceTree = ""; }; - E6D020B86EE819B80531BEE35561AC12 /* statusor */ = { + E9B4D60549EB302E59437D58F3D54BBC /* decode */ = { isa = PBXGroup; children = ( - 28BEDF6F585B966C2A9B48BB898EB706 /* statusor.cc */, - 8DBB0F936EAD9C1CE62BBCE41D4C38A7 /* statusor.h */, - 7A815A83BAA20EB9B7484EAD96F8A859 /* statusor_internal.h */, ); - name = statusor; + name = decode; sourceTree = ""; }; - E7D64EF2A5FD892CA8C1D60BB19292BA /* randen_engine */ = { + E9D482FD13200E6DA792F523C879188D /* container_memory */ = { isa = PBXGroup; children = ( - B9BC03AA51C46FBEF205B068CEDEEB69 /* randen_engine.h */, + 98E9EBEE6E9751792167D11CB8B834C1 /* container_memory.h */, ); - name = randen_engine; + name = container_memory; sourceTree = ""; }; - EDD1D66C8B96866864795696EB5382A0 /* type_traits */ = { + EA258B2F78A7DF15B508D3ACD7373161 /* time_zone */ = { isa = PBXGroup; children = ( - C20B0DF63F30BCB3C59D4F1804F4110C /* type_traits.h */, + BCE5C92237933665EDE7E6D62B58974C /* time_zone.h */, + DF97F13B65124EFB900262CCFF11CCC0 /* time_zone_fixed.cc */, + 92F40A5EEE2A6869D33B196F4F843630 /* time_zone_fixed.h */, + DD7274D791462052B04C2ADAA3F006E5 /* time_zone_format.cc */, + A7CCB25C216BE1A2E94C364059940837 /* time_zone_if.cc */, + 7CFDA0297CCAD54F719481836E14E1FB /* time_zone_if.h */, + CBC7210758545198E4626240724FD3B6 /* time_zone_impl.cc */, + 0EC2A4F4BFC8B81D8918378B0277FBA5 /* time_zone_impl.h */, + A37C580599EE2C0B74BA37A881E35699 /* time_zone_info.cc */, + F29064FE7E727DB63F736F19E8C8BA80 /* time_zone_info.h */, + 9AD9A275EF9AA19DBEEABB64AA72D2F1 /* time_zone_libc.cc */, + 574B090D1E11BEE00CA6AF47A8968C2C /* time_zone_libc.h */, + BDB93D5517DAFBAFDA7015F2CD7D716D /* time_zone_lookup.cc */, + 69471F238143E3773382108E996E4A46 /* time_zone_posix.cc */, + C567DF76E868873AB8711A2216EACCD0 /* time_zone_posix.h */, + 43032D4882273A07DE8A7654F1C4BAFF /* tzfile.h */, + CF91DB9E4CE1003B5B0D201ED268716C /* zone_info_source.cc */, + E93275DC56AE1D49F78FDF09D1F496FB /* zone_info_source.h */, ); - name = type_traits; + name = time_zone; sourceTree = ""; }; - EFB071A6B53035CB4514AA3A70D8BBE9 /* bad_any_cast_impl */ = { + EB7FAAE5A5C359B922E75FF5A9F46D4B /* Resources */ = { isa = PBXGroup; children = ( - 217C1B0490B92241DB967CA6CA418AD4 /* bad_any_cast.cc */, + 5C0D108A9A768E4C3795C16535940950 /* IQKeyboardManager.bundle */, ); - name = bad_any_cast_impl; + name = Resources; sourceTree = ""; }; - F14791818F9FB48C68E4B40513DD85E4 /* Support Files */ = { + EB8824C2FB77B0F5D3440E4E22AE16F7 /* exponential_biased */ = { isa = PBXGroup; children = ( - 620BE672FD7EC0113EBCC94031C20E2B /* BoringSSL-GRPC.modulemap */, - ADF800B82EC13ACBB3FAB597647CEE0F /* BoringSSL-GRPC-dummy.m */, - 3785186FEDDC3E57506D70F14FC0D82E /* BoringSSL-GRPC-Info.plist */, - 1FB05CFF0090FD6BD34C158303B2D784 /* BoringSSL-GRPC-prefix.pch */, - F1876AD29203EDCBAA95AEF56C391B15 /* BoringSSL-GRPC.debug.xcconfig */, - D9BD501CC4F60EAF7EAC0DC5C35A9811 /* BoringSSL-GRPC.release.xcconfig */, + 71CFBF2ADBE195EB75CAD50471F79A59 /* exponential_biased.cc */, + 639638A2531BF5E805B566F3CB456357 /* exponential_biased.h */, ); - name = "Support Files"; - path = "../Target Support Files/BoringSSL-GRPC"; + name = exponential_biased; sourceTree = ""; }; - F272C5167FF1B9BCB3B7D6426EFC2110 /* fastmath */ = { + EBE8D48B4A2B78B88FB29341A43AD34E /* container */ = { isa = PBXGroup; children = ( - 7B823338B9E4C56DFF2807FBD0210A7C /* fastmath.h */, + 1DFE7754F77E8D7CA4D567D75FD5E678 /* container.h */, ); - name = fastmath; + name = container; sourceTree = ""; }; - F3DC4A3008F70B97719CC57040CC2FD1 /* hash_function_defaults */ = { + ECF8D6D3838869F5852FC4B4928A7B6B /* GoogleDataTransport */ = { isa = PBXGroup; children = ( - 2D6AECE6FE9DF2E2AB2E4B8AF3B9F4D2 /* hash_function_defaults.h */, + 6805B68FE36A0BF08256600A239EE050 /* cct.nanopb.c */, + 4D2FBC38EF41D5C4CF059A39B202910E /* cct.nanopb.h */, + B02C0102CCC32EF4110E014DF1A9CC6D /* client_metrics.nanopb.c */, + 956373624CB7EC74163278548B259D11 /* client_metrics.nanopb.h */, + 15BD7BAA25534572303E6D899BE95601 /* GDTCCTCompressionHelper.h */, + D45BC8AE37036860B9C7C7FE332F977D /* GDTCCTCompressionHelper.m */, + 5AAC7E095765CBFEF5A10BA6651CB468 /* GDTCCTNanopbHelpers.h */, + 6795E8946478AA90191E108875D8D3D7 /* GDTCCTNanopbHelpers.m */, + 7D5CED403F2C20A4C89851BD5D4A5049 /* GDTCCTUploader.h */, + C741BC2534DC746EE467470576B661CF /* GDTCCTUploader.m */, + 68BF31AC67369B4F3BE0150E05B2C489 /* GDTCCTUploadOperation.h */, + FF4DA9CD441668794E01F66591E12C5B /* GDTCCTUploadOperation.m */, + 46350F2833D14D2EBEBA40304B0A170F /* GDTCORAssert.h */, + 0DAAEB170E49423D012E3A313531F96A /* GDTCORAssert.m */, + 65213732DF4810441A91ECDB47FA5B04 /* GDTCORClock.h */, + 9429CB158195A0C2B2919781D29B9C33 /* GDTCORClock.m */, + 16694E90531F4C1FB23E4E41B6B2BDFC /* GDTCORConsoleLogger.h */, + 2C7B36BEF4490E7C1FA8A7A8F280A83A /* GDTCORConsoleLogger.m */, + 2460D01C3C919D01AB9205DDFFEF40EB /* GDTCORDirectorySizeTracker.h */, + 8E3A6D54396280E38747A24D22EF2926 /* GDTCORDirectorySizeTracker.m */, + 59BC9D848D1B6B3C32A63D007C657863 /* GDTCOREndpoints.h */, + 330797191A14DC64D0939FDE3ED486AA /* GDTCOREndpoints.m */, + 49E7A01795E810D8830F421B2E52C8E1 /* GDTCOREndpoints_Private.h */, + 524D7E83E927142C7AA251D862B1F9AB /* GDTCOREvent.h */, + 0C6AB9A51DF480FD3702398069F47BDC /* GDTCOREvent.m */, + 2045982A4D2F97CDD303F4BBB920DDE5 /* GDTCOREvent+GDTCCTSupport.h */, + 64CA97173FB677E368E0BB7CA0E2605E /* GDTCOREvent+GDTCCTSupport.m */, + 424213B257FB2AAB6CEE24F8288922DA /* GDTCOREvent+GDTMetricsSupport.h */, + 5DDD509BEFF6D1104AE87C0AD4A47A43 /* GDTCOREvent+GDTMetricsSupport.m */, + 858207A6D6CD0DC3BCDED376F758E30A /* GDTCOREvent_Private.h */, + 7E8049D8E79947706765171C6577C117 /* GDTCOREventDataObject.h */, + 99851E4FC2E7B128BC221CC56D4E9D02 /* GDTCOREventDropReason.h */, + 050DDC4D7F8329EC1EFD2B41631EA067 /* GDTCOREventTransformer.h */, + B224412ADBE777BA723CD5A7054B0743 /* GDTCORFlatFileStorage.h */, + D3F2DE8FFA91C2EBA12484B685554F55 /* GDTCORFlatFileStorage.m */, + ADA7CA0E48AD50D3AED4F17046D3AB9B /* GDTCORFlatFileStorage+Promises.h */, + AE0EC63C9E5E9A6779367AE3926B6DB5 /* GDTCORFlatFileStorage+Promises.m */, + 6ED0C93652BE97358E098C4011FA69A0 /* GDTCORLifecycle.h */, + FF2E6262FD94A607F6F73DA9FDE557FF /* GDTCORLifecycle.m */, + BE743415B7FC30444EBDD89B6507AE6D /* GDTCORLogSourceMetrics.h */, + D07E9727357EA6CFF9CACE274ED2E05A /* GDTCORLogSourceMetrics.m */, + E1167E83A2E8513AF273C6C7D7CE7F48 /* GDTCORMetrics.h */, + FE7C588F999A8E110EA451FBDA8EA670 /* GDTCORMetrics.m */, + ADE4EA7E56A18425EF7CE22D6831F214 /* GDTCORMetrics+GDTCCTSupport.h */, + AD8D3BB6BABFFB28CDD2F2E8B8276626 /* GDTCORMetrics+GDTCCTSupport.m */, + FDACA4A9BFC3373324F691FE0C3C6706 /* GDTCORMetricsController.h */, + C54E864846E895DB5BEE2B5AC3258F57 /* GDTCORMetricsController.m */, + 503AE6BA073EB0139BF196AD8835CC70 /* GDTCORMetricsControllerProtocol.h */, + DAD08FCBE57A577EE1BE4C092EE2379C /* GDTCORMetricsMetadata.h */, + 49776F558531FEEC26021CC0559F5358 /* GDTCORMetricsMetadata.m */, + 0B848B19DE6E79CA2D1FDE58629B177B /* GDTCORPlatform.h */, + 40C56A6FCBA1E36A6BC205CD9CAF7489 /* GDTCORPlatform.m */, + 1F018242C8F6124C8CC8FF9433F26F95 /* GDTCORReachability.h */, + E32321B207DB6C72B92E821E9A90D1F8 /* GDTCORReachability.m */, + A8F67C05D7F62B4EFA8F129DA189A40C /* GDTCORReachability_Private.h */, + 1AD992FD31B6CA125DC126F00B89A373 /* GDTCORRegistrar.h */, + CDB2490C583F426C46FEB9C1134B2A17 /* GDTCORRegistrar.m */, + 9D3EF67F73804E37ED1DC4C006E04DD8 /* GDTCORRegistrar_Private.h */, + 2C64A3E3D577C85EF2306F902967C810 /* GDTCORStorageEventSelector.h */, + D0F23185125D051E72E06DA02FD8109D /* GDTCORStorageEventSelector.m */, + 370F83BE4EAAF3C550E082FC6D6DAAC9 /* GDTCORStorageMetadata.h */, + 3881B927DDC3D2FE9CE27E622FED25F4 /* GDTCORStorageMetadata.m */, + B768335C97D71284F12C5D516108D5E4 /* GDTCORStorageProtocol.h */, + DE1754AC18FAE3D357AB4DAA81DB5728 /* GDTCORStorageSizeBytes.h */, + B18B33019C408AD235EECAA7DB9A79AA /* GDTCORTargets.h */, + 506DCC5EC2BA9143E8E779F41C826BDB /* GDTCORTransformer.h */, + 467B8B19B598DADEBFCCF1AFF4725057 /* GDTCORTransformer.m */, + 5527AD8626D33637FA54D0A39292870D /* GDTCORTransformer_Private.h */, + E84BFE442FE5B3E31724BFF5D194E46B /* GDTCORTransport.h */, + A3676E36F7989A181A9168130C2239CE /* GDTCORTransport.m */, + 60B431EE717302EFD3380957FEA96244 /* GDTCORTransport_Private.h */, + A393650CFC4AB01137211216586BB17C /* GDTCORUploadBatch.h */, + 58041368FDA16445A76501955566DCFC /* GDTCORUploadBatch.m */, + 0ED117DC8546DEBC99CB7BF17735C451 /* GDTCORUploadCoordinator.h */, + 9A13F1052724D9B19DA8CC947F8433C2 /* GDTCORUploadCoordinator.m */, + 81C4F67D34ADCD882EC3413B49817A0B /* GDTCORUploader.h */, + 0ADE62479BF20A50F816DFECC3C376B3 /* GoogleDataTransport.h */, + 7BECCF74289F76BC9FAEF827BA9B98EE /* Support Files */, ); - name = hash_function_defaults; + name = GoogleDataTransport; + path = GoogleDataTransport; sourceTree = ""; }; - F643B8ECEF4B91783884AF2C4A2FDEFF /* civil_time */ = { + ED50818C20EFFCB4A326C66AC367C27E /* pool_urbg */ = { isa = PBXGroup; children = ( - 7E612E105B962670B1B33D32117257D2 /* civil_time.h */, - DAD4C2942F03A926CA0F41061B13AC86 /* civil_time_detail.cc */, - 2C6AE7A334E057ACCE60193479DD98EE /* civil_time_detail.h */, + D40A3D5A83E943E13BD466E8B3A1AA92 /* pool_urbg.cc */, + 055787A302ABC737DE93D69BEA0A6F66 /* pool_urbg.h */, ); - name = civil_time; + name = pool_urbg; sourceTree = ""; }; - F694ADB62E083C397A4B43EC4D0B05BA /* cordz_functions */ = { + EEB47C5CBA627BADA6A8409329224BCB /* hash_function_defaults */ = { isa = PBXGroup; children = ( - AB537BDC1F586C88CB1236B108B208AF /* cordz_functions.cc */, - 281DC0E90357AE176BFE2AD6D80A47C4 /* cordz_functions.h */, + 4A5AE17BEB37C1111D254C564898BD87 /* hash_function_defaults.h */, ); - name = cordz_functions; + name = hash_function_defaults; sourceTree = ""; }; - F794B5D63253836ADEA6EF9D902A4B14 /* algorithm */ = { + EF09DADA10D471E6958156CD9B812EBB /* statusor */ = { isa = PBXGroup; children = ( - 16A2B3F5B6732C6FAA43D70E681C96D5 /* algorithm */, - A5045BEE17B3C6878EAC52D049660046 /* container */, + 301B180103AF2C8B2204554FED5198B4 /* statusor.cc */, + 80D1CD31CC645B8EECFA49C91CF6ADC7 /* statusor.h */, + CF0A5781B5A4EF2B6E5EAF94AC803D29 /* statusor_internal.h */, ); - name = algorithm; + name = statusor; sourceTree = ""; }; - F9FA7E796C9E04F257DBE9EB355B753D /* hashtablez_sampler */ = { + F027363706E60E45742EFCB36558A96E /* synchronization */ = { isa = PBXGroup; children = ( - 6219973BABA63D9B7FEA3DDC39F4C76B /* hashtablez_sampler.cc */, - EFF1CDC13F7412C1746C666002D610E3 /* hashtablez_sampler.h */, - A0AA05314B8E7F9D079E203C6A26FCAF /* hashtablez_sampler_force_weak_definition.cc */, + 89C49F37F82119FF371F6F0DB8543209 /* barrier.cc */, + 2CBEEDF021F79CF3D24C4CCB7651ABA9 /* barrier.h */, + 37525F35EDAF53DE1E4E8FADBBD4B05A /* blocking_counter.cc */, + 1DA07E3922A26ADD36E05DBBE0F60F03 /* blocking_counter.h */, + 486560614B74360088B9630AA0C7DE0C /* create_thread_identity.cc */, + ECA0CC930780CED4170A870FF485F6BE /* create_thread_identity.h */, + 796116B81CDE13167E77B2A1F793F330 /* futex.h */, + D47349464FA8C84A2A526E9698729F75 /* mutex.cc */, + 9715E2498C15B989B352212950CDC1F4 /* mutex.h */, + 74253FD6CE1999E465BDC8B36B0F9DA1 /* notification.cc */, + 93AD197C74B4BE8D8CF97AF3ED68D0DF /* notification.h */, + D71ACCC02C51E150DE057FEAFDA4EB48 /* per_thread_sem.cc */, + 863135B62D7BEA25601D4D6919F9F414 /* per_thread_sem.h */, + 74D983C3177CB17A1FFD5CCA45FF6080 /* waiter.cc */, + 47552940EDE352E5790999AC8E1A68CA /* waiter.h */, ); - name = hashtablez_sampler; + name = synchronization; sourceTree = ""; }; - FA4941447F02B3CF4ED30CF8F18D71EC /* wide_multiply */ = { + F119B4A0ABE017AECEE69836596133B2 /* Frameworks */ = { isa = PBXGroup; children = ( - DD792B696E54BAD4DB9DFE7BEDAA1CE9 /* wide_multiply.h */, + 92395B8FBCADFA3DF4D0C2B4EFDFF664 /* iOS */, ); - name = wide_multiply; + name = Frameworks; sourceTree = ""; }; - FA7A4344C30BFDC22CE7F2673C5C8908 /* abseil */ = { + F342AFD5CF1ECBE0AB6988513B72DCC2 /* internal */ = { isa = PBXGroup; children = ( - F794B5D63253836ADEA6EF9D902A4B14 /* algorithm */, - A8F46D6D2AC4C82B28CACE59F214C142 /* base */, - 41AB780015738496B9FFFE8923243770 /* container */, - 6F6C5E6F35B13B0AAAF9254918A2C722 /* debugging */, - DFA2949B79C7EB5D3D4B94AAF4B3C54A /* functional */, - 44214F3EC55FB9E70C802092A06893C0 /* hash */, - 27BB5730314294B9FCE5D0AE00AC55F6 /* memory */, - 99A8CCA483D48C1E7B0D7768FF85BCE0 /* meta */, - 5B8BBF86C3EE10EEBF88F2AE23B596C8 /* numeric */, - 8C1EB3A7C13508E3CCB702B2651EBCE6 /* profiling */, - 97A7442F37073B4FF15D0CBC12787340 /* random */, - 99C0C08DD8FB96E6183CBA90E677C0E8 /* status */, - 5D972A31AD0473DDF9BE7EA7EA7E45C9 /* strings */, - 4ED5DD61AAABF1212CF2C116063D5A61 /* Support Files */, - 35F68251231E7D160AD8F2F6A8342D72 /* synchronization */, - A767A86A5F517CEEAE1CE62E75777056 /* time */, - 407EA160CD851BAF1543709228EDDB8F /* types */, - 653A0BA05D1F35EB6CED4496EF7E4C62 /* utility */, + 03AD1A8ECE75F35ACDDAE6CB1E5B1675 /* distribution_caller */, + 71F29A6F26B2539017BEFDDE4D792EB1 /* fast_uniform_bits */, + 674CB3F232EE971380C86297A8D113ED /* fastmath */, + 845333EC1E2E4793C409A18CEE1116E1 /* generate_real */, + AF554F8AC7F6A47400BF0F4A8E7A86DB /* iostream_state_saver */, + 6CE7F0C515FD831EAC1B027772A3412D /* nonsecure_base */, + D1093F443CE8F3551432F48C07408793 /* pcg_engine */, + 605FA0DFF5430E7F80AF4F084A57B422 /* platform */, + ED50818C20EFFCB4A326C66AC367C27E /* pool_urbg */, + 817A4C2F01DF0EB186E19F2DEFAC5169 /* randen */, + 117D9F357F693233A6E2CC1C1AE9EA56 /* randen_engine */, + D34A019704F13A6EB864FC8CAC46BB98 /* randen_hwaes */, + B30F02436DDCFAACD5C3B3506E02B7A8 /* randen_hwaes_impl */, + 2D558F5C7021CA9B07287E5D0F1794AB /* randen_slow */, + D4A1E6311475356E73DFE81FBC487805 /* salted_seed_seq */, + C0F71A58FFB3A1DC18D360DD75FE751A /* seed_material */, + 5F4670155108705E4ED5E52B65FA1097 /* traits */, + 77DF85D70D3E28D9A80D94E41911B173 /* uniform_helper */, + 25057DCE5273D60E68E95D4ABC28530D /* wide_multiply */, ); - path = abseil; + name = internal; sourceTree = ""; }; - FABEECB88048B4E8CEAC223261C8554B /* Support Files */ = { + F3765CE05CCDD678824F9A0F33D8B8CF /* Support Files */ = { isa = PBXGroup; children = ( - CB90DC8E59620E9204E545F3B1EFF01B /* gRPC-Core.modulemap */, - 73FB054B2D12613885915961EA060358 /* gRPC-Core-dummy.m */, - FACDB6EC2330126C7BF62C3243506D5C /* gRPC-Core-Info.plist */, - 8F30C48AED51F133C45EFF4BF46AFE9B /* gRPC-Core-prefix.pch */, - A36F1C89CBBFA453DB0B177E19FF84EB /* gRPC-Core.debug.xcconfig */, - C5C3218E007EE16E154966A6F39936C0 /* gRPC-Core.release.xcconfig */, + 187D6F1846D902EB1AE8F489E3B92712 /* FirebaseCore.modulemap */, + 092457B81476DBBD3C716DE7074940D4 /* FirebaseCore-dummy.m */, + E5590A5FAEE02EEC468DBED5CAE72947 /* FirebaseCore-Info.plist */, + D0613480F9A32948BAE75943047F054E /* FirebaseCore-umbrella.h */, + 09D7FD35F673C6E5DD89F5E884D72F08 /* FirebaseCore.debug.xcconfig */, + 0351C0E7FAD69A223EB7140D9D84C28E /* FirebaseCore.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/gRPC-Core"; + path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - FAEF9ED9BE148EA0FA9714B40BBECF78 /* cordz_statistics */ = { + F4A634DD9C61C340488863027F2F0328 /* CLTypingLabel */ = { isa = PBXGroup; children = ( - 2670E9783D257D7E43A3104A953C57F7 /* cordz_statistics.h */, + 6D73791B31D6274270AEF1C7B81094D4 /* CLTypingLabel.swift */, + 75798C05772968D63E00DC2A9F415FFB /* Support Files */, ); - name = cordz_statistics; + name = CLTypingLabel; + path = CLTypingLabel; sourceTree = ""; }; - FC37DF1E3686E009DDFFE7E33E9CDBF4 /* seed_sequences */ = { + F4B41DD6D6C8D7B11D50F7AF3182CC5A /* strings */ = { isa = PBXGroup; children = ( - 4FD4ED5B0D555E874244EF0B61F14810 /* seed_sequences.cc */, - B866F5896D32013665BD2C89504836AB /* seed_sequences.h */, + DDF9D343DB91593565629E494DBD5086 /* cord */, + 1443E95429ED71CE3C4011C732BD39CA /* cord_internal */, + C1A0941DD54C6A50D6F75741E8492232 /* cordz_functions */, + DDD2F0DB7E32E66568224BA7620E0898 /* cordz_handle */, + B9FF1B83BE9D85FDDE4C4C97ADD52BB1 /* cordz_info */, + 23D9C81FF0F79097D6138DA9335FC05B /* cordz_statistics */, + A31AC87D1ADD4FC20B84720575E40EFA /* cordz_update_scope */, + F9377F7D12298A183B3A77B96B62E109 /* cordz_update_tracker */, + E3BD970F3F58A485F61DA95752373334 /* internal */, + 61C08477B9457FD8A2D7465B718BBF1F /* str_format */, + 15E24A6EBFB9C35ABCF4DBCE655401CC /* str_format_internal */, + 9A763521970580057DDB13D1CD0817C6 /* strings */, ); - name = seed_sequences; + name = strings; sourceTree = ""; }; - FDB80A51E5E7CAFB688E14026F195AAE /* inlined_vector */ = { + F7A66B019C81ABD1784C97DF1585CC1D /* span */ = { isa = PBXGroup; children = ( - 727ECEA09438D03DFDA5CB0E852D8207 /* inlined_vector.h */, + 8CE58EA3FA074E1E9675AFB0BB79CC9E /* span.h */, + 884D4FE00A5B0E47964EDE7B436B1147 /* span.h */, ); - name = inlined_vector; + name = span; sourceTree = ""; }; - FE8A985CDEADE77DDA1336A2A072C069 /* Interface */ = { + F9377F7D12298A183B3A77B96B62E109 /* cordz_update_tracker */ = { isa = PBXGroup; children = ( - 28C218425C921A293F8EC141469AB738 /* darwin.h */, - 08940229C89D7950A341B63D6AB7CC4A /* errno.h */, - 9D8CE1456274AE8409FB524F00E978C0 /* threadpool.h */, - 7EF49051A0998E8FA2DA3D036CD91262 /* tree.h */, - 232E972A47C285CFFEBE1576DDBCB1DD /* unix.h */, - DBBDA39D068CC4CAA43DBF85FF6152D7 /* uv.h */, - E9309C3628B3BB6CC05595DB7C4490B7 /* version.h */, + 4C4B3153670250D0144BC48A39993D20 /* cordz_update_tracker.h */, ); - name = Interface; + name = cordz_update_tracker; sourceTree = ""; }; - FF0979FDA6B5E71780AD2F1AB771DFAA /* salted_seed_seq */ = { + FA453D3692263FCAC0266B2017CFD126 /* Support Files */ = { isa = PBXGroup; children = ( - AE02BD5FF7FD18F98A8A00A695F4E7EF /* salted_seed_seq.h */, + F6DB8760E2EDBCCC5209125EE422A3F0 /* GoogleUtilities.modulemap */, + F2B02E512B4C6360E741CC6F397BEA29 /* GoogleUtilities-dummy.m */, + 65D0E61FA77E654AD7BB0CCA34370005 /* GoogleUtilities-Info.plist */, + 7CF9D96C62883E1B4DE86C5813D96300 /* GoogleUtilities-umbrella.h */, + 03CE6012BCA068CD82E776D1832944E4 /* GoogleUtilities.debug.xcconfig */, + 7948665A65AA28E8B9F1D1CB23D1639D /* GoogleUtilities.release.xcconfig */, ); - name = salted_seed_seq; + name = "Support Files"; + path = "../Target Support Files/GoogleUtilities"; + sourceTree = ""; + }; + FFFF8A1EEB30E5ED59C373265CD318A7 /* bad_any_cast_impl */ = { + isa = PBXGroup; + children = ( + 6FC7F37BCFD31279D121E74908263EF7 /* bad_any_cast.cc */, + ); + name = bad_any_cast_impl; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 1176540393DE6FA6E94BDA8CDC366F26 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 871A8ABF4441514D55F4E545E6629203 /* nanopb-umbrella.h in Headers */, - F4D51579C33710C8E1DCA2BA187463F8 /* pb.h in Headers */, - 69A76D694673E3DF4EF841E3E4BC5AAC /* pb_common.h in Headers */, - 51228270BF3F73BD13A6B699A8032B0A /* pb_decode.h in Headers */, - 8CF7BD61E42BAB6E7C49C0E25D016091 /* pb_encode.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1403929441ACB43D789F784FD0F80EFE /* Headers */ = { + 018FF0D53E7990EE662AA054120FB80F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2F64C947236AAC9884A928A6C698788C /* atomic-ops.h in Headers */, - 7CF76D21A1994D548B32A7A4E38034DF /* darwin.h in Headers */, - 7D4681B25DF4F8A0E2E614731E44D1A1 /* errno.h in Headers */, - C8ACABC73BFB3F50DAC70DB20AB751DA /* heap-inl.h in Headers */, - 3B4A4B5D7C4B412CE6BDAE0C9A00DE23 /* idna.h in Headers */, - CA14100D6050A733C8ED3C1137A17440 /* internal.h in Headers */, - 22343A699B5A4A9EBA7E682CA7CA8C8C /* Libuv-gRPC-umbrella.h in Headers */, - 261782F6533180B0A571A3A0E48BB5CF /* queue.h in Headers */, - 38BD585259DBDD0B00E1B0EC6B850094 /* spinlock.h in Headers */, - 5BE3A90405545953196C2F891955A33D /* strscpy.h in Headers */, - C07286B6CD16ECEE7FBB09DA7073E171 /* threadpool.h in Headers */, - CC29B9200BBCDCD79A2CBC6EE83FDE3C /* tree.h in Headers */, - 3417610773CC0A07BBCE2D6FF80EB9AF /* unix.h in Headers */, - E8C3F285ADDED27E0AAAC336C3CB2BAB /* uv.h in Headers */, - 4DBD7429F06FE1044B77D51D63CDAD52 /* uv-common.h in Headers */, - EA24B2E23FB71E7F48FFDA8E2F1AA57C /* version.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1E873DC44505F2FCF08C5D2C1D6C8C3B /* Headers */ = { + A0A26A87E8AFEC3688AF1DEE165DACF7 /* FIRAnalyticsConfiguration.h in Headers */, + 52116E2B10CC9DA097C56E4BD1ABA163 /* FIRApp.h in Headers */, + A1552CACD0ACF9C427C9A25BD261930F /* FIRAppInternal.h in Headers */, + E6967D88BEA687A69B9AB191438B6266 /* FIRBundleUtil.h in Headers */, + 63BC7374BA1009656C34C5A9A0D2AF7F /* FIRComponent.h in Headers */, + 863D0D27872452C138DC8DCE9A2D4113 /* FIRComponentContainer.h in Headers */, + 78945B616B2DEDB4BBDA346058140A74 /* FIRComponentContainerInternal.h in Headers */, + 9B9BAA0348E850C122679E57EF2D03B6 /* FIRComponentType.h in Headers */, + 716F454EFBB618FC212C714962713F5A /* FIRConfiguration.h in Headers */, + 49863977EA5D1C156DD330CC288A7742 /* FIRConfigurationInternal.h in Headers */, + 2FE5E6CB542790B2822423612DAB71F6 /* FIRCoreDiagnosticsConnector.h in Headers */, + F7045ED9E4D6D6D54132A1FB854FC9CE /* FIRCoreDiagnosticsData.h in Headers */, + E416AF5583594924FA1AF5C36E06A392 /* FIRCoreDiagnosticsInterop.h in Headers */, + BC22B946B58B6DD78D3EA64EE8969DE3 /* FIRDependency.h in Headers */, + D7D121041D2FCE52A3099F77CC3D059D /* FIRDiagnosticsData.h in Headers */, + 659B4E009AB4442C350934A86825D6EB /* FirebaseCore.h in Headers */, + 159019DD9974475A0CDEF2300DD37555 /* FirebaseCore-umbrella.h in Headers */, + AEF9D03730AFDA7F2302CB7A71C548F2 /* FirebaseCoreInternal.h in Headers */, + B9EFBF25AD7A2919C09D4ED0F97A0C5F /* FIRFirebaseUserAgent.h in Headers */, + CFBD2D8D988A10D3C0C74D7ABA7CF03C /* FIRHeartbeatInfo.h in Headers */, + 43EB28A7D682AFF0154D3A15FD0D9FF5 /* FIRHeartbeatLogger.h in Headers */, + 456A8EA74183A5BF5B7B7A74C348975E /* FIRLibrary.h in Headers */, + B424A53D45ED4D1E629E1D4C3C5B831A /* FIRLogger.h in Headers */, + 04CEFB296E670979A359ECCB64D33CC2 /* FIRLoggerLevel.h in Headers */, + 93396EF8F698EDCAC55D80321CA46D63 /* FIROptions.h in Headers */, + 496C1FC76F9FFD3FF5920849D4B748AB /* FIROptionsInternal.h in Headers */, + 45FF985794DF925219951DA1A38CD14E /* FIRVersion.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1F858E99888881EE346BB2A07007E13D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 3A5DAEB25E40D576662AEE4CAE15E232 /* FIRCoreDiagnostics.h in Headers */, - B7C7E3A33ACC4DD733065DC33BDCF47C /* FIRCoreDiagnosticsData.h in Headers */, - C0D3297F16BDD1412513CACCAE2E703C /* FIRCoreDiagnosticsInterop.h in Headers */, - 47358087C7F9F144A6B6F933829EBD89 /* firebasecore.nanopb.h in Headers */, - 2BBFD782A1ED47F43E9D11D64F011B44 /* FirebaseCoreDiagnostics-umbrella.h in Headers */, + 7A4C3E36FECEC69AC41BEC24CBA1B2B7 /* FIRCoreDiagnostics.h in Headers */, + 648342EEF1C9094F72985A525B61DA63 /* FIRCoreDiagnosticsData.h in Headers */, + 2466764A20FDF0F67C27D83B55651024 /* FIRCoreDiagnosticsInterop.h in Headers */, + 448E463A3DA2B2484FB8984545A58878 /* firebasecore.nanopb.h in Headers */, + 284604190C09F43C703B156F9CF7D7F7 /* FirebaseCoreDiagnostics-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2D1A49F9E1EB589E63F65DED1F8B323B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 9ADC047AB3C3A559BC7D9CFE2CAA58C3 /* FBLPromise.h in Headers */, - 0DA629D042CDE36E8095073F180F45DF /* FBLPromise+All.h in Headers */, - 57AD8D34CD86446CD5AED43DA4385ED3 /* FBLPromise+Always.h in Headers */, - A52AC84B4E0805281754FC9880677A61 /* FBLPromise+Any.h in Headers */, - 721F021106D37CFD81840EADE4E95166 /* FBLPromise+Async.h in Headers */, - 66EEE75ACD30B3684B3B4BD802F4B1A3 /* FBLPromise+Await.h in Headers */, - 499257A3D84E6A49115D344ACDDF1797 /* FBLPromise+Catch.h in Headers */, - 9FC69CA6BCE02A7EF247BB10A99B5062 /* FBLPromise+Delay.h in Headers */, - 42CEF7F44F24563109EC420AFF21F629 /* FBLPromise+Do.h in Headers */, - A6613FA4962913DB076C8A38921A5AC5 /* FBLPromise+Race.h in Headers */, - F6B5FF603517D07E4C2C0C5AF5587070 /* FBLPromise+Recover.h in Headers */, - BEE92F8AB390E57FCE49A698F65B8131 /* FBLPromise+Reduce.h in Headers */, - A4A058DCA2D5B7D7EB3633D3889C7AAD /* FBLPromise+Retry.h in Headers */, - F926A80EC645D764B5D9B541E41DAA3A /* FBLPromise+Testing.h in Headers */, - 98E639949FAA5DF932378E63A5F35825 /* FBLPromise+Then.h in Headers */, - 4AFEEC1143CFC62B922D824D01C4E5A0 /* FBLPromise+Timeout.h in Headers */, - D6BB08F5D86507A9A6294FDB61A3EEEE /* FBLPromise+Validate.h in Headers */, - AADCCBA7ACF71475F96EA54ADE2E9C13 /* FBLPromise+Wrap.h in Headers */, - 2E6B29ACEE161D242BA5941DA35285F2 /* FBLPromiseError.h in Headers */, - 77B72E4D522C7AEC40C2ACD1E4F1373F /* FBLPromisePrivate.h in Headers */, - BBC3BFB094C2FA6801D627D2F0550DAC /* FBLPromises.h in Headers */, - 93EE757E9C461AD4DA0ED2769D80215A /* PromisesObjC-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2FD6FF8D93E0BB254ED3355436FDC56A /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D0F8066C5C44FF1A64E27C0BE007B062 /* arena.h in Headers */, - B736E37000FB0AA76CA076D328A6D73C /* block.h in Headers */, - F8B01E8C772707C05C42E42050855962 /* block_builder.h in Headers */, - BA005759DD2E152BA78119878F78AFA8 /* builder.h in Headers */, - 599CFAA961525E125FFC6F8B8ED5DE17 /* c.h in Headers */, - 7209AF974221013EC30D52659D11AFBE /* cache.h in Headers */, - D1F818682B236CE856B9AB1F097283C4 /* coding.h in Headers */, - 317256B68965AFBD2372134317C9F4A1 /* comparator.h in Headers */, - 2505600C6235C08CAC9370B313EB072A /* crc32c.h in Headers */, - D4EA585B6400F8E54CACC9FC88B8163C /* db.h in Headers */, - 8F2A146898E336CE73134D4A28369D8A /* db_impl.h in Headers */, - 50CCA860AE8D5C3E4F48662D55095E16 /* db_iter.h in Headers */, - 057D6D4FD1F0FBC78576A996A3EE284D /* dbformat.h in Headers */, - CC9D11AA7D89109966869C5B4261520E /* dumpfile.h in Headers */, - DDF48D08E780ABEE7CE421E58B671ACD /* env.h in Headers */, - B5EFA365C6EFC2A958945337084D39DD /* env_posix_test_helper.h in Headers */, - F1AB4A7B71E1C020BA45CD11E718C142 /* env_windows_test_helper.h in Headers */, - A601C365EAFE3BAD13F9652C04BF3025 /* export.h in Headers */, - E7B24B375E51D313C9EF94FB5A6600B4 /* filename.h in Headers */, - FC7582546FB4FDA0CE3B08286E18B38C /* filter_block.h in Headers */, - FAEA02AD107EE1C5A9EB1E3B8285C9AB /* filter_policy.h in Headers */, - 58418267E90BF2903D2F7B2A2CFD58E8 /* format.h in Headers */, - EE911369566691DFD425964339466B61 /* hash.h in Headers */, - EF675048E3D3C03B2E868A3B98DE2608 /* histogram.h in Headers */, - FF56EC2F48F426BAAFD3C629C9750C91 /* iterator.h in Headers */, - 78D61FE6B41E4D1AE0E7F450EC42118C /* iterator_wrapper.h in Headers */, - 9E0AE646FF00655E8A753161189F8B6D /* leveldb-library-umbrella.h in Headers */, - 2DE9C7A969A9E2665CB1798D5961BA53 /* log_format.h in Headers */, - C258271167E9653691F0D94F2A657328 /* log_reader.h in Headers */, - FC895B924076DBCC493D0F7B613EEFF2 /* log_writer.h in Headers */, - 60726C80764CADDD05F1DF5109AD741C /* logging.h in Headers */, - 619B296F52CA20FACCEDE442C5AB740B /* memtable.h in Headers */, - 0682AACED13C6EE75BF4EF8033700CC3 /* merger.h in Headers */, - BD6DB733900D30A8D71B8AE854F2122C /* mutexlock.h in Headers */, - 6FE5B5238BE40202B95C5519A7078391 /* no_destructor.h in Headers */, - EB216963A1B4ED9D220955E1E72BEC6B /* options.h in Headers */, - 02E5FADF23B9B5C3EC9E73BCD0B6A49E /* port.h in Headers */, - 981294C52CC03CF03F858B044A8B2C2E /* port_example.h in Headers */, - 5563F278CFE43C80B4CDC7DF88447B26 /* port_stdcxx.h in Headers */, - 28E7106345B9C1379FA509FDF49AEF86 /* posix_logger.h in Headers */, - A83A3E0E9DA5181FB4F7E897C08B572F /* random.h in Headers */, - DE2887DF73076E257ADAC728102B8975 /* skiplist.h in Headers */, - 250D1D453A1623E3F8FC3A867A177BB2 /* slice.h in Headers */, - 058E4827A707D27CDF09DF4B71FC582C /* snapshot.h in Headers */, - 65EEA0D5AF8C07C9BB03E09DFCC6F4F6 /* status.h in Headers */, - FD0D88C702A2AAFC553CA838CAFC6FC7 /* table.h in Headers */, - 3ECF49D1695C1CA8CF55877DB1DAC6A7 /* table_builder.h in Headers */, - EF8DFDB678FE6A65C26676C7D8FA6872 /* table_cache.h in Headers */, - 12872C836FFE893CBE1BE4B4359D4851 /* testharness.h in Headers */, - D4B9A21B63313C915A4872D461F88E59 /* testutil.h in Headers */, - 51A7EDBFBAD2D49165C206AC74EC47DE /* thread_annotations.h in Headers */, - C03F20BF1A4E9C1CDC3B701E3F2F1395 /* two_level_iterator.h in Headers */, - 19C55AD418A401B0AF65412243BE5DA5 /* version_edit.h in Headers */, - A6797705AB4622A8B9A2AE1CF731411E /* version_set.h in Headers */, - 3E337DB3D31A685F72AC2E1C5E356049 /* windows_logger.h in Headers */, - D5EA0EA9D8507376C22C9F8AA25584C6 /* write_batch.h in Headers */, - 284FD7D93C9E223D2B0F4B0340F0A84A /* write_batch_internal.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3A1195DFB89B2FD34D7A9BC8B6DA8D63 /* Headers */ = { + 2BB33F5B20BDCE9C181D7E4E87241F2D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 87DB271DD06A8FC0A69B728863FFC751 /* GoogleUtilities-umbrella.h in Headers */, - 912AEF7AB47BE98F4ACB5497EAA92224 /* GULAppDelegateSwizzler.h in Headers */, - 224249C11FD39388385E276B853E1111 /* GULAppDelegateSwizzler_Private.h in Headers */, - 3B7F682886A4EED1AB76F8795346EDEC /* GULAppEnvironmentUtil.h in Headers */, - CF4C7AA534C0E05C372CFE7AF49AE1F4 /* GULApplication.h in Headers */, - 758C2A0AE6082DACD242516ABDD70605 /* GULHeartbeatDateStorable.h in Headers */, - 0C525BC3FC2493D90BF60EE65ED7E196 /* GULHeartbeatDateStorage.h in Headers */, - 7BE5105CD66F5199955052B105B2FA9A /* GULHeartbeatDateStorageUserDefaults.h in Headers */, - 7FA8EE0D7C7ED71ADE4154ED0DD96C99 /* GULKeychainStorage.h in Headers */, - EB9BCA5314BBE1E442475A5B36F15736 /* GULKeychainUtils.h in Headers */, - 907A8F723D27A60B948ABE4ECF8578D3 /* GULLogger.h in Headers */, - 78B22FA1B8D677CA7D680B4222E102EB /* GULLoggerCodes.h in Headers */, - 253C17F4A426FF3212F792DACEB8F629 /* GULLoggerLevel.h in Headers */, - 8B11EAA3A32F185280DB06E024DCEC04 /* GULMutableDictionary.h in Headers */, - D107B31E1CB33C07A8A3D4627DA8DC30 /* GULNetwork.h in Headers */, - 9F3F96B607A583017A01629D8834E0AF /* GULNetworkConstants.h in Headers */, - D17166307E057185740CA5138B66C6B7 /* GULNetworkInternal.h in Headers */, - 23BC133A42350F7974F59F11F3A1120A /* GULNetworkLoggerProtocol.h in Headers */, - C4FB369F70B63F0BD9DEE46DBB65E705 /* GULNetworkMessageCode.h in Headers */, - D6135580F058C75C6DBC5BD22ABFD3AC /* GULNetworkURLSession.h in Headers */, - 870A40917429116CD9C4FED7E41667A2 /* GULNSData+zlib.h in Headers */, - 4237E29AD3D60628BB0C740A8B841382 /* GULReachabilityChecker.h in Headers */, - 7B06CDDF22207C2BD589251CF94B536C /* GULReachabilityChecker+Internal.h in Headers */, - 8CD4E14D72DCCC4FD0145B0755AAF874 /* GULReachabilityMessageCode.h in Headers */, - 3F586A5D02C739DAD68B9BC0DD879B00 /* GULSceneDelegateSwizzler.h in Headers */, - 587CE2174396022DDE1A22E76AD7CA9B /* GULSceneDelegateSwizzler_Private.h in Headers */, - A6780CD7B816A798DB76AA6C0B600335 /* GULSecureCoding.h in Headers */, - 8D44244B2E646443716805ECBB6EA4D9 /* GULURLSessionDataResponse.h in Headers */, - D3681618FA9A087D5730FEB2AB7A10C0 /* NSURLSession+GULPromises.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3A85321E011026CA935C761A88C90232 /* Headers */ = { + 064F9907F0A4A4B613659E5177F2311D /* FBLPromise.h in Headers */, + A06410864A439ACAEFF1948A5EC214CC /* FBLPromise+All.h in Headers */, + 8E832CEED3105C5B45E0B64ED3985279 /* FBLPromise+Always.h in Headers */, + A651122CFD39B1CFC7A390162D3F845D /* FBLPromise+Any.h in Headers */, + 819175B37CA0E81E9844D78B0E2694A7 /* FBLPromise+Async.h in Headers */, + 5FB9B9FA0F2FA6810E98C033F1EF1448 /* FBLPromise+Await.h in Headers */, + 545C1410C8E49CA57185ABDDF54A2C55 /* FBLPromise+Catch.h in Headers */, + 584085D286AE9605C82362D4430BEB71 /* FBLPromise+Delay.h in Headers */, + 129462CDCA84CF30B3C85400CCFA8772 /* FBLPromise+Do.h in Headers */, + CA7D86EA2D00DC23884D957D42E8F5AD /* FBLPromise+Race.h in Headers */, + 443EB6B7C5CC6609B5456101C95CC488 /* FBLPromise+Recover.h in Headers */, + 68FE7D01E48FC36103DDE7D10635DEBF /* FBLPromise+Reduce.h in Headers */, + 011040D628B16F428F950154B6A51A40 /* FBLPromise+Retry.h in Headers */, + 8ABAA5038D7B4A5DB52625569D7BF9CC /* FBLPromise+Testing.h in Headers */, + 118AFCECF89F07C0A13ABA2D18A09189 /* FBLPromise+Then.h in Headers */, + 1F9920A6FA42C84F5DF681540373D2D5 /* FBLPromise+Timeout.h in Headers */, + 45BB389A927494581864C6ACE5F2353E /* FBLPromise+Validate.h in Headers */, + 8BEB648932618C21BA2A479CC9D01475 /* FBLPromise+Wrap.h in Headers */, + 0A534D8A982EFBCF9424A2F1D436929D /* FBLPromiseError.h in Headers */, + 271D1B6066A0CFBD210281006554941F /* FBLPromisePrivate.h in Headers */, + CB3EBA2D829DB67D06D257FAEEF0F055 /* FBLPromises.h in Headers */, + A802219900FA65CA119CD2839BACA461 /* PromisesObjC-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2DD96754491FD98050C6B2434055FAE5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6E2739F14C5AF8098D518F95F4400307 /* FIRAppCheckInterop.h in Headers */, - E7887B767941BD8E9A456B5E59021C26 /* FIRAppCheckTokenResultInterop.h in Headers */, - AE2C0FC57535C07425E16E5979A6F71E /* FIRAppInternal.h in Headers */, - D9E7135678A434F9D3A180161784E908 /* FIRAuthInterop.h in Headers */, - 8C637F2C73793647724EF18293C8886C /* FIRCollectionReference.h in Headers */, - D1908DF7534E7723BE1BDED7E2AD8C32 /* FIRComponent.h in Headers */, - 25C8F8417C5B708BF924DEFB742EA75D /* FIRComponentContainer.h in Headers */, - A4885CC8E2D2F9D95EFA8D352DF99EF2 /* FIRComponentType.h in Headers */, - B699DA60F60D122DE7B2F0F4CE6324FB /* FIRCoreDiagnosticsConnector.h in Headers */, - C1557C89FA58F857A5CDC3C146666435 /* FIRDependency.h in Headers */, - 6A96CBA4941078CE2AFFDCF676177BC4 /* FIRDocumentChange.h in Headers */, - 879E3ECE51C01D6D5792BB2860E4EBB3 /* FIRDocumentReference.h in Headers */, - 7EFACF444648D0A19A01F419C0DA051B /* FIRDocumentSnapshot.h in Headers */, - ED1A5DD51AAF79BE3AFBC49FB064F1EC /* FirebaseCoreInternal.h in Headers */, - 8BD4A1ADDA07A5A738489A72E933486F /* FirebaseFirestore.h in Headers */, - 2C85814EB214F1A2C5BE230EDFCDEB43 /* FirebaseFirestore-umbrella.h in Headers */, - 40F03274D028259D1E29FC22676D24A1 /* FIRFieldPath.h in Headers */, - D02429E59CA2877F9E31468285E9D4D9 /* FIRFieldValue.h in Headers */, - D791838D471896B50F81567CC46C0031 /* FIRFirestore.h in Headers */, - 4CE0D13CCE3E685AEB8419E8024FEAF1 /* FIRFirestoreErrors.h in Headers */, - 2E747DE97FFEDF3DDB34251985AA8B89 /* FIRFirestoreSettings.h in Headers */, - A4A90CD5C23A0C4C1DD9897B33281CCD /* FIRFirestoreSource.h in Headers */, - 559EE3A92BCB582CAA460F6F8AD39E19 /* FIRGeoPoint.h in Headers */, - 3C9308B074A008712B3A5E641156C821 /* FIRHeartbeatInfo.h in Headers */, - CCC119EFAB6C0DA66FF767EFA168BC2C /* FIRHeartbeatLogger.h in Headers */, - 87385A31E5A097697F6642A115508664 /* FIRLibrary.h in Headers */, - C94CF65D920D47450D13C956AF2AD306 /* FIRListenerRegistration.h in Headers */, - 667BD55400549A4A374692A544D7B0F9 /* FIRLoadBundleTask.h in Headers */, - 834B729BE09360DC3A9C71D239EAA15A /* FIRLogger.h in Headers */, - 1273933DC44275F886E09D296AB39352 /* FIROptionsInternal.h in Headers */, - 6100224C90B63153F3B5C2706C7E9356 /* FIRQuery.h in Headers */, - A29879AA2E5978460CDBC535CA33A738 /* FIRQuerySnapshot.h in Headers */, - B87EC27915EBE9326308D0F3DE64541B /* FIRSnapshotMetadata.h in Headers */, - 9A94A73BD36650C2A6B2E496CA476D7B /* FIRTimestamp.h in Headers */, - CD3C1859C687D91D2683530BFD747D02 /* FIRTransaction.h in Headers */, - 288891ED9218DEFD672A6FE91C84E49F /* FIRWriteBatch.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 42A5D39FF1CCA7DA1B9DCD4B74855436 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 31D71D5102ECA531B34A27283D33CF0A /* FIRAnalyticsConfiguration.h in Headers */, - 73D033875178E906ECE368DE07D0445C /* FIRApp.h in Headers */, - 3A0A869A6C015D2850DD642A99BCF986 /* FIRAppInternal.h in Headers */, - 818D04C01BB2BC945D3CEAB03DF0B0AA /* FIRBundleUtil.h in Headers */, - 32DF577632B5E490567BE66A836CC7ED /* FIRComponent.h in Headers */, - 4803D72174751203474949B3A83644C4 /* FIRComponentContainer.h in Headers */, - 7E3661E9F3031F435E14F00E6B6F80E2 /* FIRComponentContainerInternal.h in Headers */, - 0D783E6897DAA3A1DCD8943436A13769 /* FIRComponentType.h in Headers */, - 3E0AF461B9C4B4ABF27728D4DE10F428 /* FIRConfiguration.h in Headers */, - 3F1A86CF60BBBC2961A483325867D4CB /* FIRConfigurationInternal.h in Headers */, - B9D38D05DC155B8F7B4BE949BE4444F9 /* FIRCoreDiagnosticsConnector.h in Headers */, - 22C20028CB9374FD9341F738FACE3082 /* FIRCoreDiagnosticsData.h in Headers */, - B71EE83FB3383393DA765E5E71642015 /* FIRCoreDiagnosticsInterop.h in Headers */, - 83D2BA45E168CA50539868AED5D20C15 /* FIRDependency.h in Headers */, - 0E82019D91C4C875394D787B7B75DCA0 /* FIRDiagnosticsData.h in Headers */, - 262B21A262D3D00B9D007BE953A5EC99 /* FirebaseCore.h in Headers */, - 1A33B5C335B4527D472F350E794111A8 /* FirebaseCore-umbrella.h in Headers */, - 5B55D3E3D1E7845C6FC13486B5E02564 /* FirebaseCoreInternal.h in Headers */, - B5B2E6B28E8A9360313817B82A8F3366 /* FIRFirebaseUserAgent.h in Headers */, - E4DAC20177813E034C7FE5C688CC3BD3 /* FIRHeartbeatInfo.h in Headers */, - 3892290C87A2B50853F36B998DE088AD /* FIRHeartbeatLogger.h in Headers */, - ACB021B51C826A6364EA0EC24D348BC6 /* FIRLibrary.h in Headers */, - 98DF5C8408C2DE0CDA9C4E6E6BCB6ABA /* FIRLogger.h in Headers */, - 584A988C01807B31D0E4249B856AD89B /* FIRLoggerLevel.h in Headers */, - 2AA0CCA054B72F974004BD5985942AD4 /* FIROptions.h in Headers */, - CDB3E65B522C04A8C0F64CCC7A5EA71A /* FIROptionsInternal.h in Headers */, - CEEE0F0E33B4DC5154FEDD6CA0D276EF /* FIRVersion.h in Headers */, + 9B340E2A4FB2438A685809628199C73C /* Pods-Flash Chat iOS13-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -22541,1068 +22578,474 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 651A7E0D855F1CB0C801D0D7D8D00520 /* Headers */ = { + 4A2D7E0895F8EA9409BF454F87031A45 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F5615D25D4362F6FB8F8AA767D08E4CB /* cct.nanopb.h in Headers */, + 1CC5B2FD703CC1019C5EEB4E889FE01B /* client_metrics.nanopb.h in Headers */, + 3FFA3AE79A0E6CF7030058C8D0FC0765 /* GDTCCTCompressionHelper.h in Headers */, + 4B86A1292772ED618CF0B0615D0E8CCB /* GDTCCTNanopbHelpers.h in Headers */, + B7A1BF68271983BA42EFC8DD6EB3E7F8 /* GDTCCTUploader.h in Headers */, + 2D590978A17D03A4012D9CA0751FA098 /* GDTCCTUploadOperation.h in Headers */, + D417F08CE8B4BBEEE23A29AB60CF60B8 /* GDTCORAssert.h in Headers */, + 1994DDD22FB1FDBD115F28D63F4D8018 /* GDTCORClock.h in Headers */, + B62BA1ECA300DD224FAB6FE5CF4C9F29 /* GDTCORConsoleLogger.h in Headers */, + A9AA091D164991966FCB8D9889EB2D0C /* GDTCORDirectorySizeTracker.h in Headers */, + 0FA2DF74508C3BE88A1948861ED5B559 /* GDTCOREndpoints.h in Headers */, + E28530D56E453527B10A9EAD5D0C3634 /* GDTCOREndpoints_Private.h in Headers */, + 96550C1A29F871AA6323199FA2E877BB /* GDTCOREvent.h in Headers */, + 526FACC7C5EF545EB3E533286CF4AF25 /* GDTCOREvent+GDTCCTSupport.h in Headers */, + D23D3969D7B481795DEC7B8A28A70BC9 /* GDTCOREvent+GDTMetricsSupport.h in Headers */, + 46A0D77E885071709F2B6088CFAC7D97 /* GDTCOREvent_Private.h in Headers */, + CD87ECE41250B45A92077ACCC133BA65 /* GDTCOREventDataObject.h in Headers */, + 3492496DC0CDF33E82C86B469669CC67 /* GDTCOREventDropReason.h in Headers */, + 0E4189B3F93E2427F73726E86223EC6A /* GDTCOREventTransformer.h in Headers */, + 20411AA5D27B38F16D925DBA416A7FAC /* GDTCORFlatFileStorage.h in Headers */, + CFA48AD80E040EEAE86B10888FA4A8F6 /* GDTCORFlatFileStorage+Promises.h in Headers */, + ABF72A9860DEA072D25FF2EA4CA71C3B /* GDTCORLifecycle.h in Headers */, + 0DD278D8211E6692D308A4077394F786 /* GDTCORLogSourceMetrics.h in Headers */, + 7D6936BABCD451025EAB1B032DC076C0 /* GDTCORMetrics.h in Headers */, + 9DC0B084716F4E48AB29FEF5AC6FE542 /* GDTCORMetrics+GDTCCTSupport.h in Headers */, + 16DC30CA5CC6916B751E9BC0DFA79BE5 /* GDTCORMetricsController.h in Headers */, + 4A491F9F1E656379BC9B8997D952CAD3 /* GDTCORMetricsControllerProtocol.h in Headers */, + 714461E8BFCE4A1F15844F9A4E2180B1 /* GDTCORMetricsMetadata.h in Headers */, + 303877C76B071D2480971ACA8AADAF24 /* GDTCORPlatform.h in Headers */, + 03935F2F93AC9B0C114DDD453438C621 /* GDTCORReachability.h in Headers */, + 060F102DDA4375212305E0C9DFEB520A /* GDTCORReachability_Private.h in Headers */, + A8CCE50970EC7744EC57A5D78B35A8E3 /* GDTCORRegistrar.h in Headers */, + 949EAC9ECEB1EF68BEA3B2A6E1D44ECD /* GDTCORRegistrar_Private.h in Headers */, + FA32BD375660120DFC69D05F9DA7F2AD /* GDTCORStorageEventSelector.h in Headers */, + C018B0DB518789746469268E1767687E /* GDTCORStorageMetadata.h in Headers */, + 600FCCA31727597F3280DC74440A5BBB /* GDTCORStorageProtocol.h in Headers */, + E944BE473ECA8DA35AA66A71CC8BE6FD /* GDTCORStorageSizeBytes.h in Headers */, + 24AC93E1F44E45BB0A79CDA50FA6FA3A /* GDTCORTargets.h in Headers */, + 84F45135A8666E83E12374689C781330 /* GDTCORTransformer.h in Headers */, + BC68B66527CEF4EC2C0AD9BFB98CA5A7 /* GDTCORTransformer_Private.h in Headers */, + 1133D4E2C67EBFDFB908BB6E17715BC4 /* GDTCORTransport.h in Headers */, + 814EE9013698D27ABA21C80CBD051DCC /* GDTCORTransport_Private.h in Headers */, + 00EF6F83C91D673DAC8C1F6E15E3DA86 /* GDTCORUploadBatch.h in Headers */, + 253DC9383B1D33E5BF27E6198E86A133 /* GDTCORUploadCoordinator.h in Headers */, + B90D37C34029E800D4EC9B9E8779023B /* GDTCORUploader.h in Headers */, + 2AADF0BA738A22253446CFF481840A46 /* GoogleDataTransport.h in Headers */, + 6A1CED1DD36971C8997A0E249AFA2810 /* GoogleDataTransport-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 70091BDE14C28F460FE700BAB0AAC256 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6252ED6CC547BD95F9E5C162EA66C708 /* nanopb-umbrella.h in Headers */, + B76ABA0F8FBAAEF7C8581EAF28FE4E4F /* pb.h in Headers */, + 6E4F97196C338BA9541C8AF61D06F359 /* pb_common.h in Headers */, + 82E9815A9CADD21EDB34D494B904A092 /* pb_decode.h in Headers */, + E0B93A797D941F4A141BB31FA7B46890 /* pb_encode.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 723A1E98D68A561116F8E23F464E58B2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - CDFD07C9B8BF67D588074A441D741DC7 /* abseil-umbrella.h in Headers */, - DD7C2B3CC68A73B2B43585FE89BFED1E /* address_is_readable.h in Headers */, - 040BAD349D66D4584D9D6686928207CD /* algorithm.h in Headers */, - E91DB82391DF2243F0BB55C6A9935F55 /* any.h in Headers */, - 310F9830AEEFC83B91952E495124BC3D /* arg.h in Headers */, - D6C3756C456D0C6DCD44445CA2D361ED /* ascii.h in Headers */, - 07D004369E04959A85C74DD21E478692 /* atomic_hook.h in Headers */, - D1765709E9AC101E6FFC17650353A3EB /* attributes.h in Headers */, - 916EDB3119E3011DC67170BA3B45B766 /* bad_any_cast.h in Headers */, - C3DC99638667290AAD42A58A8EDA9F9B /* bad_optional_access.h in Headers */, - 98FC2D623C3902F6163319B9A996B2A7 /* bad_variant_access.h in Headers */, - D140E5FA0A1ABF2839C6060AA7F96F54 /* barrier.h in Headers */, - 29076AD5BB3F125071DC23685ECA2D58 /* bernoulli_distribution.h in Headers */, - 1CC1251E4F19DF198F5F03DDD23BBF83 /* beta_distribution.h in Headers */, - A7A9CE903AFD4443C21E06AC83F7D0AF /* bind.h in Headers */, - 87EDD15FBFA673BA0BA7A28960B31EF3 /* bind_front.h in Headers */, - 319A57C1E9C99117FE5CB31356ABAF54 /* bits.h in Headers */, - 5A40D5781960428438784E51F4F46C91 /* bits.h in Headers */, - D565052DA877EA4CE8E2264F232F799A /* blocking_counter.h in Headers */, - A6640BFCE92BCA9DA27227B775243AEE /* call_once.h in Headers */, - 7D70F1393413C9AC000313EB8199EB2A /* casts.h in Headers */, - A9AC25B518F0FE1A34331C7860676EFE /* char_map.h in Headers */, - 5FD8FB2370ABCCB358B8FA19A89827E1 /* charconv.h in Headers */, - 8C5C7124E50B6D0438FC691CF83ABEAE /* charconv_bigint.h in Headers */, - 7CDF3077023D79C87A2DBA88C111F0D3 /* charconv_parse.h in Headers */, - BCF13AD637134A0405DD3BC952DC876F /* checker.h in Headers */, - 2D93AB920297E853694F1473B94C958A /* city.h in Headers */, - B5E99D65EDA63583F3466C5A5091A3CE /* civil_time.h in Headers */, - A842CC92E9B5FB029082350F8CDC235F /* civil_time.h in Headers */, - 7105A947613ACEBF217851752CC1F722 /* civil_time_detail.h in Headers */, - D7DB651C5C79D74482A13D194D5B2E7B /* clock.h in Headers */, - 80374AD1C63821F24C455A216AF2DA9B /* common.h in Headers */, - 5F49A998D5AF096021B2670FB360E148 /* compare.h in Headers */, - 0ED25B5D67E61A025F2A8F13E8C277A3 /* compressed_tuple.h in Headers */, - AA823AC1BD270243880B00190D3CAA5F /* config.h in Headers */, - B3D1BFFF437776879E490FD2393C1ACF /* const_init.h in Headers */, - 89FFE223CF0ED8AFFE29E185910568DB /* container.h in Headers */, - 439713749418B25AFAFDBBB04CD42D90 /* container_memory.h in Headers */, - 97F9B2CD8D3509C4F7478D5EF12C6392 /* cord.h in Headers */, - E96F119AB92E97A2B9109FB676B868D6 /* cord_internal.h in Headers */, - 190AB024C575E42D7FE1F2A7B9DC1D56 /* cord_rep_btree.h in Headers */, - 6AB5A57CA302470E45C47F6AD2E11BFC /* cord_rep_btree_navigator.h in Headers */, - 252E754C06E00B6EB8DDDF75FE811F57 /* cord_rep_btree_reader.h in Headers */, - BD7A4CF8EF6DE7EB645E46D286E9812F /* cord_rep_consume.h in Headers */, - 718CB6D2473D2B48F450E8BA9BD684D0 /* cord_rep_flat.h in Headers */, - 33A200D8648FE197BAA4F1E11FBB9A9C /* cord_rep_ring.h in Headers */, - 57E7DE6416AED8EEAA844854C716EC5F /* cord_rep_ring_reader.h in Headers */, - 08A53DB2C4058543D6FA55F325AB99D4 /* cordz_functions.h in Headers */, - 15FBC53D5F47782A13C203CF9AC6CF6F /* cordz_handle.h in Headers */, - 3813994766F3F04E882E64AF11C0D2CC /* cordz_info.h in Headers */, - F50631152B55802DF6C8B30DC3362442 /* cordz_statistics.h in Headers */, - 0E3E28B2122656D04183276E47D57AD5 /* cordz_update_scope.h in Headers */, - 6E64E7CC0903DCF702CD77BD20947703 /* cordz_update_tracker.h in Headers */, - D024385D5CB7AA093CEEA7A4F1B3C270 /* create_thread_identity.h in Headers */, - 9AFDDAC689B93717D8E37153C9D25C99 /* cycleclock.h in Headers */, - 3D70972C6EDC4B3920121C28F4FAF992 /* demangle.h in Headers */, - 89E4A8D585DE1B11EAE9348D2864D989 /* direct_mmap.h in Headers */, - 8A242CFADFECD7BB8B969F1A003926C3 /* discrete_distribution.h in Headers */, - 59A4E378610D0CD93C0B8AAFE59425AF /* distribution_caller.h in Headers */, - 1FC48CFAFC2FFCA969C7B55F0A3C4DBA /* distributions.h in Headers */, - 967A23D79CC9139EF33B5BD2A5935476 /* dynamic_annotations.h in Headers */, - F2FD681644D4B1366220BB164D0604DD /* dynamic_annotations.h in Headers */, - B70818240B99FE1A1C28CDA53CAAED6D /* elf_mem_image.h in Headers */, - 0A27828E304123EA557C8CFB7543B206 /* endian.h in Headers */, - 3736F0706459D81FD4B3DFA13FBC75C9 /* errno_saver.h in Headers */, - BD68D25744A286032B757C0A801D3A38 /* escaping.h in Headers */, - C593182A00FD5A8B104EBB69F4063BEF /* escaping.h in Headers */, - 4D71CDB22B20A3EF6F1BEA45B62DC855 /* exponential_biased.h in Headers */, - 0E30CEDC7C2E41E9B4DDA534A3F32026 /* exponential_distribution.h in Headers */, - 4AA2B084DC91E671A5ACB990C9038F0B /* extension.h in Headers */, - 95E2507AC994AF92FF17AA28BADF2167 /* fast_type_id.h in Headers */, - 56109D4D4E21C4910B90663D6420726D /* fast_uniform_bits.h in Headers */, - 2E97EB87C47EBB8ED7A1ACC923EE4982 /* fastmath.h in Headers */, - AEFC1262A4E8879A6D1307DA279FEFC6 /* fixed_array.h in Headers */, - EACC0AC0600DA8371D1052C42697D6E8 /* flat_hash_map.h in Headers */, - 23886AFE8EC4A64C2A257935ABCCB813 /* float_conversion.h in Headers */, - 5F42F8B0DB5BAE0E224FFBE1A332F417 /* front_binder.h in Headers */, - E4D40BE448051E285392A01CADB87985 /* function_ref.h in Headers */, - 78B3A08C83E747B402EB04D2A47D6A3E /* function_ref.h in Headers */, - 2658A6BB3081A9939EBDC5C6B25B8AC9 /* futex.h in Headers */, - 0BBB3DA2BFF2522EEAABE432D673A900 /* gaussian_distribution.h in Headers */, - 2B2ADA56EDE58AFC65B07CB0948348D7 /* generate_real.h in Headers */, - 37361387E291C401F14ED52C8866FF5A /* get_current_time_chrono.inc in Headers */, - D07372E521A42CDBA69656190682268F /* get_current_time_posix.inc in Headers */, - B313CED4892002D4D6C8C1024359551A /* graphcycles.h in Headers */, - 7891B2ADCD5118724DF0B69D365DDE16 /* hash.h in Headers */, - FF3551090628C99A09DF5984F4CA551D /* hash.h in Headers */, - 15C91E9398756BFD34A12B0A33F43E9F /* hash_function_defaults.h in Headers */, - FAF11D23D572ABE324FC5987A0CED3F8 /* hash_policy_traits.h in Headers */, - 7003A99C9D1314C3837CAD220846931B /* hashtable_debug_hooks.h in Headers */, - F6F880CFCA2E2E0CA76BC4756D9A3501 /* hashtablez_sampler.h in Headers */, - 819C87408DA96F0C1F7318F765E013E9 /* have_sse.h in Headers */, - E7C4706E9AB566D4A0DACA94AB13152B /* hide_ptr.h in Headers */, - F7F2BABE8DA0FA0E024489E75435C137 /* identity.h in Headers */, - 7866C01032A5BFFB1D1FBFE56B950E11 /* inline_variable.h in Headers */, - CCB0401A3C52A6DE167C4A17FECED203 /* inlined_vector.h in Headers */, - 57EB946ACEB4AC6C91C9F6C0C14A70EB /* inlined_vector.h in Headers */, - 5E7A0858CA090C2D680683007CEB4A26 /* int128.h in Headers */, - E55D9EBB65630BA13DE9941834A5A28B /* int128_have_intrinsic.inc in Headers */, - 719C576642849DD3609704AC5F2EA4A5 /* int128_no_intrinsic.inc in Headers */, - BC988A7A3A2A3ECB43AC4920C5183BEF /* invoke.h in Headers */, - 7E13A79CD4231A7BA5F2CCAC2877BDB6 /* iostream_state_saver.h in Headers */, - E5EB44CC1F1F641568DA8C93556F4952 /* kernel_timeout.h in Headers */, - 47B49CE99D6071782DABDD4C674D7093 /* layout.h in Headers */, - 3F7E4CDB1E777025E03345762774C099 /* log_severity.h in Headers */, - 7AA28FB0D20A89A0454154DA4729D991 /* log_uniform_int_distribution.h in Headers */, - 0AE47D40FECD509BC2C6277D2E0DC0F4 /* low_level_alloc.h in Headers */, - E620DDC3FFD1204F4A62AD88EF126CD2 /* low_level_hash.h in Headers */, - D5757F87A265788DE40E45415B3C49DC /* low_level_scheduling.h in Headers */, - 35295D0C9164919EDA75182277F7B119 /* macros.h in Headers */, - 8961F55A1E172E6D019104481FC2B5D1 /* match.h in Headers */, - 824ADC60B6AEF71058AB9D8C247FCCCB /* memory.h in Headers */, - 13DBBC428F73FCA8F916AF45E0907984 /* memutil.h in Headers */, - FA36AEA9FD177D243F6BF29C6C391532 /* mutex.h in Headers */, - D9C4678593DC62E979FA50A1499E08DF /* nonsecure_base.h in Headers */, - 4DC74A2D5B391A778C0495580BEC8A85 /* notification.h in Headers */, - 1B4A81C58D23275C44E145F6B671E4ED /* numbers.h in Headers */, - 4311CD573D9DEC67097888B96D76CC86 /* optimization.h in Headers */, - 40626883A0EBD7ABBEE8EEB7F46A1E4E /* optional.h in Headers */, - B22C1DC4F948479D6BC76A8409469FE5 /* optional.h in Headers */, - D123E6FB6743893648409D73F8624F8B /* options.h in Headers */, - CF4893508895E19B1F908707C8CCFF59 /* ostringstream.h in Headers */, - D250A603F997F1EF318B927CA1120957 /* output.h in Headers */, - 8FFA48565161C3C436339000910EBA79 /* parser.h in Headers */, - 2C5B54D6FB9B9E75819AE1B29D7353E1 /* pcg_engine.h in Headers */, - A5EB3E0AA930D724BBC72888F89278A7 /* per_thread_sem.h in Headers */, - 582C6D186E58BDBC64368952BFE6FD6D /* per_thread_tls.h in Headers */, - 611F11D4E8489C453B3A9BEC00407EE5 /* platform.h in Headers */, - 32FA5F35300384466115BDFAAB61E358 /* poisson_distribution.h in Headers */, - A550312E6CA621D60BAFF037BAF8273D /* policy_checks.h in Headers */, - F23289CFA91EA180A3DB821154180657 /* pool_urbg.h in Headers */, - 086C3A5F58CBED238C347AFB717E80D2 /* port.h in Headers */, - C67366E83C18F9139D28DAC0945180A5 /* pretty_function.h in Headers */, - 6920BFEC683B43F7BC5C8E918CE5F20C /* randen.h in Headers */, - 680DD904AB5E23B0F51263A737C25CD1 /* randen_detect.h in Headers */, - 979395192A1FB4230351D0CD371AFD1B /* randen_engine.h in Headers */, - 472FF0D076DEB03DAC42B4436EA58618 /* randen_hwaes.h in Headers */, - D227C064AE40FB998448F4BD995516C1 /* randen_slow.h in Headers */, - FAC89E3D6D4D2CB9778D5C89AFD5C977 /* randen_traits.h in Headers */, - F163AEB8A80508E9FEAE941095F25CFE /* random.h in Headers */, - 5B652622ACA1B149967975BBEB1ACF2F /* raw_hash_map.h in Headers */, - 2DED06F5C3E71B1C24FD24529D436CEF /* raw_hash_set.h in Headers */, - 79C1E2DEC3DADE417C5024F0966180FF /* raw_logging.h in Headers */, - EC5A5F407B190E9A516936C7132CA1DB /* representation.h in Headers */, - 31414D12F1A1F229625892C0E5BB239A /* resize_uninitialized.h in Headers */, - F97C9068059D68F6A46FF0A67B767F35 /* salted_seed_seq.h in Headers */, - 993FB13DA90B37E835138949FFD0ADC6 /* sample_recorder.h in Headers */, - 202E0DB6062959815E943A44DC691AF2 /* scheduling_mode.h in Headers */, - 6ECC3E3C88679C8CC96ECC176187B965 /* seed_gen_exception.h in Headers */, - 8EAED8105E8E7F43F2C259E96A12B957 /* seed_material.h in Headers */, - 6C5F93CC3D357611BEE1B2F5F501E9D0 /* seed_sequences.h in Headers */, - B20A781167338EB51E221F1E35E3ACDE /* span.h in Headers */, - 3A5D0876D74F8272E3004E00AC528166 /* span.h in Headers */, - BD69EDD3B60F534F0F37B076FEB84742 /* spinlock.h in Headers */, - 97B03F767139AF57EDF00509AA2743E1 /* spinlock_akaros.inc in Headers */, - A70F265FE30F6FBE365C6C9F5FED94AA /* spinlock_linux.inc in Headers */, - F1DCCB204F2E4F2E57C871BF12B35AD3 /* spinlock_posix.inc in Headers */, - 84C8A1734B1CDDE019E454A4BFAE3F57 /* spinlock_wait.h in Headers */, - 40B639E690622F804FE86359086C4111 /* spinlock_win32.inc in Headers */, - 13EED0948B84F55567A9EAD6791F41C8 /* stacktrace.h in Headers */, - 69CFBBDA531609DA5F7799012DBED110 /* stacktrace_aarch64-inl.inc in Headers */, - ED8A810BB8B13FAB06CCC521D8193521 /* stacktrace_arm-inl.inc in Headers */, - 7BE030FC47D38432991A3E92CF24390F /* stacktrace_config.h in Headers */, - 43DFE22FE7DEB95E89812495F9BC4BA5 /* stacktrace_emscripten-inl.inc in Headers */, - D6681B71A849B45C55BBA4770AF1F0E7 /* stacktrace_generic-inl.inc in Headers */, - F35923637FDFA53BBDC23378783D3976 /* stacktrace_powerpc-inl.inc in Headers */, - 97B9EEF3AAA390ADED8D18B64D22AAFA /* stacktrace_riscv-inl.inc in Headers */, - D9C5576159B5727C92091A81174C0E4F /* stacktrace_unimplemented-inl.inc in Headers */, - B2635763CF0E5DADD5B07D6AEC9C9CD5 /* stacktrace_win32-inl.inc in Headers */, - 7451FFA212D9D8F0AF585C8E44DF0599 /* stacktrace_x86-inl.inc in Headers */, - 2CAE468A415DFDBEAC67552985EB286F /* status.h in Headers */, - D66996EFACB21388B737432C58AF754B /* status_internal.h in Headers */, - CBBC6961B2BAF684759B61491F3B0FD8 /* status_payload_printer.h in Headers */, - B11FB7D3803A993BACAB57E172B3614C /* statusor.h in Headers */, - D3C380AD0676A8CA92C8C0DD9A00DEA4 /* statusor_internal.h in Headers */, - 02D1EEADE6B5AFAF41576FF7D7A513F8 /* stl_type_traits.h in Headers */, - 2204EE0894AACE999722F8DF9AD8C0B4 /* str_cat.h in Headers */, - 57CD6C780FD06DC90D7D5E772B7242D8 /* str_format.h in Headers */, - BE957583F436ED7466673E502EA9784D /* str_join.h in Headers */, - 629B1D737E1526801390DCB0D97AED1E /* str_join_internal.h in Headers */, - CC4124F92D815A91A15AB02D7619AC3E /* str_replace.h in Headers */, - 287AF1378BCFEED397E22B7923F6AB3C /* str_split.h in Headers */, - 112F29770C6A697CA57E75DACB20B383 /* str_split_internal.h in Headers */, - 7B51E68ECA786E04EFA21A229B162717 /* strerror.h in Headers */, - 8E2A6194063E5B2D838014276716E990 /* string_constant.h in Headers */, - A183E24DC92136AB20DCA79576C02CA4 /* string_view.h in Headers */, - A83991C3D838152C2E1BEF932BE97A94 /* strip.h in Headers */, - 15962A788D06ABAFFAF85353970758BB /* substitute.h in Headers */, - 4B7C489E4DDAD8DCDD79406482116311 /* symbolize.h in Headers */, - 3C32A9AC71FF647B7D6E16EB700D3680 /* symbolize.h in Headers */, - 88C0EB0E3C6D63030962716409741FA1 /* symbolize_darwin.inc in Headers */, - 4ECBFC82BC2F2D238A5B8E5293C7DAEB /* symbolize_elf.inc in Headers */, - 9FFE725920246CBE4E4E7DA8DE02745C /* symbolize_emscripten.inc in Headers */, - 27F9637A893777D85A47D160AA4B53CE /* symbolize_unimplemented.inc in Headers */, - 54A3A5CACD7B0B035D78E0920B837EE8 /* symbolize_win32.inc in Headers */, - A900720A4A8D43B89D436D539BBBD45F /* sysinfo.h in Headers */, - 35C11B43A3933C4A64D2B2B7046DC209 /* thread_annotations.h in Headers */, - ECC824A08F41C18B90056C1C3DEDDDC6 /* thread_annotations.h in Headers */, - CEE6B2281E5F2C88822982639D01628D /* thread_identity.h in Headers */, - A18491E95C7902C03DBED7F4F1881A93 /* throw_delegate.h in Headers */, - D57F87E92DEA979641C8F9F0FCBA94E4 /* time.h in Headers */, - 66BF2E01D854443C1CC7847C33E35E49 /* time_zone.h in Headers */, - 06840A38F705A1D393F1DB09C79B2E87 /* time_zone_fixed.h in Headers */, - 36CBC515B39C51462B79EC0A677FE658 /* time_zone_if.h in Headers */, - 3CD13B45E1A8C2B78D1123937968D6C2 /* time_zone_impl.h in Headers */, - A234B09E07CD184A81FD51B853E4A89E /* time_zone_info.h in Headers */, - 982D1D96989598271CB76B0A317E4D03 /* time_zone_libc.h in Headers */, - B175AEC57B0AF7140C579E350C9301AF /* time_zone_posix.h in Headers */, - 4F91219515DB7617445FB8A11F4FF074 /* traits.h in Headers */, - 305C0CB92EFCB8539610AA8CF5BBCA2D /* tsan_mutex_interface.h in Headers */, - D10C9143A1F72532A0BC67FC573AB2AC /* type_traits.h in Headers */, - 49A3388C9523F385C4CB62EE23787AFC /* tzfile.h in Headers */, - CE97A20487C6C3A9E71145D19780EFDA /* unaligned_access.h in Headers */, - F68813CFE87E90D032E50FAC4D695EB9 /* uniform_helper.h in Headers */, - 1331BDF4188A7144426BD9420E11CE54 /* uniform_int_distribution.h in Headers */, - 0251D38BB1B78DB52DDFA25DBB1767B8 /* uniform_real_distribution.h in Headers */, - 241C6FE8BE9FBE6BC4BBA26EBB8CAEE7 /* unscaledcycleclock.h in Headers */, - D07741927BDCA75EB0948334AE1A8AEB /* utf8.h in Headers */, - 5657E044C20491AE3FF3FA035D428962 /* utility.h in Headers */, - 731E79941A8FD5CE2B44897868DD2B89 /* variant.h in Headers */, - 56AC14455A809541B0D732A077CF8656 /* variant.h in Headers */, - D70E665D4FDDC6E42F16EF8FC58664B4 /* vdso_support.h in Headers */, - D2FAC64F8EF1ED98E9AF9F10D8B0291C /* waiter.h in Headers */, - 885D655EF5B9778C97D91C213710321B /* wide_multiply.h in Headers */, - EF279E27CA01481F3A8C61F647B2FE83 /* zipf_distribution.h in Headers */, - 7A5FD81B7955E18735DE50D077D24004 /* zone_info_source.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6D981270275912E657A2D5B3FA007BEC /* Headers */ = { + B130168C2DA103E3CB7C469385D1218B /* GoogleUtilities-umbrella.h in Headers */, + ABA7382115E308EF3FCF7E820D68B296 /* GULAppDelegateSwizzler.h in Headers */, + 69FAEC67FCD2EE62CEBA16DEC14901B3 /* GULAppDelegateSwizzler_Private.h in Headers */, + 7D85C707B4F2629EC6BC3C62648B2BCE /* GULAppEnvironmentUtil.h in Headers */, + CD389D7066EBBBC1DBF3D45BF7B2A69C /* GULApplication.h in Headers */, + 7C08C1049328AD18BE6688317AF30028 /* GULHeartbeatDateStorable.h in Headers */, + D297630887DE2C95999D6AC232E914D0 /* GULHeartbeatDateStorage.h in Headers */, + 600D8818DFFF59569B41942962C8472E /* GULHeartbeatDateStorageUserDefaults.h in Headers */, + 511D8C090234C94DE2F296ABD50157DC /* GULKeychainStorage.h in Headers */, + 5F09C5A9E259B69B5BA6E40CAD274780 /* GULKeychainUtils.h in Headers */, + DDABDD4B075295DD722E977FAF54EAD5 /* GULLogger.h in Headers */, + F6A08ED5AF598E0A7185AE6234BA860D /* GULLoggerCodes.h in Headers */, + 14A75122232D7B67E8D5947B5315957E /* GULLoggerLevel.h in Headers */, + 820FBFD2933C14BB49CE91B46DA03CB9 /* GULMutableDictionary.h in Headers */, + DB109CD819648B9549E90F2636EBDD74 /* GULNetwork.h in Headers */, + 3031374B67AC12A3D1F45B25D3268E8F /* GULNetworkConstants.h in Headers */, + 42BA8A81F9B0F3C3B016E4CFB2768AFB /* GULNetworkInternal.h in Headers */, + 923251B940A869EE3E88B8ED9B95F80F /* GULNetworkLoggerProtocol.h in Headers */, + FCB545E2F1884D4DB868E77B47F71DC8 /* GULNetworkMessageCode.h in Headers */, + E570AB5A9CE7DAB7C3556ACD0E99AD29 /* GULNetworkURLSession.h in Headers */, + 5A96AA138D0462F4312DAC5F135848FC /* GULNSData+zlib.h in Headers */, + 92AC525BAFACCC69F2FD6C02E898EE16 /* GULReachabilityChecker.h in Headers */, + C8E02DA9587CF8C847E4C2EB1624F691 /* GULReachabilityChecker+Internal.h in Headers */, + B6BA4A23EB1F46E8AB4CAC8E38F98133 /* GULReachabilityMessageCode.h in Headers */, + A43F19D8567D0177D4BC546E6356E203 /* GULSceneDelegateSwizzler.h in Headers */, + 16827098E2DCFFF1B5991C0E7CB6A708 /* GULSceneDelegateSwizzler_Private.h in Headers */, + B39147AD1B295BCB500CA8426179DAA9 /* GULSecureCoding.h in Headers */, + 547245C32EE1172D8F4EF99FEB2BEB90 /* GULURLSessionDataResponse.h in Headers */, + FAE22421DA67D507DB11028A4B7E83C8 /* NSURLSession+GULPromises.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7763DEFDEC8F53CD304E099D600A9FD9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 43E8983C4BBF845093C8C315D9092C8F /* cct.nanopb.h in Headers */, - 4F19E33A057A18D8686453B72DD7D039 /* GDTCCTCompressionHelper.h in Headers */, - 6B66D8B85FA57F9F42F8E1FBEE7826EC /* GDTCCTNanopbHelpers.h in Headers */, - F3E1014BB721E28485E167CE610F8A75 /* GDTCCTUploader.h in Headers */, - BED0AB867F42B23F5164F26DBFFDCEE7 /* GDTCCTUploadOperation.h in Headers */, - B4D15A99719EA9BE053B14EB74971FC0 /* GDTCORAssert.h in Headers */, - AD1D5FF5BD06F491FF92770F0ED405FB /* GDTCORClock.h in Headers */, - 77F441BB5D3D06DC3D0D0B687687FB6F /* GDTCORConsoleLogger.h in Headers */, - 154B1A7101AE1F2C0B85CF8997978A47 /* GDTCORDirectorySizeTracker.h in Headers */, - 5D0BB69A4617EFDA7CAA3CD7BD01DE94 /* GDTCOREndpoints.h in Headers */, - E718967338E976CECB6D0F7DD7DD58BC /* GDTCOREndpoints_Private.h in Headers */, - 6F80E32790E835A112EDA3FF1628268E /* GDTCOREvent.h in Headers */, - 4687650683FEEB8DEF9D670BA952976E /* GDTCOREvent+GDTCCTSupport.h in Headers */, - 7D9C7F2DE6B55D60A5DD1F19C9A86B60 /* GDTCOREvent_Private.h in Headers */, - 4CAB631CAC5CAE549E133A5D313B7F96 /* GDTCOREventDataObject.h in Headers */, - 06DD1C5C2F951A74ADA46D5C76C2CE2C /* GDTCOREventTransformer.h in Headers */, - EBAF0CA56D794E0387EC073019F5828D /* GDTCORFlatFileStorage.h in Headers */, - 28BA97134D12CA6E7CADA39C220D8A93 /* GDTCORFlatFileStorage+Promises.h in Headers */, - DD19906A7F3DF699981705477A925538 /* GDTCORLifecycle.h in Headers */, - D781D4E6588AA9C8DEA783906C70AA90 /* GDTCORPlatform.h in Headers */, - 2170EB069FC379A6871BCA00CBF12E35 /* GDTCORReachability.h in Headers */, - 6291C3A742EA8A59E72C88812C62A328 /* GDTCORReachability_Private.h in Headers */, - ADD122B9E1EFBF68923D1CE542F590A9 /* GDTCORRegistrar.h in Headers */, - 50422F3954B51D20CB93B8105281A776 /* GDTCORRegistrar_Private.h in Headers */, - 598784B1E6FD9DED0D172B8BFCEC26DB /* GDTCORStorageEventSelector.h in Headers */, - AC77AC2E540A27DD2D8AE4C68AE1E9FF /* GDTCORStorageProtocol.h in Headers */, - 847D29D2B09ED40D8DA6CB4D2EB03AE7 /* GDTCORTargets.h in Headers */, - 762D85AA23AC78C27C90C7D641750EF4 /* GDTCORTransformer.h in Headers */, - 3DE64D17D791EE6D26D1587C9238A082 /* GDTCORTransformer_Private.h in Headers */, - 7EAE48607C6BDD69DC00CF2D67DA20E8 /* GDTCORTransport.h in Headers */, - AC59F62B9757B5922099AD700556B596 /* GDTCORTransport_Private.h in Headers */, - 02EBD35A93ED0F5790190917A22F13F4 /* GDTCORUploadBatch.h in Headers */, - 48EFAB4151FFD5B1A2F9C0B9E921424A /* GDTCORUploadCoordinator.h in Headers */, - B2CE065F9C588524834CEAF8D0BA0CFD /* GDTCORUploader.h in Headers */, - 268CF1F1E32605E90E07B1AD9CC3EE81 /* GoogleDataTransport.h in Headers */, - 21DBA0145A5630E876112D1B13038CA5 /* GoogleDataTransport-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9DFFC53F9F690BA043AFB7FE2551620D /* Headers */ = { + 51A908DECFED245C385BB8584EB66A4F /* FirebaseCoreInternal-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A16E9BAA2A046D3653D04E2F76CB8CAF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 47505411F026366C329A20AEC1457265 /* Pods-Flash Chat iOS13-umbrella.h in Headers */, + E089D6DB1A259331A23A07FFF805B88F /* GTMSessionFetcher.h in Headers */, + A3F668F6E9D66F2053603145B5B68452 /* GTMSessionFetcher-umbrella.h in Headers */, + A8E3FC16A8DC5421EACEB18C00D9B9A5 /* GTMSessionFetcherLogging.h in Headers */, + 3EA51AB60F847EEA3EADEB031018344B /* GTMSessionFetcherService.h in Headers */, + 0B94AA4BF610657E1054E5F80178FD00 /* GTMSessionUploadFetcher.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C7BF8DB42F8606858DB8EA92517395B7 /* Headers */ = { + A5877C43114C3E2D05327920CE78C66E /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9AF4CD2C1DEE4F1EA6D3386E3010CAE3 /* abseil-umbrella.h in Headers */, + CBE56068A58F8353FC25AAD9C9CDED69 /* address_is_readable.h in Headers */, + 3AEA0C95285F38E5F54361402E41E13F /* algorithm.h in Headers */, + 953AD1134AE09DA89A151DD74118B7FC /* any.h in Headers */, + D6149F3D140CC132F69941D958869654 /* arg.h in Headers */, + 577482D7C9C84B03BB9B5A7099F98EB3 /* ascii.h in Headers */, + 19C258137B4616B12222F97A53A6509D /* atomic_hook.h in Headers */, + FAF0116933FBD88AAB41613431714C12 /* attributes.h in Headers */, + 844135BD8BC6B0CB77A700A1FE1520CC /* bad_any_cast.h in Headers */, + 64978A708F2439E42D17363776C64166 /* bad_optional_access.h in Headers */, + EC23764397870E6134D83EBC40190B37 /* bad_variant_access.h in Headers */, + 9366B9389BD2B3395FBE4564E82DE1AD /* barrier.h in Headers */, + CF2C56E2F3F4161DB684C2E7A3252C2E /* bernoulli_distribution.h in Headers */, + 133172E9247AB20785EA033B13763D30 /* beta_distribution.h in Headers */, + A9B4AC09C03F8CEB18CE46616A4A75DA /* bind.h in Headers */, + 90A9502C524EB760BE5643DE1F1418F5 /* bind_front.h in Headers */, + D8CBE86383F037933AF0853CBB6F808E /* bits.h in Headers */, + A188FBE134F4C6515DBD235F5E11D6BD /* bits.h in Headers */, + F673A31FDE3BE940A70F5D87DE995B26 /* blocking_counter.h in Headers */, + 4F16CFA127947504BA0A0F943D621F36 /* call_once.h in Headers */, + 2370BC8CF8B763933D14E4FEB22BA32C /* casts.h in Headers */, + 98CD8F9303541DFDA6702DAAE9BFE4E8 /* char_map.h in Headers */, + EB8FABD47F0A23A3ADDBBC52713A1F1C /* charconv.h in Headers */, + 7CC55CC6E97903A87355C5279D90E787 /* charconv_bigint.h in Headers */, + C403A2144F93F3EA35BA7CC1E85163A3 /* charconv_parse.h in Headers */, + 843D886217479415DC9AC340116F8211 /* checker.h in Headers */, + 5B4F9200F10A0CDB0230753AB2B500DF /* city.h in Headers */, + 3178B5D809FD72E435A1261D13E679DC /* civil_time.h in Headers */, + 0CBDA0E900A7F6815200E7877DE50992 /* civil_time.h in Headers */, + 6DF02F7BD857DD1D7EA57DE855DE6D2C /* civil_time_detail.h in Headers */, + C9C30D4ACEA338ED6B30638E0130AADF /* clock.h in Headers */, + AC074D297D6371737FCEF6B3C68D78BC /* common.h in Headers */, + F4F70CCE95E4F3CCD7B986CE4F4C1DA6 /* compare.h in Headers */, + B48848A0FB43F06BF46A742BDE6570EB /* compressed_tuple.h in Headers */, + C7ED93D1A8232D49977A727E70E34C13 /* config.h in Headers */, + C24A8E00CF03B180AA8CA1C3B694EC17 /* const_init.h in Headers */, + 2A8AC9DEC5CC14A3D5BE79760D1CB9E4 /* container.h in Headers */, + 470ABD84BFED55BB81225B314603C823 /* container_memory.h in Headers */, + 31BDDD8DE39844987511E18B432A4EE7 /* cord.h in Headers */, + E8E4CAC3A186EE9D202A705091473183 /* cord_internal.h in Headers */, + 5E72AD62E9185F273E54D580545A4170 /* cord_rep_btree.h in Headers */, + 13768A96393E1EECFBDD5A2E13123FCB /* cord_rep_btree_navigator.h in Headers */, + 8FDD59B9AEDDAE331772A37E24EF5416 /* cord_rep_btree_reader.h in Headers */, + BA93C0806CD2C484DCDFBD16FE7FB764 /* cord_rep_consume.h in Headers */, + 7E2DED6E2611E376BE26A7CEAB7B6AF9 /* cord_rep_flat.h in Headers */, + 849F05699303FD70C8FF79896D8C887B /* cord_rep_ring.h in Headers */, + 2474C2393B29206D9B25F7B4F1EF1068 /* cord_rep_ring_reader.h in Headers */, + 45C5A0AFD6EBD9A74F45E89312F32903 /* cordz_functions.h in Headers */, + 4BDB9EC980AD7ADE5C5427C5E5CA5262 /* cordz_handle.h in Headers */, + 1F958F0D9AA777B1CBDAEBF7864D8F98 /* cordz_info.h in Headers */, + D62B7F69E13C2627CE16843A0B365BD0 /* cordz_statistics.h in Headers */, + 12928DE7D8B01D07DEC28D7437084A5A /* cordz_update_scope.h in Headers */, + 6AF743A72157D65E7C37D0D6BF37C599 /* cordz_update_tracker.h in Headers */, + 918FA891294F089EFDBFEBF872C5F00F /* create_thread_identity.h in Headers */, + A8DBFC0711E95B63104C5F4026418839 /* cycleclock.h in Headers */, + E42359E6F22986D2E2595E86FC268EA8 /* demangle.h in Headers */, + 3A9B4F5B03EE235919790AF49F0E50F1 /* direct_mmap.h in Headers */, + 08521F7502851A8812CD4D1AFECB9C9B /* discrete_distribution.h in Headers */, + C4AA8F732581D635BD29BF47E7B088F9 /* distribution_caller.h in Headers */, + 9B3C21ED10B074665A00711EE4508B50 /* distributions.h in Headers */, + C8638C3B23C5281B6D1A074F4B236238 /* dynamic_annotations.h in Headers */, + F33B862210076BE4442C1D1DAEF33EFB /* dynamic_annotations.h in Headers */, + 301766B6B6CFC908BF31C613B0312423 /* elf_mem_image.h in Headers */, + 5B2DBC4AC7CB2D5A9BC0673300641366 /* endian.h in Headers */, + 5167E1F20649A130E27E40A7B039AE25 /* errno_saver.h in Headers */, + B20873DA0FA68407B59686312A6BBE33 /* escaping.h in Headers */, + 8419DE7DDE9B849EB5C416A8F5C41CAF /* escaping.h in Headers */, + C6ADC0A0FA16E8D7623D66F38548CF28 /* exponential_biased.h in Headers */, + BED9608BDC365687702B0E1C74973ACA /* exponential_distribution.h in Headers */, + 856283CEDCE70A8F3FB9A269437749BF /* extension.h in Headers */, + 301D554844D25E29BBC7EB98D6C3B633 /* fast_type_id.h in Headers */, + D741D6E40F06CCEC66B74502B3E93A64 /* fast_uniform_bits.h in Headers */, + 3DB72566B25F347C5A236BCA810C1AA0 /* fastmath.h in Headers */, + A48957561C72751D8763F79A60D945D6 /* fixed_array.h in Headers */, + B80FF5AB691B5D0F5A1C273057C5EA51 /* flat_hash_map.h in Headers */, + B84E4790BB23067B033BC9BA84512AF4 /* float_conversion.h in Headers */, + 930117271CEBBC5FC67241D3B7E41C77 /* front_binder.h in Headers */, + AEE45788B25E27532B497474A07655A1 /* function_ref.h in Headers */, + C87FBD999A021B4357F50D43E305D0AD /* function_ref.h in Headers */, + 441F47F94C9CE11AF481B497447AE592 /* futex.h in Headers */, + AB94B58C5BE332996D34EDCC14B24BC0 /* gaussian_distribution.h in Headers */, + 4B5E4C8DFE85FD2CF5F740D9763A6BAA /* generate_real.h in Headers */, + D2D0C2FE6AC86B3ED8D1DDD0BDDDA0E2 /* get_current_time_chrono.inc in Headers */, + A36B1CA66D132C7C67EC3AEC9A2DC8FA /* get_current_time_posix.inc in Headers */, + 7E3213C067ECFFA9BF819E9CE5347DDF /* graphcycles.h in Headers */, + 5D5BA4E6BBA1FE07BADA73FE081CF369 /* hash.h in Headers */, + BB1526266C44ED3492E62F8731D26F7B /* hash.h in Headers */, + 745504728A01F96143B5BF46424C60CA /* hash_function_defaults.h in Headers */, + 41E64374F063F7BA32B4C73456346D78 /* hash_policy_traits.h in Headers */, + 8CF3A7C15E832B353B560A87053A7BCB /* hashtable_debug_hooks.h in Headers */, + 0A11D62EF9201BC1FAE4E9DC1A4E276C /* hashtablez_sampler.h in Headers */, + 5F39C14F5A167286208C7A186BE12335 /* have_sse.h in Headers */, + DBC0EE7D6A163059A9C393F75F12338E /* hide_ptr.h in Headers */, + 94587AD302BFFAD6FBD5BBD55B62197E /* identity.h in Headers */, + 48B1B1401459570DD56D92EE176CBA99 /* inline_variable.h in Headers */, + 610DD850D7E0CB242D2E16ADE002C464 /* inlined_vector.h in Headers */, + 45BC33D3EF1458D00F967944E4B0FC0E /* inlined_vector.h in Headers */, + 7CC7B8422FBE09C0A589B1ED2F44E929 /* int128.h in Headers */, + BF3D96B99583C0F3000C0EE0C4916B2B /* int128_have_intrinsic.inc in Headers */, + 2D7B08A182F24A8FE1834B5FD06394FE /* int128_no_intrinsic.inc in Headers */, + 0B4A34F6989065AEB20E1617492ADE90 /* invoke.h in Headers */, + 22E849AB3EEA04959E7175A03DA51C0F /* iostream_state_saver.h in Headers */, + 316D49AE670885A841383E54AEB4F5C6 /* kernel_timeout.h in Headers */, + F0E6A5CCB8085D987469B0CDD901B695 /* layout.h in Headers */, + F57B1883A9757DE901EB3E517B073EC3 /* log_severity.h in Headers */, + 310205374BADD6166055B6C84CE720B9 /* log_uniform_int_distribution.h in Headers */, + 246DEB880E006DB18833B94CBD8CF9C3 /* low_level_alloc.h in Headers */, + AC148502980A241161D126FA19A009CA /* low_level_hash.h in Headers */, + A2BCF2BA404EC91C77A9E1769CD9BECC /* low_level_scheduling.h in Headers */, + 2D6B59BD3572547147E3D4E9E4F9563A /* macros.h in Headers */, + C2FF508491EAA16647D3B086894BBD49 /* match.h in Headers */, + 54587D5B46FC30BCF691D8AB2EFD2DB1 /* memory.h in Headers */, + 7F91D7571BC867272AA7150B7ACFCEAD /* memutil.h in Headers */, + B1240264FADAA62D7329FBB7A710FAB5 /* mutex.h in Headers */, + D61929F71F9E675A453D4D4F7DAF58E9 /* nonsecure_base.h in Headers */, + C4A4FE88CD4C91C9F732ECA7173BB7FD /* notification.h in Headers */, + E6802FFD056E376CE059DD4AB5CAF393 /* numbers.h in Headers */, + BB81EE27307406488D8D67C6B186C9EF /* optimization.h in Headers */, + 9B680696F116FB7F685984C8138350D4 /* optional.h in Headers */, + AA16B7993CFB3CE39DB07E03B1E1AB9D /* optional.h in Headers */, + 2C3B038E6E09C14FB023A45012A95C27 /* options.h in Headers */, + 655682B16A3E687B3BC43876DD4C0715 /* ostringstream.h in Headers */, + C16E50BDEF80111D44005C7BC9E2AE65 /* output.h in Headers */, + EDD13361738164CA427426787A3495AA /* parser.h in Headers */, + B702E4F06CEFE81C578D5D1D4473FA16 /* pcg_engine.h in Headers */, + CA67AF2A0BA534A5A3E941A95851DBE5 /* per_thread_sem.h in Headers */, + 80BB58595376BB0B1426F6461EC286A7 /* per_thread_tls.h in Headers */, + CF9240BFB205ADB782F5CD2E736FD614 /* platform.h in Headers */, + A87351B0E197EA6F958DC8644231F70E /* poisson_distribution.h in Headers */, + 368987817CA5DFCFD25B1EB5DB8A559D /* policy_checks.h in Headers */, + 78322B49C3058E8BC90C58DEDFF72E12 /* pool_urbg.h in Headers */, + EF288BE5FB68517EEF053DCC0C27819C /* port.h in Headers */, + 038DCB46A996986B4017C3EF8D0E872E /* pretty_function.h in Headers */, + 77119E9501732BEB0261CB6D803BC720 /* randen.h in Headers */, + 46A82E195709C9DC76498381DAEF76F9 /* randen_detect.h in Headers */, + 93BA242AB81D7E70E80AAC268952C501 /* randen_engine.h in Headers */, + 59910142FEC04C07F27332FCA11D9251 /* randen_hwaes.h in Headers */, + 765AAE3F283AFCF29673E3891858D32A /* randen_slow.h in Headers */, + FD07026C5B38B4F083950AD62227A476 /* randen_traits.h in Headers */, + A196D399D4F4E170C29BFB84A7D87E87 /* random.h in Headers */, + F94755762647A9AD2A4D0EB471CC74BF /* raw_hash_map.h in Headers */, + 328BA17133C7F68260CC8A9797DFFF40 /* raw_hash_set.h in Headers */, + 49165A0B622EABF624632C4287C9B069 /* raw_logging.h in Headers */, + 8E608D50A54327123242F5C3ADCBF217 /* representation.h in Headers */, + 47A1E1BDC1E6DEC680DFAD5BACB09FCE /* resize_uninitialized.h in Headers */, + FFBF073B21E9AACD137009AA34DE9068 /* salted_seed_seq.h in Headers */, + 7B049E06DFF9588BA7C9AFD5E0B24645 /* sample_recorder.h in Headers */, + F0D6A39540B8036AD285E2DBA92EA687 /* scheduling_mode.h in Headers */, + 1AC577F776327173B00E37E498627267 /* seed_gen_exception.h in Headers */, + B18843E88105E40D22F8612E241EB308 /* seed_material.h in Headers */, + 381E4A5DF1D42AD3830E3AB22614CDC0 /* seed_sequences.h in Headers */, + 0D8657D000D01191AC3DF35FB31646C7 /* span.h in Headers */, + 27BA8F5271235E708376268BD50F4AED /* span.h in Headers */, + 48E664E29B85F5B43AE7BB969665C097 /* spinlock.h in Headers */, + C1712AAC5B6D310B860E68AAE76B6F75 /* spinlock_akaros.inc in Headers */, + AA362B7E05B908556EF1C40CA666DF9D /* spinlock_linux.inc in Headers */, + 2C3165613D34FFB4DB9BDE553FCC1AA5 /* spinlock_posix.inc in Headers */, + 1049966BBDBFE1BE1C52DB89DF5068DF /* spinlock_wait.h in Headers */, + 0E80492013D7DC088549713FA7685EA5 /* spinlock_win32.inc in Headers */, + 9CD4F129CBA839509B72B84694136596 /* stacktrace.h in Headers */, + 497B7CBD2459E6210C21D4D33032D62B /* stacktrace_aarch64-inl.inc in Headers */, + 00B7127D0FF1B6CBD775072A074CC207 /* stacktrace_arm-inl.inc in Headers */, + 2343AD1835934CA12CE5C04581E172CF /* stacktrace_config.h in Headers */, + 07BB408134D492950664F5C704BF803F /* stacktrace_emscripten-inl.inc in Headers */, + 1496DCE68B22A275E443BB0C042D6D36 /* stacktrace_generic-inl.inc in Headers */, + AF83B1222044AE5DB3913FBAFB89CF38 /* stacktrace_powerpc-inl.inc in Headers */, + E6858E1DB93CF989BEDE5EAC4DC98381 /* stacktrace_riscv-inl.inc in Headers */, + 4772BDA8BBAFE6E1D8E9ABD5FF874763 /* stacktrace_unimplemented-inl.inc in Headers */, + 5425CA21C8C0FC164ADAF5704EE96147 /* stacktrace_win32-inl.inc in Headers */, + 53200DBEEABF11DFD32E9ED8187B742C /* stacktrace_x86-inl.inc in Headers */, + 087DE166668C5FB49E2100506C806C03 /* status.h in Headers */, + 78D79451A338C63AE2150AD28B90C426 /* status_internal.h in Headers */, + 63E5C5237CB3090E1C4513CA897D1BD1 /* status_payload_printer.h in Headers */, + 67B425FBAD842684CEBD1ECC93390DB4 /* statusor.h in Headers */, + DB919697493161ECDD9CCF65D3C65854 /* statusor_internal.h in Headers */, + 77030C307B6BC5F146B6B6DE0473A6F0 /* stl_type_traits.h in Headers */, + 00B609633DF1783C1354E6BE30CC3E3D /* str_cat.h in Headers */, + 6C610C6390A9BC14F29D708C228C067B /* str_format.h in Headers */, + 55647C98D03DBAC062243B4EBDEA8C0E /* str_join.h in Headers */, + A1F35DB3FE0552530E8A243EEE188CBD /* str_join_internal.h in Headers */, + 6B4ED398993D0C9BC05170500803F656 /* str_replace.h in Headers */, + 952E0685B658B16E2097B2DD85F1CCB0 /* str_split.h in Headers */, + B57A525090F8162DF4EBD6451E8447ED /* str_split_internal.h in Headers */, + CD545C9BB0FA8796BCEEC7C774CFA8D2 /* strerror.h in Headers */, + 971D4EE32AE33D9B67F89A7C226C95A9 /* string_constant.h in Headers */, + 1E440D1CC7F42928A9FA847655E1EB99 /* string_view.h in Headers */, + D158548901A2DFC84FA7FD8BFBA7AD1C /* strip.h in Headers */, + 72299B8DB24371E177BEF75340DF6D0E /* substitute.h in Headers */, + 5EFC7CAF6269B1B9307CCB492AA31245 /* symbolize.h in Headers */, + 3B197B15158710147C3695F561D6F1DB /* symbolize.h in Headers */, + C69683B342A8766DFFB6ECE25CCF1845 /* symbolize_darwin.inc in Headers */, + 7CE6B33455B68147815A771D7B24EB80 /* symbolize_elf.inc in Headers */, + AED87D4B85E0DD6F38FA123AE094DE48 /* symbolize_emscripten.inc in Headers */, + D38BEA618C9969FEA2414DC0A72838E6 /* symbolize_unimplemented.inc in Headers */, + 384D84379F9F0B47A453B1AD5D11E15D /* symbolize_win32.inc in Headers */, + 6A6E61DA91A3F150C6AEC3602861DD99 /* sysinfo.h in Headers */, + 89BF43070C5ED34008F3CC860D789674 /* thread_annotations.h in Headers */, + F33A8810ECF877F5312D1104DDD8033D /* thread_annotations.h in Headers */, + 4DBF537E8A8500E68E257B9FDAC72B90 /* thread_identity.h in Headers */, + 3717B28E1EE649CCEFEE45BDDEFCD66B /* throw_delegate.h in Headers */, + 354C585009B84E684D4D531EB0D264DD /* time.h in Headers */, + 55D70D5D364A8B1E625E24406354C39F /* time_zone.h in Headers */, + 9D3A1B1331DE5BD12CA256B00C1B5031 /* time_zone_fixed.h in Headers */, + 44DA3F5EA0BD76B4DF3C48B9B855B9DB /* time_zone_if.h in Headers */, + 70355507231BD168F2384D46E1404AD2 /* time_zone_impl.h in Headers */, + 1A3E693FA2140CF53D66066BFD119513 /* time_zone_info.h in Headers */, + B8C5CB97BF7FFA975CE2F314EEF13FFB /* time_zone_libc.h in Headers */, + 07785CA38253C22FB26E68E9E23524C2 /* time_zone_posix.h in Headers */, + 72F2698F449B3EC525C9BBD71A9B0D23 /* traits.h in Headers */, + 2DB3E93613E339BA7DE9B26FE1BDF2C5 /* tsan_mutex_interface.h in Headers */, + 331F02633AB3D1633880F5CB9F6F262D /* type_traits.h in Headers */, + D7B5DA962A67286040C38A9A4D6139CB /* tzfile.h in Headers */, + C6172DC117B1E34354C797EE1E8DAF1C /* unaligned_access.h in Headers */, + 5A57D8A1DEEE4DF0AE7CDB91264C7E3D /* uniform_helper.h in Headers */, + 08F879B7B71AB39451FB3C1DB8C7FDB3 /* uniform_int_distribution.h in Headers */, + 6464A35782F0D6EE0633E1A521E24A1C /* uniform_real_distribution.h in Headers */, + CB1DDE4C9D46BB1952C358BB5479B4A4 /* unscaledcycleclock.h in Headers */, + 9B7122F82A563975D35496DA10622F65 /* utf8.h in Headers */, + 8A82C490B0C44BAF1813626DE9071955 /* utility.h in Headers */, + 0A535C2591A11F911D92B7D7F08575B7 /* variant.h in Headers */, + FFAE53F8B2BFCB6EAFF9587A2AB8AF0A /* variant.h in Headers */, + F425EA040BEF271CCCF9E82B327FEADE /* vdso_support.h in Headers */, + 963AA73364328FB7E04E2FE47E726E35 /* waiter.h in Headers */, + 3165B674466D9B6960F85C0216512F10 /* wide_multiply.h in Headers */, + 4CB58D74079B74C36243E852CF766685 /* zipf_distribution.h in Headers */, + C23953DABA3FDAD01A0C813FB4E1A3E2 /* zone_info_source.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A9E20281F19116A0D99972C99DBCC01E /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 920519E5B45C854FA043C0BF067D33AE /* FIRAppCheckInterop.h in Headers */, + DD005AA413752910044D65CEE54FBAC0 /* FIRAppCheckTokenResultInterop.h in Headers */, + 6FACE664E535E0C47B94EF77AADEFA8B /* FIRAppInternal.h in Headers */, + 37C8FFE9382FDE7521D95E756843051E /* FIRAuthInterop.h in Headers */, + EBD89EDAAD4D2D0D89EC7FA278208F56 /* FIRCollectionReference.h in Headers */, + 9B08C98BDA89C3F9068E4D5CAE8C5E13 /* FIRComponent.h in Headers */, + 0814B196CA6B8778CD206DB38A8C9CB7 /* FIRComponentContainer.h in Headers */, + 8506FFAEDEA982ECF37A9A5036123029 /* FIRComponentType.h in Headers */, + 41EA1FDF248D07D04100DC0ACAF976E6 /* FIRCoreDiagnosticsConnector.h in Headers */, + 4EB1E32BEE31821A1A1BE18A932BD374 /* FIRDependency.h in Headers */, + 7D2F17B1B95C38B6DCDD28A000143EA2 /* FIRDocumentChange.h in Headers */, + 6FD0FBCB19784B197402EFBB68452E90 /* FIRDocumentReference.h in Headers */, + 6DCA792576E9DB5E47D17476D2979957 /* FIRDocumentSnapshot.h in Headers */, + 205059EA62222EC528CA5FA13879247C /* FirebaseCoreInternal.h in Headers */, + 899A4ACBDE3A35F978A182722CB91C32 /* FirebaseFirestore.h in Headers */, + 5788CDD69077D1A4DE205B0936B45937 /* FirebaseFirestore-umbrella.h in Headers */, + 7143DB18BB62B2EF5FD8E4F053EA9F93 /* FIRFieldPath.h in Headers */, + 4DC7F4107C50D8113C2E425670DDD899 /* FIRFieldValue.h in Headers */, + D5D29815218E0DCD8E0ED3E3DE629C47 /* FIRFirestore.h in Headers */, + E4B08B502646BD5D33D17160F708EE0E /* FIRFirestoreErrors.h in Headers */, + 50188DB1D1C4EDBA49347AFA7EC6EBA6 /* FIRFirestoreSettings.h in Headers */, + 59893B40F93F4020BEA337B0C45C2328 /* FIRFirestoreSource.h in Headers */, + EECC46F348A7375824EC28EA01FE0B28 /* FIRGeoPoint.h in Headers */, + 0BA26908F874D329D65E530A52755219 /* FIRHeartbeatInfo.h in Headers */, + 1965F59C2C0ADB18EDB8A2B41A35764A /* FIRHeartbeatLogger.h in Headers */, + EE8D640A71CB46F79465635E5655A4B8 /* FIRLibrary.h in Headers */, + CB17D59515730543286F7C10A707553B /* FIRListenerRegistration.h in Headers */, + 0571570D80B0C5E52E98B9032AAD97C8 /* FIRLoadBundleTask.h in Headers */, + 49C02C77B93BE7A254808B4B81C52C7A /* FIRLogger.h in Headers */, + 206300542B9DAC8251EFDD5BE3C1DD55 /* FIROptionsInternal.h in Headers */, + 9D8510D6B507F615B5332135A94CC7EC /* FIRQuery.h in Headers */, + A8472A885D21B4C37F5B74314C5B2103 /* FIRQuerySnapshot.h in Headers */, + 3E934929D3597F79C6DECD6EB09B964F /* FIRSnapshotMetadata.h in Headers */, + 8B758DFA0CC1300DEB8E60F05BAADBFE /* FIRTimestamp.h in Headers */, + 04E1C8F77CDD363542359EE0A24BE65C /* FIRTransaction.h in Headers */, + 482867400B2BD8CDA5772E7C0C0EA118 /* FIRTransactionOptions.h in Headers */, + EA97486844D910BEF9CFD47B1E4D44B4 /* FIRWriteBatch.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AA748A4D5ECAAB1C57DD3CA63523EF01 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ABCB5E1CF6140395C9EAEBD227FC9C2F /* accesslog.upb.h in Headers */, - 58E210C40D563974930675991CD0B7CF /* accesslog.upbdefs.h in Headers */, - 7ED3084E57AD9412949A351DDAB4A897 /* activity.h in Headers */, - E716AC0FE55DC0DC77A32E173B855E63 /* address.upb.h in Headers */, - AB8A95198BBE80A17F711F7C8FB97652 /* address.upbdefs.h in Headers */, - FFE4E1F50F23A0C84E2947358D0789FB /* address_filtering.h in Headers */, - BC5AE12356BCB8D2B38BF2147C0516B9 /* ads.upb.h in Headers */, - 520BAAF5CA9865F335383839B4ABBA5F /* ads.upbdefs.h in Headers */, - 14795D096D8B84AF0BD95405B15799AB /* alarm.h in Headers */, - 7931DEDF914EAE0831EE9EAB6BEC3A1A /* alloc.h in Headers */, - 953E1C14F766D1AC81908FDCF6526267 /* alpn.h in Headers */, - 9B0C3BFEF47C2994F4FD889704B74B64 /* alts_counter.h in Headers */, - 8BB845E6D4C9F819E73B1095CC991D60 /* alts_credentials.h in Headers */, - 97EE817577C26832FF475E18B56DCD0A /* alts_crypter.h in Headers */, - FD52CDA7A910A96A4AE0EBC917DCA80A /* alts_frame_protector.h in Headers */, - 85C18DCFA59B22D96B910A2E168EAC96 /* alts_grpc_integrity_only_record_protocol.h in Headers */, - DCB9E193C1CE5528C21BA20F9F310A4C /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, - 50EAD4A9F33AD73A568C403D1D52FACF /* alts_grpc_record_protocol.h in Headers */, - D7B1722F597BA5AD1D1D1F52C22162EC /* alts_grpc_record_protocol_common.h in Headers */, - 8EAACD1CD41EDC872C2AF510D9FC65C1 /* alts_handshaker_client.h in Headers */, - 7F43049C3787606BCA4C55DAEC4C503D /* alts_iovec_record_protocol.h in Headers */, - 5350CAE9298533E5C2A78E6CAFA0F0DA /* alts_record_protocol_crypter_common.h in Headers */, - F6BE565AAAD07BDF97FBADF390F16A85 /* alts_security_connector.h in Headers */, - 8FC075DBA9171A9186D9CC9D140A78E3 /* alts_shared_resource.h in Headers */, - 72C0D6AE925FFDE9346A4B8468C68341 /* alts_tsi_handshaker.h in Headers */, - AF7A4AC928F0E9DA09CD46AA8604F2CF /* alts_tsi_handshaker_private.h in Headers */, - EC447FAC1EAC21A30BC50F4249A30EFF /* alts_tsi_utils.h in Headers */, - 0A7687AAA773B703F1826672683AC2C4 /* alts_zero_copy_grpc_protector.h in Headers */, - 62D0F844BBC1387995572C0D250E8E2E /* altscontext.upb.h in Headers */, - 080DB31CEF831B1AEE89E9880778C7C2 /* annotations.upb.h in Headers */, - 41EF8A49D41E9986C8490358AD4D1989 /* annotations.upbdefs.h in Headers */, - 18356AFC3136B9DFC0F1E6C19B965F14 /* any.upb.h in Headers */, - 160B9DA4B6182C696012900AB356E2C3 /* any.upbdefs.h in Headers */, - 06361C72D0D50CD2B46896B373A6AE9E /* api.h in Headers */, - A9103751F6CA65173D623CBB3153D6FF /* api_listener.upb.h in Headers */, - 6665769A1BCBB23DB38ABA345BFD86A8 /* api_listener.upbdefs.h in Headers */, - FABA5FB8C04C06A74798C0F47FFC91B6 /* api_trace.h in Headers */, - 46DB7B8B7E6959E53C2D65FBBFFB4690 /* arena.h in Headers */, - FFD4FAC41702D18AE9511686A3293ECA /* async_generic_service.h in Headers */, - 0A9CE16ABFEE00B00A77C18408C62CB4 /* async_generic_service.h in Headers */, - 60940918293C9ABF3C4A57EB0507EC5A /* async_stream.h in Headers */, - 5B382F3FD7319048BC5A28230C679A64 /* async_stream.h in Headers */, - BEFEAE1966FB7CB2430F61FDEB2A00BA /* async_unary_call.h in Headers */, - C87605933EF0B22B934C0C895E185EA0 /* async_unary_call.h in Headers */, - D5B8B4C7FF8F7843074D7EED29F2CEED /* atomic_utils.h in Headers */, - 0473E0A7F68D1C5C688D92460C0B7533 /* auth_context.h in Headers */, - 39773EF44D60AC2769DEBD11CF2A9D94 /* auth_context.h in Headers */, - CD9142914A2F5E3617FEB32EEAC56909 /* auth_filters.h in Headers */, - 277FB2C276E6075190F8BD5F93EA01CA /* auth_metadata_processor.h in Headers */, - 1591CB107A11D612487B7874F69F13EE /* authority.upb.h in Headers */, - 46A15BDF5A8BA5F2B3345A6B55511C31 /* authority.upbdefs.h in Headers */, - 5484D2EC7B21EBACC88121B88EE88A43 /* authorization_engine.h in Headers */, - EED940014CC08125C7E9DBFDDDE7ADCB /* authorization_policy_provider.h in Headers */, - EF17E35A73AECE5D84D0D0455EBA1FCC /* authorization_policy_provider.h in Headers */, - E43C8A030523402906F880AE7DCB2538 /* avl.h in Headers */, - 62390C3AD10391225D6D6233390E2D88 /* aws_external_account_credentials.h in Headers */, - D6C7B133F94F7D58E1F3F026E556ADA6 /* aws_request_signer.h in Headers */, - 7C1BC1B1EDA3AD69E9A06DBB7E551BFB /* b64.h in Headers */, - 55432C5443EE36C1DEDD02FDACECD7A8 /* backend_metric.h in Headers */, - 38F8BA89E11D76B578633864AAF3BC88 /* backoff.h in Headers */, - 222F40007F844A2B63A5F36200316F92 /* backoff.upb.h in Headers */, - E0D672EB19F350EB3A4A4FF3CFC220DA /* backoff.upbdefs.h in Headers */, - 6A993DEB03037E59F0CE9B12DAA51B1B /* backup_poller.h in Headers */, - 741B3B22AA758C50FF63DD4717E54CAE /* base.upb.h in Headers */, - 90B553AE84A4A0559908C43686367C07 /* base.upbdefs.h in Headers */, - 121F7CD775827AEAD7EDCAC4E234DF3D /* basic_seq.h in Headers */, - E32B7B7CF7B223A8376FCC1AE1728FFA /* bdp_estimator.h in Headers */, - 7D27D977CD959E54F35DFAC41368825A /* bin_decoder.h in Headers */, - 2F20C49D3E28A854CCE233C376E280F4 /* bin_encoder.h in Headers */, - 3C383AAB58F2E8F752B661DF026E5910 /* binder.h in Headers */, - 6025AB1C3CF41F2F53CAD62EA3F4908E /* binder_android.h in Headers */, - 53DB49A157DE0C06A5D57F3FB5073FB7 /* binder_auto_utils.h in Headers */, - 3CE854F00B0A1585BA25872CF962292C /* binder_connector.h in Headers */, - C224FA06D1229FF501691C1EE1CF2865 /* binder_constants.h in Headers */, - FC2576960548E6360AFA17966437A242 /* binder_credentials.h in Headers */, - BE788D21DAA3A292DCBD80401C2D3AF0 /* binder_security_policy.h in Headers */, - 391D8EFC19C41120EFFBD2C43F53E69F /* binder_server.h in Headers */, - DDBDA863ECE6314C98B603063C3281F6 /* binder_stream.h in Headers */, - 82C10CDB1F5D1E4B5DEB0B1812F2341B /* binder_transport.h in Headers */, - 47104062386AECBE7ADA8A2DCDB8DCE1 /* bitset.h in Headers */, - 35E25163B181B38196C1FC026330FA38 /* block_annotate.h in Headers */, - 4B4E3AE230E3BA57C8541CD2C87BFA73 /* bootstrap.upb.h in Headers */, - 3913A88037E926EC1FCE7CCD1FBFD0FF /* bootstrap.upbdefs.h in Headers */, - 7F3371D1E9512C12B72B807C9AC39D54 /* buffer_list.h in Headers */, - B6D23F770733ED98966F1B340729397A /* builtins.h in Headers */, - 2DBAFC2D9529E0713A4BB4DDA4CDF4BD /* byte_buffer.h in Headers */, - 99D3C05BBFE89244F2E77A1E0D01F057 /* byte_buffer.h in Headers */, - 0FF6DF373B7FCD24D60348AC5F943112 /* byte_stream.h in Headers */, - 2A5A3F6CA3A241E652BB0DA836D5B9CB /* call.h in Headers */, - 8659DE88B20A569B0A8DA109A4E84C2F /* call.h in Headers */, - 729ED6243EC6A6830D9BB6462DD0FCC5 /* call.h in Headers */, - FA7D30528206F9454801A8C1B42CFDF0 /* call_combiner.h in Headers */, - 64BBFC955C8E9071C91A98A600FF2C75 /* call_hook.h in Headers */, - E005403C8115098281F3AF3583F88EA9 /* call_op_set.h in Headers */, - BD58C5D932736F0A0605A279B12F0572 /* call_op_set_interface.h in Headers */, - A5C4A7EF66CD8D75FA00A60E7E1A0B32 /* call_test_only.h in Headers */, - 74540C0D2C414146D0044C35178AA5D9 /* call_tracer.h in Headers */, - E781F601EA7A1BD600B09BF294424ECB /* callback_common.h in Headers */, - 1C535B250464EFF2C4C7F88754BFEE71 /* cds.upb.h in Headers */, - 676D11386FDB3EFD55116606593A11E2 /* cds.upbdefs.h in Headers */, - F7A93DE4A1A5F3DCCC41E59C59EB971A /* cert.upb.h in Headers */, - A8EB87BD47C8150AB8F1BBB289324118 /* cert.upbdefs.h in Headers */, - 1808B194CFFAEC369BF30F7CBB5770CD /* certificate_provider_factory.h in Headers */, - AE110FD38138EB9273FC4140F3A6E0A6 /* certificate_provider_registry.h in Headers */, - C7577D07934A2AA886F769C2680C203D /* certificate_provider_store.h in Headers */, - B54CB0D5DD04BE7E5F27AF73FB12A86E /* cfstream_handle.h in Headers */, - 4E8179618B2EA19AF4C5D8105E4A7817 /* channel.h in Headers */, - FFE4A41AB1DCF11B977EDB29E7703462 /* channel.h in Headers */, - 97FA1E703F4234292AF6A9E879E32551 /* channel_args.h in Headers */, - 66F5D36BACAB8699981D887656493CB6 /* channel_args_endpoint_config.h in Headers */, - 6F8ED9DF6F8FF8E1BC930D7FE37C50C1 /* channel_args_preconditioning.h in Headers */, - 31E7EB06F03A66BFF1776C795C7481DD /* channel_argument_option.h in Headers */, - 69EAC9F9ED47845F9D6CB0AD24BCC96C /* channel_arguments.h in Headers */, - 07CE743282BFCF94B73B8D90FC7DC7E7 /* channel_create_impl.h in Headers */, - D58C249769562BC1D3D99FB34B180834 /* channel_filter.h in Headers */, - 6839E2BA2B243DA12A49AA0A495D15AB /* channel_init.h in Headers */, - 3E51B67FA7FA78F68AB7BFE41038EECD /* channel_interface.h in Headers */, - 925AE4457A731C95FC5BCD0456AE3AF8 /* channel_stack.h in Headers */, - FE097012FDAD11812F98BFE9258F9956 /* channel_stack_builder.h in Headers */, - 93D555FDC3BF5A91302EE3A06DB0BAC0 /* channel_stack_type.h in Headers */, - FAE26ED9946209EEB49EB10AAAF68D89 /* channel_trace.h in Headers */, - 5770F15F6A90D9A6FE40F852456FB3FE /* channelz.h in Headers */, - FB33F9577A116487F868CCB6FBEAE560 /* channelz_registry.h in Headers */, - CCCA86AE9CED8F58DC22E365DE2AF982 /* check_gcp_environment.h in Headers */, - 3B37AB009784A6416995255644ECD7EC /* checked.upb.h in Headers */, - 05E3AF10E3976CEDEC7984329784EB26 /* checked.upbdefs.h in Headers */, - CFB55D41EB89DA2B3F678B60AAB38A86 /* child_policy_handler.h in Headers */, - 80418E455BECA30D6C1ACCA40D321823 /* chttp2_connector.h in Headers */, - A47E4B7BEE551094FBC5F872B96AA61F /* chttp2_server.h in Headers */, - A2AF96760D615CB0A6E7056D31BC6C4B /* chttp2_transport.h in Headers */, - 253C732B309744031DF6B4D77428A8E7 /* chunked_vector.h in Headers */, - AD2D51873F6A8163867400D8B6CE62F8 /* circuit_breaker.upb.h in Headers */, - EBBE606129565FD9285C1161DB889233 /* circuit_breaker.upbdefs.h in Headers */, - 7F6C8CC03CFEF353D5FDF3DE9C5E6670 /* client_authority_filter.h in Headers */, - CF6C25ED501CFEE55A353F42A150D898 /* client_callback.h in Headers */, - 0283276A9D1AF44A1992A01BF8C4BF52 /* client_callback.h in Headers */, - 6D38B3BEB90C46D1855514377BCAC89C /* client_channel.h in Headers */, - 72B335A33ECF37E005F0A4CC1E2BF6B9 /* client_channel_channelz.h in Headers */, - 804E66A3F8C3522D03E4245C8B26B6C0 /* client_channel_factory.h in Headers */, - 57092DDAE4D24975B39AE5B61B9E94BA /* client_context.h in Headers */, - 49F53F98364D58C29ED83069C319EBBE /* client_context.h in Headers */, - FB05AB233EF346B3790555DA46688337 /* client_interceptor.h in Headers */, - FF82EAE134AD84427F919E60987F8E27 /* client_interceptor.h in Headers */, - 6D0899ABA05FBF1BBBC8AC0836184B39 /* client_load_reporting_filter.h in Headers */, - 9EC6F562C9430ED12270259E23AC4889 /* client_unary_call.h in Headers */, - D3EC160C954463C292EBE75211E20DF2 /* client_unary_call.h in Headers */, - AC279B96ED6A29635E76475B5F23ECC4 /* closure.h in Headers */, - 875E5F58BECDBF89F6ED253CFB218081 /* closure.h in Headers */, - 35473E1F608285419C89E3910DF666ED /* cluster.upb.h in Headers */, - B3DBB59DF6986E031B8D27501FEDDF58 /* cluster.upb.h in Headers */, - DE387AEF99B3D3ABA0958476BCC4DC90 /* cluster.upbdefs.h in Headers */, - 95ADA7E0ECB5E83D36904E014127D16D /* cluster.upbdefs.h in Headers */, - C47A0A8FFB81A6B41E1CA7CC9D0309EB /* collection_entry.upb.h in Headers */, - 16E8308B9694B0935E9112E44A920FBD /* collection_entry.upbdefs.h in Headers */, - C72A1B02DD018E5AEE01F0DD9397F38C /* combiner.h in Headers */, - F4DBCEE18A12CD06DC2E7EB7E5D7AA2E /* common.upb.h in Headers */, - 44B5937CFE8A4E2A179230BFF71DECA4 /* common.upbdefs.h in Headers */, - 88C48AC93C88159B245582BED8CCD955 /* completion_queue.h in Headers */, - 9B5020C29D152991937E88F37480F36E /* completion_queue.h in Headers */, - E84D99361B7588EE42176E6C0FA42F46 /* completion_queue.h in Headers */, - BCEC348747528848BCF56A73E2BECDA8 /* completion_queue_factory.h in Headers */, - 0D39F21BA9DE428AF4965CEB0F70A800 /* completion_queue_tag.h in Headers */, - 651AFA2475387E8CBA7CF6583FCEFBA3 /* composite_credentials.h in Headers */, - 9F403B078E8638BC19EBA579D0340D9C /* compression_internal.h in Headers */, - 542908C154D5C33BE2713DFA081039CE /* config.h in Headers */, - 094423BBB9565580F3D35D2D0B5B61EA /* config.h in Headers */, - E90C1C41FA8ADCB47980B292EB56D324 /* config_dump.upb.h in Headers */, - 900A9B3FCE8F0059A750B3D8C203AB43 /* config_dump.upbdefs.h in Headers */, - 90EE9C91FB00F79E2BE859DE6D123288 /* config_selector.h in Headers */, - D22E9AED54DFD9FD8D2BEAC189BF79ED /* config_source.upb.h in Headers */, - 6BD85583B558FEC72448BEF1E2B65D46 /* config_source.upbdefs.h in Headers */, - 4B0FAF6A8FFED74A31609D7BB04594A8 /* connected_channel.h in Headers */, - DD6430E54A2B4A49795E77DE08FAAC53 /* connection_id_generator.h in Headers */, - 7AD8804508BE5B88704ABDB6CFB5DED1 /* connectivity_state.h in Headers */, - 6AE82FD976705ECF95B5304E6FC4341F /* connector.h in Headers */, - 52DB4D49FC668600765E0039691B198D /* construct_destruct.h in Headers */, - 992B83428FCFA8BDA996FE03CD89FF68 /* context.h in Headers */, - 77AFE352C25F75ECB23E959390AB20DA /* context.h in Headers */, - A12B43304EE4E7B2DECDEED7691DBE8D /* context_list.h in Headers */, - F9E3A871BEA33C5AE178156293F2472A /* context_params.upb.h in Headers */, - 07CE9F7BA12EBC5321630EF136F6DC77 /* context_params.upbdefs.h in Headers */, - 2803DC6FE128E3AEAF7AC84B7092EA91 /* core_codegen.h in Headers */, - 0D62666C8FF047437A9A865E529AA7F1 /* core_codegen_interface.h in Headers */, - 9CC725A30950A1B123B8DA6DD5D783F8 /* core_configuration.h in Headers */, - B64BA3AE7C178691900EFA6B662265B2 /* cpp_impl_of.h in Headers */, - 47B8BEF36EC512AF7163AEE831049ADC /* create_auth_context.h in Headers */, - 6347FE4126A514CEACD87EFB7FE7CDB6 /* create_channel.h in Headers */, - 611FE060F12062159FD1390F48B7FAAC /* create_channel_binder.h in Headers */, - 12B8B0825634AD11563B4819D23401B6 /* create_channel_internal.h in Headers */, - CEDAC11003AD8026E297EBB78E610766 /* create_channel_posix.h in Headers */, - B72122C81FC2CE7897532BD557700D1F /* credentials.h in Headers */, - 65120B8272C73D94217189924799655B /* credentials.h in Headers */, - D748006B1B4FFFF22C03B6CA38A9F36F /* csds.upb.h in Headers */, - E61EB98D961AD6133ADDFE2F1114E95E /* csds.upbdefs.h in Headers */, - 6730A6C49A7D52E339F06853A8BD96F2 /* custom_tag.upb.h in Headers */, - 74D81EDFFF9D3FB16D67BA8320463CB7 /* custom_tag.upbdefs.h in Headers */, - 386DEBEA7467EB0D1AECE11E94EC833F /* deadline_filter.h in Headers */, - 7D715A117F559A653BE19C7CCA174F41 /* debug_location.h in Headers */, - E3FF30101CA98ABB106333454C34865E /* decode.h in Headers */, - 757B52325E7E217BC63883206CAC8E0D /* decode_fast.h in Headers */, - C8A51C12480E4485D5A9B117DFE9CA90 /* decode_internal.h in Headers */, - 67C15C31484756B3E18B254CDBAEC6D9 /* def.h in Headers */, - C045AF761A9073522696BE8541995003 /* def.hpp in Headers */, - 3974947B8E72BCCDABFE3E88B7676B46 /* default_health_check_service.h in Headers */, - 1106C508633054EF940B397F805318A2 /* delegating_channel.h in Headers */, - 8912EBEAC0787EAD6EB8D2AD02CB22C7 /* deprecation.upb.h in Headers */, - 2D7E1F68E4CB1DE89B0F3946867F6F13 /* deprecation.upbdefs.h in Headers */, - 090D1641FEA0F63C0E90426D7B96B08A /* descriptor.upb.h in Headers */, - 84269793ABDCB0F96FEB7DB5465D36CF /* descriptor.upbdefs.h in Headers */, - 1537C0F27677D230E37137285AD4BA7A /* discovery.upb.h in Headers */, - C59C37B0627D85B8BD8AF282E060FDDD /* discovery.upbdefs.h in Headers */, - 2B020271127B59769482F37FB6666D54 /* dns_resolver_selection.h in Headers */, - 39E069CF7F6F202DFFB4AC63C31C5A5A /* dual_ref_counted.h in Headers */, - BE556A39AB570ECC0BE161BFC787A59A /* duration.upb.h in Headers */, - 3094242B6B9633FB93A684E34D0A7CF6 /* duration.upbdefs.h in Headers */, - 91939EE6D3651DBC5319BE7B9BD4C7B5 /* dynamic_annotations.h in Headers */, - B1AE6B06B07FA48B2534BDC875D2EF75 /* dynamic_filters.h in Headers */, - 3C5BFE0C00A1CC0AC7F441A74FEDFA65 /* dynamic_thread_pool.h in Headers */, - 894471FE7FCDFD92022EDFDEC16D91F4 /* eds.upb.h in Headers */, - 37614F999DE6FD0FE6BBAB44D10A3494 /* eds.upbdefs.h in Headers */, - BA98F6A6467E08159F10FBAEE926703E /* empty.upb.h in Headers */, - 4A7F99D9707F0446108FA6667F008726 /* empty.upbdefs.h in Headers */, - 43C8C05A36002F3F4EBE557998467E4C /* encode.h in Headers */, - 08A57877BC21C6D95694074DBB19BE0C /* endpoint.h in Headers */, - 36FF725FD7C6951640D2292038E5BBD4 /* endpoint.h in Headers */, - 66A9C75647A229465FB83DD6055BF917 /* endpoint.upb.h in Headers */, - 5FCF703FA5FC10B015407BB6C76DB90E /* endpoint.upbdefs.h in Headers */, - 38701836214FC9D0E3CF07EEBECB7213 /* endpoint_binder_pool.h in Headers */, - 111E9718B9A329FF4BDDF79F6479175B /* endpoint_cfstream.h in Headers */, - EF66DB930AE5D98061BFCDF09E3D50AB /* endpoint_components.upb.h in Headers */, - 567B8F3B77BA4F2001310234EB15456E /* endpoint_components.upbdefs.h in Headers */, - 4C92A65EA3B61D7C123DDA2B92BC5A85 /* endpoint_pair.h in Headers */, - 284AE57A56E60FB1D5F3B2E8B97749A0 /* env.h in Headers */, - DC4AF4051A96FC09B1A8F5E08852C3D3 /* error.h in Headers */, - 4C523E3088C97D622FFFA2BCA9A352EE /* error_cfstream.h in Headers */, - 1F45F4B88532AE3B4DF0CF23AE5EA4F4 /* error_internal.h in Headers */, - AD6E1F3BE0E04D32CB865845585D58B7 /* error_utils.h in Headers */, - 3C4C0F2155EFF7C04C1BB5F29CDFEEA6 /* ev_apple.h in Headers */, - 037D152EF09C040007AEF62D84155E90 /* ev_epoll1_linux.h in Headers */, - 2AE000A8628597305B41E8C1492E4E3F /* ev_epollex_linux.h in Headers */, - 86122CA5645A2100F3E64CDC393F10C0 /* ev_poll_posix.h in Headers */, - C1B4C08EDD7960C08B809048959F55F0 /* ev_posix.h in Headers */, - A6B5AE02889F831430DBD848BB7BAE15 /* eval.upb.h in Headers */, - 9C23C1A3691C83246853C966F9744274 /* eval.upbdefs.h in Headers */, - 15A0C697CB00FF3F62ACA3E67867C449 /* evaluate_args.h in Headers */, - F178CC25EF4D0EAC196C185436EA8168 /* event_engine_factory.h in Headers */, - 92A1E516C5198E5454EB74DF6533697C /* event_service_config.upb.h in Headers */, - 0D38BCF7F8E9591857FA569AA669A81C /* event_service_config.upbdefs.h in Headers */, - C74947D851E03E5C712E2B0A83BC28FF /* event_string.h in Headers */, - 9A8A7BF5A4A61C8598B282D5C73C7190 /* examine_stack.h in Headers */, - BCF006284AC5430A5B8E65EC36BBCC52 /* exec_ctx.h in Headers */, - F27F3FB66C1B3B4FB761627C9C60E712 /* exec_ctx_wakeup_scheduler.h in Headers */, - 077F52437B76FBF68EE68D2ED6FD502A /* executor.h in Headers */, - A264B07D9F3B4C1C344EB64DCEF102BC /* explain.upb.h in Headers */, - FDD247E7503C861B6DB7FDF3300D15EE /* explain.upbdefs.h in Headers */, - C649D5D56B24EDDB1AC6ACA6FE2A5C0A /* extension.upb.h in Headers */, - D483EE3D1766CC2AE8B03CD7804DB5E6 /* extension.upbdefs.h in Headers */, - 675EDC9D151F9C8440A03F3A1F307B78 /* external_account_credentials.h in Headers */, - 99C6192BAA3C9BAC8CBCED82EA26E91F /* external_connection_acceptor_impl.h in Headers */, - 59896AC0B0E2E24EDBF6B78FF9CACE1A /* fake_credentials.h in Headers */, - A2915172FFDE363621FC4C1CDB98B62F /* fake_resolver.h in Headers */, - 833C20809B2D0870A9B55253B50F1750 /* fake_security_connector.h in Headers */, - C9161E7B29D6FFBDB3AABA813E93CDDB /* fake_transport_security.h in Headers */, - 4D7B5E031B5069A2A55E89C7052F5517 /* fault.upb.h in Headers */, - A916D32C80558EFA57A7917EE298AA18 /* fault.upb.h in Headers */, - AECF5BE150DD16DCA29EB7EB977ACDB8 /* fault.upbdefs.h in Headers */, - 0040B411757701E31361795C677DFCF0 /* fault.upbdefs.h in Headers */, - 872E33E26CE327783031C295F15A0E35 /* fault_injection_filter.h in Headers */, - 65073952D8AE40EB0DDCD2E116901728 /* file_external_account_credentials.h in Headers */, - AFC058C517C8E6345DFEEF0F5C695823 /* file_watcher_certificate_provider_factory.h in Headers */, - F59D4EB166F56CFBEBFBE46F4451D3F5 /* filter.upb.h in Headers */, - 4F569F55168365284EEF95124EF6FC01 /* filter.upbdefs.h in Headers */, - A5BB2E5522971BB22F4E9A5A653329D0 /* flow_control.h in Headers */, - C111B86EC1ED31D574ABEDDB9E0DD1E1 /* fork.h in Headers */, - B752D88B8EF5BE57C63F044594D4CFBF /* format_request.h in Headers */, - D997ED120EB7BD6AB46F584F82187701 /* frame.h in Headers */, - A776E1D4C92DA3525E5C3122FBF02004 /* frame_data.h in Headers */, - CE13D93482926758C27CAB1B2A06564F /* frame_goaway.h in Headers */, - C6279D9235191C4E9B7F7D8936CCFBAE /* frame_handler.h in Headers */, - E632755C97A3FC43ABD55BB0FBBFA7D7 /* frame_ping.h in Headers */, - 2F0DA689017A03A3ACDDE15F0531A3A3 /* frame_rst_stream.h in Headers */, - 1E92996B87D554CB5B8CCB67C05ED2E9 /* frame_settings.h in Headers */, - 2E022702FB29DD17D7417210FEDD4DD6 /* frame_window_update.h in Headers */, - BE71196953BC0EA848C06BAAF68888B3 /* generic_stub.h in Headers */, - 5A1B85A6625018ADFB620105F19E77F1 /* gethostname.h in Headers */, - 147B4E6C517B0D83C357651CD01C5376 /* global_config.h in Headers */, - 6B88BFFE9B2868DC60EE28D1CC5FD2D3 /* global_config_custom.h in Headers */, - 28D79D67D3D23F627DAB7F8EE21DE631 /* global_config_env.h in Headers */, - B99F53DEF588BF8B68C26A8E16210929 /* global_config_generic.h in Headers */, - E75D646E82C6DE7C12717164CF61FA07 /* global_subchannel_pool.h in Headers */, - 432634059A45E87C271E5AF5DF803132 /* google_default_credentials.h in Headers */, - DC62D7495C0054F58EEAC0F3F36218A7 /* gRPC-C++-umbrella.h in Headers */, - 292D9343A68E4D75418413FB75A5D611 /* grpc_alts_credentials_options.h in Headers */, - DDAC34E129A8B438E2CFF10BD0319763 /* grpc_ares_ev_driver.h in Headers */, - F9C8C68C6D1434789F064E98C71F9C78 /* grpc_ares_wrapper.h in Headers */, - 2FDBA700A7B63B477D8127495BAB2013 /* grpc_authorization_engine.h in Headers */, - 7BD9496C0A7006EBCA007107EB5AC2C5 /* grpc_if_nametoindex.h in Headers */, - 2C59009AAC6C303E178F2C28D50E3B6F /* grpc_library.h in Headers */, - 3A3E9ABECF8DE983BE7AFC03A4F428A2 /* grpc_library.h in Headers */, - 3835007BE9A3BCD1CA50AD469C6AB3EB /* grpc_service.upb.h in Headers */, - 71C917EE9E9937744D00CA87558899A4 /* grpc_service.upbdefs.h in Headers */, - 0C380E48487D9A925824BCD3564BBBAC /* grpc_tls_certificate_distributor.h in Headers */, - 3D747EBFC79B390B80B386CFF0C77556 /* grpc_tls_certificate_provider.h in Headers */, - 201FB32B419CFA4A6293A507E423EE52 /* grpc_tls_certificate_verifier.h in Headers */, - 6BF411EB6307ADE76B38FBFF616E3037 /* grpc_tls_credentials_options.h in Headers */, - 12C9C0ABABADE5D2910468AC68022461 /* grpclb.h in Headers */, - 6E91060A004C9204D0EB706477E69A72 /* grpclb_balancer_addresses.h in Headers */, - F1095F96C5FF24CA7D7ED42B94A4F80A /* grpclb_channel.h in Headers */, - F168F3625D9636A0F715CD8E22DC4849 /* grpclb_client_stats.h in Headers */, - 05E1216F3AD2929A37541FFB2C225E71 /* grpcpp.h in Headers */, - 37104A65B68231FB13F382CB89E4222B /* gsec.h in Headers */, - 32637B63F018459780FF95E08DF31CF2 /* handshaker.h in Headers */, - DA241C32764305D4C95C97574A82DAAB /* handshaker.upb.h in Headers */, - CB35B70BF4034C769AFC771ADB9DF558 /* handshaker_factory.h in Headers */, - 0EB56A821E38826F7139A67C6C7EC652 /* handshaker_registry.h in Headers */, - 08C113A13D319FCA7ADF3770FA1E7CDB /* health.upb.h in Headers */, - 4BA25539E6E21F7A6BD1D21143AADCEE /* health_check.upb.h in Headers */, - 1AF0EA4785486B18F50FA67833636A40 /* health_check.upbdefs.h in Headers */, - 1D093475B6C96245042BB39E0765980D /* health_check_client.h in Headers */, - 47F9168594135C8764ABB29ACF1C856B /* health_check_service_interface.h in Headers */, - A6CAC099CE524F8207EC3C8669A6FF5D /* health_check_service_server_builder_option.h in Headers */, - 11BD658941E567CB6C4245CAD58D7651 /* host_port.h in Headers */, - 6B43F93F5C79E7DE905D586F2F225FB9 /* hpack_constants.h in Headers */, - BEBA0E5B1F86229B49F1845C0F4A9E56 /* hpack_encoder.h in Headers */, - BCD289E8724BD51FEF6C4265F6DC6D53 /* hpack_encoder_table.h in Headers */, - F9F97FED871CC0142C6D749F7E240332 /* hpack_parser.h in Headers */, - CBC51CABD15E176E29637BCB4C191F2E /* hpack_parser_table.h in Headers */, - 9C00B68D98B3C5CFFEC159005573500C /* http.upb.h in Headers */, - 61427ECC97FB27F50D65817D4C8EEB63 /* http.upb.h in Headers */, - AC09227D93C9A25799C899F30D3C4051 /* http.upbdefs.h in Headers */, - D43442C51BF13FF4EE2A1BAF2CF45C12 /* http.upbdefs.h in Headers */, - 3763FE6F9098D58D8135C10A885DA69C /* http2_errors.h in Headers */, - 13E1DCDFA037C164419C4C082BFAD50A /* http2_settings.h in Headers */, - A5D2FABC3C36B6D75AB767A6D45DAA2F /* http_client_filter.h in Headers */, - CA7F5510DE17F8C5600CF62FA02492A8 /* http_connect_handshaker.h in Headers */, - 6F2FCBD6AADE7A07E308BA0F08B1F459 /* http_connection_manager.upb.h in Headers */, - 811896FF4A50C195B3ED566C2C1C8A77 /* http_connection_manager.upbdefs.h in Headers */, - 9E1AD752F6A44A77DF30A5384488A319 /* http_proxy.h in Headers */, - 474EA13520B6E37D64BD9F5431D75025 /* http_server_filter.h in Headers */, - 7BC9C3DC9C214CEFA8634C9780FFC458 /* http_tracer.upb.h in Headers */, - 192433FC2E8E706EDFDD7DA1DFF8526C /* http_tracer.upbdefs.h in Headers */, - F90DB27667AEEDCADC875ED059B0FB73 /* http_uri.upb.h in Headers */, - 586A93458E9A3425016B9010E4C0336F /* http_uri.upbdefs.h in Headers */, - AE7BC69921F53F969576B147E3B2F88A /* httpcli.h in Headers */, - 614CD39B05AB4FDBA8BF89705181B7CA /* huffsyms.h in Headers */, - CC3C8CBC3CB64AFFFB04E14576C6BBD2 /* iam_credentials.h in Headers */, - 5A9E2D8945A67C89620DC33A9F8AE0FC /* idle_filter_state.h in Headers */, - 6F9493476FF6952F54B50979C0111555 /* init.h in Headers */, - BF64185CF6003AA2CFA2910A6B00B9FC /* inproc_transport.h in Headers */, - EFE1D439B62F76B7205431EC9658CFB7 /* insecure_security_connector.h in Headers */, - 354E2375B02439D2E01D837DC6CA31BE /* intercepted_channel.h in Headers */, - 5279102C7402FC703C4F4D52923436B5 /* interceptor.h in Headers */, - 6039D5B453C81A3B16C0B34E8FBB21D4 /* interceptor.h in Headers */, - 20C0EE4D7267F3426BE9B2BB1FE1AE1C /* interceptor_common.h in Headers */, - 1596AAD6C0186E459937816F1F81F356 /* internal.h in Headers */, - 386189F52C9DCA84D6EFC42F47B93FE2 /* internal_errqueue.h in Headers */, - 61E7EC262D91469C2D1482845754737A /* iocp_windows.h in Headers */, - 0D5BA495F7CD203CF562405CB48D0402 /* iomgr.h in Headers */, - C9C63C5667278B7F155EEB912EFA96BA /* iomgr_custom.h in Headers */, - C7C23AA612567CE23ABC9CEB10E60174 /* iomgr_internal.h in Headers */, - 75A87835A91A796440F3FDAFBCF23587 /* is_epollexclusive_available.h in Headers */, - 70DAB3CA16CEF4D9E1F809D298C936A5 /* jni_utils.h in Headers */, - F971F00294CDC717EA4FB4B0E1A7A249 /* json.h in Headers */, - D2E650793978E6642E84D741BCEE6AEF /* json_token.h in Headers */, - 5AC9664C206C17D40E247BE4044FC7BB /* json_util.h in Headers */, - 7EC6F8C8D3FDAAFC562C6EB94A2BB82D /* json_util.h in Headers */, - 04E035207FA956FAA0CE50925104437F /* jwt_credentials.h in Headers */, - 67C4FB4DDCAD3A61FAAAFC309E0B7E2D /* jwt_verifier.h in Headers */, - 924DCD7437C30BB6BD9563FCAFB2A3FF /* lame_client.h in Headers */, - FA8606FC04A2AFD458C84AEEED52C973 /* lb_policy.h in Headers */, - 52DB759595E52436954D3723A2087507 /* lb_policy_factory.h in Headers */, - 6D58004FBF61D1134912D6AE53E19304 /* lb_policy_registry.h in Headers */, - 5BA94000813ADCE2ADB6F516ED818722 /* lds.upb.h in Headers */, - 701BF7744BBE29ACE8A4D4EA78593C69 /* lds.upbdefs.h in Headers */, - E28C2B9D4459FA8E4AB97ADDE5E35301 /* listener.upb.h in Headers */, - A43B36781038B2A7A302594B3504C555 /* listener.upbdefs.h in Headers */, - 79FB4818EE2A72F8AA8BD44A55225E17 /* listener_components.upb.h in Headers */, - 4D42EAA76EA695DBD88EDD56A0D1F4A9 /* listener_components.upbdefs.h in Headers */, - 181BF56643459CD95F18B7EE34017DBA /* load_balancer.upb.h in Headers */, - 3F86F9C6D704DE23646999AD94F25EDA /* load_balancer_api.h in Headers */, - 9ECB976509F0FBE321B595B9A0B8F49E /* load_file.h in Headers */, - 559073E95E26A9CC8B3E9D9E6FA238A8 /* load_report.upb.h in Headers */, - 9420CB363F3F1727500058CF88B4FBF2 /* load_report.upbdefs.h in Headers */, - 9D7B99F2F661D6EDA0E15D6606D8F7B5 /* load_system_roots.h in Headers */, - 10BC64AF8608AB013DE0FF97516C0108 /* load_system_roots_linux.h in Headers */, - 22B693FC722BAA25E7FD77FE37EC6FE7 /* local_credentials.h in Headers */, - 65D7F20AF0ABE388A4283192E373E805 /* local_security_connector.h in Headers */, - 7FE058C5306717E31E764EC6587EF1BA /* local_subchannel_pool.h in Headers */, - E82D8B60137D4003CAA2EF634AAC6A6E /* local_transport_security.h in Headers */, - BD9025D2BD96A32FD6DDACA363C4DF87 /* lockfree_event.h in Headers */, - 622C56A50BBA8FBA654B73652E8D3430 /* loop.h in Headers */, - A564F082323C07078057BDC1FC1ABD5A /* lrs.upb.h in Headers */, - A6B74A33719995D1B23501DBDDF1DD81 /* lrs.upbdefs.h in Headers */, - 5B9940A8F5116036D24FC235981B253C /* manual_constructor.h in Headers */, - FFEBF6F0FC800E0C250C87C46EEB0F8E /* map.h in Headers */, - 2E602E1ECBB4B6F77EAD8BBD6C022D73 /* matchers.h in Headers */, - 3EBBDC87F6BBF223EC6DC9BD6EDB1E7E /* matchers.h in Headers */, - 88BDCA98D1FA9373EDCAD7DD87BDE993 /* max_age_filter.h in Headers */, - 0F89BCE53F2FE370800735A86356463F /* memory.h in Headers */, - FB83E072A9FD28EAF8E00DB0D52F0499 /* memory_quota.h in Headers */, - 6C2B0D852AAF8641F254CEDD05A80970 /* message_allocator.h in Headers */, - AFE4FFD52F1FDFD0A881FA5252F7ABEC /* message_allocator.h in Headers */, - DEAE066D2523580FD957FBB0C5380D9F /* message_compress.h in Headers */, - A0445F8A442C6998D2F562752E3EC17C /* message_compress_filter.h in Headers */, - 9E8639AF84AEAC828563CBA4F10C79D4 /* message_decompress_filter.h in Headers */, - B06DE43D2075BA71B10DF2C3ED310390 /* message_size_filter.h in Headers */, - 2C722C6783F49D0383D4760E63DC4C89 /* metadata.upb.h in Headers */, - 5CB5ECC04C4D9F919AAADB341A27A5B6 /* metadata.upb.h in Headers */, - BB8825B0B45AA1215F9029CBDF952214 /* metadata.upbdefs.h in Headers */, - DC3352DE0DBF6367B8E38026FC8F54FF /* metadata.upbdefs.h in Headers */, - 4DFCB3D066C89883837DB9B342B0E6E8 /* metadata_batch.h in Headers */, - 0AA1DE119E6D5BC75C5BA9FC323A53BE /* metadata_map.h in Headers */, - C216774670D75AF5B42CDB473E4CDF01 /* method_handler.h in Headers */, - 9D2FF1E7047752B7B21394756E409A2C /* method_handler.h in Headers */, - 0827AF631BEEB0BA05E84FBD35712BD2 /* method_handler_impl.h in Headers */, - F4F4D0BF4DF9D73FF2801D885C88460A /* method_handler_impl.h in Headers */, - 8494A8B6187CA20A3B5356FCDA8885C2 /* migrate.upb.h in Headers */, - EDF84A2A19BF1AF43D6B9ACCDD2F5A26 /* migrate.upbdefs.h in Headers */, - 78ABBA09BB31413CE5628991E2914EA1 /* mpmcqueue.h in Headers */, - 157F815D5C1F76A9996E1FFC75B813CE /* mpscq.h in Headers */, - F2190FBF5485E0B918D795CD0A5532BE /* msg.h in Headers */, - AB06F61C6755833A1E8CC519CABB7776 /* msg_internal.h in Headers */, - 567E3EBB0DB7E8721AFAACD5C80520AE /* murmur_hash.h in Headers */, - EC17049A510786FD13EF7648D9054231 /* nameser.h in Headers */, - 552E8387E50B1815746E33B001A8285B /* ndk_binder.h in Headers */, - 41E24F6106F8CA36068FD0CD14A32239 /* node.upb.h in Headers */, - 534FD87C80E0D727978DB8B95CAA159E /* node.upbdefs.h in Headers */, - 9046B4EFB9701CF5DBB534434AD7EA19 /* number.upb.h in Headers */, - 58B9AA0C17DC4CD1209C63E46003FCBD /* number.upbdefs.h in Headers */, - 479535EF9A2BD7FF1163D8FB6390FECD /* oauth2_credentials.h in Headers */, - DE546568325970581BDB1550F60D74C4 /* orca_load_report.upb.h in Headers */, - FB883DB795F2DAF6898F5AAEE3F9F7BB /* orphanable.h in Headers */, - 84F8A812D3DBB48897C46089E8134218 /* outlier_detection.upb.h in Headers */, - 1C00F9B22CDEF0264C0F18C377CF48E8 /* outlier_detection.upbdefs.h in Headers */, - 550B9F4DE0DE736CCF61387C93AD2223 /* overload.upb.h in Headers */, - FBA3F23499B6520E961C09C44D6A28AE /* overload.upbdefs.h in Headers */, - 656330FFA7E5497EA9503F85F110A259 /* parse_address.h in Headers */, - 2483C39A4BFF7BCF7B6CA112367135CE /* parsed_metadata.h in Headers */, - E57301BC14A327CDA8A56889E47F3E57 /* parser.h in Headers */, - 4AE83955776FDC7BC8CE70FB031850AE /* path.upb.h in Headers */, - 1A0629FEE82914D4CEC3CDC7E468A19E /* path.upbdefs.h in Headers */, - DD528BAB00F429790C50CC73DA934320 /* path_transformation.upb.h in Headers */, - 61A545D6FD27A4744B2D77F26D7AE4B3 /* path_transformation.upbdefs.h in Headers */, - 9DAD08EF75E5549FEFB162DFF59C8422 /* percent.upb.h in Headers */, - 8FE843D9CD4BC6DB45605469D8E9E8DD /* percent.upbdefs.h in Headers */, - 0812C0CD94AD02650C7FD35DEAE15CAC /* percent_encoding.h in Headers */, - 9AE3EEFDB83111A53FC678235F8CF841 /* pid_controller.h in Headers */, - DA59E142922E79657BE28B674DD7DA13 /* plugin_credentials.h in Headers */, - 2D1F3D0D0702C7A1200AFAB4D5F6AAE4 /* poll.h in Headers */, - 163EC9684ACF5982AF424EDC0977CD00 /* polling_entity.h in Headers */, - 2CED2572C7A4589141EED2F10AAC94F6 /* pollset.h in Headers */, - 7156C3DB2EC540B5B8957BC3B650EFB6 /* pollset.h in Headers */, - 7E8048CBEE8316D3383DC0DE59E729B5 /* pollset_custom.h in Headers */, - A9A4F5E3FB536E5B2177A8B191D2ABCD /* pollset_set.h in Headers */, - 730DD8DA9C131C47B7E8855EDED3E550 /* pollset_set_custom.h in Headers */, - 537A86D56B6157B48351045A3D3CD850 /* pollset_set_windows.h in Headers */, - E2F72469B4C899B8CC26E8A54B6A94A2 /* pollset_windows.h in Headers */, - 2CE07C776ECBC56ADA21F5CD51539B11 /* port.h in Headers */, - 47371260BDC216C39D962DF474DA7029 /* port_def.inc in Headers */, - 6617492CA36517A0FBE76422066F4672 /* port_undef.inc in Headers */, - BF5F82F73D72C6A0AF37DC26149FAE04 /* promise.h in Headers */, - 82A3D9A0E2530869A517FA6110AB718D /* promise_factory.h in Headers */, - D0E2EC78B926D1462F4174A994582EA2 /* promise_like.h in Headers */, - DCE3F0FD731EB4F9430C32CFD2AD2263 /* proto_buffer_reader.h in Headers */, - 85E0CA83B46FF6D02CDA6601C29448D6 /* proto_buffer_writer.h in Headers */, - BD056E63CB4CAA6ECC333FBA20120DAB /* protocol.upb.h in Headers */, - 17C6F75B0E04636C73660EA604762719 /* protocol.upbdefs.h in Headers */, - 0C05D5D9B5BD308C6EDB4D8D99240B30 /* proxy_mapper.h in Headers */, - 6BED144FB0D32228CF628FDF70D1D017 /* proxy_mapper_registry.h in Headers */, - BC49B132C39E8EBC6499A99E9102CF67 /* proxy_protocol.upb.h in Headers */, - 6A7CC8FDBD5C2ECFEFB4592E16374E5F /* proxy_protocol.upbdefs.h in Headers */, - 077A49F49687D815EDDA704388F530B0 /* python_util.h in Headers */, - 03CC489B61A10EB540AA560F061472AE /* quic_config.upb.h in Headers */, - 821182CB7B36D7A3B8934C75BDB9256C /* quic_config.upbdefs.h in Headers */, - A3ADD7789F371BDD8EA5A0A6D71D298A /* race.h in Headers */, - F066C90D3EFD7953BF85530C07687BD2 /* range.upb.h in Headers */, - F27625A0D6FE5E7AA2D5BD6787A68218 /* range.upbdefs.h in Headers */, - 593A8BA6B106539DAD0314079E684B6E /* rbac.upb.h in Headers */, - B8490A274ED15B48FA482265EA5098A9 /* rbac.upb.h in Headers */, - C8B1E5665C0DA0E081410A91C80CBD69 /* rbac.upbdefs.h in Headers */, - D68D2472A192928F0220E82F74470D80 /* rbac.upbdefs.h in Headers */, - 805EE67E741E89FC643FE942CC8AF3EA /* rbac_filter.h in Headers */, - 1CFC64EE216CD09C85A441734994F125 /* rbac_policy.h in Headers */, - 1F1AA2BCB53F515D3F13141717FDAA67 /* rbac_service_config_parser.h in Headers */, - EA84ECAB7629C832720ED2CBD3C51F7A /* rds.upb.h in Headers */, - 3469F3126EA5EAC0B85EE10E1724E263 /* rds.upbdefs.h in Headers */, - C0FA5CEBB4B421CDBB8EFBA4F8A4A3C6 /* ref_counted.h in Headers */, - C5033EAA43CC89130E617E3A97670997 /* ref_counted_ptr.h in Headers */, - 916C1BEAF6C4F42BA1F34709F517B2F5 /* reflection.h in Headers */, - E71780FEE93E2E214965B53EAC63AFA0 /* reflection.hpp in Headers */, - 4B73DEC84939FECD34CA48ED7920409A /* regex.upb.h in Headers */, - 757B527D20FCE22326AE7E381752B30C /* regex.upbdefs.h in Headers */, - 0BE9DE618EA28903BA7F4C138AAA8DA0 /* resolve_address.h in Headers */, - 76662F8D6131DEB5A1D728FAECB504C0 /* resolve_address_custom.h in Headers */, - 69F0A88143074917AFCDD215075B1B08 /* resolve_address_impl.h in Headers */, - 0E2B590B147A9DC2AF470CAE0D6A7F70 /* resolve_address_posix.h in Headers */, - 7D8902F3F2D6EC953439125D634F7224 /* resolve_address_windows.h in Headers */, - 0235163CFE88FDCEA01F0456C0E810CE /* resolved_address.h in Headers */, - 4FA0D5E5CAA64E00DAC47583AF91940A /* resolved_address_internal.h in Headers */, - A8F6CB3789A6EDE4A74E6C3193F240B0 /* resolver.h in Headers */, - 63EC081AB5E4B8AA03F7AB73EDBA99E2 /* resolver.h in Headers */, - 00DDEA9BA68C6773BBD46E7B5D6BE9CB /* resolver.upb.h in Headers */, - 7FFEF98A672BF9DD16F7571D9B052D93 /* resolver.upbdefs.h in Headers */, - 7B1662A2A3D28FABE367C14EAC2193A5 /* resolver_factory.h in Headers */, - 53D904ED43C9D0D948617580B6111378 /* resolver_registry.h in Headers */, - 2BC947FF5D375FF24CD0117548D73356 /* resolver_result_parsing.h in Headers */, - 510BD8C1D399714AD82F44383C3B5CBF /* resource.upb.h in Headers */, - 630E3BF21E08D8F6694E974ABA964C38 /* resource.upb.h in Headers */, - A6882D3C5A167EB4F7F0AB14A5C02DDF /* resource.upbdefs.h in Headers */, - 156DB932B5463057B041A7A6F14DE0B8 /* resource.upbdefs.h in Headers */, - 8060768931AC6B86B5634E2187ED6084 /* resource_locator.upb.h in Headers */, - A5EFCDD49DEB4D409E6DF0A2BC97F322 /* resource_locator.upbdefs.h in Headers */, - 3F05A82420871E42B456764FA5DE4350 /* resource_name.upb.h in Headers */, - 4327B696201AB741C4E69287032F1095 /* resource_name.upbdefs.h in Headers */, - 23FEDD023F63EEA71330A969F6F263C5 /* resource_quota.h in Headers */, - 7955F4818234C443D588C2F9EB70B6C8 /* resource_quota.h in Headers */, - 4B5EA9BC5457508A0CC6149C7D5A9B9D /* retry_filter.h in Headers */, - 3372E9B857145F0870B417EEBB11ECAD /* retry_service_config.h in Headers */, - 1F17079990F848A9226EA6C5C763AB76 /* retry_throttle.h in Headers */, - 04548EC4217572E34EA4FD246A5D9BFF /* ring_hash.h in Headers */, - F690BDD2943BDADAB4241FF11BCB5262 /* rls.upb.h in Headers */, - 2F7677D1A4FE701F5F71F8C14CF67052 /* route.upb.h in Headers */, - D4F76D7ACBC86C2E0EDC049F718C0B5A /* route.upbdefs.h in Headers */, - 355FF7D035202C242C5F549DF277DA0D /* route_components.upb.h in Headers */, - 8F75B4F1273819F9013C33070D181D5D /* route_components.upbdefs.h in Headers */, - C3E3E0F45265A375AE5235E51BD3B91E /* router.upb.h in Headers */, - 6AC466B0C23C72AAAE96675B911709D9 /* router.upbdefs.h in Headers */, - 7DC04AADF54DE8BA4477FB658C2E4F1C /* rpc_method.h in Headers */, - 41899F8F35A3EF683E60E88BB8E4DD26 /* rpc_method.h in Headers */, - F6208C5BDF34A58BEF72FBDB5EA8EB20 /* rpc_service_method.h in Headers */, - 9B31D0CF0EF5DE9BBC8898F772F3DF6F /* rpc_service_method.h in Headers */, - BA4E5103FB7C5605184406931C34816A /* scoped_route.upb.h in Headers */, - 6329B19FE3AEB56D3CFF2AD682D9E5C8 /* scoped_route.upbdefs.h in Headers */, - BFB3CF036F15C1C2B51109B383251D06 /* sdk_server_authz_filter.h in Headers */, - 2755E51BECDE7BE9DDAEA860763B99FE /* secret.upb.h in Headers */, - A1971E641D2E0843D6F806B225E98A6F /* secret.upbdefs.h in Headers */, - E42327A3D16897EB3C23E87E7F0C02C6 /* secure_auth_context.h in Headers */, - A322C9CA0FA3C26BD4CF3401BADDB7EF /* secure_credentials.h in Headers */, - 65DB14D7EB45CE3C181E887E524CD4C7 /* secure_endpoint.h in Headers */, - 4F8DF7A407CA985897DFF6BE920861D5 /* secure_server_credentials.h in Headers */, - E5E9B86A71AA4A5AF27DEF98DDE61BCD /* security.upb.h in Headers */, - 60CFB3F5DE468304322A5B560ACCE0A7 /* security.upbdefs.h in Headers */, - 52BA1FB0E6604CB9F6FA1AA723417B10 /* security_connector.h in Headers */, - C3EA23BBC29B95193E7E2E22064D2CF8 /* security_context.h in Headers */, - 8D6E8370E61F0A32BCD9480DE3A453CB /* security_handshaker.h in Headers */, - 11423FA93BAAF54072A802CE85CD68FB /* security_policy_setting.h in Headers */, - 06103B5328AE354D37D32495863DEBC1 /* semantic_version.upb.h in Headers */, - 4C3699493A93F29FC981CAA5629EF46B /* semantic_version.upbdefs.h in Headers */, - 4825E70456D77A17A80E16C290DC55C4 /* sensitive.upb.h in Headers */, - 93E09FECE2A3E38A9382A6FA0FFAF72E /* sensitive.upbdefs.h in Headers */, - 007FDFA2AEC04CB4CAEFABC4848E949E /* seq.h in Headers */, - 95ED6C2CC2FD3C689B3E7D653D18B069 /* serialization_traits.h in Headers */, - 3F44C7F9A69934A6816569322BAD4831 /* serialization_traits.h in Headers */, - F4A3FB76AF32B0459C92BE92182E336F /* server.h in Headers */, - 713F7FA33E1D76059BB951FAE4B59F42 /* server.h in Headers */, - 99D904F0C27F231D14427D2096DAD329 /* server_address.h in Headers */, - 4CE65670565330A2668D7E2B4D03617A /* server_builder.h in Headers */, - 06527A1E6D6D2E1990FF4B8EB32E490A /* server_builder_option.h in Headers */, - D82FB1BD907A558B795360EE8A6A42D8 /* server_builder_plugin.h in Headers */, - C1FF762114098B29F58CDD5E19205E68 /* server_callback.h in Headers */, - D56428C5707F8AECAEEBCB32C91996E2 /* server_callback.h in Headers */, - 4B071F3AB20FF3FCF1EBBC34FAE69593 /* server_callback_handlers.h in Headers */, - E38C91E1607DBD58775D33EE3522EC5D /* server_config_selector.h in Headers */, - 1887A4802AC1AF38672ABD9B38B951B2 /* server_config_selector_filter.h in Headers */, - 5064D8A3EE18D907AE459C35B3A5B853 /* server_context.h in Headers */, - D91F6A1CF48CA9A703FB3559F667E3DB /* server_context.h in Headers */, - CEE31DBDEE7532A6BCA52FFB29578874 /* server_credentials.h in Headers */, - 2B94A72FA64BD0C301D0E95EE7C1DFEA /* server_initializer.h in Headers */, - 578DC39C2EA21100E47424423B684F50 /* server_interceptor.h in Headers */, - ABCCBF62A103B665AE8587A1C98F3046 /* server_interceptor.h in Headers */, - D4248C9FBEEC7F0C1200060F25C0B4C7 /* server_interface.h in Headers */, - D99F5651FF78C483BAC9046744150F5B /* server_posix.h in Headers */, - 53DA2A8D74D7507FC4519677A5D341C1 /* service_config.h in Headers */, - 43D8037E5C1776782B0CCE78B1DFC52A /* service_config_call_data.h in Headers */, - F2F6D78FAF78F3E9C0079F6042FB2EF6 /* service_config_parser.h in Headers */, - A0E7444ACC5A9C4C6BAFC91F0834B1E2 /* service_config_parser.h in Headers */, - 72C3CB2B7D245DD7486594163CDE9E9C /* service_type.h in Headers */, - E0EBA4F0FC2C38724C79B8B54CD64617 /* service_type.h in Headers */, - 240A3E26E441BCDC6C585D1FD7940931 /* slice.h in Headers */, - 38953D5DF075C1CCC3E6652B020F1ACB /* slice.h in Headers */, - 1772488734BAAE11034C4D4C76BD73BB /* slice.h in Headers */, - 00A3707FA7C87CC67F93EBF6D18A16EB /* slice_internal.h in Headers */, - 4DFD38E0B796FC901364E9492788BF92 /* slice_refcount.h in Headers */, - 44C6748DDD8F2646D0707D2B51908990 /* slice_refcount_base.h in Headers */, - B1CDE9554B8A445377DD1C08D0981635 /* slice_split.h in Headers */, - 504DF9D7439019E7F6F7949AA01E4B4B /* slice_string_helpers.h in Headers */, - 05A13010DB0153D5327863CEE05809AB /* slice_utils.h in Headers */, - 4E27DE24D1250F80C88A8F7E09B697F7 /* sockaddr.h in Headers */, - FAC7E8A3101FFC15D623CBA5361196EB /* sockaddr.h in Headers */, - 3D0234E605F46B93C425A262B3DF06A1 /* sockaddr_posix.h in Headers */, - 9EB27F4F92A74A1325D2E50221F93593 /* sockaddr_utils.h in Headers */, - 6A92144795AA4C5DC4AEFD335C15A900 /* sockaddr_windows.h in Headers */, - 9C7076BC7B88BD68A3D6ED7DFCAAE12F /* socket_factory_posix.h in Headers */, - FF2AC3A6920DED76841318F5D08FA71C /* socket_mutator.h in Headers */, - 341353F5F27C0EACAA8666C7EE1BA8EF /* socket_option.upb.h in Headers */, - 7ABF69D30304FCE7574446CF0735F34B /* socket_option.upbdefs.h in Headers */, - 44B24F8A0A057864AB3FA2B1F46AE052 /* socket_utils.h in Headers */, - B6383A73F0992D16B65B42F346489092 /* socket_utils_posix.h in Headers */, - 3068190B03EA3264A2870D071B33DD20 /* socket_windows.h in Headers */, - 08B3FC46E930B50AF2A7F12DC246F6EC /* spinlock.h in Headers */, - 30BA4346C75FC9517BA531C02F05B58C /* srds.upb.h in Headers */, - E718F3B9A0681AF85166E6F77FA745C2 /* srds.upbdefs.h in Headers */, - 024282D789305F80259125A49F308182 /* ssl_credentials.h in Headers */, - FE4CA7398410B110C5410ACE7883C74B /* ssl_security_connector.h in Headers */, - 48265414DEFC757565190EA17EDE29A3 /* ssl_session.h in Headers */, - 05B38AA5A6C7AF34F3E8D78359046A49 /* ssl_session_cache.h in Headers */, - 84479AA266ADD313E6129A031D7046C1 /* ssl_transport_security.h in Headers */, - 462A605447731943CEAC3899CF57513E /* ssl_types.h in Headers */, - D6B31D2450F446B9A2A63676A7AA56C2 /* ssl_utils.h in Headers */, - 1BA34658A6E4F62AEE66A46F024A5BDE /* ssl_utils_config.h in Headers */, - E1136F0BF32A3F38AB1B9F3512C69AAF /* stat.h in Headers */, - 749376F5059199BE3A7361728E3245C7 /* stats.h in Headers */, - 4E99BFA56DA3F2F9998A04E9C14C7B81 /* stats.upb.h in Headers */, - AFB6FB235DC1BDABE0B1DBA601F0E17E /* stats.upbdefs.h in Headers */, - 6D5F62E13F45E01421C2D8191A9FB3DE /* stats_data.h in Headers */, - 1581FB33A625FB66223F4CB3CED46EF4 /* status.h in Headers */, - 0EFE8E77F323D2289E2343DCA6174FB9 /* status.h in Headers */, - 9E6DF2E195AC85FD404F23FACD2D1E57 /* status.h in Headers */, - EA9574A385A0197CEF26587139F90EED /* status.upb.h in Headers */, - 27907ADDF445A979FA2CDCE18EFFF939 /* status.upb.h in Headers */, - D6D08ECF35ED366C34656DF4667A81D6 /* status.upb.h in Headers */, - E57C923CA7153580D1CC6EF1E267539D /* status.upbdefs.h in Headers */, - D088E90A83631464CE3D8E524DBD6E80 /* status.upbdefs.h in Headers */, - C71C33B01BE627C213487B53D2301BCE /* status.upbdefs.h in Headers */, - AB6EC2AACE7951335E1A64B5DEF7C95E /* status_code_enum.h in Headers */, - 55DEF40642DB328ACAB63B3325003346 /* status_code_enum.h in Headers */, - 44CD1A6315F844618A191583D7F1F109 /* status_conversion.h in Headers */, - 5735E09968B4E27B4E3ADB4CA4931D41 /* status_helper.h in Headers */, - E0C1E62D4CAD248B35EDBD51C2CC2010 /* status_util.h in Headers */, - 7A000B58A9FE1EFEB0079372468B412C /* stream_map.h in Headers */, - 765A86A90CAF0708640E191E3EAC681B /* string.h in Headers */, - C315EC2969B3C49FDF277041234B0E92 /* string.upb.h in Headers */, - 55988040A0CC0D4A4829DC57A2D1B0A3 /* string.upbdefs.h in Headers */, - 491714C99FC6F02D3D29524FB797FFDB /* string_ref.h in Headers */, - F42EDF2BA49090DA73DE6BD4C018B151 /* string_ref.h in Headers */, - E03D3BF0C3A93E30761BB6655A77DD7A /* string_windows.h in Headers */, - 6226D7455ECB2E09381317737E801B05 /* struct.upb.h in Headers */, - EACB14B0644C88931E726A42C3B961BE /* struct.upb.h in Headers */, - F3A67674FAD9082C0D7BB9A7A7307F59 /* struct.upbdefs.h in Headers */, - E31C40A0602E8684C59B6CD213358544 /* struct.upbdefs.h in Headers */, - 5A5D047B376FB23258DD15B4E117FA60 /* stub_options.h in Headers */, - DA294F7BD2F32598F3B5E43522DCC8FE /* stub_options.h in Headers */, - 1B5BB755E1146377BA9215A3114FD1F5 /* subchannel.h in Headers */, - 489166F36865878AE3EAE8E26222D272 /* subchannel_interface.h in Headers */, - FFBF3A8CC29C1EDB67710BBE43BC74D4 /* subchannel_list.h in Headers */, - 1D36CC27033C50EF4EE09D5AD90CF117 /* subchannel_pool_interface.h in Headers */, - AD6A49397B1E8FA224D6F6CB0520A916 /* substitution_format_string.upb.h in Headers */, - DCC8FE2C9C1115847EE19E2BC5E74A54 /* substitution_format_string.upbdefs.h in Headers */, - 8FAFC14AC28261FCB953D84407337F54 /* switch.h in Headers */, - E767943771805E5D4B896D85CE162A24 /* sync.h in Headers */, - 9B3AC8443686B5264DD0BF77FAEC82E7 /* sync.h in Headers */, - 7EF7180EAA2DA3BEC6135AD61AA0B416 /* sync_stream.h in Headers */, - C03F1233F9A2C9A9D225718AF7D104CB /* sync_stream.h in Headers */, - 70327838A302F16E8936FD0F37478B66 /* syntax.upb.h in Headers */, - 135A7C05FFEE39DB91EC56D1FD9A1191 /* syntax.upbdefs.h in Headers */, - 78B1B457BAF0A456B96D0F0311856503 /* sys_epoll_wrapper.h in Headers */, - F9B8104C0959E34B99B2961BB2BAF4D3 /* table.h in Headers */, - 6999E0863B65A1CCB669AB28B0453139 /* table_internal.h in Headers */, - B1CC1C699576FC0798B0BB16CE1A63A6 /* tcp_client.h in Headers */, - 1E5C33034EAE1B7FFB603B91BFC219FF /* tcp_client_posix.h in Headers */, - 17111D92717FC075739524CC46EF9163 /* tcp_custom.h in Headers */, - 01A2B183BF1180B29CFD22A6DC006979 /* tcp_posix.h in Headers */, - 8FE06230A2E6D20C27DA26FC3D50BCC3 /* tcp_server.h in Headers */, - B0789F5525F7CEAC862B474AF21F7544 /* tcp_server_utils_posix.h in Headers */, - 694024A263D4ABB93782C46EAC9D4DE2 /* tcp_windows.h in Headers */, - 3BB8781D8D146F6D9C372912B9E2F361 /* text_encode.h in Headers */, - A00359268A5062606B6D9D038825AB2D /* thd.h in Headers */, - 994AF0D92CCF092872431226E28E1052 /* thread_manager.h in Headers */, - CDFA84F1AF84806872D1A9234C32528A /* thread_pool_interface.h in Headers */, - 3278D81AA0AD35F541938ED9F55E8357 /* thread_quota.h in Headers */, - 28FD872881B5C5F4AA722607B0B11067 /* threadpool.h in Headers */, - 54FBEB32D54F39FF654A8724405A6391 /* time.h in Headers */, - 6B3A52F725D061261DC2947D0FEF366E /* time.h in Headers */, - DC7EE34291B9E48AEFB8636895B452AB /* time_averaged_stats.h in Headers */, - B72228E8DC5AB45B281250B95D3D90F5 /* time_precise.h in Headers */, - 05E77184E45B01C851DC3F7105E0B80A /* time_util.h in Headers */, - 37A809F3AF1D138827374E6A533F0B35 /* timeout_encoding.h in Headers */, - B7B911DDCC9616B8539A25DCDA153FFE /* timer.h in Headers */, - ABF5B6C6DBCFA31CD6F6D7EEDFDED3D1 /* timer_custom.h in Headers */, - 4FDE820BC9CAAFCA5B425DEC9A15BDD1 /* timer_generic.h in Headers */, - AFE74BE039A52E954CE75EB26601DB14 /* timer_heap.h in Headers */, - 007CDDFB32A8785EF498CF669A81ED9A /* timer_manager.h in Headers */, - 2592D208D78C2FF3F846E120C62D83B4 /* timers.h in Headers */, - E30A722EC6756FE03559C0EB3B9FC967 /* timestamp.upb.h in Headers */, - E24CBBF6292466ACF6A1E82BDA3615AC /* timestamp.upbdefs.h in Headers */, - 95E04387BD82BBA722A9F5BE8E2E1CA8 /* tls.h in Headers */, - 918207DC4A0F7C85B568B6D8AB824276 /* tls.upb.h in Headers */, - 0CA87E3D8C8C41CAFB9E10D7BC83BB58 /* tls.upbdefs.h in Headers */, - E6986FC636AA9CFE43F8D697B22269AD /* tls_certificate_provider.h in Headers */, - D1392FA04714EFA486EA8F6D48D5196A /* tls_certificate_verifier.h in Headers */, - B51DA2F37110406723E6906E7F9BCF50 /* tls_credentials.h in Headers */, - 7621F1AFD9A2D53A97F5E6B2A8F27035 /* tls_credentials_options.h in Headers */, - 557BDCF0C663F00214E1B3CD2BEB0012 /* tls_security_connector.h in Headers */, - E736BDD9E61CD67D7873220C8856372A /* tls_utils.h in Headers */, - F5F68FDC6C9901C6A6564265B6E212F0 /* tmpfile.h in Headers */, - 2384821CD92FDD7EF78CF02F073C230E /* trace.h in Headers */, - 0366036ADBCCBC0C301606EEFF1ECBC5 /* trace.h in Headers */, - 40A74B5E93FD823CE6147E6AB84E67B3 /* transaction.h in Headers */, - AEB441F7978B6F5C2A406620E3EBCE6E /* transport.h in Headers */, - 9B8601D63063223C657F7AB09671D691 /* transport_impl.h in Headers */, - 91C2F9934C534EED1E83A3AB6669CEDC /* transport_security.h in Headers */, - 5A43EE551B4BE05DCBDCE47A28257FA0 /* transport_security_common.upb.h in Headers */, - 0896EC3A2E4C07382641917A0DCFA04F /* transport_security_common_api.h in Headers */, - A04E80CB2169D16246807737CFD08B7A /* transport_security_grpc.h in Headers */, - B790A716E6B72EAD0791763E7CA2B08D /* transport_security_interface.h in Headers */, - 752C85BEA20FBAFD8DDA53346145072B /* transport_stream_receiver.h in Headers */, - 8D6E4BF56659ACA92197D0EC8CD1460B /* transport_stream_receiver_impl.h in Headers */, - A72D8C2ECA56EF144E6F81E59E1DC378 /* tsi_error.h in Headers */, - EC33DD87410FFCDAD707503126EE2C9F /* typed_struct.upb.h in Headers */, - 4BC5EFD24AF6652CC27375557A33E717 /* typed_struct.upbdefs.h in Headers */, - 771C38A7A16E4E77628B577B17C7F75F /* udp_listener_config.upb.h in Headers */, - 00A30F09F7319AB4083BD89EB43D6A04 /* udp_listener_config.upbdefs.h in Headers */, - 5301EE34587AE8BE4409AD17B51B0C14 /* udp_socket_config.upb.h in Headers */, - 1BD2C43510F7237A45CCC31D97349D83 /* udp_socket_config.upbdefs.h in Headers */, - B79D641193B3E718B5C22B7EB9FF44B7 /* unix_sockets_posix.h in Headers */, - 95F3974D2EEEB0CDDE8DF51D76B88698 /* upb.h in Headers */, - 0D218E3DFFC9E7BC180D6F900FCF8375 /* upb.hpp in Headers */, - 40F0D6780E51604D067BBB9D4D772734 /* upb_internal.h in Headers */, - ED6F7E34019DC582CB2ACC012DA2FCEB /* upb_utils.h in Headers */, - D199741416C711100D75A02B60E49DE9 /* uri_parser.h in Headers */, - 06BED7A714C61EA69E67F5B85E9CC8D0 /* url_external_account_credentials.h in Headers */, - EF77384A0E0682A2E178277E9B62E945 /* useful.h in Headers */, - 9E0DFB3985D384C95B85267A89F98FFE /* validate.upb.h in Headers */, - 852FC3539C06061F49B84CCEB0B56865 /* validate.upbdefs.h in Headers */, - 7556D69C8D6C5434646E0FFD7D779F46 /* validate_metadata.h in Headers */, - A7CE788649E4C84243668B8F2000B732 /* validate_service_config.h in Headers */, - 6D54269D6A0977B8303D7D6BA4F61862 /* value.upb.h in Headers */, - 7BD15FFD69772578D6CA95FBCE2C963F /* value.upb.h in Headers */, - 064ECE278EA23354E959737EC4CB7239 /* value.upbdefs.h in Headers */, - 1A98E09ED64475340CDD4E6A8F64CA4E /* value.upbdefs.h in Headers */, - 1C2A5E9234EFE503100D840FBD991441 /* varint.h in Headers */, - 3009A570631D4CBD95764BD244040FEF /* versioning.upb.h in Headers */, - 0E1FA5266E443922D888CB492876E256 /* versioning.upbdefs.h in Headers */, - EC7B560A758208B6065AA217FD98162F /* wakeup_fd_pipe.h in Headers */, - 5C53D79EB87A19E8905324957A4A85DE /* wakeup_fd_posix.h in Headers */, - 89EBC95B4A1AF58588D28CE8528B2AB9 /* wire_reader.h in Headers */, - 022AB366C1802CAB3A25C160929DC242 /* wire_reader_impl.h in Headers */, - 48D4F2DFA23A0CCFDC103F3BF040FB83 /* wire_writer.h in Headers */, - BF902C14D02CE7A96C05DBE14BFA89EF /* work_serializer.h in Headers */, - 40664DD8915322A7E442BA16534470AF /* wrappers.upb.h in Headers */, - 22C51C1B084B561B67AE184E3A3AFDC7 /* wrappers.upbdefs.h in Headers */, - 22FAC31E89B35BD8253212C477B9ABDA /* xds.h in Headers */, - 2DDD8F63FF5D8AC1741B4C5B568F6883 /* xds_api.h in Headers */, - BF6DA29C01237DBFC5A70B28AB4EC3A5 /* xds_bootstrap.h in Headers */, - E306A789A50350B07ED2404A572EF125 /* xds_certificate_provider.h in Headers */, - 364FE5E8E8A3C4FD826E00E09CA1852F /* xds_channel_args.h in Headers */, - F730E3757AC29E8181E9D6EB751713C5 /* xds_channel_args.h in Headers */, - C44D974A4DBF7D77117DAB1D748349A9 /* xds_channel_creds.h in Headers */, - 4C20AAFC5FFE2214921CBB4C8845DC12 /* xds_channel_stack_modifier.h in Headers */, - DC8FF04D878E0A6F6A8248AB0A87B4BF /* xds_client.h in Headers */, - 3F40E7C94DE01EB4DF7ED3FA2FC8F60B /* xds_client_stats.h in Headers */, - B3EB50B7AE7D753A6E9C9E86C78D6C86 /* xds_cluster.h in Headers */, - F8F8FCD0B6893B08E3F1EE69EFD58638 /* xds_common_types.h in Headers */, - 24D973CCCAE85F7EB29402402FB06E7A /* xds_credentials.h in Headers */, - 9683F3E3C40CAE347A944E5258A1507E /* xds_endpoint.h in Headers */, - 937A32F73E3C61AA782448F64B37A17E /* xds_http_fault_filter.h in Headers */, - 90DA27F36644D32B30DD63E60F4ED352 /* xds_http_filters.h in Headers */, - 20501C829B0C5AA3B8176854800CF750 /* xds_http_rbac_filter.h in Headers */, - 9F6608C6E1E51D36AF2413CF84495CC7 /* xds_listener.h in Headers */, - 02945DCEB4003A4E54D87097266D625A /* xds_resolver.h in Headers */, - F548C2690C0191FEA1132676E0841644 /* xds_resource_type.h in Headers */, - C00834F87B572A334C04356DEBC93141 /* xds_resource_type_impl.h in Headers */, - F312C3CB23473A2B7C6431B49349C9A0 /* xds_route_config.h in Headers */, - 7C30FB6681CF6801E8675EEB5BE06E34 /* xds_routing.h in Headers */, - AEC80EA96140CC5E1D29D2B012B96A8D /* xds_server_builder.h in Headers */, - EAD04C2543C9A8BDF3A3BEFB6B59D676 /* xxhash.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CA1DCF2C0563D4FC7DECDA1FF8BF7EE2 /* Headers */ = { + B97A9562A21BB19DAB0DDD622A805788 /* IQKeyboardManagerSwift-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AEBD6C258362ABBA93CA725CD8F4D43D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C23F43268BB2A4776622CEA365C47D4A /* FirebaseCoreInternal-umbrella.h in Headers */, + 7683B862C2A3A07CE363526D07ACD08C /* arena.h in Headers */, + 9013F2F26AB95EAC5900DA13AE1E06FA /* block.h in Headers */, + 8F79A8571E354071676A381DB7A5CA81 /* block_builder.h in Headers */, + AF7379F7C0D114AB66554227F62D3D1A /* builder.h in Headers */, + B33A41D5C76DDB75282E38DAB231EE5C /* c.h in Headers */, + 58F38DB9C7BB77010E80839027226C4B /* cache.h in Headers */, + 7669DA8AA7A007A5C79C83C07C887D57 /* coding.h in Headers */, + 4650D6108BD0DFD61CF44D19FC79CBFD /* comparator.h in Headers */, + 9855A83A86008DE5B1C61A74F2DB8560 /* crc32c.h in Headers */, + 816CEFA330E058B70EA63489BE0A85CE /* db.h in Headers */, + D566BB0036EFDF127C25062D9B9C74F0 /* db_impl.h in Headers */, + 350282C268AA88CEC99D4510D8D8997B /* db_iter.h in Headers */, + 710F9D09B3C362AEF814262D58BF5BCB /* dbformat.h in Headers */, + A8852CA413F1D5AD3C90FEA9227E32A4 /* dumpfile.h in Headers */, + E228411E7C18A468759832AE332951D3 /* env.h in Headers */, + 1761A59E5BE4065F5195E99E15DEACF2 /* env_posix_test_helper.h in Headers */, + 866565739A711256521D1EA0F14C2B17 /* env_windows_test_helper.h in Headers */, + E15D8C95DEE5E666FF01E0334BB415F1 /* export.h in Headers */, + 2FFA5BB2ED4F50153BA0DCF082DC2DF8 /* filename.h in Headers */, + 1E218E32A95D75BDE4985FE5DE9D7334 /* filter_block.h in Headers */, + A53BE3867F8A4DECB56BD98BEFD0A558 /* filter_policy.h in Headers */, + 58882A93EEE3DC030F76EE082E0EAB67 /* format.h in Headers */, + 94E983892A480BBAE7AA9BD7741373E5 /* hash.h in Headers */, + 7C48EEDAFB9FB395A9DC48150765DC6C /* histogram.h in Headers */, + 0DE22D227E25E1B4F68FB59876824DA4 /* iterator.h in Headers */, + EC95A9FE1220070B636BF606A09220D7 /* iterator_wrapper.h in Headers */, + 643BCBE6154D65D56DFCE90880A5EA3A /* leveldb-library-umbrella.h in Headers */, + 74C2F9479A876F9B58CB50AB838634D2 /* log_format.h in Headers */, + B6F2D569528BDB5985CD92BB3ED6B595 /* log_reader.h in Headers */, + 2FC99B8D572B7155CD5698B176AC058B /* log_writer.h in Headers */, + F3A2507805BC6FCBD28D41B531174F03 /* logging.h in Headers */, + E3B8CD95520EAEEC72D7682F7277EAEB /* memtable.h in Headers */, + A1B2F9C7736E48982FDBB9E7CE55A319 /* merger.h in Headers */, + 76935C77E85D292761391F78D3806A0F /* mutexlock.h in Headers */, + A11A18BF4E5984BCBB1CB6CF4CE0B433 /* no_destructor.h in Headers */, + A95FA15AD5E03616B7C319CE57220AD4 /* options.h in Headers */, + 911A06C1222F9E5A434F1B09B4DFDE1E /* port.h in Headers */, + 63FE816CB6AFB23B3494A4541B5B2F91 /* port_example.h in Headers */, + 3A5F97DA263A99D2ECE4B053A866D0ED /* port_stdcxx.h in Headers */, + 0D54B91D8C1BAE6AACB1F0343917C345 /* posix_logger.h in Headers */, + 99638A5C59EDA830389B306DDAA90262 /* random.h in Headers */, + 7B84526DC8D6A999B568CEB5FDBF23B3 /* skiplist.h in Headers */, + A5077BF5E0C5FF5011133577D16461AF /* slice.h in Headers */, + A86F6677E90CC4C618103C7911F94036 /* snapshot.h in Headers */, + 2F79DC6D841A7D8D6D16E065495DFA13 /* status.h in Headers */, + 6FDD6CEDA7C36F2A922F58B581FB0241 /* table.h in Headers */, + 1416728C5C034BB96A1AFDF1386FAA63 /* table_builder.h in Headers */, + D7382E868C5B303383A94A8DC715B9DA /* table_cache.h in Headers */, + 055D7C4C752E51366DD22794293266EA /* testharness.h in Headers */, + 3308190324372A5FE86AD5D450546E83 /* testutil.h in Headers */, + 415BB227CEA95D62E7AEE4DB757885FB /* thread_annotations.h in Headers */, + E657CB0FD70719B0C05B02D6F700FDFD /* two_level_iterator.h in Headers */, + AD2373F1CE1AD62BA44CA5A6193EF5C9 /* version_edit.h in Headers */, + B726D7F747CE62DADDB57C9D97EB1DF7 /* version_set.h in Headers */, + 616CB3033A32902FC9E13ADA4932A35C /* windows_logger.h in Headers */, + A6850AC3DE91A415A04A8ED3BED81278 /* write_batch.h in Headers */, + C80D7D19FD48E967F73A2A47970F9E81 /* write_batch_internal.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23614,735 +23057,746 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D8A52A5B79E57052026A621F27009347 /* Headers */ = { + D3BB64D997ED4D347FA9147DE832DA3B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A8A6D8DBFF09C85911A352368F626285 /* accesslog.upb.h in Headers */, - 618EC3D7BDECF11A38798DF18DC60DCE /* accesslog.upbdefs.h in Headers */, - 1A36384DD4113B20C20D5C0E99609484 /* activity.h in Headers */, - D00E164BFB0B8BC0B62A89AA3AA5C2BD /* address.upb.h in Headers */, - DC43B5EDD2EDC1D6417304E418B6FCB1 /* address.upbdefs.h in Headers */, - A44C2C80AF536369B14B5051C97CC153 /* address_filtering.h in Headers */, - 6806F9ED15C194C44FDEA694C36EFDE9 /* ads.upb.h in Headers */, - 41FBF0B349E339DCE2768938E69EB6C2 /* ads.upbdefs.h in Headers */, - F78D3D47D8CE08355B58BCD5F77810F2 /* alloc.h in Headers */, - A154CE45A2D9AF0530A5293DA3082156 /* alloc.h in Headers */, - 26DB81082FDA3B4E9C3BD01D62C461AB /* alpn.h in Headers */, - 2381F1499EC8812266C19FA651EC9EAB /* alts_counter.h in Headers */, - 9F6E05BB90388FE1484B1EED949F7763 /* alts_credentials.h in Headers */, - CC83A4CD8A802F11E5611CA00BE9BEDF /* alts_crypter.h in Headers */, - 6AA4D5981F795FED683754119FC04F67 /* alts_frame_protector.h in Headers */, - 2DA7A8B11AF5131B58E5449118C04551 /* alts_grpc_integrity_only_record_protocol.h in Headers */, - 9FADB1F46BA374FD4C0E7A939C9B1B45 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, - 9AB0AFD4D64D2B9B6784760C1371F4CE /* alts_grpc_record_protocol.h in Headers */, - E40A5A0A9DB5E7FD97D3743491D3C6FD /* alts_grpc_record_protocol_common.h in Headers */, - 84C957A004BAEFEEDDB3F6B54D2F9E41 /* alts_handshaker_client.h in Headers */, - F862E6A030DB23CB77E1DAFBA728D989 /* alts_iovec_record_protocol.h in Headers */, - C6509199D3779F4C1A97F01C0206F784 /* alts_record_protocol_crypter_common.h in Headers */, - 70090D6F00A46BB1EF68C1AF665346A8 /* alts_security_connector.h in Headers */, - 9F25CAE3674F2490F1D903CC4F85E657 /* alts_shared_resource.h in Headers */, - 548B8906DEB00B41A816DC3D8F252053 /* alts_tsi_handshaker.h in Headers */, - 90A6711A27F26BC5133362E6F7FA0935 /* alts_tsi_handshaker_private.h in Headers */, - 81655F26BF9C5A2A599531B4C740C972 /* alts_tsi_utils.h in Headers */, - E62670E18EE66A6317385968C81F1642 /* alts_zero_copy_grpc_protector.h in Headers */, - 41C75A51E79C092BF59F4768D155403B /* altscontext.upb.h in Headers */, - D3D601E63DF77D6F2832CDB4DBE9DFF0 /* annotations.upb.h in Headers */, - BA8F187159F642A3E25EE7990A9ACDC2 /* annotations.upbdefs.h in Headers */, - EE2BF43A93A69F7050579CDB4F84951C /* any.upb.h in Headers */, - 70F9A2AD115AA5D34859543A19C751AC /* any.upbdefs.h in Headers */, - 86CFCBF487B126D9DC27436C19696527 /* api.h in Headers */, - AC18E59AB255501962C20F5A42162B48 /* api_listener.upb.h in Headers */, - 380B41CF0DF20D2E8E2FD1DE0E5E35A7 /* api_listener.upbdefs.h in Headers */, - 556947E9E650AD2A19452658E440000A /* api_trace.h in Headers */, - 785B50089DC25AFAAA322561F43A390A /* arena.h in Headers */, - FC124D4265312A16EDC2AB799BA0ED67 /* atm.h in Headers */, - F3955980B1FE396A58C7E1E1EE97722A /* atm.h in Headers */, - BA7B784DFFD3D90277CBAD22493FE71E /* atm_gcc_atomic.h in Headers */, - 55284B14C1D3904E1C48B3E20FFF8626 /* atm_gcc_atomic.h in Headers */, - 91A3F66B816A43A7C249C94E642C0BB5 /* atm_gcc_sync.h in Headers */, - 3E6E9864C433E560F0ABBC7CD2E1C93C /* atm_gcc_sync.h in Headers */, - BB1891F62A416B9888F57A67DA081D96 /* atm_windows.h in Headers */, - EAA587DF74C0947C52C935AF613A0FA0 /* atm_windows.h in Headers */, - 062BE89E11891936155F4D5C81D6BC7F /* atomic_utils.h in Headers */, - BB35203AFA58A218E7E1D20A9E265E25 /* auth_filters.h in Headers */, - 0395B1C24D2D8C8CB6E62EADA06EF4FD /* authority.upb.h in Headers */, - C2F02CC49191CED4AD65D20A1D84962C /* authority.upbdefs.h in Headers */, - A1C6838BF4C88F03CBC277ECD6B563DD /* authorization_engine.h in Headers */, - 33A872D2F1EFCBC5AC502FA9686E76E9 /* authorization_policy_provider.h in Headers */, - 710EF480627A46F43FE19A2515C96B73 /* avl.h in Headers */, - E0953C4E9D8670AB165CD88953D8D367 /* aws_external_account_credentials.h in Headers */, - 0562103B70C1A94351202430A00DFE32 /* aws_request_signer.h in Headers */, - 3BB3E2671A5599A1A48A608F891F601A /* b64.h in Headers */, - 54133A06BB8150D98F877EA704D8C87B /* backend_metric.h in Headers */, - 1A2C152263E294735874AF7CAFBD1467 /* backoff.h in Headers */, - 0CF17AEA0DB1080326CCAB7A1935ADA7 /* backoff.upb.h in Headers */, - A73E256244236ADEDAE75FEBBD20FF50 /* backoff.upbdefs.h in Headers */, - 870B8490029E2B54F47B01A63808B8D4 /* backup_poller.h in Headers */, - D09F7247DBB1F0810B291291A1D1030A /* base.upb.h in Headers */, - 1D09CF962A5566ABA49EAE0B1835F784 /* base.upbdefs.h in Headers */, - 0A851825E709895EE1A092B6318DD3B6 /* basic_seq.h in Headers */, - 25263443450670127FCEE9AA3F7F683E /* bdp_estimator.h in Headers */, - 8C3605F6B750171B313F17BD1E04E591 /* benchmark.h in Headers */, - 1FF1B164765BADC3B961D3628A86377D /* bin_decoder.h in Headers */, - E97D1C9DEC1E5E95C01ADE5A3ED4903C /* bin_encoder.h in Headers */, - DFAD119D792250E707A90FA04A2E7EB3 /* bitmap256.h in Headers */, - 68C342EF3DA53AFF8BD1F28406E5B9B3 /* bitset.h in Headers */, - 316D25CAA92C0D04608A3059FF73880C /* block_annotate.h in Headers */, - 1BA85B719418ECB40D37C7771A5AEA2F /* bootstrap.upb.h in Headers */, - D7222ED8BA467DCCFF33E6464A7797B0 /* bootstrap.upbdefs.h in Headers */, - 5F9AC5811972B4FB570D9B8C6B55A981 /* buffer_list.h in Headers */, - 783DBA1CA173FC97C59EE64CD3BFB1D6 /* builtins.h in Headers */, - A916E3068DC536E82AE2A9232EA5519A /* byte_buffer.h in Headers */, - D2B8AD697C7D00980B840D450E14CAC8 /* byte_buffer.h in Headers */, - 507B04DE0686C562219276D51BD67763 /* byte_buffer_reader.h in Headers */, - 5FD4892E0D2FB4901A67F7AC0E4CE3E4 /* byte_buffer_reader.h in Headers */, - 1D94333C96B3BE6B0A4AF07DAE8412DB /* byte_stream.h in Headers */, - FE0B2D961C187173E22A191B0F15FDFD /* call.h in Headers */, - 9A5DAFC85C26EFD0F890E9E9BBB1BB52 /* call_combiner.h in Headers */, - 4A342E4E8F59C7F6460A25AFCD033AF0 /* call_test_only.h in Headers */, - 746232386C5868A5F40235DB3B8DF66E /* call_tracer.h in Headers */, - CC035EF8ACF0079AA690DBB9C1820103 /* cds.upb.h in Headers */, - C08C3001A41F96BD570C09B4C632F5AF /* cds.upbdefs.h in Headers */, - F00FD6D33407F832DD5B852135550F36 /* census.h in Headers */, - 27859D51FD5D64EE8691581D967787D3 /* cert.upb.h in Headers */, - 1FD7325746C7543A8A54036232110A29 /* cert.upbdefs.h in Headers */, - 11B12D61D6D125151D2C99C85FA140B8 /* certificate_provider_factory.h in Headers */, - EF7634C090365FE83C154CE0ABABF1C8 /* certificate_provider_registry.h in Headers */, - B39ED929C61432CA297689972A08CA12 /* certificate_provider_store.h in Headers */, - 1762F62D5D10D5AC27F00930CB0CC2C8 /* cfstream_handle.h in Headers */, - 19FC8718E966DE73EAA893D97220C20C /* channel.h in Headers */, - EC68FDEACC07D5037A82B0AA413A9BAC /* channel_args.h in Headers */, - 8315D6CCCCC91C9D3B9BFF58634D3083 /* channel_args_endpoint_config.h in Headers */, - AF0696C58C759880E9EE5A11EAE0F7BD /* channel_args_preconditioning.h in Headers */, - 90F984473344F3580DD3C56DF2E99DCE /* channel_init.h in Headers */, - BA9840A4FA70299ED33C062A761E7573 /* channel_stack.h in Headers */, - 224EE7893EA2928238C8C940E15679C7 /* channel_stack_builder.h in Headers */, - 6B7E5C60CD00122E224B6A719F2D5FCF /* channel_stack_type.h in Headers */, - A3B896A08E9E941E67B20454C5FF5FA0 /* channel_trace.h in Headers */, - 0449E337E7E35E115F1D7D38CCDE71B4 /* channelz.h in Headers */, - 6AAE595E300FC0A365870E8489636333 /* channelz_registry.h in Headers */, - 9AFA38F20A57E58E9E59391B865DA88A /* check_gcp_environment.h in Headers */, - E854A488E4F73C2D41E21BCDE5127EA1 /* checked.upb.h in Headers */, - 4438EC08FFB3357E57B24DA5590BCD4B /* checked.upbdefs.h in Headers */, - 670C84F1E37CB086BD4C4F90A5FA44AD /* child_policy_handler.h in Headers */, - 58F634D37FCC0631644258D68C07E5C1 /* chttp2_connector.h in Headers */, - D9D2915F14E7C2C7F674CF17A365A74B /* chttp2_server.h in Headers */, - 837458A68F04A72DB9334E8AA7349CBE /* chttp2_transport.h in Headers */, - E336677C20C21BDE9753F53353B1E9A0 /* chunked_vector.h in Headers */, - BC00B9B64EE47FFF24340E27496E066A /* circuit_breaker.upb.h in Headers */, - B6246C818BE5AE4AB6F6F57DD87D7985 /* circuit_breaker.upbdefs.h in Headers */, - A0FDFAD5FF9675D636334F4FB06A2E5B /* client_authority_filter.h in Headers */, - 3C48E72505211AA3CC2AA38DC163316E /* client_channel.h in Headers */, - 7C50C7A13DC5B8C0E6A644BBD6C933AD /* client_channel_channelz.h in Headers */, - 8BA571DC1135C84FA8AB0E54FE78D651 /* client_channel_factory.h in Headers */, - 1EBEC42444D86272DEE0332E1C0CEF1D /* client_load_reporting_filter.h in Headers */, - 45AC907E6436FDBAFA3A43F1CBDDF21F /* closure.h in Headers */, - B90E9CE680AD0499F47EF7FC1051DAF3 /* closure.h in Headers */, - 33B91E9895EAB3D4D75178FB05D30AE7 /* cluster.upb.h in Headers */, - C9E06D73298FA69C4D4812461A5F843E /* cluster.upb.h in Headers */, - 7E32B919E67676717BF4D74DB0F6DCF2 /* cluster.upbdefs.h in Headers */, - AC46B0D2BCACDFF90870197AE3BC85C0 /* cluster.upbdefs.h in Headers */, - 3F147D621F60A38C2934177DF04DFDAA /* collection_entry.upb.h in Headers */, - 74D7F8F664BCD47113ED7BB98A40BED2 /* collection_entry.upbdefs.h in Headers */, - 0F0CA6CBF763BB87E97D19BF22EFD8F6 /* combiner.h in Headers */, - 941DCFB74CC9848A470C3C6F5298AA4E /* common.upb.h in Headers */, - 4BD55D92EA2B71AAB76FBD0C6EEE0162 /* common.upbdefs.h in Headers */, - 22067BE5680F9468CB286A82BCA33538 /* completion_queue.h in Headers */, - AA5BF931912AF6DD724C94D3F136FFA7 /* completion_queue_factory.h in Headers */, - 117E5E196AA0C299A6A0DAC189C100FA /* composite_credentials.h in Headers */, - 80901BE4A6B99ABFB743C0976E127867 /* compression.h in Headers */, - 559AE00131EE91CAF688C3263180CF51 /* compression_internal.h in Headers */, - 22F7D8AD9EBFEDB7645EECA414DAF968 /* compression_types.h in Headers */, - 688917FBA0799F8CE0AD2F4ABBF83BF2 /* config_dump.upb.h in Headers */, - 4508E65D8BF3CB6B29F5B5F311A9231C /* config_dump.upbdefs.h in Headers */, - 7986EEECE6CCB48212456DCD69065373 /* config_selector.h in Headers */, - 0C030D197B8C71D01D0F1DC2D90ABEB1 /* config_source.upb.h in Headers */, - 53A6EE69537FCEBC86194A62D170D921 /* config_source.upbdefs.h in Headers */, - BCBB7888271AB0383564DFB19B9EF5B9 /* connected_channel.h in Headers */, - 7937C2A81B52E20317EF3767AB2F0275 /* connectivity_state.h in Headers */, - 7EA13C9CE03EAC417E7163A393F8F5DA /* connectivity_state.h in Headers */, - 85AEE8BF8D0FEA826D904C88B93F4ABA /* connector.h in Headers */, - 55EFE8DD333C93AD88BECDB8D1942EA2 /* construct_destruct.h in Headers */, - 3B8CB99BE4327E396AD3A707B2C0DB10 /* context.h in Headers */, - 3651A0B51534ECAFE44A3A76DF38F4DA /* context.h in Headers */, - 319BA455C76682070EFCA1DD6840BEF0 /* context_list.h in Headers */, - 917F5C92127AF4CF072B6866E7C74E7D /* context_params.upb.h in Headers */, - 3A88771C736106B6BAC3CB323BA81DD1 /* context_params.upbdefs.h in Headers */, - 56AE51D2589D25A9CE778ED39BB5F912 /* core_configuration.h in Headers */, - 0BDC374DFC13616B361CC74C955F954E /* cpp_impl_of.h in Headers */, - 6A3523871743B9C2226E7347A4DA2491 /* cpu.h in Headers */, - 1E1224FFCFF26F183869E78580E42A41 /* credentials.h in Headers */, - 695EF407C635168E51F64129BAC757AE /* csds.upb.h in Headers */, - 9F0F54BFAD7CCE5C2755CA4F687A81D8 /* csds.upbdefs.h in Headers */, - 1278BC65A7BF7BC27428487891B773CC /* custom_tag.upb.h in Headers */, - CE3318F96863E0DF002BF067F6453C0A /* custom_tag.upbdefs.h in Headers */, - 7922ADE5867DD38F44CF9895ABB11637 /* deadline_filter.h in Headers */, - 6DD19819EC434E21985C0F6E1204717B /* debug_location.h in Headers */, - 7C3D4E80D2D3E1327876245591939AC7 /* decode.h in Headers */, - 6013F01EB3175A3F04A23721B91BEC44 /* decode_fast.h in Headers */, - A0576D406DAF57413D3D233F29F4F679 /* decode_internal.h in Headers */, - 8548DB8A507F94AA26DF6E7484F2B021 /* def.h in Headers */, - BACEDD2DDC8CD21C29691E154DF50E42 /* def.hpp in Headers */, - 7130B993E2C95DF73D73623F53E095A7 /* deprecation.upb.h in Headers */, - 4D329A8B90A21204E84A000F82D5322E /* deprecation.upbdefs.h in Headers */, - 0004D6E729B6F6BB23A1FC6D57998827 /* descriptor.upb.h in Headers */, - 6E0E4DA3C0DCD79C709833E234963392 /* descriptor.upbdefs.h in Headers */, - 9BDFE02D100320987274F501CD3CFA42 /* discovery.upb.h in Headers */, - E76ADB469CEB6F9821CC4B59FD7BBE36 /* discovery.upbdefs.h in Headers */, - 5DF4514DEA196A2E223DEFE86DF7E95D /* dns_resolver_selection.h in Headers */, - 7355DFAF39A094F7AA4DA60558F54540 /* dual_ref_counted.h in Headers */, - B4E459D4C470BA93F6DD4BC4DE1422EB /* duration.upb.h in Headers */, - 89DEBA1BEAD778AA587945515BC3CD59 /* duration.upbdefs.h in Headers */, - 2B9FD9B31E4B170695AD75FE3CFE0B02 /* dynamic_annotations.h in Headers */, - BCF9150A48033BBEBF2494A625421F38 /* dynamic_filters.h in Headers */, - D62199A629B5E5296DB339847732F973 /* eds.upb.h in Headers */, - 7B1FFC6AE7B062C765960692C1610F73 /* eds.upbdefs.h in Headers */, - C330C979BED78B124F0B8ED725734770 /* empty.upb.h in Headers */, - 0B56DE881F69CF665CFEAAF0719BEA15 /* empty.upbdefs.h in Headers */, - B5E2D5F99723DF2F485DAB713CDD0BB0 /* encode.h in Headers */, - D141DAFBF3C737212CBD177BC7E03896 /* endpoint.h in Headers */, - 7B6578786874E31F22F7C3E8B6DEBA3C /* endpoint.h in Headers */, - 3508B78C627D385B2ABAFE98F4BCBC1A /* endpoint.upb.h in Headers */, - 18BEC3BA8D1E8BD4D9DF2ED34721F03E /* endpoint.upbdefs.h in Headers */, - 03530F1E7060E7EC92B1247F6FD66D60 /* endpoint_cfstream.h in Headers */, - FD3A7A2CCBC410FB2369396DEB603AA2 /* endpoint_components.upb.h in Headers */, - F4454A495E8536CB0EBDAF86641A2E76 /* endpoint_components.upbdefs.h in Headers */, - 881207C0C8BD46A7E7053632EA7FEC5E /* endpoint_config.h in Headers */, - ACA38112AFD3828A0C4E6AD69E311AA9 /* endpoint_pair.h in Headers */, - 822E9EFCD141552AAB04C749A6E424CC /* env.h in Headers */, - FE30207A96CF37836ABF66D2B3BB53C4 /* error.h in Headers */, - 324B9C012818D0C7744872CEAD622ABD /* error_cfstream.h in Headers */, - B8262B59E4274DA9F7C3DA39C1386881 /* error_internal.h in Headers */, - FB315AF2B49994BF3800B755B51743CD /* error_utils.h in Headers */, - D59296EB84137DE9B05C1A2C610F883F /* ev_apple.h in Headers */, - D2DD148CF70EBADE27614A1DD17579C8 /* ev_epoll1_linux.h in Headers */, - 21CFCFF9F39CA43F0B2D9689C7702B90 /* ev_epollex_linux.h in Headers */, - 27FD5D03FEA5F8E5E513A83DC4940F1C /* ev_poll_posix.h in Headers */, - DBD5D670861A78E1DF06C509F7EE8B34 /* ev_posix.h in Headers */, - 64FAEB46A2F0C56820F5566178CC6B61 /* eval.upb.h in Headers */, - 3A1437B7F333EEAE14BC7310A9E7A214 /* eval.upbdefs.h in Headers */, - 3E986522F5B27D88F128C33A7108A2DA /* evaluate_args.h in Headers */, - ED2D7AF0BC547ED5E374CA84ABE10EB4 /* event_engine.h in Headers */, - C75597E92F194DD8A86FD783818971AA /* event_engine_factory.h in Headers */, - 091B2425E2A92F1DB0ABF4BAE0DCAFE9 /* event_service_config.upb.h in Headers */, - AC846102F5345013F1A541C08300ECC4 /* event_service_config.upbdefs.h in Headers */, - 1825304AF530A8E795B725DD54D3E185 /* event_string.h in Headers */, - 0EE8884AC9B166E0DEF49065A3994B21 /* examine_stack.h in Headers */, - 1F00A97CAA65B09D81425F9CC5879B02 /* exec_ctx.h in Headers */, - 4A6DDBEC34E1AA3ED1DD8B3FE9DF1DD0 /* exec_ctx_wakeup_scheduler.h in Headers */, - 456D38D0F89AD4D57C1679DEBB243ED5 /* executor.h in Headers */, - 1FE87333377B8F132C21270FC9283643 /* explain.upb.h in Headers */, - 4977033297BEE2C4AB5175399BE1EB49 /* explain.upbdefs.h in Headers */, - 347FEAA4ADC2F60062AC9240FFDF5FDB /* extension.upb.h in Headers */, - 8631E619E7E32B4703CAF8E1E2FD7BF3 /* extension.upbdefs.h in Headers */, - 26F9F5DBF76A82604503D0A71C02F211 /* external_account_credentials.h in Headers */, - B271A44B29E0827E80BFDFB8E7CEA488 /* fake_credentials.h in Headers */, - CBDBD7E71C3EF7B175C0EA0C56CBE5A8 /* fake_resolver.h in Headers */, - F1507FF33D1E83C75AFABEE5F4AF1A98 /* fake_security_connector.h in Headers */, - F79759D7148F2441D55BF72AC7332130 /* fake_transport_security.h in Headers */, - 7BE509DB68A97903C77DF97C5423BA46 /* fault.upb.h in Headers */, - F5BBD4CF1314E6DE9D0A3CA20F544E66 /* fault.upb.h in Headers */, - D9E01F53DAFFB3657C6B42148714DA6F /* fault.upbdefs.h in Headers */, - DCC8CF9DADA886C4C8A4EC7108579311 /* fault.upbdefs.h in Headers */, - 9C8A24AAD93E0B544380A584837BE48E /* fault_injection_filter.h in Headers */, - 3C1BA9631F7744A90CEA1D00A8D2C834 /* file_external_account_credentials.h in Headers */, - 52D4F74E33AA0477B0C6F8522B0E72CD /* file_watcher_certificate_provider_factory.h in Headers */, - C9C66C289B118774ECFFF81A036EDAEA /* filter.upb.h in Headers */, - D084D6457FC7B24ECD8ED67142FC1EB1 /* filter.upbdefs.h in Headers */, - 53E24EB5FAF25CB67B5C55B75B7B125C /* filtered_re2.h in Headers */, - 4EE9DAB62DDD614A1D19A7F740D7F9A0 /* flags.h in Headers */, - 426AFA913769EA9463E393F82B4BA591 /* flow_control.h in Headers */, - 15635B3CAA21B527F04AA66E6920BB39 /* fork.h in Headers */, - C7D2DC5806C61DBC9ED3F85BE8974450 /* fork.h in Headers */, - 44BAAF6C743525F9B880FDBDF83273D1 /* fork.h in Headers */, - AD4799CB66527E2EA859FB81E2CFB8E3 /* format_request.h in Headers */, - DDE82089F82D6B470A3C39F5FAE05CF8 /* frame.h in Headers */, - 315BBABE1BD4CD5BA4A4BA22137B46B0 /* frame_data.h in Headers */, - B083C28ABFF475FBEDBAB145B1BA70E8 /* frame_goaway.h in Headers */, - 0F407346A13653B68EA54FFE5C50A9D8 /* frame_handler.h in Headers */, - 96C7BD3DCFDC7CC53FA2E3800073BB7E /* frame_ping.h in Headers */, - A57DDF9D1D8B63DB713FBB447F361D37 /* frame_rst_stream.h in Headers */, - D6B3D7DBDDF264CBE45E5C8D52A5161A /* frame_settings.h in Headers */, - 5768001E9420ACA527ABBD38F910042B /* frame_window_update.h in Headers */, - 28F696F6D49396CF8602763EC8A48670 /* gethostname.h in Headers */, - D216E59CD639AAEAF4767C388FA155CE /* global_config.h in Headers */, - AA671F14C945273337B1A89B6F24080C /* global_config_custom.h in Headers */, - BA4DC70ABB7D9DA14A77760B789DB5AD /* global_config_env.h in Headers */, - 24C6F6FC103989C274C48DECD6C88482 /* global_config_generic.h in Headers */, - EC01167351D1AE0F90B848030D0EEEA0 /* global_subchannel_pool.h in Headers */, - E89D272789605DC2097E62E92A9CDF51 /* google_default_credentials.h in Headers */, - D87CA22C1960CEBB63A3FA30E27E5479 /* gpr_slice.h in Headers */, - BE9FEC5393078F8315E33D063EE4B86D /* gpr_types.h in Headers */, - 634EBAC3FC586B6C237889F02113481A /* grpc.h in Headers */, - 220BBC8BDB55932CD0696BDEB0007805 /* grpc_alts_credentials_options.h in Headers */, - 122C015102A39DE70D4A25919142B59D /* grpc_ares_ev_driver.h in Headers */, - E9A0EAF8E437C06D52D27189B4403C26 /* grpc_ares_wrapper.h in Headers */, - F6CFBC40B977F0319EDE544F5B09E288 /* grpc_authorization_engine.h in Headers */, - 0BC6F432D1E89CA3D4ED365CD82E7572 /* grpc_if_nametoindex.h in Headers */, - 973F93675357C09FE39BF325DF21B0D0 /* grpc_posix.h in Headers */, - 25E6388013F2956DF8488FC434FE9F10 /* grpc_security.h in Headers */, - C222AF7C640DEB7C2D6FDFBB0F2A85E7 /* grpc_security_constants.h in Headers */, - E8FBCE6EE249E48EFFA2F32466D9D0A1 /* grpc_service.upb.h in Headers */, - 1F692E7849A5C1F011DD20CF7FA5F883 /* grpc_service.upbdefs.h in Headers */, - CD94556C1C3F2E1A68B51ABC55D7D39D /* grpc_tls_certificate_distributor.h in Headers */, - 4021A772AF402EAD33DB79C4A354F86C /* grpc_tls_certificate_provider.h in Headers */, - 1D37E4233FD2EF3055C7A480F752BD7F /* grpc_tls_certificate_verifier.h in Headers */, - 220CE08B9A243768392773FBA38030C3 /* grpc_tls_credentials_options.h in Headers */, - 4D5719EC7058C4E9EA45EF9CB16755CB /* grpc_types.h in Headers */, - 747B651D6891195A48EB69905CD45846 /* grpclb.h in Headers */, - 2832313CAD365848B0203B5D72534263 /* grpclb_balancer_addresses.h in Headers */, - AEE211146DEE336F940F60A85F2317BD /* grpclb_channel.h in Headers */, - 028F790CE84E50ED9036DB64D6197DDD /* grpclb_client_stats.h in Headers */, - 6E647736C8143398DA7001C91914BD3C /* gsec.h in Headers */, - 0585694F91981165F385F6A612E86879 /* handshaker.h in Headers */, - 7C67BBE0A14B499CF302501B08A55004 /* handshaker.upb.h in Headers */, - A57D90FEEB0C09DDC2AFDADC98AEE54B /* handshaker_factory.h in Headers */, - F508400269A7B5390D4C410853DA53DF /* handshaker_registry.h in Headers */, - 7EDAEAB4B8FBDA046284E4F630CA5FDA /* health.upb.h in Headers */, - 97153895728B6C42EAEF0637014C1832 /* health_check.upb.h in Headers */, - 170A70BE60B6E77406CB1AECB8F149FF /* health_check.upbdefs.h in Headers */, - 8C723004F88A1EBF7DB7526E0A2A4C9C /* health_check_client.h in Headers */, - F90695F5734273A6590F7F8C74AB6CF7 /* host_port.h in Headers */, - 4D9A9CC488ECAD0936527A116CF973FE /* hpack_constants.h in Headers */, - C0E4A230F91AD50B87F93A05EEEFD737 /* hpack_encoder.h in Headers */, - E395CBA5AECCB72D29A7F6B267805402 /* hpack_encoder_table.h in Headers */, - D719A2F255ED80F82E1C1E248A7D6863 /* hpack_parser.h in Headers */, - 5177C1F9006C74BCBABD979C0B57AD0E /* hpack_parser_table.h in Headers */, - 2158A5B4B0F056CF2C0D6C63D9A0FD5C /* http.upb.h in Headers */, - DDB6843EC4ABA55D39E9E88A886C7800 /* http.upb.h in Headers */, - B7E52E72C920D16B063AB75835C5DC1A /* http.upbdefs.h in Headers */, - EF5184840CE4E7B951273329C374F924 /* http.upbdefs.h in Headers */, - 2AFC80D434FCA9A91B29C70E68634FE2 /* http2_errors.h in Headers */, - 467AE565B01E146BB5BECE3CC44BC454 /* http2_settings.h in Headers */, - 239E77FA35B12E2AFFD491BC4C2B83C3 /* http_client_filter.h in Headers */, - 66032BBA1DC075B73DD513DB4AD9E465 /* http_connect_handshaker.h in Headers */, - 1888D17DA34BFCED3F90313AAC7307D7 /* http_connection_manager.upb.h in Headers */, - 68348F165A22CF08F915D8158F9524D0 /* http_connection_manager.upbdefs.h in Headers */, - A26B049D27C9274DCEA34BFBED9D9719 /* http_proxy.h in Headers */, - 47A179130CFE54A71C3A7379A1983D59 /* http_server_filter.h in Headers */, - 336392975D9EFE564761E5D7C9F273EC /* http_tracer.upb.h in Headers */, - F857995DB7AEACDAE7986B93464F4AA2 /* http_tracer.upbdefs.h in Headers */, - 9B0AEF8B72D04DEEED2C6301A2681F0B /* http_uri.upb.h in Headers */, - 5BD70F7F5612BB430E6B63454AF47C31 /* http_uri.upbdefs.h in Headers */, - 2C28AB7B45C711547F0AC95B9E447468 /* httpcli.h in Headers */, - 5CD90D5DE8CB08CBC925A0243BE82719 /* huffsyms.h in Headers */, - 56629D62258DBC46EE85FD21B089A023 /* iam_credentials.h in Headers */, - 007E11C58329AA19E8E06977FD9C4DF0 /* idle_filter_state.h in Headers */, - 5E106D362F0E398B765695C420ED4849 /* init.h in Headers */, - 85B451AC527E417B98E06FF9357DA305 /* inproc_transport.h in Headers */, - E448D31FD09F5D7B409CEC597D8D66A1 /* insecure_security_connector.h in Headers */, - EF88889B203C32EEB40F43C8DC9BF5DD /* internal.h in Headers */, - 3C7CCDA0E0C7C38B8E0A1CFADA7FA44E /* internal_errqueue.h in Headers */, - 1B962F4ADA3C3D59983A9D029E87728E /* iocp_windows.h in Headers */, - A1301DCF85382385267336AFDBCF6854 /* iomgr.h in Headers */, - C0BBF38B68E4920828FF8A98649F5522 /* iomgr_custom.h in Headers */, - C52997D172EC084F38246BC91F52AAF9 /* iomgr_internal.h in Headers */, - 85D2ABB1193844067592191183065E71 /* is_epollexclusive_available.h in Headers */, - 2F7F9FA8B185EB721D66EC8277CD0AF0 /* json.h in Headers */, - 17C07140B7D8085190D187B0AD91F7F1 /* json_token.h in Headers */, - D7B1B77501C395654356F9CF36394366 /* json_util.h in Headers */, - C679652095379D15C078C4C002C74647 /* json_util.h in Headers */, - 4AC304051D8E7134DDB224F3AA7C32D8 /* jwt_credentials.h in Headers */, - 9A37F4F0DA684ECF7E042E4F1D8E6DC0 /* jwt_verifier.h in Headers */, - 86D598C8A7F5A0AF643864DB1753008E /* lame_client.h in Headers */, - CF08F0A75BC5CC31F47AA5822D015047 /* lb_policy.h in Headers */, - 31DBD80FE50AD5C739C986C7E0EDB65B /* lb_policy_factory.h in Headers */, - 3701235A6D53BA48ED54B7713CA425E5 /* lb_policy_registry.h in Headers */, - B5043148CB7664C87103E6C01103376B /* lds.upb.h in Headers */, - C6FD7E1155FF7E3F5014A1D045533944 /* lds.upbdefs.h in Headers */, - A95E3D86D273C5DE6C2EF7A717F993D0 /* listener.upb.h in Headers */, - C70F42672727F6F7D428E65415DA159A /* listener.upbdefs.h in Headers */, - 5AFF29A9210816FF473D3BC6F27B5381 /* listener_components.upb.h in Headers */, - 389B56796F3F9AEE939DC626189EC506 /* listener_components.upbdefs.h in Headers */, - 304BADF895854E9BF5AE338896D90DA8 /* load_balancer.upb.h in Headers */, - 114D0758D985609B672EC23EE920A2EB /* load_balancer_api.h in Headers */, - E4EC232257EC5F7C71BF0B88262F557B /* load_file.h in Headers */, - 9C0D1090060FB95BB0A1A23B2BFD6B32 /* load_report.upb.h in Headers */, - 3D370298477FAE87585864E545D0E528 /* load_report.upbdefs.h in Headers */, - 731131434786A0DFF1FF88ED7D6D1592 /* load_reporting.h in Headers */, - 6166D51A9B17FA2B7DEFF7044D6AA94B /* load_system_roots.h in Headers */, - 8AFC2C1CCDC168D2455D5A15C5186632 /* load_system_roots_linux.h in Headers */, - E96BE1C50E4E9634BA2920C0C0C89987 /* local_credentials.h in Headers */, - 5798D0931D06B06DF3644CAE858250E9 /* local_security_connector.h in Headers */, - 348722C6FADABC41ADF3D6BE68AE7E76 /* local_subchannel_pool.h in Headers */, - 0EDF90BFE0428B831E01E9584C5A54C0 /* local_transport_security.h in Headers */, - F120FB2E78F7F9478A9A0999B2BDA9AF /* lockfree_event.h in Headers */, - 617E4E829EC99DD1F65C03E00E038B7C /* log.h in Headers */, - A7BB4A67A2043152FB6093DE38BE247F /* log.h in Headers */, - 2C7A4588EB55A5C8D34E5644C62A6331 /* log_windows.h in Headers */, - C414B9B35308A5E5F20BDC88C90662E5 /* logging.h in Headers */, - 5FE62F2515BB4124200DEAA9BA533112 /* loop.h in Headers */, - 679B6040087C60D30D4E2EA3FB6EE3F6 /* lrs.upb.h in Headers */, - 753EF3A0FE14C2FEECF26F949E2033CC /* lrs.upbdefs.h in Headers */, - 2E54871836485D9113AAF7EC1BED76C1 /* malloc_counter.h in Headers */, - 82384A3DE967D2662C1583BC20450CAA /* manual_constructor.h in Headers */, - 5502886EA91F3CA433F5B2C25CF1C9E4 /* map.h in Headers */, - 379B359C915C8D067E94F8A064138BF6 /* matchers.h in Headers */, - 81780FE9530B5AA85F0B887D894F65C5 /* matchers.h in Headers */, - 5279B9F9ED8BF2DC71D1A786CDD2E6ED /* max_age_filter.h in Headers */, - DB68353A175EDA62950E39CFEBA9D61C /* memory.h in Headers */, - 4AEFA49CF5D025F38A23AFE577DF0B76 /* memory_allocator.h in Headers */, - A525388D0619346F5C3AA03FF9CD9F8A /* memory_allocator_impl.h in Headers */, - A7975169CC474983CE0CB088C4619B8F /* memory_quota.h in Headers */, - BAF66BC0DCCC85C48CA3815942DAAA5E /* memory_request.h in Headers */, - 980BD52E03ABD7668027D2C5D3E6774A /* message_compress.h in Headers */, - 28C51D05FF5DF54675B3861174666EDF /* message_compress_filter.h in Headers */, - AF01C5B483945B19737801D6FC78AC87 /* message_decompress_filter.h in Headers */, - 35D1AFC00B34FF380D8B7C179D635A2B /* message_size_filter.h in Headers */, - 6FCA62302DB3D610A7AFEC9FB6941803 /* metadata.upb.h in Headers */, - D0762AC1AD1EE5CE9748AD26110AD702 /* metadata.upb.h in Headers */, - 35D5D734FE76518A61A9F6073D7DE602 /* metadata.upbdefs.h in Headers */, - DD6950A3EB2B80D06EBC7A3E73E4CB79 /* metadata.upbdefs.h in Headers */, - 30050E1ADBB6A7BA2067CD227E3AA9FB /* metadata_batch.h in Headers */, - 62BB8A0ED1A6C78E4A9ACA51F2873D2D /* migrate.upb.h in Headers */, - 5865EA7C58E27CE84D91A8F2A68349B9 /* migrate.upbdefs.h in Headers */, - 740C6868F5E8AA7FD21AD5A5C71DDC02 /* mix.h in Headers */, - 150FC48FA8B9714B00F9D7C6EBFDA5D4 /* mpmcqueue.h in Headers */, - 6BB75986074BE76CEAA2D04AF94D42BA /* mpscq.h in Headers */, - BECD1E67B1032365EABAC5722CCC0F39 /* msg.h in Headers */, - 4FE6CABE9307150626F4AB087D1D787F /* msg_internal.h in Headers */, - 87F3B9E9BBE9492E234D2481A8FE0DD7 /* murmur_hash.h in Headers */, - 4CC55E8E5696186BE8DF882BB1C4C103 /* mutex.h in Headers */, - EB74315DB3EEA722293DE937299F7D02 /* nameser.h in Headers */, - 0F100569E5CCEC4A38D36F2572D43EE8 /* node.upb.h in Headers */, - 1ADD5718A309E4C0442EF2FE6AA34719 /* node.upbdefs.h in Headers */, - AD1A372F44607C2A49B7F3B465CC96AC /* number.upb.h in Headers */, - A2E7E7AF724016DBE5E49EB66F658BDC /* number.upbdefs.h in Headers */, - 4E37507C08BF1BAE8231370CFC220575 /* oauth2_credentials.h in Headers */, - 9D12389F3A8EEA84E5F1659ED2A5ED0C /* orca_load_report.upb.h in Headers */, - 69FE649816625DB4150F913CEDD01F92 /* orphanable.h in Headers */, - E950455A487E23638E5BAC22EF4C092A /* outlier_detection.upb.h in Headers */, - FA9E11DD8774BFA1C877B08B1CE97C1F /* outlier_detection.upbdefs.h in Headers */, - 227F09BB8D4AD90B3273FEEA243BC17C /* overload.upb.h in Headers */, - 29ABB0EDAD5BB1F88A6341FC05DF14CB /* overload.upbdefs.h in Headers */, - 5094C1A620B9225CDA8F77ED93D3BF52 /* parse_address.h in Headers */, - 9BA78EDEE692D963A0E5819D85953F1F /* parsed_metadata.h in Headers */, - B56855EDD7E77DF931BF96B71340701D /* parser.h in Headers */, - 21EC259DF6AC9AF9FDECCBBF29534E4B /* path.upb.h in Headers */, - 59850160C9718594779EA3B00A4E64B1 /* path.upbdefs.h in Headers */, - A2B6188A64C72E181617DBE3E860ADB8 /* path_transformation.upb.h in Headers */, - 5CD2C3EC089093ED72424DF03460B6B4 /* path_transformation.upbdefs.h in Headers */, - 12F2C0B59592C17D7F658568AD42EA97 /* pcre.h in Headers */, - 04FE92165CBDEA25BA2B92B0A9A7C0F6 /* percent.upb.h in Headers */, - FC7BC3422319D382F313216C7837F800 /* percent.upbdefs.h in Headers */, - 16ED53218E42E4F5C2CEA4231C920D47 /* percent_encoding.h in Headers */, - 6B971F3346B15A0C23DFD6F4D59DD6A8 /* pid_controller.h in Headers */, - 4D1CB9ECC540976AE2CF78EF3D810DCC /* plugin_credentials.h in Headers */, - D8044D9447ABA7F9FDF749E703E26A84 /* pod_array.h in Headers */, - C80E271F077717B476B937903811D368 /* poll.h in Headers */, - E5D439535C3F4EC81073741B33B5B1EA /* polling_entity.h in Headers */, - EC8F34817862A0E028E943A9A15C60F6 /* pollset.h in Headers */, - 3F94D7980AD5F6350AD4C82FDE14191E /* pollset.h in Headers */, - F0F28D6C7513E46FCFB561D6F0BE35C4 /* pollset_custom.h in Headers */, - CEAB1006F42D61CC7EE96E982771FE31 /* pollset_set.h in Headers */, - 1BE3B391C14FBD0477B8EC5C48769BB1 /* pollset_set_custom.h in Headers */, - 3E1E51BF41E99E05CAB351CFB91A6330 /* pollset_set_windows.h in Headers */, - 0923C84F204A14F405E85E6C4A2F1CCE /* pollset_windows.h in Headers */, - 7B7677123CAB2C1F187A7434EE46C97F /* port.h in Headers */, - 7ED92393E522B688F45F48720E6AE101 /* port.h in Headers */, - 3A2705ED2222EDB5E150899EFF8020AE /* port_def.inc in Headers */, - 7925432589B7F0398B13D4DB5220AA79 /* port_platform.h in Headers */, - 607DE8E73F2648FE97562E2CC4AE0DB2 /* port_platform.h in Headers */, - 9F16A9D67AE609CEA29B6B9CECF45F44 /* port_undef.inc in Headers */, - F720D6C0988D6180879AD3838D952038 /* prefilter.h in Headers */, - 0A4AF019362EC217959672254ECE7615 /* prefilter_tree.h in Headers */, - F66D62F71DC1C8AA68FF62D5C80C8A92 /* prog.h in Headers */, - 8FFDDBEFCEDFCCA979C87D70E522AFCF /* promise.h in Headers */, - 0C803C3315EF9112A1BD633C41FD2260 /* promise_factory.h in Headers */, - 68329EC1F31A63749070B5307C206463 /* promise_like.h in Headers */, - BFFE815F637B56EE33C41DA02B27D7C5 /* propagation_bits.h in Headers */, - 0A7608CE56667DB0F2EDB4F46AD0F1AB /* protocol.upb.h in Headers */, - 6B6C87BBEDD4251D79BEBBD17212B8D7 /* protocol.upbdefs.h in Headers */, - 2A996B98BD400F63161C19B4BD38667C /* proxy_mapper.h in Headers */, - D5467C0B9978433551D39FDF73C960A2 /* proxy_mapper_registry.h in Headers */, - 9AE203AC4337B9C5666EC2132B4B1DD7 /* proxy_protocol.upb.h in Headers */, - 1CD73F3F589BF29FEC08B25F2632BBA2 /* proxy_protocol.upbdefs.h in Headers */, - 334EF0FA40CE2BA8E78C3EB8440FB0B0 /* python_util.h in Headers */, - 7C773DB302D76B7824BAB084CCBB4825 /* quic_config.upb.h in Headers */, - 40CAE1404DD86C866DC7F3568A8C1649 /* quic_config.upbdefs.h in Headers */, - 6207A468A8A11D01A989A7E91B7F79E5 /* race.h in Headers */, - DD5C23257179A27A4B050FE10A0C5E02 /* range.upb.h in Headers */, - CF2BD654C343C7D680694F8D2052C318 /* range.upbdefs.h in Headers */, - 9BE5E8A9EE4A9AE55C2C73CEB5DBF865 /* rbac.upb.h in Headers */, - AF6B8EA2966676D219B5F21AC2A3B095 /* rbac.upb.h in Headers */, - EA1C592114A2F39F89A9013D03DE9FDC /* rbac.upbdefs.h in Headers */, - 4F780BF28BC6F1824FF007532A091703 /* rbac.upbdefs.h in Headers */, - CEADF3902EE6C41190268FEB7C40B648 /* rbac_filter.h in Headers */, - AD73A48EFA73EC6136EAD9C59B6B4B83 /* rbac_policy.h in Headers */, - 50088F76CC804B158D84AC071E07CD02 /* rbac_service_config_parser.h in Headers */, - BE93ADD21E5B7DC81ADCDA31F0F8FAC1 /* rds.upb.h in Headers */, - C4CE40E8F89A43451E9CFA996CF290CA /* rds.upbdefs.h in Headers */, - BAC95E720EC73A440ABBF0322C6022EE /* re2.h in Headers */, - A7191BF3167164F69A6C453F7DC4EF61 /* ref_counted.h in Headers */, - B90CCFE82DA5BFDE944E2D4F673D75BE /* ref_counted_ptr.h in Headers */, - 127E8D1D00F08BC1BE82DD93685433D0 /* reflection.h in Headers */, - 25E4B6F5CA3D96314FB46F0502899861 /* reflection.hpp in Headers */, - 95AF18AECDA1791E2EAD97A30F6C3390 /* regex.upb.h in Headers */, - 967CD7C0E33324757D87CAB9A108A47C /* regex.upbdefs.h in Headers */, - 355167B859D86D46B178EB806B9CACC4 /* regexp.h in Headers */, - 186200AC12202EFBAFB089C02A3462EE /* resolve_address.h in Headers */, - 47A69C8E296FC62B38BF5DB653B03FDE /* resolve_address_custom.h in Headers */, - 66F7E54B1A5D9E87FDD3F24E658BF8AF /* resolve_address_impl.h in Headers */, - E043A23D0629D690E9897DC10F3AA71E /* resolve_address_posix.h in Headers */, - F9E385D629B329BEDD2CFA6C6D40BB64 /* resolve_address_windows.h in Headers */, - 933DD22D9313E4CAFBE0941CE1C2165E /* resolved_address.h in Headers */, - B3408EE1673490CF4D46D6BDF34695D5 /* resolved_address_internal.h in Headers */, - 2D16A98B4D7854F76995B5A2F9DF5388 /* resolver.h in Headers */, - EEE793E73FC6D803D54B607FAFA06859 /* resolver.h in Headers */, - D487269B5B909E432F9977185FD8BDFF /* resolver.upb.h in Headers */, - 7C1EE2CBB11156E3ACFD053C0451C22C /* resolver.upbdefs.h in Headers */, - 5C0AF927D4FD726A39831A5556D89D44 /* resolver_factory.h in Headers */, - 29C343D7DAC74365A43A8C112D6C6CE8 /* resolver_registry.h in Headers */, - 9F9EC98E49E006546FE01DE9BDAC2048 /* resolver_result_parsing.h in Headers */, - 30F02204CC830939205AB4DD49159490 /* resource.upb.h in Headers */, - 22357C68CF2E62412E776E6D86EE6122 /* resource.upb.h in Headers */, - CB91603FBD80DAB69F73841D5EFF49AB /* resource.upbdefs.h in Headers */, - 3A36D2223CC5061FF9F1D6A200FFA895 /* resource.upbdefs.h in Headers */, - F4E54F3EE5F4CB721630CAC9CB275E6D /* resource_locator.upb.h in Headers */, - BF8B57D7C62220C4779B892B2E9848E3 /* resource_locator.upbdefs.h in Headers */, - 71FEF0FE414DE7EC461ECEE07EE3DDDE /* resource_name.upb.h in Headers */, - 7062198E71DDC23B5107DB6266A47DA4 /* resource_name.upbdefs.h in Headers */, - 569A50890B8E0BCFE7A603DC42AC931D /* resource_quota.h in Headers */, - 6E374E3E4B40056961638BF09A4EFFA1 /* retry_filter.h in Headers */, - 8FBDC7C044C442F6FDEC2B4948683001 /* retry_service_config.h in Headers */, - 4031E5D2AE82D3E7E7A1181324F6D64E /* retry_throttle.h in Headers */, - BFEDB7CDA8E7BA854CAF135EB09D0236 /* ring_hash.h in Headers */, - DBE9713CDA9E3F036D65F22D75575D5A /* rls.upb.h in Headers */, - 0BA17FEC2FAA0CBE5F9E2158E5E03AD4 /* route.upb.h in Headers */, - 6563120D5F6D0322EE2036E85FA11B37 /* route.upbdefs.h in Headers */, - A6283EB938AE604DF88F083CFDC231B2 /* route_components.upb.h in Headers */, - 874B127AC36ABC5C443610745FD8B231 /* route_components.upbdefs.h in Headers */, - 6D139E3BE248CF9BCFE3A4ABFA700912 /* router.upb.h in Headers */, - 5491DBA80FBF68D32D7E87C89129C081 /* router.upbdefs.h in Headers */, - AA11B0F35463209A630BEBBC02F15FE3 /* scoped_route.upb.h in Headers */, - D42AD6D1A66646E9363FDBA41F811FA9 /* scoped_route.upbdefs.h in Headers */, - 6E47DBF37555BDCF994F0A1185CBC485 /* sdk_server_authz_filter.h in Headers */, - D05D679C4B418C95844854F369E8E18C /* secret.upb.h in Headers */, - 3AF37779A3A95BA9533A681000D65313 /* secret.upbdefs.h in Headers */, - 8ECEBDBFD43D6D6C510851286A841DC1 /* secure_endpoint.h in Headers */, - B6A7C6F6922D55889D1E866D00C90C1A /* security.upb.h in Headers */, - 9DA5D7445F536C2AC5AADE9AF6966257 /* security.upbdefs.h in Headers */, - BDD0043BCBEB3C0B2280F6B9D6BD8F1E /* security_connector.h in Headers */, - 94DC416F2E699C82C5EE9F581B661F5E /* security_context.h in Headers */, - 9C8291900D808AA135FC78970287B5A0 /* security_handshaker.h in Headers */, - 0104AB885F87E833B1ECCF6597CF8AA4 /* semantic_version.upb.h in Headers */, - 237DA81805E873D8132CD8D019CFA8AD /* semantic_version.upbdefs.h in Headers */, - D978E549099E02EE0346084347CDB37C /* sensitive.upb.h in Headers */, - 4405837D9CE761FF12AFA50E2BE6256C /* sensitive.upbdefs.h in Headers */, - 1091EEAF0DF235D0DCDB8B817717F3D9 /* seq.h in Headers */, - 234F4E3EACEC8D7E7DA5DEC01BC31002 /* server.h in Headers */, - 8339F798A77C80E684D4FDE99E5C92CD /* server_address.h in Headers */, - B1315CB4CCE343F630984FEFC113AD15 /* server_config_selector.h in Headers */, - 788A1949B5811388C743A64C8D4323D8 /* server_config_selector_filter.h in Headers */, - AC73744A665A100A2C6DBD06967F8C8A /* service_config.h in Headers */, - A3036B82C41B4D1DD49C4999F946008A /* service_config_call_data.h in Headers */, - 74CC5E1509D09FEE2BBD920DF83D0451 /* service_config_parser.h in Headers */, - 563E22CBA60BA0D9823BD42DD1D1D2BE /* service_config_parser.h in Headers */, - 558BBA92FB0891E91F9B1E7B70B33869 /* set.h in Headers */, - E7E55046E8C02390F574B3FD25AEAAE0 /* slice.h in Headers */, - 6EB3D0E0569E670D82FF18E92BC9DA7E /* slice.h in Headers */, - 5DAC4EB559C5CA0502E26646AF33E7F1 /* slice.h in Headers */, - 676A23819C99841282A2F78545599756 /* slice_buffer.h in Headers */, - CEB44FA5F8D9D7BF0F180B723DCC6B9C /* slice_internal.h in Headers */, - D53A6D0A5A1114E06314198E15888E43 /* slice_refcount.h in Headers */, - B2AC0DFF4CD03A75EF3F1A7E6682ED91 /* slice_refcount_base.h in Headers */, - F5A2119448BC3F79F7672E6A3012D76D /* slice_split.h in Headers */, - 3064B01798D31D04A2E8DCE420085408 /* slice_string_helpers.h in Headers */, - DDBC7C15BFBA88003AD56DC5AD37B2AC /* slice_utils.h in Headers */, - 4F218663475982A9423EC5C01AA23605 /* sockaddr.h in Headers */, - 4F1F4E7575DE0EA081EDC85B74B7C50A /* sockaddr.h in Headers */, - 95B0D8A05935EA5952D3002555167E60 /* sockaddr_posix.h in Headers */, - 3D5DD3DD3714EE3AFA5ABA508E58AE15 /* sockaddr_utils.h in Headers */, - 46516425321AF5ACE75893A84F3EF1DE /* sockaddr_windows.h in Headers */, - 018DD5546A554466CD4762EA1F663C31 /* socket_factory_posix.h in Headers */, - 3F20E946377BBFBA786E14D4AA3BC764 /* socket_mutator.h in Headers */, - D2C92477A2DFD329428A4356479184D2 /* socket_option.upb.h in Headers */, - DE8823A8B5D6643FD8C275D1B1BB05E9 /* socket_option.upbdefs.h in Headers */, - 76D1C51C390847EC99E4291688E1F496 /* socket_utils.h in Headers */, - 103729B75D804343E7B8869379A3791B /* socket_utils_posix.h in Headers */, - 04B8B4BE66FBAC22B67AAE24870900FA /* socket_windows.h in Headers */, - 6A45FFDF2582729A75CA800241BFEC22 /* sparse_array.h in Headers */, - B3EECA8545F8C24F2A9C110585E529E1 /* sparse_set.h in Headers */, - D27A5DC22C2ACAD9C2D7EF40EEFB01F0 /* spinlock.h in Headers */, - 1299814C96AB203EB335DBD0E0CA83FF /* srds.upb.h in Headers */, - B30B3110015D4D5052EDE18974B64C57 /* srds.upbdefs.h in Headers */, - 86CFEF11A1857B473FEB517D11BBC0FC /* ssl_credentials.h in Headers */, - B6E6356740348B919C4A739DBBDA6EB4 /* ssl_security_connector.h in Headers */, - 15BD96C10AEA6B0C9905F0E3DDCE36E5 /* ssl_session.h in Headers */, - BDEA3E019936C2EFCB3D27D1FB60D4A8 /* ssl_session_cache.h in Headers */, - 71A31B15D17A110607B1A39685D0AE80 /* ssl_transport_security.h in Headers */, - 49EECF49AB01418E9E65EE8FD738519C /* ssl_types.h in Headers */, - FC59EA6D3BE8757920DA3DEBED9C2556 /* ssl_utils.h in Headers */, - 775D2E33935B863E3F5606F2A5D15808 /* ssl_utils_config.h in Headers */, - 5BB5DBC7C6D51A79A0F258C264CC1AB6 /* stat.h in Headers */, - CBAFD7AF32CF71071C9497729345FD52 /* stats.h in Headers */, - C784335B663C9FA5B612A7BBB9BDD1F1 /* stats.upb.h in Headers */, - 5237EE364D82DA624A33450313BF50D8 /* stats.upbdefs.h in Headers */, - 0F32911F7E4437E6BC5E7299150DDB74 /* stats_data.h in Headers */, - 1809E4EC3C96BC9212A3027878D84C12 /* status.h in Headers */, - 8E352F67011796DB0022B3C1459A1E31 /* status.h in Headers */, - 5FBCE56EF98CE915FCE07F69EEA748FD /* status.h in Headers */, - 217935C9040C1CFA2E0596D4DF793F3C /* status.upb.h in Headers */, - CD26A07C9EF27234E6B26AA36ED66BDF /* status.upb.h in Headers */, - 1F1553F8F9402DAC2AE79BD23AE4D816 /* status.upb.h in Headers */, - FAF5725C9AF02A92A613F9F0F4790FC5 /* status.upbdefs.h in Headers */, - 7685A31A61347A7EEA6631EAB0003B8A /* status.upbdefs.h in Headers */, - 99FF4CE016FB173F2F424683DE3094E4 /* status.upbdefs.h in Headers */, - 0C9670FD5EAC0511E169C3327F7CE178 /* status_conversion.h in Headers */, - 9198875D102F25230AFEC93637636A6B /* status_helper.h in Headers */, - 4D6F20C7EF939B099601B9707F43023F /* status_util.h in Headers */, - F90C7548D23CD026F4D333CD8FC34FE0 /* stream_map.h in Headers */, - C7C3CB084D655DEE9B69EAEA63DC33B4 /* string.h in Headers */, - 324D2BEFC7024FBF4D0E495B810DA201 /* string.upb.h in Headers */, - 771623BA6D0FF82C6E850285FAC5E6CE /* string.upbdefs.h in Headers */, - 2C4BCAB974C6C5314CFF2B939E250C61 /* string_util.h in Headers */, - 66CB41EDF30C6EA869DB3E918F8AFEF5 /* string_windows.h in Headers */, - 4FCCCB1BA24ED0EA0EC84964EBA37191 /* stringpiece.h in Headers */, - CB98760BC219A976877D5A9CCD7446FE /* struct.upb.h in Headers */, - 2DC86BF8AD31A33E27DFEB88DD11A75E /* struct.upb.h in Headers */, - F7CB12842FCF1F8CFF344466FEE5CBB5 /* struct.upbdefs.h in Headers */, - 23852202E509E8776012859589DDF2B0 /* struct.upbdefs.h in Headers */, - 5905F131B88C64C9E3ACCC1C6ABCED90 /* strutil.h in Headers */, - 54C48565086DC09C162448AA354B3925 /* subchannel.h in Headers */, - DAC1D2E83DCEEB36DA5E581A55A43E75 /* subchannel_interface.h in Headers */, - 59823950EF247B94DC0D3B29E2093829 /* subchannel_list.h in Headers */, - 8D44739252660EFB1CC25849AC076527 /* subchannel_pool_interface.h in Headers */, - 4E5B066C3BBC0F4B31392A0B3990816E /* substitution_format_string.upb.h in Headers */, - C79ADF4D8D1D6C44A6BB4A6E9EF09472 /* substitution_format_string.upbdefs.h in Headers */, - 6A8AE5B7F386D99D0FA8DABB2023B0E1 /* switch.h in Headers */, - 7E5E65167A14C376074588E49339222C /* sync.h in Headers */, - F81007A41F5DF7EDF825FAD380D3B055 /* sync.h in Headers */, - A1444A866270314497FEDF3E34D7EA14 /* sync.h in Headers */, - 83EEE427BEF26C7BAFF3B35F7790B04F /* sync_abseil.h in Headers */, - 43598B9F63377D4BA667DE2161E7696E /* sync_abseil.h in Headers */, - 0091F107396449DE7B03257928038EF5 /* sync_custom.h in Headers */, - B90595F570D76926A598CBBCF0540598 /* sync_custom.h in Headers */, - 68415C911E443DE981DD19E80CE81542 /* sync_generic.h in Headers */, - 7ED7E8CC9CB8B32BCA50F46709839A6A /* sync_generic.h in Headers */, - FE7E6CA214928B89C7A4E78C1AEA3B2F /* sync_posix.h in Headers */, - C3E9ED573D814351DAA672D187B170CF /* sync_posix.h in Headers */, - 0A0ED5D16EF87F876DEBF0D17ED255B8 /* sync_windows.h in Headers */, - 4F92C624EEC7F193C8BBA2F012BC0B40 /* sync_windows.h in Headers */, - BBF8DCE7D0FD090E745112A9636A71C2 /* syntax.upb.h in Headers */, - 09DF937FA931AD6D44AB59332E868420 /* syntax.upbdefs.h in Headers */, - 6C98617F7E47AC442F6EC61583D3B2C0 /* sys_epoll_wrapper.h in Headers */, - 75AF2BE0FABEA23C6DF998865702BD96 /* table.h in Headers */, - 07BD459C89A4A9723460B3465547B922 /* table_internal.h in Headers */, - D8358AD947CC8359E34C34591AB4870D /* tcp_client.h in Headers */, - FCB73BC728C4ADA73BAA517F686E6C36 /* tcp_client_posix.h in Headers */, - FB6A34E27CD99ED5FFBC9E6B5B3E0F41 /* tcp_custom.h in Headers */, - 4CCC48E5C40CDAC2A1F0FF238F35CD00 /* tcp_posix.h in Headers */, - B2E76ADD5B56685D5DAA26510235955F /* tcp_server.h in Headers */, - DC0AE2093AF65E6165457DE637A9297F /* tcp_server_utils_posix.h in Headers */, - C12B651D89725DEA81B113F4F3F4A43E /* tcp_windows.h in Headers */, - 92AFD6F2BE59A381654C904F0054F952 /* test.h in Headers */, - 3EC82066B92192C6DB634818117B24FE /* text_encode.h in Headers */, - 33D14AC3AA299A6A4726414D7E934C2D /* thd.h in Headers */, - 6962DBB31DAB366F682F73A8ECDFB8F7 /* thd_id.h in Headers */, - 924A70AC0D859C8ABF3374D05DEDE460 /* thread_quota.h in Headers */, - AE819626F600A97569BB57E02C476338 /* threadpool.h in Headers */, - BAAE6C4AE9EC7452BEE436044D7472C3 /* time.h in Headers */, - F3262161FDA16F39CB60CA93EFD90966 /* time_averaged_stats.h in Headers */, - C3B6FEBDCFB1148E17207B87DFD6B713 /* time_precise.h in Headers */, - F32D4BEAA63ADA978124D3B546309B71 /* time_util.h in Headers */, - 596806DEB4EF093D619E8BEE502CBBA9 /* timeout_encoding.h in Headers */, - B1BF8B0C692E0D3388F92A7FBEEA517B /* timer.h in Headers */, - 423D879B89CB9EDDB5A5F433DB4BCCAB /* timer_custom.h in Headers */, - 71D44D53D46728899036D03524A3624E /* timer_generic.h in Headers */, - F06F1D65C6AD18EB5D27DAF90AA3BCE7 /* timer_heap.h in Headers */, - 0E93E760EC0E935E9DC5152A5B5C9B7B /* timer_manager.h in Headers */, - 113800ED0F04C2DBFCE51F954AE32718 /* timers.h in Headers */, - 6A6D7292647CC9FFCE64F27A2D3BFCBC /* timestamp.upb.h in Headers */, - CC212CB8ADE3891B0127248A4D403973 /* timestamp.upbdefs.h in Headers */, - 79F5487F3ED8509ADF2AA5D09BDC5691 /* tls.h in Headers */, - 72878874E6D89779E8CFFB27253F503E /* tls.upb.h in Headers */, - 4B843EA4C44E89DF68442EFA3CEACEBE /* tls.upbdefs.h in Headers */, - 78E0B409564FB698F21B5FACF6F1CCF9 /* tls_credentials.h in Headers */, - 6253D657CBE1FD50FCC0D076058C6216 /* tls_security_connector.h in Headers */, - C64FCE50C97E886F3B33B7C9A64F0695 /* tls_utils.h in Headers */, - F9DED8F3311ABD5134300B66D8D2CDED /* tmpfile.h in Headers */, - E70059F81F75BC9256CF1D5D64691FC3 /* trace.h in Headers */, - 8890ABBB1EFA5EAE37B3AFC1E826D1B5 /* trace.h in Headers */, - D49B0F6B8C4B332118563141A9509F6D /* transport.h in Headers */, - 1E03AEE7303CAF7FBBED16BFD95D9A0B /* transport_impl.h in Headers */, - 0390B8391157197B1D243D342AD17E8C /* transport_security.h in Headers */, - F41C80CAEB84A54A4F66171F409CE3BB /* transport_security_common.upb.h in Headers */, - 3EE26B4456554061ED3AD6082B6445E0 /* transport_security_common_api.h in Headers */, - 31483DE6A17D994C08990FF165C3E154 /* transport_security_grpc.h in Headers */, - 1F3E3AEDF3BD08F0878FB83B06121805 /* transport_security_interface.h in Headers */, - 3F68B4EAA888267C9FA39A4EBED65DE4 /* tsi_error.h in Headers */, - 48F20FC5A13E89F03B5A026C19AE6E24 /* typed_struct.upb.h in Headers */, - 95DF8D0079162858D56EA915C5E64050 /* typed_struct.upbdefs.h in Headers */, - 3F811898F85F4BC5EF06BDCA291C102D /* udp_listener_config.upb.h in Headers */, - E0AA8FDA6FC9758B9F3B58BF3633439B /* udp_listener_config.upbdefs.h in Headers */, - ABF73A92C5588E1FD57ED1BCC22B18E3 /* udp_socket_config.upb.h in Headers */, - 5A7B90AB60530A6D272CF70FE95A84D6 /* udp_socket_config.upbdefs.h in Headers */, - 8550CDAB9F59A5CB803C422E0C873401 /* unicode_casefold.h in Headers */, - 3CCB7ED20FEBE1359055A0C67E5BCDDE /* unicode_groups.h in Headers */, - 395485F51F8B73BEA6B070DF670CBCDD /* unix_sockets_posix.h in Headers */, - 50853F9738F69F4367A29335649F33A9 /* upb.h in Headers */, - 22A52C2FD7CB3181F4B665FB7CF7DE40 /* upb.hpp in Headers */, - 8824D3436E0F14C4BFC7D1D7A0CEE6CF /* upb_internal.h in Headers */, - 8107E0AC5477B9983CA11B315106E0F5 /* upb_utils.h in Headers */, - 8C94483FFC9B752F1A2F1E80512E0B00 /* uri_parser.h in Headers */, - 46E1DD28852B2A180D83A210F617BA3D /* url_external_account_credentials.h in Headers */, - 35F70231FA8923A1A6CAC58B6742D331 /* useful.h in Headers */, - D4B3E52A9D3529C0C806B46B3EE95913 /* utf.h in Headers */, - 560426D3D40FA17F2D276FBB8AE7F2C6 /* util.h in Headers */, - 69856489677D29243240309BD823E44A /* validate.upb.h in Headers */, - C6BDA680E13AA3D9F758C7C5C6469D23 /* validate.upbdefs.h in Headers */, - 431ABFE60BBFBD77186A08B2687B53DC /* validate_metadata.h in Headers */, - FCA196D9843ED0253BEFEC85D6748EC4 /* value.upb.h in Headers */, - 83923EDBBC60F965188D5C3F9EF664AE /* value.upb.h in Headers */, - 50B68BF86B8E717BA7317EA3EAE1B0B9 /* value.upbdefs.h in Headers */, - FE9B1DC6C5BC2724C54360E8061E276F /* value.upbdefs.h in Headers */, - BBD7CF2B54AB682C28CBA37CA191FBF9 /* varint.h in Headers */, - 5E34AD220BD8B0D8C359FBB8013A4BA5 /* versioning.upb.h in Headers */, - 4294D7F3C76E4B6C2D12E3F7353443A8 /* versioning.upbdefs.h in Headers */, - 7F8C79A4B6552E97641856DEE1F10982 /* wakeup_fd_pipe.h in Headers */, - 8EA8CD516749B76205C9316D77D8603F /* wakeup_fd_posix.h in Headers */, - 350E982E6A058267244444BE224F124C /* walker-inl.h in Headers */, - D5208FE06385E94DFA4FEF2CAE16C923 /* work_serializer.h in Headers */, - 388DB6CA8A7342201596944ABE81BDC2 /* workaround_list.h in Headers */, - 2B7EE2EBB7CF7AB35FB5732B2431BC6E /* wrappers.upb.h in Headers */, - 551BC6A54DCD621B3CBEA2E49C74CECE /* wrappers.upbdefs.h in Headers */, - 1F5F50D582B01FB621B5856E0D710C2D /* xds.h in Headers */, - 594B0770904557F6145BC839BE65AF69 /* xds_api.h in Headers */, - 5523C4F22D8C0181DEA311DB28689DF7 /* xds_bootstrap.h in Headers */, - 407106BFE176F7CA3C351370D3A777AF /* xds_certificate_provider.h in Headers */, - 41604B001EFFD1CA32927F5E6BFE7034 /* xds_channel_args.h in Headers */, - B828458DCC6A43F8CB749C4FFE1421F5 /* xds_channel_args.h in Headers */, - 5A9AB33FE3C740747875143A3EFB9F11 /* xds_channel_creds.h in Headers */, - EB37E6854E141C44C7954106DB0FE0FD /* xds_channel_stack_modifier.h in Headers */, - D3258E8E73E2600E115340F0B08328F5 /* xds_client.h in Headers */, - E1D7C27DBA051E2D64B964CF850D9F71 /* xds_client_stats.h in Headers */, - F5812C304C891AF9725C2D4E2E655028 /* xds_cluster.h in Headers */, - EE8B6B448C9A3DC85D669477D53F8F96 /* xds_common_types.h in Headers */, - 4D92F8DC1F56F196BC80CD823F0B6D67 /* xds_credentials.h in Headers */, - 796F4E5C06C962EA4041883652C8A4B0 /* xds_endpoint.h in Headers */, - 1888D4C3363FF47CDB25D1F1517844B2 /* xds_http_fault_filter.h in Headers */, - 2BEBF63730B09D5B62B734501EE89C7E /* xds_http_filters.h in Headers */, - 35ADF351930DFEFA8C11EC1ACCE1B68B /* xds_http_rbac_filter.h in Headers */, - 25DF3C76A1FCCC21A7C9C1238B88DC59 /* xds_listener.h in Headers */, - D7893884A08B4D5CC01E11D84C91A60D /* xds_resolver.h in Headers */, - 27D17847F4A35DF821C219DC283A7525 /* xds_resource_type.h in Headers */, - E925782C50FE47983ABEABBA8A934341 /* xds_resource_type_impl.h in Headers */, - B3AAB15BCA755B9755D9FF1DF17AA6EB /* xds_route_config.h in Headers */, - 31C1A1694D64039270617D2AEB429F30 /* xds_routing.h in Headers */, - 430491F7DCD0F6E37524470473C1B7CC /* xxhash.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D9751BAE80AAB78813D4CD54871AA6BF /* Headers */ = { + 21D1636028B7D0E7B1363E06873603B3 /* atomic-ops.h in Headers */, + 87A1ECC66E10B261DAB72B625365E412 /* darwin.h in Headers */, + 5D29C72DFA5B1B95D79E81D105883045 /* errno.h in Headers */, + E78A2F2AA136816411F7EE6E2C873008 /* heap-inl.h in Headers */, + 34477177001B7948CD5839D4DEF80198 /* idna.h in Headers */, + 1EFC93F46E08CDBA7CCE3D114F757BDE /* internal.h in Headers */, + 717243E3FE14F972DEBC57479867DC6A /* Libuv-gRPC-umbrella.h in Headers */, + C29C295AFFAFDEB14D6A4D6C76AC626E /* queue.h in Headers */, + 697C04EA789210DD93ED59CC0229B140 /* spinlock.h in Headers */, + 3432AEB2E83118B865E04287917D68C2 /* strscpy.h in Headers */, + E2A1ECC2BB28CF29E70ED523D4002FF0 /* threadpool.h in Headers */, + 40F01EB6E1B4BEE3BF06D21B174510F5 /* tree.h in Headers */, + 87D031BE93CEEA335ECC62EB8679AD3A /* unix.h in Headers */, + FEFCE517BACC840D416EDF911017EB23 /* uv.h in Headers */, + BBFD2C7CA600969F9D9A8BEE46519732 /* uv-common.h in Headers */, + 16503E4EB6D994EA5BACD71D96D6BEE5 /* version.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D5C89727B64554854AF064287F6B5CAB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0F5F94465383A19F442F1C4C28D1DC36 /* GTMSessionFetcher.h in Headers */, - A583FBD39C99E02075E361BD64D59EF0 /* GTMSessionFetcher-umbrella.h in Headers */, - BE0C3867364C15CB8ACDFF0595A8E862 /* GTMSessionFetcherLogging.h in Headers */, - 1756349B33C63E1056B8D5939C6DC620 /* GTMSessionFetcherService.h in Headers */, - 1152A45976DFC79CD6EFDE9BDB481DB4 /* GTMSessionUploadFetcher.h in Headers */, + 159363F8023FC04D3D04679201B6D236 /* accesslog.upb.h in Headers */, + F0442D2E2F04A54D8BB508BE59A4C459 /* accesslog.upbdefs.h in Headers */, + CAFFE1A9526BF0A596FDBA7FF811709D /* activity.h in Headers */, + 30EC0E41855CE334D43754D555E2678B /* address.upb.h in Headers */, + 058CC5BECE38232B1EB183B87FADD802 /* address.upbdefs.h in Headers */, + 3FE23A18648082668AE63C52B652CD97 /* address_filtering.h in Headers */, + 4A7FB6FE516564B1C6119ED4473375AF /* ads.upb.h in Headers */, + 6F0D48DA47FD4E2FE57717521D945407 /* ads.upbdefs.h in Headers */, + E2021D31F73AD3289F5314907196BD37 /* alloc.h in Headers */, + 7D42C73B77127F80063B10126EDBCD6C /* alloc.h in Headers */, + 6A89A06C47BB6CBA8CCFF3ACEBBA9163 /* alpn.h in Headers */, + D637A459501F3428E29ABC96510D84E7 /* alts_counter.h in Headers */, + 2EB79817EFAB6B6FDF36BC3ECDD840BD /* alts_credentials.h in Headers */, + F379BE2580691783284B3EFCAC123B21 /* alts_crypter.h in Headers */, + 05DDC5F5FB8AEDA7AA3AF58A22232C72 /* alts_frame_protector.h in Headers */, + 32E9BE7EBFE7BA60AF09702444598C71 /* alts_grpc_integrity_only_record_protocol.h in Headers */, + 52438C0274C4893C7278229027E49757 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, + 5157E5F8D7DB2B42C1C3F9FC8FFB15C6 /* alts_grpc_record_protocol.h in Headers */, + 1147EA95C75C9EB80263E770E45CB9DB /* alts_grpc_record_protocol_common.h in Headers */, + 8C5AED08F8A3B621569430431025B526 /* alts_handshaker_client.h in Headers */, + 598E80D4DFCCE15E8D2B4D4335A7B287 /* alts_iovec_record_protocol.h in Headers */, + C18AAD2812F3E59A253E8B4014B8B5EF /* alts_record_protocol_crypter_common.h in Headers */, + 1500314D29D16A9A01945E3692AF69BE /* alts_security_connector.h in Headers */, + 486902C560E3F9B66487DB5B15E80416 /* alts_shared_resource.h in Headers */, + E7322E97CDB432680395E977B3AA3135 /* alts_tsi_handshaker.h in Headers */, + 0A5235C8122E50FAB1A2C0748C378528 /* alts_tsi_handshaker_private.h in Headers */, + AF9C868EE669FE3037599D50047337C6 /* alts_tsi_utils.h in Headers */, + 3C06A2501ABCC6A0EF9D5CC8E91A41B0 /* alts_zero_copy_grpc_protector.h in Headers */, + 1DCB0DD07C68D2EB76661AE109963C35 /* altscontext.upb.h in Headers */, + CC9F9E445B16409F2DD41D335C49B39A /* annotations.upb.h in Headers */, + 3847A0B34EAF89264F607445825E9869 /* annotations.upbdefs.h in Headers */, + E65671B0EDB0DDEAB06DFF7DA9950DFF /* any.upb.h in Headers */, + 7F1AAFE6C6B4DFE87B48E1BED46AAAFB /* any.upbdefs.h in Headers */, + 252869D7AA29AE4EEC54848E9C52D2BB /* api.h in Headers */, + B95C723A503FE54091B910A884F2EC12 /* api_listener.upb.h in Headers */, + 86E4E1AEBD536BB4AFE4892E7AA8B897 /* api_listener.upbdefs.h in Headers */, + C7756D5A772C175C25216BC67F1E484E /* api_trace.h in Headers */, + C04F0AC58430175C51256C791838FB7D /* arena.h in Headers */, + 5E5AACC75D7D0304C1F138B93E4C69F0 /* atm.h in Headers */, + 665FBC73D83202C05144AD8BFFD63D86 /* atm.h in Headers */, + ACA7F5F15B88F83331CD4410400076FE /* atm_gcc_atomic.h in Headers */, + C91820634886D990EE7364F6FFACE549 /* atm_gcc_atomic.h in Headers */, + 748DCFD7F110C7EB13D7F2A192B8A18E /* atm_gcc_sync.h in Headers */, + B1FD3675FB9D16806C86FE7D94BF202C /* atm_gcc_sync.h in Headers */, + F006BA40E6CF92088DD9751BA6638BB5 /* atm_windows.h in Headers */, + A5090A066FE60D8A0B639CD845CC900A /* atm_windows.h in Headers */, + 947FBA4E0DDCEF8E29DFCE93834D25CC /* atomic_utils.h in Headers */, + E4557987D0A5C3DD2C8F72C7E2DCB98A /* auth_filters.h in Headers */, + 7AF3C8E0B4D4CDE10B09A8D88A56B81A /* authority.upb.h in Headers */, + 4A5214793B6B4A257E01309906398203 /* authority.upbdefs.h in Headers */, + 742BB36A9E371CCDFDF00A23AA6AB005 /* authorization_engine.h in Headers */, + DA267132C718858AA678ACE8A934947A /* authorization_policy_provider.h in Headers */, + 793137FF13B4DF1328DFAE50E1F39D5E /* avl.h in Headers */, + 1DBFA205331D68FBB5022681A4757D4A /* aws_external_account_credentials.h in Headers */, + A0A0B6BB09995CD1828C8F4A20B492FB /* aws_request_signer.h in Headers */, + 13A1EC7B6165CCB2F9DEB9E5B7D9CF6E /* b64.h in Headers */, + F0FBA6A1B41EED94077236ACD3C2C413 /* backend_metric.h in Headers */, + B53696FFBB8199FDD8F17139BA026A9A /* backoff.h in Headers */, + 29665FDAD8C949189A9843226DAB76D2 /* backoff.upb.h in Headers */, + FC37FCCE988EC342B9E5B1CAF7321404 /* backoff.upbdefs.h in Headers */, + 337A48288BDC518182BE32201FC5FFE7 /* backup_poller.h in Headers */, + C05F10D2887CBA869DAC97C5CC41E707 /* base.upb.h in Headers */, + 0B63A07C427BEA558980D1129694592E /* base.upbdefs.h in Headers */, + C68789BB71BF51759927AF6221019C27 /* basic_seq.h in Headers */, + 9D541E67308EB86A2A64F64BBD7E83B8 /* bdp_estimator.h in Headers */, + 85C378666BA3C67C859FC3CECC8EC749 /* benchmark.h in Headers */, + 94BA108162111B87C69D1DF9EC63F7BF /* bin_decoder.h in Headers */, + 40438A7E27EF2A395563FC2810341584 /* bin_encoder.h in Headers */, + 62DB01B9C96B534DB0BB353528F7601E /* bitmap256.h in Headers */, + 822486FF849BE10423A70F47901054E7 /* bitset.h in Headers */, + D12F01FA2FD7F06E462AAC1A897587BA /* block_annotate.h in Headers */, + B5EF5871DA8659507BCDBBDEA742F9A4 /* bootstrap.upb.h in Headers */, + 48A3209F94C4BA2814544767C8F70217 /* bootstrap.upbdefs.h in Headers */, + 99107F2F5639004A480E24D11D8734BD /* buffer_list.h in Headers */, + 44172347113BD8350E844FA325E9E4CF /* builtins.h in Headers */, + 2BB7599FB959C4BF83D29F0D26E95852 /* byte_buffer.h in Headers */, + 2A51381B718A709E6110DADF8D1A5D29 /* byte_buffer.h in Headers */, + 8C28C0EB033E506FCA9EB9ACB6DCC1AD /* byte_buffer_reader.h in Headers */, + 7B1F085168F4410CEC4E30A1F635513C /* byte_buffer_reader.h in Headers */, + 657821F6B9926841482886C3C38E609E /* byte_stream.h in Headers */, + C4827C41F9F5DA4561A51E2656499C33 /* call.h in Headers */, + 96605BD33730753BFE97FD3BA561CBB1 /* call_combiner.h in Headers */, + CF9F1554C789192A5F94ECE0E86593C8 /* call_test_only.h in Headers */, + 09CC3295414DA9B190E32FF306F9C663 /* call_tracer.h in Headers */, + 865F6A2CA7A5FC3FCE39F9DEAE93568D /* cds.upb.h in Headers */, + 09E1A98010A5CBB94EB46FDE6D534047 /* cds.upbdefs.h in Headers */, + 7902D9851539053D418216BE2677216B /* census.h in Headers */, + AF49153A9B6CA638D7C943B32A371838 /* cert.upb.h in Headers */, + 84C065EA7432FAF4AB1D4F0A4159680E /* cert.upbdefs.h in Headers */, + 8779A679376E3D5FBE22B5D3C0248B08 /* certificate_provider_factory.h in Headers */, + B8B24DD70C3EF473C4E75AE6BEEBC3DB /* certificate_provider_registry.h in Headers */, + 1F2761F59CCB07CAFE4077D984CF5166 /* certificate_provider_store.h in Headers */, + 79D960ACFF43CA9C6629073A9E48B045 /* cfstream_handle.h in Headers */, + 6584901BA9389486B11CFA478E392161 /* channel.h in Headers */, + 3250BFF2A66079F3D9885CFAECA8DC5D /* channel_args.h in Headers */, + 83F8585328BB9FCD3DB76384502D4B84 /* channel_args_endpoint_config.h in Headers */, + C075E37A28263F29B2544151C5F21FE5 /* channel_args_preconditioning.h in Headers */, + 1644809A5AF666E7C95865562F1A63A3 /* channel_init.h in Headers */, + 5FF502E9281821D03FE7B4F86581E871 /* channel_stack.h in Headers */, + 73232FC9F36A4CF9C67832866757EFAF /* channel_stack_builder.h in Headers */, + 95E7ACD0C161F7F4A3286DCC29A8E443 /* channel_stack_type.h in Headers */, + 4DE0A3B1410CD02804D6D70F87C16FE6 /* channel_trace.h in Headers */, + 9D00221F0A71BC97644448020B374CE6 /* channelz.h in Headers */, + D939F5DAECD1589055C61A69BE38A37F /* channelz_registry.h in Headers */, + 1725D62A8B016F1FCBAE555466C4619A /* check_gcp_environment.h in Headers */, + 7407A31C7C4BD38897BC8381E4DB0E94 /* checked.upb.h in Headers */, + CC46B600F9765A38E17C87D0B6869224 /* checked.upbdefs.h in Headers */, + 2DE5B5818B49C83419A1B11BC670D0E3 /* child_policy_handler.h in Headers */, + 8D408AE9171D1756197DF1263E27880D /* chttp2_connector.h in Headers */, + 6A2C4A72E1CDB40BAE9248BADF96C5A9 /* chttp2_server.h in Headers */, + FE86F4FA06D82D27D556CA0664A54872 /* chttp2_transport.h in Headers */, + 963F8AA6477EF827B5BA1F926C0883AA /* chunked_vector.h in Headers */, + A510165C0F45CC87EFE06D5525D2CEE4 /* circuit_breaker.upb.h in Headers */, + 9B16DA4838964A3EBE2E66D455A644C2 /* circuit_breaker.upbdefs.h in Headers */, + 1D726DEDA168EDB88FE828A49CC3E09F /* client_authority_filter.h in Headers */, + 7AB140A6874980EC0E0FCE459A01B4CA /* client_channel.h in Headers */, + 03066A239E4F206E0AE36D546961F9C2 /* client_channel_channelz.h in Headers */, + 57C3D8EDAE854B1AC2D7481D4EDEBF9E /* client_channel_factory.h in Headers */, + 5E5F77B30A067024D835609FE8079C76 /* client_load_reporting_filter.h in Headers */, + A13DEA33083302F2EDE77629E434DF7D /* closure.h in Headers */, + 01AE59E4221AFE4BC6482C90E8F90C26 /* closure.h in Headers */, + 329B28C51AE83C31DEB8D2FF1D514EF3 /* cluster.upb.h in Headers */, + A1D7C3A99642AD61407A22753011CA12 /* cluster.upb.h in Headers */, + CB3DD98EAC97323F314D84AD4042E720 /* cluster.upbdefs.h in Headers */, + 9CE234E3470DAE2E7C78D11FA425271F /* cluster.upbdefs.h in Headers */, + A161859716535E3035D1D3D5EDAA1590 /* collection_entry.upb.h in Headers */, + 7FDFAFA5D3F55D63246A41874AA4C1C8 /* collection_entry.upbdefs.h in Headers */, + 07FD5A1ED5AFB84D618AAA48F78F58A6 /* combiner.h in Headers */, + 0C5EA163D43AF24E5D4CBB9D241309C9 /* common.upb.h in Headers */, + AA4BB5A52A99F549B1B538880B3E026E /* common.upbdefs.h in Headers */, + 1B6470A4C47598462F074402D40F48A8 /* completion_queue.h in Headers */, + F29E55C582F7CC29298FAE15D91BEF9C /* completion_queue_factory.h in Headers */, + A445C99DDA3BCF8639C57BA9FE79AB82 /* composite_credentials.h in Headers */, + 75A478D0D58762217FB37FD57859B543 /* compression.h in Headers */, + 0349785F115AC6638B7F7FBC195BB236 /* compression_internal.h in Headers */, + 59DD62963CB013A3E26344135804B71C /* compression_types.h in Headers */, + D9A672721524EF7ABE5FAAFFB093045E /* config_dump.upb.h in Headers */, + 729CE2A1EB67566C9E07D6B97750AAEF /* config_dump.upbdefs.h in Headers */, + DFA3AB5C75AC75D39FE50C8815D6121F /* config_selector.h in Headers */, + 4B3101C9FF8084D6F2061C93BD053CD3 /* config_source.upb.h in Headers */, + AB30E1B33E4B888EA0100007A5003F71 /* config_source.upbdefs.h in Headers */, + 5F6C3ECD8A0C79B1384D34B773B49C86 /* connected_channel.h in Headers */, + 6A8BE7B745B77309DA0175C0C017481A /* connectivity_state.h in Headers */, + A1E6B00ADAD696BDE55829EC64FAA35E /* connectivity_state.h in Headers */, + 28BD394D79A608405261569265A2FA1D /* connector.h in Headers */, + 1BD12364C8A4890E59157700D73C4B77 /* construct_destruct.h in Headers */, + D94C4327B05FCAFC48152232702C434B /* context.h in Headers */, + 3D6017B722ED9770F3C15D3A9616EF6F /* context.h in Headers */, + A4AF88054CCB6C539D8F08E9EAABEDF9 /* context_list.h in Headers */, + 59DDE46FC6D61C9F89DDEE64AD47221F /* context_params.upb.h in Headers */, + E64FE4A3490F21E47ED6E83CC5DE5803 /* context_params.upbdefs.h in Headers */, + 5412A8F96F01E62261E3EC45E66C2F26 /* core_configuration.h in Headers */, + 9AA9C0FC3F77C51569D101FBB33A6531 /* cpp_impl_of.h in Headers */, + F564DE981A5ED77FD775485719609AA5 /* cpu.h in Headers */, + CF91DBBE2AEFA08258097D918A2A41C2 /* credentials.h in Headers */, + 7B01A7DE941C3007C1D849ABBC49079A /* csds.upb.h in Headers */, + A5803B9C8BD097679A061C74F39F7DCD /* csds.upbdefs.h in Headers */, + 8A0759B6E6D117016720F146104312D0 /* custom_tag.upb.h in Headers */, + 6DA031208329F9DDF990338AD51710F9 /* custom_tag.upbdefs.h in Headers */, + 3CFB1AA6BB93D5F5D90FA72BDAA457E0 /* deadline_filter.h in Headers */, + AD21989BA8DBB85660BE12419F1C6AB9 /* debug_location.h in Headers */, + 8903E951E79CB317974D967C05778EA5 /* decode.h in Headers */, + E980BB5438D24C92BC0FE99385E7DF9D /* decode_fast.h in Headers */, + 3F7FF4257AA58C6C279678CDD6D31B85 /* decode_internal.h in Headers */, + E7EE0BA17503040BB24277673BC43CAD /* def.h in Headers */, + B068BC2BF7436DF588E937BC43BA28AA /* def.hpp in Headers */, + D6BBD18F26710106FEA9166E5F2B5FEA /* deprecation.upb.h in Headers */, + 019A8BEE6BC6D850DA58D4B96403D9CB /* deprecation.upbdefs.h in Headers */, + C6095848F699FE961691650B888E4677 /* descriptor.upb.h in Headers */, + 75BEF2CECFB952D1659B82A5685849AA /* descriptor.upbdefs.h in Headers */, + DD198E564061F8F0CFB80271B1A7BFA6 /* discovery.upb.h in Headers */, + BEB3237B631EA658C0A4DE8E27DED581 /* discovery.upbdefs.h in Headers */, + C1390C0E71338801D29117E3AB1DE65B /* dns_resolver_selection.h in Headers */, + 73277A20691A587277E892876C5BB14B /* dual_ref_counted.h in Headers */, + D175295B995767E19F2C7F351FB0EA52 /* duration.upb.h in Headers */, + D322DAFB4B523D9D74C03D472E176516 /* duration.upbdefs.h in Headers */, + E8745C87957C5CC48FF59F8BB3BC3164 /* dynamic_annotations.h in Headers */, + B4D3B0D33F43D0A9B15E7DCC46E3E0E6 /* dynamic_filters.h in Headers */, + FC0FAD51649139DB805BEF377E1476F5 /* eds.upb.h in Headers */, + B5775A70B5603D0338546018F811B214 /* eds.upbdefs.h in Headers */, + A64E2FD2FDA3B27F8E1C15B17CC91584 /* empty.upb.h in Headers */, + 0511EACCF41B329FBBB8F184D77AB484 /* empty.upbdefs.h in Headers */, + D55E026F990CF9AAE866EE4E9353749F /* encode.h in Headers */, + B2A491A57662974BAC7AA3A088680B3E /* endpoint.h in Headers */, + B27716932A740501D42E4D393AA4C51A /* endpoint.h in Headers */, + E47B6D15575B29C9D68068A1486DC86F /* endpoint.upb.h in Headers */, + C08D9EB9F216866324923DDCC24C2451 /* endpoint.upbdefs.h in Headers */, + 63F938120D1AC9FCF0180F498F068305 /* endpoint_cfstream.h in Headers */, + 21360727B5CFCA401D1F49E55EFC4F39 /* endpoint_components.upb.h in Headers */, + F8B184FD1024901F1C6F47DC951EB54B /* endpoint_components.upbdefs.h in Headers */, + 7E649A179990630C0C24A2A267857514 /* endpoint_config.h in Headers */, + 37C86F5D164BC3354FC3FFFAEFDE5D7F /* endpoint_pair.h in Headers */, + CBF77D0B7E7BE58655777EEF9A627C82 /* env.h in Headers */, + 80535B2B1E12C08D07BC6CAD672B48DB /* error.h in Headers */, + 1CFC900E98F7BC8626AABB6B8ED923FA /* error_cfstream.h in Headers */, + DADECAA9BED85FCFEA66F02515FA7953 /* error_internal.h in Headers */, + 55F5D7DBE8EA7826CF6CF90DE8A2BA3F /* error_utils.h in Headers */, + 9B61298BF384A185344874B7073BEED3 /* ev_apple.h in Headers */, + 5A7569F12BC4B05EECB8C500A41ED05B /* ev_epoll1_linux.h in Headers */, + F98ADFD5C2274F98499BD75B104CBC6A /* ev_epollex_linux.h in Headers */, + 6DC5650B311796C23E3233342A5B0138 /* ev_poll_posix.h in Headers */, + A6EB0450F95CFE53FD0317DF8EE6C47B /* ev_posix.h in Headers */, + 5E5465B0D6DAA54F7DBCED68AF0A446A /* eval.upb.h in Headers */, + D85ACBE43618A2A05737AA678F0DD578 /* eval.upbdefs.h in Headers */, + 614EC3037FF5BC36E3E669CC69D6FF17 /* evaluate_args.h in Headers */, + DEF78FB50702AE309BA70433AC54113E /* event_engine.h in Headers */, + 4C1E742896CF8A03FB4FE6E0F8B64A67 /* event_engine_factory.h in Headers */, + A05995EABCE63FCD55A788F5F4A40985 /* event_service_config.upb.h in Headers */, + 28AD25CD5E6DA38E0C53A95F3A2481EC /* event_service_config.upbdefs.h in Headers */, + FDF7B93FA6C5A9B3F84E116F5EE5769B /* event_string.h in Headers */, + 968F2B29B035C51419D7F2C0C60EFE04 /* examine_stack.h in Headers */, + 68232957360D00F82EC3049B285AE90B /* exec_ctx.h in Headers */, + 6DBE944058A91D73CDB6A0791967E3A1 /* exec_ctx_wakeup_scheduler.h in Headers */, + C8C6B92760929680F54AFC641A807F75 /* executor.h in Headers */, + 1EA8E4FDCD004D470B2C8E8AB272E8CF /* explain.upb.h in Headers */, + 7DA4CC0567D43E6E3DB94BE70B7020FC /* explain.upbdefs.h in Headers */, + AF2F6EBAC253179E3DA051DDBB7020CE /* extension.upb.h in Headers */, + C08C35BE69868F02F44BCE27EAC71D51 /* extension.upbdefs.h in Headers */, + 2E2C90559C135F2657E6A8F2088C17D7 /* external_account_credentials.h in Headers */, + F33B06193EBB0221F31CC5F4C7BEB99C /* fake_credentials.h in Headers */, + 6EE41414178706F9F29AA1B8ED24E9BF /* fake_resolver.h in Headers */, + 44DDBD455037F870390F586722F722F7 /* fake_security_connector.h in Headers */, + 9C49A823884521542D3488F91F0AF308 /* fake_transport_security.h in Headers */, + C5CD093D9D244A65C0323D9C7F5F2D87 /* fault.upb.h in Headers */, + D27EB2E7BA58C112D16A6743EA9C4D58 /* fault.upb.h in Headers */, + 2935781763C06F73FAC6BB01EFB3F7B7 /* fault.upbdefs.h in Headers */, + 67874C5C6FBD052B7C9678306D057F14 /* fault.upbdefs.h in Headers */, + 5DB0BC87D9A6901A1F5C6163318DEB22 /* fault_injection_filter.h in Headers */, + 305DCF0EB857B50F808F5A248802A721 /* file_external_account_credentials.h in Headers */, + 55ACF5AA9EB203EB4727071E4C052697 /* file_watcher_certificate_provider_factory.h in Headers */, + DE6BA370908308F5DBA5B81F79BB181B /* filter.upb.h in Headers */, + 1B4E83E95F566D3EAB45DD021457B4D6 /* filter.upbdefs.h in Headers */, + D16F40CD2D2AA0841E133A4160245D1C /* filtered_re2.h in Headers */, + E1BDC2AC214AC75D08D0CD86118A5962 /* flags.h in Headers */, + 08922C381364B3D3BD8E72CA958F8E51 /* flow_control.h in Headers */, + 81A96F5C92B50298A405959EA414012F /* fork.h in Headers */, + 2DF9A7AA7423FF8664A814B86A8B2F83 /* fork.h in Headers */, + 4C8C111417F829D90A1A0F5367C75523 /* fork.h in Headers */, + F238E57B45200CA35448FD3012C3CFF8 /* format_request.h in Headers */, + D128DFB66F30E37ECBAF7BBAA0AC7FB7 /* frame.h in Headers */, + 9285F2F9507D8CDF486854DCC80388F1 /* frame_data.h in Headers */, + 64755EC4F404522786C48017AE7BC98B /* frame_goaway.h in Headers */, + 0441A95BDF5341C1AFCD70D7E32F9886 /* frame_handler.h in Headers */, + FF9D06C1B63722318703631645A460F6 /* frame_ping.h in Headers */, + BFD9F44D2F289FCEC6BD6FEE62C8C1E1 /* frame_rst_stream.h in Headers */, + 6B45475DED8D46DB4747849FD1A6CF98 /* frame_settings.h in Headers */, + ECE265C6D312349B6FFF23002725D881 /* frame_window_update.h in Headers */, + C16138A9F23408291867A980CFEC6678 /* gethostname.h in Headers */, + E136B97E8C44EFCB3D3C70A993E24FB8 /* global_config.h in Headers */, + 7AD05DC93D6D9F5EC7B37B6823173563 /* global_config_custom.h in Headers */, + 8DA7358F35B63FA7A373E724E85BE87D /* global_config_env.h in Headers */, + 96412BEE2836886FADF99BDBFDF33A88 /* global_config_generic.h in Headers */, + 7578B33198BB436100B5DF010E485DAD /* global_subchannel_pool.h in Headers */, + 6D41CCC2D6436629A27FA9C6CA7CEB93 /* google_default_credentials.h in Headers */, + 12BEB07CC0AC2C747F047A9C95A2E637 /* gpr_slice.h in Headers */, + 3A593AFF17305517B762C3224063D678 /* gpr_types.h in Headers */, + 5A2E568E5FD8D7759CCFF1361311D7EF /* grpc.h in Headers */, + 705970CBB433DB88A6C548836B6052B8 /* grpc_alts_credentials_options.h in Headers */, + E5CB2A7F454FC7CA7E862AC30D7ED02F /* grpc_ares_ev_driver.h in Headers */, + E278B436C8B848C3A1026A2750AB532E /* grpc_ares_wrapper.h in Headers */, + 4B928C61C532B82F353D029A21DDA2E8 /* grpc_authorization_engine.h in Headers */, + DD38D5247465BEFE509A58ABC6796577 /* grpc_if_nametoindex.h in Headers */, + 190E9739605ABDBDB3D088A6D78893CC /* grpc_posix.h in Headers */, + 1FAAF9F034A00642385638199846EA8D /* grpc_security.h in Headers */, + 00B360FD8703C3A3734E8768151DF69C /* grpc_security_constants.h in Headers */, + E4B37E3EAB09B0275B487F2CF607BB86 /* grpc_service.upb.h in Headers */, + 909EC6A700A4A16D1907C91C75DC04AA /* grpc_service.upbdefs.h in Headers */, + 8903BE970F566B5BF38C320A295FAEC1 /* grpc_tls_certificate_distributor.h in Headers */, + 9C948C20311A9820DFA0D6692A685689 /* grpc_tls_certificate_provider.h in Headers */, + 7B33D0F37E57C759FD781EBC2AB1B469 /* grpc_tls_certificate_verifier.h in Headers */, + 4B7B31CAAEF816F0B04633BF091F2C5F /* grpc_tls_credentials_options.h in Headers */, + FC030970D1A47EB3802DA94CF9077825 /* grpc_types.h in Headers */, + 26A643F66A1673A11728DCDAF71F3FF6 /* grpclb.h in Headers */, + 865D4413CFF39DC1AAD8CB38EDA3E3A5 /* grpclb_balancer_addresses.h in Headers */, + 79539220B1FF148124E906E7EC640F02 /* grpclb_channel.h in Headers */, + 0B9BF83EA0949AAD5718819DCA81E619 /* grpclb_client_stats.h in Headers */, + 8CA069EC68763E9DD11AA153B0833439 /* gsec.h in Headers */, + 4F78964323EF12D14625537CA69D9818 /* handshaker.h in Headers */, + 26A79B60246A3DBA6B9B686F6998031B /* handshaker.upb.h in Headers */, + 261CC6CF63D40246F96EDFA2126EAC34 /* handshaker_factory.h in Headers */, + 6BAD139B206F1D5089C6323A3EF33411 /* handshaker_registry.h in Headers */, + FEF9AB978013926AC17AD0A5E77D3A4E /* health.upb.h in Headers */, + D2D69D503FF07A6963726576A24A038A /* health_check.upb.h in Headers */, + C50BA8077A30766A1DB648091F6A4D75 /* health_check.upbdefs.h in Headers */, + 7196C933A8DDA1933ECD100508184B1A /* health_check_client.h in Headers */, + 4D9689A8496747AE09765E8A3D5FCCF2 /* host_port.h in Headers */, + 797F28863A9C13DC51846447EFAD18B9 /* hpack_constants.h in Headers */, + 4E8D2B2D324BE8CF4144A9876C38B61D /* hpack_encoder.h in Headers */, + 691EE4257E21A76B9FFD7510C1A4D681 /* hpack_encoder_table.h in Headers */, + 75032E726F11A2836A04CC5C269FAD85 /* hpack_parser.h in Headers */, + 9FCB14E52E828A36A4A7D880BF7CF4D5 /* hpack_parser_table.h in Headers */, + 6122838ACC3EB3F66EBF9FF70DC92F0D /* http.upb.h in Headers */, + 4AA00261BDCAF78ED42D0481D03EA26F /* http.upb.h in Headers */, + ACA77628D2B4DA27C93EE0C117F6AE67 /* http.upbdefs.h in Headers */, + C8FDA0EFFCB8D415216AAF617FE2307E /* http.upbdefs.h in Headers */, + 40FB3F9283B9D41F58C82E9D10161192 /* http2_errors.h in Headers */, + 3B124BC201AC6208FA0AFD370D7B57C2 /* http2_settings.h in Headers */, + FA26D0F665A47C4A26847BBE7CAE1B6F /* http_client_filter.h in Headers */, + C88B88FE4DA8D53D4209514F139CC1BF /* http_connect_handshaker.h in Headers */, + CBDEBF5DA841DB631710060C56E9A655 /* http_connection_manager.upb.h in Headers */, + E424745EE77BAA900844B75EF5A19895 /* http_connection_manager.upbdefs.h in Headers */, + 1263398B00D0C4B1FFAC313E60FCADF5 /* http_proxy.h in Headers */, + E975286975E1C10D903F65C5C1011600 /* http_server_filter.h in Headers */, + 7CD6647E306F6FDCC0756342C82DB208 /* http_tracer.upb.h in Headers */, + 99CA3B1D1AEACBC9383A994F5843358B /* http_tracer.upbdefs.h in Headers */, + 09421B7265117A890C30F908C0957A36 /* http_uri.upb.h in Headers */, + F40EDBC20AB7FAC4B4F3FF65411D64E4 /* http_uri.upbdefs.h in Headers */, + 5CD5949DB6F89DF7D188461680BC9A6C /* httpcli.h in Headers */, + 6187651B2C86EB9361D160A32C459E36 /* huffsyms.h in Headers */, + 1D97FA7F8A5F8898296C8EA641BD9F38 /* iam_credentials.h in Headers */, + 50B92D25432B5CC618279DE3666CD560 /* idle_filter_state.h in Headers */, + 4A05034201F9FE4006D61763D842CF25 /* init.h in Headers */, + A0ED9E7077DA670AA62F55306A02FCD5 /* inproc_transport.h in Headers */, + AA2BEEB5EEBCF402ACF8B96BDCC819AC /* insecure_security_connector.h in Headers */, + 7AAEAD6C5C38936E989146506044E774 /* internal.h in Headers */, + 8416AC1DDF9D95CFFA6FCD4E6B85ABCB /* internal_errqueue.h in Headers */, + C64E1D911447350ABA9EF54146D371F7 /* iocp_windows.h in Headers */, + 6A4D75776A9B42D0D54EF9C958986E12 /* iomgr.h in Headers */, + 39B6889F4D839C32DEFF6610EF319B70 /* iomgr_custom.h in Headers */, + 6A2EB1DF6BEFE016E49B991B4DC40B75 /* iomgr_internal.h in Headers */, + ACBE93FCA20C62A37673BE4CCEAD7BB2 /* is_epollexclusive_available.h in Headers */, + 8121010EC3A7ADB6A5E01A9B46D1202F /* json.h in Headers */, + D4DACEFEA64C54424A142A668ED9D1F4 /* json_token.h in Headers */, + 5E1CA21FC87DA4138A032E83F378E6AE /* json_util.h in Headers */, + 35C4EA88B6DAE49F3C7437E591B0DCA2 /* json_util.h in Headers */, + 5C6939A855F84CF87CF90505983597B7 /* jwt_credentials.h in Headers */, + E585D5B9979BB39FAA13B33815A3D1D5 /* jwt_verifier.h in Headers */, + C12DE639E5CAECB81DBDF15885C10A45 /* lame_client.h in Headers */, + A52206CE8448C8FD20B070BFB88D9A22 /* lb_policy.h in Headers */, + 0DF547DA9BAD527AF33D4945B0B697B9 /* lb_policy_factory.h in Headers */, + C03F4EE05ACAB496180CEE3524A00A64 /* lb_policy_registry.h in Headers */, + 3DC4A4F954C780DB63BB04E11E93FE92 /* lds.upb.h in Headers */, + 43789002E34937E250F9884EEFB2ECEB /* lds.upbdefs.h in Headers */, + 8D7DD532C86E112DB5D8A381DC18EE19 /* listener.upb.h in Headers */, + E24B74FCAA1A1A9E80AFD9D65A1E848F /* listener.upbdefs.h in Headers */, + 1E364DE0E4CA8F02CBF5E4C4C3EEBF4A /* listener_components.upb.h in Headers */, + 76644A94F83D4A456C5D546E31C3FBF3 /* listener_components.upbdefs.h in Headers */, + BC37F12E60EEF92EAA60DFE90C7052D4 /* load_balancer.upb.h in Headers */, + 985078602F377D609114322B53FCB93D /* load_balancer_api.h in Headers */, + 9459A5B9E6292886ED0E2074C3EAC3FE /* load_file.h in Headers */, + 792B628EB32D9E495C3431CD553E9F55 /* load_report.upb.h in Headers */, + 63561D2754A331EF128A4E15BF1E9E0E /* load_report.upbdefs.h in Headers */, + 41BB578FAF3F2EA0818E4B2091808172 /* load_reporting.h in Headers */, + D5B955A39D1197FDFB3EF7D88C44361B /* load_system_roots.h in Headers */, + 08A444AA7804A396877A966766F5F767 /* load_system_roots_linux.h in Headers */, + E70C9A5BDCDB35302ECC8EF850651DD6 /* local_credentials.h in Headers */, + 70A800F6DBCCAA10536A88E0FCE2C08E /* local_security_connector.h in Headers */, + 16B0F04145E0A87023642FD6681CA8C5 /* local_subchannel_pool.h in Headers */, + 278305A21587A259D1BC48203223C1B6 /* local_transport_security.h in Headers */, + CDE45667AF3298D07093194CE7FB41C6 /* lockfree_event.h in Headers */, + 8BFCE0443721EDB46661E1122D747C53 /* log.h in Headers */, + 36C9A49544EE74FC6CC8043F9C840453 /* log.h in Headers */, + 60357A73724C9A535DA5CFD75D461575 /* log_windows.h in Headers */, + ABB19B86E38CE252A386D9DE583A4B78 /* logging.h in Headers */, + E3BA4FFB07064CB3571A9A247A14F380 /* loop.h in Headers */, + 1E9871D98A76D5183DB2845DF8DBC70F /* lrs.upb.h in Headers */, + 2AEC01B989E03687E55088EECC5699C0 /* lrs.upbdefs.h in Headers */, + 02FA85D8FA8E787960B01BE2052023B9 /* malloc_counter.h in Headers */, + 26AE00EA4AC0B0E01F6C732BF94B7304 /* manual_constructor.h in Headers */, + 687327883033331C5FDBC137FC325C0E /* map.h in Headers */, + 8694E75FDB7F74B2BBC7FCBEDDAEFE0C /* matchers.h in Headers */, + F83277481D03E7EF2947412AD6EEEFFB /* matchers.h in Headers */, + DF3EA7254162BBBD76A3C58192FBF8C3 /* max_age_filter.h in Headers */, + 572AB5CDB743321BD0F990475B7D1D2B /* memory.h in Headers */, + E478D9D5237A077A8FA94326BC1C6294 /* memory_allocator.h in Headers */, + 33BD93DAC2BFDB6B409ACBFF2B0E6EF4 /* memory_allocator_impl.h in Headers */, + 5E9EEDEC5268BF772E7213E76868564D /* memory_quota.h in Headers */, + C4D669DC0B4A8D593FD15EF4B2D4C5B0 /* memory_request.h in Headers */, + 79502644954C3285662041893A0DE827 /* message_compress.h in Headers */, + 472C2644F5B1075466B16113733F9CA5 /* message_compress_filter.h in Headers */, + 4EE9A3ED9460636F34723A2B74DB47F0 /* message_decompress_filter.h in Headers */, + B12D0729E7E11814664F308C3971C29F /* message_size_filter.h in Headers */, + F739D86C1A098CCC448335FF0BCEC24C /* metadata.upb.h in Headers */, + F8945FB9503495FFABC9BFDD7F861BDE /* metadata.upb.h in Headers */, + DE4352D8E9E1D4B29F33C3B302D11157 /* metadata.upbdefs.h in Headers */, + B0D5699F256062FE20F656F2D6677DEA /* metadata.upbdefs.h in Headers */, + C7ED5902C817D5F0F5F8D625BED7499F /* metadata_batch.h in Headers */, + 46374C12039895FADD547097E1C70A43 /* migrate.upb.h in Headers */, + 0C35A7DC5F13598C22D4492A0C4CFA87 /* migrate.upbdefs.h in Headers */, + 6B51C3D6079EEE9589E5789F81792CE4 /* mix.h in Headers */, + 853329843FCC6E5709E981CF791170AB /* mpmcqueue.h in Headers */, + 043C1EC5E08A114D837D05A1E7102AF0 /* mpscq.h in Headers */, + 3D9FC4A21CDD284A1400E0F1B250E97C /* msg.h in Headers */, + 20313F7C56E9C8B798918099EA7EF751 /* msg_internal.h in Headers */, + 48F5276125FF4AE524CE872B9FA8F853 /* murmur_hash.h in Headers */, + FBBE18AF540E12A40AEB17A140D371AA /* mutex.h in Headers */, + 4C9829CE4E9C013EEC1DE2C792909135 /* nameser.h in Headers */, + 013DE42876C2FA1E83F54567D8DE5056 /* node.upb.h in Headers */, + 0A078B3B5E442EF7105912863D2BC5F3 /* node.upbdefs.h in Headers */, + 6E61D256480FD58E5E678676250026A4 /* number.upb.h in Headers */, + 7F60275F621FBA2FA90FEF526DA4F91F /* number.upbdefs.h in Headers */, + 43DAC8DB2262BDA9473118E9EB5B4F99 /* oauth2_credentials.h in Headers */, + BF11E0637B6AFFBE4E6A5250442FB232 /* orca_load_report.upb.h in Headers */, + 741522A976A60F7AE9FEC6AFD708C9CF /* orphanable.h in Headers */, + 6754DC6FAC94D97710FAE16F049B8E78 /* outlier_detection.upb.h in Headers */, + 4A4DA655293DD3904B4BADCD58054394 /* outlier_detection.upbdefs.h in Headers */, + DC88CD11C1643C1E0BD742188048CAE5 /* overload.upb.h in Headers */, + 58F231B932A92249A7DDE91145CDB207 /* overload.upbdefs.h in Headers */, + 3F95BE1CE2091387DBFA4B83CBAC3646 /* parse_address.h in Headers */, + CD0C874E3D015452524454F1214C5712 /* parsed_metadata.h in Headers */, + 8C12F5F54C158C85180F07F66D9A3DE2 /* parser.h in Headers */, + 6BCB469F3194BA81C8C1AA3D6393D9DD /* path.upb.h in Headers */, + 77148AB28219B65A7DECC4A6D69C6873 /* path.upbdefs.h in Headers */, + AC7238C1661527479AA24FF8C12451CF /* path_transformation.upb.h in Headers */, + 2E036DE9287D62C9A1A1662E4EF78F03 /* path_transformation.upbdefs.h in Headers */, + AD5EB86D0714D54BFFDF77E64ECB74C1 /* pcre.h in Headers */, + C2124E8D2DA325C57E7CF0A101C031C4 /* percent.upb.h in Headers */, + B1324AB19D170E4274C524F625EF7A06 /* percent.upbdefs.h in Headers */, + CC70967CA3F370EA278C9FB697BA65F6 /* percent_encoding.h in Headers */, + 368A27D9AD99795354EA65A9CC8D1989 /* pid_controller.h in Headers */, + 7FF72A766953A5CEB3064D7F9EF4C158 /* plugin_credentials.h in Headers */, + 1EDFF96117AF7AFDA8E5A1C845D72428 /* pod_array.h in Headers */, + AC20F078C4775AB437DAF171B23604EE /* poll.h in Headers */, + 213D79C1FE4D2540BF2D2DBA388D725F /* polling_entity.h in Headers */, + 275CC2050CE7B668FBB33A9D9ACE4790 /* pollset.h in Headers */, + A7B4A6DCA666D1889C7A97682EAF1BFA /* pollset.h in Headers */, + E90DB94A684076269586BBB479353D70 /* pollset_custom.h in Headers */, + 78D66504E92A4B851B75D910A47622DA /* pollset_set.h in Headers */, + D68EB6BF2F15A2C7EF6B589939CAFEC1 /* pollset_set_custom.h in Headers */, + 1A7EFBCD5B52C93C1B2A890A4FD49DAA /* pollset_set_windows.h in Headers */, + E445D60AD1B76A8C89C7E67D87B0718F /* pollset_windows.h in Headers */, + 616458B2F656968D45AD903A8C719DB2 /* port.h in Headers */, + D08ADBBC105343CBC7600D2C52FC7639 /* port.h in Headers */, + 7919BB1BA344B2965D98F4AEDFEB2453 /* port_def.inc in Headers */, + 0E7B305962FFDE994204816DE9ACEF98 /* port_platform.h in Headers */, + B8711D0B895DAD0F0F9117C5A2ADA587 /* port_platform.h in Headers */, + CFBC6141139EB5502230A6065BA457C6 /* port_undef.inc in Headers */, + 56C74580EEE9C7BBC07F3CE21C5CCC8A /* prefilter.h in Headers */, + E3396EE913FE512E1D5542C63A9C3877 /* prefilter_tree.h in Headers */, + DB5FDEAEB2A0E522467263F2F242DAF6 /* prog.h in Headers */, + EFBD601B055049461178FB1C8A433E9E /* promise.h in Headers */, + 1F1BB248E0978C2570B81CFE745E6CBE /* promise_factory.h in Headers */, + 0B821317693E7C6BC49731344E79F4F3 /* promise_like.h in Headers */, + 92B86E580AEE9C769B0477E2FBCDFD56 /* propagation_bits.h in Headers */, + 2D073505FC87FE374CA1E249653D1D2E /* protocol.upb.h in Headers */, + 9BF307916778CC56F10394BB1B3590DF /* protocol.upbdefs.h in Headers */, + 39BA2960090FCFA64A68C321FA44A396 /* proxy_mapper.h in Headers */, + C20EA614B9CAB3FB424418F351379F9E /* proxy_mapper_registry.h in Headers */, + 5FEA71F5992C1009D36D1FEEEEEE91D2 /* proxy_protocol.upb.h in Headers */, + 3AAB01226EC9F94A764154FC9DFE021E /* proxy_protocol.upbdefs.h in Headers */, + A3E6DFAEC212EDB49868B9C751E88552 /* python_util.h in Headers */, + 8D5CE88F9DFDA728FF9A2BF67F3B45B4 /* quic_config.upb.h in Headers */, + 5F847E31C9555B67DB827B7CBBAC6107 /* quic_config.upbdefs.h in Headers */, + 716A048EB18D152DFEFD7CC041ACDD29 /* race.h in Headers */, + 7735437DE6D0088E4505419FA8434FBA /* range.upb.h in Headers */, + 71F530F8C0FD477A419E8D03DA9E52E2 /* range.upbdefs.h in Headers */, + F5AE55544BC987BFD0B0122E173B526E /* rbac.upb.h in Headers */, + F8BD52DEF9179BC7A0EBA86E854FD75A /* rbac.upb.h in Headers */, + D99AF55F45F29340EB2CF58602EA6635 /* rbac.upbdefs.h in Headers */, + 202A72B352DBA64CFB9F84E0D9648A19 /* rbac.upbdefs.h in Headers */, + 608DED8E505162F014580FEC7584CE82 /* rbac_filter.h in Headers */, + 8277FF4A168BEEC83EEC08F4CDB86496 /* rbac_policy.h in Headers */, + C2582F16EEB0F5DB515322AA4E20246B /* rbac_service_config_parser.h in Headers */, + 561197F74753EE2874BEDE5BFC095905 /* rds.upb.h in Headers */, + E1E40756F6F1A06A1F1D071CC6E27F49 /* rds.upbdefs.h in Headers */, + EEAE076DDDF8FD43463E01D88C6B6E8E /* re2.h in Headers */, + 7B5CE4120490516704B900F829812A40 /* ref_counted.h in Headers */, + 8C703DEDD4F874C800D74B88CA546EFB /* ref_counted_ptr.h in Headers */, + A3266EEE74A6E2B7D2F391F073692D4B /* reflection.h in Headers */, + 3254CA081327142ADB4A26F4D2ED441D /* reflection.hpp in Headers */, + 9E2ED562BDADF335A5442418050380CB /* regex.upb.h in Headers */, + 61EE6C76B560485790360159DBFBD663 /* regex.upbdefs.h in Headers */, + 1DD3C2B6B92C37FEB0AB8FE9BA96BE1D /* regexp.h in Headers */, + 0F9E98966157E431A2F4BE2ACC70BF65 /* resolve_address.h in Headers */, + 10614BC8EA4F4D3E0C5880841B43C65F /* resolve_address_custom.h in Headers */, + 4018268521FD251085C4FB85C0DBE29E /* resolve_address_impl.h in Headers */, + 4E18AB776A9B66F967E43B797A14FE15 /* resolve_address_posix.h in Headers */, + F5DC5E65EC5B08BFD1F5A2A6382B1490 /* resolve_address_windows.h in Headers */, + BE4914AE8003EBDD2D0221DFD57512CB /* resolved_address.h in Headers */, + 16A95741AB99D606BB6E06E7F5D321C3 /* resolved_address_internal.h in Headers */, + CC8A15E995091348950E7855B07BD4DE /* resolver.h in Headers */, + E1F33C4A22A7C9A7B10F212D62591917 /* resolver.h in Headers */, + 07218684CF1061F5588FF5434B521CEB /* resolver.upb.h in Headers */, + 8BE72151B4A2BADBA3412DFCE1EE8F14 /* resolver.upbdefs.h in Headers */, + DF1634F44C64BFB6974C7829EE7341D8 /* resolver_factory.h in Headers */, + 47065C8C088115E6F36B606E90155524 /* resolver_registry.h in Headers */, + 7DF87DEE21847282E02975B01101D200 /* resolver_result_parsing.h in Headers */, + C6BBFE245AE10F5379CB46841A1D5AF2 /* resource.upb.h in Headers */, + ABE2EAE8B946B5A1D017F3EF8683B6CC /* resource.upb.h in Headers */, + CB95D12F68DB8D1D39B9375EADF6DF8C /* resource.upbdefs.h in Headers */, + 5C439174E0969A8BC4272ED249D758E5 /* resource.upbdefs.h in Headers */, + 26CEF9BC7415F3D828A0D476E7FF37A2 /* resource_locator.upb.h in Headers */, + E8BB64100AEB8151654D0BCF42A966DF /* resource_locator.upbdefs.h in Headers */, + C02B5290D0D7BC7436C9C4D9137E959C /* resource_name.upb.h in Headers */, + CEED6EF2100B36BB87D1F78A1E6D771E /* resource_name.upbdefs.h in Headers */, + 38F5FF36B92EB32C0ABF4852FDA8FCB0 /* resource_quota.h in Headers */, + 4EEC8160670560FC6E014D0FF68E5D77 /* retry_filter.h in Headers */, + A65BB4ABBB97745AE8A611D412FE6C00 /* retry_service_config.h in Headers */, + 17936D00A52649905E63FC2102ABCA78 /* retry_throttle.h in Headers */, + C27CDA3AFC80407F0AC8A8DF63D930A4 /* ring_hash.h in Headers */, + BD0FE1997C11440EB1F5B9566C24A25C /* rls.upb.h in Headers */, + 5BC30B5C912BC03C2760E1A4C2122C9F /* route.upb.h in Headers */, + 57433B1A43C155A29ECABE7EDA280472 /* route.upbdefs.h in Headers */, + 01EFC601A9EBE7AA385C49B6AD5598F6 /* route_components.upb.h in Headers */, + 53A803B6A05295178D5F2FC4C8142A5F /* route_components.upbdefs.h in Headers */, + 20064EAEFD2FF967C5EFA345279A2712 /* router.upb.h in Headers */, + 8FE62231B58B993AC94B7162BFCBBADA /* router.upbdefs.h in Headers */, + B801E6572F62FF7726D43E6B5062F30D /* scoped_route.upb.h in Headers */, + 58C587389CAADA50892FB492E7112206 /* scoped_route.upbdefs.h in Headers */, + 3721B61CB1A1F64A67DF7C3BC34C43C6 /* sdk_server_authz_filter.h in Headers */, + 5DDA8FA7428E01BAAE57B2E1101BCDD5 /* secret.upb.h in Headers */, + C0328DA4CF1530B37C24780454FA20C4 /* secret.upbdefs.h in Headers */, + 5DBD83F7A00B9615AFBCD87E5AC057AB /* secure_endpoint.h in Headers */, + EA8EE066C8BD274C451E214ABF14B7CE /* security.upb.h in Headers */, + A195690BE5F90949C5C030BBAC8FBCA4 /* security.upbdefs.h in Headers */, + BEA0998322C91CFFB63C238DE7909F59 /* security_connector.h in Headers */, + 6FA8BCDE111D8BC5461339280AB5DA95 /* security_context.h in Headers */, + 7F236903459AB5B15E4989579AEFD1ED /* security_handshaker.h in Headers */, + 5BFFF812598B68BD0E0211773B242793 /* semantic_version.upb.h in Headers */, + BDB9C9181B89B0324FC72C2F9EE108B5 /* semantic_version.upbdefs.h in Headers */, + A2C2CA25BC89B7F7503ED9F0945499C0 /* sensitive.upb.h in Headers */, + 13094DEB4FA31BCA0612BF77FE9428E4 /* sensitive.upbdefs.h in Headers */, + D9AC91CC103F1E6DB566BF08292CB2B8 /* seq.h in Headers */, + F35EF0707932F083945A24E809C3E940 /* server.h in Headers */, + B7777C691509BC1DAFEF9C9F18278BD1 /* server_address.h in Headers */, + 26524F3B1CFC483C5E691328278B489E /* server_config_selector.h in Headers */, + A609EB9A9B2604326DDF6ED318499AB9 /* server_config_selector_filter.h in Headers */, + 6BA6F551ED0C842D223324D570E5C553 /* service_config.h in Headers */, + C952D335643F688D4077407A986E8263 /* service_config_call_data.h in Headers */, + 641F946B81C0AE91BEA0EF694D5B8262 /* service_config_parser.h in Headers */, + 3D02F2E8685F7C76764EA3E1E62FD16A /* service_config_parser.h in Headers */, + FA08512B043B87A3C2E0398A79031EE3 /* set.h in Headers */, + 1CE7B8D4C3B56F3A032378FA7F2E9A1A /* slice.h in Headers */, + A589D0C15AB0397B3A64B44DCAA14699 /* slice.h in Headers */, + 8C022AAF9368F3BE39A92A3FE7F1E7DF /* slice.h in Headers */, + 8442A85624DA2DC64056D9E49BBB87C9 /* slice_buffer.h in Headers */, + 9F4E920B37128DDBD752307224561AF4 /* slice_internal.h in Headers */, + 1A146AC9163715EB16408607E67E1F84 /* slice_refcount.h in Headers */, + 40FBD538CC72BB05BE8C46D7937E3B89 /* slice_refcount_base.h in Headers */, + 0815307697F27B304CAB126B5B306D00 /* slice_split.h in Headers */, + 36117E029E8079A35EB52F4B45E9C66A /* slice_string_helpers.h in Headers */, + 59B0D4B18C4C3FCA01EDD38F4BF64E2A /* slice_utils.h in Headers */, + F7B8F58A02A2B88D2E9E78BAD7679AF0 /* sockaddr.h in Headers */, + 7215C9A66CC7D3BAB0332FA5E3CE55F4 /* sockaddr.h in Headers */, + 2F3334888FF7C2D2352AE9FDF48A79AA /* sockaddr_posix.h in Headers */, + 1CA455B1D96D7371F14A6164B4D8462A /* sockaddr_utils.h in Headers */, + 21150E67A62859C89DC1478E71695DCF /* sockaddr_windows.h in Headers */, + D2BF9045BB133BE649DBE653AC9C3DFF /* socket_factory_posix.h in Headers */, + 58F726E1793DC29B6CF8BC253CEF5563 /* socket_mutator.h in Headers */, + F2028EDD5A2B3FAC5DCC9F822853476A /* socket_option.upb.h in Headers */, + F2CA195A325ACAECC296C13D452CC90E /* socket_option.upbdefs.h in Headers */, + CFAD613948A73AE51915B32B22AE79FA /* socket_utils.h in Headers */, + 51A7D33A05505C2B32A8EF55F36AE91F /* socket_utils_posix.h in Headers */, + 3877A39CC0E5A7B0AE9A4CF3B035D8E8 /* socket_windows.h in Headers */, + D8A45967AC28DF34DA24EB3CCEBBD635 /* sparse_array.h in Headers */, + D23CDFB8918AD16960185EAB07B6F4D8 /* sparse_set.h in Headers */, + F52705F3AE88919FCC6A10201874C953 /* spinlock.h in Headers */, + BB4F09AFA46AB6261F70028A061054C0 /* srds.upb.h in Headers */, + F4A3BA33F8B22787AEEA7A927C41DAE2 /* srds.upbdefs.h in Headers */, + 59B28E95557E19B78CAD789180FEF939 /* ssl_credentials.h in Headers */, + E95E33AC907D674C8788FE53B966927E /* ssl_security_connector.h in Headers */, + 2DE680725CC851061558FBD3A45EA221 /* ssl_session.h in Headers */, + BCF8CFB1860281CDF9C618644DAC6154 /* ssl_session_cache.h in Headers */, + 96D0BC749969A56257ABAC0214A601C9 /* ssl_transport_security.h in Headers */, + 22E9E33A51D8F4B0D2EA832AA9E64D56 /* ssl_types.h in Headers */, + F49AEB013F6C2EDF88C7322FF7B7F48C /* ssl_utils.h in Headers */, + B01D291F855AEA11E4DDD59C2AC49DE7 /* ssl_utils_config.h in Headers */, + 2F08A90D289680F3D16B2D3383F327AA /* stat.h in Headers */, + 41706D970830E4B7F27A5AD2DBDFB937 /* stats.h in Headers */, + 2310F4FD083D4F2EC9ADC5174261DB25 /* stats.upb.h in Headers */, + E142631B3BCAE46173DF5364C0AC9769 /* stats.upbdefs.h in Headers */, + 9F3510F0A4AF3FAF23E09D3525B738C8 /* stats_data.h in Headers */, + 1B284153FCE18EBB4920CFE074E27373 /* status.h in Headers */, + F177FE3ACDA4E8E9EE0A79C4E3C1DDCF /* status.h in Headers */, + 744CAF0E4CBB6EA82B89D91D2DE3F046 /* status.h in Headers */, + 6A68AE8D14F7F6DA1A729356A0AEA376 /* status.upb.h in Headers */, + 1CBBA793E953FD52DD5600F0E34BD81A /* status.upb.h in Headers */, + B7478E2F46FCAC477BC4BC3D95998317 /* status.upb.h in Headers */, + 0249F8D8006F2AAB4AA4992D0C478D54 /* status.upbdefs.h in Headers */, + 23FD62A157523A9B09BED02A6D45ED75 /* status.upbdefs.h in Headers */, + 156BFB744A585E0617272A75CADFF19B /* status.upbdefs.h in Headers */, + A819968A4881CCC585EBFBD29703EDA0 /* status_conversion.h in Headers */, + 6541A8BE5650E4E66CACB4539353A271 /* status_helper.h in Headers */, + 4498287DC18FAE50EB52AC577E14D944 /* status_util.h in Headers */, + 00F94AEF53F6F3AFDFC7DF69F2910AD7 /* stream_map.h in Headers */, + 4B77D95121BA008FD65F21603CE85B5F /* string.h in Headers */, + 2D0EF38C9AD39A4770DD55C44D1F111E /* string.upb.h in Headers */, + 11D8A191013CBEC58C7F8A12582DED50 /* string.upbdefs.h in Headers */, + 0FD46B3C63F28031CC9E364B78F54AA7 /* string_util.h in Headers */, + 7126EC5070755AAC0DDBEFDDF9313A5F /* string_windows.h in Headers */, + 99DE05412944634F0A6A5AB66154A3E8 /* stringpiece.h in Headers */, + E2A83BAA0230B1EDE44725C4CA8D5AFD /* struct.upb.h in Headers */, + 12841B595BFBC39C996EE25375EC85AE /* struct.upb.h in Headers */, + 7125795607CBAC0C4092F76AB2D754A2 /* struct.upbdefs.h in Headers */, + 1EE742DADA866ECE60CD9265364AB495 /* struct.upbdefs.h in Headers */, + 1201D19523A85691DC240F426B1D9963 /* strutil.h in Headers */, + 84649B5368BDCCA0B92B328BE8559826 /* subchannel.h in Headers */, + EFC462358FBC8AC504384E9508BB47C4 /* subchannel_interface.h in Headers */, + 9625A3951FAB864E4D1BCE8B06EC9E9D /* subchannel_list.h in Headers */, + D9FA85FB6D57F59869E2C4EE2F592929 /* subchannel_pool_interface.h in Headers */, + CB2632EA60A30DF8C7DE0873040F070E /* substitution_format_string.upb.h in Headers */, + 3313C9214CBAE67B58281705A1A10BA2 /* substitution_format_string.upbdefs.h in Headers */, + 88AE56887B171B60252AD2048AFADC3E /* switch.h in Headers */, + 71461629A211090DBFBFC34D2669D8C1 /* sync.h in Headers */, + 41C7873D0630A1913057CBADAE6D0959 /* sync.h in Headers */, + 4B84CD03DD04D3F1B9EAC2A6D4864FE2 /* sync.h in Headers */, + 2D4D1037C727C5E0921ECEDE99706212 /* sync_abseil.h in Headers */, + C9534160F7854D7E51E1C9B718D3702E /* sync_abseil.h in Headers */, + 73ABE2B653C1DAE651CAC15C3FF3A7D4 /* sync_custom.h in Headers */, + 316F1DEBD9D3B81BAA86818CDF9F151A /* sync_custom.h in Headers */, + CE096B31D213CAC570B373261CA36DD4 /* sync_generic.h in Headers */, + DF283538FA7F90C304FA8B31838F866D /* sync_generic.h in Headers */, + EC2A9C314081E92C6C5E4D1A45AE4F7E /* sync_posix.h in Headers */, + 3ADE2C0F434102061B7508E4DE8AEA4C /* sync_posix.h in Headers */, + 1F7E94ABA1A504DF78C42304AB96773E /* sync_windows.h in Headers */, + 37AEF89CFC71ABB580380A7A1543DD36 /* sync_windows.h in Headers */, + 5B72AE79B12AA0AD68291587BD56B982 /* syntax.upb.h in Headers */, + B4B0AE0062EBC83E3B04F006341EC596 /* syntax.upbdefs.h in Headers */, + 8BC3D01F9FB6ABD71D660576E896E962 /* sys_epoll_wrapper.h in Headers */, + 0EA93CCA2077BBE9C244AD67CD6C269C /* table.h in Headers */, + 0AEA9578B71ADA91C63E7E182336F1C1 /* table_internal.h in Headers */, + A5054EB21713E92F515E96E18F69582F /* tcp_client.h in Headers */, + 9568BFC5FB3BABBE1136B5D5C5FC50D3 /* tcp_client_posix.h in Headers */, + ACEA6234E87EBBDBA91B1F6C4A65BE5F /* tcp_custom.h in Headers */, + 6B48BABF052D32A6EC03C90A4936159C /* tcp_posix.h in Headers */, + 1F44B0E7EE7F14CE488B23AB2D7D6683 /* tcp_server.h in Headers */, + 629B4222E1D829636DCC9701B5CD325A /* tcp_server_utils_posix.h in Headers */, + 263540B177B9C847E41F692813807B7A /* tcp_windows.h in Headers */, + 2A8C01FF65F6305F41D1100E527F4EFA /* test.h in Headers */, + C8C7A08790692AE79F9686BB1AB570EC /* text_encode.h in Headers */, + 0A086102C47FE852C26EE2B2BF26D0DC /* thd.h in Headers */, + 4B941612AF529D45AEDC292C2EE19731 /* thd_id.h in Headers */, + E2743382D64DFA7361D5B300B96FC2C3 /* thread_quota.h in Headers */, + 66B6FFAD995BEBD1150A5B005276E653 /* threadpool.h in Headers */, + BB2B4318B17BCB6A1B10CD4BE8729CF4 /* time.h in Headers */, + AF9DD770B3D0C4AF80AEB3502FEB77CC /* time_averaged_stats.h in Headers */, + 11000CB8C0D0C1946A00218A4F75D52D /* time_precise.h in Headers */, + E24C197A639A46F1EFD5DE5B9BFC1B42 /* time_util.h in Headers */, + 1DE0C774827537C76AEBF0F501B8C59B /* timeout_encoding.h in Headers */, + FC0822D62350AAD43611A21CA4C52BDF /* timer.h in Headers */, + 56236777A0E5AF8F53D5721B5CECAF87 /* timer_custom.h in Headers */, + ED82E2E1833535BA7C1DCB3844E3CB58 /* timer_generic.h in Headers */, + 214D277779D689C8A5969C60971A1B12 /* timer_heap.h in Headers */, + 187480E34A090505EA2C706C001B4C77 /* timer_manager.h in Headers */, + 839428EB843AB0D46CDF8BCF57839070 /* timers.h in Headers */, + 1579131CF949327D86B097AC8700192F /* timestamp.upb.h in Headers */, + 9EE26B065DEA657FA96BF605546B195D /* timestamp.upbdefs.h in Headers */, + 30CD9D592288FA06E155CD32B3BFDA8B /* tls.h in Headers */, + E42505A6BF53DA8806B6E7A57214BA0F /* tls.upb.h in Headers */, + 11E1B3F120B8C9A2B8B35A4EBB205BFC /* tls.upbdefs.h in Headers */, + 9E8A7080B32A34878BF18AFF7A253E3E /* tls_credentials.h in Headers */, + 6E87D6C214AE4E7E2EBE8DF75CBA334B /* tls_security_connector.h in Headers */, + 02E21B86B176A2CCD507DB74D8383CF2 /* tls_utils.h in Headers */, + 6A76BD79B6EC96A81B15373551170EFF /* tmpfile.h in Headers */, + 6577D54151FEC351D1188FABC3415FDF /* trace.h in Headers */, + 912E377C5B614B37A34B63FF0862ACD1 /* trace.h in Headers */, + 46E30685766084490DDCF6BFED740093 /* transport.h in Headers */, + 4DDDBBA539DCAB7662F55C08AD8C84DD /* transport_impl.h in Headers */, + CF4EA809218283A4CEDE4F15485A79B0 /* transport_security.h in Headers */, + 4922A9CD597DC6E213417024795317AB /* transport_security_common.upb.h in Headers */, + BCB1686FD7D604902545636BF5E86776 /* transport_security_common_api.h in Headers */, + 376F1B826A7EE6B479F8EA5C79F05128 /* transport_security_grpc.h in Headers */, + 3C2853FAF5A7A0A59DD52064177C175D /* transport_security_interface.h in Headers */, + 4D3ECCB2D00E1A9286E0A823AF8BB46E /* tsi_error.h in Headers */, + BD3231FDB742FF9ADE72F23B3F53B172 /* typed_struct.upb.h in Headers */, + 1D3D505D360C579BCF56F27B576E8F4E /* typed_struct.upbdefs.h in Headers */, + FCD29E3D0E759D5D3AC983FDFD6E61D9 /* udp_listener_config.upb.h in Headers */, + 199ADC75C1C4A72BBDBA8C89236CE050 /* udp_listener_config.upbdefs.h in Headers */, + 454F55EB4B2D6E260759E44B22561EB5 /* udp_socket_config.upb.h in Headers */, + 83CCF5FA7914635C7E9CD8A0F0011DA0 /* udp_socket_config.upbdefs.h in Headers */, + D2485BF8E0B223D54BC5F0827F92463D /* unicode_casefold.h in Headers */, + 9FFEE9FF5316129360F497CAD66084E1 /* unicode_groups.h in Headers */, + D0C21BB6AB0540051D8DCB35CFD8D08B /* unix_sockets_posix.h in Headers */, + 6ECEF1DDA92E56455E3F49D51D27B0C4 /* upb.h in Headers */, + 1A26BB66E3EF22D9EEA745E69D5D2EF7 /* upb.hpp in Headers */, + C6002E7519427FF66117DFB744E9F86F /* upb_internal.h in Headers */, + 29165B0DFF7036A1199C0E6EBDE68457 /* upb_utils.h in Headers */, + 90969BECD8C86056DF1E047622A412FF /* uri_parser.h in Headers */, + 1353D09E656E15687208208CA967B467 /* url_external_account_credentials.h in Headers */, + 9E80CFA0A020AA77644FC05362F9A5D5 /* useful.h in Headers */, + B38968B34543061F572A3DC15C57264A /* utf.h in Headers */, + B2D7C417D81C408EE4005AD13D92BB33 /* util.h in Headers */, + EE70689EDE81D82D395953F63FBD5A74 /* validate.upb.h in Headers */, + 5E0B37A47E797E43E0F88B555D3ED336 /* validate.upbdefs.h in Headers */, + A6E3573D07DC3D87F6DC25FD8466C12F /* validate_metadata.h in Headers */, + A145F7503EC2D534EC754BE27797FA0D /* value.upb.h in Headers */, + 1EF05B586FF14B0C9A498F11B7BE7F7A /* value.upb.h in Headers */, + 21566D6543DCB09877BED6AAD9694382 /* value.upbdefs.h in Headers */, + 7FC30594AA5A5BE5D7EA3E0AD5D23ECE /* value.upbdefs.h in Headers */, + D0E8E73591691F67E4B5D60098EC8B49 /* varint.h in Headers */, + 259B718E447F9343F2F0FE798E742FAF /* versioning.upb.h in Headers */, + 568904769ADF438D7162CECDD62AD1BF /* versioning.upbdefs.h in Headers */, + 9B68FC4DA0C4FE8ACBD4E532B8DCA80C /* wakeup_fd_pipe.h in Headers */, + 797D161836FE8A7846630D6A816B8E2C /* wakeup_fd_posix.h in Headers */, + 19B5E0DCD7E5676ED6EDB4A396BF66B7 /* walker-inl.h in Headers */, + 66FBCA4409446C0DB2170CFDD8B48F68 /* work_serializer.h in Headers */, + 48AA624785FE4D5D86357D9DC0E6AB1D /* workaround_list.h in Headers */, + 4A1B1D200B39E9FD239F2A2FFDCF3DDA /* wrappers.upb.h in Headers */, + 20DB779FAA067710D641D2C3648DA312 /* wrappers.upbdefs.h in Headers */, + D944F240926817535C016C9C9ECE73E5 /* xds.h in Headers */, + 76FBC576527A85CFAF0239585A1F7388 /* xds_api.h in Headers */, + 74ADCB723E0C79992DCBDAD33DF31F42 /* xds_bootstrap.h in Headers */, + CC21361A0C0B2898CB783E37AD7FA37A /* xds_certificate_provider.h in Headers */, + D35573D303F0A6BFD4DBF34B276D6ACB /* xds_channel_args.h in Headers */, + 709FEB004AF069B69B5F8455D2E32ED8 /* xds_channel_args.h in Headers */, + 019E0ED6D22F3685E47A48383CF59FDA /* xds_channel_creds.h in Headers */, + 2BEF4655312191004C52751C6B3CEB03 /* xds_channel_stack_modifier.h in Headers */, + DF5132B94AC28644C91A854D8082A0A6 /* xds_client.h in Headers */, + 476A96180BB667F26CDC4F4F2FB6C6CC /* xds_client_stats.h in Headers */, + 55F5FB748FE98448A2EA3BCBCB36C44D /* xds_cluster.h in Headers */, + B7F8AF4A33CC8E2E799496719F70A37F /* xds_common_types.h in Headers */, + BE1EA71EA43369A12A251F1810A10C80 /* xds_credentials.h in Headers */, + 4DE0E5F64B5ACB4F7342A33D97E07A8E /* xds_endpoint.h in Headers */, + 176961DC41D0C0928576059585549BF4 /* xds_http_fault_filter.h in Headers */, + 0488EA818D8DB00518840B8A72B2D1CC /* xds_http_filters.h in Headers */, + F56D3C47A2ECB09D42C9CFE5DE30852C /* xds_http_rbac_filter.h in Headers */, + 2D6B2277214FA5F383C60DC240A44F9E /* xds_listener.h in Headers */, + 50EBF8ADCED7DCB9B02306129BE14055 /* xds_resolver.h in Headers */, + AFF9F7C0DD65C54EE36BA94B42DF09EE /* xds_resource_type.h in Headers */, + 1772D7BD9F9885A12FFB5F621254A8BE /* xds_resource_type_impl.h in Headers */, + 3A1BDD131BD14E36C5A102A70F350009 /* xds_route_config.h in Headers */, + 95FF1D7D508266F6FEB92CB2AB3652AB /* xds_routing.h in Headers */, + 7F5A5510A3D5B33AE0A68912ECA257ED /* xxhash.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24487,216 +23941,989 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F2540B980265FA0EA759B08D01522208 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0A4BB14C87D5D403F8A6C6D683404511 /* accesslog.upb.h in Headers */, + 8A19F7BA1DA4F869B83DA52665A7225A /* accesslog.upbdefs.h in Headers */, + 5528EBAAE6214D5F57FFA37A06D54A7D /* activity.h in Headers */, + 73096DAED82436BC58AAFB5AECF0B711 /* address.upb.h in Headers */, + A023D5CD4195CF3C9F7B8C9F49A4789B /* address.upbdefs.h in Headers */, + 6A24F733162C4C3C903FF6A70E10BB56 /* address_filtering.h in Headers */, + 7D8414589B36B07E852CE2B276723074 /* ads.upb.h in Headers */, + DCBBDCAF8A7B562055F0C724682BA910 /* ads.upbdefs.h in Headers */, + 464634695A35AEE2E1A9FEA51BC5E8F8 /* alarm.h in Headers */, + 98DA13DBAA28173793AE34961C521262 /* alloc.h in Headers */, + 75E77EE17678AF9C99744D8E0F9A5FD6 /* alpn.h in Headers */, + 03B336C9A7FCE7CDB4877C469D5DC091 /* alts_counter.h in Headers */, + 03B70E6AA2E03B8860D63DE84F400800 /* alts_credentials.h in Headers */, + FF33352600E8A4FB7EE582469D7F00F1 /* alts_crypter.h in Headers */, + 0382444DD5315EB166751C61FCB66924 /* alts_frame_protector.h in Headers */, + 00636FBC8CB53E2C99D007C89D7EEA37 /* alts_grpc_integrity_only_record_protocol.h in Headers */, + 3B82D34B60C5864DD75D07FDA3FCD378 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, + 12AA82670B325F498886513FD6F2A36F /* alts_grpc_record_protocol.h in Headers */, + B5642D088799372DADD9942B91F37DF9 /* alts_grpc_record_protocol_common.h in Headers */, + C844B82A0B779875D2A4D20E97B3F627 /* alts_handshaker_client.h in Headers */, + FFF8AA500A08CE8BAD18A05F9FFAB601 /* alts_iovec_record_protocol.h in Headers */, + 4A7DEA19C4D23678FE2F9F3C70AC409F /* alts_record_protocol_crypter_common.h in Headers */, + DAFB22D8387458373D01E89D8CBCF613 /* alts_security_connector.h in Headers */, + 1323B75A4DFEDB0871B07B98432AD7B7 /* alts_shared_resource.h in Headers */, + 697E73B9810CA3E267A3F05A452722F6 /* alts_tsi_handshaker.h in Headers */, + 9DC7B9CB1CD909DB6455FC7DBB7240AD /* alts_tsi_handshaker_private.h in Headers */, + 4936FC6245529A01FB1C58AFA31A6FBF /* alts_tsi_utils.h in Headers */, + 18AF00BF50857DDFF3ECADEFDCCE3410 /* alts_zero_copy_grpc_protector.h in Headers */, + F09C6E436778CA258F046A97CD3F6AAB /* altscontext.upb.h in Headers */, + 69A9131D9141358EC9BD86925333912B /* annotations.upb.h in Headers */, + 327894A95E0B86C0DC4C9083E268C0AB /* annotations.upbdefs.h in Headers */, + 87D34B076DE7DEE17A9ACB1945644F14 /* any.upb.h in Headers */, + 8AA5B84F22C5A61ED496166876312BC8 /* any.upbdefs.h in Headers */, + 52A422EEC1EDBECE61EC3E50BFCB91C0 /* api.h in Headers */, + 4F8EE519BFA8A4F2091BB25A3E36B289 /* api_listener.upb.h in Headers */, + 43E3E651631BA898E3D94931D8AF094E /* api_listener.upbdefs.h in Headers */, + 59EE8D7469B3505419D0E44AF309ACCF /* api_trace.h in Headers */, + F4DFEDF32C2DE5205AEAE97136720F5B /* arena.h in Headers */, + BB932DAFBC68AB631C7C0F215A14CDF2 /* async_generic_service.h in Headers */, + 6E5173BA7B6D4425351C313F04E2C6F0 /* async_generic_service.h in Headers */, + 118549415D4566F3864AC9A0A782B555 /* async_stream.h in Headers */, + A2E87E2264B01591CC8FFB325337D9B0 /* async_stream.h in Headers */, + A3DD292C0551910EA2515AEA85ADD2FC /* async_unary_call.h in Headers */, + 5BEDFEEEBD4910D648A6C1ED459BD8E7 /* async_unary_call.h in Headers */, + 7DEE7C1BC43B5ABBEBADF9BD505928F2 /* atomic_utils.h in Headers */, + B1CAA42A2272F078A4F70C6B9328A624 /* auth_context.h in Headers */, + 605A99DEEE2FF4C8EB02AF3C2B93897F /* auth_context.h in Headers */, + C407915EE3801520E211236BFB669507 /* auth_filters.h in Headers */, + 5CB4B15D7EAB9E28235527C6740CB864 /* auth_metadata_processor.h in Headers */, + A0E8B7B37C01158177BC4A924C9CB537 /* authority.upb.h in Headers */, + FE5A1EAC496FA47A51E5D5FD8ED61D82 /* authority.upbdefs.h in Headers */, + C74C2770958A113576FEB13D2B35BBAC /* authorization_engine.h in Headers */, + 58D9D12D138E789AF92F4D75CEF976DC /* authorization_policy_provider.h in Headers */, + AA6C8C1AFBBC33497A3689B7EEF84BF6 /* authorization_policy_provider.h in Headers */, + 646E8AFFBF710D3B1B03E0863AE34200 /* avl.h in Headers */, + 8E83DC086F95EFF80CBBF900B37AD40E /* aws_external_account_credentials.h in Headers */, + 2A70911DD8FE2C02A40CBFA0760F7F36 /* aws_request_signer.h in Headers */, + 2CCD70CBBC8C4F73FD92BEFA44CE72A7 /* b64.h in Headers */, + D2EDA12B184789737C42D6F19C084CFB /* backend_metric.h in Headers */, + 6EEECC2354F69B1CD8FFDBD6BEFBA58D /* backoff.h in Headers */, + 0CFE29D67A349D8A8FE114E69308CE6F /* backoff.upb.h in Headers */, + 0299B47D70D3F44EAD199BC07B5F35F6 /* backoff.upbdefs.h in Headers */, + 828FF02269CB1D0F2C9C25584D06D622 /* backup_poller.h in Headers */, + 9D12C03EF85928A522733BE3920B1CFC /* base.upb.h in Headers */, + CEEF1538109BF77FCB043C12C87EF889 /* base.upbdefs.h in Headers */, + 8726E265A2C4AC15CFE8BAB929FC8C7E /* basic_seq.h in Headers */, + 051BD92CB0DFBD182F2D6509B2A6110F /* bdp_estimator.h in Headers */, + 81EF07EE2A6A4E9D54BEF5BC093B9648 /* bin_decoder.h in Headers */, + 8FDCA86B8090F80DB47F185BFBA41550 /* bin_encoder.h in Headers */, + 14C095C6391DC2499D89A3A1A6415FC1 /* binder.h in Headers */, + CD78073DAE910CF09A959E711811CC31 /* binder_android.h in Headers */, + AB37BAF4A276313D6255D2CA9FA2EBCA /* binder_auto_utils.h in Headers */, + D4982E0F2516777C37628843CF8B53DB /* binder_connector.h in Headers */, + B73287148B91F128C2896800F7724D16 /* binder_constants.h in Headers */, + C721CD8F6369F6F8445CCCB180CFAC9E /* binder_credentials.h in Headers */, + A17B5700A9D5820787B7D249173AFCF5 /* binder_security_policy.h in Headers */, + A1013643528E29495FF46AA5348ACCB7 /* binder_server.h in Headers */, + E31B3FA40E746AB0964CE2CCDF5355CD /* binder_stream.h in Headers */, + 60821DC179C7C8551F19AD6BD7F702AF /* binder_transport.h in Headers */, + C2B3058AE26065A6F5835ACCD0910E51 /* bitset.h in Headers */, + 7568779F0895922BBEB0B95276382DFA /* block_annotate.h in Headers */, + F2443BEE6A973029E09FF8F62C5AE5E2 /* bootstrap.upb.h in Headers */, + 9C1054023D6B42996CF894E4D8FDD8F9 /* bootstrap.upbdefs.h in Headers */, + F43E61F88C09312FE320CE11BEC81AB1 /* buffer_list.h in Headers */, + 8BA6135555AC909FD3E3E4904027FFC7 /* builtins.h in Headers */, + 5868FC0C572EBE48A9BB986BA72604CB /* byte_buffer.h in Headers */, + F49ED7285649D05E485BB1541D12A7A8 /* byte_buffer.h in Headers */, + 78AE01CAB8A5B47BA366F58B1D6C8222 /* byte_stream.h in Headers */, + 273884F17EC0D1559C10B3B66B1AD87E /* call.h in Headers */, + 2FB052EB99070F04EB274D2629EFCAC5 /* call.h in Headers */, + 865A9D34C9B74E5346EB54159536FADA /* call.h in Headers */, + E703D13D332C21BC3B84ABD7111C915D /* call_combiner.h in Headers */, + 65E2FCEDBD88CFFE1AD147DA953583CD /* call_hook.h in Headers */, + 7505A037DEF94844EB2A9BF42A077F3D /* call_op_set.h in Headers */, + 28B3F5AA3872A8869748CD723421D79A /* call_op_set_interface.h in Headers */, + 596E00C6359C38EA832CD866858AEC2B /* call_test_only.h in Headers */, + 9EA76ABE9970660C74385A0BB88D8547 /* call_tracer.h in Headers */, + F2FA7EE9AD09D5D32EE1F29C77E6C8E5 /* callback_common.h in Headers */, + 36F02733CBC31BF8FB1BF35EF8AA5F5A /* cds.upb.h in Headers */, + FE3371479E4FB3EEF7C8823F1C934ADD /* cds.upbdefs.h in Headers */, + B6399752B457992A4E9951821E8B5F0F /* cert.upb.h in Headers */, + D583D4CA0BB5A21089FDBC5639B6331A /* cert.upbdefs.h in Headers */, + BBB52CFDDD0B51C08B255E39E59423CC /* certificate_provider_factory.h in Headers */, + F904915FE63FD6256A6CFEF3225C3D44 /* certificate_provider_registry.h in Headers */, + 194556331AD33B5FB4AC55E5FBECE685 /* certificate_provider_store.h in Headers */, + CD9249C9FB2EF5A4BBC72EF40C460EA0 /* cfstream_handle.h in Headers */, + F41FEA5B62B4EF1EAE7D9DD326C5349E /* channel.h in Headers */, + EB19FA64078E6A61425E59F1BFD1DBC8 /* channel.h in Headers */, + 515DBF370C6E35BC54143A394D23AF6E /* channel_args.h in Headers */, + 1BC6FFB254E15C00CD3F0D6A830D3F84 /* channel_args_endpoint_config.h in Headers */, + 001E2C74BB44F61BDBC0EE86A1C33C03 /* channel_args_preconditioning.h in Headers */, + 8AF4AC5D02567CCB885689CE0329887F /* channel_argument_option.h in Headers */, + 600CA7A2381ADF3BC99D2F0A692BC2BA /* channel_arguments.h in Headers */, + 6784739D544E6CB043AB1FE7DA3404EA /* channel_create_impl.h in Headers */, + 717769B19B46B497BDF6F8D85A790931 /* channel_filter.h in Headers */, + E38934E464CCEE54B3F50332AEB1844D /* channel_init.h in Headers */, + 5D36B91F5866812599712A449F24B77A /* channel_interface.h in Headers */, + 25E59342A60E227FFA452FA8451DA3BE /* channel_stack.h in Headers */, + 0B4E278C32E09B650021E62DED4F5226 /* channel_stack_builder.h in Headers */, + D265EF8126EA9E2264DF221A26C5C00A /* channel_stack_type.h in Headers */, + F08E203199E0F39EFFF2921705F5C35E /* channel_trace.h in Headers */, + EF6DF2F3C742FB472FBD5A95EE888EEE /* channelz.h in Headers */, + C9CFD63AC5A689217E4DE072E5664F34 /* channelz_registry.h in Headers */, + 980834427BB5BD1A751BE1FAE923DABB /* check_gcp_environment.h in Headers */, + B7BCCD45D9521550BBE564E1B7FD57CF /* checked.upb.h in Headers */, + B6BD5C804A7DCB2BF3213A670C3A2837 /* checked.upbdefs.h in Headers */, + 7F919E66D600FB31225C142AE6FB7E41 /* child_policy_handler.h in Headers */, + F9B17C038BDC7B2F4B51705BB733B268 /* chttp2_connector.h in Headers */, + F7B9858D1B340C70B46E92E3F9D2C665 /* chttp2_server.h in Headers */, + A1A78710127F527C4D7099DF7040181D /* chttp2_transport.h in Headers */, + 18BBBB9FFB290E8E4E9601C600FA5CE1 /* chunked_vector.h in Headers */, + 29B848EBF7D87CC40B8D1ED0570F19E4 /* circuit_breaker.upb.h in Headers */, + 4CB69B1A05219114A3594247E7EBCC30 /* circuit_breaker.upbdefs.h in Headers */, + BBE5C0C9FA64287B2F9BF7A845F3F7E1 /* client_authority_filter.h in Headers */, + 0FDF6E9CFAEBB779967784705A13DCF4 /* client_callback.h in Headers */, + 69DB87B87B73ED48C2AB5AAD80558A00 /* client_callback.h in Headers */, + ECA17B0879D4CD9F73F56ECF8C6D958B /* client_channel.h in Headers */, + 9719CCAD57564665CB5AD1E4876E76F1 /* client_channel_channelz.h in Headers */, + DF899F25310665A2C2C526F345DBE330 /* client_channel_factory.h in Headers */, + 67CB63A88B9606F9A3DFC50E8CAD2A59 /* client_context.h in Headers */, + 6DC6E48C96271E93101CD9F9FE6A615B /* client_context.h in Headers */, + 0A0DFAB63E6E74F4935F121B464A8F6C /* client_interceptor.h in Headers */, + DF04E3A5889B7DF78AF9B8063D9C01A3 /* client_interceptor.h in Headers */, + AB2A2F44C99586AFFDE563FC0D7913F5 /* client_load_reporting_filter.h in Headers */, + D453B2906123D2E53E63039031F221EA /* client_unary_call.h in Headers */, + FA56AF97C6050564B2A342357FBA49DC /* client_unary_call.h in Headers */, + 7B2312FEC54EF75402557F11CED02A1E /* closure.h in Headers */, + BFC84A911A6AD018C2364D7FF5FC0A36 /* closure.h in Headers */, + 9BD6A0C18A8CBD83B520A35F440A7AA0 /* cluster.upb.h in Headers */, + 387E99E2A92E01B34138D64540F39476 /* cluster.upb.h in Headers */, + 4CB5BD6372D07C0939189B54990D9605 /* cluster.upbdefs.h in Headers */, + 5E59079327D1196731F022D2B1FBA951 /* cluster.upbdefs.h in Headers */, + 685D62F76701C87FB45BDB8D2C9521E1 /* collection_entry.upb.h in Headers */, + 8CB94281F450E93291DE3347C906D920 /* collection_entry.upbdefs.h in Headers */, + 9416A9350BBD8F4E16ACF7C8ED5804F0 /* combiner.h in Headers */, + 7289CFD000ED9158CB075908CF4A0C93 /* common.upb.h in Headers */, + A2946C99F836F5B5298D3C4BF1C61F94 /* common.upbdefs.h in Headers */, + 1529762E6F9A0B754A73E3DE4C598CD5 /* completion_queue.h in Headers */, + 53AB981CEFF430EB7DC3E5AA983229E9 /* completion_queue.h in Headers */, + 59DA7F72624064DC9AF797A1FEBBD8ED /* completion_queue.h in Headers */, + 6E7A33D0BA53C7AA88BC19181448E598 /* completion_queue_factory.h in Headers */, + BE94CA6FC85DC01438A57E8E350C2D51 /* completion_queue_tag.h in Headers */, + D09EAADE8581B1AA757D115E31F0AD6F /* composite_credentials.h in Headers */, + E52D3D0704E7C3CE289C1795FACD3ADC /* compression_internal.h in Headers */, + EE745D34797F3DF7A91B4FFEFFAC45FC /* config.h in Headers */, + E657AE887F0029D50FD3BDDFEB3F9E5E /* config.h in Headers */, + E05A7CC17B35E80389243298C95BA459 /* config_dump.upb.h in Headers */, + 71613CDEDECE7A6A57FAFCF3F4EFE091 /* config_dump.upbdefs.h in Headers */, + D52169BA70015F10F551F3E0EDF6B611 /* config_selector.h in Headers */, + 98FB337781D055C28037AD90AC4C54B2 /* config_source.upb.h in Headers */, + C1C186F526FBECDC487677E6701D3B7E /* config_source.upbdefs.h in Headers */, + 0D725249CDA273B5FB104292F5DAC516 /* connected_channel.h in Headers */, + 01FA1E429ADB95CA9ADEE23DF4968995 /* connection_id_generator.h in Headers */, + 039FE61E2A40B57BFA61758EC604A94C /* connectivity_state.h in Headers */, + 2A761604D1105043CDED8A12C002437A /* connector.h in Headers */, + 64160F6DEA69D8D38A3E3E75EBD9F649 /* construct_destruct.h in Headers */, + 0E4E1D2651A820E7314707276DA523B0 /* context.h in Headers */, + C7C07C8F7D9D0D986B3E183B8233D247 /* context.h in Headers */, + 18744E2AD6445B07389EFDC8D1D62AEA /* context_list.h in Headers */, + 98BA840987D333FA2937C1495B271F18 /* context_params.upb.h in Headers */, + 1A9A2240C1DBB2B5E6CA662C750B2A44 /* context_params.upbdefs.h in Headers */, + 9BBE949D4EFFFFDBAA21AA1ED326A56E /* core_codegen.h in Headers */, + D47F3C9A0B78E06E05AB2606FEA36009 /* core_codegen_interface.h in Headers */, + F79B93D5B898742D5AD58D487C061888 /* core_configuration.h in Headers */, + 6B70A7044C7C7AFC120DCE41803B8A32 /* cpp_impl_of.h in Headers */, + E73CB093997CA3ED08312BBB2958BC2C /* create_auth_context.h in Headers */, + 0CCA1681606880C3C12F48FBF672F8C9 /* create_channel.h in Headers */, + BC4E3D6088E84E7AAB34485990A93686 /* create_channel_binder.h in Headers */, + B1199A5E8EAAC72D649F7F89A7971514 /* create_channel_internal.h in Headers */, + 2FB71BECDE9AD03061B0005DDFE42D30 /* create_channel_posix.h in Headers */, + C3F9F6D2D6D46B285ED7AA901EEE9B46 /* credentials.h in Headers */, + 1334AAF21D95CE6FF16F55FEAB4EA67D /* credentials.h in Headers */, + 933D6B93AE34419AE694A762B629EBE7 /* csds.upb.h in Headers */, + 8551B8C6A1CA6341C166F86A510F176A /* csds.upbdefs.h in Headers */, + 60A3175428A4EF1967C1A5EC38464309 /* custom_tag.upb.h in Headers */, + 0E95697B45909ED8A602AAF3FE40F54A /* custom_tag.upbdefs.h in Headers */, + 4F51D30CB5DF5717EE7E09F2F726125A /* deadline_filter.h in Headers */, + 79922E134890CCD1A107319BCA0CE078 /* debug_location.h in Headers */, + DBDFC302725A01EF8B2A54AE2231967F /* decode.h in Headers */, + 55C4DD17091D1679B477CF32CACDAB69 /* decode_fast.h in Headers */, + 8CF858607EB6C6128985198D179112C9 /* decode_internal.h in Headers */, + FBB24C7CE59DA9528CDDACC8A188267F /* def.h in Headers */, + C43CB99909C54051886CD0CEA7806249 /* def.hpp in Headers */, + F562B0AF6A0C78DD2065A0C3D7497B42 /* default_health_check_service.h in Headers */, + 304683C55381D2C1EF3EEF7715FF54DC /* delegating_channel.h in Headers */, + 784EE87ED7647E806B97AB9E6675C012 /* deprecation.upb.h in Headers */, + 6F69654D387ECA972461E0AD85860966 /* deprecation.upbdefs.h in Headers */, + 4313A09D55E9B6B6DE7A5BF99510B7A9 /* descriptor.upb.h in Headers */, + 9C3F77710368D87F430B7D6683314E61 /* descriptor.upbdefs.h in Headers */, + 82181CB571DC82C30F1C45FC9054FBD6 /* discovery.upb.h in Headers */, + 85E3D02798E74ADB4884029942B2C5FD /* discovery.upbdefs.h in Headers */, + A2F2ED441D4274D4714E5879AB57DCC0 /* dns_resolver_selection.h in Headers */, + 578DBD4280C9E68C9823356BE7152A6B /* dual_ref_counted.h in Headers */, + CEE6256568A46A36C42E4969F3D8AACE /* duration.upb.h in Headers */, + 2AC03D2AC0884D8F60151239705BEE83 /* duration.upbdefs.h in Headers */, + 62F49A91C1261EC035FE391A03F32345 /* dynamic_annotations.h in Headers */, + 16A12DB71004F41D31116B1D06890991 /* dynamic_filters.h in Headers */, + F4DF5530E4984CB90D1778FAC5440EB8 /* dynamic_thread_pool.h in Headers */, + D2AAD9ECFB2DEBFBDBEE89C51785F33B /* eds.upb.h in Headers */, + 9DEF31FF7A7756909C065FF2E0F76B93 /* eds.upbdefs.h in Headers */, + E9CD12F46993362733992D47CA1C6CA1 /* empty.upb.h in Headers */, + D36BB1E8EC1E3AD11598CFA9A2D43A83 /* empty.upbdefs.h in Headers */, + A66B3B1B9DCC831B8F7F7DE2BC599795 /* encode.h in Headers */, + 4F75DA1796B3054D6C06C440B43E78B5 /* endpoint.h in Headers */, + E0483311332D25129BA83288BDA62D15 /* endpoint.h in Headers */, + 8C8450154015050EF91D0A75F7F7FC53 /* endpoint.upb.h in Headers */, + 3039A9736B237D50FFACCDDDEA02F52C /* endpoint.upbdefs.h in Headers */, + 6C0E38BA090A2210C8FDDCE8A45A4A3C /* endpoint_binder_pool.h in Headers */, + 8A805F1C213CC528E0544E7E9DD7B7C0 /* endpoint_cfstream.h in Headers */, + 6F97ECE01EF70CDDB9118176584ED206 /* endpoint_components.upb.h in Headers */, + B522C668805FF81BC2EC6BDBC8C03B22 /* endpoint_components.upbdefs.h in Headers */, + 800CBD15065F1595695F9528AA3AF6F7 /* endpoint_pair.h in Headers */, + 9C36B9F5A75E26A6F017AACE6CBA6B8E /* env.h in Headers */, + 6F20552FD8963975C178641297153C6F /* error.h in Headers */, + D024EFEF500093D230866412E406D79B /* error_cfstream.h in Headers */, + 0AE4141AABF7BE673CB4128AE046A0ED /* error_internal.h in Headers */, + 06A23DD745E608C4EF3AEC2195EEFD0D /* error_utils.h in Headers */, + 89355514B8BA7F48F4B0B3CB72627F90 /* ev_apple.h in Headers */, + 63C7F3931B1757547A0F2B2E058E27EE /* ev_epoll1_linux.h in Headers */, + 6F1DAED52AE23308C205A7B853730300 /* ev_epollex_linux.h in Headers */, + 83F6A05C599C85472D4CD4E1BFA5677D /* ev_poll_posix.h in Headers */, + BEC01EEA5AF3AF3BB874773602195F77 /* ev_posix.h in Headers */, + EA908F09A9CCA9118F1AAF45CB8BEAF2 /* eval.upb.h in Headers */, + C8285B00E8C1DE05E9E1B3AE8A6D19FD /* eval.upbdefs.h in Headers */, + 4DC4A71412BC680DF65BAFB9E016E99E /* evaluate_args.h in Headers */, + 5C664EC1636EC067FC2C750439AB9848 /* event_engine_factory.h in Headers */, + 46E5E6D3BF47D1FCCDAE59F608EFB430 /* event_service_config.upb.h in Headers */, + 5DD5BA4F339C9EE05F358769326324D2 /* event_service_config.upbdefs.h in Headers */, + 56E730F6A905A8FFB631862506748F04 /* event_string.h in Headers */, + 5ACE1E9D709E7238D0A8A0273BF230CF /* examine_stack.h in Headers */, + B95024F39F92C796427B40029A5F565E /* exec_ctx.h in Headers */, + 3E2CF4C41A7E2D97F3EF425C77EFD670 /* exec_ctx_wakeup_scheduler.h in Headers */, + BED52455922C188E7060C3F37C23B606 /* executor.h in Headers */, + 0BEC7FB40164443809AE1FA9EB8739ED /* explain.upb.h in Headers */, + 67088E71902884FDD18D81C8E5B369C6 /* explain.upbdefs.h in Headers */, + A720E1C0D2C342C348BFAFECD0D24FF8 /* extension.upb.h in Headers */, + EDA7F079BE0D1BC18008CAEE5D7D75B8 /* extension.upbdefs.h in Headers */, + A99FF1BAF506D24D355D37636671BFC1 /* external_account_credentials.h in Headers */, + 3CA98FA9238CC948A33612014C598286 /* external_connection_acceptor_impl.h in Headers */, + EDCFC1172693DE2EBD5C3A3DD1B14359 /* fake_credentials.h in Headers */, + BBAE133121BC957D658FC511641841D5 /* fake_resolver.h in Headers */, + 038F1B54D65D135B1672B8291EB8046C /* fake_security_connector.h in Headers */, + 84120264D98E4209F3AFDD74E3A02BF6 /* fake_transport_security.h in Headers */, + 1F5C2E9AF251BC8DDDC2EF27BB8B3182 /* fault.upb.h in Headers */, + 0B6752C43D3F4AD98406E17AA8782E4A /* fault.upb.h in Headers */, + CB4D7387D21C93B6016D52827C888C98 /* fault.upbdefs.h in Headers */, + C84C62F915FF267EF2725CC072C6CAC0 /* fault.upbdefs.h in Headers */, + 642F9692B868C9DFF05A2C2B48A2BDA6 /* fault_injection_filter.h in Headers */, + 8500562F5272E191B9F3AC533266BE70 /* file_external_account_credentials.h in Headers */, + D29B123656AC7FDEF3D412824FD85B9D /* file_watcher_certificate_provider_factory.h in Headers */, + 80E18D86B1AB098D3E12534022851AF7 /* filter.upb.h in Headers */, + 62B527C1867B91C5C18CD95991D8F0C0 /* filter.upbdefs.h in Headers */, + D7E2AFC8AA957F80B2778294D6E78F05 /* flow_control.h in Headers */, + 9534CD1A8407663768FC17D874D27308 /* fork.h in Headers */, + BF086738AEA646D37D290F692E0AF9D7 /* format_request.h in Headers */, + 89EFE8C8F5C01FC9AC958524F28B3F25 /* frame.h in Headers */, + 7E30F1C75D1185966E8244E4B41418D0 /* frame_data.h in Headers */, + B6828A16141E127C6427F532D058CB92 /* frame_goaway.h in Headers */, + E599FA24FDAB3837440143150DBEA50D /* frame_handler.h in Headers */, + 18D40C3B94928D2CB4B94E89D2764D71 /* frame_ping.h in Headers */, + A332FF0D0208362693A23CF5CE29CE5D /* frame_rst_stream.h in Headers */, + 90018A6E5760697D5C8D04D6BF7EA19E /* frame_settings.h in Headers */, + D8205E5E5F00E28BF53B285581B470B4 /* frame_window_update.h in Headers */, + 5562D88E9A8D625294B32E5169D31849 /* generic_stub.h in Headers */, + EE37BE0241E0C0C885F2F00F6A1D8328 /* gethostname.h in Headers */, + DFC6D98EAAE9A442E7B60B306A800613 /* global_config.h in Headers */, + 8CDD9690BEFBA322AD01E33A0EDDD2BE /* global_config_custom.h in Headers */, + 6066EABD6011634B20A0460D96BF0F06 /* global_config_env.h in Headers */, + F50B9339D7E4C07DF41568494A2E9D05 /* global_config_generic.h in Headers */, + F79BCDD3B927C80EEBFC9FF5ED29383E /* global_subchannel_pool.h in Headers */, + 547B4BC5A28E50346172A1A767BD6913 /* google_default_credentials.h in Headers */, + 5ED28F23C487EB771C667BC9D482A9DE /* gRPC-C++-umbrella.h in Headers */, + 44E5444A3C13484845C21F06E5756E2C /* grpc_alts_credentials_options.h in Headers */, + 9B073EF40CBFAFFD4D769C3C00C652E8 /* grpc_ares_ev_driver.h in Headers */, + 5618A0168703CEF7A112DBA689FEBFE8 /* grpc_ares_wrapper.h in Headers */, + 16C800C6A6E5E675235B4E1DD0E7000C /* grpc_authorization_engine.h in Headers */, + EFB70B721163EE6EC4FC9048735E7D7D /* grpc_if_nametoindex.h in Headers */, + 008040BCF18E212053E27D82DB74C356 /* grpc_library.h in Headers */, + 2227FD6AEA5737AB15FA9D18ECB1D5BE /* grpc_library.h in Headers */, + 962ABEC6E0EF6160D2F875EEF20EAEC2 /* grpc_service.upb.h in Headers */, + 8CD4C046D8667142ECB8C08765C579A4 /* grpc_service.upbdefs.h in Headers */, + ADFA38E080C0FDDFBE44B7D127B0765C /* grpc_tls_certificate_distributor.h in Headers */, + AF32D420733570DAA83BF930A2D3A966 /* grpc_tls_certificate_provider.h in Headers */, + D78025582643E8153BA44EDA457C32C4 /* grpc_tls_certificate_verifier.h in Headers */, + 47485B30ADDA08A09E1DE0542DB46956 /* grpc_tls_credentials_options.h in Headers */, + BFEC5F769D8A62C2C6440F0EC38853C1 /* grpclb.h in Headers */, + 0A9DB19F4FBC3E0E46A8638FBE5232C0 /* grpclb_balancer_addresses.h in Headers */, + DC7F11260586F0E9AFBAEB4DA4563642 /* grpclb_channel.h in Headers */, + 86A797C68E98EE4FCADE7246787BB26D /* grpclb_client_stats.h in Headers */, + 8FA30A0F9188BC47A95B97559A0760E3 /* grpcpp.h in Headers */, + 37A54683903AE371C51A1E6BA13CFB71 /* gsec.h in Headers */, + 7ADEA346958976ED5543F65A6314AF41 /* handshaker.h in Headers */, + 7BCFD6EAA0B0446D8998A2C699DCFF89 /* handshaker.upb.h in Headers */, + 087057B9AB553048AAA4263FE8BD4E98 /* handshaker_factory.h in Headers */, + 895761D7B7FD28FA55BCF5C87D1D7A9C /* handshaker_registry.h in Headers */, + 1E516514AEC0F2F78BFB65FDD8BCD755 /* health.upb.h in Headers */, + 084327D0B6B409202BBE825D3B90781C /* health_check.upb.h in Headers */, + AAFDFFC805C37D602F28203021D27CB0 /* health_check.upbdefs.h in Headers */, + 9EBB705EFDDB9945208F9150706F1C4E /* health_check_client.h in Headers */, + C7AFA564B5946D62DA620F81DBDB7A1C /* health_check_service_interface.h in Headers */, + D22EDE54D6B81AB54B7C707A9DBD4E11 /* health_check_service_server_builder_option.h in Headers */, + 503AE3323FE26E55BFCA9089EC2A771C /* host_port.h in Headers */, + CDE267C6A34E3EF40B4610E00A234276 /* hpack_constants.h in Headers */, + 981C0283F02494E032A6292E987A9F37 /* hpack_encoder.h in Headers */, + E9741068F229F654564BFEED0CA474F8 /* hpack_encoder_table.h in Headers */, + F97629FAAB51EC43986AC1935B5D40B3 /* hpack_parser.h in Headers */, + CF19972BD6D11F437CD365FC90DE86FC /* hpack_parser_table.h in Headers */, + 438CF853E2C9E6A162B6E3DAD648E59B /* http.upb.h in Headers */, + 127D40B9691287C01E3C3D54DDB78BBA /* http.upb.h in Headers */, + 5528C5AB04CD82A742D79EE39AD5C740 /* http.upbdefs.h in Headers */, + 4F6073EC3DFBC0681F75554EAFE5A909 /* http.upbdefs.h in Headers */, + 62CEB49E1394FED57DBCF7519EE8AAED /* http2_errors.h in Headers */, + 6D8B0D28BBD50E121534D7506A672BEC /* http2_settings.h in Headers */, + 0B1A0FF360AADDA1674E24C3D3B1DCE4 /* http_client_filter.h in Headers */, + 8EC4E18A9969DD4F22F22862A132003C /* http_connect_handshaker.h in Headers */, + 1BB5359A266079882C153631B2E56EDE /* http_connection_manager.upb.h in Headers */, + 9DE6D24759ED78788202FE6767C2480F /* http_connection_manager.upbdefs.h in Headers */, + ADA00BCAFDD1ECE0B17EC0C83FC404F5 /* http_proxy.h in Headers */, + 6F9A78D9BDC77C620FE4CF77F112E721 /* http_server_filter.h in Headers */, + CCE4105B833E2678C4CADD340EA3EEF7 /* http_tracer.upb.h in Headers */, + 269129549333BCE7C6EDE13BD361BC03 /* http_tracer.upbdefs.h in Headers */, + 3CAD6D6A17980FC015433616410C038A /* http_uri.upb.h in Headers */, + 2D31D33D98372F5EB96E017C6339DEEB /* http_uri.upbdefs.h in Headers */, + 6E795DB8EFC7319E218520E136DF4A8C /* httpcli.h in Headers */, + 674BAABB30087E5E4D5CD33A9C752FF9 /* huffsyms.h in Headers */, + 154B9099BD5D1220481068A498B61D2F /* iam_credentials.h in Headers */, + 7668795BF77EBD876FD602055E950B04 /* idle_filter_state.h in Headers */, + 01A9FB60EF0A296E3BA3F91A251D5039 /* init.h in Headers */, + 99DAF7556CC06100637ADDF89C5102E5 /* inproc_transport.h in Headers */, + EF492088005609438493EA8282B3D4F5 /* insecure_security_connector.h in Headers */, + FC906E298FAD3A4F827B38E3F1EFCFB5 /* intercepted_channel.h in Headers */, + 5D5A16F1012BF7544C6F49B25AF8E61A /* interceptor.h in Headers */, + 5FD76789E49C7362C41DD392E88DEC82 /* interceptor.h in Headers */, + 00892A503AB5FF75D23001FEA9CCBAD8 /* interceptor_common.h in Headers */, + B5BEF9B7BA6DD72C4C9D69E0466CA397 /* internal.h in Headers */, + 6765B63359B5892DAF90474225683C72 /* internal_errqueue.h in Headers */, + B2A7E94A4DAD6BCDA5451CF7AE399746 /* iocp_windows.h in Headers */, + 9F7D74BEA12C8879633A263EABEAE952 /* iomgr.h in Headers */, + 7C0772D0C5725EBCB7F33A575AC74497 /* iomgr_custom.h in Headers */, + 9A0234B503EB18DF03D73BCCFD8A6E16 /* iomgr_internal.h in Headers */, + 1C3BE7E8C6FD77B1F586B06E733C020A /* is_epollexclusive_available.h in Headers */, + CBA47289EAD2B58D5EF26B0B4FEC3BD8 /* jni_utils.h in Headers */, + AEF0C93540176A7FF0B96662A43313C8 /* json.h in Headers */, + F64447BDBB9022BB3B0E53048D66CADA /* json_token.h in Headers */, + 80EADCA96BE6BB792A8BF08E0262D7DE /* json_util.h in Headers */, + A4F645DE4EBCF6390048868AC0F54496 /* json_util.h in Headers */, + DF26857010F293AF8E5DFE3C0EE274FC /* jwt_credentials.h in Headers */, + 6B69A920F96C97D3B13A752B4408EE1A /* jwt_verifier.h in Headers */, + DF1B64CC7C1DAE4E6EA11DBD5C6E79DA /* lame_client.h in Headers */, + D6BBB986933CFEE6D542AF6B8C2C3826 /* lb_policy.h in Headers */, + DECC4960F6B0FC9C0CFF278D92F03050 /* lb_policy_factory.h in Headers */, + 10F206FDA19EA45CCB43F7985434197D /* lb_policy_registry.h in Headers */, + 2B2CD18EF1491E52664D8E170B678DE7 /* lds.upb.h in Headers */, + A098FEE43FAFFA0286063D044CE8D551 /* lds.upbdefs.h in Headers */, + 7EB7646125B1B541E24BA20445234DE2 /* listener.upb.h in Headers */, + A02BF263B99C549142BF837DE2BE9A0B /* listener.upbdefs.h in Headers */, + F0D26AF1181CB2CA978042BC3B4A826C /* listener_components.upb.h in Headers */, + FFC098B7146C68D42787293E874DFACE /* listener_components.upbdefs.h in Headers */, + 0F9876700649D6A2736DD191A521D561 /* load_balancer.upb.h in Headers */, + 63FDD9D6A5C808DE3375FEB9FC0F3048 /* load_balancer_api.h in Headers */, + 5FC4267EF0671A145D90512F7474F53D /* load_file.h in Headers */, + 238BBB6005AABEEA2DD3B451DA455D33 /* load_report.upb.h in Headers */, + BDBFFB0967EF141E5CD0EA673E23A1BA /* load_report.upbdefs.h in Headers */, + DE8AE8277CCEB36F85C142099B4B1C8E /* load_system_roots.h in Headers */, + 6EE68136BB06D77D4DB1F1891C9EBDE9 /* load_system_roots_linux.h in Headers */, + 993A6B2FA5974965833B6847312CC6B3 /* local_credentials.h in Headers */, + A59B878AD168EC921D5D3655FF42BD6C /* local_security_connector.h in Headers */, + 3BB8E3F1F6FA44DA14843D7747F2BECB /* local_subchannel_pool.h in Headers */, + 8E0D78D34CFE2310D214428DE9C507F1 /* local_transport_security.h in Headers */, + 54E5CD170383D90C76A00C309861B5AB /* lockfree_event.h in Headers */, + 8E6FFB9565A9BD03BF270825B1FB7A95 /* loop.h in Headers */, + 8B2F437CAA82EBC6EFFCA7946A7FD6A3 /* lrs.upb.h in Headers */, + 6FB585E0740A78A7DEF82C64538E77F0 /* lrs.upbdefs.h in Headers */, + 0CFB3DD3917BAABA0957D8DD972AB324 /* manual_constructor.h in Headers */, + 12E1702B6F9A85715BC9A4F1CBEBF8CD /* map.h in Headers */, + 3E9B52F5E53D863E1FAE0DC11D33E6D1 /* matchers.h in Headers */, + 4A91E835BB7F3092291DFBCC19E99DA2 /* matchers.h in Headers */, + EBA94E9BCF752DBDE946399EF44912DB /* max_age_filter.h in Headers */, + 97F517BA280944B49B2A505391067961 /* memory.h in Headers */, + 362F26DA971E61153746F0FC1753CEC8 /* memory_quota.h in Headers */, + F427906BD1D525E7B1BD1B9C1876DD20 /* message_allocator.h in Headers */, + 5490CDBCD68209F091B508360B8C3170 /* message_allocator.h in Headers */, + BCE88F4B34C38C53934D9C3BEE539485 /* message_compress.h in Headers */, + 4A32577B357BA9EBF4B1392F713B10D7 /* message_compress_filter.h in Headers */, + 0C3D5F361673068C68E9EE688E33C8EB /* message_decompress_filter.h in Headers */, + D992543760A0C93B4861CE9605158CB9 /* message_size_filter.h in Headers */, + 5EE201A6AC6FBCC1444EAAF5680802BD /* metadata.upb.h in Headers */, + 3DB9930BBE8755F1C984C58E49DBC374 /* metadata.upb.h in Headers */, + D3FE102624F993E3D905BEC9776132CF /* metadata.upbdefs.h in Headers */, + 70BCF172CB01CD756E3867DC4CE0ADB1 /* metadata.upbdefs.h in Headers */, + 0C1ACBF965E06525402C86A407B68F75 /* metadata_batch.h in Headers */, + 05796284105527DA4A51187CDC1B039E /* metadata_map.h in Headers */, + B03C9B47966599E70534559100F9B699 /* method_handler.h in Headers */, + B59E3131471ED1BE9E1C838A5D3E6CE6 /* method_handler.h in Headers */, + A8B6C9621B92B7D3E86FB70179C9B020 /* method_handler_impl.h in Headers */, + 1E3E731B01B6145114CCFE436DDF8AD1 /* method_handler_impl.h in Headers */, + 52C571B4F72568FCCA873D2D7315951D /* migrate.upb.h in Headers */, + 2CD37CD7F9C780A4937C2F258ED507DA /* migrate.upbdefs.h in Headers */, + AA1898926A8CE464FB645712919FBE00 /* mpmcqueue.h in Headers */, + BA8D60204AD6EF6406503086AB9A012C /* mpscq.h in Headers */, + 2BDE5AEA52801C4762DB816E1B598FF2 /* msg.h in Headers */, + 4117074E1B8A844A60B85F6C274FD0EB /* msg_internal.h in Headers */, + 2C6F80F5476DABCCED2E04C105DA6BC4 /* murmur_hash.h in Headers */, + 537CDF5486099436535E2AE07256EE6B /* nameser.h in Headers */, + 11BF05DF65173BC921BDB95328324C14 /* ndk_binder.h in Headers */, + 039772E1E4A41D65E02DBA5359F715EE /* node.upb.h in Headers */, + EF4A56CE88481772773A7DE93375AD3E /* node.upbdefs.h in Headers */, + 890B025D6590B40A419DFE9C46DAC39E /* number.upb.h in Headers */, + 9B65063DFE6828B959D0F0828F57AA2E /* number.upbdefs.h in Headers */, + 05E3E86BF4AE3A7343246BF86C45F65C /* oauth2_credentials.h in Headers */, + 6599E6E2348D6643BF339BFCBE858AF6 /* orca_load_report.upb.h in Headers */, + 3771E58F17F531E35ED24657499E83B8 /* orphanable.h in Headers */, + 083F1508922A5D21F61966AECF79B60A /* outlier_detection.upb.h in Headers */, + DD62A0AF55F662A70109587426E86BF7 /* outlier_detection.upbdefs.h in Headers */, + 88F752A79A3AEEB7E706809B9273060C /* overload.upb.h in Headers */, + 805136781D03A91D6C79246F1FF1663A /* overload.upbdefs.h in Headers */, + 1BB377B92BD255B9309AB3D1384DF382 /* parse_address.h in Headers */, + 300564D9FB059ADBAF84BD5D6033C897 /* parsed_metadata.h in Headers */, + 8EDD2A5475EB1B13BAA66AD740FEA8D4 /* parser.h in Headers */, + 7CE6353C1B1F8C787EE517B0C61B713E /* path.upb.h in Headers */, + B390F65444517616F457E940B48DECC0 /* path.upbdefs.h in Headers */, + 3EC4FEA40ACF981079300BBF0F9B643B /* path_transformation.upb.h in Headers */, + 05A2E656ED79A449E9E1A17AB3E94BEF /* path_transformation.upbdefs.h in Headers */, + FE2E481B22FCC2E21512D814260BA1C3 /* percent.upb.h in Headers */, + FB5DBDA8D1149044622C25F946FC622F /* percent.upbdefs.h in Headers */, + 16D14D1F812E624470F5AB907A37A8CA /* percent_encoding.h in Headers */, + 64656A619B8DCDE3AE03E88DB7DF8BF0 /* pid_controller.h in Headers */, + 34E14CB5FBF1C0A67DD9ED89BE104299 /* plugin_credentials.h in Headers */, + 36F45FB06D592E81C8BC05054AB73952 /* poll.h in Headers */, + 3A3A945023EB0B064B12545B146DE909 /* polling_entity.h in Headers */, + 1EAE1A9B56A3648701CF3F7E97369DBF /* pollset.h in Headers */, + 019651482D6C640E5D2D69B52E201EDA /* pollset.h in Headers */, + 3D0E94DDC8D30BB67AAE8E6517370243 /* pollset_custom.h in Headers */, + FFBC55FDF0E42F9AA8427CAC351142BC /* pollset_set.h in Headers */, + E371C1B18135C37102683AFE5F6013CD /* pollset_set_custom.h in Headers */, + 4C6AC7E8BA63D28095F7A2F453100E75 /* pollset_set_windows.h in Headers */, + 1F1EAA88C0C99A494E8C741CF2E9CA8B /* pollset_windows.h in Headers */, + A74C1ABE9020BF17EDEFEDD74812F9FA /* port.h in Headers */, + 8659C31156BDAC28A7C4434698A9D500 /* port_def.inc in Headers */, + BB10FDD1F94C3E662F5A71CA59169C28 /* port_undef.inc in Headers */, + 55E6C0B0E4D245684C7CF97392E77579 /* promise.h in Headers */, + EE0C9D3869ED289B0FD8F8B5C2D5ACB4 /* promise_factory.h in Headers */, + 52C4202BF337940E106985AD30E11E71 /* promise_like.h in Headers */, + 638D9F02291E7BB320E8CE75EBF20045 /* proto_buffer_reader.h in Headers */, + DE9F6D50BFC9328C67E95913A2F39C91 /* proto_buffer_writer.h in Headers */, + DCE1C9C2353036489DC7E9FC2A97348F /* protocol.upb.h in Headers */, + 62902B3C36A42015CF8549A93E5FFD7A /* protocol.upbdefs.h in Headers */, + 5D20EA97075E61789E5F40722E13346D /* proxy_mapper.h in Headers */, + 5783DA97AC4909A1931570ED9995417C /* proxy_mapper_registry.h in Headers */, + B8E2546598CB5D1441197FBFD5BD901B /* proxy_protocol.upb.h in Headers */, + E502245CD16303D131771F9F240A6DC8 /* proxy_protocol.upbdefs.h in Headers */, + D001D907ED203B3132E59E81F627E68E /* python_util.h in Headers */, + A7BE6EFB02B2A26A81DC76E42822FA84 /* quic_config.upb.h in Headers */, + E90B1D5ACF1647E2FC2A67A96286F2C9 /* quic_config.upbdefs.h in Headers */, + 543904F407E7A273C7C2466126148F51 /* race.h in Headers */, + 5E478B1F5141F2B343DF3B3656294167 /* range.upb.h in Headers */, + DE0D108E15E9D537F8B3DC8E463182D0 /* range.upbdefs.h in Headers */, + 063463A8999EB2B9E2632ACE0644B67C /* rbac.upb.h in Headers */, + 43EC214C7F711AC26932CDCA564E9C8C /* rbac.upb.h in Headers */, + A511632F7C481F21068E971156EA1059 /* rbac.upbdefs.h in Headers */, + 7885BB7A33C729EF1AB85BCB18C2A2FD /* rbac.upbdefs.h in Headers */, + 34841654D18D1DE5E9BAF13479F73482 /* rbac_filter.h in Headers */, + E6B7F2773C40FAACE7384AD0E5D538EB /* rbac_policy.h in Headers */, + 8740FB282E7A4C39B2D35487B8A23198 /* rbac_service_config_parser.h in Headers */, + E271E45EA784B7602C5ABDDDCC39E296 /* rds.upb.h in Headers */, + C48A39DC8994DAD174D368AF65140925 /* rds.upbdefs.h in Headers */, + 3922F91EA21445D6E9EEAD863CE938DB /* ref_counted.h in Headers */, + B30CA8A0F1E4E8D0073118AF4218862C /* ref_counted_ptr.h in Headers */, + 85EC954667E72C13AAF32E82B01768E1 /* reflection.h in Headers */, + 47577BFD615DA8561E1001162DF7B6A3 /* reflection.hpp in Headers */, + 83D2C6AA5B5502509AC2EEF07FF3B98F /* regex.upb.h in Headers */, + 262EE3C4B631FB5E07976AFACE9BD48B /* regex.upbdefs.h in Headers */, + 186437B499B222590CA865233E740F50 /* resolve_address.h in Headers */, + 0ED53876B4F0706C134DCE761785B4B7 /* resolve_address_custom.h in Headers */, + F3E0527B309770F823D8D3DFDDD4BD5E /* resolve_address_impl.h in Headers */, + E423EB9F438E20069FEC8F7D8D600E14 /* resolve_address_posix.h in Headers */, + 1E39193DB37F0594420F96A7D90FD5DB /* resolve_address_windows.h in Headers */, + 090647642039CCDD7341E64B2182D1D3 /* resolved_address.h in Headers */, + 828F3F757E02025880DE23860834E2DC /* resolved_address_internal.h in Headers */, + 1DFF90D5E6933265DBF28C16BDE2DF3B /* resolver.h in Headers */, + 53231F3D69343C9FC70C7995638565C9 /* resolver.h in Headers */, + C7888EF99BEE210DDBDB74338BC01812 /* resolver.upb.h in Headers */, + 8443DE74A33AE468A22C23B019AFF76D /* resolver.upbdefs.h in Headers */, + 866D0CC73EE75DB580A0B527CF917C4E /* resolver_factory.h in Headers */, + 980520A0FA8352F2803F71208AC2277E /* resolver_registry.h in Headers */, + 571406E33E6BD5F57D52A9116D1B29B4 /* resolver_result_parsing.h in Headers */, + ADC758DFA3EC77E9E0CC6A46375C8E4F /* resource.upb.h in Headers */, + 867A20B60CCF1FA05810E0D1B9DD15C2 /* resource.upb.h in Headers */, + A1F399DB68C2737D1B7B4D6543C653EA /* resource.upbdefs.h in Headers */, + 884AC4AC5EA119B0CC13B99DBE003534 /* resource.upbdefs.h in Headers */, + 91B10FA623F2BD581D2AAF286C64B59F /* resource_locator.upb.h in Headers */, + 0A2E468217F27C48E4E3D75BC24CE79E /* resource_locator.upbdefs.h in Headers */, + 414192B6F28C4DD798A6F213F466EBAC /* resource_name.upb.h in Headers */, + 81DBA8821E096EBD2ABABA90D0CA4232 /* resource_name.upbdefs.h in Headers */, + 3C5A948D4145CC3CBED2484D2AF7AA13 /* resource_quota.h in Headers */, + D8C8C80159C138185A604242E52A10F8 /* resource_quota.h in Headers */, + 609FC6ECF1364DF86A5DD47602AC3359 /* retry_filter.h in Headers */, + 2BFA96BBCCEABC4C12B236FB64532FC8 /* retry_service_config.h in Headers */, + 572A2925A8DD4F4999B12667D44BB713 /* retry_throttle.h in Headers */, + 796B211EF60A4CF0BA0C5F6CC9FA45C5 /* ring_hash.h in Headers */, + 825929923C6D426C4FA1F6D39E2AAE35 /* rls.upb.h in Headers */, + 97D0BD0507F0AECF6DE2551F38F89BC9 /* route.upb.h in Headers */, + 5964D72BF0C6FBD3B38352761556909A /* route.upbdefs.h in Headers */, + 9E80FB77836DBDCDABA546AB4FF17484 /* route_components.upb.h in Headers */, + 23E402585ED24D0AAB33D670F2FB995E /* route_components.upbdefs.h in Headers */, + EDADA680DAAF02175421B489039B92F9 /* router.upb.h in Headers */, + 17467EC97BA91B7099ABF5295F6766E2 /* router.upbdefs.h in Headers */, + 3E5A8118491C49EAAC00939645D81BD0 /* rpc_method.h in Headers */, + 70638A25547FBF8AA8A1C656D2A6EF19 /* rpc_method.h in Headers */, + A0E4052A91779B6D704C036A0938AFE0 /* rpc_service_method.h in Headers */, + 1505F02C55DA87E32EAAA8A75990ED71 /* rpc_service_method.h in Headers */, + D2AF0C54A5FF04E8B7607E4B74A7B355 /* scoped_route.upb.h in Headers */, + B2A1E11F18BE94FD3C807727F609F456 /* scoped_route.upbdefs.h in Headers */, + 7792677A3C686228D86A42E707C5E6B9 /* sdk_server_authz_filter.h in Headers */, + 8933F28032E0E55DA85DFEC9B3257FDF /* secret.upb.h in Headers */, + C355F410F50C8E2BC0989D8C84B2F4DD /* secret.upbdefs.h in Headers */, + 3D3915094DD7DFAD212AB9D6CF738678 /* secure_auth_context.h in Headers */, + 0E4A8A184270EFDE4E228420942A306E /* secure_credentials.h in Headers */, + C80E957EBB611E258F8B4B1D7D71619B /* secure_endpoint.h in Headers */, + E90FF91B8964853975CD47747A75350C /* secure_server_credentials.h in Headers */, + D11564AF4282DA99E926128E49DB1DE6 /* security.upb.h in Headers */, + 2D841249F7D10D7559C5D26B14851365 /* security.upbdefs.h in Headers */, + 13FDFFCBD1EC63911105420EBA5B1C02 /* security_connector.h in Headers */, + 527C63C8ACC03DA4946AD2C3D44D1685 /* security_context.h in Headers */, + 20487DF912F40209C779EEBA8563F99E /* security_handshaker.h in Headers */, + 6D989654F7E67EB1C78995B3CD370CA7 /* security_policy_setting.h in Headers */, + ACF22833665B665066BE528EBF5B3B15 /* semantic_version.upb.h in Headers */, + 7FC917484E78BF9233690D1DBC12915C /* semantic_version.upbdefs.h in Headers */, + 7DE721443EE6EEC71F0CD114D37B684C /* sensitive.upb.h in Headers */, + 26F6D4B61E66B8FE4592F710390A75EE /* sensitive.upbdefs.h in Headers */, + 15BF682B9F2736907D39313B5647B43D /* seq.h in Headers */, + 2BDE3E961108F61B0FDEC43C8C7F3629 /* serialization_traits.h in Headers */, + A01FCAECF7F9015BF6F910C699DE055F /* serialization_traits.h in Headers */, + 3E5038CE5EDB14E1493EDCC2B98CE541 /* server.h in Headers */, + AAEDBAD5EA905B0059221675A8C90BA8 /* server.h in Headers */, + 9F5D90479A2C847AAA96DDA2CF71F613 /* server_address.h in Headers */, + 5937F2B470E09FEFC4DFCD0B499A482B /* server_builder.h in Headers */, + 584AA96EF6FD3FCE8BE848637F9C7570 /* server_builder_option.h in Headers */, + 4A147006FA5AF84D903105038F19642B /* server_builder_plugin.h in Headers */, + 0AD2BA70A24DC5623730684B6504C823 /* server_callback.h in Headers */, + 2665E75B57226CED0347596C0DC4C7B7 /* server_callback.h in Headers */, + AA42455B9B036DC260F4D59EFEE77E95 /* server_callback_handlers.h in Headers */, + 453B4E69CA6FCCE671251FE5A0B82DE6 /* server_config_selector.h in Headers */, + B2E59FFC61F77204E44877150CE16F7A /* server_config_selector_filter.h in Headers */, + 6B8905B76715260BBF9ED31D0B8E8852 /* server_context.h in Headers */, + E39755552FE254AE6F769D8CEB23B0E9 /* server_context.h in Headers */, + ED95664CC44210246DABDDC1545D887D /* server_credentials.h in Headers */, + 12CC5BB4622939F36619BF13AF33E3CE /* server_initializer.h in Headers */, + C9E21A08A7F1DD518F07509EEFE15D0E /* server_interceptor.h in Headers */, + 7D97D4CA6785DBFCFF46C7C6D06A0390 /* server_interceptor.h in Headers */, + 1829A0326F2A2D0D4980EA887B87D814 /* server_interface.h in Headers */, + 67873AD528A04F5768BC70AFA36BC7D1 /* server_posix.h in Headers */, + 2436D88F09C4A3A6876375C1F6CC061E /* service_config.h in Headers */, + 297D55D85CF31C86505D40D81393A898 /* service_config_call_data.h in Headers */, + B108496C2A6F6E2424727759607D8A24 /* service_config_parser.h in Headers */, + 320C93FFC8CBED14B6AD468109150B28 /* service_config_parser.h in Headers */, + 576727F728347BCE158B87EB071B9070 /* service_type.h in Headers */, + 826C34AF1197B0F67893970293B4D484 /* service_type.h in Headers */, + 40D655155B710C71890087228E573021 /* slice.h in Headers */, + BBC67402FC9EA1DE92132CCAFCD05746 /* slice.h in Headers */, + 00E4D565A5528C626FFA38F308776686 /* slice.h in Headers */, + 039B9DAA3E26BE87A3D7C1E92AC01E99 /* slice_internal.h in Headers */, + 972049FDE8D5B6806822DE4CE6A1335F /* slice_refcount.h in Headers */, + 04ECA6994CEAA6AC8196A244C47F7D28 /* slice_refcount_base.h in Headers */, + 01715C52F185EB79E4F0594ED6342985 /* slice_split.h in Headers */, + 227E48FE251CDD0232345088CEA0274D /* slice_string_helpers.h in Headers */, + 8490B192CE6C07411E72477B6597D66F /* slice_utils.h in Headers */, + 3A53CB95EF0CC9C1B67B957698B2E681 /* sockaddr.h in Headers */, + B187977572E6296B90E870F7A4418C3E /* sockaddr.h in Headers */, + E330765AFD7F9D5CBDD520F404CE0817 /* sockaddr_posix.h in Headers */, + 3D786E553F0DBFB7B6AD8F743125B64B /* sockaddr_utils.h in Headers */, + DF554A1AC89A4352CE94B42A2626BAAF /* sockaddr_windows.h in Headers */, + 2945417D38A1B79D727FD88194A0C5B2 /* socket_factory_posix.h in Headers */, + 394EA322E2D3FAE7ED14A31C26FBCAED /* socket_mutator.h in Headers */, + CA13904448C8F81BDCA28E4882536BFC /* socket_option.upb.h in Headers */, + 2568C6A3DF6835E75DA9C75BF0ED5CBA /* socket_option.upbdefs.h in Headers */, + C785E31B9BEB063D590EE5F87380B6C7 /* socket_utils.h in Headers */, + FEF484793481191CC9E7A3D3534F0141 /* socket_utils_posix.h in Headers */, + 52D7A7EE20C8B9760820FCC4D92C1C16 /* socket_windows.h in Headers */, + E102C7540CD16F7A531D467B40538C4A /* spinlock.h in Headers */, + 38A8DF3D154239175DEE6F5DC1378826 /* srds.upb.h in Headers */, + 1892AF3BDC0DABD5011DD25576EF630A /* srds.upbdefs.h in Headers */, + CFE2C552162A5ABACFEF2FF979883FAF /* ssl_credentials.h in Headers */, + 3748C4597A8B2DC180FA9D54808DEDC5 /* ssl_security_connector.h in Headers */, + 46EB2F52998D368342F778EB20F31D05 /* ssl_session.h in Headers */, + 529B703AE71B2B030DA6BBC55CC4A0F4 /* ssl_session_cache.h in Headers */, + 4BB1D06402DB14AC8CC58CEE2D60F265 /* ssl_transport_security.h in Headers */, + 54440DAA4CBB5E762613FC11DF7230C0 /* ssl_types.h in Headers */, + 47C614D12E124204BDA286F4C2DFA130 /* ssl_utils.h in Headers */, + 09F898CD2965AA95C6044E91D45FE54C /* ssl_utils_config.h in Headers */, + 3A3FCD2F419DF691C9C29A3A0C39DDF5 /* stat.h in Headers */, + BDCC4D185F45EA57CBD5C2D538C4B0FA /* stats.h in Headers */, + C8AF3874250D951A0224ABE2C270DF76 /* stats.upb.h in Headers */, + 2230D765220D32E8D5E834FEAECC5A3F /* stats.upbdefs.h in Headers */, + FD53FAF72369F05820C148CB329AADDE /* stats_data.h in Headers */, + DC819939C5810A751B2BF13297158CF1 /* status.h in Headers */, + 89A7A78C3957D062C785D5CDA9EFB052 /* status.h in Headers */, + 0D03DFC6F91B6C85227B06F23F26EE6B /* status.h in Headers */, + 6A3364F15E3F21A17ED502FBE002C226 /* status.upb.h in Headers */, + E2604CF73F2472299C3DD66CA26CE654 /* status.upb.h in Headers */, + 243DFC26C416F2A4B1ACD4FC60E9B4F3 /* status.upb.h in Headers */, + 080B1466AFB7E2E559A068ADF079DA4E /* status.upbdefs.h in Headers */, + 4CED898B2A8FC34CC36F189C51E2300A /* status.upbdefs.h in Headers */, + 6569BAD09D027FBB5AC9232F0DAF0798 /* status.upbdefs.h in Headers */, + 10B6EED6FE84EFCFD11706ECDBCCB564 /* status_code_enum.h in Headers */, + DEAD8A876D88914D3EB4DA697053FFDD /* status_code_enum.h in Headers */, + 21986D9A9F2DD0522E9E1A8E4572F706 /* status_conversion.h in Headers */, + A4F69EE3AC2CE8E2251078C147EE9AD6 /* status_helper.h in Headers */, + 2AF828155AC7F0CA29BAE8659B459572 /* status_util.h in Headers */, + 0BC3B0CAAD95FD93A3056E22ED358118 /* stream_map.h in Headers */, + 5CFA6F6486B2C6989AD884603CE65CCF /* string.h in Headers */, + 4311561E6091540627934A588E59E807 /* string.upb.h in Headers */, + 89D26F52C8137ED8D1B26EC81FE3441C /* string.upbdefs.h in Headers */, + 4BA25938B9A993317B103450E3CAF58E /* string_ref.h in Headers */, + C3E75D01DA0E6C13516E8C44AB461E42 /* string_ref.h in Headers */, + E6B716CBB67CD28D3EC8B541E961C753 /* string_windows.h in Headers */, + 428EB2AC7021FA3E1C435AC97D55C810 /* struct.upb.h in Headers */, + DE26A5EA6551E406689F1AB84B78632A /* struct.upb.h in Headers */, + BFEA096855025E8604061EF38359D6FD /* struct.upbdefs.h in Headers */, + DBE07A701C44EBAEAA635A53E0D24405 /* struct.upbdefs.h in Headers */, + 3CE7D9CE6B6B7FFA5A2157BA25B3A46B /* stub_options.h in Headers */, + BE38897D17A240378DFCC38B354EA756 /* stub_options.h in Headers */, + 4FE6EF9C404CCDBF88D2FBA3C3414B94 /* subchannel.h in Headers */, + 6E7CB159DEE2DA9AE4ABC59621001552 /* subchannel_interface.h in Headers */, + 4C6544B5B8A130CE633BA67AD405AC93 /* subchannel_list.h in Headers */, + 739AEBC822C1FF96ACCB9796B0849B10 /* subchannel_pool_interface.h in Headers */, + BB55CE97F763BC40E5CC0067FE71B7E5 /* substitution_format_string.upb.h in Headers */, + DBFB76BE2ABC420BBFCD7370DE6D809B /* substitution_format_string.upbdefs.h in Headers */, + E4B411B972D61896DDE28B8BCED6E8BA /* switch.h in Headers */, + D2CCB8C6DF33CFA4BDAE7B205BB61EAC /* sync.h in Headers */, + ECEDDA050585FAB2D77B601A0FA644D1 /* sync.h in Headers */, + FB9E3F4D066B9745599D9727E5C74D74 /* sync_stream.h in Headers */, + 85E098E73E3836A23564D2BF5C57CC6C /* sync_stream.h in Headers */, + BE76375189DA2BCDCE30735DF492B13B /* syntax.upb.h in Headers */, + D12216603C9FAE912DE7FAA7FE919592 /* syntax.upbdefs.h in Headers */, + 9CA6A4457B4F5039B196B8A16CA48382 /* sys_epoll_wrapper.h in Headers */, + C343B57FCD8850C8A90D0B46540E5584 /* table.h in Headers */, + 7FCEC256C3C9E66F15DE7FC49D7CB634 /* table_internal.h in Headers */, + 41E731952FE0E2EEAD53C8ACCFC83A16 /* tcp_client.h in Headers */, + F218ED65F903CCDDFF57C28FF6CDB423 /* tcp_client_posix.h in Headers */, + 5E634337ACBCD79689241B74ACCEE185 /* tcp_custom.h in Headers */, + 748FBBB9274C5195138B41A8D6FE6864 /* tcp_posix.h in Headers */, + 3AA6D7942EBE714401371F127AE9AE31 /* tcp_server.h in Headers */, + C21DFA367135319400B694B699B52DDB /* tcp_server_utils_posix.h in Headers */, + F7E250C1CFA3BA4C4E10C378C2E832B3 /* tcp_windows.h in Headers */, + 9FED2BC8F1B108CA833F83EB33BF55BF /* text_encode.h in Headers */, + D5935C9AC1C8F6563D809EB214FED5A1 /* thd.h in Headers */, + 4C7A664F143891BBB880ABE600DC871E /* thread_manager.h in Headers */, + 62EB839E7EE33842A937C0F15A88D73A /* thread_pool_interface.h in Headers */, + 927EA343827AE71911DD621AC4B3AACA /* thread_quota.h in Headers */, + C773F6061DCC224B9ECB2DBA84316D1D /* threadpool.h in Headers */, + 270CFD717BE0F858B6B0EBFEEE602234 /* time.h in Headers */, + 3DE56580CD4C08C58351845DF09D92FA /* time.h in Headers */, + 0A8F3FED24507BC9C11D7D7153C97771 /* time_averaged_stats.h in Headers */, + 638CAA3BA346F436DC304F0A49F99130 /* time_precise.h in Headers */, + 8CED1803DACF4798237E23DFF9806CBD /* time_util.h in Headers */, + 104ED18B629CC7B8FD76A1909A8A0EE6 /* timeout_encoding.h in Headers */, + 290E654AB1A352DC7C7192A9AC3EF150 /* timer.h in Headers */, + F9F4486D13CDCBFC4FC94D6B6377AA46 /* timer_custom.h in Headers */, + 6DD8B78178BA13B382285492D404D647 /* timer_generic.h in Headers */, + EC1E784230CBAB7DB73A6120774E89A1 /* timer_heap.h in Headers */, + FC51CA8144AF7F521FF07D490E27C95C /* timer_manager.h in Headers */, + 51C310A67E0722C4B62342DCB13E23C3 /* timers.h in Headers */, + 3BE2F526C66EFD1A13AA18132671612B /* timestamp.upb.h in Headers */, + 4D9BFFF1990DEAD35DF95505D4CCF4AE /* timestamp.upbdefs.h in Headers */, + 766C528CDBC18CA7F7780E38489E6B9D /* tls.h in Headers */, + FC585903DC9FB2C8961A9B8C32582FA2 /* tls.upb.h in Headers */, + 4E2581FD7B68F04509F4198D0295C7F7 /* tls.upbdefs.h in Headers */, + EF6C9E305B9057A4DC2ED5E39E01E2D9 /* tls_certificate_provider.h in Headers */, + ED17DCF5676E306162267DDA151EE8F4 /* tls_certificate_verifier.h in Headers */, + AD95931407A07758D0BB4CF1928FAEF7 /* tls_credentials.h in Headers */, + 6AD44E1E5F1063B619A9FA4AE91F1291 /* tls_credentials_options.h in Headers */, + 30AC954B6B0AC32B728178582EB26B98 /* tls_security_connector.h in Headers */, + 331FF9CA1CA207659B22DEE84B999586 /* tls_utils.h in Headers */, + 7E9FB2E48EF70A57F1A16A4EB51C1490 /* tmpfile.h in Headers */, + D7F31201D8B28445BCD8B3E3666E0DB8 /* trace.h in Headers */, + 57DBBEDEBC73EF60D18E583EA9E31CF9 /* trace.h in Headers */, + 1B3A267BB574DFCBFC92E2EAFEB23A2C /* transaction.h in Headers */, + BD18BCF044782F1D8DF77401A9BE12D3 /* transport.h in Headers */, + A7AFD527E38D1A4B1E23123708931DD0 /* transport_impl.h in Headers */, + A4023C308CFBE2F8D581A83A90F85A48 /* transport_security.h in Headers */, + 825E5E36EB701C5B4FB56F972E9B9D12 /* transport_security_common.upb.h in Headers */, + 5B00A0E644C382CDE3CAADBA5709A77C /* transport_security_common_api.h in Headers */, + BA7877A21F83FCE3CE0697717F0A3CCC /* transport_security_grpc.h in Headers */, + 557FA177B1AE6A11B08C56A5C97B496A /* transport_security_interface.h in Headers */, + 695D8329BFBBF4EE8F2F10B84E3CF7C6 /* transport_stream_receiver.h in Headers */, + 619FD1FAA65D4831392C762D2D88543F /* transport_stream_receiver_impl.h in Headers */, + 040F6DDDB86B856E29B183BF15D58497 /* tsi_error.h in Headers */, + 4E02205D0C6C51B427047E7DBC325627 /* typed_struct.upb.h in Headers */, + 06548F6DB8154168575789E097E27F63 /* typed_struct.upbdefs.h in Headers */, + D4B3E90D9B3A9522BEBA0DF997CD10DD /* udp_listener_config.upb.h in Headers */, + B9F3F2AA9049F7350AD5C4749EE5E294 /* udp_listener_config.upbdefs.h in Headers */, + 322D1D2354E93C4138753C983BFD4B1F /* udp_socket_config.upb.h in Headers */, + B86D6F1E25EC92F4D9F1E3A260836CCC /* udp_socket_config.upbdefs.h in Headers */, + 2B2264C763F0C3B7ED6A303EEB160AC5 /* unix_sockets_posix.h in Headers */, + 34F7FAF258B361487F8725F656F45A6C /* upb.h in Headers */, + C6F737C6D260795576DC00EC796BCB6F /* upb.hpp in Headers */, + 87372B513E4D5CDCD557C4E65BDDCE0F /* upb_internal.h in Headers */, + A9801FD9CFAC745284BADF64D56E9008 /* upb_utils.h in Headers */, + B8963537B0EE14360FFD91F5418C9188 /* uri_parser.h in Headers */, + C4B4AE4A180C57C43ED83985FABFCA16 /* url_external_account_credentials.h in Headers */, + B8868E00378D873F4E889478565190CE /* useful.h in Headers */, + 153C79181C1BF4504A6D057C25F20220 /* validate.upb.h in Headers */, + 9E68CCCBC770C3BBEE1E34DB0D60B596 /* validate.upbdefs.h in Headers */, + 2F141937CCC74067CC137E41B75D1F54 /* validate_metadata.h in Headers */, + 51F48AC15811C3EC1F171C844E2A30A6 /* validate_service_config.h in Headers */, + 02F33A1982AB81DE47F184FC6F09C4D2 /* value.upb.h in Headers */, + 29F3A41CA046D33A05968906DF986F48 /* value.upb.h in Headers */, + E1C036F90167C0F33092BB34BB45CA3E /* value.upbdefs.h in Headers */, + 45A82E7C8CB79D3D25FA6E399B897D5F /* value.upbdefs.h in Headers */, + 95E9FC7ECD4E956145D5B6BF467C4CC2 /* varint.h in Headers */, + B177F956F9156A63A953B43B15445BE6 /* versioning.upb.h in Headers */, + E0A69D54BE2D70D7C055C07ADFFE01FB /* versioning.upbdefs.h in Headers */, + C85FF419798E084A9D42564296F957AA /* wakeup_fd_pipe.h in Headers */, + F9D2CC47C2AA100921A5BD47627B97BF /* wakeup_fd_posix.h in Headers */, + F24CA61CC091938C617B86B9E9CA72B2 /* wire_reader.h in Headers */, + 03442B6A55045A4DB00A5799AF43F375 /* wire_reader_impl.h in Headers */, + 06000C8685B347B6377281B4BAD83E25 /* wire_writer.h in Headers */, + 801FCB7A2D8266EDD48F6B95495F7B35 /* work_serializer.h in Headers */, + F87738CE6FAD04347E0F3B2926DF1161 /* wrappers.upb.h in Headers */, + 1C0FCF8938D66DE0BF49D1516E1FF961 /* wrappers.upbdefs.h in Headers */, + 2176517EA5F25A636824B30AC4C8FC63 /* xds.h in Headers */, + ACC18DB104F08169B4D3B49DCABB7246 /* xds_api.h in Headers */, + 1E86E69322DEBAECA2130EC7BAEDD1CB /* xds_bootstrap.h in Headers */, + F2F4025701A4F116A3166F53875D6F2A /* xds_certificate_provider.h in Headers */, + 6C875576153DC8C9E906496354512915 /* xds_channel_args.h in Headers */, + 2F3E60DDB00A22CF9A307D05202255C4 /* xds_channel_args.h in Headers */, + 59AE81624AB5AAB4D133A9DF698AC839 /* xds_channel_creds.h in Headers */, + 510F80EA37E125998F8CA4917B66A693 /* xds_channel_stack_modifier.h in Headers */, + 53A63354DF41955D2C98E2DCB9099434 /* xds_client.h in Headers */, + 9E14A2A853A7C4945144D2E7D3A00659 /* xds_client_stats.h in Headers */, + AB397611573F540D9C2AB52B301B82CA /* xds_cluster.h in Headers */, + 0F8E7E38B0D4395173FD02D7DAF1290B /* xds_common_types.h in Headers */, + 698D709003E9EBA83DF8B19547AC48CE /* xds_credentials.h in Headers */, + 46BAE489CD96FDE620F6CD11E8D52A31 /* xds_endpoint.h in Headers */, + AE934369E599EA1E4DA2FEE91613F331 /* xds_http_fault_filter.h in Headers */, + F465BB1407F874EF2487930C4AF21FB6 /* xds_http_filters.h in Headers */, + CE8F5E5CB55FE670B803CECBE113CB77 /* xds_http_rbac_filter.h in Headers */, + BBFCC60AA5C5B800198126B1C89CAB9D /* xds_listener.h in Headers */, + 887B263ECDAF43464BD5E00FA6C29D0D /* xds_resolver.h in Headers */, + 01CDA015170FAB6CA60AF83D2182FD52 /* xds_resource_type.h in Headers */, + 0B8714E3EEC50112DD07195C9932EF2B /* xds_resource_type_impl.h in Headers */, + 7A42C00AFB8163D2930D44D3E2267736 /* xds_route_config.h in Headers */, + 86B8539D7082F8F8261E55B462D040DF /* xds_routing.h in Headers */, + 4FDD81E7D38A264714DF44483F19B7A0 /* xds_server_builder.h in Headers */, + C58D713F8236C312A9256D141C06D3AB /* xxhash.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */ = { isa = PBXNativeTarget; - buildConfigurationList = A149BD73F88D0A8060A4F57192FF378E /* Build configuration list for PBXNativeTarget "gRPC-C++" */; + buildConfigurationList = 5A8F1CE3E22FF476F9500C8B9421754C /* Build configuration list for PBXNativeTarget "gRPC-C++" */; buildPhases = ( - C7BF8DB42F8606858DB8EA92517395B7 /* Headers */, - 15F1A614B778E2108D43852DB16167D8 /* Copy src/core/ext/filters/client_channel/health Private Headers */, - A44421F0C09C33F8CBD7ACC8D0A35DB1 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, - AA114866FC2065AA2DA561916E8851A1 /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 74E2BD9AFC6F4CD8CEE9DCB09CA59802 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 576599D8D6EC845F49C78F3BC87F55E6 /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - E66F4EAA66DDFA0564916A5AB20FF0D0 /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, - CDFD39688EC61B7DA0CFE45DDCC68C8E /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, - 2D6184CC5C897B828F5851B2ACC6B1D0 /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, - D847CC125336B7AAC69A5D7F7CAFE5BD /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - 911EE9FE6D69FF44D78860E2454D84AB /* Copy src/core/ext/filters/client_idle Private Headers */, - A7C7129B5F4EEC1E540768FE0833BAD6 /* Copy src/core/ext/filters/deadline Private Headers */, - 2352D1CC48530FCE578B806EE11A2549 /* Copy src/core/ext/filters/client_channel Private Headers */, - E015AC12A5B02FB1351E60F675BA0F14 /* Copy src/core/ext/filters/http/client Private Headers */, - DCB81611BAC61BF78A776D3C51C8DB6F /* Copy src/core/ext/filters/http Private Headers */, - 76AFA26A09E9A0BBDE9D5FECD886FC2C /* Copy src/core/ext/filters/fault_injection Private Headers */, - 2C0F013357CCF7ECCF4AADB91AE49FB4 /* Copy src/core/ext/filters/http/server Private Headers */, - 2F25B6CFFEB185FA835C2E112FF67707 /* Copy src/core/ext/filters/max_age Private Headers */, - F63DF8250D04F8EC0F4200546BD979E6 /* Copy src/core/ext/filters/message_size Private Headers */, - A1CEC06347036D9A29336235350C4CC4 /* Copy src/core/ext/filters/http/message_compress Private Headers */, - 2C910E3F705D8D15320108C602C7765C /* Copy src/core/ext/filters/rbac Private Headers */, - 8CA8B9CC2E7277D788EA578466174E4A /* Copy src/core/ext/filters/server_config_selector Private Headers */, - 543F60B7A1C460CB271DBECA3B52C3C1 /* Copy src/core/ext/transport/binder/server Private Headers */, - 0046D73CC2CE733041FAF75A752752CD /* Copy src/core/ext/transport/binder/client Private Headers */, - F74E7716F0FB7E0F623EFDAA236F7DB2 /* Copy src/core/ext/transport/binder/transport Private Headers */, - 4187498ED17E353C3917FB3E1195BEA5 /* Copy src/core/ext/transport/binder/utils Private Headers */, - 03FFEA97F4047BF4C9753BFBEECF75D8 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, - 9E2FE2F70AFE5A6465D24E2886A9F111 /* Copy src/core/ext/transport/chttp2/client Private Headers */, - 5AC5BC7BED048F166825FBC43EE4F51F /* Copy src/core/ext/transport/chttp2/server Private Headers */, - 71A048A694DCA313478479614DBA7B86 /* Copy src/core/ext/transport/binder/wire_format Private Headers */, - 86BE3290010DC4810017F1CE6BCD70BB /* Copy src/core/ext/transport/inproc Private Headers */, - 6C4C5D92597ED3681F12901B915EFE89 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 87F7A87A0EC1EE7D204ACCB053154BF3 /* Copy src/core/ext/transport/chttp2/transport Private Headers */, - 8BFC9D45B12D1ACBEB28CC5C6F392F8B /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, - 84AC02F6363C0F907D228A57D6F47435 /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, - 7A68994A13EBE5A6C4A52AA64458078D /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - 7BD2FE3423D3E2AD35F849B587413EEB /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 69A3B1ED9372025D67A2B55E8255F81B /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - F4367D1E22EF12950CB3D37F9E6C745E /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 92496D38715A96A83C5BEE69A602E224 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, - 91015F28508445F39EE1300305927713 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, - 1EBEDA8935375520D3C88AE76890E20B /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, - B62E45B0969C87128B213F69776A3917 /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 72211A3AE06A781D4609A9C6D93EF7F4 /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - D3909F3B29B603F9D46FF87B1485D899 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 793618019645A41514E71473E7986526 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - 30CC2A83628EC386E1D0F3E25A111734 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - CCFB7E242B73994D87A9259F018F2AF7 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 78DAF31B5B6354F035407817F06E5D63 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - 6C9E1A256438DCBA45F9D817ABAC1740 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - E57DC7FEF1131064A010318967B3354C /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - 40FDD646641F3D62C17A479542550779 /* Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */, - 81B41D67A5C6D5EACDA04C1766984992 /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - C978F5D909F166211E5A483AB3A934CF /* Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */, - E9970374A93EF40CE7A5AE73C97390B6 /* Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */, - B9580E43190B500D061EC94FC5101C6C /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, - 853394AB1DB080C30F1F531FE32C4A58 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - 355A5EF4069799A89F250E6161C204EA /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, - D8766110D193116B6F885ED22CEE06DF /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, - 18450C727173224D9D83EB0409FE6AD3 /* Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, - 78A67BF2EDD2E2BF70F482F2C22F1FA2 /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, - B448C9470F28B327C1E91AAC8A283FEB /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, - B8DAC8C690234278CBD9726B9CCDDE27 /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 19EB2608B9D4A46265D5D653320B99DC /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 2155870B75D2EE4DB833B873A8033828 /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 4DB29949C14E079D38D86335770D957A /* Copy src/core/ext/upb-generated/google/api Private Headers */, - DD742EA82BB0A9CA3A368D71F6AC4CB8 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */, - 5C914CCD1FE99F99D1C7EEC0D84059C8 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - CC990D7025B12FC0A4C61ABBC6221D1F /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, - 531B7D819AC1CCB06702FC93FAA7E0F2 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, - 55137134783EBCB24855B8DC0B2AF568 /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - 024964611C894C96B424DE4BD794A8BD /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - 7A52F1FABE338BD957B290F1A3359747 /* Copy src/core/ext/upb-generated/validate Private Headers */, - 7052E961FD09C7834ACE488777F3A4F4 /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - 290689517D39E167EC1FA40E2FB7BC05 /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 07B840527EADC9CA68FE65FF6BEE239D /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, - 01F3642B1B83EF494FED9184AB34ED38 /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, - 39837E9B638B7536C1CE8A0AF84DD203 /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 90862300727078DB7809106F3E15F311 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 1FC7893A7B3BA47952C7B5057C6E11DA /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, - BF3018C40035919459E3E9CAF9B30CBB /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, - 43FAA2121C83A3022F896BAE5584F14A /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - 64E006A79A7446B2B5023E44418ABAC7 /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 8142DD07448B2ED6CA1ACE58C1668305 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 926FBBBE7191C27E17F4FD5122BCB056 /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - AA2F7856B9F033B07C0971F77466A06A /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, - CE196728C6BDE9880A14D2DAC27640AD /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, - 645CB4149D0ED4E1C6E09CEF40FBF68F /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, - 5268CF9E504D7A2DBFEA39286FC85FD9 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 11D5DFCDE6EA99D4815DC8FDCB827AC4 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 8D11FED40E42DB87F35C1666E69484F1 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 3A7246B3E113C1D67DC88B013524F59B /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - A794262DAC31553ED0C0C8F312C639A6 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - 7EAAC0D213C91B4A8A16239EB59B116C /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - DD3BAAE54353D4D1A141E823707A1A6F /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - 183F84CF45DACDB5C16065AF0B05FEA9 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 36BBF66B7821E6CF1C4C7B66A0F60F09 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - F118853E051465ECD22B74485BD8D2A6 /* Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */, - 9BD1ECB30947B75CC92C1983D89C7BAE /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 5491B7D3A729E6D15486A6F0B9C4FF1A /* Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */, - 88405212293FC8E6ED999AE11C9C504C /* Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */, - 28EBCCF2F4D8921BB3B5E133185D3976 /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, - 5B124402FCAA851E182BA2755EC3D0EC /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - 30640622AA3136F62EBA6D4589777081 /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, - B3122616A7FBB9971A199E8D28EECE67 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, - 48D139FA41C69647E4AE73ADA3440AAB /* Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, - 10E1EC7BBF1DBEDEA1B796D04D72D4EB /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, - 7D0C73DE0F026C347AC836DCABD3B3C7 /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, - 5DBB1C18E33D720C6F52281A4B64E861 /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 5E1BDB79DBAB1417D50FBCDBCCAFA095 /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 82B0B27BC0B5011B000877A7FFE5366D /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 210856522E2CECCAD55CD564A94329DD /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - 8432E05B4F0ADB5FF4E6C62225D05B57 /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, - E93B40E17CF532F7EF5EEF9F31EAF385 /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - E49328F23C6CACBA4CA96B03AF3256C9 /* Copy src/core/ext/upbdefs-generated/validate Private Headers */, - C8D3610801FAB8F29739D9B2E1363314 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 780BE108967F5118B00BCC27138C82A9 /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 798D83DF69F3FB830ACD9F43688DD145 /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, - 922A0925E117E5BF31D15614E330FDB3 /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 83FF019CD065923CE682BF94890217C0 /* Copy src/core/ext/xds Private Headers */, - 46D5A87E6BAD84548EB565830003990C /* Copy src/core/lib/avl Private Headers */, - 50F060635F9FA805F399E00BF6471960 /* Copy src/core/lib/backoff Private Headers */, - 22DFC0251DF8CFD1D75531E9DC757394 /* Copy src/core/lib/address_utils Private Headers */, - 96D06D9C71B9D160D788D3C1E919C9D0 /* Copy src/core/lib/channel Private Headers */, - 2BE740634AF9A44D18334566CFEF3093 /* Copy src/core/lib/config Private Headers */, - 85CC7AE7371949BC6116BDAE8402C601 /* Copy src/core/lib/compression Private Headers */, - B07502884A8CF2FCF44BDF9A26EC4F21 /* Copy src/core/lib/debug Private Headers */, - FCDE5E03E8684D0AAC3F840CC0BF6FDC /* Copy src/core/lib/event_engine Private Headers */, - 99E2D2C66D42D3A5BC5EEEB15425BC8A /* Copy src/core/lib/gpr Private Headers */, - 2997B21E0D679D134C2B80AC0E98ED77 /* Copy src/core/lib/gprpp Private Headers */, - 5B375F7CEDD2DCA4B4784DFF2E4EB921 /* Copy src/core/lib/http Private Headers */, - DAA0843D63CF9926ECB58571E23DE2B8 /* Copy src/core/lib/iomgr/event_engine Private Headers */, - 313E4F54750AE6CAF2767B3CF9854F37 /* Copy src/core/lib/iomgr/executor Private Headers */, - ECB8B3B7F44C8E65AB133E7346361320 /* Copy src/core/lib/iomgr Private Headers */, - 6470543A3B4BDD84336706FC9C715605 /* Copy src/core/lib/matchers Private Headers */, - 40D18425A706A0EE70E5BDAFA3DD17F8 /* Copy src/core/lib/profiling Private Headers */, - 6D73DB8A5CBF9DC029C5F22287176564 /* Copy src/core/lib/json Private Headers */, - 0210D9366902A508C4B023F72D2E8D00 /* Copy src/core/lib/promise/detail Private Headers */, - A9469E69243979E449B82B5F719811B3 /* Copy src/core/lib/promise Private Headers */, - 3965E63C8F82A03AA556C8D02EABBBDF /* Copy src/core/lib/resolver Private Headers */, - 4368FF77DDF977BB354A628C480A2E33 /* Copy src/core/lib/resource_quota Private Headers */, - C2E3407409BEACE0FDD3BE0296AC7CB2 /* Copy src/core/lib/security/context Private Headers */, - 7E3F61644965D15F1942A9595EA3CD7F /* Copy src/core/lib/security/authorization Private Headers */, - 0A706228ECB234C6127957FD1B73E2C9 /* Copy src/core/lib/security/credentials/composite Private Headers */, - 7509B2926F7DEF8B5EFD7BE589CDB525 /* Copy src/core/lib/security/credentials Private Headers */, - 93B810FB62CB7DB334D653B5945031A5 /* Copy src/core/lib/security/credentials/alts Private Headers */, - 70CCFD72E666DA594EBBE9B5F311421F /* Copy src/core/lib/security/credentials/fake Private Headers */, - D1ECBAC4AFC7ECCB81AE8CA4923255CF /* Copy src/core/lib/security/credentials/google_default Private Headers */, - 9286653D5C94B80DFC6EB8AD810B832E /* Copy src/core/lib/security/credentials/iam Private Headers */, - 95F849041610C3871212718D2D956FA2 /* Copy src/core/lib/security/credentials/external Private Headers */, - DFC29BBB897ECBD260D7484CE9C42F93 /* Copy src/core/lib/security/credentials/local Private Headers */, - F88746B664C255F19C53A88B0C0B7C05 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, - A5ACEFFE7A6A9B7A98383B3CC3917CF2 /* Copy src/core/lib/security/credentials/plugin Private Headers */, - 894F823774F724E0F291875CF28245B7 /* Copy src/core/lib/security/credentials/ssl Private Headers */, - FC2606D35CD52DD5531DD0591E0E1A2B /* Copy src/core/lib/security/credentials/jwt Private Headers */, - C92C17CFB9706596074371910455163C /* Copy src/core/lib/security/credentials/xds Private Headers */, - 37B337F671FF0FF29948A9C4EF6F65BC /* Copy src/core/lib/security/security_connector/alts Private Headers */, - 111375EF2D34AB46C6C48D4AA5CE9484 /* Copy src/core/lib/security/security_connector/fake Private Headers */, - 72875C8035BCA49DB63E517A9352BED3 /* Copy src/core/lib/security/security_connector/insecure Private Headers */, - 249E2F31B6D9469C5E42ECD0EAA96A54 /* Copy src/core/lib/security/credentials/tls Private Headers */, - 295B05B87B17A55AA988C8D24F27E011 /* Copy src/core/lib/security/security_connector/local Private Headers */, - 56DDC11654CED5D953E36344D34713E0 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, - 85E601480B4E0E88ECF5E3147FE49568 /* Copy src/core/lib/security/security_connector/tls Private Headers */, - F2C719EBA6E1DD45EF2461283B78A30C /* Copy src/core/lib/security/security_connector Private Headers */, - 1011EBE194F60EFF0A860D531208C051 /* Copy src/core/lib/security/util Private Headers */, - B4E9ED65D69C1B35E9B9157993146612 /* Copy src/core/lib/security/transport Private Headers */, - D2E00E1658398E609A3B8FC41B0A26D5 /* Copy src/core/lib/service_config Private Headers */, - F0D727FD6E22001B968A7A18E188D341 /* Copy src/core/lib/slice Private Headers */, - B22884FBE9A20C736B823AAD8884B75A /* Copy src/core/lib/surface Private Headers */, - CCC65D676679A952D33E2CEB6D57F05F /* Copy src/core/lib/uri Private Headers */, - AE76E7DCFFE432307749B5B1484C48C4 /* Copy src/core/tsi/alts/crypt Private Headers */, - 293FA431445FA3298344C325CC59D748 /* Copy src/core/lib/transport Private Headers */, - F0278FDA1A5E8BAEEB75537B6FDF4A53 /* Copy src/core/tsi/alts/frame_protector Private Headers */, - 85126550EE14F3506445425A76939263 /* Copy src/core/tsi/alts/handshaker Private Headers */, - 5B6B092895D90123C3DF78C50FDF5507 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 8F081D7590B3641EB269237C72FDF1D1 /* Copy src/core/tsi/ssl/session_cache Private Headers */, - 902E4E7E7729DADDAA2BFA0587480BDF /* Copy src/core/tsi Private Headers */, - F504CA810600C44180E6766AD9F31B5D /* Copy src/cpp/client Private Headers */, - 2AE9E59E684BADEACFA4DCC92A3E691C /* Copy src/cpp/common Private Headers */, - C92FAF09ABDA995F8E70BBD9276C15AA /* Copy src/cpp/server/health Private Headers */, - B1E033A6D45A6D2DC7C27E568753D3EF /* Copy src/cpp/thread_manager Private Headers */, - 14F43F8C7386371C74F0426C05A20EC4 /* Copy src/cpp/server Private Headers */, - 8904C9FC5AED8E77851B6C92BBCA4D73 /* Copy third_party/xxhash Private Headers */, - 2C695E102007DF85CAD024B340324F0B /* Copy third_party/upb/upb Private Headers */, - E17E43BBC64206791BE57725BA322EFA /* Copy ext Public Headers */, - F99BA595926592EE29D86D776B325D16 /* Copy generic Public Headers */, - FF11F52FD22D50946FA783C922AECFFD /* Copy impl/codegen/security Public Headers */, - 1294A613F16F3B3EE7E6E987DB8384C7 /* Copy impl/codegen Public Headers */, - AD5C0DF0833DC6F52C882643130FA535 /* Copy impl Public Headers */, - BA148A9538DCDB65893ABD21DB9B439D /* Copy security Public Headers */, - 02503A582BAFC101C8E9771273FF4974 /* Copy support Public Headers */, - 445A36566A1715D40C1C8E64E5955F86 /* Copy . Public Headers */, - E8FDD41FDF3CDF075041D060DC0B050F /* Sources */, - 1B77F086B01B4434C576EA908D92969F /* Frameworks */, - 7198BC81B31716880097570870DF2834 /* Resources */, - A6DA2D797B25F112CE9C9AC6AA007298 /* Create Symlinks to Header Folders */, + F2540B980265FA0EA759B08D01522208 /* Headers */, + B211611FE2FD74427B332D10D3920739 /* Copy src/core/ext/filters/client_channel/health Private Headers */, + 47B4A02F5DDA5FB88B4FECBC2A2E4A30 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, + D8491C8FA717B74F3913EDB524FADFD9 /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + 76F618C01CFC3143B55B2244222C0214 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, + A41F994D45941A877C3A287CFEA8A3AD /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, + E42CD0FA8972246B6B9711D6A58B708C /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, + 0D4445F88E54DE03CA49096205338E64 /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, + 568A2EC212AF185DDBCDEBD7CC072A77 /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, + FC17E631D21690367DC6F3391DFC5565 /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, + 2764AC9F47531F0A1F707650B15E2922 /* Copy src/core/ext/filters/client_idle Private Headers */, + D181836CF01642712EA19F7EBF40D3CB /* Copy src/core/ext/filters/deadline Private Headers */, + 4C804E8CFE06EE5B702CE14CB6BDBD22 /* Copy src/core/ext/filters/client_channel Private Headers */, + CE86F877F56207F9BB5074C9DB0F1200 /* Copy src/core/ext/filters/http/client Private Headers */, + C5EEDB2AA54F063117B5F854C1318182 /* Copy src/core/ext/filters/http Private Headers */, + 91173F6E7409E1DFDFC2A968681338D5 /* Copy src/core/ext/filters/fault_injection Private Headers */, + 984CCCE9AC34F22B927976D6FBFF97BF /* Copy src/core/ext/filters/http/server Private Headers */, + 8C06F6AA10D0BECEE13D07BB0C124D56 /* Copy src/core/ext/filters/max_age Private Headers */, + 95FE8AEFF7544BABFDF8E3B485014F88 /* Copy src/core/ext/filters/message_size Private Headers */, + C0205ACCFBF09DD1F9F3C48237798514 /* Copy src/core/ext/filters/http/message_compress Private Headers */, + 0FE858BA0B30D3A58DAB2DA9F94ED686 /* Copy src/core/ext/filters/rbac Private Headers */, + EF9CBFF81FC93989BEDB1720847202E7 /* Copy src/core/ext/filters/server_config_selector Private Headers */, + 3CBE5B9FF0EB64D9C6674435DB6E87F5 /* Copy src/core/ext/transport/binder/server Private Headers */, + CB8D96D7E55AAE51E5FFCD865056DDAB /* Copy src/core/ext/transport/binder/client Private Headers */, + ED3B5E1606B901551D047F183D94EBAD /* Copy src/core/ext/transport/binder/transport Private Headers */, + 8762EE22D28E67A38966926FA3D7D462 /* Copy src/core/ext/transport/binder/utils Private Headers */, + 96EB7FADFEEB63A9C9CB9B243623D3C4 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, + 4B9512FB4354FEBF2CDA7FBAD4230F4A /* Copy src/core/ext/transport/chttp2/client Private Headers */, + EE1755AE55160FCAEDE3731ED838905B /* Copy src/core/ext/transport/chttp2/server Private Headers */, + 9A2347342A6298EED9C2123BC9CFD461 /* Copy src/core/ext/transport/binder/wire_format Private Headers */, + 30D8B291F4543AC6038C6AF17A3F6505 /* Copy src/core/ext/transport/inproc Private Headers */, + 354D1942DF181972EB2EFB404835C9A0 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, + F49D59AD246DD1BAA7C1980D5A074654 /* Copy src/core/ext/transport/chttp2/transport Private Headers */, + 2BE87689D015F1D6C130E9B2953FC56B /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, + E407DE113A7FF45EBA6275F9DD8B4F2D /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, + 8908D9A6164E7C92DA8CCC3F15FA008A /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, + CA09761704B5EC3BD247D16AA893360E /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + 12A54B6CD3B518D3044B65F3A211F32B /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + C695191E66D5D2A10253792E5D45A1D3 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, + 7AA88B6B4D829390916C31F9061132E2 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, + 72FE5336D3451EBA98B24CDC625984BA /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, + 720C6C02D81AA99164C38E03EAA478D2 /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, + 9971B67822564BC823269E70EA006532 /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 6C914DF32637D3EDCF5861DA769C8940 /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, + BF3C13A5ACED2ED3C9766F12AE01C476 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, + B27989F7950929960B9FB4EFBF27F26E /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, + 35DCC02C2B68539459F9A823BC2E8533 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + D96024A6B6BF721C850D5AF92D90C989 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, + E3D36A372609B89D091E2CEEF64D77F4 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, + AC2D0AD9BE723D8996AD82014B15B2C9 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 9F485D534FC89AF094654A1F3D191ABA /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, + 54B6AEE55B5009B8AE8AF61E486317BD /* Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */, + 5691A93B0F24E7E535C45C392F7246EA /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 67F852D73F2B8AB5FB55BB2BF77A8CA9 /* Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */, + 6C3D93DC3956B50C8AC01A8BE079B078 /* Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */, + 612855A1149DB428B0A82FB8C3AA0E63 /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, + DDEDC3C0A9E1E354986D6385C9A3AD23 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, + 79BD25DC74DD852B6397F9087B8B76F9 /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, + CB08D0691A7C3ABF2B3B5FA77E2E102C /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, + 586706350B2062C1B2785F7575CE8761 /* Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, + DA6985D3C7B25B778EAB91EA2F0A0197 /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, + ED652705A83BEB810BC73607F8D26C60 /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, + 8894136338CD858709DAA4EA8F89177F /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 023AFD0FB31F9FE4D39038835CC8AB58 /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + 660CA45C36A8D689BDB058DEF7ABDF04 /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + 828F6169E3E5B733EAFAC7CAEA6CD661 /* Copy src/core/ext/upb-generated/google/api Private Headers */, + 43DD58B46B41A8B240333BBB8D27AD18 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */, + 91C9D839B1801B3A658C6CEDEF12B802 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 258900CD93995078A2A249F119A0C248 /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, + 650EB3CC09FBC60E1B6F1EF120503234 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, + 162E0A8C3FEB80ECFC410C74A7E7D59A /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, + EC5B48A78F0019172F0A32511CE7F040 /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + D3CBFAAF8D434A6DCA5A63F75F6E28C9 /* Copy src/core/ext/upb-generated/validate Private Headers */, + FB5AD9819BD2B504A574806CA56AF769 /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, + 20108B6DFB47A6605F576340300B720E /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + D0F4934C0C66F0A64895BA3A8854397E /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, + 6F8EFBA8C495A13B2238A7D679B4E84E /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, + 7F73D8CE82FFF150DA5A9F9E01F815CA /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, + 058E8B076E1E1796B3EF407BC1652B54 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 9F68EE17A86952B21A313A380796D660 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, + 04E20203D14BD1B5641328958FEFD71F /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, + 3F104C7118898980D3ADDEDAE974E5FA /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, + FDF6C715FD1D066DD5B9C0AFD3BAAB6A /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + 4EA0DD532B242D4ABBA1EAA81CE17238 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + E1F27F44DF66C87C53657C5EB31D6845 /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, + BC27F37E1EC372DF5C1567630ED92D70 /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, + 5BCABFD247B405621C131B2BC1084882 /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, + 37BEBEF06FD7FE648EF5142F8B29F841 /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, + 796566CE78A7EF7400ADA893F8683126 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + DBB072948C51937501B21CE9502AEE01 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, + D26B7EC30EC3148D766078B73DCDE2EA /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, + EFB09812B25C32FBA37591F44628296C /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, + 25E32506F0BE68B51907D724ACD5EEAC /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + 53BF64D14FA5F0D1098A53F6D78059F5 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 28B49BDA7AC61725B31A90C6A32172B8 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, + 006C18E6844C25947E7B5C2081C17B96 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 09B999915BAE64BBC69B12CA77BCF472 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, + 8D0CAC394E2AD7F6BB65839FDF6740B2 /* Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */, + 255EABB30907FE2A8E2C39FF9079C90E /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 56C448B4D63F6ACFB87F580834117380 /* Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */, + AF73A6DCB3A8CF6DF656AEDC4FAA3BDE /* Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */, + 6AD2158EAE14D07E4678C91D82D97C80 /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, + 52EF157B25C99E868556C9D4F2BD825C /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, + 1466F9246238161A5510815064625E71 /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, + ADBB18AB6BA9228A6E2CA76DEF0CEDE0 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, + 0AB753DD52A4CC0B9B06E962EC32C392 /* Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, + 20FE3C3087D64EF07E449F11245B113F /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, + D5217EEEC742DBBCB80A98A41C2DEB96 /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, + 3A534353011F19B56A95BC13283928E2 /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 6AEED967347C8CCB2FC77A275C570C67 /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + 437DC183BAF9CA565936CECD538CE93A /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 6680024773E282C691F6FE4CCEDC537C /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */, + 6942822D6418B515E63CBD576A7B7D28 /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, + 98678583A92A04259632514C56AE0F7F /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + A3432B450A7F56793A0F7719FF410940 /* Copy src/core/ext/upbdefs-generated/validate Private Headers */, + DF6FE676B5369F15A91803718215EAD5 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, + 73D641C9A5075E490C45C132AB8128F7 /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 29B35F7CDDF9C88022205A90065DD585 /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, + 7DC45C2A1C00A97BD8CBC797402F2899 /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + 60F10D7B3AFCABACB3E4F75ADE8D65D4 /* Copy src/core/ext/xds Private Headers */, + 9DAAC779509B5CD9D7FCB4F6B6AF8C6D /* Copy src/core/lib/avl Private Headers */, + 9CAB53B38B8C5FE32171624BD867A8FE /* Copy src/core/lib/backoff Private Headers */, + 95471418946F46E82574109BFB5767AD /* Copy src/core/lib/address_utils Private Headers */, + 0EB6905E7C8A2CDA4A063C9BE0E38D5F /* Copy src/core/lib/channel Private Headers */, + 0BE838B407BCA7B6DA254B1AF77C4845 /* Copy src/core/lib/config Private Headers */, + E8C325E5AC594C9DE1114271B251D13B /* Copy src/core/lib/compression Private Headers */, + 4985F9C69091E52DB569A6C165CA0206 /* Copy src/core/lib/debug Private Headers */, + 4E323EC791728B1BB66E9662248FC50E /* Copy src/core/lib/event_engine Private Headers */, + 8D58D18C16C14040A9B3290006869FB9 /* Copy src/core/lib/gpr Private Headers */, + BBB7EA6696E73A40DC53324F1E240237 /* Copy src/core/lib/gprpp Private Headers */, + CC4278B21548F28A1154113A20C00626 /* Copy src/core/lib/http Private Headers */, + F33578DB9F5D4C641F6FA8C1F610B850 /* Copy src/core/lib/iomgr/event_engine Private Headers */, + AC39BDC42068DDFD4991F870FB9B7288 /* Copy src/core/lib/iomgr/executor Private Headers */, + 58D7F5D7B6E8EC03304BEB4C706242FA /* Copy src/core/lib/iomgr Private Headers */, + 2C7A35BA1D1C8AFDA00C8C89291E1E62 /* Copy src/core/lib/matchers Private Headers */, + AF143A5DB43E74E4CDC0F4277C48F844 /* Copy src/core/lib/profiling Private Headers */, + 09D13A87442D9CEEEDEDA7AA5F905C1B /* Copy src/core/lib/json Private Headers */, + D3E4CBDAE92C4866BB2D69FF27B38CB4 /* Copy src/core/lib/promise/detail Private Headers */, + 841E69DB3065B7D4F3E170B31372BFBF /* Copy src/core/lib/promise Private Headers */, + D4CD3551D0F770197E8DC3026B7679F9 /* Copy src/core/lib/resolver Private Headers */, + E654E770830C3E04BD1C21ED591815D8 /* Copy src/core/lib/resource_quota Private Headers */, + CC548BEF7AACBB31F7BB651AB264F9C9 /* Copy src/core/lib/security/context Private Headers */, + BB2EEE427449B716B2803F716E0AB246 /* Copy src/core/lib/security/authorization Private Headers */, + 473B49652DFECF6AEB740E0D029431CB /* Copy src/core/lib/security/credentials/composite Private Headers */, + AAB51B0A0B5F006A64CCD1F75ADAA222 /* Copy src/core/lib/security/credentials Private Headers */, + 114430F530577759A41E7EAEC4BC7134 /* Copy src/core/lib/security/credentials/alts Private Headers */, + A0446550DD253C67B61113D566A1B9D9 /* Copy src/core/lib/security/credentials/fake Private Headers */, + 1F32341A1161891515D5782D55CDE814 /* Copy src/core/lib/security/credentials/google_default Private Headers */, + E26A79C72D60ABDB8421659CF3AEC7AE /* Copy src/core/lib/security/credentials/iam Private Headers */, + 8FEB2FEC1F8DA0A0D1B791841CF96050 /* Copy src/core/lib/security/credentials/external Private Headers */, + CBB3195EE9111E4BBDBE9E46446BE4E8 /* Copy src/core/lib/security/credentials/local Private Headers */, + ABB7B18B6C727964CE896D6FABD9B2A7 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, + 761CC55BF6253EB2A3678AC8986DA2FC /* Copy src/core/lib/security/credentials/plugin Private Headers */, + 0C2EC0277B67F16FF243C0B9E4C550F6 /* Copy src/core/lib/security/credentials/ssl Private Headers */, + CB38587433C2FE5075E1D1D808470DDC /* Copy src/core/lib/security/credentials/jwt Private Headers */, + 7DDA43A17E0A425610E368A43F222C2A /* Copy src/core/lib/security/credentials/xds Private Headers */, + 471219FBC3C888CA951FB9C83E21C013 /* Copy src/core/lib/security/security_connector/alts Private Headers */, + 5830E8C40342044AAC556FF1589506B3 /* Copy src/core/lib/security/security_connector/fake Private Headers */, + 9448A39EB34212308CC2BD759D8BA4AB /* Copy src/core/lib/security/security_connector/insecure Private Headers */, + B7C73C5D271E069F68E673AE9FF41508 /* Copy src/core/lib/security/credentials/tls Private Headers */, + 123DFB770ECA8BE8E0A33BBA8695C341 /* Copy src/core/lib/security/security_connector/local Private Headers */, + A7C5B9D6117B7EAD005EB198F6F1B583 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, + 918B424309CF0C81465E81956FA95E8B /* Copy src/core/lib/security/security_connector/tls Private Headers */, + 17FC725AF408BD254497ECF5CAB7F4D7 /* Copy src/core/lib/security/security_connector Private Headers */, + FE3BF0F1A441EAB2E1D165338F16B176 /* Copy src/core/lib/security/util Private Headers */, + 64A5F4C1018CA7334F7FA0C3E444BC28 /* Copy src/core/lib/security/transport Private Headers */, + 6897FB12FE32BAB8775D657E00C9F76E /* Copy src/core/lib/service_config Private Headers */, + 745EA355228B3CD12BD58B9036095723 /* Copy src/core/lib/slice Private Headers */, + C651052912C759348C3B3BBE97AD2013 /* Copy src/core/lib/surface Private Headers */, + 862AF198FF130FE9A545FA6D35D15F05 /* Copy src/core/lib/uri Private Headers */, + DBB782B3D6030E415CF1C5402B04BE3A /* Copy src/core/tsi/alts/crypt Private Headers */, + 4CC0D223849B9DFF705BD53BB513CFDF /* Copy src/core/lib/transport Private Headers */, + 9F16CD22031AB697EAF2AEDC54263771 /* Copy src/core/tsi/alts/frame_protector Private Headers */, + A79FF84DDEDEFEDE5B09B58AE84E8AE6 /* Copy src/core/tsi/alts/handshaker Private Headers */, + 2980CFA2A94D0117C0652950DF2B6E70 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 6523EA464828014D7B56539A05C4AE41 /* Copy src/core/tsi/ssl/session_cache Private Headers */, + FBC077ACCF8D1E79F8D9947C093D5C70 /* Copy src/core/tsi Private Headers */, + 6B2E83F6693540FE3E42B2F18785A033 /* Copy src/cpp/client Private Headers */, + 1FCA80CFDA153252E405DF9FD9071CFD /* Copy src/cpp/common Private Headers */, + DD0591C4D66B1C3B7664D94924CA2C03 /* Copy src/cpp/server/health Private Headers */, + CE0DB6AA09412BF8B9D85FA7F0776E16 /* Copy src/cpp/thread_manager Private Headers */, + C32476D765BE831117913954C0427AAF /* Copy src/cpp/server Private Headers */, + 7FF38CCC1CA065E5981FE75AE8826658 /* Copy third_party/xxhash Private Headers */, + 9586ADC0C6084A5EEDD3EA2AD2CD8C9D /* Copy third_party/upb/upb Private Headers */, + 199544F010FA039199F0D532EF8C9B63 /* Copy ext Public Headers */, + 95B186DEE48102B8D686BCF20ED372DB /* Copy generic Public Headers */, + 10F5369B1AA8E1530F45D6FA1BEE02E1 /* Copy impl/codegen/security Public Headers */, + DE06208D07C1B280B9F18A4DA3A97C02 /* Copy impl/codegen Public Headers */, + 9A4AA8DCEFC1B5181BD434F68AAE0185 /* Copy impl Public Headers */, + 7B1E55E414756F5CCC19F47FE1143462 /* Copy security Public Headers */, + 169689D7B11E3B33C20AD067E666F2B6 /* Copy support Public Headers */, + D2CE2E17190EE8EBE765947820CEE735 /* Copy . Public Headers */, + B65E0B0BE6B8B3079622D3D246F391F7 /* Sources */, + 7B4F4D67EF33D861D38FEB279914DE8E /* Frameworks */, + F5667FE096F76842BADE903D2088558F /* Resources */, + 22D9E9D55A10DE8DA26D63D7791660C0 /* Create Symlinks to Header Folders */, ); buildRules = ( ); dependencies = ( - 7EAF8F53698DFB80F2A6428BC0F570EC /* PBXTargetDependency */, - 51C10F57625B1BBA5E655DF383844277 /* PBXTargetDependency */, - 59DB829F12E3DB9FBB058E89602AA2C0 /* PBXTargetDependency */, + 4C82F12F69CF92F1F06B5EE702941088 /* PBXTargetDependency */, + DFE80283E44E19556954E7767978B6AA /* PBXTargetDependency */, + 70A3933FB67F474271AD8A1D6BA32C17 /* PBXTargetDependency */, ); name = "gRPC-C++"; productName = grpcpp; @@ -24705,17 +24932,17 @@ }; 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */ = { isa = PBXNativeTarget; - buildConfigurationList = 3FBDC0FE159A37BA1C75558FD7B6ED11 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; + buildConfigurationList = 8F61E584F4836F8595B6C62F21CDB09A /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; buildPhases = ( - CA1DCF2C0563D4FC7DECDA1FF8BF7EE2 /* Headers */, - D4B329AA93A8B084F38EA5F32F3015B5 /* Sources */, - 1E9DE4BACE8AC2FF8535EB8AC5E98079 /* Frameworks */, - 66C8DA78F6EA5309EB75307CA4529217 /* Resources */, + 7763DEFDEC8F53CD304E099D600A9FD9 /* Headers */, + 0C5CCA48769C5AD0996B3B53AC5429AD /* Sources */, + 6E8BA78088F59303533E6EE2ABC50FE7 /* Frameworks */, + A2D6A988BD4CC74AE087096E99FFD1A4 /* Resources */, ); buildRules = ( ); dependencies = ( - 2B0A8BF9935C299F08632B5685CE3E39 /* PBXTargetDependency */, + C1B9C1D938C9E414A5A9A7C56404D302 /* PBXTargetDependency */, ); name = FirebaseCoreInternal; productName = FirebaseCoreInternal; @@ -24724,12 +24951,12 @@ }; 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { isa = PBXNativeTarget; - buildConfigurationList = DCD40AC2021B625DD9C54C853A7CCD65 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; + buildConfigurationList = B11C6D409705314ED3A2C22DA203B54E /* Build configuration list for PBXNativeTarget "PromisesObjC" */; buildPhases = ( - 2D1A49F9E1EB589E63F65DED1F8B323B /* Headers */, - 090BBBE7717A49A7691196B6623129C4 /* Sources */, - 1D992138AF38FF09F727CD8DF75A9343 /* Frameworks */, - 66B747CF4EDE9B638373A001F1FE655E /* Resources */, + 2BB33F5B20BDCE9C181D7E4E87241F2D /* Headers */, + 488BA2BC8AA31D2DFB636FACE1C46D39 /* Sources */, + 1D868DF45B79A8DA6303D62CEA484F81 /* Frameworks */, + 022BCF3F1E0F8A405C193A5C86932508 /* Resources */, ); buildRules = ( ); @@ -24742,11 +24969,11 @@ }; 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */ = { isa = PBXNativeTarget; - buildConfigurationList = B3004E19F0FC826809E80754C6D93047 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */; + buildConfigurationList = BA676B7A40FDA2F44490F2E061480097 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */; buildPhases = ( - 1C9717CD038B78627ADB071F74216CB8 /* Sources */, - F2DF12681094919874DA9361D64661F1 /* Frameworks */, - 16957E663A3ADC53C7EE9503C0BB195C /* Resources */, + 82BDE085936ACDD40240C3F932E4DBB0 /* Sources */, + C50C3C3705AC854BA6B6A2FB25D92314 /* Frameworks */, + 2EF177EDD614D941C86D08B4E250F4D1 /* Resources */, ); buildRules = ( ); @@ -24759,19 +24986,19 @@ }; 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 6054225F4D8B4153DC15A41219E2864A /* Build configuration list for PBXNativeTarget "FirebaseCore" */; + buildConfigurationList = 50FCCDC4E28676CCC78EBB5B56192A5A /* Build configuration list for PBXNativeTarget "FirebaseCore" */; buildPhases = ( - 42A5D39FF1CCA7DA1B9DCD4B74855436 /* Headers */, - 7E6FD206E5D24DBE561A8E22A92EA479 /* Sources */, - 59DBEA2D61E777EC914A3BB032D70EBC /* Frameworks */, - 418E56B98498C811675596690144D7EC /* Resources */, + 018FF0D53E7990EE662AA054120FB80F /* Headers */, + CDE506F5B2EF3E504C8C76BF91BF93D1 /* Sources */, + 9913494063C38E9FEE526E0CA6A9603F /* Frameworks */, + 13B2FF1C249E4CA59C749F657CE20D15 /* Resources */, ); buildRules = ( ); dependencies = ( - 5759C8F97A7C8B37B9B947A842EC35A0 /* PBXTargetDependency */, - 287FF5EA9D9DA44F9760530E700D112F /* PBXTargetDependency */, - 1FAA70FB1EC02326D3D8BAC58F59D95B /* PBXTargetDependency */, + 68DEBC7879A1D4F8771DBD4DDE033FD6 /* PBXTargetDependency */, + F45F5E5871DF2BF01C3141DF1BED5E22 /* PBXTargetDependency */, + 0664C133F21AA5141B25744CF7C13B19 /* PBXTargetDependency */, ); name = FirebaseCore; productName = FirebaseCore; @@ -24838,200 +25065,200 @@ }; 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */ = { isa = PBXNativeTarget; - buildConfigurationList = D610B5D65A42999C39CDC26E2C569B26 /* Build configuration list for PBXNativeTarget "gRPC-Core" */; + buildConfigurationList = 159D80B6FF4F46489E937F0C0EB96947 /* Build configuration list for PBXNativeTarget "gRPC-Core" */; buildPhases = ( - D8A52A5B79E57052026A621F27009347 /* Headers */, - 4B3DC81701D048413E789404F4F5F421 /* Copy src/core/ext/filters/client_channel/health Private Headers */, - F8837CC44040AD3C57B9BF6D2C247926 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, - 469950AC30F6CD1965172BD88411052F /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - E7EFFDE9E3431857720CD0F30D020888 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - AA531B756B0AC8F179F5D561AC4CDBB0 /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - FA406AB4AEEA471E95FBDE9CDD5229AC /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, - 4156EECF714D6A9468C460384200B14B /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, - C91E7537C1A39F06EA08C7B9992F52CC /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, - 9ADBDB485FF0BD64E2FBB05444281179 /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - 06BCCDFC910AF521DF0EA61DD7495307 /* Copy src/core/ext/filters/client_idle Private Headers */, - 46D2B4B238844B8BB0EA8F8619FCE01A /* Copy src/core/ext/filters/deadline Private Headers */, - 80CD732669FA7B9CD6950D0FD8A7BF13 /* Copy src/core/ext/filters/client_channel Private Headers */, - EC3808116B3EA5E300FF8B843D4A9A69 /* Copy src/core/ext/filters/http/client Private Headers */, - 44FFBF60625440C58F5FE01CB612EAF8 /* Copy src/core/ext/filters/http Private Headers */, - 08CCC753077542CA1B3C75376D98F910 /* Copy src/core/ext/filters/fault_injection Private Headers */, - 0791395CB8E7FA03304C98D36E04E43A /* Copy src/core/ext/filters/http/server Private Headers */, - 5E6CB48747C60DA28CEB04F2E047DA99 /* Copy src/core/ext/filters/max_age Private Headers */, - C46492546454C11A8FB5B9F61F8FC9D9 /* Copy src/core/ext/filters/message_size Private Headers */, - DB4A35650254F74FF56DC6D0D95AB90C /* Copy src/core/ext/filters/http/message_compress Private Headers */, - 1F90AF98AF45682122EDEC624A28C0C0 /* Copy src/core/ext/filters/rbac Private Headers */, - CA0C617B5A55AB745D76887690DEB3E8 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, - E4F74C962094E864206555905483830C /* Copy src/core/ext/transport/chttp2/client Private Headers */, - 13DEBF358131D3040BF1041DFD704EDC /* Copy src/core/ext/transport/chttp2/server Private Headers */, - 534AF1D43A22EB29633FD41A15EC17AA /* Copy src/core/ext/filters/server_config_selector Private Headers */, - 1D209F11F802B7D7DE105EFF3B630001 /* Copy src/core/ext/transport/inproc Private Headers */, - C16529FDD442F3C75F56939CFC021D6A /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - DE44495C32DA96485374265955947C19 /* Copy src/core/ext/transport/chttp2/transport Private Headers */, - 9669407BE9166F23CD58EDDD1B55605C /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, - A8FE1B694D895FBA47F0EDEB82D9A2BB /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, - 8CCBFE542AD675C20E506A78C16AFF30 /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - DA4C6D822813978FD3F0C2BC8AD10515 /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 9F9E0E44030DB86EC36BD9EBC05D53BD /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 29A7CA7F97B92891CC9089D9B0C532C3 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 40128FA0586060BFC0D6E1BDD7A17191 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, - BA7CFCF5AA4AB340C71C4797F803ADA1 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, - B54772A87F25E4D82C93F99780C021A1 /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, - 6A7BF68C8805FAB0983C5A5AE0DE2E14 /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - D3F0A70349C1DEC7146DF1002592EE2C /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 4F3EA87083EAF9D7075F50ED3B9D7773 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 9DC0348262A0DBA1480D3EBACE0D32AE /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - 2F266642838348B3D27FAAD9F8192388 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - 765A79D4E5415B3911F31ED632F71000 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 3C58618EA51BC6DFA52CBB8CEF717226 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - BE97994E8B88B6157C5AA7964B1C84FB /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 81E2E5F1AFAF3E5268D19C4A3A945D91 /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - BF8EA09464527CA99E345779531F8C44 /* Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */, - F68042B75883B0C7AC128C73A493CE05 /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 1F736D1B51E39698E34287724D681B11 /* Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */, - BDD38B7397D14DD6F0325EC63DF96FD3 /* Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */, - D0A1698782C27F0B957B231183B6E187 /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, - 4680DE62032D13517C4A8B36E7FA7681 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - 6541F28A94473452EB8F803C14098D3D /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, - 67F1964271929FBD4F4221925B32A932 /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, - 7AC3D4666C14D12E55111400B95A253B /* Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, - E174D78003FCA60C1DD0EE436020C1C6 /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, - C6CE716DA2855FF4AA42AB7DB55F93E2 /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, - 6C06E089AC2519F740AD756BBC96A64B /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - FFF56155145F834D1E8459478A0DC35C /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 76323DF086E46D9622403967B42729D9 /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 6A32E1D276E93B5DF3D40CA05D13DD3E /* Copy src/core/ext/upb-generated/google/api Private Headers */, - BFB5F2B4A8663BBB5172F0CACDD90394 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */, - E2D9FA542A0AE851941B5F86DF7E0DD0 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - FED664FACCAF91965CC5DE4D16430218 /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, - 8B271EA9B30C9E5D4CA2C24C9FB8018F /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, - F582A54C87FB0F1E7A28CF1A57502F00 /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - 53B6CADD064E4A2A1B75B71DFF8063E8 /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - 31923AB0D2CDB91477EDBDD902AB281E /* Copy src/core/ext/upb-generated/validate Private Headers */, - AC602188D85BF3A38A0923B6224251CA /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - 45FBE9C02D9E12DCAA93ED7AC5266E85 /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 3357C73DF529B475E5CF55448C0193FE /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, - 937673F3B87D2BE3D2A5FFB3B0383C81 /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, - 571E90A659F9DDD6E1CDABFB53BD540A /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 3453387F08E74B9D334C9BC1158F4D07 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - E1D76B357577CEBB7016AE8ED7593783 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, - 789398BB53EBC9AA18E660C4088B3E78 /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, - DF80464C8928705F000391BC5810DFC8 /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - 8B1FD04DB7CA447F60D9D968A05340FA /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - A1EB432DE017B5F0278B94AB2D3B46BF /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 7EBD6B66BB907E471E0069DECD821519 /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - 91CC17116EE35A1BEDE32B1C26FA3510 /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, - 21AF5AA70D72D51B87C942EB333E0740 /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, - 1179495A182CD1FF4906EAA7EE107EC3 /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, - D102E603DD9EFF4E73A0ABC9369A80F5 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 53CBD2F03A57CF9CF01B232AA2AF3473 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - BE649FEDD39FDB9113FD8E18B1F176E6 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 850B1D5C1095F8EA27C72F688A4B2B82 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - 3AEB8EFFB2D6B113247F436C5FB69B27 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - 6D8DB5D9947F8E72F3586DEB6322A0A4 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 14751B5ABFE28BC952A43E9E8988AD06 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - D2B826DBB4D179D3C4DDB15FEAE13FD3 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - E613819C22C2F779B1D0DE95C3BFFE8E /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - 908D2BAA27FCD379A4AB26FAC34095CD /* Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */, - 5C70499B2BC80B9057003EBE42937AE0 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 042853B584B93C59215A502F5F671DAE /* Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */, - FEC2D93B4F366C9DC564B114B06C27F6 /* Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */, - 9A2F27B77632509D456103FC1B316F1C /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, - B66F950930D8139A3B3D6D2DFCAA8D80 /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - 198C71472690565BC4B1CA867F2E022F /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, - 05CA60940EBCB5E792BE21F9147A5DF5 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, - 2542F091447FD12C9B2AF647286363C9 /* Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, - 8A181F1D0B9688D49D53AA99EDC44D62 /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, - 566902E74A143EFF3679C74F8F8300DC /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, - 76F8901072DFB523C332F54A060BEF3A /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 6774D56889B04445FA16F262E74AB86C /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 6BA21C475F561A3A5B3079EEF6C3D980 /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 0C5DB54FE048A2A5179A70AD30289189 /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - 3DF95AFB7A6F09526EF63B416A8AF66A /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, - 7C2EDD7C0F369CB6E2356FB4B9E318B1 /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 8A59780672C6A22BB91EE3CBFEE990CE /* Copy src/core/ext/upbdefs-generated/validate Private Headers */, - F96B8098A60D578E2375A05A2217D532 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 3B7150830F44A53DB459C7742FD6E57D /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - BDCA0D0A819F5759B0DAE79D2A20CA4D /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, - 95DB2F93EDCC318F04F9E8EF3F95D3CE /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 6B3AB4B95BEB3E10AE650FD57CF23A38 /* Copy src/core/ext/xds Private Headers */, - 6D3FEE5BA884C7DEA28E04976445A607 /* Copy src/core/lib/avl Private Headers */, - B55CAD7DD0DD396E4E79850C298C64A9 /* Copy src/core/lib/backoff Private Headers */, - AF967229EEFA14B9B485EBF803AF93B7 /* Copy src/core/lib/address_utils Private Headers */, - 70ACD2CAAC64A4A8B266C8D0211C5D39 /* Copy src/core/lib/channel Private Headers */, - D888706E5D984ED72BF617573F0B3299 /* Copy src/core/lib/config Private Headers */, - CF2A08E28839316BD36217D41A685DD0 /* Copy src/core/lib/compression Private Headers */, - 49F50123D40B2FA275B87CEC6CF4AAD9 /* Copy src/core/lib/debug Private Headers */, - 9684ADE6B8905DC1CD8491B6B3B32DF8 /* Copy src/core/lib/event_engine Private Headers */, - 3BA8DB55B7208E53575D6CAB2D6C8981 /* Copy src/core/lib/gpr Private Headers */, - A8CDEA1CA7BD7C6AE29236992D44769A /* Copy src/core/lib/gprpp Private Headers */, - 7F731C79FAE083E79C99374E503D5E2F /* Copy src/core/lib/http Private Headers */, - 7D9447A9440EADC1D0A6B88533CFF088 /* Copy src/core/lib/iomgr/event_engine Private Headers */, - 450F7510A82329F5962ACB71D144DDE7 /* Copy src/core/lib/iomgr/executor Private Headers */, - 2851A5163F56A7EC0F241E580ED5AB2B /* Copy src/core/lib/iomgr Private Headers */, - 5C86CA660D1BF6A9BA0FC26D539D2C96 /* Copy src/core/lib/matchers Private Headers */, - 982CBCD56889B55E97F258DCF8CFF842 /* Copy src/core/lib/profiling Private Headers */, - 370BF88878795BC33513693F799C2425 /* Copy src/core/lib/json Private Headers */, - 14C2501B3857E1B3C5A97441C6DF8229 /* Copy src/core/lib/promise/detail Private Headers */, - A0F4DE6268E86B1F46C63614DF13F38F /* Copy src/core/lib/promise Private Headers */, - 6D4CFD33B7C2D3DB0E40B69CA45E3986 /* Copy src/core/lib/resolver Private Headers */, - CCC7E9E3DBC93BE96A2A53C2CE5D60EC /* Copy src/core/lib/resource_quota Private Headers */, - F5BEB5E1246822455472AF26D8AFF502 /* Copy src/core/lib/security/context Private Headers */, - 53645846314256953D90E7A0C0B2D6D1 /* Copy src/core/lib/security/authorization Private Headers */, - 0944B12A21635548AB9CD2CF558E5C38 /* Copy src/core/lib/security/credentials/composite Private Headers */, - 4CD0FE2CE7B0C4E55AA143147F499302 /* Copy src/core/lib/security/credentials Private Headers */, - 2A8C46A64020222D8A7CDFAC01F357BA /* Copy src/core/lib/security/credentials/alts Private Headers */, - 8CA65A161A609EA205AEBE72A9D0621C /* Copy src/core/lib/security/credentials/fake Private Headers */, - 698B5B3FB489DADFE392B6D3C6E5447A /* Copy src/core/lib/security/credentials/google_default Private Headers */, - F3378FC457BCCDF63C90541E248A03D1 /* Copy src/core/lib/security/credentials/iam Private Headers */, - A2C051AF1804F7F1A9B5047255435495 /* Copy src/core/lib/security/credentials/external Private Headers */, - B388987E64D86F892C71F9B1BC6A6D30 /* Copy src/core/lib/security/credentials/local Private Headers */, - CB43423C462A8055B71B69469235C564 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, - 64C01889F86B23D93859FBBFA3A1FBEB /* Copy src/core/lib/security/credentials/plugin Private Headers */, - 49E404866CB14FDF17C97E2C7A2BB383 /* Copy src/core/lib/security/credentials/ssl Private Headers */, - 9F73EA3475568E4C9D3A3EAA6B6CC136 /* Copy src/core/lib/security/credentials/jwt Private Headers */, - 7539A9B6B8BA0F8AFFA022338EAB4513 /* Copy src/core/lib/security/credentials/xds Private Headers */, - DFDD1033E2E8E562BC9B0EE6146EB5D2 /* Copy src/core/lib/security/security_connector/alts Private Headers */, - F84A017C34057D1B737AA512F35D35F8 /* Copy src/core/lib/security/security_connector/fake Private Headers */, - 3E223B9B7F9ADF9ED4B9DCCF911CED23 /* Copy src/core/lib/security/security_connector/insecure Private Headers */, - AA4CC905B516A2BD355DFB7D931D6ADF /* Copy src/core/lib/security/credentials/tls Private Headers */, - B300093E763BB0FCE581BA48E8A1BB1F /* Copy src/core/lib/security/security_connector/local Private Headers */, - 98CBB3DD363B0A2967DB2EC54279E5A8 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, - 40EABFE7E52900F2BF69A78A85CC8B88 /* Copy src/core/lib/security/security_connector/tls Private Headers */, - F7D79CFA6F8F1DF0232718E508FE48A9 /* Copy src/core/lib/security/security_connector Private Headers */, - 26059B1DE2D56A889D2D34C55790612C /* Copy src/core/lib/security/util Private Headers */, - 26A540D61B23A65C3D3912A489E25ACE /* Copy src/core/lib/security/transport Private Headers */, - BAC9E2027FC1009A2BC8D65D28C1A13F /* Copy src/core/lib/service_config Private Headers */, - 9475339155D626303CC7D8988AD12452 /* Copy src/core/lib/slice Private Headers */, - B8F10E71E52B1924C6A19B2B3ADA4617 /* Copy src/core/lib/surface Private Headers */, - BFFA2A5A69153173D93BF4D67E2BA5A9 /* Copy src/core/lib/uri Private Headers */, - E1DBFE1DE5950DD2BE5C298C8D6C1768 /* Copy src/core/tsi/alts/crypt Private Headers */, - FF5A1982C2E621A8E45F63FDB50EE473 /* Copy src/core/lib/transport Private Headers */, - 89497F1C12F85056B3E979C660DD38DB /* Copy src/core/tsi/alts/frame_protector Private Headers */, - B648E3CCE5A222016D8C29490AD50525 /* Copy src/core/tsi/alts/handshaker Private Headers */, - 1C002D1B78276E573426B7F166D9E1AC /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 73D8858DCB038CF6D8731CCD40A5162E /* Copy src/core/tsi/ssl/session_cache Private Headers */, - 8F7E9E4FB1DCC3A3B6F4842EF1D1F4A4 /* Copy src/core/tsi Private Headers */, - C2D989EE85ED698E69A734C4D9B28872 /* Copy third_party/re2/re2 Private Headers */, - 2452B2F5DFBCB1BABD4B666D043BF09B /* Copy third_party/re2/util Private Headers */, - 4705ABD5F866F72EB4C420815AD01193 /* Copy third_party/xxhash Private Headers */, - CBF7B006E7BFCFAC8C38FCA960A48583 /* Copy third_party/upb/upb Private Headers */, - B43B051017C299076B46A3A052669A8E /* Copy event_engine/internal Public Headers */, - 974B063FE22D3489A2D94E8BA48BCA9E /* Copy event_engine Public Headers */, - 40C44FF903F2754FBE59404C659185E3 /* Copy impl/codegen Public Headers */, - E34E6C9739EEA50D5A33E6F92486562D /* Copy . Public Headers */, - A0E2C963DAB2083B6BE045A5F979B7E9 /* Copy support Public Headers */, - 59C4FB45D0DCC27647028947A76028F2 /* Sources */, - 045C78376381DBF79F8F290C826FDA74 /* Frameworks */, - A1128C5CFE8630D367CCC2E591508437 /* Resources */, - CC2EDBB86416C8EF889EEAC49BEB6C81 /* Create Symlinks to Header Folders */, + D5C89727B64554854AF064287F6B5CAB /* Headers */, + 5812C10EBF00DDABF3A50DA6F21DFB9C /* Copy src/core/ext/filters/client_channel/health Private Headers */, + 372FEA23927D2E3DD43288FAEB2EEE5E /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, + 87C9BA322A7625760A4636FFE35CA41A /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, + C05061F02BA96B3D1E2C75C627CCF447 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, + 07E528F9BAE0CD00E78A6784C984108E /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, + 46E4BB0F1C3B9BC0063453DC07FC82FD /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, + 3B62C13FDA0888B3C249743927674428 /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, + 3593C5641911678AE309E1C6DD86927A /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, + 4D6A477CB81A3C8E7E8988A2F132CCDC /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, + 2B9C5269CCCE72C1C915E432237C62B8 /* Copy src/core/ext/filters/client_idle Private Headers */, + 79AE5341EE27E7996AC225E3D12A9E37 /* Copy src/core/ext/filters/deadline Private Headers */, + B81BF01AA120ED9F9F51AE8E6168B8BB /* Copy src/core/ext/filters/client_channel Private Headers */, + 20E6E9246F3A70F5F87E8F340FCA8876 /* Copy src/core/ext/filters/http/client Private Headers */, + 5B7CE7F5D28F372FB71C2CAFAAE3F2A4 /* Copy src/core/ext/filters/http Private Headers */, + 34D54E1801DCB91D6A2E04DE65640601 /* Copy src/core/ext/filters/fault_injection Private Headers */, + C7CEEE593CE845F82CD75425B9A664B9 /* Copy src/core/ext/filters/http/server Private Headers */, + 9CEC9FE41F274DE3C0A473F1C17E1F2C /* Copy src/core/ext/filters/max_age Private Headers */, + 54A706852E87F85B72A5B966F41E04A7 /* Copy src/core/ext/filters/message_size Private Headers */, + 778B87E74BB8ED418817CCBA0D2701F6 /* Copy src/core/ext/filters/http/message_compress Private Headers */, + CBA3A747DC32B9488C9A07FABD6A88A4 /* Copy src/core/ext/filters/rbac Private Headers */, + DDA466EDF8DD47DDB7A5E8337E31EE79 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, + 2E0970D7CF3DCFD45494C9157FEBE224 /* Copy src/core/ext/transport/chttp2/client Private Headers */, + 5A679D05F562FD2281541073A3A05667 /* Copy src/core/ext/transport/chttp2/server Private Headers */, + BE75C62CB65E441F6805D9B019DD8DF5 /* Copy src/core/ext/filters/server_config_selector Private Headers */, + 0840A939189420EFFFE1DA363082C1A1 /* Copy src/core/ext/transport/inproc Private Headers */, + C3D6CE8C1B5EAD55E4BC075B121C75E8 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, + EFD5111A82561E4F9327B17495E59733 /* Copy src/core/ext/transport/chttp2/transport Private Headers */, + 26FCCD38F6FBB68E7CB61825BAC480BB /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, + C8AEB46845FDEB1EB2F27A986F9B36D2 /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, + 3645E243B64327753CD17D627A54DE7E /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, + 7BEE304CA83BC0A6EE6F21C660DA646B /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, + 359A444044E2218033775A32A9EAB5E7 /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, + A226524D1AABBA03B4C6E1CB6C4B9557 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, + F6DACA8593CA2A058666DDC7CCA85469 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, + F9D88CDE39C31CEADDAF831CCE53F301 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, + A7615FDF2C24C9D880DC14BA6574DDCF /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, + 7D2464680A72D6F96F10E6CF4A3B3C9D /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, + 4069538E7BB8035DEC9228DBC285269E /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, + 781B271EC924D65BFC7F31E5F1F9E9A1 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 9ADA585F673E80F29781EE5438323BC0 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, + ED4DA8B6E332E1B79CFE039E023CEDF6 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + D538FC4B2C4062EF526EC3E0C9AA52EB /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 3CC11CF7B37C2E5F4880EF28DD42B2A6 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, + F6FF4B2B6D876A46C7C0AACC02063996 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 5EC7CFEFDC515B0A7B02DD75F5078B7F /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, + CC594F1B031387D49A9216AF1BC4AA21 /* Copy src/core/ext/upb-generated/envoy/service/cluster/v3 Private Headers */, + 3AB578E587128960FFA755B39B02186E /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 8B769BC3D57A64D4E997DFCEA8CC8F05 /* Copy src/core/ext/upb-generated/envoy/service/endpoint/v3 Private Headers */, + 34B8D126E09A0335177F00D2A564FBA4 /* Copy src/core/ext/upb-generated/envoy/service/listener/v3 Private Headers */, + DE9AD26AEF2FB1B64DE8578D63746F25 /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, + 7A3F55AA6E406AD4AAECF28F7620EA44 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, + C37647092D8D366FAB34FC3B4C78459F /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, + 942D227AE21792796B86F5F66F2235DE /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, + C388BD24B05E2B1BD8DB9C0884A4D3C7 /* Copy src/core/ext/upb-generated/envoy/service/route/v3 Private Headers */, + 0FA316C1F25FA7D66CE45BC2E8D8AF3E /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, + 09730DF148D934E6A9ADFFB61337C550 /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, + 809D35365C9DFDE5766584AD46C773AC /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, + 096725FFF3431918E0C62584240D300F /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, + D0F67C4DB0E1FFD1C0D32760C94CD6DE /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, + B6101A1E72308EF79804684A292A380C /* Copy src/core/ext/upb-generated/google/api Private Headers */, + DDD0400EC9365C7763E271A46525DC73 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */, + 96B198F33019C70924032D94B473E5AA /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */, + 277B00BC99138E6CA5EFC52BEA225BB3 /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, + E40A5D58C4EAAA72BA9F15C6C5846765 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, + B6DC99EE078ECE0F15DC87DFBD7C3125 /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, + 8F0CB56659042BE434033F16D5D2F1DD /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, + F729FAF2273B6AD2E3BF30D5B552C25A /* Copy src/core/ext/upb-generated/validate Private Headers */, + D37A956A8AE25B073FE50A089A28D160 /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, + 1C7DD5E8EF30DC018927239BFAF20E5F /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, + EC1B97B31A0B35E91E6233280346B0DF /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, + 472594AE0D9082F5561BFE265A1C6B8B /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, + 550A32FAAAED15E7E49E27E4CE5B210D /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, + F24BF2C9D2AEFA66F640FFF77D1FA0B7 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, + 6B090F4F7A086BBEFF3D5727DB0E44F0 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, + E46285979B4E3B48F3F10D48186EDFAC /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, + 964193402786ABC4884A0B272031120E /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, + 65230F833A7F4A3557B48E5E22FF3E20 /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, + 19D90A4A3B5A2DF2FFA059B95FCC5CA9 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, + 2F1A29BD66ACA07EE6EB4C323278ADC2 /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, + 4D8A764D7C5F0D1C288496BF78E21388 /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, + 7B15B35313485ECBE477205264EB73CC /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, + 23E26386223F7B9B72706174A5D403DC /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, + 7B58C4CDF5499F9F14032D311F1331F6 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, + C62B9588B74941CA445ACD2E6084983C /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, + 2CCA67AC1C3F3DFD7FE0F6EEF7939AF7 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 022BED5EAC449B4C5FDB0B1B776CE814 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, + 2C11CFC05D3181B7B38C5C9A0286A628 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, + 21876D1748D86F224602AE7BC9BFFE64 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 280AD1D39CA71CC254E70BAA8D5DF211 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, + B6F6D6AC8F19A0C07252184B6EFB872F /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + B49A37AB89D97E3090AE36815F5F1FC9 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, + C07E1020955AB6263791B3B2728B3720 /* Copy src/core/ext/upbdefs-generated/envoy/service/cluster/v3 Private Headers */, + ECACA9EA33DF93363646901A9CE7EF80 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 2A581F5CB15D5CCFC2193BE6AFE27B13 /* Copy src/core/ext/upbdefs-generated/envoy/service/endpoint/v3 Private Headers */, + 717FD5CE92DA4E5DD922E573856EFF64 /* Copy src/core/ext/upbdefs-generated/envoy/service/listener/v3 Private Headers */, + 296F8314F13EFAA01EF2081423F3C2D5 /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, + 67CE152501C85E3A6C30D6AC5C1E8EF2 /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, + 475BE4BE57C53EA27BD9EAA81400EDAF /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, + 746C29E8DC5A1589CF48AF4D958AEDB2 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, + FE23377D2EA046F90FCD6782E8AC42A9 /* Copy src/core/ext/upbdefs-generated/envoy/service/route/v3 Private Headers */, + 860E248A23FCB01579CE22157F1854D6 /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, + 7E84412F879C59DFD0DE342BE3A35BD2 /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, + F2E4647779F58AF0F631EC8302AD9051 /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, + 806AE057B7164E1D2CD3BB9D79CA2A7F /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, + 9BACC3D4CF899A47BC19BF0C6B1DB408 /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, + 1DD253F56A7FA8E11379B125EA504166 /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */, + 34736FA99A5453DDF4B240B00910CE8E /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, + 93086B335D5063E5C7DE575783AAD65E /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, + 7799452045F8F6FBC8EFF8D7C6D40455 /* Copy src/core/ext/upbdefs-generated/validate Private Headers */, + 6344C60B040790ADCB279FDAB8133172 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, + F97EEC3DEA8106F15C5BDBDF626F8E3C /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, + 7A9F80C0516AD3E41A4AF1ADE93C65DE /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, + 1C09930DB22FAE5A8EE7836FFD9B7DBD /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, + D9BA0EC226C3C74776E6FD6DD1C31DCE /* Copy src/core/ext/xds Private Headers */, + 30D8069924646BF1A2FD730242CACF42 /* Copy src/core/lib/avl Private Headers */, + E6B3438732426E061919095B9A32690B /* Copy src/core/lib/backoff Private Headers */, + 1F126D5BFD7D3DDBBBA8731DBBA93D23 /* Copy src/core/lib/address_utils Private Headers */, + 4DB2B67A5D1368600529AFBE4D1AED13 /* Copy src/core/lib/channel Private Headers */, + 98FFE2AF7F60CC283629FC40E2F98562 /* Copy src/core/lib/config Private Headers */, + D329EDF6DF95D8BE235EE6E2F8D78956 /* Copy src/core/lib/compression Private Headers */, + B89469B2F0835D8C3A97252997C2D443 /* Copy src/core/lib/debug Private Headers */, + D548E28FC1B3ABDB477B94A89ACD1660 /* Copy src/core/lib/event_engine Private Headers */, + 2FD2227F109B250C8FCCF4090644E9B6 /* Copy src/core/lib/gpr Private Headers */, + B84868E3D3A0568830AE7E71F652754A /* Copy src/core/lib/gprpp Private Headers */, + 932FCF551636E2693ACAC2D66B8A9C4E /* Copy src/core/lib/http Private Headers */, + 523D45A0070570EB8B6B31A3F63092D1 /* Copy src/core/lib/iomgr/event_engine Private Headers */, + E7711B8931317E064C9E573DE6F43443 /* Copy src/core/lib/iomgr/executor Private Headers */, + 47134EBD135669952F0A372405E41EFE /* Copy src/core/lib/iomgr Private Headers */, + D99DAA23BD8CD9CAE429DCCBE3AA02FA /* Copy src/core/lib/matchers Private Headers */, + 529484A02986D944B53B7765E209F9A0 /* Copy src/core/lib/profiling Private Headers */, + 238CC1A577E846EB279D8D18372F435E /* Copy src/core/lib/json Private Headers */, + 4A1E0E3135F77F5BB5F89FC4F60C2F9B /* Copy src/core/lib/promise/detail Private Headers */, + C449B98D4FC564830E83ED83913715A6 /* Copy src/core/lib/promise Private Headers */, + DEE8E7F39D4BAF9D275B391A624E3E8B /* Copy src/core/lib/resolver Private Headers */, + 0C50E023AF798C51C7248F97A3AF8F5C /* Copy src/core/lib/resource_quota Private Headers */, + D57E9710195C26C2FF842DBE67C8D832 /* Copy src/core/lib/security/context Private Headers */, + B080A9E5C475A733C20DAFD6311D85CC /* Copy src/core/lib/security/authorization Private Headers */, + E9B04506F6D0CED5184C1D237945AEE3 /* Copy src/core/lib/security/credentials/composite Private Headers */, + 96B6B6C5BF0FF95AD115D4D82851529E /* Copy src/core/lib/security/credentials Private Headers */, + 44C4D243837201ACC20A0AB4436F039A /* Copy src/core/lib/security/credentials/alts Private Headers */, + E6873B1DCBAECE82EF6653CDF4BD3A73 /* Copy src/core/lib/security/credentials/fake Private Headers */, + 2316CC21ADABE0C54F8B5358DEED60E5 /* Copy src/core/lib/security/credentials/google_default Private Headers */, + 365FB8D4A704A54F68BB8774FD9ADA29 /* Copy src/core/lib/security/credentials/iam Private Headers */, + 1862BF99FD2C47D4A2F85D2BBA47914A /* Copy src/core/lib/security/credentials/external Private Headers */, + 50CC459EB84D710DADFF61A6DBDF57F7 /* Copy src/core/lib/security/credentials/local Private Headers */, + EA625A255CD4433E6F514FC20061C65C /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, + 807E6075AD932F12A542F1EFCAAA78A7 /* Copy src/core/lib/security/credentials/plugin Private Headers */, + 4E599968FF0BB9F7E4FFD4B7EAD76CF7 /* Copy src/core/lib/security/credentials/ssl Private Headers */, + 2523474C4C861D6F0C4487640598724C /* Copy src/core/lib/security/credentials/jwt Private Headers */, + B793CAA2B81D4CC868E15ABC573D1D6D /* Copy src/core/lib/security/credentials/xds Private Headers */, + 1418EC806B40EA4A2BF167AAB2D966D1 /* Copy src/core/lib/security/security_connector/alts Private Headers */, + 1045E100340E73195E59BBE58D4614AB /* Copy src/core/lib/security/security_connector/fake Private Headers */, + 15EC5ABC72771189A73967266C097B8A /* Copy src/core/lib/security/security_connector/insecure Private Headers */, + B3EB572B01A44789369430C1D6725F75 /* Copy src/core/lib/security/credentials/tls Private Headers */, + 412CA0FE16A5D190E391734E51696BB9 /* Copy src/core/lib/security/security_connector/local Private Headers */, + 870C96CCEFB67FAD8FD0F9EB6FBB4137 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, + 857ACBFCF2E7E3832BCBFBA518A8EF1D /* Copy src/core/lib/security/security_connector/tls Private Headers */, + F9E94FE046EFBB1742194B6D37563EF7 /* Copy src/core/lib/security/security_connector Private Headers */, + FC1135C94C2CFF3345DD3DEC4EEFB0C3 /* Copy src/core/lib/security/util Private Headers */, + 46E258D77513F8A3B71ED4285F4F69E1 /* Copy src/core/lib/security/transport Private Headers */, + B0137505F6464AFAA281FC5E77648D5C /* Copy src/core/lib/service_config Private Headers */, + AE14FEEB284D687F42AC38593B69216D /* Copy src/core/lib/slice Private Headers */, + 29C9804EF8F7A0190113D70BB1063603 /* Copy src/core/lib/surface Private Headers */, + 8D78954238D4AA865EB3E26AF9C5761E /* Copy src/core/lib/uri Private Headers */, + BB4422D0911C6D4E3F636BB7484A11BA /* Copy src/core/tsi/alts/crypt Private Headers */, + 1DF3ABCC5E6CB285E0FF8AA8FAF11ECF /* Copy src/core/lib/transport Private Headers */, + 739DB7A54FD61CD99BF848F215DCFFCB /* Copy src/core/tsi/alts/frame_protector Private Headers */, + F8A7D07ED8CB12BF6E7DEF6A78849AFC /* Copy src/core/tsi/alts/handshaker Private Headers */, + E4B7B63EEFF431AD93728E27D9E58AE2 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + F8172A92BE2627F592F4FB9B1801EDAA /* Copy src/core/tsi/ssl/session_cache Private Headers */, + 8A5D84A6EDFF9DD945079FF49FCA0F25 /* Copy src/core/tsi Private Headers */, + CF8AE3632487504D841EACAAB4619A48 /* Copy third_party/re2/re2 Private Headers */, + 19B05D20BBA262E48E8450D26F95863F /* Copy third_party/re2/util Private Headers */, + 390244C42C88D1A39A4781EF80632809 /* Copy third_party/xxhash Private Headers */, + 4EAE31D1393370D5C97386AA19EBB0FF /* Copy third_party/upb/upb Private Headers */, + 0DEC26470C0E3AA89E1811FA3B447EE4 /* Copy event_engine/internal Public Headers */, + EDAFA9D3ACF724A30748DDDE65B4DEE0 /* Copy event_engine Public Headers */, + CE7B8BE024E093A26F018F6F86801E28 /* Copy impl/codegen Public Headers */, + D361DBA2462C6F7AAD6C5677433F90DC /* Copy . Public Headers */, + E29EF7FBBBE94400CD85741E0FBAB52B /* Copy support Public Headers */, + 356F8F02ECC927A42F6B57031B11BEC2 /* Sources */, + 2A643F44BB2CC237595E119BA3D32407 /* Frameworks */, + 65B75A6839E4095EB08B63A3DF649933 /* Resources */, + 63683A19555DFF25B5BD1B3682485B2B /* Create Symlinks to Header Folders */, ); buildRules = ( ); dependencies = ( - E2F979B4013C1796530D7EF647EBDEB9 /* PBXTargetDependency */, - 6150BC5542DCB03D78DDF254A7F091F1 /* PBXTargetDependency */, - 09AEBCE3CF3A5CC5E759E32D67B830DE /* PBXTargetDependency */, + 3E0374DC801792301FFB79A5A19613FD /* PBXTargetDependency */, + DC1B210B7056142B319CAD930F441138 /* PBXTargetDependency */, + 1CDEC28DE57A5B5A92E18FD44264EFB8 /* PBXTargetDependency */, ); name = "gRPC-Core"; productName = grpc; @@ -25040,19 +25267,19 @@ }; 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */ = { isa = PBXNativeTarget; - buildConfigurationList = 9A09E33CCA24240C53A390753812E996 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; + buildConfigurationList = BF4FD51CE11056B465529A56F303B3EA /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; buildPhases = ( - 6D981270275912E657A2D5B3FA007BEC /* Headers */, - FE180D8B4D7D7F92EA48A98CC3BC4319 /* Sources */, - 33F0436E63C8275967B5DC40439CF616 /* Frameworks */, - EC1ECE14E5EB33E314C1D831853473FB /* Resources */, + 4A2D7E0895F8EA9409BF454F87031A45 /* Headers */, + F1715DB9AF809DB4477B4E50E522ABB1 /* Sources */, + BA9FFE58B4C5758F8BCD2E89A1744FB2 /* Frameworks */, + 714359832CC43507B278DB47E4DC68A6 /* Resources */, ); buildRules = ( ); dependencies = ( - 1EE8D5AF734B5003AA9575535FF23C1A /* PBXTargetDependency */, - 5632C15F0EF6F1877715C522CFBC346A /* PBXTargetDependency */, - D380D051EF5F06B65D210B8ACFA85224 /* PBXTargetDependency */, + 4201D740741931F7BC9A36E4D735DB3D /* PBXTargetDependency */, + 142576966D23206222574472FA165C1E /* PBXTargetDependency */, + 6E790E008160E5D09732B33FAFBF54C2 /* PBXTargetDependency */, ); name = GoogleDataTransport; productName = GoogleDataTransport; @@ -25061,19 +25288,19 @@ }; 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */ = { isa = PBXNativeTarget; - buildConfigurationList = 5B5B7A86BC8A854E5E65DA2A975FD163 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */; + buildConfigurationList = A8EEE0493FC72F5E58936DA55A8A2ED8 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */; buildPhases = ( - 1E873DC44505F2FCF08C5D2C1D6C8C3B /* Headers */, - 3376505A24C6C84E41D073ACD909EB3F /* Sources */, - 8F722D3CDD047EE48E78B94A0AB24D1C /* Frameworks */, - 87259815CB09226F31D9832CB5ADB22B /* Resources */, + 1F858E99888881EE346BB2A07007E13D /* Headers */, + 75148CDA8ED67C8E7FEC34449682C033 /* Sources */, + D5CB4F2E6086E1D77A4EFA2447F01B4B /* Frameworks */, + D874E24E8293E9883802D01258453060 /* Resources */, ); buildRules = ( ); dependencies = ( - E113780EDE479457C8BA0F2A88B7725E /* PBXTargetDependency */, - 0664AC78C791D0D9E10BC55069240AB0 /* PBXTargetDependency */, - 92F1E54E42D7341BBB8C510748AFB04D /* PBXTargetDependency */, + 17CDF1A7ABE01E91C55570BDC2B3E658 /* PBXTargetDependency */, + C8DF80A1A0AF7D44205EFB57962FFF08 /* PBXTargetDependency */, + C8D026C18D2C6686F2471728F1A40909 /* PBXTargetDependency */, ); name = FirebaseCoreDiagnostics; productName = FirebaseCoreDiagnostics; @@ -25082,16 +25309,16 @@ }; 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */ = { isa = PBXNativeTarget; - buildConfigurationList = F038FFC9529BE99B68D111FFAE89D158 /* Build configuration list for PBXNativeTarget "Libuv-gRPC" */; + buildConfigurationList = A419C17F70B99D024D8B35BFCEF2718D /* Build configuration list for PBXNativeTarget "Libuv-gRPC" */; buildPhases = ( - 1403929441ACB43D789F784FD0F80EFE /* Headers */, - 20887C69A3CA293C1281D75B67FEE407 /* Copy unix Public Headers */, - 5DB1C47CC77F546DD9B32DE1CE428299 /* Copy . Public Headers */, - 468590C981A42F03CDDC954A2EAC38A9 /* Copy uv Public Headers */, - 4841914965D33C7923A15CFFC57F6977 /* Sources */, - 9FB6E806932DE014BECD90205042BE9A /* Frameworks */, - 955B6C76B47A201BC6AB8B1A73B9AB39 /* Resources */, - 396CA19FCAE0576EDD22CF648793A724 /* Create Symlinks to Header Folders */, + D3BB64D997ED4D347FA9147DE832DA3B /* Headers */, + 7122A3CC397FB77E066A8611C89FF222 /* Copy unix Public Headers */, + 546BB3C10F286C98AB354053B666D305 /* Copy . Public Headers */, + 9B65D36F4795ACAF2659DCD2A8DBD171 /* Copy uv Public Headers */, + AC6455515647BB47BB31AA098CCBBA96 /* Sources */, + B64E27482D9A1CA263617DD221075421 /* Frameworks */, + D54B5C17BACEE08B6A591BA7ED4BAE57 /* Resources */, + 624543949C0B350A72BAF3907FFB149A /* Create Symlinks to Header Folders */, ); buildRules = ( ); @@ -25114,9 +25341,9 @@ buildRules = ( ); dependencies = ( - 30480A279AB6F9CF3861BB1DE56E6633 /* PBXTargetDependency */, - 0EEFA8DF85DF23433DB567F1FE822C31 /* PBXTargetDependency */, - 7874E2C65391ED671EDE111444310EAC /* PBXTargetDependency */, + 055B75C48A4F8344E68F8A908E082247 /* PBXTargetDependency */, + BA9D385480C776C998C40E42145918E7 /* PBXTargetDependency */, + 15F154E5AF44D606D3A4E004D19DCF05 /* PBXTargetDependency */, ); name = FirebaseAuth; productName = FirebaseAuth; @@ -25143,45 +25370,45 @@ }; 73CDC3D182DB953135F62609681B443D /* abseil */ = { isa = PBXNativeTarget; - buildConfigurationList = 565B268BCF3DC57C5E9A02DF0E6D77A1 /* Build configuration list for PBXNativeTarget "abseil" */; + buildConfigurationList = B1185B7915E4B15B0A2D880095A99ECF /* Build configuration list for PBXNativeTarget "abseil" */; buildPhases = ( - 651A7E0D855F1CB0C801D0D7D8D00520 /* Headers */, - 55692AD3B95E3E2845773445CCE2B692 /* Copy algorithm Public Headers */, - A98D1965C97E517944042A59F91330D1 /* Copy base Public Headers */, - 184FA3AB6CACED59D50BEFA19F48844B /* Copy base/internal Public Headers */, - 6B2D725944C9105E599BD694383DED1D /* Copy container Public Headers */, - E5799F1250C1E4B9A70B19E8BD458832 /* Copy container/internal Public Headers */, - BFC59F86D07EC21AC77097E4BFD9E467 /* Copy debugging/internal Public Headers */, - D4C62B861F219A20D396697FCF35E4D6 /* Copy debugging Public Headers */, - 9314E604F4D6F40C40C378CB2C212A41 /* Copy functional Public Headers */, - 0544D0CA9E39ED69F819DC967451EB71 /* Copy hash Public Headers */, - DD006602D09E34F51EAA02CB13DA350F /* Copy functional/internal Public Headers */, - 6503EAAB3BDEE297AD1D90B79904559E /* Copy memory Public Headers */, - FAA3DD25ED19A63D5472A8B9645D27F6 /* Copy meta Public Headers */, - B93BAE1DE57960D01E486DF663ED1796 /* Copy hash/internal Public Headers */, - C1798E474795CCCB6434121E678D8FB9 /* Copy numeric Public Headers */, - C67C6B3024B4A1A1237886D9294D2C53 /* Copy numeric/internal Public Headers */, - B4FA25A13840BAA0053D68949EB51845 /* Copy profiling/internal Public Headers */, - BD41D20124D16F376431F2519009D64B /* Copy random/internal Public Headers */, - F40C8D44BF62C5AAB6ACBA853AFB41BA /* Copy random Public Headers */, - 7957DC8442992427EB17DD6B8BEB73E2 /* Copy status/internal Public Headers */, - 09F7F41E8DA025DDD955690255720995 /* Copy status Public Headers */, - EADAA826FFDAD9F71AC0ED3EA888406E /* Copy strings/internal/str_format Public Headers */, - 726A78B325FE7CAAF06CBF92C7A65FD9 /* Copy strings/internal Public Headers */, - 38ACE33F9CB21FA89F66D07C5118B704 /* Copy strings Public Headers */, - 9EAC5792C6FC417FBDD1DC2BC843FDCD /* Copy synchronization/internal Public Headers */, - 142E41C591C6D00D6819871D09C3CF2B /* Copy synchronization Public Headers */, - FB5F3BE66CA7B6C11FC90D8DE6E49CA0 /* Copy time/internal/cctz/include/cctz Public Headers */, - D39D7A4B57CA744AB01E1722655EE1C0 /* Copy time/internal/cctz/src Public Headers */, - 544BF7DC67DA89E18DC5867934FF2C24 /* Copy time/internal Public Headers */, - 7D152869EFA92F3B5C9D7C84659AD8DB /* Copy time Public Headers */, - 527D4C8FD587F2DE5C68D157745007AD /* Copy types/internal Public Headers */, - 00AB53D3437715DEF526E867602DDF33 /* Copy utility Public Headers */, - 37CAAF478BCA186A3E6DE096DA3D3706 /* Copy types Public Headers */, - A73B44A61EF6EE6CA930837BEB88D95A /* Sources */, - FEF3A3761C1A3B53EF273216EBB6A3A7 /* Frameworks */, - 3A8D3EE7B872C6E9B9A942121266439B /* Resources */, - 9963F57A0884723C7B796E93DB1F9FA7 /* Create Symlinks to Header Folders */, + A5877C43114C3E2D05327920CE78C66E /* Headers */, + FED67C2182700012CBF69161CAC993FD /* Copy algorithm Public Headers */, + 18BFA978615F7EB25900EA6D7AF92AF0 /* Copy base Public Headers */, + 88965810301E0DADF82A0B4FBC26008C /* Copy base/internal Public Headers */, + E1D2469914929899EEB83A5ACFB9A86A /* Copy container Public Headers */, + 9778B65A493CE325776323BAEC263C35 /* Copy container/internal Public Headers */, + 3466EB4EE05E66B66EC72B9BF349EA2A /* Copy debugging/internal Public Headers */, + DA54D0AA705756E9CBA7C46BD5403FA6 /* Copy debugging Public Headers */, + 191D39DEA2307452663E4A2D1FD51D2D /* Copy functional Public Headers */, + 13FA5BABCC48DDF0566930B6CEF20CE2 /* Copy hash Public Headers */, + BECB1FAF553B4C003508EC315BC292E0 /* Copy functional/internal Public Headers */, + F715CA4A9F2D9EB64B0A1F97E6111411 /* Copy memory Public Headers */, + 6BD09F1AA5655E0EF2B765AEB5650CC8 /* Copy meta Public Headers */, + F4F79988E4720A2A568CB9E4DB75C561 /* Copy hash/internal Public Headers */, + 7D949254950437598BC1F8165B63AA1F /* Copy numeric Public Headers */, + 83BA8B1AB8E0B797050A1F6D102C4D6E /* Copy numeric/internal Public Headers */, + C47003401CB3112E817A43DDCEB5FF40 /* Copy profiling/internal Public Headers */, + 783627268109E7F8FD5FECAC45D3F80B /* Copy random/internal Public Headers */, + 444DF4781F4DB0FFDE6355DAE68E6135 /* Copy random Public Headers */, + E97F8638D9FF8D4E26D1904487BE3BFA /* Copy status/internal Public Headers */, + 305EE96831E0EB8EEF07DF8588310C93 /* Copy status Public Headers */, + 9F411527DF7F73B4B9C580BCF2E3AF51 /* Copy strings/internal/str_format Public Headers */, + D90A4BEE748817C6719BCA6E952D304C /* Copy strings/internal Public Headers */, + 6E6A9FE80256864AFB9848ED3FF8D298 /* Copy strings Public Headers */, + 7BBFD5A270FFBAD05C7167D13CCC321E /* Copy synchronization/internal Public Headers */, + 59A957FC919E44583B0FE02727B3C25D /* Copy synchronization Public Headers */, + CF43949D2C757A379BE23BE7EA4BDF75 /* Copy time/internal/cctz/include/cctz Public Headers */, + 218ADDBDAE6E09999256735461D848B5 /* Copy time/internal/cctz/src Public Headers */, + 51A6EDDB2FF570440CDAE464F3025D09 /* Copy time/internal Public Headers */, + B10C0A31978033AB1AA94EA3E638BF8B /* Copy time Public Headers */, + E88CCB686D970EB3C0A098ABD8A65712 /* Copy types/internal Public Headers */, + 48EB6FD4BDCEB9FA7C69E207B9F687F0 /* Copy utility Public Headers */, + C5A6888E5838EE0F02A68649F3B76807 /* Copy types Public Headers */, + 5DD59E9C63E44EBD661238A069EBA022 /* Sources */, + A91BD323887C49A1F26781440155C794 /* Frameworks */, + F6DB88509104980849FDADD1BDDEA6E9 /* Resources */, + BB78904300A267ADE375C51C8FB90184 /* Create Symlinks to Header Folders */, ); buildRules = ( ); @@ -25194,33 +25421,34 @@ }; 7A900DA3F4D75939CD1871D9BBCE2CC3 /* Pods-Flash Chat iOS13 */ = { isa = PBXNativeTarget; - buildConfigurationList = E728EA96B9F51544D2853460462B8909 /* Build configuration list for PBXNativeTarget "Pods-Flash Chat iOS13" */; + buildConfigurationList = 019525E5D049F730B033F723C9080D98 /* Build configuration list for PBXNativeTarget "Pods-Flash Chat iOS13" */; buildPhases = ( - 9DFFC53F9F690BA043AFB7FE2551620D /* Headers */, - 4FA1150C7382824CFA7539A5C7CDA1A9 /* Sources */, - 5AF6B4CC799C80C55F06BDC394893E42 /* Frameworks */, - 97AE4E67C78500C88830A7512A184B30 /* Resources */, + 2DD96754491FD98050C6B2434055FAE5 /* Headers */, + 975DC96BEB029318CA7C98F5645833CF /* Sources */, + 327933B5D6855C9502D10D7AB4A1446C /* Frameworks */, + 2AA8828B5EA9456E327161E9B0FF2181 /* Resources */, ); buildRules = ( ); dependencies = ( - 94BF813BE5BB7F238F52A164A85A5C3D /* PBXTargetDependency */, - 2474F1F10318D9E8B60F1065B35EFE45 /* PBXTargetDependency */, - 42CDD5531C2027CC0B6385CB2ACB637B /* PBXTargetDependency */, - EAE78FEF721C7A1E5D1F7C229744AE24 /* PBXTargetDependency */, - 95DF445E11591EE31F5C8EE10D78EEFA /* PBXTargetDependency */, - C87A6F7DFF15945E5D9CCE1BF4B76ADA /* PBXTargetDependency */, - 83204C9B03D0B3822BE5314BCE528B63 /* PBXTargetDependency */, - DE86A53D875338D5DA634156D32CE3FA /* PBXTargetDependency */, - 64ADCFBEF5FAF18E094ED0DBA6FE8987 /* PBXTargetDependency */, - 3E62CFE4CA7774C1DDF8227708FE0ED3 /* PBXTargetDependency */, - D3810777FE2E2D0D3EBDB04BACE7B429 /* PBXTargetDependency */, - 25DD20BF1B803E9812362BEB6A7F6871 /* PBXTargetDependency */, - 69C08A786FF69BB6E81B66658A2E69CE /* PBXTargetDependency */, - 65611C899151186B81C5487922149CF0 /* PBXTargetDependency */, - AD76CC2D5F0B64C0F005057C02485551 /* PBXTargetDependency */, - A40FC42D6CE567880BF2BA975A6AFDD8 /* PBXTargetDependency */, - AA54D10955439E2EB2D2A800A4C544E1 /* PBXTargetDependency */, + 73D5716AD0DC0E52E7DA1DFE1A9AD7B8 /* PBXTargetDependency */, + 30E1462388091F44E4AB8CF83EB909FE /* PBXTargetDependency */, + A35E11CC2EEAA94612610F7504918FA9 /* PBXTargetDependency */, + 398D67A5E8959F68CDE780AACB5BA1C6 /* PBXTargetDependency */, + E99063ACDCA0DBA025A06EB2B4114B85 /* PBXTargetDependency */, + BF586C2ABB91BECA2BA9FDD218A3A3A4 /* PBXTargetDependency */, + 983A1901C4EA89EF38FBA5A64E509E3A /* PBXTargetDependency */, + 574339B5E84A3C4E55D29B71A7A3F8F6 /* PBXTargetDependency */, + 4D0210DEDD03E7BAEB7D0779A1F93A3C /* PBXTargetDependency */, + E49D76C49FF070CE900B5776DA68E471 /* PBXTargetDependency */, + EB1C944815F6A8B29C3401F97FC9FDA3 /* PBXTargetDependency */, + 4339D842B1B974FCEABBACC32920B212 /* PBXTargetDependency */, + 975CA789510B985415249DBFC6F1AEEC /* PBXTargetDependency */, + 83293565696BA567F8EBBEF01889614A /* PBXTargetDependency */, + E281BB1C82A5A5C1D1B4245DC84CA370 /* PBXTargetDependency */, + AFAD73B600DF1510E4104ECCB3C6632D /* PBXTargetDependency */, + F9F45DAEEFE39A1A790B8AEDB5BAF291 /* PBXTargetDependency */, + 798450998565D551314538FE1C28A917 /* PBXTargetDependency */, ); name = "Pods-Flash Chat iOS13"; productName = Pods_Flash_Chat_iOS13; @@ -25229,17 +25457,17 @@ }; 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = 0AD17B7A52ACC8DF5D6CD9A7A2F6CB01 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = C99129FA9AB4B46A039E6041E0137923 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - 3A1195DFB89B2FD34D7A9BC8B6DA8D63 /* Headers */, - 0186B38DF04D4AB811A20C7C195E7F31 /* Sources */, - 6DD0FB1AAB1B26A0651F83D7302C1FF2 /* Frameworks */, - 07E1A72EEB6C487E07DA8826F42CEEA2 /* Resources */, + 723A1E98D68A561116F8E23F464E58B2 /* Headers */, + C5049EF63D121DFB4AE5B53084191972 /* Sources */, + D7BAA9795775E4C834560D8C2C03DDAB /* Frameworks */, + 6B8926B9FC7A8D59F2D79D7BFD98018E /* Resources */, ); buildRules = ( ); dependencies = ( - C7654DDBFA70AD4FCFD713DB9623C635 /* PBXTargetDependency */, + F76DEAA976CBEC8BD520059AD7EE2E6C /* PBXTargetDependency */, ); name = GoogleUtilities; productName = GoogleUtilities; @@ -25248,12 +25476,12 @@ }; 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */ = { isa = PBXNativeTarget; - buildConfigurationList = 54667B4E116DCDC8402E5785E94800B4 /* Build configuration list for PBXNativeTarget "leveldb-library" */; + buildConfigurationList = 6F32FC410BD7B7B9A8FBCC4CE455CEAD /* Build configuration list for PBXNativeTarget "leveldb-library" */; buildPhases = ( - 2FD6FF8D93E0BB254ED3355436FDC56A /* Headers */, - 5B0BC7D4937DD5946C6D72253D530CE2 /* Sources */, - 64BC55640B722E8F12A01E99C94DEBB6 /* Frameworks */, - 8C80717248BE998219E9E75743901356 /* Resources */, + AEBD6C258362ABBA93CA725CD8F4D43D /* Headers */, + 4B4A15926E7EE971DE87B952F19B49BD /* Sources */, + A760E4E5281D7FE56B28B52FD6F81412 /* Frameworks */, + 4509E4FB900ABA4F888B311F2E1730A3 /* Resources */, ); buildRules = ( ); @@ -25261,17 +25489,35 @@ ); name = "leveldb-library"; productName = leveldb; - productReference = 0A9F46A999C47653013D3AD854352507 /* leveldb.framework */; + productReference = 0A9F46A999C47653013D3AD854352507 /* leveldb-library */; + productType = "com.apple.product-type.framework"; + }; + B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */ = { + isa = PBXNativeTarget; + buildConfigurationList = FF82530261D167263324BAFE589A2B5F /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */; + buildPhases = ( + AA748A4D5ECAAB1C57DD3CA63523EF01 /* Headers */, + C37A2B64578B4B2FABA572FFE3224CEB /* Sources */, + 97AF821E208FAFEF75DA2B6D8D555406 /* Frameworks */, + 5437E06D432E72B3AD0392638FE51B04 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = IQKeyboardManagerSwift; + productName = IQKeyboardManagerSwift; + productReference = A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */; productType = "com.apple.product-type.framework"; }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = 44A07E8DF2DA9FB9E1D9490F21D838A9 /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = 3EA49FB0B5451CC2D8C1E48280017DB4 /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - 1176540393DE6FA6E94BDA8CDC366F26 /* Headers */, - 236152F721EB69AF3669422E2D01D6A6 /* Sources */, - 5DD8548DA4EA743C0CDD838E63239B7B /* Frameworks */, - 4DB7AA791996A76124EB4805996E5291 /* Resources */, + 70091BDE14C28F460FE700BAB0AAC256 /* Headers */, + 6D8675DFD431BCB337011A154942780F /* Sources */, + C321D7FF032C7CC77CD86D6805D200E1 /* Frameworks */, + C0750D74CE7CFA0D3F8E34964557433F /* Resources */, ); buildRules = ( ); @@ -25284,12 +25530,12 @@ }; D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */ = { isa = PBXNativeTarget; - buildConfigurationList = 790D6FCF4372ED907573F357F17274AB /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */; + buildConfigurationList = 706DEA19F0765D8F710CD37299389215 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */; buildPhases = ( - D9751BAE80AAB78813D4CD54871AA6BF /* Headers */, - 2BDB654B4647E3CF39C444DFAACF5E20 /* Sources */, - CCF9967433B1ADB22D49F4CB723762A0 /* Frameworks */, - CA5AA4CA364DD1F01BB9825621F69179 /* Resources */, + A16E9BAA2A046D3653D04E2F76CB8CAF /* Headers */, + 653164FF19E5F7EA34A22C82FF97D613 /* Sources */, + D475334BFC95C0D18E92E0C92D442609 /* Frameworks */, + 563F66FB04B0268E3B819CD734FD9445 /* Resources */, ); buildRules = ( ); @@ -25302,21 +25548,21 @@ }; DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */ = { isa = PBXNativeTarget; - buildConfigurationList = B4077DEA539D4A582ABA73BDD4083C67 /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */; + buildConfigurationList = 7353BCC50F485952199154EEE96DF78B /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */; buildPhases = ( - 3A85321E011026CA935C761A88C90232 /* Headers */, - AAF102875E4F6809FDB222D5F05D3129 /* Sources */, - CF651A4B18A592B5D4D6A0E3FAB0BE43 /* Frameworks */, - 115B3E210E3D3ED9B6360A8FE200677D /* Resources */, + A9E20281F19116A0D99972C99DBCC01E /* Headers */, + 0B0394DAE06A44366CD2A27748C55260 /* Sources */, + 639A6B95F904CE830F913D1F7AE3443E /* Frameworks */, + 681D884E7736A5E21B66A5F5A6630B7C /* Resources */, ); buildRules = ( ); dependencies = ( - AC5AEA922CE4506BB086C10D26F5F742 /* PBXTargetDependency */, - F414E42124BE9E0CA6F7F5031BFAF8EB /* PBXTargetDependency */, - B8A808ECD96D9A50B736083B042C007E /* PBXTargetDependency */, - 16E1763082B4C30EDB3959600DD682AD /* PBXTargetDependency */, - 5E43E07676049BC75F889F6FEB433C91 /* PBXTargetDependency */, + AFC1E624D6758E2214517AAF458D181E /* PBXTargetDependency */, + E619C0B8C7C5B3C009E800E15C6C9BC8 /* PBXTargetDependency */, + 5D4DF2209ED8D751692ED1EB458BC05E /* PBXTargetDependency */, + 924FE030EB3CDCF8B656769A428D4332 /* PBXTargetDependency */, + C81B7F825DBC05DB757E113AABD3FBC2 /* PBXTargetDependency */, ); name = FirebaseFirestore; productName = FirebaseFirestore; @@ -25341,7 +25587,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = C1DCEB57E23EC937B8FB85F8119B7C6F /* Products */; + productRefGroup = 0E519F919982C8F2E004D3A741D3BE0C /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -25359,6 +25605,7 @@ 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */, 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */, D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */, + B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */, 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */, 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */, D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */, @@ -25369,25 +25616,24 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 07E1A72EEB6C487E07DA8826F42CEEA2 /* Resources */ = { + 022BCF3F1E0F8A405C193A5C86932508 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 115B3E210E3D3ED9B6360A8FE200677D /* Resources */ = { + 13B2FF1C249E4CA59C749F657CE20D15 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 16957E663A3ADC53C7EE9503C0BB195C /* Resources */ = { + 2AA8828B5EA9456E327161E9B0FF2181 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 50E1C4E2CF18FCEB6D7CC14ECC8A714D /* roots.pem in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25398,14 +25644,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3A8D3EE7B872C6E9B9A942121266439B /* Resources */ = { + 2EF177EDD614D941C86D08B4E250F4D1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 03AE32930D2950E044CB59A98DA1C07A /* roots.pem in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 418E56B98498C811675596690144D7EC /* Resources */ = { + 4509E4FB900ABA4F888B311F2E1730A3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -25419,85 +25666,93 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4DB7AA791996A76124EB4805996E5291 /* Resources */ = { + 5437E06D432E72B3AD0392638FE51B04 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 7F8FBA58D63D768980FBCCBD5E02EE15 /* IQKeyboardManager.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 66B747CF4EDE9B638373A001F1FE655E /* Resources */ = { + 563F66FB04B0268E3B819CD734FD9445 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 66C8DA78F6EA5309EB75307CA4529217 /* Resources */ = { + 65B75A6839E4095EB08B63A3DF649933 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7198BC81B31716880097570870DF2834 /* Resources */ = { + 681D884E7736A5E21B66A5F5A6630B7C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 861F25D7ED84625DC1560F18BBEA0F48 /* gRPC-C++-gRPCCertificates-Cpp in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 84A72A200C69980E5EBD1C2537106D4A /* Resources */ = { + 6B8926B9FC7A8D59F2D79D7BFD98018E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 714359832CC43507B278DB47E4DC68A6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 87259815CB09226F31D9832CB5ADB22B /* Resources */ = { + 84A72A200C69980E5EBD1C2537106D4A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8C80717248BE998219E9E75743901356 /* Resources */ = { + A2D6A988BD4CC74AE087096E99FFD1A4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 955B6C76B47A201BC6AB8B1A73B9AB39 /* Resources */ = { + C0750D74CE7CFA0D3F8E34964557433F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 97AE4E67C78500C88830A7512A184B30 /* Resources */ = { + D54B5C17BACEE08B6A591BA7ED4BAE57 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A1128C5CFE8630D367CCC2E591508437 /* Resources */ = { + D874E24E8293E9883802D01258453060 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CA5AA4CA364DD1F01BB9825621F69179 /* Resources */ = { + F5667FE096F76842BADE903D2088558F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 7B45CBD477376055ED3688B8970EC095 /* gRPC-C++-gRPCCertificates-Cpp in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EC1ECE14E5EB33E314C1D831853473FB /* Resources */ = { + F6DB88509104980849FDADD1BDDEA6E9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -25507,7 +25762,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 396CA19FCAE0576EDD22CF648793A724 /* Create Symlinks to Header Folders */ = { + 22D9E9D55A10DE8DA26D63D7791660C0 /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -25525,7 +25780,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"; }; - 803A2ADFA3D64086E11CFEFC4C6CFBD9 /* Create Symlinks to Header Folders */ = { + 624543949C0B350A72BAF3907FFB149A /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -25543,7 +25798,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"; }; - 9963F57A0884723C7B796E93DB1F9FA7 /* Create Symlinks to Header Folders */ = { + 63683A19555DFF25B5BD1B3682485B2B /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -25561,7 +25816,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"; }; - A6DA2D797B25F112CE9C9AC6AA007298 /* Create Symlinks to Header Folders */ = { + 803A2ADFA3D64086E11CFEFC4C6CFBD9 /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -25579,7 +25834,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"; }; - CC2EDBB86416C8EF889EEAC49BEB6C81 /* Create Symlinks to Header Folders */ = { + BB78904300A267ADE375C51C8FB90184 /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -25600,31 +25855,6 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 0186B38DF04D4AB811A20C7C195E7F31 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - B3DF596D214211BE5D75E38599805AF7 /* GoogleUtilities-dummy.m in Sources */, - 427F238BAC01C4DF6F0021360BEDCE77 /* GULAppDelegateSwizzler.m in Sources */, - B22348E3A2B380519FE4B3EBE07863E4 /* GULAppEnvironmentUtil.m in Sources */, - 04782FC1F2A1B76A73E6FE4C39656748 /* GULHeartbeatDateStorage.m in Sources */, - 4D2585158831E9B4A88AE84AC10FFF92 /* GULHeartbeatDateStorageUserDefaults.m in Sources */, - 63013B1B080E8B502E49D9BE7D226D3B /* GULKeychainStorage.m in Sources */, - EBA783343BECE7E16901E0AB615EB4E3 /* GULKeychainUtils.m in Sources */, - 71984AA35294067538FD2A96442E5356 /* GULLogger.m in Sources */, - 13D29E4B31E564C02C7926F5F442558D /* GULMutableDictionary.m in Sources */, - 6842F0BEAF5A99A3B50FC6BC9B2C3362 /* GULNetwork.m in Sources */, - C09BFA3D0B4ABFFE20D2021C13A3CAEE /* GULNetworkConstants.m in Sources */, - 6FC111F07C8DC76BCC95E1B8EFA90B8C /* GULNetworkURLSession.m in Sources */, - 7EC5305EAAA6E6A5BF0827D968F988CD /* GULNSData+zlib.m in Sources */, - 1715AA0BE1E3D826211688E96121607A /* GULReachabilityChecker.m in Sources */, - D9A2EFFF371DCA78DEB7D2C4B82200A8 /* GULSceneDelegateSwizzler.m in Sources */, - 498F3745F1ABB9C84E9D1C7800161CB5 /* GULSecureCoding.m in Sources */, - 99BB221F8E858B015FC76C82E75370EE /* GULURLSessionDataResponse.m in Sources */, - 6FE29D3BA40FBE26752F4E3CB7F8E4F8 /* NSURLSession+GULPromises.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 049ADE799CE0CFD272627217E465AB47 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25973,30 +26203,249 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 090BBBE7717A49A7691196B6623129C4 /* Sources */ = { + 0B0394DAE06A44366CD2A27748C55260 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9ED612A27DEBE6DC505CF81752FBBE1C /* annotations.nanopb.cc in Sources */, + DFDB52EAE42B771BBE2788C05C757EAF /* any.nanopb.cc in Sources */, + 25289F7909ADAD3CA5550D593733530A /* array_contains_any_filter.cc in Sources */, + C2DD5517716AF5E332D4344A13986B3F /* array_contains_filter.cc in Sources */, + 6DFD123FD2CF512993B8EC06E1355164 /* async_queue.cc in Sources */, + 4B4694B3777973CE47DA3E72607595B7 /* auth_token.cc in Sources */, + 50EFA32520FCD9248111A99ED47CBFF3 /* autoid.cc in Sources */, + 46E5BCD88B82ED814B7B89FF29A3954E /* background_queue.cc in Sources */, + 4E5C3FF88B763BE629965E7366C313A9 /* bits.cc in Sources */, + 8D3BAA76CA729CB85F8E90E9B4A98358 /* bound.cc in Sources */, + C6A70C7710D61FF9EB1EDEF541D48B27 /* bundle.nanopb.cc in Sources */, + 87DECB32A2A8E89353C9CA5D19FA45FC /* bundle_loader.cc in Sources */, + B680084919BBDC790582497342CE65CB /* bundle_reader.cc in Sources */, + CC4C85C6D01BBF0AC99C9B3B9CCF67EF /* bundle_serializer.cc in Sources */, + 9E636BD5218F49A06D49C79E7F7512B5 /* byte_stream_apple.mm in Sources */, + 053EBF5786FA27117838852571052DE3 /* byte_stream_cpp.cc in Sources */, + F38C34165BF4707549D33C8A9B18C38E /* byte_string.cc in Sources */, + A2E8415536E8D5AE916EB1A009CBF8A6 /* collection_reference.cc in Sources */, + 34769F23E09FBC24D79BF462F14F4873 /* common.nanopb.cc in Sources */, + D0AF6434E782F7D29E9C36D8392DCBA0 /* comparison.cc in Sources */, + A06424C2B9C310BF4B0B3036DB7F158E /* connectivity_monitor.cc in Sources */, + C436EEB9634687A3F6E56DED1F272A0C /* connectivity_monitor_apple.mm in Sources */, + D503E8409AF05A0017C21C02AA7D1F42 /* converters.mm in Sources */, + D892B240664940AAB7EF070FB4E9373E /* database_id.cc in Sources */, + 52C7F3BE8ED5C43E41F1BE970A697454 /* database_info.cc in Sources */, + 2B195FBC05A48395F79E7E2938300BBC /* datastore.cc in Sources */, + 70B5B4A2E008CF4D8550667BE3427BEA /* delete_mutation.cc in Sources */, + 2D69C7F058C841299A4D1D90299ED145 /* direction.cc in Sources */, + EEB8B8A5C70304ADA50AE2CEDB7E079E /* document.cc in Sources */, + E2D1F5A150261FB14ECB1B55DD98262D /* document.nanopb.cc in Sources */, + E7C6D111A8AAC7511D9DB3F545CA13D6 /* document_change.cc in Sources */, + 35C245660698EE2A5DCF25413ECD44AF /* document_key.cc in Sources */, + 0F83734565165F6C40DC279C14F07DA3 /* document_key_reference.cc in Sources */, + A9D9115774E885BE54E7A6EB52554823 /* document_overlay_cache.cc in Sources */, + 320622CEB16E38F3D7740C6C578415C0 /* document_reference.cc in Sources */, + 99C54E183594F58C54D0D6E47EA867A2 /* document_set.cc in Sources */, + 1CC493AE20E3319A5F656075C3920654 /* document_snapshot.cc in Sources */, + 268D402FC9036E527DEC441089EE9635 /* empty.nanopb.cc in Sources */, + DC1B7D1BABBAFFBEE6E28275992EBAB3 /* error_apple.mm in Sources */, + 755429142CB4C935C9CDA16F3A335D33 /* event_manager.cc in Sources */, + 9FA10D55AB3A23DE6CC3256F8DFA0130 /* exception.cc in Sources */, + C3DB8CB743A94718F00C30D0E59B4873 /* exception_apple.mm in Sources */, + AB7DD665AF3CE7D49761AB6EC4F4002E /* executor_libdispatch.mm in Sources */, + BB29337B0ABC427A42346371A90B7B05 /* executor_std.cc in Sources */, + 3804C60EC7B98AAF697F77BBCBE75BC0 /* exponential_backoff.cc in Sources */, + 4B6CAD4454B968B4C96741991D84DB82 /* field_filter.cc in Sources */, + 00C1D72FD8FAA119B0C144C45635095F /* field_index.cc in Sources */, + CFF46C2379B9C751AFDA2CBE04443733 /* field_mask.cc in Sources */, + 2BF89E88104C67FF52C470898B5AD75D /* field_path.cc in Sources */, + 18738826058E4040C3BE231610747D18 /* field_transform.cc in Sources */, + BCADDB8145E79A60C9FFFC0A238927F9 /* filesystem_apple.mm in Sources */, + 49B3384C9E50A11D1BFFF202AB7BD283 /* filesystem_common.cc in Sources */, + 0E4F8656A7F5999F752AE3E7C3D43A0F /* filesystem_posix.cc in Sources */, + 36903EE8FAE663F479D04FA9280C83F5 /* filter.cc in Sources */, + 0442C8B34C28C756CAABE890C76FC7B1 /* FIRCollectionReference.mm in Sources */, + FA915DE0317BFD9AF9A479DC9860E716 /* FIRDocumentChange.mm in Sources */, + C8AFAAB3CA2EE6E9B5BD7AE5DCDF1FF9 /* FIRDocumentReference.mm in Sources */, + 773C13B79FD9F0664C10EE34BA4676D5 /* FIRDocumentSnapshot.mm in Sources */, + EFFD1F9ADBCBFFD4463AD85A12DA1F4D /* firebase_app_check_credentials_provider_apple.mm in Sources */, + 0DA6867411A6AC3B62A59452F2A43F05 /* firebase_auth_credentials_provider_apple.mm in Sources */, + 4FD6AB590A0CD572781F418DBCAF300D /* firebase_metadata_provider.cc in Sources */, + D1B995D18CCBF028330C5E5A4B15523F /* firebase_metadata_provider_apple.mm in Sources */, + 4370A31AF9ADFC4786789AA50CABAFDD /* firebase_metadata_provider_noop.cc in Sources */, + 221894C3147B1EC30CA3E955F49BB4F4 /* FirebaseFirestore-dummy.m in Sources */, + 0F2A427A20B93B1FBCEF7EC72D0759F8 /* firestore.cc in Sources */, + B503BAA58C573B555784F45C7F09E65E /* firestore.nanopb.cc in Sources */, + FDD043A7F9BB503B71854BCE384A3DC3 /* firestore_client.cc in Sources */, + E7B6B87D213CD0AD2395E5064D036B5A /* firestore_index_value_writer.cc in Sources */, + 313E0BD6C6B138E65A566255F4D25E4D /* firestore_version.cc in Sources */, + 1F4FE7452FF063D77DE82519A6B5B248 /* FIRFieldPath.mm in Sources */, + 20E7FFE23296C23172E02D129A79E67A /* FIRFieldValue.mm in Sources */, + F12A480DB3A919037D3356482900434A /* FIRFilter.mm in Sources */, + ADDE78190B35CB3C25E6CCF29DBE180C /* FIRFirestore.mm in Sources */, + 939D33460CB97066D64D370D2E5723EB /* FIRFirestoreSettings.mm in Sources */, + AD2EFC889CB7921794E9ED01EE0F835D /* FIRFirestoreSource.mm in Sources */, + C05569F204DCD9F5D2263DA2341DF9CB /* FIRFirestoreVersion.mm in Sources */, + 69B19F2A0CA29F8B2B8A2DEDF45B06B2 /* FIRGeoPoint.mm in Sources */, + 28A39BF8D6575F1F324A99F58279C18C /* FIRListenerRegistration.mm in Sources */, + 83F08DEA038324BC520133C3368FE5C7 /* FIRLoadBundleTask.mm in Sources */, + CF1AE9B55D76E7713264CC09AA923AFB /* FIRQuery.mm in Sources */, + 9B76DFD832DCB9B0802B5A017853CEC3 /* FIRQuerySnapshot.mm in Sources */, + 6292E200BBA92CC98E6FDA5ED894B339 /* FIRSnapshotMetadata.mm in Sources */, + ACBDD9797DF6D558A924349A2CA88B1B /* FIRTimestamp.m in Sources */, + FF9137AB8350941657F3471A3A685757 /* FIRTransaction.mm in Sources */, + 456A14358C03808016191B314F839CCB /* FIRTransactionOptions.mm in Sources */, + 867759BBE9A1024B298B65F060184CF1 /* FIRWriteBatch.mm in Sources */, + B6CC2B47C3A65E424A94F01EEA8A5C22 /* FSTFirestoreComponent.mm in Sources */, + FE4938F7A873A7AD8E35F0CEBFF7D1C4 /* FSTUserDataReader.mm in Sources */, + 73FE9465B5499144E0418CF470289391 /* FSTUserDataWriter.mm in Sources */, + F0D98B96D92FC53B59B4481CEE648124 /* geo_point.cc in Sources */, + 92F71D58D8E0B8ED55F8D0D9CB7017B8 /* grpc_completion.cc in Sources */, + 960EDFD23857C9EBA3C66157CC119334 /* grpc_connection.cc in Sources */, + AB1B1423A92121926B960459DC40BB92 /* grpc_nanopb.cc in Sources */, + AC377274F8A18E74D329A0BC1323EF2F /* grpc_root_certificate_finder_generated.cc in Sources */, + A0C6872A33398725E7C9C314CC80411D /* grpc_root_certificates_generated.cc in Sources */, + D0A1186D70F7C0656BEF9CAE4961B3E3 /* grpc_stream.cc in Sources */, + 2CA3B21B6C22FEBBB953392CE668A94B /* grpc_streaming_reader.cc in Sources */, + E954D5568063970088A4E690226F1C67 /* grpc_unary_call.cc in Sources */, + BFDDCE7F2E4801FA9781971227F57774 /* grpc_util.cc in Sources */, + C4A2A9AB74689635B526EB0AEF59E77F /* hard_assert.cc in Sources */, + 5EDFF6E9900E3FBAB21E8688C30EE3E4 /* http.nanopb.cc in Sources */, + 81E3CB6B258402CEE5544FCE3F56DCF0 /* in_filter.cc in Sources */, + 222B8D4093322C2C8B0E6A1E9181FF89 /* index.nanopb.cc in Sources */, + B2E801B85BF4195FB908D71B64877E36 /* index_entry.cc in Sources */, + 8E3B1FF795DA2D3E04564CD952116B4E /* key_field_filter.cc in Sources */, + 703F1E5340E6DB57C482F1BA9E0C7AFF /* key_field_in_filter.cc in Sources */, + 90CB59DE0D374C45DB41A7B45A260E3F /* key_field_not_in_filter.cc in Sources */, + BBBBA06D3BF32449DB9C78DB7E407EAD /* latlng.nanopb.cc in Sources */, + D49CC1D5358D1C6AFB8B11ADAAC94225 /* leveldb_bundle_cache.cc in Sources */, + C4CD160E494E5FEEF15F93728D3A2505 /* leveldb_document_overlay_cache.cc in Sources */, + 4A03FCC578F7499197EB0E7B2A141CA8 /* leveldb_index_manager.cc in Sources */, + E9E254EDAB4E1C9FA10B0A2CD65167DD /* leveldb_key.cc in Sources */, + 18BF10EB5D1274008DBB2BC0EDF3F3BF /* leveldb_lru_reference_delegate.cc in Sources */, + 96A827E29B9DC7058CF273D80540BBEC /* leveldb_migrations.cc in Sources */, + FCD9F036AA21F51A612896529F08A69A /* leveldb_mutation_queue.cc in Sources */, + 1911FA8FBF019E5758E1F81D6C826E22 /* leveldb_opener.cc in Sources */, + 3AE85C2D0B1E8B7E2984AAD43204EB6B /* leveldb_overlay_migration_manager.cc in Sources */, + 913C86280A755EF2C5466502B641A8EA /* leveldb_persistence.cc in Sources */, + 2F06A7253691A03641DA51035C4A3447 /* leveldb_remote_document_cache.cc in Sources */, + 31338FE96AC2F1123C2D01BA52530F04 /* leveldb_target_cache.cc in Sources */, + 1280952E4595FC697EDAA414481ED65C /* leveldb_transaction.cc in Sources */, + AA3062C924A0029E2FE33C6F465C6A1F /* leveldb_util.cc in Sources */, + B8B245B44D067E2F4D54F80468420D87 /* load_bundle_task.cc in Sources */, + D0A2625965AF59C92EC14A586EC43E20 /* local_documents_view.cc in Sources */, + 63A074C712D1B7731ECFF02E9A7D0279 /* local_serializer.cc in Sources */, + EDFEE318A5579AE04ABBBFB9F4ABC511 /* local_store.cc in Sources */, + 0FD68632DEB25D1E0032DA0706025B92 /* local_view_changes.cc in Sources */, + CBB6B3912C671B744B68141900C24800 /* log_apple.mm in Sources */, + 0F99EEA74F38BEB8FBED71DFA7EC81B1 /* lru_garbage_collector.cc in Sources */, + 05DE3E2602DA922A2CDB4D52DECD6D28 /* maybe_document.nanopb.cc in Sources */, + 49B356785A7C46B532358761A27F11F8 /* memory_bundle_cache.cc in Sources */, + 9D9FD91FF096B6BFE128C19D631D7E14 /* memory_document_overlay_cache.cc in Sources */, + C974348BB39C20233098BE04974817F4 /* memory_eager_reference_delegate.cc in Sources */, + F214E500AC603837F251F699CECBE3C7 /* memory_index_manager.cc in Sources */, + 7625B552A1EF514E6E9B769F1642D19D /* memory_lru_reference_delegate.cc in Sources */, + EF67343668E82F98CE0FAE2B7377AB52 /* memory_mutation_queue.cc in Sources */, + 7E4A83616927F8F741337E0B4492C63D /* memory_persistence.cc in Sources */, + A5CC85EF3A64F61C6490BFC0659D6F34 /* memory_remote_document_cache.cc in Sources */, + 1A36CA23ECE2D4FAEB755DFB68A356BA /* memory_target_cache.cc in Sources */, + 96F55906D1A46701858D7ED2EF45875F /* message.cc in Sources */, + E81218B14C39EC676F47B74695C7FD9A /* mutable_document.cc in Sources */, + D16D033C6CD587F6ED5D54EC00DF3604 /* mutation.cc in Sources */, + ADCDF92117B224B0D84C8506CA26BFD2 /* mutation.nanopb.cc in Sources */, + 7D5AF8978E90B02A8ECF77E53C24D3CB /* mutation_batch.cc in Sources */, + 61E75B18E766C1FC399B67D51C794D75 /* mutation_batch_result.cc in Sources */, + E48A61E2449A5A7C53DDC59C4C245437 /* nanopb_util.cc in Sources */, + BF1121644D936DCFE62D621B874B4A52 /* not_in_filter.cc in Sources */, + A01209290F9B9387D2E6806C9077C98A /* object_value.cc in Sources */, + FA7C7B3BD1DEF91EE4D8C762E706D6A2 /* online_state_tracker.cc in Sources */, + E2DEE4EC26667C6E19F77B078519DB90 /* order_by.cc in Sources */, + 80FEF9F58861563092979D0033F06CEA /* ordered_code.cc in Sources */, + 0E66A61B7B069FF9525B601B6D172103 /* overlay.cc in Sources */, + DAD3566E89D308769E43EEB640E6C993 /* patch_mutation.cc in Sources */, + BA4E7BDF92CAEE2D956F23DD933BB0F9 /* path.cc in Sources */, + E0FE85AABD920739B5004849E52160B0 /* precondition.cc in Sources */, + BDB210237DC717609C8F3E03E9C9035F /* pretty_printing.cc in Sources */, + 84FD90C16AD639C11823D32E23F6C09D /* proto_sizer.cc in Sources */, + D61B4348321DAD9E3A73F8A130C1D0BB /* query.cc in Sources */, + 59F4526ADC7267E96DAB1A107BB112CC /* query.nanopb.cc in Sources */, + D4858213BA1C2F3F3F9020CC12812E4F /* query_core.cc in Sources */, + 6C51432A4AA7454F0F16F0550DCC9CA1 /* query_engine.cc in Sources */, + 5051FFF8B28C29A5EEE7F245C3B203D7 /* query_listener.cc in Sources */, + DE8A9DB50C2B7263FD6613A0F427952C /* query_listener_registration.cc in Sources */, + FC8D49C5A39FB99B982891B8714B9554 /* query_snapshot.cc in Sources */, + 134A7A8D9158E8CD727FE26433DCFC91 /* reader.cc in Sources */, + D4C5C0A32C5F8504D2748D57197E8644 /* reference_set.cc in Sources */, + 4ED93E163A3ED416F25B05C72A17BE09 /* remote_event.cc in Sources */, + EA34035CF555BC45C7D27B67CFA860F5 /* remote_objc_bridge.cc in Sources */, + 1CC5CC4FA97999AAF9278C8DBA0495F5 /* remote_store.cc in Sources */, + 87D2D944A8C6D2A9BE8886B222BD3B1B /* resource.nanopb.cc in Sources */, + 24868D77B576A307438E751EF9CE36A6 /* resource_path.cc in Sources */, + 3AA9D95C6FDD1D6535A3B3549E354527 /* schedule.cc in Sources */, + CFB5954E3EA046DED9C89B23C89B5ED3 /* secure_random_arc4random.cc in Sources */, + DBE0C8408F0CBC002C0CCA091D3F9F9C /* serializer.cc in Sources */, + 970350AAA7073FC60BD0769B07E4491C /* server_timestamp_util.cc in Sources */, + 6953DEDE8F22FEB92A6023946A746055 /* set_mutation.cc in Sources */, + C992042BDE19E734A27F3DC875EE016A /* settings.cc in Sources */, + 88E580A26F2332914DD10049CBD83ECE /* snapshot_metadata.cc in Sources */, + 11FE4676B810D421BB263E7DC6020973 /* snapshot_version.cc in Sources */, + A505BE9F210F2C79F202E08B6BC7BBE9 /* snapshots_in_sync_listener_registration.cc in Sources */, + 2D14CB25E23446CC35E607362462F0AD /* sorted_container.cc in Sources */, + 984D32453E8589168D4760F5C5489131 /* status.cc in Sources */, + 6401C9B10D9101B8E5D14E468304478F /* status.nanopb.cc in Sources */, + 3BECEC7A43EAAAC2D94D08861CF9025D /* status_apple.mm in Sources */, + 2C9CCD415514C1AF77223C3142ABCBDC /* status_errno.cc in Sources */, + 2463D125841EF34057615BF4CCEFF333 /* status_win.cc in Sources */, + A58E439281D21857D2D86901B0776CE8 /* statusor.cc in Sources */, + E2129FE9AEFB230BE8D722D00AC65594 /* stream.cc in Sources */, + 52DBA26704B48BED527B35FA9A22E28D /* strerror.cc in Sources */, + 1636BD86E6D2880D230D7C7E7A5F6FFE /* string_apple.cc in Sources */, + 21E4D39B34330454ED864CCE74A54976 /* string_format.cc in Sources */, + FCDFF725CD40498F4F514B459B60AF9E /* string_util.cc in Sources */, + D583A45440835205CB47D9C94A6CB0FC /* string_win.cc in Sources */, + 91ACFD4A2F4EDD9D1FB3A8FB635C4D3C /* struct.nanopb.cc in Sources */, + 6DCA38A1E08F85F58B3BD0243EA962D5 /* sync_engine.cc in Sources */, + 40B9B5FAEE4EBF8EEC5B5F6BE68A35A4 /* target.cc in Sources */, + 34C47DD6428A6D4A8843FCB174F88180 /* target.nanopb.cc in Sources */, + 39912D488DD4433E7DEA8AD5544A8558 /* target_data.cc in Sources */, + F1FE1FA92F4117C61359D1D30F56F31C /* target_id_generator.cc in Sources */, + 213C9FED47A10574431B8857B9117CF3 /* target_index_matcher.cc in Sources */, + 0D5E8F5F7B23569927CC8A5E83A6CB28 /* task.cc in Sources */, + DCE69F169CF7F4CFD38819A874DD5B36 /* timestamp.cc in Sources */, + E9D45A38F108E1E7537958C8B72A6EA9 /* timestamp.nanopb.cc in Sources */, + D07D2E7ED363F8AD40C29FD471DA9397 /* timestamp_internal.cc in Sources */, + C553C79501A7E4560EAAA86B05CD0AD6 /* transaction.cc in Sources */, + C8C14A283C449B9A9E7CF028C6AADD1F /* transaction_runner.cc in Sources */, + 5813B9BB32CBC4C6BC1BADC2A437050E /* transform_operation.cc in Sources */, + 9FA912ED836BCD14B1F492FBF2E90637 /* user.cc in Sources */, + 16C29B34D71FEA932D54BB6472A93660 /* user_data.cc in Sources */, + 03A6AEE0ED42A761241D79F3C2063D4C /* value_util.cc in Sources */, + 323B8137408F07A1774925BD17284B52 /* verify_mutation.cc in Sources */, + BCFD18DE1D8B706AB5360628B31D5059 /* view.cc in Sources */, + B251C1AF6A6D3209B92461A806B5E5B3 /* view_snapshot.cc in Sources */, + C22A28627ED03077B8C186E76718CDE1 /* watch_change.cc in Sources */, + 43D88F26635771231E89FD3E1F52F244 /* watch_stream.cc in Sources */, + 8BB5BB22C06AA4D79BBFA55A8A13CCCA /* wrappers.nanopb.cc in Sources */, + 0159FF8D938566731AD86DD077FBC540 /* write.nanopb.cc in Sources */, + 20723F538EE7544208F845AE7BE7F1C9 /* write_batch.cc in Sources */, + A7BCF64AF942AA974CECA88E53C46210 /* write_stream.cc in Sources */, + 242EC23BCAA5BF41966BB8959A73279C /* writer.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0C5CCA48769C5AD0996B3B53AC5429AD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0F0D3A1E8281B6290FE494491A5046D3 /* FBLPromise.m in Sources */, - FAC9F0CFE68CAC5C2E2B55D239F5875A /* FBLPromise+All.m in Sources */, - 9E07C4FFE2BC632025D49D03DA862E7B /* FBLPromise+Always.m in Sources */, - DF0A79B70E7FC4CC8F7F3188E66459C2 /* FBLPromise+Any.m in Sources */, - FC2712D35BB235A480EB420ACE592EFC /* FBLPromise+Async.m in Sources */, - 5BE22309E56F73D26FE4395B2B621D31 /* FBLPromise+Await.m in Sources */, - E07ECD1D399DD08A39C26C3E72BBD09D /* FBLPromise+Catch.m in Sources */, - B39B9EFC749C3F6F310772BB3C32F938 /* FBLPromise+Delay.m in Sources */, - 5319841A436F39AE73E7BB2C58FB3A4B /* FBLPromise+Do.m in Sources */, - 4B35EAA233286312AB0E91F858A661D8 /* FBLPromise+Race.m in Sources */, - E8323F6E514E074983251D7B75B6FD47 /* FBLPromise+Recover.m in Sources */, - 7B8336D9C2248A0C2F11771BF9BC042B /* FBLPromise+Reduce.m in Sources */, - 16367AF88FFBAE953F8E3AD1AA745B77 /* FBLPromise+Retry.m in Sources */, - 3320A626E446B7A9FFB81BA85A9E6430 /* FBLPromise+Testing.m in Sources */, - 85CEE3FDF79B91B01C1BED0B7240D517 /* FBLPromise+Then.m in Sources */, - 0C2AE0DFEF8361DAD80FE8ADC307496A /* FBLPromise+Timeout.m in Sources */, - 65C568A69FF576CDAFD4BDE3CD34A8EE /* FBLPromise+Validate.m in Sources */, - 3B1FC660B94A1749C45294A348EFCABA /* FBLPromise+Wrap.m in Sources */, - C3DD58ED0AEAD1DB00B7A5E45DB58A2A /* FBLPromiseError.m in Sources */, - 4431A8B4472FA4E61B6591D90AF254E8 /* PromisesObjC-dummy.m in Sources */, + D675F9AE6BD15542A6809FBDD5D4EECD /* _ObjC_HeartbeatController.swift in Sources */, + 067CC7E29D712DEE171B594C5F835C63 /* _ObjC_HeartbeatsPayload.swift in Sources */, + 2885C91D717105756B3502718612FC1A /* FirebaseCoreInternal-dummy.m in Sources */, + 7E58AC59729C3E73E80D0F0495282E5D /* Heartbeat.swift in Sources */, + 039D4A80A704CA758FF7DD28228D032F /* HeartbeatController.swift in Sources */, + AE33520D399F091A928135A99D1958C2 /* HeartbeatsBundle.swift in Sources */, + AC74E392C0CCDD545A56B33B2D9913D4 /* HeartbeatsPayload.swift in Sources */, + 4F1CAE02FB157E53B873138E21F6495E /* HeartbeatStorage.swift in Sources */, + B867C98577C61F0F57B9848D606F1393 /* RingBuffer.swift in Sources */, + B0A11C0B01DFA1A7AB99CC758FE3288B /* Storage.swift in Sources */, + 5B84A20B79D4B2CB08CA50CB8E16F99F /* StorageFactory.swift in Sources */, + B26989C0020550C9BBF929EEA396EF69 /* WeakContainer.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -26009,1183 +26458,1111 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1C9717CD038B78627ADB071F74216CB8 /* Sources */ = { + 356F8F02ECC927A42F6B57031B11BEC2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 236152F721EB69AF3669422E2D01D6A6 /* Sources */ = { + E4C276A00558302100F662295BBFE0B1 /* accesslog.upb.c in Sources */, + D934D433B71288B34FE234F2FC35F5D6 /* accesslog.upbdefs.c in Sources */, + 3AD92BED30645E40BDE976DB5B5D78C5 /* activity.cc in Sources */, + 366168C633AB35875897FFD91A638F03 /* address.upb.c in Sources */, + CF31A9ADDC14CF6732228E5A7E9AAD51 /* address.upbdefs.c in Sources */, + 1D8E70C3BBFAD029C38B0B53A9E815EA /* address_filtering.cc in Sources */, + 56462E863A2C8D57000F4C0256BB13C2 /* ads.upb.c in Sources */, + 2B720F0D48952740A11D51C578BD0A28 /* ads.upbdefs.c in Sources */, + 8AE95C448E42FA2BA08E1A27A56E08C5 /* aes_gcm.cc in Sources */, + 4EBEE28693A8E179F9460FA128117738 /* alloc.cc in Sources */, + EC14EF7CC64FE72CD1D8167490CE47C5 /* alpn.cc in Sources */, + B1E939F4BD801D3E671EC5B1E1A501DB /* alts_counter.cc in Sources */, + BA6F8A466F29B2FD2D31B2BDBFC92F12 /* alts_credentials.cc in Sources */, + 0299F29BEDED41F193058F3AA367789D /* alts_crypter.cc in Sources */, + D091F26E5EBE563BE48D79C45E2FA224 /* alts_frame_protector.cc in Sources */, + A3A3D74CF1C2683B6B4D1004499C15FE /* alts_grpc_integrity_only_record_protocol.cc in Sources */, + 9DB3F24840DE648A8C1C65B1B9FAD1E8 /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */, + 2655860ED72DC482CEF19B1F3B04CFC8 /* alts_grpc_record_protocol_common.cc in Sources */, + 877B1741F618499A26950E61CFF91DC9 /* alts_handshaker_client.cc in Sources */, + 4ABD8CCDD7B9854863D49358CE2B27A7 /* alts_iovec_record_protocol.cc in Sources */, + E94B3DAB205CDFFCB8E7E84B8D7F4671 /* alts_record_protocol_crypter_common.cc in Sources */, + 51FDB0F5091FECE6B72B7E9886CC99EE /* alts_seal_privacy_integrity_crypter.cc in Sources */, + 6AE28EF28E61B4E98ED7315F6F345F70 /* alts_security_connector.cc in Sources */, + 24D75704E5DF6C42062C724F66E4F194 /* alts_shared_resource.cc in Sources */, + 689043110124C7274438BD8DFCC06E74 /* alts_tsi_handshaker.cc in Sources */, + 72C20A055F7620FD0CD40B424DC6B837 /* alts_tsi_utils.cc in Sources */, + 5F51A6C02D5F85ED6E46EFFB393C6CB0 /* alts_unseal_privacy_integrity_crypter.cc in Sources */, + C24E8DAD52B83CE2955E9364F10EDAF6 /* alts_zero_copy_grpc_protector.cc in Sources */, + 79FD66DBD80AD4CFF1A5B9C5214A9EEB /* altscontext.upb.c in Sources */, + AA2CC919F34537386CD52CA071AD6FC7 /* annotations.upb.c in Sources */, + 0EDFDD393F345D4B51B67D1EB3AC4847 /* annotations.upbdefs.c in Sources */, + 4AA59EA598DEB7637B5493E5414A93FA /* any.upb.c in Sources */, + A8E2DBAE0A1876D88DCE11D2383D95E2 /* any.upbdefs.c in Sources */, + 3D34708E4D79C504D536D29F5E752641 /* api.cc in Sources */, + F1A3D3AFC3FA7B19C35F48325DA3716E /* api_listener.upb.c in Sources */, + 3DC529BED651E80DCEB39BADA17F2309 /* api_listener.upbdefs.c in Sources */, + 32259313E15F9DE1866C96BB31C7722D /* api_trace.cc in Sources */, + 9F0E16F5EEF4E33FCDEA8219C69FE1EC /* arena.cc in Sources */, + 99766086EB1D759038BA1356F92B0E77 /* atm.cc in Sources */, + 2D72179AAFDD3A36AFCAD7E30A989BAF /* authority.upb.c in Sources */, + 9A239023977775FDF32F634D018161FE /* authority.upbdefs.c in Sources */, + 5A3FA3DC1CD4318A3C2C8AE74B2ADA1A /* authorization_policy_provider_vtable.cc in Sources */, + 34218E87C19D0B3D9DAE34A8B8CF3B97 /* aws_external_account_credentials.cc in Sources */, + 77A32566BCCA8D6ED9B2DF2945E06F14 /* aws_request_signer.cc in Sources */, + 7F3C362B80608DA209CF171559A1CCA3 /* b64.cc in Sources */, + 2140C8C1F682D2955ED290AB700DDF78 /* backend_metric.cc in Sources */, + DE88474843709EA46FF4B80AFE10BF58 /* backoff.cc in Sources */, + 1824DADE896403AACCFF6A9D67058DC2 /* backoff.upb.c in Sources */, + 6E483A5D7861D6B89560AE7213F28451 /* backoff.upbdefs.c in Sources */, + 3D11EB0948E2073AD87B4EAB15FAE6B5 /* backup_poller.cc in Sources */, + B74A576ACDE83FB736D6434CF0126A47 /* base.upb.c in Sources */, + D20F7F9958E5C2EDC226F8BCB6F0DE12 /* base.upbdefs.c in Sources */, + 50A10684F7E3CB44555049C51EAF0CC4 /* basic_timers.cc in Sources */, + 43895E8FCF874BEBCE4853350D91D411 /* bdp_estimator.cc in Sources */, + 427FC047259F37D7634769C109B5A54E /* bin_decoder.cc in Sources */, + 16A3ABA54E70882ADE5EFF56453CF58A /* bin_encoder.cc in Sources */, + 937754F812470BE4B653C8B9B940E51A /* binder_resolver.cc in Sources */, + 607948DF24C989F692366EABE48DF5CD /* bitstate.cc in Sources */, + 9100B5D37CE669145FD0FF02C103549B /* bootstrap.upb.c in Sources */, + 308F95FA5BCA3AAEBF3014657640D340 /* bootstrap.upbdefs.c in Sources */, + ED8E17AB48D6D8BEA9FE26F0CD2F6D6D /* buffer_list.cc in Sources */, + E01A82FE9E4D54D8A3F86B622E1D2CDE /* builtins.cc in Sources */, + EEDFC6983E8F08066ECC3488F41F82B9 /* byte_buffer.cc in Sources */, + BB0037C75A9A9BC32CCDA2F847E0CF5F /* byte_buffer_reader.cc in Sources */, + D827ED86B300AC30E97CD1291180759D /* byte_stream.cc in Sources */, + E09415B0DBB9046105A2E6D0815401B8 /* call.cc in Sources */, + D1F19158FAB4BEB61D99D73C93D84010 /* call_combiner.cc in Sources */, + E720F22E0663D696DB090A591FC4DB48 /* call_details.cc in Sources */, + F9F0ABC6ED312526E2A76F1F67DD0F37 /* call_log_batch.cc in Sources */, + 36700FCFBB260654995793BA287751F7 /* cds.cc in Sources */, + 3FA509A0A99E724854AE654F8ED3DC0C /* cds.upb.c in Sources */, + 9349586557AC783D1064C26EDAD04C0E /* cds.upbdefs.c in Sources */, + E120493DD0473BCFFF6A2479CB2D6BC5 /* cert.upb.c in Sources */, + CECA754339E5FF5F9CFB4716742F5028 /* cert.upbdefs.c in Sources */, + 617207AA6EBC734698E887E7E9E94FA0 /* certificate_provider_registry.cc in Sources */, + 4CE5DF3D06B69C8CE17FB92B24C93A34 /* certificate_provider_store.cc in Sources */, + F30FC87570527501719A61F0D153D041 /* cfstream_handle.cc in Sources */, + C9727DC93BCB1E522B554457DD2A7A8A /* channel.cc in Sources */, + E6847E29B0D6ACF6DF51F052362B9838 /* channel_args.cc in Sources */, + 9AF17D89CCA3C1BF57B3E0DDFDD33A92 /* channel_args_endpoint_config.cc in Sources */, + 29B2ABA5D26173139D41572E85FCCABC /* channel_args_preconditioning.cc in Sources */, + 8159D008FBE50B969BDA154667D7E312 /* channel_connectivity.cc in Sources */, + FBBE0909A21737EBCB14C72B8EB6E427 /* channel_create.cc in Sources */, + 211A55F4B47B335C6A663B7CA290E973 /* channel_create_posix.cc in Sources */, + E2E388DAC2B7F9129DDF305C27FE06F5 /* channel_init.cc in Sources */, + 9A2A19EB7804A50230326437A7A381D8 /* channel_ping.cc in Sources */, + AFD260E489F00227BA7386504F9D4378 /* channel_stack.cc in Sources */, + 5C3F9FF34C6C6502EDBEF78F1681D434 /* channel_stack_builder.cc in Sources */, + C2A73B1A730DD54B056847031ED34A1C /* channel_stack_type.cc in Sources */, + 4E7600D5A4D88C60FA4B4F68D70A4432 /* channel_trace.cc in Sources */, + 8385FB2B8DB7F45CD202277478140EBF /* channelz.cc in Sources */, + 345AACC8FEE7C8D16F3683C987F07C33 /* channelz_registry.cc in Sources */, + BA5ACD8278A1C92AC90F7517132290D6 /* check_gcp_environment.cc in Sources */, + B2F66D36589022A92D0F13441E2540A8 /* check_gcp_environment_linux.cc in Sources */, + 1C38B738826DBEEB06891649704D9000 /* check_gcp_environment_no_op.cc in Sources */, + 69EF6E09F438AD54DBA68B14B1A46ED6 /* check_gcp_environment_windows.cc in Sources */, + 9BAE08BCD7D4D470965EE53E0475AF0E /* checked.upb.c in Sources */, + 439F896D4386A78D5D7BF096B57F9589 /* checked.upbdefs.c in Sources */, + 1ED8ABAF5AA49D88A474D9CEFBB65030 /* child_policy_handler.cc in Sources */, + 2587ED0F0CC16B16D097A3878D65EB55 /* chttp2_connector.cc in Sources */, + 927D2A71A5FF64ACD946D9055510E5D1 /* chttp2_plugin.cc in Sources */, + BD9B0AC64DF73C3165FDB3F48A4C71E2 /* chttp2_server.cc in Sources */, + 35D3D680828F9FB2ED6FD834A8DF42C9 /* chttp2_transport.cc in Sources */, + 641A53B4B552E8782E5B0A926822583A /* circuit_breaker.upb.c in Sources */, + 20002E05322391FF7ED8B6B2E72E96E0 /* circuit_breaker.upbdefs.c in Sources */, + 896E0F33709F14F8E073E50B6D7856C8 /* client_auth_filter.cc in Sources */, + 73F73ACA0FDDD48C0A07C32C20645DCA /* client_authority_filter.cc in Sources */, + 1FBF3460E7D224E562DD4EE4BB2AC01F /* client_channel.cc in Sources */, + 80AFFD91541737D9C2FA70267CC820A2 /* client_channel_channelz.cc in Sources */, + 22C8D99C2538956B05D1AAAF8462CA59 /* client_channel_factory.cc in Sources */, + 4F06B25D2FE6B08306171942FF516F3C /* client_channel_plugin.cc in Sources */, + 56B4B4D0752926C7BD9848027F01AE0F /* client_idle_filter.cc in Sources */, + 3F4C3F1235F18A84436D3815104D4835 /* client_load_reporting_filter.cc in Sources */, + 2A79F47E5956201A377E827F8A3389BE /* closure.cc in Sources */, + BF57DC8D85E7FFB011D18FA3958FA5AC /* cluster.upb.c in Sources */, + A6E800FB55D1B5A9FEFDFDE2B83B0039 /* cluster.upb.c in Sources */, + 63071484E89E1F7D4DE9B701A91560C0 /* cluster.upbdefs.c in Sources */, + 6B63E896AB7E531A83CDA47945C2A65B /* cluster.upbdefs.c in Sources */, + 0367F386033F946555209610CCED74DA /* collection_entry.upb.c in Sources */, + 632F841CBA465FCFC447F782724C696F /* collection_entry.upbdefs.c in Sources */, + 051E89643B2E7069FE51CB76C12D9FC6 /* combiner.cc in Sources */, + 187BA27DD4FF5DC436D95288E4049A0F /* common.upb.c in Sources */, + A8FA7D117581D41A6FBB9A62A75149F4 /* common.upbdefs.c in Sources */, + 9ED0F5296754C05F1622DB1D088F67C5 /* compile.cc in Sources */, + 846C0042D7EE86A4C1679F6309BD6E67 /* completion_queue.cc in Sources */, + CE4D69EFBC9F32EBC77DE5CD6D6F8913 /* completion_queue_factory.cc in Sources */, + F2B2C8055E0C7767D63DFBF8473DE691 /* composite_credentials.cc in Sources */, + 30C21BD330774D712A30B6E061105F2F /* compression.cc in Sources */, + 48629E95807CB8E545D497D7541451FD /* compression_internal.cc in Sources */, + ADFB36DA503C969BD1FE8DE25E058DEA /* config_dump.upb.c in Sources */, + 17DB389EB9A46BA30A85C365DA2AFE0B /* config_dump.upbdefs.c in Sources */, + 283E55AD928076BF6280C1D2B21FBF21 /* config_selector.cc in Sources */, + BF948BC8A2F911A20A4C7F1F07C3ACA2 /* config_source.upb.c in Sources */, + EAE9816AA02F01AD7CE2FB365F53587C /* config_source.upbdefs.c in Sources */, + ECE86405B68F6249EE5BE7AB90A3B513 /* connected_channel.cc in Sources */, + 56E9BA8840AC39754ADD4BF5FF863706 /* connectivity_state.cc in Sources */, + 517AD43ABC46E379C55BBDC8B4800918 /* context_list.cc in Sources */, + A440C745BEC1C87BDBD17453C9D4D529 /* context_params.upb.c in Sources */, + 75636D15654256CAAFA2401E840D297B /* context_params.upbdefs.c in Sources */, + 355BDEEF04736701C5B5EBFB66F68A98 /* core_configuration.cc in Sources */, + C09262F64AD9A5067F74FCE8889403DC /* cpu_iphone.cc in Sources */, + 8B8EAE0CAEB5CC2EAA67C481524C9140 /* cpu_linux.cc in Sources */, + D26420405C704E9797BB50E7CFBE84DA /* cpu_posix.cc in Sources */, + 916B60EF6C8BE059DB2358942664467B /* cpu_windows.cc in Sources */, + EEF0AB36913A085699EC00A6D0BC4206 /* credentials.cc in Sources */, + 7B54F17794FA2B971AD0DAEE656B5020 /* credentials_generic.cc in Sources */, + 3A674B35F6BDB80C7196531E44F12F91 /* csds.upb.c in Sources */, + 35BAEF8588A8B0243439A0463B372562 /* csds.upbdefs.c in Sources */, + 4F0C2952AC22C869DFE01B6DFA24D445 /* custom_tag.upb.c in Sources */, + 7042D61C627935044FED177377272D9E /* custom_tag.upbdefs.c in Sources */, + F358A136D7C0F5A50C1DBCBDEC17E221 /* deadline_filter.cc in Sources */, + E25BFD08FC557FDE032F0F2544C71F91 /* decode.c in Sources */, + BE99FADD34C5C4786E2625375AF02115 /* decode_fast.c in Sources */, + AA2034FA256DBE8F99AE77D1FBF9E720 /* def.c in Sources */, + 51743614FE9A31103B3399389C591F3B /* deprecation.upb.c in Sources */, + 658652847026030A7EB293AE3E9FFE74 /* deprecation.upbdefs.c in Sources */, + CEB6530D9B5743EBF9DA9401D44E7410 /* descriptor.upb.c in Sources */, + 0BC59EC75C6DF9E8BC972281DF5E003F /* descriptor.upbdefs.c in Sources */, + 2FF5737744370F91595D19DF741B58C9 /* dfa.cc in Sources */, + EE7D5BC764FD5948A9B27B82AF0E6495 /* discovery.upb.c in Sources */, + A2BFBCFB945B230CE4D333B815274D44 /* discovery.upbdefs.c in Sources */, + 7941D1419C281785DCA000F96694896E /* dns_resolver.cc in Sources */, + 0C4342F9E9E55F3A54E61ACA7695D515 /* dns_resolver_ares.cc in Sources */, + 9668DD96FE110EF1D09564D5B2A1B17F /* dns_resolver_selection.cc in Sources */, + 808638BF572F10A03987456005BB89A5 /* dualstack_socket_posix.cc in Sources */, + F8C4AC530E4AEE0FB14D50AE05BC29E3 /* duration.upb.c in Sources */, + 8AF7AF5964F6C00E7E9377840BD08155 /* duration.upbdefs.c in Sources */, + 19D8E44E49FA5D7375DCA06635209DA7 /* dynamic_filters.cc in Sources */, + 28CEC89A1F42854B4C3E1988361CFECA /* eds.upb.c in Sources */, + 34B3CE3768656DED1D6676DAF6F16400 /* eds.upbdefs.c in Sources */, + 46D88412FCB5CD9A89351A5623EAA485 /* empty.upb.c in Sources */, + 1BD3A1FB5F725B5BD9AE3E46CA13792A /* empty.upbdefs.c in Sources */, + E4B1887527F08B973392E58738E54056 /* encode.c in Sources */, + A2511C11DFF83D6F0C40AC6C2FB0163F /* endpoint.cc in Sources */, + 5C228A55B05B3292197F0492D5772A95 /* endpoint.cc in Sources */, + B00273F7359CA0410DCD9E70D33979D9 /* endpoint.upb.c in Sources */, + 6608B5BE9AB85AE636C156711FBD6873 /* endpoint.upbdefs.c in Sources */, + 4DBEAF7470DD43E5DB99FE901AFE7719 /* endpoint_cfstream.cc in Sources */, + E076899AE628A68D42776E920229E267 /* endpoint_components.upb.c in Sources */, + E1936EABA565EF501CBF86920E8E79D6 /* endpoint_components.upbdefs.c in Sources */, + 5A3E6D989532C1ABD77F9F9F5B862B5E /* endpoint_pair_event_engine.cc in Sources */, + CD95B85BC1F8ED6E61D91DC2C764A0C9 /* endpoint_pair_posix.cc in Sources */, + 6C20718A8F736443929FF2132B14CCAD /* endpoint_pair_windows.cc in Sources */, + 68941F227249858C583F4800C4291E5C /* env_linux.cc in Sources */, + D5DEAE2AE4F68A691000460CA031D9DF /* env_posix.cc in Sources */, + E0DA4D910A24139A81B2BE8D19453C8B /* env_windows.cc in Sources */, + 3EFB6C68C0DE8C538238C1E5F51189C7 /* error.cc in Sources */, + F4C3B3F2D11A0C656381EFF301F4087B /* error_cfstream.cc in Sources */, + 10D78D8621B0C5F5616F5DB94324D379 /* error_utils.cc in Sources */, + 82F3E7BDBB9FE1974644DDD599CFB659 /* ev_apple.cc in Sources */, + 6317E898450102916AC62AA15CB3F884 /* ev_epoll1_linux.cc in Sources */, + 526F2487710952F2CC96A19A19E3E9C2 /* ev_epollex_linux.cc in Sources */, + 0EA085C1793C4A4742E757E9D76941B4 /* ev_poll_posix.cc in Sources */, + 52DEB4A01A34F0FB5F2C9E9BB87A53D8 /* ev_posix.cc in Sources */, + B25D68EFAFEB4AD3DAF07FFF50AF5480 /* ev_windows.cc in Sources */, + DC764557F767EBD3D36A698D240AAB2B /* eval.upb.c in Sources */, + 210AB84ACA96D610B34A27E174F1D831 /* eval.upbdefs.c in Sources */, + 45E206939F143AC8DAD3E188A79E51CB /* evaluate_args.cc in Sources */, + F74F4864169D508A3FEB4B29B002BEDD /* event_engine.cc in Sources */, + 67DAA4F7AF98108C3BEF9662B30DBAAF /* event_engine_factory.cc in Sources */, + 77C61A45D6FCC68BD4ABB433DE5D812B /* event_service_config.upb.c in Sources */, + 3D67157C492CF32DD528CC07B1CF9930 /* event_service_config.upbdefs.c in Sources */, + 446760180710C05B7B7A43EDBCE062F9 /* event_string.cc in Sources */, + FBFCAE5F918D993E001A018FB3B4B59A /* examine_stack.cc in Sources */, + 0E3B08DD8DAC7F824C7889C33C63C30B /* exec_ctx.cc in Sources */, + E68A74C949310D3F8FB339AEFFE3F0A1 /* executor.cc in Sources */, + 09341BAD917BAEB4D9A0799F2A78D099 /* explain.upb.c in Sources */, + 157C72D04E29FABD92C6E15099CC017F /* explain.upbdefs.c in Sources */, + 86CC0567766666895B1194D0C53715D0 /* extension.upb.c in Sources */, + 330AF4CA64494A75DBB4FDD563672399 /* extension.upbdefs.c in Sources */, + 75BC8B5EFCF7A60CB0EBE0A071A68E5D /* external_account_credentials.cc in Sources */, + EDF4AAA2F8A1962B6A9D3FB052820E1B /* fake_credentials.cc in Sources */, + AF2100C760651743FE8D5E99F13F95BE /* fake_resolver.cc in Sources */, + C83715FFFBA8932B5B2352AEDB8FC570 /* fake_security_connector.cc in Sources */, + 7EE55E6FFC59C3F9DF91C68F3529876A /* fake_transport_security.cc in Sources */, + FFF6B2F2BFC5DCFCFD724FB92CAEADD5 /* fault.upb.c in Sources */, + 4CF0FA51FB38A901C401A163927447E8 /* fault.upb.c in Sources */, + 6CA1D6456380F9CA56BB2BA8EF1834FB /* fault.upbdefs.c in Sources */, + FA9D70E489EC5E98975332392397FAA0 /* fault.upbdefs.c in Sources */, + 4416BA2E0C404CE254EE791D9811DF4B /* fault_injection_filter.cc in Sources */, + 6FE1593983D455AB369EB1FB37028ABC /* file_external_account_credentials.cc in Sources */, + CD9E54043ABED94550ED680257DB1E87 /* file_watcher_certificate_provider_factory.cc in Sources */, + 5DFF64DB82EA87EBCC7E6A35B70A4C60 /* filter.upb.c in Sources */, + B8C68AEB40DBD1FAF3A779A5DAE0794A /* filter.upbdefs.c in Sources */, + DEABD1860F5DF1E7BDBBDD8FEF6E9CFE /* filtered_re2.cc in Sources */, + 6EF8F92A4C3A4677EE4EA9307E344DBC /* flow_control.cc in Sources */, + D31A3ED9980570957BA04994EC072F6E /* fork.cc in Sources */, + 70BF19C90B3F8B9970A1430D89C8E851 /* fork_posix.cc in Sources */, + F221D73D0BE6CC05A9509B57B5AC208D /* fork_windows.cc in Sources */, + 4FC0F3D576426930136812D158F3248A /* format_request.cc in Sources */, + 244B4EB168BBFEAA8BA1E0A340421C44 /* frame_data.cc in Sources */, + 45CFF19808218BDCAE138B6CBC53A952 /* frame_goaway.cc in Sources */, + FAF9388AEDFB23D47CB70507A03773B8 /* frame_handler.cc in Sources */, + 0362E8BDF1139E9833C6C79C78F5FCF5 /* frame_ping.cc in Sources */, + 6B0A501B7A063D34101853987A41C2E2 /* frame_rst_stream.cc in Sources */, + 3005C8EF09A880D60048E96F7788CCBE /* frame_settings.cc in Sources */, + 31A8D6EF97BE5FAB85AE87989277A9C1 /* frame_window_update.cc in Sources */, + DF29F01E3D18FE764A332CFD13922DF9 /* gethostname_fallback.cc in Sources */, + 3DC0310CF71BB65CEEFF171563E0DF6C /* gethostname_host_name_max.cc in Sources */, + F13E2121F05F66113F1095FEA9079014 /* gethostname_sysconf.cc in Sources */, + F8DFD7AE08C78BB600B430022E3141E9 /* global_config_env.cc in Sources */, + 5977CA54ED350E298048354FB5731F90 /* global_subchannel_pool.cc in Sources */, + 8B5014835EB8B8F779212D0A34432C91 /* google_c2p_resolver.cc in Sources */, + 7C131247535B50C99CDD24082DACDDF5 /* google_default_credentials.cc in Sources */, + 06567DAFA2325896C6CF3960836ABF17 /* gRPC-Core-dummy.m in Sources */, + 359749F97B0CF038C725F7C805DE435F /* grpc_alts_credentials_client_options.cc in Sources */, + 6B6C0B9BDADB87122645AD768F18D596 /* grpc_alts_credentials_options.cc in Sources */, + 96E89966C4A3B45E59F7F687E73BD856 /* grpc_alts_credentials_server_options.cc in Sources */, + B9DA2133E2B341D098A96A90FA4F6AB7 /* grpc_ares_ev_driver_event_engine.cc in Sources */, + C4A22496B89586E9E6AD94736263007C /* grpc_ares_ev_driver_posix.cc in Sources */, + 72591CDD02C99FD0A8984F7B416DDD78 /* grpc_ares_ev_driver_windows.cc in Sources */, + 84A97CA510AB184A57A2DBCBB9FA3CFB /* grpc_ares_wrapper.cc in Sources */, + 4678F4A5FAA8370243CC09E21596EB82 /* grpc_ares_wrapper_event_engine.cc in Sources */, + A3220FD147584DFCD618A9919BA95054 /* grpc_ares_wrapper_posix.cc in Sources */, + B6E89909BC7378DB2152D4F086C2BBCE /* grpc_ares_wrapper_windows.cc in Sources */, + 3A187A927100B2DFA8A35527FA601677 /* grpc_authorization_engine.cc in Sources */, + 4DA0F3A26FEABE4DEEC4C31032AB7239 /* grpc_context.cc in Sources */, + FC8E05463F3445E2B8F1AC74D26B4DDC /* grpc_if_nametoindex_posix.cc in Sources */, + 941CC353D37D5316B382F1D666E8FE54 /* grpc_if_nametoindex_unsupported.cc in Sources */, + AFBBBE836112BE7665E47185C635259A /* grpc_plugin_registry.cc in Sources */, + 93F77DF766AD9CA38AC11DFF8E68B4F2 /* grpc_service.upb.c in Sources */, + 7054C194BCDFD8B6E987EB726A0F8387 /* grpc_service.upbdefs.c in Sources */, + 0F806018D78852623CAD5FD0C1BAB50E /* grpc_tls_certificate_distributor.cc in Sources */, + F3DFD8EB7F1DC07B84922865D134E3E6 /* grpc_tls_certificate_provider.cc in Sources */, + 0BB387B56FC34917AEF81C80A47958E4 /* grpc_tls_certificate_verifier.cc in Sources */, + E586E7060DEBFDC519C0FD3427C7CAFD /* grpc_tls_credentials_options.cc in Sources */, + D5D9F88E0A56985A0499B5A94917F19A /* grpclb.cc in Sources */, + B49D800EF043CF81EB7C20EF43C4F665 /* grpclb_balancer_addresses.cc in Sources */, + BC0D09BACCD5AF0C8BAC8687DEC1BE04 /* grpclb_channel_secure.cc in Sources */, + 14D5A834B7F926C0AA8857FAA4FEBD36 /* grpclb_client_stats.cc in Sources */, + 9D8182A0A4FEBA196B909A6D8332D07F /* gsec.cc in Sources */, + 7EC47DE205AEC6AE99839B70698C4172 /* handshaker.cc in Sources */, + C6C47EF097B21156E9354B333CEAD049 /* handshaker.upb.c in Sources */, + 0774EF54266A877853D4AA45BB9235C4 /* handshaker_registry.cc in Sources */, + 9704914202E19AAB2C4059587A85D979 /* health.upb.c in Sources */, + 056B9D5F9D2A77E58F8B93F8111FB72C /* health_check.upb.c in Sources */, + 490BD7FD4C52E51309C9E7C9693F4A47 /* health_check.upbdefs.c in Sources */, + 8448948671419D8E79F5D052BB0AF956 /* health_check_client.cc in Sources */, + DC9392AFBB9CD3A8F6F4969B1C4396BC /* host_port.cc in Sources */, + 49967DA620A15A2F987A03331A7D6A65 /* hpack_encoder.cc in Sources */, + 8D716E7A44FFA592AC4968A4EA951F06 /* hpack_encoder_table.cc in Sources */, + 1FDCE1923A1CEBCB4E6095C95788B6D4 /* hpack_parser.cc in Sources */, + DF13C578794DB0AE859EB348069019AB /* hpack_parser_table.cc in Sources */, + 9E1E0DE9128A740827DB24DC54A00423 /* http.upb.c in Sources */, + 7B848128A4A5533B27C8E3031CF2EA7B /* http.upb.c in Sources */, + C164436DC5588E85AC7AADD6895DCB05 /* http.upbdefs.c in Sources */, + 90DC384545A7A72DA0680CC4C80EC229 /* http.upbdefs.c in Sources */, + D3A028CA48F92596B4941AF40BF9567E /* http2_settings.cc in Sources */, + 58136104A4A9CFC1827985E6481043D8 /* http_client_filter.cc in Sources */, + 973CCF5372119E99165FD3E727AEF4BD /* http_connect_handshaker.cc in Sources */, + EFFDFC46B91EA314A020D9431F2BEA56 /* http_connection_manager.upb.c in Sources */, + FBA345F84F89F6557C84A82F0AAC207E /* http_connection_manager.upbdefs.c in Sources */, + BB049E09022D0CA85DF2C55F12B18717 /* http_filters_plugin.cc in Sources */, + AAA7FA00F212B492E14F440DE9868965 /* http_proxy.cc in Sources */, + DBE97DD80C6099B11C9205A1F2DDA14C /* http_server_filter.cc in Sources */, + 187F4F98CEDF6F07101B3F6D1627DE50 /* http_tracer.upb.c in Sources */, + EC587A36F87F0B1363871D684709D9EA /* http_tracer.upbdefs.c in Sources */, + 454245447FC281F80C559C4BCABB7BF2 /* http_uri.upb.c in Sources */, + DC492E2A19B7B34A402BD99CE8278862 /* http_uri.upbdefs.c in Sources */, + B7DC6C728BFEE495F6B264DA1E22A1C9 /* httpcli.cc in Sources */, + 268B6E4A7D37427C55CD98273ACEB39E /* httpcli_security_connector.cc in Sources */, + D525A2F6587DF04B3F8D4896C4924EB6 /* huffsyms.cc in Sources */, + 45D70D6D0423004127B1DB38CB460BF6 /* iam_credentials.cc in Sources */, + 3BDF7B1EA2CE9DFC0C4E8844699DCBFF /* idle_filter_state.cc in Sources */, + A2707AD1F880B43F8BD292FA1378F4EB /* init.cc in Sources */, + F4AC7E20BDFBF0903E1B401E3BF84B2A /* init_secure.cc in Sources */, + 968D2F6934AA65C234F413BF2DA90FCE /* inproc_plugin.cc in Sources */, + EF3ECD84A03260B9F910F8C769742ED4 /* inproc_transport.cc in Sources */, + 2994E2395FD3CF59F958D98DF12B8E1D /* insecure_credentials.cc in Sources */, + 5664D5B04AAED7A9A45E56025938A0C2 /* insecure_security_connector.cc in Sources */, + 1065A04EBF9C825962420D0C32C9BA1C /* internal_errqueue.cc in Sources */, + 537B4F6DCB652398357E334AD90CB4CC /* iocp_windows.cc in Sources */, + 961653E5BC05BECD015E307CDDF95910 /* iomgr.cc in Sources */, + 0B39F0365AE995B57F8E8128843C95AE /* iomgr.cc in Sources */, + 680B8236180F66D0EE5EAD3C03A57821 /* iomgr_custom.cc in Sources */, + EDF94227DADEAA226F03254BAFEEFE64 /* iomgr_internal.cc in Sources */, + ED9320B9297A684CCD6397B7B0EAB145 /* iomgr_posix.cc in Sources */, + E0DFA6E9462F07EB0E59BF74C32D5626 /* iomgr_posix_cfstream.cc in Sources */, + 9CEA6928E87083B30C76E52601080BC2 /* iomgr_windows.cc in Sources */, + E393AE833CD77CD9F524F4E755739C34 /* is_epollexclusive_available.cc in Sources */, + 619591CDD4CEB01551FF451C1C85176E /* json_reader.cc in Sources */, + D10020CA8268C8F26800B63C4927BED4 /* json_token.cc in Sources */, + C9C27B847EDA758411D52062F39ACD59 /* json_util.cc in Sources */, + 7DAD62A2A5588103B27FE14407085DFB /* json_util.cc in Sources */, + C9172F46866F606E795DF728DF8F02C0 /* json_writer.cc in Sources */, + BC5F0DE64680E5A31D195C62944CFB78 /* jwt_credentials.cc in Sources */, + 645BC877C0D4776CF60EF2403027A25D /* jwt_verifier.cc in Sources */, + B26855BEF0B78BB265EA9177BE174405 /* lame_client.cc in Sources */, + 4363FF70CB386A86713CEC4A0C5DAC3C /* lb_policy.cc in Sources */, + B74C84CB4E6A65B39D6FFCF0707D9E7C /* lb_policy_registry.cc in Sources */, + AF37ABB6070A74F20387CCC403987279 /* lds.upb.c in Sources */, + EF7C4FE9E4DBFB0425B3FB640BA544D4 /* lds.upbdefs.c in Sources */, + E862C3AB1648D6E10640FDEE2665F268 /* listener.upb.c in Sources */, + 120516265248B5D7965211F338387828 /* listener.upbdefs.c in Sources */, + C16C55EFAD5A218686AFEEE9CEC99539 /* listener_components.upb.c in Sources */, + AE9A2C3FFB792F15A17568B8C5EA9D2B /* listener_components.upbdefs.c in Sources */, + B883E3CB5CEF32747E11C851092EE7DD /* load_balancer.upb.c in Sources */, + 1ECDDEB266937A5CCAE36E41DEB720C6 /* load_balancer_api.cc in Sources */, + 4FF2C8BFE73BB2C7192FE97AF857D33E /* load_file.cc in Sources */, + DDA0E49039B5120F6DD2ACB267482DB9 /* load_report.upb.c in Sources */, + 7386B88849DE2FC0B7C7E93CD7979417 /* load_report.upbdefs.c in Sources */, + 22433849ECA0E44C2D1A2A0AD0FA642F /* load_system_roots_fallback.cc in Sources */, + 781C08A2E117CEC850A5ABFF71A3B8DD /* load_system_roots_linux.cc in Sources */, + 11CD54572A1C673BDA5D961E5D9D0FEB /* local_credentials.cc in Sources */, + 99F0EA8852618803FC091AA500DA154C /* local_security_connector.cc in Sources */, + BCDE3B116B9BA739F28B258868D369AB /* local_subchannel_pool.cc in Sources */, + 6A0C91D95B86566DFBA213AA781BFC9E /* local_transport_security.cc in Sources */, + CAE239303CC18EF87236E323E05DA67F /* lockfree_event.cc in Sources */, + EC2BF4BB1A937A716D5A0FFDB1235D46 /* log.cc in Sources */, + 60224667F132A7F7032B87BF71BE6C41 /* log_android.cc in Sources */, + 6CF70816384B09809AF7189DCA220260 /* log_linux.cc in Sources */, + 5EE000DDE380C9CA04196B4CED15F969 /* log_posix.cc in Sources */, + 3361A4B0D62D520554989CCE41D4C8E5 /* log_windows.cc in Sources */, + B2A5748690F8E071B168F7CEC4F21427 /* lrs.upb.c in Sources */, + AE1F59F18D1957EB3F59FC01F55F43A2 /* lrs.upbdefs.c in Sources */, + 65BFF4F5C0C7B74DB8A0712EB91EAA9B /* matchers.cc in Sources */, + 42A8700060CE8A6406AEAC63FBE11F8D /* matchers.cc in Sources */, + 427D3BD115638C6B7EF953A968043BC8 /* max_age_filter.cc in Sources */, + DD102B50325822244854641CA405676C /* memory_allocator.cc in Sources */, + 7DC3AFD8EC9FA541DBF1780C858919C9 /* memory_quota.cc in Sources */, + 14E7F028D4F3643D996ECDB786D96D68 /* message_compress.cc in Sources */, + AFB1D6A78FA2C7C2AF2D572C6471DF35 /* message_compress_filter.cc in Sources */, + CAD203BE8B4F06E85651F64B7604B50F /* message_decompress_filter.cc in Sources */, + 27E76EA525B2F5F7191CB7D59A3A5519 /* message_size_filter.cc in Sources */, + 6AE8DECA8F1BCDBA49FF00FBA3350535 /* metadata.upb.c in Sources */, + 0B5181C38EB2D97EAAE53AEE84B056E5 /* metadata.upb.c in Sources */, + EA5E61298718CFFC4E99B8EF50F18324 /* metadata.upbdefs.c in Sources */, + 053A3D201DAC5CDD604B8CFEE225A380 /* metadata.upbdefs.c in Sources */, + 450678D16AD65DC6C57DF7DDD2187C84 /* metadata_array.cc in Sources */, + 043002FC6C9253A164FB9D78768ACB48 /* migrate.upb.c in Sources */, + 6F311283495756F62411C15224880678 /* migrate.upbdefs.c in Sources */, + DC288CCD91630F374FD571C234114A2D /* mimics_pcre.cc in Sources */, + 77B6B9F4EB625B4ECC4ECC58A1113C84 /* mpmcqueue.cc in Sources */, + C086F3BB54E82311CDB91603C760B2AE /* mpscq.cc in Sources */, + 3B94793DE291646007C901914CB44AA3 /* msg.c in Sources */, + 9ACD0B7C21A71CEF23400A58C8105100 /* murmur_hash.cc in Sources */, + 72C12DC7E05E045C96A534091E80A7EB /* nfa.cc in Sources */, + 5B6F5654B253900EC263C3DCDA84FA99 /* node.upb.c in Sources */, + C5B2B218BC419B0F4390DBDD7ECBBA17 /* node.upbdefs.c in Sources */, + 06B434B0D249339C743D548386FE93F7 /* number.upb.c in Sources */, + 26D7749488597A0D44AF6C2FAC173384 /* number.upbdefs.c in Sources */, + F5207DA20DBA836B745646EEF1A4A53A /* oauth2_credentials.cc in Sources */, + A8DA694ADBF7443FA72D4F1A71A8AB7A /* onepass.cc in Sources */, + 4CE4B6CDEAE3373A8AB74129C785A6CC /* orca_load_report.upb.c in Sources */, + 8E0EDB8F0397533D76ED4B89264905D0 /* outlier_detection.upb.c in Sources */, + A1D4283C3374A0BD499EC621C78AD946 /* outlier_detection.upbdefs.c in Sources */, + B0FAF84989D9CDBA03D1541F01294FF0 /* overload.upb.c in Sources */, + 8D24ABFC0BC9D175A94EE93597687DC1 /* overload.upbdefs.c in Sources */, + E7E2212206F47477D0F18107929C6D1C /* parse.cc in Sources */, + 219C931787E4A32445E9B33171EFDFBD /* parse_address.cc in Sources */, + 6D9C05516E4649E95170C9A9A8BED2E5 /* parsed_metadata.cc in Sources */, + ED2D90C2673E1BA846564A4C0092D138 /* parser.cc in Sources */, + 2E00EF2AA6A8D5CDE9CDD99FB1AE5D2D /* parsing.cc in Sources */, + C3B5D73E99A940D1664EB5D7FE0B7D20 /* path.upb.c in Sources */, + 888D5E29A0455A7FF1417C506169C82C /* path.upbdefs.c in Sources */, + B98094E79D88F079C220F39E7F7E06F2 /* path_transformation.upb.c in Sources */, + FBD499D2B5786125B14D587FD540D344 /* path_transformation.upbdefs.c in Sources */, + 241001CFEB80DC329C860C0F7B4DE83B /* pcre.cc in Sources */, + 51F7A4A21025DE90E434A1595C22B722 /* percent.upb.c in Sources */, + 822C3D0D38439ACB51BF4B3D3B8B403E /* percent.upbdefs.c in Sources */, + 8F9BB87BC91C2C3523BFC0165D35B016 /* percent_encoding.cc in Sources */, + 2396414B86A6B8943E3B42AA1111DC18 /* perl_groups.cc in Sources */, + 0D202CC8A1E86EA109EA9BF278B2D9C8 /* pick_first.cc in Sources */, + 9B923F413EDBC329A6C8E723B54F9F90 /* pid_controller.cc in Sources */, + 7D459BFE958CF6B8B57FC45D0C13D599 /* plugin_credentials.cc in Sources */, + 9958CD92E96B85CC5E58D981D2D67C1A /* polling_entity.cc in Sources */, + C7AD98BAAB94EC2B7BE425AFDE7E36D1 /* pollset.cc in Sources */, + 4456B10621197FA7D3EDC7E4602AAD84 /* pollset.cc in Sources */, + 94A0FAAE4E7C62BD14B85A48B88D58B3 /* pollset_custom.cc in Sources */, + 1CB87D516948BCFACCF6BA24890A1FE2 /* pollset_set.cc in Sources */, + BF6FBFA2219D9BABB7FD38FDBA51FE0C /* pollset_set_custom.cc in Sources */, + 6318702C691A0E4465B957FF5CD22843 /* pollset_set_windows.cc in Sources */, + 66D46B0820561282F2FECD873D7D805D /* pollset_windows.cc in Sources */, + 923795A4FB5BA0362216AD3263E97355 /* prefilter.cc in Sources */, + 2551489CC455AD3F20B976ABA40BEE54 /* prefilter_tree.cc in Sources */, + 31D2E40129D77CCF6C0647DD82BF2B4F /* priority.cc in Sources */, + 4ADA36C2982624583F9459010D3B04F9 /* prog.cc in Sources */, + AC8AF6F6AC65EA9A5CBE79F78834B4D0 /* protocol.upb.c in Sources */, + 1C446ACAC4E5FAEE76D6B29A2BEBF8D6 /* protocol.upbdefs.c in Sources */, + 54FFCEAC69F84BB3964F7CFEB68126B5 /* proxy_mapper_registry.cc in Sources */, + 8088150B85B2E78D03AC03B19ED5FC6E /* proxy_protocol.upb.c in Sources */, + 571AEC2C4007C1CB2C893111E573E5C8 /* proxy_protocol.upbdefs.c in Sources */, + 9C1AE588FBFC5A36117B1863EE517CCD /* quic_config.upb.c in Sources */, + 9547FEFE2D980281C56F79227927B9C9 /* quic_config.upbdefs.c in Sources */, + F7A878BA8638B19F28A14ED7E0816CB0 /* range.upb.c in Sources */, + 88B35FA31B80BDB8B0A9C9FC93B7DE2F /* range.upbdefs.c in Sources */, + AAECE36FD2CBE49D66E32F78E06D588D /* rbac.upb.c in Sources */, + FCF7AB7C573C7F11648B6467157F1BAE /* rbac.upb.c in Sources */, + E45CB47296E3D376B0E18689C8F636FE /* rbac.upbdefs.c in Sources */, + EDE2FEC912DFB8D6CDF8058EB223B054 /* rbac.upbdefs.c in Sources */, + F26E4711CE5E87E8E71EE1E24F59C9ED /* rbac_filter.cc in Sources */, + 6FC4B23EDA24B9A15D1669B4EA602B0F /* rbac_policy.cc in Sources */, + A2BD35ABB1F5E1CDE3FE3B4BD2D84F68 /* rbac_service_config_parser.cc in Sources */, + A496333BBB06B50A3A9723450EA64AF6 /* rds.upb.c in Sources */, + 3D043DBD19C3381D7ECEE668CA2FF7B5 /* rds.upbdefs.c in Sources */, + 41E61D7BDABD1ECE32F4FC3DED23424F /* re2.cc in Sources */, + 5A4BCD6F31590CCFFB1FC3D1EB12AA2B /* reflection.c in Sources */, + 673009D4D18B80C4D8711848621B8E01 /* regex.upb.c in Sources */, + D6B05DFD9E2972071C0C1DF37EA92C9A /* regex.upbdefs.c in Sources */, + 710B691895931AAEB14F65E539AB88CC /* regexp.cc in Sources */, + 78FCE93B0D60F597D1D539F401F15BEC /* resolve_address.cc in Sources */, + 9F036C12CA31648AED706B1543D8A831 /* resolve_address_custom.cc in Sources */, + 853C5B7F9019873ED1B9F8FAC81D5D84 /* resolve_address_posix.cc in Sources */, + 71F34B517B598D3501061EB3292D794C /* resolve_address_windows.cc in Sources */, + 8D69823141A81893DC239A56D08A81A6 /* resolved_address_internal.cc in Sources */, + F15A0723D224998E330B972372E28C4B /* resolver.cc in Sources */, + DBD00D67DBDFB5FBB655768F577EF351 /* resolver.cc in Sources */, + B1CA94B474C6D3AF33177FD34C26AB33 /* resolver.upb.c in Sources */, + 2F58C39B473E4E4E8BABE31D5C5B70AD /* resolver.upbdefs.c in Sources */, + 6419DBE28C90A7506A2DEADCC5943E54 /* resolver_registry.cc in Sources */, + 0D8968EE1A9A5324EE0D058528862E5F /* resolver_result_parsing.cc in Sources */, + E15F94A98EB63E5C85CE9ACAC9FA06FA /* resource.upb.c in Sources */, + 2AAD6477FD435566939F9B496785CBFE /* resource.upb.c in Sources */, + 6F6599E2A62C99133345FC815049BB1D /* resource.upbdefs.c in Sources */, + A64B541B144B9EF89141F9E06D65419E /* resource.upbdefs.c in Sources */, + C9398FA769D3194B465B0B2225712434 /* resource_locator.upb.c in Sources */, + 520E89077D6DCC8A96D6D00D4C72ABC1 /* resource_locator.upbdefs.c in Sources */, + 3ED40F80E9DC20B88E7DC61180E53A8B /* resource_name.upb.c in Sources */, + 209E39EF1FE12009DF75DD439EE405B8 /* resource_name.upbdefs.c in Sources */, + 9DAC3D2EE24634849E212C38544B671B /* resource_quota.cc in Sources */, + 0FAF472E286DED47CFBF97D486C02F54 /* retry_filter.cc in Sources */, + 546FD545E99F7137E61A7C796CB080D2 /* retry_service_config.cc in Sources */, + 3E42606738E92B97293EDF50D9353D71 /* retry_throttle.cc in Sources */, + ADC96CE358BC3978E41EC39F246EB3D7 /* ring_hash.cc in Sources */, + 753F639EE3ECFE630F5DCFE6FAF71197 /* rls.cc in Sources */, + EB1877681586EA3F77EC81C23B1848D4 /* rls.upb.c in Sources */, + 826D363F1E9C1F45CA70E2AFBF5BD0BE /* round_robin.cc in Sources */, + CF4CB0B316C1C2DC417597EF4BD986B4 /* route.upb.c in Sources */, + AE3EF7E596D6B7B79C611D3D747185F6 /* route.upbdefs.c in Sources */, + 37168B49D0A62585A009BA632611DD65 /* route_components.upb.c in Sources */, + 6DF21D3D678878B50D6E09AF8561B48B /* route_components.upbdefs.c in Sources */, + 2CF20AF7FA3665536C58C5DB7CA1E503 /* router.upb.c in Sources */, + AFF3D1FA1ECBDBF9046B59BAE54DEE28 /* router.upbdefs.c in Sources */, + 4522262E7CD08BE9A18FC867EB22559B /* rune.cc in Sources */, + 42F57B5F3A9FDBA7D6A25C43202E51BC /* scoped_route.upb.c in Sources */, + 73C4B3E0DF4707BB2B7628FC541C7CBA /* scoped_route.upbdefs.c in Sources */, + 7B73873188852D097FB0F5BF6D6EB973 /* sdk_server_authz_filter.cc in Sources */, + 20BCA7581D14DD61099774F478BE8197 /* secret.upb.c in Sources */, + 5EED56DAF97372AB4458CCD05CDFC540 /* secret.upbdefs.c in Sources */, + 0249A722E42889524B902747F6532583 /* secure_channel_create.cc in Sources */, + FE97D5A1D1630CE5E77C0C1D76374607 /* secure_endpoint.cc in Sources */, + CBE8A3F3512AA34AF2020A07A37AB867 /* security.upb.c in Sources */, + E2F2154503889FF8708A1B61119DEEB6 /* security.upbdefs.c in Sources */, + 8AF243566E423204A47717137B73DE4B /* security_connector.cc in Sources */, + AC0921BFACDD9732A6214626C7954E8E /* security_context.cc in Sources */, + CB6DE3761BAC8F4CF9B0F2B5546B3E09 /* security_handshaker.cc in Sources */, + A15D5367D2D2F7EEBABF408E3E5813A8 /* semantic_version.upb.c in Sources */, + D03A3E289F997E7CF81653AA032C8041 /* semantic_version.upbdefs.c in Sources */, + EB648B6B09292EA27B4D692AF294B2C4 /* sensitive.upb.c in Sources */, + BDC68918A81BABC11808B0FE670D0B5B /* sensitive.upbdefs.c in Sources */, + CDBD07D233A27AC575A4C31D14E50AAC /* server.cc in Sources */, + 8E401506A9A260979FD8E1ED4F278218 /* server_address.cc in Sources */, + 2F4489BAD400CC4F1CEF12D99A7F08C5 /* server_auth_filter.cc in Sources */, + D93AF2D035A954C204C14D93C89D040E /* server_chttp2.cc in Sources */, + F06556948F3199F21034EAAFDBBEAB44 /* server_chttp2_posix.cc in Sources */, + 991B569414ABF15EB4EE2FECCA809791 /* server_config_selector.cc in Sources */, + E542A322358EFE103F727FC018349CDD /* server_config_selector_filter.cc in Sources */, + B0B722EE661FC6E2E0591FB71110C35E /* server_secure_chttp2.cc in Sources */, + 1262A53AAB28337982FEFB9BBC77B5F4 /* service_config.cc in Sources */, + 909843CF2FCF42346E37FFF41DFB1385 /* service_config_channel_arg_filter.cc in Sources */, + AC4EB9F6B5E7A611C573A4AA2B4EA323 /* service_config_parser.cc in Sources */, + 1F53CBD5FBFF3D5880FB1CD07E3425E1 /* service_config_parser.cc in Sources */, + F387B232AA639A5B8FCB42B734CDC7FB /* set.cc in Sources */, + 77A741BB0E0C2171B6ABCC66CA549C45 /* simplify.cc in Sources */, + 27D137DCC9A52F2285362758CE7D33FF /* slice.cc in Sources */, + C8C2033B4D2941E777F8D24744D83352 /* slice_api.cc in Sources */, + DEDBE2DB6C2709713EA0131F1B8DC9C7 /* slice_buffer.cc in Sources */, + 55CBE83C64126440FB2E581409078702 /* slice_intern.cc in Sources */, + CA524FB35C089D51A7A13FFE33A920E1 /* slice_refcount.cc in Sources */, + 4A21AEBFC6A2BF04847C0BAE1372A688 /* slice_split.cc in Sources */, + 5665E5E4C80FCB8FF12D20E60F7B390B /* slice_string_helpers.cc in Sources */, + 93BEDC6A6D3A4E6CE9D7A4D55B95933D /* sockaddr.cc in Sources */, + 9237EA727B9A60375EA5DFA8981FFC4F /* sockaddr_resolver.cc in Sources */, + 6489AB5B1FE6CDE6A43C69F9EE2FB6AA /* sockaddr_utils.cc in Sources */, + A3314E734310B5D80565C5451E487AA9 /* socket_factory_posix.cc in Sources */, + 08C861F3C7B4382E796214981AB7A0C9 /* socket_mutator.cc in Sources */, + 6357E34E93F5A3F9D4ACB9FD83D165D5 /* socket_option.upb.c in Sources */, + 9C9A751CFBAE8854E06CF4FB9ED9C806 /* socket_option.upbdefs.c in Sources */, + 23FD0DDB01F8CFD9D04E5765758382BB /* socket_utils_common_posix.cc in Sources */, + D696A5307F312B96FF7ACA58E6A53CBF /* socket_utils_linux.cc in Sources */, + F2200968D17CBEAF0218E010F5E20610 /* socket_utils_posix.cc in Sources */, + AD10E745E98ADE6057D7802BDBC0EC29 /* socket_utils_windows.cc in Sources */, + E420CA6CAA7FA1853E865FE90988E75E /* socket_windows.cc in Sources */, + 3B8DE63781A07D322FEC05481559176F /* srds.upb.c in Sources */, + D49D72784A00B613E6ADD5B78F8591A0 /* srds.upbdefs.c in Sources */, + 44D99D47879AA122C5929C0BBBCC9A17 /* ssl_credentials.cc in Sources */, + 26FD9F2E1AEE0B06AF93445432030835 /* ssl_security_connector.cc in Sources */, + 43937F5332B67AAE45E5DD6CCB5324F1 /* ssl_session_boringssl.cc in Sources */, + 0C4159EE0B7DA630EEA8DE5E77A6DDCA /* ssl_session_cache.cc in Sources */, + F7A700D8623D1E30EEA99FC7769DFF86 /* ssl_session_openssl.cc in Sources */, + 543E85F5BFCF817820B6825B295FD920 /* ssl_transport_security.cc in Sources */, + F631E4013BC232839EFF5A5D43D6171C /* ssl_utils.cc in Sources */, + 5DBAF9B55DC3AE77F2CECA00B7AFDB6C /* ssl_utils_config.cc in Sources */, + CDEA3C008FB96E8076CCC23CF66E8AB6 /* stap_timers.cc in Sources */, + 0ED7366E531531B1ECD74D5212E06B50 /* stat_posix.cc in Sources */, + 279464A82C7F0A5A282C717BFC8B253C /* stat_windows.cc in Sources */, + BAFD0DE5ECFCCBBA52B9FC171575BB90 /* stats.cc in Sources */, + F137E1F19303F96578A9FA5814C81180 /* stats.upb.c in Sources */, + 67EFCA50F1187D801F26610961E27F46 /* stats.upbdefs.c in Sources */, + AC698046F332C61E4831437F326D2445 /* stats_data.cc in Sources */, + ADE43DC45C3F3D6EDA42ADC61A1C07B9 /* status.upb.c in Sources */, + A484F76CC5811639B05CB232EA55095C /* status.upb.c in Sources */, + 7E89D063CB7E963B6F5CE68CD37AF688 /* status.upb.c in Sources */, + BE604C0CF8A3D537473844114CD99078 /* status.upbdefs.c in Sources */, + 42F9B07DCB292445DD57C1D8CCC527F1 /* status.upbdefs.c in Sources */, + 45554180CC64BCEC5A884AAC585B8287 /* status.upbdefs.c in Sources */, + 2764E8E50BC2AA310A589001685CAD2A /* status_conversion.cc in Sources */, + 8376AB742FFBD70953C833D541AB3555 /* status_helper.cc in Sources */, + 4EE7EE1FE0F96FCEF0BC8A71C8C31C3A /* status_util.cc in Sources */, + F3F8F1356204F4E9299D007923D58B48 /* stream_lists.cc in Sources */, + 6A0974466B98764FB8A8AB39CF2A9EA4 /* stream_map.cc in Sources */, + 0BCFC5F0E92B99C25B8D0DA132DE98CF /* string.cc in Sources */, + B75370698FD2367C5DF6A4D9CFF1CB49 /* string.upb.c in Sources */, + 25D21E1D3540B9876D83B333BDCDEEE5 /* string.upbdefs.c in Sources */, + A428B5578D58FD2F80649127192A1092 /* string_posix.cc in Sources */, + AD1DF41641BDA696FDF0A9787EFC7DF5 /* string_util_windows.cc in Sources */, + 3BB253920B9CD6050B88A2B6785FEF2B /* string_windows.cc in Sources */, + 847FAB6B0E01FB040F4FBDE340A834BB /* stringpiece.cc in Sources */, + 8FFE6FB015D9F9C58A16D21FA2FA2867 /* struct.upb.c in Sources */, + 686841A2B86B84C4B30AB9A99ADE1C60 /* struct.upb.c in Sources */, + 7E7340D2C15119C24671613C36885D48 /* struct.upbdefs.c in Sources */, + D82B6B36989DFF373582C40E14145C07 /* struct.upbdefs.c in Sources */, + 992FD5CFAB3AE959C001454E5E36BE87 /* strutil.cc in Sources */, + 1857E346A4850971215C3869F5D10728 /* subchannel.cc in Sources */, + 8512D01D58477E67FC42F230DDFACA4D /* subchannel_pool_interface.cc in Sources */, + F953AF196499B26D5F4227C9522A19A8 /* substitution_format_string.upb.c in Sources */, + E622671DE151BF39B1E019620B8C34D9 /* substitution_format_string.upbdefs.c in Sources */, + 2ECEB2F63C85737CF9105FCFAAFB051A /* sync.cc in Sources */, + 34EE378BB310D952069087881F6BAEC3 /* sync_abseil.cc in Sources */, + 121BD6758D36F2B4FD62D652C154230D /* sync_posix.cc in Sources */, + B7014C606BA0CDCBB245E87580888B87 /* sync_windows.cc in Sources */, + 9226787A79621A2C317A3DB4D6C94287 /* syntax.upb.c in Sources */, + DDEA897575B3F3ABC5C0B47C31578345 /* syntax.upbdefs.c in Sources */, + 64E6538B7F5C11B0E7F16AEFBA2DEA0E /* table.c in Sources */, + 21E9D18E5450C8349E0460CD1B3DEF28 /* tcp.cc in Sources */, + DD457469C7B79D57AAADBA481FB4154E /* tcp_client.cc in Sources */, + 6C83E9441C2FA7C6B00E9172E9F6E164 /* tcp_client_cfstream.cc in Sources */, + 95683F91C9B3A9271FDF64D7F6C943F4 /* tcp_client_custom.cc in Sources */, + 694AA1071FA892D1BF37FEF008728ADB /* tcp_client_posix.cc in Sources */, + 2B74A21F46550C625A2BBE7A0637BEC1 /* tcp_client_windows.cc in Sources */, + 85ECE43FFFDB9B566D509E095FC22515 /* tcp_custom.cc in Sources */, + A39239EBD16F3089CE64D92A50F14797 /* tcp_posix.cc in Sources */, + 4C6BCD8A67BD38D1CA6C621E7F27B27E /* tcp_server.cc in Sources */, + 9015C1DA73B70777F628A5BFF0B572F0 /* tcp_server_custom.cc in Sources */, + 4962A3C5D5022381A109F0594F43AD52 /* tcp_server_posix.cc in Sources */, + 93AEDA8B26606284FC32C92F1A1AA40D /* tcp_server_utils_posix_common.cc in Sources */, + C5EAB17C1AB5D831816EFD794FD440B9 /* tcp_server_utils_posix_ifaddrs.cc in Sources */, + 24DCD16E787A4B094DEB95BF40A166F2 /* tcp_server_utils_posix_noifaddrs.cc in Sources */, + AB8FE270057D16A052DDA75341AA660B /* tcp_server_windows.cc in Sources */, + 48AFBCD3F54DDCE0851D1AABD2E2F07D /* tcp_windows.cc in Sources */, + 956DCDCA93A1A669E0605B8F0A2B61B3 /* text_encode.c in Sources */, + 8C31D81F081C56FD8AB0999F18F119DA /* thd_posix.cc in Sources */, + DA9B1D347B19708C1210D8405FD2EBC1 /* thd_windows.cc in Sources */, + 29D322C0E7067B8031D8EE3F2342BDE0 /* thread_quota.cc in Sources */, + B0E266BE9A486A1BDBB0A5430F18D56D /* threadpool.cc in Sources */, + D7DF28530B6063CE04261FCA61355E12 /* time.cc in Sources */, + DCE3034B3F4A3081D0343AC127F7C8BB /* time_averaged_stats.cc in Sources */, + 1CAADC2E757DCF27AB799ADF6CF4DB21 /* time_posix.cc in Sources */, + 6428A49E877317B11C2550D51D4E06DF /* time_precise.cc in Sources */, + BBB4E0FA4B494E96794FA10860EE7C7A /* time_util.cc in Sources */, + 42F27501BE316C9F445838E6C73164F7 /* time_windows.cc in Sources */, + 892BAEB4D780A473F84740F105528C85 /* timeout_encoding.cc in Sources */, + B57CCC11C2164F6804B60E09B55D4162 /* timer.cc in Sources */, + 65A5795981763E1893D9693916377E68 /* timer.cc in Sources */, + D29CC8DD2FD4A55DBA617F110766DC03 /* timer_custom.cc in Sources */, + B9811716B6FCEF8CE4F774F448F7AFA7 /* timer_generic.cc in Sources */, + 9BA1594842F1DE495CCC1CADCED35626 /* timer_heap.cc in Sources */, + 55F66A32F4A0439F255F28E33480E235 /* timer_manager.cc in Sources */, + 667B780B5D6D5E5596B1BD9B8AE98C86 /* timestamp.upb.c in Sources */, + EAA7C8B62E6A2CB52BCCA1F1AC50C8A7 /* timestamp.upbdefs.c in Sources */, + 93F7D1EB94BEB690B6719CF604204EC6 /* tls.upb.c in Sources */, + 9310ABF27460287AEABE4B1F1DE74744 /* tls.upbdefs.c in Sources */, + FDE60A91343E417FC85C3338BF350300 /* tls_credentials.cc in Sources */, + D0AA08D0DD88913910E14EE5EB25AFFA /* tls_security_connector.cc in Sources */, + E2E6FCA86305EC232864197542452FDA /* tls_utils.cc in Sources */, + 231F1F4F8730F50433DE3E610292F609 /* tmpfile_msys.cc in Sources */, + 23204BD14A3C9FBD36FAC5FCDF95F841 /* tmpfile_posix.cc in Sources */, + C95399D6597806327B211BD7DB12DC90 /* tmpfile_windows.cc in Sources */, + EF7BB64EB1CE0C4B1DAD4E51643C4AE4 /* tostring.cc in Sources */, + 440BD72BCBA236BCB1DE847383E7E996 /* trace.cc in Sources */, + A5D64AD2F66AB95B32CB98757E534ADB /* trace.cc in Sources */, + FAF4050658045E5323546A51D48A8D5C /* transport.cc in Sources */, + 0E9FC962793B56B1AFB061980FC9E5FC /* transport_op_string.cc in Sources */, + 5E000C69BECFC2F5341144742B5FF103 /* transport_security.cc in Sources */, + E4C3086EE4C2D9A7E847648B0F4EE4AB /* transport_security_common.upb.c in Sources */, + 64CC210A3C73F049BABEF8D261A80590 /* transport_security_common_api.cc in Sources */, + 08FDC39C29DA4A15C3F4C727006FB51C /* transport_security_grpc.cc in Sources */, + 3937318C5D4B0D12BA27938285B98317 /* tsi_error.cc in Sources */, + 58838F5B9F57814D8202B2327D453780 /* typed_struct.upb.c in Sources */, + 91ADBDF1733F57D7E0AA0179B64EB3D0 /* typed_struct.upbdefs.c in Sources */, + 4DF5E2F2AF715350E1F6AD0DE89C52FB /* udp_listener_config.upb.c in Sources */, + B30737953B061C105F5D30549748A9DB /* udp_listener_config.upbdefs.c in Sources */, + AA6D3514076E1110223D3DFBE273CFE8 /* udp_socket_config.upb.c in Sources */, + 8CB228ADC359A07570487F57641FA389 /* udp_socket_config.upbdefs.c in Sources */, + F08A5947B28C3AAE8BA1EE352799447E /* unicode_casefold.cc in Sources */, + AB985EB338EC611503B1DFD378311187 /* unicode_groups.cc in Sources */, + 6DD222461C467514AB299287D7DBFD2B /* unix_sockets_posix.cc in Sources */, + 40A9FD571CDB794D5B4C318CDA988AF3 /* unix_sockets_posix_noop.cc in Sources */, + CF6C4A807FF3D61ED9F57DD9779E03B3 /* upb.c in Sources */, + 4DB5A95844305D3EE5FF0D92C922F79D /* uri_parser.cc in Sources */, + 212AD7E51209249B41991F962F92F9CA /* url_external_account_credentials.cc in Sources */, + A8153FCE1205D7E1B4F9AAD35259C153 /* validate.upb.c in Sources */, + 51C8301CE9B6F9719CDFB5EF7F7E1A81 /* validate.upbdefs.c in Sources */, + D12053C89679C8C820A5A7D2F9276A34 /* validate_metadata.cc in Sources */, + 2D0278409FE366C31765FEA6DE3E25B8 /* value.upb.c in Sources */, + 64D261941B0D423D6541D5B671608E1E /* value.upb.c in Sources */, + D38A23EED2BC59590990B86E56D3194A /* value.upbdefs.c in Sources */, + 20FE3241F16A9275E951169E2594D662 /* value.upbdefs.c in Sources */, + 80313A630AF265BDA7B60D582C56F224 /* varint.cc in Sources */, + 66248898F73D968E7F17E912E444A356 /* version.cc in Sources */, + 327D0C628596DD7BE4FBA13CA9DFBE54 /* versioning.upb.c in Sources */, + F6CAAA981EDF6EB244A36BA60EFDBEA7 /* versioning.upbdefs.c in Sources */, + 3E2C6F3BC942A009B7939A329DC1C257 /* wakeup_fd_eventfd.cc in Sources */, + 7AD205CEF8307ACD83BCA8E2964F2098 /* wakeup_fd_nospecial.cc in Sources */, + E776B78A00C8D7679F1ABA86EA79F4E3 /* wakeup_fd_pipe.cc in Sources */, + 8768FD82DEED27AD263906C9AFFAFE09 /* wakeup_fd_posix.cc in Sources */, + F37D564ACA01ADB436F1BE553D4C0F21 /* weighted_target.cc in Sources */, + 5CFD429456739284B3FD02E248EA54F5 /* work_serializer.cc in Sources */, + 6149ADF8A6E0E8C5A5261956955D63D3 /* wrap_memcpy.cc in Sources */, + A595A7A6772929473AD9385CDFBFE59E /* wrappers.upb.c in Sources */, + 550441190BEDE70A88CE7DA8C8465469 /* wrappers.upbdefs.c in Sources */, + F010F880451E76EAA0876702261275CD /* writing.cc in Sources */, + 22CCF7D60A44A0305A85DD37225B8040 /* xds_api.cc in Sources */, + 244BC568C0EEC7FBA53B1B61725DE03B /* xds_bootstrap.cc in Sources */, + DEA5DD9E4D585C58C63FE3391FF18BE4 /* xds_certificate_provider.cc in Sources */, + 17DDBADCED9368AA23D0CAB093113A34 /* xds_channel_creds.cc in Sources */, + 89EB8AFEB0394513C643D69C9B37235A /* xds_channel_stack_modifier.cc in Sources */, + DA857281CCC559C1E5D504A1DCA0BCD7 /* xds_client.cc in Sources */, + 88DB88E08B1822227AF5C07F296D5975 /* xds_client_stats.cc in Sources */, + 79FD7EEFD5A928535CB59E530EF619FB /* xds_cluster.cc in Sources */, + 6785C35E6ABDEADBCEBBE74ABA8DFD45 /* xds_cluster_impl.cc in Sources */, + 3F4BBA7E271284EE24706D52FB541665 /* xds_cluster_manager.cc in Sources */, + 6757FA6BFDD3B601FCB52DDF261DD765 /* xds_cluster_resolver.cc in Sources */, + 3BBF2A4151EB65192F7821479CBFFEE6 /* xds_common_types.cc in Sources */, + 68E29A11D8BEB3E03EB7139F1F96FE28 /* xds_credentials.cc in Sources */, + 35F1ECC6AC9E0C709581AC88CE73982C /* xds_endpoint.cc in Sources */, + A6FA2B58EF7F353C9D0C575BB3F868B3 /* xds_http_fault_filter.cc in Sources */, + 54D39B547F2227BF3090E3E361548ED6 /* xds_http_filters.cc in Sources */, + 0BEDE255738FACD8B03791428101FF82 /* xds_http_rbac_filter.cc in Sources */, + 0BBF63ABB2AB2BEF63B6D04B8EEF5DCB /* xds_listener.cc in Sources */, + 3A78CB1CEFB3FDE474F69EA08E350D72 /* xds_resolver.cc in Sources */, + 356E922D4A63B0D32BD3D61D7DC37277 /* xds_resource_type.cc in Sources */, + 0EC60E00CEFBEDAD96A233BF6E23A20F /* xds_route_config.cc in Sources */, + 98866029A92BE005C83DEA51CF3BBB43 /* xds_routing.cc in Sources */, + 3F066ACEC7CB12540B591C9CC0737E84 /* xds_server_config_fetcher.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 488BA2BC8AA31D2DFB636FACE1C46D39 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D0BB1A3B3C1CACD68796BA1D019AB4F3 /* FBLPromise.m in Sources */, + CCB05B6ED63EE662B9BF7AE2023338FF /* FBLPromise+All.m in Sources */, + AF21ED577BA047EC0CC8FD8913CDA6D6 /* FBLPromise+Always.m in Sources */, + 019434B16C6051CCAB49ECB4AF005CAA /* FBLPromise+Any.m in Sources */, + 7B983BB35ECA2AF09AE05218454B38D6 /* FBLPromise+Async.m in Sources */, + 1060DF6C4C4C23C73CC5F05E25B39590 /* FBLPromise+Await.m in Sources */, + 2841B6D4D2649218300DF4BD277675E5 /* FBLPromise+Catch.m in Sources */, + 49F0CB4FDA938970AC9A40238D58BADF /* FBLPromise+Delay.m in Sources */, + 6681562421B171CA381A137341BF7707 /* FBLPromise+Do.m in Sources */, + 71642EEB97DDCAFF597E6BDB0EAB9559 /* FBLPromise+Race.m in Sources */, + 28AF6E76F14C282DC4DD55767A2CF915 /* FBLPromise+Recover.m in Sources */, + EB1C91756170AF80EB5158B6192F4670 /* FBLPromise+Reduce.m in Sources */, + D3A6E65778F656043E6CF35A1B2CE448 /* FBLPromise+Retry.m in Sources */, + 3E2920084A52F78581BCE816DAD7C577 /* FBLPromise+Testing.m in Sources */, + 69CC92E30E4A39BA4DA17797F93C3FF1 /* FBLPromise+Then.m in Sources */, + 3027DC0E3691908145FC97CE1D91DCA7 /* FBLPromise+Timeout.m in Sources */, + 1E97F9BA5818C902C9CB9F06898DF3F5 /* FBLPromise+Validate.m in Sources */, + 5CC9792DD11DB5017F6C606B9BD78204 /* FBLPromise+Wrap.m in Sources */, + 4707FD1766E9B11785DD1B099162B8DF /* FBLPromiseError.m in Sources */, + 84FFE2BCCA68E1D5491F4FBDAE724E84 /* PromisesObjC-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4B4A15926E7EE971DE87B952F19B49BD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9AA73192A17CD4526DE60648FCB2E36A /* arena.cc in Sources */, + 49A8CF24830B54EE8A45F1099907795A /* block.cc in Sources */, + 0C97F1931AD65AF4A6F64326301B127D /* block_builder.cc in Sources */, + DFCE2E3EE42AFAC5E16F2835CC72CEF4 /* bloom.cc in Sources */, + 0025F7E0BD4EA6DC01E8ED53A6C9394A /* builder.cc in Sources */, + FBA2D71F2B1CF4B3D4379F34A74C9499 /* c.cc in Sources */, + E3E6886D6A08854B42EC4584B7A8BC67 /* cache.cc in Sources */, + 2F1F489496C2B76B6ABF8E28BF9DC3D8 /* coding.cc in Sources */, + 2CA1D838C0A4BF5311C6BB15DB781C4F /* comparator.cc in Sources */, + DC48EAF070F07228073BAB27C602A8AF /* crc32c.cc in Sources */, + 99A105A216EDFF1C5E4C28051CDDA107 /* db_impl.cc in Sources */, + F20E2B3DD5E63EB2E4FB4BB0B880A9C5 /* db_iter.cc in Sources */, + 2380D5EECC93BBB61B832DB63504B759 /* dbformat.cc in Sources */, + CC07B7242C13929AD0E9CBFA82FA5573 /* dumpfile.cc in Sources */, + D2D301B8C9B9BEE879EF2B1214A6CA98 /* env.cc in Sources */, + 2269AA4548DA272447299B8088072E3E /* env_posix.cc in Sources */, + BF28D81AAF563BD1B9E0C8336E560AD6 /* filename.cc in Sources */, + D78C97E7A40868D0AD8D0C11F44D3D91 /* filter_block.cc in Sources */, + 46004365249EF1060AAFFD64C0EA3FD3 /* filter_policy.cc in Sources */, + BC54E398BBF194A14F3286C7A7BCAD03 /* format.cc in Sources */, + 2D7D001E9476355EA2E8DA3AF3BEA753 /* hash.cc in Sources */, + D05FBE96408ADD2BB3DD8A2F8CA9802A /* histogram.cc in Sources */, + 4930ED7B9CD60FC5CC6537CB07B24320 /* iterator.cc in Sources */, + 23A5A8271E4FF959BC43DAF87BEEF62E /* leveldb-library-dummy.m in Sources */, + A815060810A40C21A617EA5A28C95432 /* log_reader.cc in Sources */, + 102C7ACD57856214AA8F004206B6997C /* log_writer.cc in Sources */, + D1CDB18E3DC1F846DA5F02A26E82E4B2 /* logging.cc in Sources */, + 3C7DACD7DA29A93A2951DE5F3B1B50EA /* memtable.cc in Sources */, + A5FBDF9904CFC6588C8B534940EA092F /* merger.cc in Sources */, + 3227CCD4E33198C025087A9A2E507E57 /* options.cc in Sources */, + C28D71CEC9D385C607F85977C7937E2C /* repair.cc in Sources */, + F750BC027E72A6B375B096DF8EAE0C81 /* status.cc in Sources */, + 311C2F9FD5305384396D7E0DF24128F3 /* table.cc in Sources */, + B94D01ACDC2BB5871ED6B417B67C3B5A /* table_builder.cc in Sources */, + 1DA3D538B05E5EA7D8AFDB474E54DFD0 /* table_cache.cc in Sources */, + AB212EBA9BFC48923934F637B0ABE788 /* testharness.cc in Sources */, + 8C960FEA44C13262CB842DC90D790DB3 /* two_level_iterator.cc in Sources */, + F3519538EA55158D4FB2C8AA2D67A827 /* version_edit.cc in Sources */, + 52323F4E4BDA48D24743997D1D746073 /* version_set.cc in Sources */, + D4CBEBE92B08F4AAAC81C9730CA98B4F /* write_batch.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5DD59E9C63E44EBD661238A069EBA022 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C46F71ED3D114AA98956E46659B326B5 /* abseil-dummy.m in Sources */, + 5765AF9A44AD5F942F23CC29365CF82D /* address_is_readable.cc in Sources */, + CAB8E37BAD086C978EC68574830253FD /* arg.cc in Sources */, + 87AD3321F53A4AFE75AAFBD267A0A173 /* ascii.cc in Sources */, + 41536CA2B68BFBC2D30B096B5A6B43C4 /* bad_any_cast.cc in Sources */, + 35083F60CD3622D408CBB42683070388 /* bad_optional_access.cc in Sources */, + F170AE3004F637F14A5F11A09B120282 /* bad_variant_access.cc in Sources */, + EA1BA5D286BD6E835CC86EFE8912C5F6 /* barrier.cc in Sources */, + 3A77FF30148E982F6CDAD9EC94CC26D5 /* bind.cc in Sources */, + 8CBE562D8CB143563C7883ECF1D8B907 /* blocking_counter.cc in Sources */, + 6CAEBF6ABAD047FD83C61446EB626E38 /* charconv.cc in Sources */, + 8B9BACC083BBBC84607319728447ED73 /* charconv_bigint.cc in Sources */, + 634B33D2E9200D67A3195AC8BCF5092D /* charconv_parse.cc in Sources */, + 4F334C0E1089B83A38AF48D11CEEA5BF /* city.cc in Sources */, + AC41148EDF6D1EB2D1F997B45DD60818 /* civil_time.cc in Sources */, + E70A8F6E8B0F7470D2BFB949F388301B /* civil_time_detail.cc in Sources */, + ECEF632B98385AB2259F5199618B0613 /* clock.cc in Sources */, + D3F718A5C077624811F0A34597A490D1 /* cord.cc in Sources */, + 7F27F4CD213155D8179EA0F912B370F8 /* cord_internal.cc in Sources */, + 002BFF7CD40104E01FD4133578D498C9 /* cord_rep_btree.cc in Sources */, + C15DCC277D0B8512CACD26925A6BB23C /* cord_rep_btree_navigator.cc in Sources */, + C33BB660F5E3A649C2C7CAB37FDFC343 /* cord_rep_btree_reader.cc in Sources */, + 325DF5595C0437E248D935A0D4E05857 /* cord_rep_consume.cc in Sources */, + 0EC64966923B4F7C291AA3829616F653 /* cord_rep_ring.cc in Sources */, + 1B19688EE9FD31F82DD75B1DA7F72A50 /* cordz_functions.cc in Sources */, + 27911608AED15554ACF3023D5DA2039F /* cordz_handle.cc in Sources */, + 63D68DCB1E6F1A29AF48B2DC0358A58F /* cordz_info.cc in Sources */, + 6A7CAC02BC87078E79A3DA520A6772FF /* create_thread_identity.cc in Sources */, + CBD02524825BA1DBD1DC5810C1A75882 /* cycleclock.cc in Sources */, + 5EEE8DB30B2BE5DDD4E2E35B14A1B498 /* demangle.cc in Sources */, + 7ED1FA64931002630E2A992001A3420B /* discrete_distribution.cc in Sources */, + 3BFCD25FC32E95750C647222F9A250A1 /* duration.cc in Sources */, + BBC40598E541C684B1B0FDF3550E6416 /* elf_mem_image.cc in Sources */, + E36D6D8B57BECD70327A8DAC7CB4F952 /* escaping.cc in Sources */, + A384ECACFD8E38D58C24FDF4C60A6925 /* escaping.cc in Sources */, + 50A8FA1C2F135778DDC2C1BE4E067980 /* exponential_biased.cc in Sources */, + 0FD2F856B0FEE91C57B6002C1D5B27F1 /* extension.cc in Sources */, + 537CD6DF1684C5F050099832193964EB /* float_conversion.cc in Sources */, + A56A750127AE9BD04D7A3CAA387EEFDF /* format.cc in Sources */, + A9C86BABF5F117241781EAF088EABA3B /* gaussian_distribution.cc in Sources */, + D00288D96B16B3E743EF709A25DA776F /* graphcycles.cc in Sources */, + F06C0AA43875B837A83E3C3B88633CED /* hash.cc in Sources */, + 0F55EBDDE4745C9558CEA7B8EC545D60 /* hashtablez_sampler.cc in Sources */, + 3C2B2B6DD2ACD550639A9A89D3F0A601 /* hashtablez_sampler_force_weak_definition.cc in Sources */, + 0D361D228764EC62B7BAF69A2D3C7514 /* int128.cc in Sources */, + 89E45A27E3B5BEED6E94123253723515 /* log_severity.cc in Sources */, + 3965DAD2D3547FBF8BEFB3FF7009B4B5 /* low_level_alloc.cc in Sources */, + 74B6FCA1C08A733B38CB365F87E35845 /* low_level_hash.cc in Sources */, + CE8A7DF7B8C8F3DA24FF8C6F03261B06 /* match.cc in Sources */, + 654430F2A7F6550503A970B63108AC79 /* memutil.cc in Sources */, + B95F82985B2D94763A46F56A747980A9 /* mutex.cc in Sources */, + 6B24146DF95B87007AFFD8AEA6689093 /* notification.cc in Sources */, + FAD6AB78407F18E4BD36C6ACD7A516F0 /* numbers.cc in Sources */, + 04E36C359C17BCB54D33D719D45AD890 /* ostringstream.cc in Sources */, + 9FAA2A9A7283ECF7E37DB79F8A7ADBBD /* output.cc in Sources */, + 49CC836CFA3AC36686E4A3853DEA10FA /* parser.cc in Sources */, + 5FF2ADCA878C3BC2FFD1B6709EE01D97 /* per_thread_sem.cc in Sources */, + 25486B0B71B5BCBDA2A5B51D8DEAF9BF /* pool_urbg.cc in Sources */, + B1C523C74463089710EA9F89D8B2DF51 /* randen.cc in Sources */, + F1B1B0BA2704238558198EB0F6E00691 /* randen_detect.cc in Sources */, + 5CF46B1C8EF4A227D803E635A06C2B2D /* randen_hwaes.cc in Sources */, + A5D5CDF7BD46FD67BD77FF495534A146 /* randen_round_keys.cc in Sources */, + 3B093183EA4D31B692E0B19D5EAF584D /* randen_slow.cc in Sources */, + 82EDBCBCCD10F657DD71D4BA921A5AEF /* raw_hash_set.cc in Sources */, + A1888CD429631AC456850274DE4C9464 /* raw_logging.cc in Sources */, + D03F753578EB540440D209D53880EA62 /* seed_gen_exception.cc in Sources */, + 796BB370F48BB87A1B5AF7A567284B9A /* seed_material.cc in Sources */, + FC2D671B77B8108E7DE11313FE9C6C8E /* seed_sequences.cc in Sources */, + 3D7BC818A74728CEF80E11A3ABCA3CBB /* spinlock.cc in Sources */, + B3A1DD7C647960AF89D24B2A0EA93804 /* spinlock_wait.cc in Sources */, + 5D89439E73C6051449A1BBC23D3FCAA6 /* stacktrace.cc in Sources */, + 7FF78F218B57EAE406508C51CF4538B8 /* status.cc in Sources */, + 1F78099C9383B2AD10CD42D324F17631 /* status_payload_printer.cc in Sources */, + B3F64DBBFDEAADBDB6ED72A3841D7C9B /* statusor.cc in Sources */, + F12A187DBEAD7DC3E9E575050F512C4E /* str_cat.cc in Sources */, + EE5070A7069B3723A4DC8A10DFB214E5 /* str_replace.cc in Sources */, + 603E55BE94AF6589AFF493AA29EDA45C /* str_split.cc in Sources */, + 2EEBCE1D71326D57B1387DB60E3531C4 /* strerror.cc in Sources */, + 3FE9786F6E149CEE1F0BFF9D1FA2973B /* string_view.cc in Sources */, + 35945CC83D192C6A5E9665338B10BB8F /* substitute.cc in Sources */, + 2406083F5EDB5F6B145E0F766497F19B /* symbolize.cc in Sources */, + 2E6CE5013AB8919E4B94450DA5FC9E6C /* sysinfo.cc in Sources */, + 11AEEA3B6C1C09CD2E9C842672362369 /* thread_identity.cc in Sources */, + 886220C453D34991C1216164B410930E /* throw_delegate.cc in Sources */, + ED69785A51D5FDC8AAB2465086FC12EE /* time.cc in Sources */, + 85371B978A89A2C3BDBCEBE0086884AE /* time_zone_fixed.cc in Sources */, + 3FE61D4659F5321075D8B67E9D34017D /* time_zone_format.cc in Sources */, + 20CE40E0BA78F635800CE45C96B76455 /* time_zone_if.cc in Sources */, + 9350DFA326FD94DA8AF1F35A4DF297FA /* time_zone_impl.cc in Sources */, + 165A7FDA0BB94EEA004942D43C437052 /* time_zone_info.cc in Sources */, + 146C62D749D14A6F01DE2DF698380805 /* time_zone_libc.cc in Sources */, + 0892933961B384793268338C5A7F8E18 /* time_zone_lookup.cc in Sources */, + 32DDB80CAB80FA8BE9BC11B7D5B0B706 /* time_zone_posix.cc in Sources */, + 80E281ABE01ABECAF0F22F44E618AB8E /* unscaledcycleclock.cc in Sources */, + AE5DAC02439A8D6CCDDB2995676DC17C /* utf8.cc in Sources */, + 989F6A0B4F5DDB5264730154B74C0F0C /* vdso_support.cc in Sources */, + 84DD07901BE65F1DDFC06FE1B145B12F /* waiter.cc in Sources */, + E6D523C7F35D18FAEE444C0F6A00D160 /* zone_info_source.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 653164FF19E5F7EA34A22C82FF97D613 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9192BE2158EC823C31516AE4E0C02A31 /* nanopb-dummy.m in Sources */, - 6837311B86FB6A99E41D9D0C3793992D /* pb_common.c in Sources */, - 5B9C2FFE9721B9BD2BA7F54CED18BD92 /* pb_decode.c in Sources */, - 6001176B94C4F8270A8633AD73AD99C8 /* pb_encode.c in Sources */, + DF4F4AB093EADC842D90380F6C87E0C7 /* GTMSessionFetcher.m in Sources */, + DF81AF55064431276309A1F95D602892 /* GTMSessionFetcher-dummy.m in Sources */, + 55CEFBC6713C04AF2BC0A5DD948DB374 /* GTMSessionFetcherLogging.m in Sources */, + 1BF5943DB19A5CD751C714F47232A9EB /* GTMSessionFetcherService.m in Sources */, + A24913F61D40F579224B900257F809FC /* GTMSessionUploadFetcher.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2BDB654B4647E3CF39C444DFAACF5E20 /* Sources */ = { + 6D8675DFD431BCB337011A154942780F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3600150E4DA6C317ED9A5470C3C5DAC8 /* GTMSessionFetcher.m in Sources */, - CD613D04F23E174B24F3C86D8EEDE82D /* GTMSessionFetcher-dummy.m in Sources */, - ED63FB40FE1577D456E74120F88FE7AB /* GTMSessionFetcherLogging.m in Sources */, - 4DB8F814724B77A2032E5BD05DE35F13 /* GTMSessionFetcherService.m in Sources */, - 1F53997C5957F63762A0479883F2ED3B /* GTMSessionUploadFetcher.m in Sources */, + 8966EE40D797DC04EA164D90327BEFF8 /* nanopb-dummy.m in Sources */, + CD40AEE8927181E4F9FCC51494C80EC1 /* pb_common.c in Sources */, + 260F9DA6A8874F3006A9BB3AF9213D41 /* pb_decode.c in Sources */, + C6CB919E02A1336A50A63ABF435BF9B3 /* pb_encode.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3376505A24C6C84E41D073ACD909EB3F /* Sources */ = { + 75148CDA8ED67C8E7FEC34449682C033 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2A02BD1EDEB3FA1B2901A0139C3CDCDF /* FIRCoreDiagnostics.m in Sources */, - 9DFB5B6BAB6BADBC984298AF7EFB0029 /* firebasecore.nanopb.c in Sources */, - 2F776840516D900FAC3E0F55066388D1 /* FirebaseCoreDiagnostics-dummy.m in Sources */, + E31BC6354FC36A10033916B3B29146D0 /* FIRCoreDiagnostics.m in Sources */, + 1AC45FF9A34A23531068E5AE86DBA8DA /* firebasecore.nanopb.c in Sources */, + E1EC8AED3416896653578BF11E689F96 /* FirebaseCoreDiagnostics-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4841914965D33C7923A15CFFC57F6977 /* Sources */ = { + 82BDE085936ACDD40240C3F932E4DBB0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7C84A6888DD8133AF566B2FD66C6C0FF /* async.c in Sources */, - 5352E4788B1C1499A2DE7D92DD9129FD /* bsd-ifaddrs.c in Sources */, - 80DC3910E66B97F61649F15903642FC9 /* core.c in Sources */, - 113EC070CC061253AEAF49DA5D3533BA /* darwin.c in Sources */, - 68860D1E4239BF8A0D12846B5F44538F /* darwin-proctitle.c in Sources */, - 6D1C4647B7435D231F6AE2D04D6E5D11 /* dl.c in Sources */, - 0DA15A78B67CD81D52A9F51DED1B2C60 /* fs.c in Sources */, - 13CF6D02F668ADF1DD37DF7C446533A6 /* fs-poll.c in Sources */, - 817E701F2E6DF9E26435FD8835A52585 /* fsevents.c in Sources */, - 6378F6CFA73CBA72BF76766E017A97B5 /* getaddrinfo.c in Sources */, - B10415227D3990D451B282B92CA59C7F /* getnameinfo.c in Sources */, - 46240CEA7218C8F0A5CDF28D7EA0D3E3 /* idna.c in Sources */, - C76A230CB2D1CFD56C73774CABD37EE5 /* inet.c in Sources */, - E1D08710CD9E6F12328008FB7507C137 /* kqueue.c in Sources */, - F7E369989B5AE1882B78F41EE5326AEE /* Libuv-gRPC-dummy.m in Sources */, - 45AD9BE5F298F03D4195BB67DAC500DA /* loop.c in Sources */, - 31628E3AA7AB7F09270A58385C47BDB6 /* loop-watcher.c in Sources */, - 1D9337C78583D5ED7B078815563FD0AE /* pipe.c in Sources */, - A61E688CB368B7192721A422D72633B1 /* poll.c in Sources */, - 8BDFF30C93C8EE5136038028313540F5 /* process.c in Sources */, - FE029AF88C341272A70EA1D9C2BACD9A /* proctitle.c in Sources */, - 99918E97713ECEBEFF29B4ADDCD7D359 /* signal.c in Sources */, - 53364EAD701D357D3D744B88AB176507 /* stream.c in Sources */, - 4BF303CFB33348124EADB60DDA14E817 /* strscpy.c in Sources */, - 5C60CAEC33ACBB7F4C145B8C37783179 /* tcp.c in Sources */, - 3664C400545365D4616FDEDE4D1B1157 /* thread.c in Sources */, - 7E64A429E1EA6C47C37C05B12FCA8E24 /* threadpool.c in Sources */, - 286891174ACD22737905E2664D8150BA /* timer.c in Sources */, - BF70D23030D4407F769E44D1B39EB1D6 /* tty.c in Sources */, - 2BB1B3003F0DDECEA55FD16F44250DCD /* udp.c in Sources */, - CE6A88B4379738666067799DEE753353 /* uv-common.c in Sources */, - 8512E07A745D3F7DD596DBC794EC30C9 /* uv-data-getter-setters.c in Sources */, - C19087712C382BA28EFDA3796E8CFE2E /* version.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4FA1150C7382824CFA7539A5C7CDA1A9 /* Sources */ = { + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 975DC96BEB029318CA7C98F5645833CF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C905B371A3C5DA13811FFC095509E8DA /* Pods-Flash Chat iOS13-dummy.m in Sources */, + 193E684934CDF489D4C664908EDB44AB /* Pods-Flash Chat iOS13-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 59C4FB45D0DCC27647028947A76028F2 /* Sources */ = { + AC6455515647BB47BB31AA098CCBBA96 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 27EC6DAB91CFDA40BAD1A7ECCE78C6D7 /* accesslog.upb.c in Sources */, - 69B208F56C09021CE1DF4767E4087876 /* accesslog.upbdefs.c in Sources */, - DEA2B41FC40880122FBF98729E80BE4C /* activity.cc in Sources */, - 603DF9732772151B3B97D416F8083014 /* address.upb.c in Sources */, - BADF5A2443CE395A60BD6AA037A7D902 /* address.upbdefs.c in Sources */, - A1E2165B35831D77723E938CECA9550E /* address_filtering.cc in Sources */, - 4476215307C0A494D811B6C864FFACAB /* ads.upb.c in Sources */, - E6481C205947BACFBB82257059A0A861 /* ads.upbdefs.c in Sources */, - 354D2029BD382B6B22AFE13521C7AA8F /* aes_gcm.cc in Sources */, - 1CD677994D351A34B18428C258B7EBB7 /* alloc.cc in Sources */, - AE81AB0B3013AD20D565AD67413C22F2 /* alpn.cc in Sources */, - 233FA1F128390FA94A64686943BD139E /* alts_counter.cc in Sources */, - 76126D10510261F355BA4727771032FE /* alts_credentials.cc in Sources */, - 8078D89C1E04401E9BC79A37705B75BC /* alts_crypter.cc in Sources */, - AD8E4AD6F23EF654C1E94B4830955AD7 /* alts_frame_protector.cc in Sources */, - B580036725B40D9F833D2A5FDFC62396 /* alts_grpc_integrity_only_record_protocol.cc in Sources */, - 3C6093F63D62CDA812A7A2EDAB7A932B /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */, - 10CE66E68C33DF46C72CA9A7ADBE2504 /* alts_grpc_record_protocol_common.cc in Sources */, - FA20C126EA9FA533B7874F9F96106DB0 /* alts_handshaker_client.cc in Sources */, - CCD7AC941AD56396A9B9850682305943 /* alts_iovec_record_protocol.cc in Sources */, - C469BB6F8D0665A837036909848CDA04 /* alts_record_protocol_crypter_common.cc in Sources */, - 44074425FE45DE1DB6B63A3C382DF4EF /* alts_seal_privacy_integrity_crypter.cc in Sources */, - E43C2D64F8FDA3C7734BB1F030BA26C9 /* alts_security_connector.cc in Sources */, - 3195A41FC006AB94B5980EBC0E5906C1 /* alts_shared_resource.cc in Sources */, - CD3E7675FF2D280AF948AA9654E5097D /* alts_tsi_handshaker.cc in Sources */, - 4F032C6AE9D7FEE839C288C48179BF27 /* alts_tsi_utils.cc in Sources */, - BB36DA492E97BD47AF985E95D7D0737E /* alts_unseal_privacy_integrity_crypter.cc in Sources */, - 233806BC76972D1FACE5CDD3B4DA370E /* alts_zero_copy_grpc_protector.cc in Sources */, - 72DD41597062BC43288CAA10FFEAB5EB /* altscontext.upb.c in Sources */, - F44CFDDE798D787718C56C86A9EEFB70 /* annotations.upb.c in Sources */, - 444021B2B84F931342F3E996E56F9097 /* annotations.upbdefs.c in Sources */, - 7C70B37C596BD48564371C13E15D337A /* any.upb.c in Sources */, - BF051C751501A0149A4B986366792C00 /* any.upbdefs.c in Sources */, - 381A60EC54B70C74A42FF78A5FCA9825 /* api.cc in Sources */, - ED940AFE99B2DF011F281542F547804B /* api_listener.upb.c in Sources */, - C159BA973C615BA4E4C28D6BCE2DA41A /* api_listener.upbdefs.c in Sources */, - DD26A6C2CA78E04F53D46FF8249930F4 /* api_trace.cc in Sources */, - 5FD714FFD906830E149DC15A639D6EDF /* arena.cc in Sources */, - 34959423788E0F1C821FE44E96BB5C1C /* atm.cc in Sources */, - 7D7EB2B08994DFF587F7082C45298C8C /* authority.upb.c in Sources */, - 8E7DB0A8C957F83362D4B7C964BF4968 /* authority.upbdefs.c in Sources */, - 894B12C9C6A17CA26D7B4C182DF5346A /* authorization_policy_provider_vtable.cc in Sources */, - C1779BF58FD9152C6E85C64C749728CA /* aws_external_account_credentials.cc in Sources */, - 2E755D79CC04947E1B1DFF5F16D0CE97 /* aws_request_signer.cc in Sources */, - ED77362D110A7ED2FD43546774C5B765 /* b64.cc in Sources */, - 661BE20DFD6540774D1B79D38160ADC5 /* backend_metric.cc in Sources */, - 1870BD3A0E688D1F337E0CB8C0D8D6D2 /* backoff.cc in Sources */, - 6C34CC768BF3412046F683DFDCA49E0F /* backoff.upb.c in Sources */, - FE05DE96091BAFCCBDB990086B1D29AA /* backoff.upbdefs.c in Sources */, - 284861819E16DC1FC134D1C05E0804D5 /* backup_poller.cc in Sources */, - EFDF05B55D1F296AD2BA268109D1C6C3 /* base.upb.c in Sources */, - 2B01F73B71C3497D147125C5B6F72E6C /* base.upbdefs.c in Sources */, - FFFB2FA3A20C849FBB9ADA7D634375FD /* basic_timers.cc in Sources */, - BDE26FBA0FF2E0F0E32F0AA0CA3FF267 /* bdp_estimator.cc in Sources */, - 284133F660AD491CF310C2F477D07BC4 /* bin_decoder.cc in Sources */, - 38C8791C7D84FA07074879CF3FBD1CA8 /* bin_encoder.cc in Sources */, - FDE95DF37639B4FC55E545FC2962A73E /* binder_resolver.cc in Sources */, - BD8BE8EC3013BAD4C3C2C230B3860713 /* bitstate.cc in Sources */, - 81061EB41EE17D679B59AEDD938D4A36 /* bootstrap.upb.c in Sources */, - ED323F91E705C1C238406F43F3FF0AC4 /* bootstrap.upbdefs.c in Sources */, - C4A3F3BFAAF8840E037D4742584C5777 /* buffer_list.cc in Sources */, - 00A277B1A1CE40312B6B81C78815FA85 /* builtins.cc in Sources */, - 3FC900461C58554575E7A21AEA677F03 /* byte_buffer.cc in Sources */, - EAEB5BAAA8996BF9D0957EF7540428EC /* byte_buffer_reader.cc in Sources */, - A67B8874BE73C52DDF0235BC67075E0F /* byte_stream.cc in Sources */, - A6DDD19D7B0CF9B38656856D5D78395A /* call.cc in Sources */, - 5C4C47E73D51919640F56FBD0B0BE71F /* call_combiner.cc in Sources */, - 3780570A5B7ACCD4C7517A8E48564637 /* call_details.cc in Sources */, - 5EDC5D729AACC80891F47F4BAC966EBF /* call_log_batch.cc in Sources */, - 60AE782B28432A9C1F5A7C1561C6313D /* cds.cc in Sources */, - 5E576D7B91DF1613578E0A75E7B9EA5F /* cds.upb.c in Sources */, - 41703A397BE198DA6D1DDA0DB237BF61 /* cds.upbdefs.c in Sources */, - 40B35D561F9C57077A843645B3F2F30A /* cert.upb.c in Sources */, - 623A6565FF2AA223CAE72C50712CE9EB /* cert.upbdefs.c in Sources */, - ADFEAD438142C78F5B5D308F25AC0DC7 /* certificate_provider_registry.cc in Sources */, - ACAC8F56F538A25D0E44DC9EA60D77B3 /* certificate_provider_store.cc in Sources */, - 42F40EBDF9F7B57E31D791820D6BF7A5 /* cfstream_handle.cc in Sources */, - 0231FE87233328BDB77819507E5CB9A8 /* channel.cc in Sources */, - F18CB2E8ACFA2ED2C638A5C4F852C101 /* channel_args.cc in Sources */, - 1876BE18B8483C2A4D4417D015404737 /* channel_args_endpoint_config.cc in Sources */, - 5C6F7137163293B442D145EA11DF8D67 /* channel_args_preconditioning.cc in Sources */, - 412DA26AC8F2A56C765944D8EE735DBE /* channel_connectivity.cc in Sources */, - 8CE81AB02DF9FD64CD1ED05B854D302F /* channel_create.cc in Sources */, - C8935EE3A37E3680AABE25185598D9B6 /* channel_create_posix.cc in Sources */, - A609B4F823FD0872C817FC3FE0CC8885 /* channel_init.cc in Sources */, - 0C8CBB8F9DC11CBE0640A0071092CA05 /* channel_ping.cc in Sources */, - F65C5546CB44E6B74269632DFDED36CC /* channel_stack.cc in Sources */, - BB88E58FFAE582F2B34A7A02F8F39473 /* channel_stack_builder.cc in Sources */, - 51029199C279B94C09998DBFA218CEA8 /* channel_stack_type.cc in Sources */, - 5BB3A35B7CCA4B60B6A2DC0CF7CFC729 /* channel_trace.cc in Sources */, - B97994ADCF71100CB1FF6FFBE1F71A76 /* channelz.cc in Sources */, - 135736FBB8674812C7A074E2A84DB6AD /* channelz_registry.cc in Sources */, - C4FFECC371841CCAF6118B858C53A04B /* check_gcp_environment.cc in Sources */, - C288434ADD82952344A20A8206BA9C82 /* check_gcp_environment_linux.cc in Sources */, - 6B8DF61179093B58A1D52C79B855162A /* check_gcp_environment_no_op.cc in Sources */, - 045EB1EBD97D7A7C4F6C225399ED170E /* check_gcp_environment_windows.cc in Sources */, - 55AC91720A5DEA02662D4E6AA349701E /* checked.upb.c in Sources */, - 693ACB20A78C93DBABB7D4DDC63223A0 /* checked.upbdefs.c in Sources */, - C2C800BE5E8E75A895E6759EEE69CB20 /* child_policy_handler.cc in Sources */, - 1BB6B2519441E6784704908A445AB760 /* chttp2_connector.cc in Sources */, - D9E75EA7E87DD13178A03414FF9FE040 /* chttp2_plugin.cc in Sources */, - 4AD4B58C45CC62B2E935181A16CF4FBB /* chttp2_server.cc in Sources */, - E9D3E289DEADC152F8BE772F8D63D0D3 /* chttp2_transport.cc in Sources */, - 19D667A8B2A796693A762E42C235001F /* circuit_breaker.upb.c in Sources */, - 0DDAFAF14265130AC359D2B71F99BCEC /* circuit_breaker.upbdefs.c in Sources */, - 440232125B18190BF3D07D61C830FF13 /* client_auth_filter.cc in Sources */, - C0DD218A1B5E1BBDF0D75EED369E0AE3 /* client_authority_filter.cc in Sources */, - C8DE1757E23C6AB0B8801C3B2FD17E42 /* client_channel.cc in Sources */, - 8CA1E1DC328AAE3EB3B82600DDFE5C6F /* client_channel_channelz.cc in Sources */, - 2CC3FCAF03581EAB3299991CE205C922 /* client_channel_factory.cc in Sources */, - 4494262F7E1130D12D0256CD5A33D072 /* client_channel_plugin.cc in Sources */, - 44A5360ADC52A5FE4FA0E722B5BD1061 /* client_idle_filter.cc in Sources */, - A7A9618C90D66C7B0A05ADD3ACAF77FF /* client_load_reporting_filter.cc in Sources */, - 0C2A412C549EB24D396FF85DC8CFB12E /* closure.cc in Sources */, - 1535A955042B18BA8644E8F1627C383A /* cluster.upb.c in Sources */, - 98DA50013696A330CC1BFB9F7984AA6E /* cluster.upb.c in Sources */, - A40E5D5C8767ECD534E748177E115F8D /* cluster.upbdefs.c in Sources */, - D761B19E64E92D579A144CB32AF1DAFA /* cluster.upbdefs.c in Sources */, - 5DCA9FC6FD9623E4D2FD1A9E5E8F429E /* collection_entry.upb.c in Sources */, - DB0FA55D0418030DE98EBF01FADAB5FB /* collection_entry.upbdefs.c in Sources */, - 7C4BFF076C62E339A90D3440585CAC2E /* combiner.cc in Sources */, - 96CE6CBB59D8AD4D097421306E5B9C6E /* common.upb.c in Sources */, - 83CFCF17CEBB76AC332AE424A0982B6F /* common.upbdefs.c in Sources */, - 31D409D0590D8CC560C2E9BC3A7483DA /* compile.cc in Sources */, - B9EB29D8E9E17EFCA52636263BFBCE2F /* completion_queue.cc in Sources */, - F4C2F4A95B58797BAE9517A1B61C2F22 /* completion_queue_factory.cc in Sources */, - F7D9B8FD2965F70CA597660692130335 /* composite_credentials.cc in Sources */, - 1E25DEB4A9D141489F7D0D7D653569F1 /* compression.cc in Sources */, - 818D4E24D5F967E57F86805D6710F292 /* compression_internal.cc in Sources */, - 6E715BD2BFA458790B780633BBBB3B3C /* config_dump.upb.c in Sources */, - 3134BA25C3BF8C3629169D0822073150 /* config_dump.upbdefs.c in Sources */, - 4A3ADA08DDD850CBEC7D3F37308003F2 /* config_selector.cc in Sources */, - 3E907E583682AFF00CE5B66E0C54323C /* config_source.upb.c in Sources */, - 2B8737C75DDB04EBB2A90E023B8AB204 /* config_source.upbdefs.c in Sources */, - 1DF50D697DA2D0556C89948F914632D3 /* connected_channel.cc in Sources */, - 95B78C9FFD2D92301957408326F32058 /* connectivity_state.cc in Sources */, - FE50CE714205EA5BA09D17BF7A631881 /* context_list.cc in Sources */, - 765A14994B9390B3E3ED382AF6FD3BD4 /* context_params.upb.c in Sources */, - DEE949367C7F3C424B143934B54AB771 /* context_params.upbdefs.c in Sources */, - 32762D9E8B5AC74CDF48D2C9A9BA85B7 /* core_configuration.cc in Sources */, - EA193834ECE5AB6CE759E09CD8C37185 /* cpu_iphone.cc in Sources */, - 6B5100506C00FF02CF9CB45A29746C7D /* cpu_linux.cc in Sources */, - 8A65F4CA3B17E27C19A191D993AD64C3 /* cpu_posix.cc in Sources */, - 79A733B29183007FEF6FAF666E36ADFA /* cpu_windows.cc in Sources */, - 78986EE5674F4F5EDA65FC17D77ED80C /* credentials.cc in Sources */, - CDB0B9540541089DE49ED15FCABA759F /* credentials_generic.cc in Sources */, - 62CC016D0E94EA715FBBDA25C365E4B0 /* csds.upb.c in Sources */, - 536605E13B631888E5A2B508E7E4A93C /* csds.upbdefs.c in Sources */, - C21C3B63A0F83381BD6EC403E677C951 /* custom_tag.upb.c in Sources */, - 4C8FBBB9B71222EED603984260A014E4 /* custom_tag.upbdefs.c in Sources */, - 3AE7FAF194DAEBFCFC3F7ABE22D4CA72 /* deadline_filter.cc in Sources */, - 075CC6902F4424185EEE49BD9073097A /* decode.c in Sources */, - 041EF3CA60F5CC237F610FB87D862ED0 /* decode_fast.c in Sources */, - 68DBE33915888768831249B41AE55CEE /* def.c in Sources */, - 2023944858590D4197E7F9A14CE617C8 /* deprecation.upb.c in Sources */, - 0E4580EBA0A1F919FB1C7BFBC5899BE2 /* deprecation.upbdefs.c in Sources */, - FEFD316603FDE2E1BA7641AFCC8AFDC4 /* descriptor.upb.c in Sources */, - 1E61767BD763252C026885EF08F2A18A /* descriptor.upbdefs.c in Sources */, - C9F4DDE12DF2048B465F206F233869F3 /* dfa.cc in Sources */, - 0AAFC6EDB6F9FC11FB35CBF7A2E6CE29 /* discovery.upb.c in Sources */, - E5673D7B49DA0548B36C7AC5ADD4FBE6 /* discovery.upbdefs.c in Sources */, - 0D9948FBAAA520C6CF048D77559896CB /* dns_resolver.cc in Sources */, - 1CD3D097D58D4CAD4AA9DBFC161EA544 /* dns_resolver_ares.cc in Sources */, - 35C3AFE4F44A7348330D0F8057F0B3E1 /* dns_resolver_selection.cc in Sources */, - C5F843509F665B009C303A3F99B41B86 /* dualstack_socket_posix.cc in Sources */, - 918D7C30385FA4768615F234FA4B4AA1 /* duration.upb.c in Sources */, - 9DEF60CCDF71421EF8F0ACD70CABD71F /* duration.upbdefs.c in Sources */, - A20A027FDA6B2A9B145E78351E2B4588 /* dynamic_filters.cc in Sources */, - 21B064316D1A80ED205694EF7B4B6FBA /* eds.upb.c in Sources */, - 2FB6DEFD2963D777639F82B68ECDD5C0 /* eds.upbdefs.c in Sources */, - 51E8A1A565AE72727C751BE433981C5D /* empty.upb.c in Sources */, - 348FFA2E12B5AE87381873B54233B1C2 /* empty.upbdefs.c in Sources */, - 7DB8169D518CEF91A5F039697C5FF77C /* encode.c in Sources */, - 479D1E936EF82C71D9CBC07A9302AF53 /* endpoint.cc in Sources */, - 362EFA264EA980FAD15E36EC94D49CDE /* endpoint.cc in Sources */, - 995FA7F1A62FE96D70797DD66788B426 /* endpoint.upb.c in Sources */, - F4992C454EF94E5549A409B5B94FB713 /* endpoint.upbdefs.c in Sources */, - EBE434DD46D36A90D5E840F14B9426D3 /* endpoint_cfstream.cc in Sources */, - 8A2D2E6F6F2299E28C26DA3F35D43EBE /* endpoint_components.upb.c in Sources */, - A6E6FD5A8E83B7C227992A58E754C994 /* endpoint_components.upbdefs.c in Sources */, - E12EC74CDB6AAB7A62607B04C98D6EFA /* endpoint_pair_event_engine.cc in Sources */, - EB4158596F062DC15E7DC35D543083EE /* endpoint_pair_posix.cc in Sources */, - 28647D3DBA713E891E664E5BE120552B /* endpoint_pair_windows.cc in Sources */, - C1A4C7B3E1D894CA48CFF6515ADA44D0 /* env_linux.cc in Sources */, - E703A1F206367146DDD1BE413248AE3E /* env_posix.cc in Sources */, - 42E32C8B9C98A37A946CF04FCBE7E988 /* env_windows.cc in Sources */, - 11502998E8140CAA6228CE55507B8B6E /* error.cc in Sources */, - 2AACD874B2930CCB2F3307BF692A5AF3 /* error_cfstream.cc in Sources */, - CD6BCA347B9B646653596A8720D93269 /* error_utils.cc in Sources */, - E694A71D68E58788DCEDB94169C6F2A5 /* ev_apple.cc in Sources */, - 9192FF9D85605BB373AB3A743E023E5C /* ev_epoll1_linux.cc in Sources */, - 5064FE4E8A527BF045A6E00505D45D22 /* ev_epollex_linux.cc in Sources */, - 111476764AF56128AEF7EE137B9C83BF /* ev_poll_posix.cc in Sources */, - 0E812C754C27449DFDA150983C6F1A13 /* ev_posix.cc in Sources */, - 5F20C30F7D3E7BAFE32545865A50CD0A /* ev_windows.cc in Sources */, - BD98D2F9E2B19EF76BFADAE23293167E /* eval.upb.c in Sources */, - 4FF8972BB9FE8882BA922AE502D5AE45 /* eval.upbdefs.c in Sources */, - 5FE7E1973A551C3545A4EDA7D6ACFBB2 /* evaluate_args.cc in Sources */, - E14156EE455529F493E97BB88D875494 /* event_engine.cc in Sources */, - 0B4F882FC0682446C619DED832783A94 /* event_engine_factory.cc in Sources */, - 3F83C80EBBB891C77D4AAB8E3D03952B /* event_service_config.upb.c in Sources */, - C6FD47FF91F4F6F875C32C007DB16985 /* event_service_config.upbdefs.c in Sources */, - 9BEA7BB5A5A79D836140F65577DA4A85 /* event_string.cc in Sources */, - DC9BF3D8ED90E34469C3A190E875FDD6 /* examine_stack.cc in Sources */, - 28B61607AD36985F17529C3C43467F8E /* exec_ctx.cc in Sources */, - 88D29ACC27C7BDA3FF1B81E706ED53DA /* executor.cc in Sources */, - CAB9F171FC7D1AF52DBFA95C0D086792 /* explain.upb.c in Sources */, - 87B7EB8D2C342F2A4E1EED579035E2DA /* explain.upbdefs.c in Sources */, - F4A38F2022BFA115135AEA79D9268AB4 /* extension.upb.c in Sources */, - 323564425BAAB785C6DFCF192066052A /* extension.upbdefs.c in Sources */, - 823B55995082AF9296527577CF660A73 /* external_account_credentials.cc in Sources */, - B05BE7EA23675766914C3F92CF825F82 /* fake_credentials.cc in Sources */, - 427F106D99EC33C4F291FB0A25B069BF /* fake_resolver.cc in Sources */, - B466A7F104C746A95829726C26B4F49E /* fake_security_connector.cc in Sources */, - 3F76D61AFB496336D45DBFD05BAA8A11 /* fake_transport_security.cc in Sources */, - 4B93F2FF4EE6F667973EDC79BEBC7D08 /* fault.upb.c in Sources */, - 781F18DF8BA2E5E6424D6A59ACF735F5 /* fault.upb.c in Sources */, - 94F611C34495A899581C9C0C82E38791 /* fault.upbdefs.c in Sources */, - 74D12DAD24EF50118594063A13897FD5 /* fault.upbdefs.c in Sources */, - CEC281DC6D95412DBC2FA356CBF1190C /* fault_injection_filter.cc in Sources */, - B9852394FA695EEFDC738BF068DDF972 /* file_external_account_credentials.cc in Sources */, - A25D04CC340B2C4BA4323DCEE0BD6D7E /* file_watcher_certificate_provider_factory.cc in Sources */, - 7232B5433A4130A4DF36AE982078E4A6 /* filter.upb.c in Sources */, - 166039CAD09D6FCAE4A8CA5361BF9511 /* filter.upbdefs.c in Sources */, - 8EC68F96DE73009DB02B458806EA5606 /* filtered_re2.cc in Sources */, - 687457D54710962B303D488AB127DC91 /* flow_control.cc in Sources */, - FEB39315C4FEF887FA5A00E3CEFBAE1D /* fork.cc in Sources */, - 2EE9B8D88664D590A60544721EF71E4E /* fork_posix.cc in Sources */, - 8EB48CF7504F1FFCB7AA68181F9B203E /* fork_windows.cc in Sources */, - A8727CAD2886A7A7EA62443FD58F9A71 /* format_request.cc in Sources */, - 3270A3C430D6FB70C032E074F7BD28EB /* frame_data.cc in Sources */, - 82EB7E405F03A9BCC9F97EB7786B200E /* frame_goaway.cc in Sources */, - C6D45D247868AB94F5095DC8F5376879 /* frame_handler.cc in Sources */, - B481B550E6E185D22E389360F1789752 /* frame_ping.cc in Sources */, - 85F567C232BD1D075902B7397D465511 /* frame_rst_stream.cc in Sources */, - FC35EF9CBB25D8FD7C4D13CFD821E9F6 /* frame_settings.cc in Sources */, - 2F7C8976811B9BFACA56AF15A47E3A39 /* frame_window_update.cc in Sources */, - 952E899FAC5AAA65F7E18C1FDA181FA5 /* gethostname_fallback.cc in Sources */, - 4B09B2DB777F32F5475961DF5F0B425F /* gethostname_host_name_max.cc in Sources */, - 52DD7320865251E407E2C395D8635537 /* gethostname_sysconf.cc in Sources */, - B3DE40B9843995E2ECB853DA49CBD33E /* global_config_env.cc in Sources */, - 0CA84BD4D1FDCC6C2C2B5A26E93DE9DF /* global_subchannel_pool.cc in Sources */, - 044369F335E865EBA1309CE4E9D5CDF6 /* google_c2p_resolver.cc in Sources */, - FD900CD25DD00716D9E3D2008E5E7E83 /* google_default_credentials.cc in Sources */, - 109437DF78E660D4218A02F562B591E4 /* gRPC-Core-dummy.m in Sources */, - 18D1F3DE4AF35285FF15D9B7C582E461 /* grpc_alts_credentials_client_options.cc in Sources */, - 6E6295098E24107E26695985AFB19457 /* grpc_alts_credentials_options.cc in Sources */, - 6004034FDDAD6F58FDF2FAB22D1DF99F /* grpc_alts_credentials_server_options.cc in Sources */, - 3B7C5E12580F80ECDF722BE4F6932A08 /* grpc_ares_ev_driver_event_engine.cc in Sources */, - 1E6CF745A538204F8A680D5DEABFF568 /* grpc_ares_ev_driver_posix.cc in Sources */, - AF678B1657A4FFBC846C392DF689FB6F /* grpc_ares_ev_driver_windows.cc in Sources */, - BAEC7077E7215CC4019CD76E3F4F5FB9 /* grpc_ares_wrapper.cc in Sources */, - 75B773CD9AC494206BEB1AA1BB47B915 /* grpc_ares_wrapper_event_engine.cc in Sources */, - 4EBFC79C72E18D61310F0CEA1BBDAAFC /* grpc_ares_wrapper_posix.cc in Sources */, - 6A5F6DC35A7C75046327E176588F852E /* grpc_ares_wrapper_windows.cc in Sources */, - 9B28F37A071878C82851758B664336FF /* grpc_authorization_engine.cc in Sources */, - 67D2C989AF85B5F74254F22845814FC8 /* grpc_context.cc in Sources */, - 18207968DC0A309752237C4D919F4424 /* grpc_if_nametoindex_posix.cc in Sources */, - 0D907BD308ED5661D82C66074BC071D4 /* grpc_if_nametoindex_unsupported.cc in Sources */, - 5D0DA1E5A8C39A15629CE8ABBB8D6C35 /* grpc_plugin_registry.cc in Sources */, - 435AA1ACE80A2545E5F1BF12A88F02C4 /* grpc_service.upb.c in Sources */, - 9C90DA067DAC812EB523ECFB995CA90C /* grpc_service.upbdefs.c in Sources */, - B970AC868A8143A26EAA43D76A8E3F3B /* grpc_tls_certificate_distributor.cc in Sources */, - 977568ECD4787671FDB7AABC5C4E7BFE /* grpc_tls_certificate_provider.cc in Sources */, - 46A23867DC9310B9913279236F22BB1D /* grpc_tls_certificate_verifier.cc in Sources */, - B6F535F0D927AA4C1C8EE397EF1EF237 /* grpc_tls_credentials_options.cc in Sources */, - 6ED3ADF4B25E7A9B8C155B19F583C954 /* grpclb.cc in Sources */, - C724171FBDCC94A0F4C9E01926E8E735 /* grpclb_balancer_addresses.cc in Sources */, - 05DB334E544FEBD52404634426794A10 /* grpclb_channel_secure.cc in Sources */, - C2E5D5EDF8D24DC60DA97CDFF7C2893A /* grpclb_client_stats.cc in Sources */, - DB24A587E54F6E34F73985EFD7354739 /* gsec.cc in Sources */, - 6BC195A691D22CA76A348A96F1BEDFBB /* handshaker.cc in Sources */, - 087EAAA6412C1D8E830A6A0D18EB7289 /* handshaker.upb.c in Sources */, - 45DC5F9069948F5212E01A51BD490528 /* handshaker_registry.cc in Sources */, - FF87184562BA5C72D6A87FC5F249BE5B /* health.upb.c in Sources */, - 736F4F4B2D6A8F2D7B407E0CF039DE1D /* health_check.upb.c in Sources */, - EC3BF4705C2652E0875954B1D27B38A4 /* health_check.upbdefs.c in Sources */, - 0B27ADAD66371E5123C3EA18749AEA2F /* health_check_client.cc in Sources */, - A56F0361F8D35E7552B5031DA2670938 /* host_port.cc in Sources */, - 68A0460DF16E47FD6FA557B80FF2D545 /* hpack_encoder.cc in Sources */, - 32F2313BD0A3C8F62A6928EDAC5B53C3 /* hpack_encoder_table.cc in Sources */, - 2C601302F68A9368F4A2FBA9EBFE9E09 /* hpack_parser.cc in Sources */, - 0DE3C6FD93D793E278D50BE22A76BED4 /* hpack_parser_table.cc in Sources */, - F1316ABD56CF1CDBF9C29FBF90E6BBF7 /* http.upb.c in Sources */, - 4C3AFDC53F38B4A532491E1F62168A22 /* http.upb.c in Sources */, - 637899CC2AF111A3EC61A26A85339E21 /* http.upbdefs.c in Sources */, - 3216FCB0694A79C8B6030C9798889F91 /* http.upbdefs.c in Sources */, - DE400E4AE99B373BBE376B20C4DFF7F2 /* http2_settings.cc in Sources */, - DA497F9D5558528B759733D189921AFF /* http_client_filter.cc in Sources */, - D8CCEBD12916E3C728B9F78CB38D4395 /* http_connect_handshaker.cc in Sources */, - 8A4F8D315DF39530286DD055925373A8 /* http_connection_manager.upb.c in Sources */, - 24EEA2D1B38364C20379A094EB3D3234 /* http_connection_manager.upbdefs.c in Sources */, - 744576FD2139BF4049960DA0A5C97BE8 /* http_filters_plugin.cc in Sources */, - 47BE7DB2643FA965E22A7A25B00AAFC8 /* http_proxy.cc in Sources */, - 7F59D759F61D804F074256D8E8141E76 /* http_server_filter.cc in Sources */, - 8DF186EFFABF98F043140BA882A7BF6B /* http_tracer.upb.c in Sources */, - 5D1F1390AD45C0B17815CDAACAA872B8 /* http_tracer.upbdefs.c in Sources */, - EB3B342D27F0A94B37C02F7EB0E66B8C /* http_uri.upb.c in Sources */, - 662999CCB0349389A4F5714D7CD38106 /* http_uri.upbdefs.c in Sources */, - 214A70725A097DEE11021CF2C06F6AEA /* httpcli.cc in Sources */, - 1FA3E7A2B14CB06BED2C0E00F4305731 /* httpcli_security_connector.cc in Sources */, - C4B929F18EF196B71461B91C6EE2A035 /* huffsyms.cc in Sources */, - ACFDC9041325C15E5E6ED46F8CB92711 /* iam_credentials.cc in Sources */, - 3E6F6ABFC40F2CB9D16B4508F6F8ADAB /* idle_filter_state.cc in Sources */, - A93A280E4B81AAA1F0A0B8554E88051B /* init.cc in Sources */, - A2A15F3BA3C42A2208FEC1DD79621CA6 /* init_secure.cc in Sources */, - 887CE6E49E5B9589BF17413EC64E0A2F /* inproc_plugin.cc in Sources */, - 2920145DCF1AB5A32CD08D8F391D7106 /* inproc_transport.cc in Sources */, - 59A729BDBCA7879C63172676553B5A78 /* insecure_credentials.cc in Sources */, - 7C8D9D82692B04F6B05F56B198FC0D33 /* insecure_security_connector.cc in Sources */, - E0EA5A11BED9308A8D4C57231B6E468F /* internal_errqueue.cc in Sources */, - DBF72E0244F9BD9D47EA2B54459EA67E /* iocp_windows.cc in Sources */, - DA768F49159F626E5137A8F79FDA9691 /* iomgr.cc in Sources */, - 8702F2F836417B626AA4CCFF92419672 /* iomgr.cc in Sources */, - D7E9657AA2BE5CE3D0F99C600B3E2778 /* iomgr_custom.cc in Sources */, - 566B3DDE38D10F7556F3E9D41F7785BA /* iomgr_internal.cc in Sources */, - B03AAFAFDE4273B4804C95B1E6D09D80 /* iomgr_posix.cc in Sources */, - 638E5275EFA08A4FCA36563A6D9E85D9 /* iomgr_posix_cfstream.cc in Sources */, - EDEFC45B3FAC7933213C5B179548AB6E /* iomgr_windows.cc in Sources */, - 9C88CB7F92F65BF0CAAFD00E5DEBE5E4 /* is_epollexclusive_available.cc in Sources */, - B29CE0760A0B8ECF3F3F5F430AA614A0 /* json_reader.cc in Sources */, - 3CDAB04CFCF1BF1615740ADB0FF57AED /* json_token.cc in Sources */, - BBBA5E74D7A91B469703A02DB9E33203 /* json_util.cc in Sources */, - 4D2C91E9870DE115CE356CBB70717297 /* json_util.cc in Sources */, - 7B47BA3388362DEEAE0B94D1FD9536EB /* json_writer.cc in Sources */, - BDB53FAAB2839CE6C4602BB6224407E7 /* jwt_credentials.cc in Sources */, - C7AB4610342B00111C146729C9D9F5DB /* jwt_verifier.cc in Sources */, - 774575C1D4A8CE6515B8E2B0C3642FE6 /* lame_client.cc in Sources */, - A6BFD3082F6D8ED697C326D42E8BBC8B /* lb_policy.cc in Sources */, - 8E7F3D98E667996CC942E8983FED8ED5 /* lb_policy_registry.cc in Sources */, - 5EEE94AD88AE6C2DA931A3D5C7A36DBC /* lds.upb.c in Sources */, - B64F3FBD07F062E44BEADBF97109D571 /* lds.upbdefs.c in Sources */, - 9FA35F5756BEA6044656F0B0F4904569 /* listener.upb.c in Sources */, - C5B7EB0253987BBE52FCA43EFC543D3E /* listener.upbdefs.c in Sources */, - ED1228E3F7AEA8B20534824F125415E6 /* listener_components.upb.c in Sources */, - FAAE0BCE9A2D6BEEF720D81BC22857EB /* listener_components.upbdefs.c in Sources */, - 012A3E9900979BF62A1D3087550C0BA4 /* load_balancer.upb.c in Sources */, - A861535C564293331787914ABBDD042E /* load_balancer_api.cc in Sources */, - 19DFEBA02E810857F3E52A2964884BA0 /* load_file.cc in Sources */, - 7B649ACCA3DD1AF55644AF8FEFF966D6 /* load_report.upb.c in Sources */, - 5179A187E7B8C5D7E8C9C0473E0A0387 /* load_report.upbdefs.c in Sources */, - 1E7E89BB4E861F880C36F71CDD035A49 /* load_system_roots_fallback.cc in Sources */, - 1ABB7A040DCA70480ADA1270E4C09634 /* load_system_roots_linux.cc in Sources */, - FC3E007D2305F204A79C9F6FBF0A0B0F /* local_credentials.cc in Sources */, - 2AB54C12008FF0ED6AC595E1B7A7F21B /* local_security_connector.cc in Sources */, - 5D1FF6F2E4EFA4FE6C963C2F07559AAD /* local_subchannel_pool.cc in Sources */, - 4F95A792EAA86C94FE47DB2344A31466 /* local_transport_security.cc in Sources */, - EC655701AEEDB0967BA2757251500CA5 /* lockfree_event.cc in Sources */, - 129C0907EFB869C3433B16B6224B0CFA /* log.cc in Sources */, - 143C59F6D7EA60CFBDB3D8B4349CC719 /* log_android.cc in Sources */, - 591AF794B2E1EE5A04A6FF44CBBDD94F /* log_linux.cc in Sources */, - E0F99B7DE9AEBCB176483C7391320498 /* log_posix.cc in Sources */, - 2F5E1C23555173D797EBC93C20A8F112 /* log_windows.cc in Sources */, - 0B8C74227EBAD075196F527FED4F3F24 /* lrs.upb.c in Sources */, - 2CC4E2F689057C4B280A841384D5C0CC /* lrs.upbdefs.c in Sources */, - E7554C6AD4A9A3F90364D8CD769D891A /* matchers.cc in Sources */, - A8A365662A78876D64F97E424C35925A /* matchers.cc in Sources */, - FC9FCE8F02862D6CD8445F42E5E9708B /* max_age_filter.cc in Sources */, - 7B52EC37C3EEDFF25EBED52082771DFC /* memory_allocator.cc in Sources */, - FE90C0F3EC15D5CD616E61CA6EDBEBCE /* memory_quota.cc in Sources */, - 6E57D407A74E5B751CF975E59E45B1AC /* message_compress.cc in Sources */, - 2811E3962449CF8C1B67578C2E431E82 /* message_compress_filter.cc in Sources */, - C20F21FDB55F2CD3C5B78E656530E0A4 /* message_decompress_filter.cc in Sources */, - F8A318A8F794D72BD2D983ABA0897EFA /* message_size_filter.cc in Sources */, - 407C7673F14E251D7E7BD02E976F68D3 /* metadata.upb.c in Sources */, - B409EE6E7610CEA6623C3CDA05EDE6FD /* metadata.upb.c in Sources */, - CE4C31819B1B526B41F2F5E8F762543A /* metadata.upbdefs.c in Sources */, - A57DEB42F6194E8FA18F6E0A80D7C0D7 /* metadata.upbdefs.c in Sources */, - A39B123F737AAC3DAE6BDCB8058EE8B4 /* metadata_array.cc in Sources */, - ADE3B23E78E3D9288DD7FACFECBFA92C /* migrate.upb.c in Sources */, - FB798E63F31592C9F33FB31A60237033 /* migrate.upbdefs.c in Sources */, - 216CFE591133430C9B5F7AC6C51C34C1 /* mimics_pcre.cc in Sources */, - 34E3F7E7D206A045F63D58BF5F1EDB85 /* mpmcqueue.cc in Sources */, - 01001B79F7CB517DFFC3024EA81CFD6C /* mpscq.cc in Sources */, - 23256CEBBE6CF3A066FD511FBED33230 /* msg.c in Sources */, - 2DAD60B27ED93C270806F5F5E8056755 /* murmur_hash.cc in Sources */, - BBF75AD7F7230DE01918CB396F7C47D3 /* nfa.cc in Sources */, - 0BFA6F30E94A5122314A4D758174676B /* node.upb.c in Sources */, - 7E3990772193408313781C10CD031FDE /* node.upbdefs.c in Sources */, - 20C31318E3B83FB91C1DCEEC6B78778E /* number.upb.c in Sources */, - 1B5D42872846D8DA443D33B4081C827B /* number.upbdefs.c in Sources */, - 5BA65917D5044E60CC22475EE3B5D946 /* oauth2_credentials.cc in Sources */, - C59FB30475F4D495D094DD7CAEB2145B /* onepass.cc in Sources */, - 2023815B4E75684BE9AA3D0221F2C132 /* orca_load_report.upb.c in Sources */, - 7BFE26EE1821AEAF9CF476742EFC1955 /* outlier_detection.upb.c in Sources */, - 7BBE95A59868CB3AFA4290CA13C22694 /* outlier_detection.upbdefs.c in Sources */, - D2A1CA8F12EC21E2368195E9E824CAE3 /* overload.upb.c in Sources */, - E418545F35361D6965BDB2EB7192024B /* overload.upbdefs.c in Sources */, - A24B0F2E5C1E20A5AEBDE50508AEE2B6 /* parse.cc in Sources */, - 8ADF415447A920BBA91792D72FA76599 /* parse_address.cc in Sources */, - CC302737A27D5C244D3E9735B2465F28 /* parsed_metadata.cc in Sources */, - DE0E8A1CDC36C12306A822710D67A114 /* parser.cc in Sources */, - E8E0BF50E1C2C1F9566E9414A90DFA7E /* parsing.cc in Sources */, - 24BA081DCA20D61A1A5A20CAFB16A80B /* path.upb.c in Sources */, - C2E1827D52B1A67AEA2259AF40A843A1 /* path.upbdefs.c in Sources */, - 3FBA0ACE2187334C54C8DB2181285DE3 /* path_transformation.upb.c in Sources */, - 718F4F5FC921408C302E43F7CF568325 /* path_transformation.upbdefs.c in Sources */, - 655AA65DE819DB8F2C0496B11E7088F0 /* pcre.cc in Sources */, - E3CD3C2AAE991D6C95C6C53B0F47C94E /* percent.upb.c in Sources */, - A8207FE3BEA0F58F3C2AD2FF3133D8DD /* percent.upbdefs.c in Sources */, - 8C41BCC69B1FEAF4E7989B455E3601C0 /* percent_encoding.cc in Sources */, - 0D20719B43504B538A82903392AAF11B /* perl_groups.cc in Sources */, - 181084BF5E54EADD3EB87156267BB7C7 /* pick_first.cc in Sources */, - 631E44BD5A3C7516C26406430CF5B8F9 /* pid_controller.cc in Sources */, - B20DC7DD79620078E1AACC9B68EAC23C /* plugin_credentials.cc in Sources */, - B4EB74864B0B2497BC8DF81943F81164 /* polling_entity.cc in Sources */, - 11EDF9E34B6F1DD05C747426B6F97C73 /* pollset.cc in Sources */, - 95F159670267F796679419C84A0BF0C8 /* pollset.cc in Sources */, - FFD095BDB9CC441CFC39C2DDF62B9684 /* pollset_custom.cc in Sources */, - C1FFCA90C84AE461BEED77B7FF8DE398 /* pollset_set.cc in Sources */, - DF739D4D48BB4168E4B0C13C5DE31488 /* pollset_set_custom.cc in Sources */, - 62A1B16D498ED101BAA28F92E963B723 /* pollset_set_windows.cc in Sources */, - 59C5C37DA44DE0DAEAD6137A4CBEFF0E /* pollset_windows.cc in Sources */, - ECB4ADA714FABF1F450E28A8C4555E2A /* prefilter.cc in Sources */, - 056CF73B5256D78F0D71A294357B619C /* prefilter_tree.cc in Sources */, - 63ECA6BDCFADF3F6AF1B833AF67F5336 /* priority.cc in Sources */, - 7815764430E9B22038190F143160D883 /* prog.cc in Sources */, - D095572FF4EB8BBBCF1238B731136588 /* protocol.upb.c in Sources */, - 254E7F28A8C6A00080A032F98BB8712B /* protocol.upbdefs.c in Sources */, - D8401B05F81720781B1570DC270FAC63 /* proxy_mapper_registry.cc in Sources */, - 20FBC790E0D05B59AF5E6417DD279BC6 /* proxy_protocol.upb.c in Sources */, - A279B665CA31790112BF2DB4C6650EF5 /* proxy_protocol.upbdefs.c in Sources */, - EF99D3954F6222912BD6AB9BD05880B1 /* quic_config.upb.c in Sources */, - 03F59A11B949959E31B3E4550D338DCC /* quic_config.upbdefs.c in Sources */, - 861B362D29671048B6A9BABFBBB3F254 /* range.upb.c in Sources */, - 14448C588B1A04662791F2AD3CD0768B /* range.upbdefs.c in Sources */, - E3A50BF247E7FF0749183E4E52371FFE /* rbac.upb.c in Sources */, - F9C1A616287C931092407B3D86C3AAB1 /* rbac.upb.c in Sources */, - AC42FBE9CDE5945A0E4DB2A4685BCB29 /* rbac.upbdefs.c in Sources */, - 10032F82731E65389E2C78CA10192C95 /* rbac.upbdefs.c in Sources */, - 9A1313E00E6D76C8F99B3A0178ACDA3B /* rbac_filter.cc in Sources */, - 260540DA8EA0075F1B31C0E8B73567AF /* rbac_policy.cc in Sources */, - BF1138AF228E0A37BF3E0613D66D8ECA /* rbac_service_config_parser.cc in Sources */, - 4B46C2315C1E417DFC0C474B73B0B738 /* rds.upb.c in Sources */, - 345110F22920B5B75A4AD664838C1888 /* rds.upbdefs.c in Sources */, - 6A3DFA0817F23968E2E849951EAABAC1 /* re2.cc in Sources */, - 4F6CE1ADC7CFB2538B0A506F59B048CE /* reflection.c in Sources */, - CF552B3C9188C65B86E0F30977B707EB /* regex.upb.c in Sources */, - D3502F0160B969A8970CD0C2052A1527 /* regex.upbdefs.c in Sources */, - 5942B2FA46C783DDDBB12AF8CD378F58 /* regexp.cc in Sources */, - 6B2C0FA3B6C581E5BBC10EF615B1046A /* resolve_address.cc in Sources */, - AA002A961D042859F1A86D2E05D09BEA /* resolve_address_custom.cc in Sources */, - 3F38A6E34D5D01C44721556E75F9B0CA /* resolve_address_posix.cc in Sources */, - D925197E177165BE4BF0410F4FAA1147 /* resolve_address_windows.cc in Sources */, - AB5D3F99DF4D285D3698ECF055CD0847 /* resolved_address_internal.cc in Sources */, - BACB16EC05DB58CC1B382AB4EEBA3073 /* resolver.cc in Sources */, - A389565A53B45EDA75CD7A5BEA1FEE64 /* resolver.cc in Sources */, - 0D0E19208DA982E86C6009B292C39369 /* resolver.upb.c in Sources */, - 63AC75AB5B4C15DAEB845CC5EB9361C7 /* resolver.upbdefs.c in Sources */, - 89758B0A541779DC1BA9AF88266F6ADF /* resolver_registry.cc in Sources */, - 0C485F73106F98E7219DC02208C55565 /* resolver_result_parsing.cc in Sources */, - AD722E4D516DFC0A2AA00D660159250A /* resource.upb.c in Sources */, - 77EB8F8102D644B3EB49D4DED768F2C5 /* resource.upb.c in Sources */, - 0B6D07679E83F71425425B37B5884116 /* resource.upbdefs.c in Sources */, - D9FCC8F689621D41BA269E67A2E30AF0 /* resource.upbdefs.c in Sources */, - 03B09644FAFB8D34EC40DCDF7031457B /* resource_locator.upb.c in Sources */, - E6F210C53005CEF12FF4A478CF0756CC /* resource_locator.upbdefs.c in Sources */, - 9D12FC5CB86E6373656D96D181FC4A85 /* resource_name.upb.c in Sources */, - B4D6228356E8301AEFEAF3AE0BA42AFF /* resource_name.upbdefs.c in Sources */, - 0B1D2D5C21BE0603735F6C6F21A33D04 /* resource_quota.cc in Sources */, - EC7E8BBCC43364D74E6C638B694FDEA4 /* retry_filter.cc in Sources */, - C2088CBD23CCD865187B4C4465977F49 /* retry_service_config.cc in Sources */, - 97C740D50E1AB51F036B0B6C5612CBAF /* retry_throttle.cc in Sources */, - 971371C4B1FFDAEC64C505C29159EA0D /* ring_hash.cc in Sources */, - 47E73A7D955C384AC2F88E5E4AAC2E51 /* rls.cc in Sources */, - 4DB7F4550DC4E0487B69E850A3773C12 /* rls.upb.c in Sources */, - 29DD314479EF2BF81034011264F234EF /* round_robin.cc in Sources */, - 821C936DC80E0FD41297DECBB9495436 /* route.upb.c in Sources */, - 8600AD02246FF3F67081FAFFB1937227 /* route.upbdefs.c in Sources */, - 01D1CFDFA71C03854D8E9978384016BA /* route_components.upb.c in Sources */, - 6B619C2EB770A407EAF9DB1A7161F4AC /* route_components.upbdefs.c in Sources */, - 4D58F906144B1265A0BF8B84ED9EF36F /* router.upb.c in Sources */, - 87CF2DCBEA5E134329A6B509BA6F76DB /* router.upbdefs.c in Sources */, - 42F134087A7ED0B9397A9EBFEB0C7288 /* rune.cc in Sources */, - D6C43A3918AF0ADFF6F924276A1D9CC7 /* scoped_route.upb.c in Sources */, - 1B56CD9AA81501BD450EEA3B8C053E66 /* scoped_route.upbdefs.c in Sources */, - D7EB6E07A4617B8F1554B949BC8C5663 /* sdk_server_authz_filter.cc in Sources */, - C35800B750319F20BB73E443247DC3AA /* secret.upb.c in Sources */, - 0CD4B35FB3A1939E913FB6A0451E631F /* secret.upbdefs.c in Sources */, - 025664469751718945A0F8248243D9AD /* secure_channel_create.cc in Sources */, - 2FC433817E0C6A41727F70DE1C1679E6 /* secure_endpoint.cc in Sources */, - BC92480F81FBB5472A691C764FE62BBC /* security.upb.c in Sources */, - DD5830E584E3AC979DECA384D8F3D72E /* security.upbdefs.c in Sources */, - 35D034C4377A51F5A0B685A664E9F700 /* security_connector.cc in Sources */, - 798E91A0EFA566F239D95AB085DF10AB /* security_context.cc in Sources */, - 8B7172DE55D4C630D0A2EBD37A4F2489 /* security_handshaker.cc in Sources */, - E0059550AC7F465C0A74CAD20843E303 /* semantic_version.upb.c in Sources */, - F7AC32E7A7FE53577A9D9DCB999EC317 /* semantic_version.upbdefs.c in Sources */, - D70A4031F0185BBCE3B18014CF315F53 /* sensitive.upb.c in Sources */, - 0FCD2137DA945E761F6992DDEA804853 /* sensitive.upbdefs.c in Sources */, - 3002EB6B7B35EB69629D1223AD527D4D /* server.cc in Sources */, - 675E791E8001398BB4972C836D0E5559 /* server_address.cc in Sources */, - DDC92DEDA3C8BD4F9DC478AADA231C67 /* server_auth_filter.cc in Sources */, - 34CA14B382AA6E33AD9AD682D9A994D6 /* server_chttp2.cc in Sources */, - 89046A4F334933FB478C172B8D0B9146 /* server_chttp2_posix.cc in Sources */, - D9B4FEAFD161AF4B8E4C1B7E6DF1E5C1 /* server_config_selector.cc in Sources */, - ACF74852B15C781AB8038073237199A7 /* server_config_selector_filter.cc in Sources */, - 75A70EB01A9ADDB98C4BA4DE57217CFA /* server_secure_chttp2.cc in Sources */, - 03FAC220EC4092866EB0A69CCC1BC2D2 /* service_config.cc in Sources */, - 2E559DD42CC56B03D7DF13E5B622CCE2 /* service_config_channel_arg_filter.cc in Sources */, - 35CF5E30FD5588E049501F1C9307C45A /* service_config_parser.cc in Sources */, - CFE4D305011FB948AC91184A1D4FF65E /* service_config_parser.cc in Sources */, - FB41D44E392599680CD9CBC1995617AC /* set.cc in Sources */, - D22030E6A5A062B4649523994FAFD01C /* simplify.cc in Sources */, - AB9E071049F0780EB6EC949E9ECD4AE2 /* slice.cc in Sources */, - 3F6DE0A76E7021CA05441372241163AC /* slice_api.cc in Sources */, - DEDF01E92FEE978FB2E75474C0DD4225 /* slice_buffer.cc in Sources */, - 8EC4293C8619326410DC23AD167AB924 /* slice_intern.cc in Sources */, - 695F3D44915615AE67AF8E062B6AA9A8 /* slice_refcount.cc in Sources */, - 39013DB3E10029FA653CFA7AC77C3B56 /* slice_split.cc in Sources */, - 22D88C46005208F5990440AD368BE150 /* slice_string_helpers.cc in Sources */, - 7A8AF9603D00022AEF41C8DEE0B30474 /* sockaddr.cc in Sources */, - 910A5B03ABC7F1578E138078EBE69591 /* sockaddr_resolver.cc in Sources */, - 7E839BF5726E236637814F106C37A885 /* sockaddr_utils.cc in Sources */, - 1E75558BE4F31AE3FCEAAFFE0E0AE9AC /* socket_factory_posix.cc in Sources */, - E88236F99D45EF610C292C4F2C7A3C69 /* socket_mutator.cc in Sources */, - 297B2326685AADD1066E660039C3AD8E /* socket_option.upb.c in Sources */, - 59DD3FE52D13F735F60643AFF0AD7691 /* socket_option.upbdefs.c in Sources */, - 84F9E8A6DB4ED05266C07A6F74D5F278 /* socket_utils_common_posix.cc in Sources */, - 334C144799ECA1D680C6488628670F3A /* socket_utils_linux.cc in Sources */, - F9C947C8CCF5BE562AEE6AA6EAD89E07 /* socket_utils_posix.cc in Sources */, - 1F32242A3B51D58F492F713C39A73FB4 /* socket_utils_windows.cc in Sources */, - DD30C0184DA84AB55DF9B42B4E79004A /* socket_windows.cc in Sources */, - 2CB687D171625626175DCD13CBA14181 /* srds.upb.c in Sources */, - 76B2742FA4EEE5E3227B838DDDD149F5 /* srds.upbdefs.c in Sources */, - 3A5E7BE6A231A06CAC422E0E239E43A4 /* ssl_credentials.cc in Sources */, - 728261157794CCA78DDE5767748C0FB7 /* ssl_security_connector.cc in Sources */, - 9C0AAE9B2A6ADF514FDA6C0202974FA3 /* ssl_session_boringssl.cc in Sources */, - 235118F6085A6E9429EE4ADCA38F4766 /* ssl_session_cache.cc in Sources */, - 2CD13EBF1E75F22C1FCF45338653A66F /* ssl_session_openssl.cc in Sources */, - DF741CDDA3CF035BEFF474B96E67CD78 /* ssl_transport_security.cc in Sources */, - 53423211EEC8E805B8B8660D3C8082C1 /* ssl_utils.cc in Sources */, - 241FB6649284A8B91AB526B46E46E3DB /* ssl_utils_config.cc in Sources */, - 7B27ED987E670462017C47179AFF7360 /* stap_timers.cc in Sources */, - F9AC9C60362056D96BA1A0F2FC20EBB6 /* stat_posix.cc in Sources */, - 62BFA6D355DA75DDF33FEDFF9AD49C80 /* stat_windows.cc in Sources */, - E7081C06E4D8B70F3C42AE7EAEAD915A /* stats.cc in Sources */, - 4A24873A451B57F5C8713102EAFF95B4 /* stats.upb.c in Sources */, - 0E4033B64A06A3ED7657DBA22E5D9C02 /* stats.upbdefs.c in Sources */, - AE24FAFD2F0BC4441045387A1063BC92 /* stats_data.cc in Sources */, - BA57FF5B8D3CCD06DA9AAB90D6B8FF81 /* status.upb.c in Sources */, - C28F41D317AB4392F83CC8E6842E848F /* status.upb.c in Sources */, - 5F0524374F8E4BB40069DB5BAAD81302 /* status.upb.c in Sources */, - 1B9487B5F8D48B7567E40EDA8BA2E7C6 /* status.upbdefs.c in Sources */, - CDC5A5688AE681B02C38BDA56E656DF3 /* status.upbdefs.c in Sources */, - 27D13D73130981DF4752AE54A45CA47F /* status.upbdefs.c in Sources */, - F0B703AF25F5BF7407E07FF99ECEF4DB /* status_conversion.cc in Sources */, - 0915BE0655C4AAD927558F7A8E8E94CD /* status_helper.cc in Sources */, - A09A1D322E0AEADA9FA348ECA5F2F8CE /* status_util.cc in Sources */, - D8C1F755DF7EAFDB4B0CB09F82AFD93C /* stream_lists.cc in Sources */, - 5781970BC13965744F75B593ED797534 /* stream_map.cc in Sources */, - 624450A81AF3DD076C3BA680FFC5367E /* string.cc in Sources */, - BD39FFBEFBF28542191F51B44424759A /* string.upb.c in Sources */, - 4157F7821432BEA34373237B07F7553A /* string.upbdefs.c in Sources */, - E755759CBBC76CE5D8D7E74C3369D970 /* string_posix.cc in Sources */, - 93A4A97D7B96F01FF9C7B7C801B769C8 /* string_util_windows.cc in Sources */, - E6F33C96BF6BDB4798C85D0B239611C8 /* string_windows.cc in Sources */, - D5EB661392AD96321F40AF76E1ADEE4B /* stringpiece.cc in Sources */, - 34D3D8B77BD783AE1F1417DDFAE293AA /* struct.upb.c in Sources */, - EE23D48F3FD82BA2B0A3D907F7CD16DA /* struct.upb.c in Sources */, - 5414BC3325559626630D2ED8ABFADD6B /* struct.upbdefs.c in Sources */, - 436B081E8BBCE39634EBDC6847FDDE51 /* struct.upbdefs.c in Sources */, - 6EE33D067A5FA7CD339137BA4CA88D88 /* strutil.cc in Sources */, - 6500674927119CEF288B6F721427A59A /* subchannel.cc in Sources */, - C4CA453412235EA674F3B7D30C98F1F5 /* subchannel_pool_interface.cc in Sources */, - 868625C87C13EBA22B2FAA2EBFD3359A /* substitution_format_string.upb.c in Sources */, - C1D27C9B96959A5DBB44350336F0DF38 /* substitution_format_string.upbdefs.c in Sources */, - 6BA10C4BC5DFBCD812E0CB560F945F3E /* sync.cc in Sources */, - C6BF3056814E660D3D313D435870B4D0 /* sync_abseil.cc in Sources */, - D9A76D421F279956824924E2D34681B1 /* sync_posix.cc in Sources */, - 6D9C8C792BC2FAF3A03CCE3A473662DF /* sync_windows.cc in Sources */, - 2F50AE1C4D8E97875A57733C8781C04A /* syntax.upb.c in Sources */, - 1FAF877DAEBCE5261A77FA46316F6DAE /* syntax.upbdefs.c in Sources */, - 0890925EB7673DA4629D889AE9A08509 /* table.c in Sources */, - CBB59371F2CE33A1C480724FBB9F8F84 /* tcp.cc in Sources */, - 191CE04932C8C4AAC9DC6AA6C9696AF5 /* tcp_client.cc in Sources */, - BCBB9E8E963A42DE815D0F4C8447BC39 /* tcp_client_cfstream.cc in Sources */, - 97FAC5EC62BAD55DA8C394A72C43C8B0 /* tcp_client_custom.cc in Sources */, - 73B7DDEF83AA8825907D7763F616ADAD /* tcp_client_posix.cc in Sources */, - 0CECC6FA29D19663FF69A9902A4A3054 /* tcp_client_windows.cc in Sources */, - 05C44E6EF519E4C41D958FFD25F10650 /* tcp_custom.cc in Sources */, - C17D2DFFAE71160671DC7CB49ECEC463 /* tcp_posix.cc in Sources */, - D0EF3FE9109933952DC13C692BBEC1B5 /* tcp_server.cc in Sources */, - 70A7C106C7CB2C688C870C819D986C1B /* tcp_server_custom.cc in Sources */, - AF64FE22CEDFBF96C59CA60FBBE509C9 /* tcp_server_posix.cc in Sources */, - 8E8587A01B36CE2B828CFB939850AF7D /* tcp_server_utils_posix_common.cc in Sources */, - 251D6C7ACEC7CAAF7DAA77977D261F50 /* tcp_server_utils_posix_ifaddrs.cc in Sources */, - 662B486BFD09A3E8868848DF83F20AD4 /* tcp_server_utils_posix_noifaddrs.cc in Sources */, - 512305F1029711A9BA9E44707E8D2274 /* tcp_server_windows.cc in Sources */, - 14C28FF84603779C9357084CDFBEBB5A /* tcp_windows.cc in Sources */, - 7ADD42A5BC391F73AE911998E39D392A /* text_encode.c in Sources */, - C49C47BF4BF6914E743F294C9CA4760C /* thd_posix.cc in Sources */, - BEDEBA6E7E4FEBDAA5DFC57F927E509F /* thd_windows.cc in Sources */, - 343C50D58EFE36AEA0A3AC27882CED36 /* thread_quota.cc in Sources */, - 9FDB17A180B6FF26F27A75DC0DA1ED93 /* threadpool.cc in Sources */, - 7CFE34A7CC9879C7757C051F9323603D /* time.cc in Sources */, - BF5A89001A7D2CEC08EE77DF0BF88336 /* time_averaged_stats.cc in Sources */, - E622B53932FE6653A0A88C3CB99CB581 /* time_posix.cc in Sources */, - 330807FA13658C41DE47BBFC150A8D20 /* time_precise.cc in Sources */, - 9F27DD2BD414BA755B798A536BC7ACF9 /* time_util.cc in Sources */, - 1C51E8D5A5751066EF121E5CDE216DFA /* time_windows.cc in Sources */, - E05E45F268E1BA4B69D2252E18F4EAE1 /* timeout_encoding.cc in Sources */, - E08EB595D18D27D3785B9FEA57564EBE /* timer.cc in Sources */, - A8F8EEE9922674F4380BB00F41659515 /* timer.cc in Sources */, - B93BEA5A7A43343C573FB63A4947859C /* timer_custom.cc in Sources */, - 27B628D609E4FE9B5E97244D67DCEADD /* timer_generic.cc in Sources */, - 2F67E79515D5D37525A9D6FC5819BB3C /* timer_heap.cc in Sources */, - C263E63F851DDC7F3A2998F7F6863B93 /* timer_manager.cc in Sources */, - D27171CC3891811EF143380E2D46C1A6 /* timestamp.upb.c in Sources */, - 437D677D1833835755E45070BDE20E96 /* timestamp.upbdefs.c in Sources */, - 6BA273AA367485EE9B55F7CB49BAD9AA /* tls.upb.c in Sources */, - 0DD7EF8DA7CED8CB0E1C7A763370DBC7 /* tls.upbdefs.c in Sources */, - 3B9805CDFC7CEC91F6BAA44FC2997736 /* tls_credentials.cc in Sources */, - 39E40E4461802E601E56FD2D01D78C6B /* tls_security_connector.cc in Sources */, - 1D6836C4DEC8C4FE676598A7F220324B /* tls_utils.cc in Sources */, - FB1509F1EC881189627BC64D8E14F171 /* tmpfile_msys.cc in Sources */, - BAAD4195E6F7F241FF76C243508A9AC9 /* tmpfile_posix.cc in Sources */, - 7295115F65F45463A9D9E7B0F1668115 /* tmpfile_windows.cc in Sources */, - 3CE4CEF462A93B1F82D94541B913858B /* tostring.cc in Sources */, - A36232407230BE71A52209B195069943 /* trace.cc in Sources */, - 4D71C2DA66FA7EC2292568805D6F775B /* trace.cc in Sources */, - 1F6C25FA1BF58E988ADB9FA06E8CABCF /* transport.cc in Sources */, - DE0460A61EA223A035D5431A40DA7E18 /* transport_op_string.cc in Sources */, - 72ED261F4398C9C989498017ECFF6DE5 /* transport_security.cc in Sources */, - 326780B4AAC2E75559BDC208D1C7CDB6 /* transport_security_common.upb.c in Sources */, - 284A3B2762BE035E8B79939FEF0A3F16 /* transport_security_common_api.cc in Sources */, - B458710CF7C5AA2A52BBDEABEE09F056 /* transport_security_grpc.cc in Sources */, - FAA15B536A6BA830B9439D1ABB41F629 /* tsi_error.cc in Sources */, - 4ECAACC9C02698CD5337D61449FF13B3 /* typed_struct.upb.c in Sources */, - 7C098CDCF0A68A7471E3DB1949E5B3F1 /* typed_struct.upbdefs.c in Sources */, - B56F7A31201530D5210D735FAA04491D /* udp_listener_config.upb.c in Sources */, - 7A6054BA11E1235DDA541291598489A0 /* udp_listener_config.upbdefs.c in Sources */, - 202679E9800D1CAF08861EB8A7F3E01C /* udp_socket_config.upb.c in Sources */, - AEF1A5CAD5345EE49FA5763B3E67B081 /* udp_socket_config.upbdefs.c in Sources */, - B778DDF1B02E7BF46DCCD11FDEE24A52 /* unicode_casefold.cc in Sources */, - 59B85073218E18F9E5489A6B7718C776 /* unicode_groups.cc in Sources */, - 9E6A95C76D3EB1CAFB18A27207B30C48 /* unix_sockets_posix.cc in Sources */, - 082E8D8EA11D5021C67A620C257E7A1B /* unix_sockets_posix_noop.cc in Sources */, - 10106D3E02E3EF613397D77FFD8B28B8 /* upb.c in Sources */, - 098693B85FB53C3B0425A5D039C30D2A /* uri_parser.cc in Sources */, - 51930BF7A87E7665321A728CA0FD017E /* url_external_account_credentials.cc in Sources */, - 27AD6043AE30664D6EC92497D0C5AE23 /* validate.upb.c in Sources */, - 976340656D80DCFC39BB226DAE69DBF3 /* validate.upbdefs.c in Sources */, - C7CA9A150A5F36BECBBADA347233B88C /* validate_metadata.cc in Sources */, - 89B4BC6064657B771C2817E065DF0ED6 /* value.upb.c in Sources */, - F9DC27B0CB1DD9926123244CBE19910A /* value.upb.c in Sources */, - 3D6806029926E09AEA22F33DA554E55F /* value.upbdefs.c in Sources */, - A41A84C4EB2EEEA07B1E4E2FC8944DA7 /* value.upbdefs.c in Sources */, - C75AD7F187FD08F82BE0510A23E63E98 /* varint.cc in Sources */, - 51DF83DCFB7B53A65F27A4E852545ACB /* version.cc in Sources */, - 934C15756BB502A1E9F53EA2799AC835 /* versioning.upb.c in Sources */, - 895398EC69ECE1458CF663D839F4847D /* versioning.upbdefs.c in Sources */, - 6C032B834B57627861CC3F61FBC87844 /* wakeup_fd_eventfd.cc in Sources */, - E73219E5BC25A726DF71A56DD9CE9DCE /* wakeup_fd_nospecial.cc in Sources */, - 526C479F54861858BF704F9991267959 /* wakeup_fd_pipe.cc in Sources */, - E5BD3A9B39CC44AC794B426119EDD469 /* wakeup_fd_posix.cc in Sources */, - C6A1DB0986942C16C30FDA3C4A37C8B8 /* weighted_target.cc in Sources */, - 3F25FE34AC89FB8E7B636337D617C9B5 /* work_serializer.cc in Sources */, - 5C5C03D3D8217CABFEA7B854A5D03AAE /* wrap_memcpy.cc in Sources */, - A504D30FC801FCB76867BB934D1F3B81 /* wrappers.upb.c in Sources */, - 885BEB6B6BCFEEDAA5F9CD8293C654C4 /* wrappers.upbdefs.c in Sources */, - 9AF8609EA6BC81E0C7A2EB7E745D6CE3 /* writing.cc in Sources */, - 2CB8A17B16E27D38A0B5FD6B5AE8ECED /* xds_api.cc in Sources */, - 344F3486E628BA8FC3B13C33E12E5D1A /* xds_bootstrap.cc in Sources */, - 38D59BFF5E95B124C8AA320D28EBC3EC /* xds_certificate_provider.cc in Sources */, - FCE131C028B1C0E0274A8012B030342A /* xds_channel_creds.cc in Sources */, - BD1DB6B42329BBC3B9114BC1BB754822 /* xds_channel_stack_modifier.cc in Sources */, - 6808A85C5B6FE2A9539F901EAD5F634D /* xds_client.cc in Sources */, - AB80E359D8794A8F91851763342B384C /* xds_client_stats.cc in Sources */, - EA23382782BEF380B5E71C38C9F8772A /* xds_cluster.cc in Sources */, - F016BBCDA72BD36036E2C4EEB0CECD76 /* xds_cluster_impl.cc in Sources */, - E3DE6B6FB9F3884DF00B647CC6F6C7B0 /* xds_cluster_manager.cc in Sources */, - FB165B0D48563644B8979E605074F445 /* xds_cluster_resolver.cc in Sources */, - 93FD02942DA5CE22F99EB4F749D66C46 /* xds_common_types.cc in Sources */, - FE15B380C4C9B421E74EEE0A792DE9B4 /* xds_credentials.cc in Sources */, - D1D04AB8F7AFCD316420A6284A6677EE /* xds_endpoint.cc in Sources */, - E44E4D9C87D10F7FB88F2B8D92341D70 /* xds_http_fault_filter.cc in Sources */, - 7D5789022EE9E83E8658838C3F81410B /* xds_http_filters.cc in Sources */, - C819C4F9B15917EE714CEF0C24E72D74 /* xds_http_rbac_filter.cc in Sources */, - D103C2990495F331395F858273BB3F97 /* xds_listener.cc in Sources */, - 80AE71BC81BEF84818C8B887719B92FB /* xds_resolver.cc in Sources */, - 4818BB265C7ABFE18AC02A9CC7825E77 /* xds_resource_type.cc in Sources */, - 255CC9D3AE6115A39B2A9B0090B0C34B /* xds_route_config.cc in Sources */, - 44F70DBBB12FC3A4072295BC09265CDC /* xds_routing.cc in Sources */, - 74140407DDDCDAA0FDF48EED012A4D27 /* xds_server_config_fetcher.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5B0BC7D4937DD5946C6D72253D530CE2 /* Sources */ = { + ADCC70F072CDB5FA6A129E7883AAED13 /* async.c in Sources */, + 76E8A1E64C6353FF6396CA601D8431A2 /* bsd-ifaddrs.c in Sources */, + EF9B555BB90C7F2B34A34AC6161ADE9D /* core.c in Sources */, + 993A8EF5536B40D18D1C06FCC145E476 /* darwin.c in Sources */, + 5192B1803E9FA93A7C96C3DD37857898 /* darwin-proctitle.c in Sources */, + CDF5ADD9499AC4DB2ED52EB7263C1811 /* dl.c in Sources */, + A3934058A99FDA492EDE42E2F9D0431C /* fs.c in Sources */, + 0EF786D17F548C0CC21608F3DF305CA1 /* fs-poll.c in Sources */, + 4561C56A142DB6BC295B003C6E252FF7 /* fsevents.c in Sources */, + 54134C8CA60BAF58C6278A7F502AE8B7 /* getaddrinfo.c in Sources */, + 25EE9D6D0A4C3A74ABCBA05AD6D7A899 /* getnameinfo.c in Sources */, + 6485CADC12552188A4192A42E085A509 /* idna.c in Sources */, + 95ADEF9E89541D1A6CCBE4D7651119D5 /* inet.c in Sources */, + C4F2B98C1C9D421466FCFF1CDD9D9CAA /* kqueue.c in Sources */, + 83AB92031E991D002318A9585927E10A /* Libuv-gRPC-dummy.m in Sources */, + 77C1300667FE9712F55854C11666F534 /* loop.c in Sources */, + 6E5C2FBFD4B14920D330D19FDBF5A82C /* loop-watcher.c in Sources */, + 98CDB1CC48E86191A7B78B98CA8AEA63 /* pipe.c in Sources */, + 74209F7B25C51EEC2CF3CCD359F5B6A8 /* poll.c in Sources */, + 343B179E85EB37A8C21ABB72D3A4BE1F /* process.c in Sources */, + 22A1F3A927473A61EF408CC83173F119 /* proctitle.c in Sources */, + 13C2B41A2ED0AF0E916B1B1C7845E1CF /* signal.c in Sources */, + 89C019D0ED4C908D9442160E5523A379 /* stream.c in Sources */, + 2EEE1B58ABF5DDB564016E3DA45B8218 /* strscpy.c in Sources */, + 1C3DEE5C34776588F9789ACCE5A496DC /* tcp.c in Sources */, + 4BA1CD4B7CB6FF60B509E530C72E1D88 /* thread.c in Sources */, + 921F6049437C1A0F2988436E3AE47FDF /* threadpool.c in Sources */, + 5EDE066550BAE2EF2D79B7063CECC0A2 /* timer.c in Sources */, + 283C48433790A8CE0D7A2E1D92C5861F /* tty.c in Sources */, + 951943E03001DB479ED8A7E687E30136 /* udp.c in Sources */, + E059A71492913E3A58A88CC0C1FA3475 /* uv-common.c in Sources */, + CF6876324B6ECC9767A09693A3643F95 /* uv-data-getter-setters.c in Sources */, + 78037371193EBC5719F7136B2325D18F /* version.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B65E0B0BE6B8B3079622D3D246F391F7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DD65A2E3B0D1F216E5272550D111F17F /* arena.cc in Sources */, - 4015DA8225901D241809C139F5BABF35 /* block.cc in Sources */, - B1C20120943E79B3AEA3A547F5C60651 /* block_builder.cc in Sources */, - C52520E1453F880FC2AF3258D4018FA5 /* bloom.cc in Sources */, - DA40469A622714181906311DC26E753B /* builder.cc in Sources */, - 01A953CB1107011938F0172F578D0FA1 /* c.cc in Sources */, - 62E654840B005D566AF4A1D1163D9611 /* cache.cc in Sources */, - AC6B56D2A29AA5F887B5F06E5CE8ADB7 /* coding.cc in Sources */, - 07F722569198E147AD8EA97144B78271 /* comparator.cc in Sources */, - 1C208963DDB8EEC001F64AC0978778BA /* crc32c.cc in Sources */, - 15A0104779931CB1D3B4AF792E120C2F /* db_impl.cc in Sources */, - 62CC65AB71F1A05B9EF1B343BBA59BD8 /* db_iter.cc in Sources */, - 106D6A3CF36CE5EC10ECFE992DB00CDF /* dbformat.cc in Sources */, - 3E7FC34D529C854113C395A4FB0C30F2 /* dumpfile.cc in Sources */, - 0CB536A09658B801D45155F4E9C78EF6 /* env.cc in Sources */, - 8CF89DAF63891DB8DA4A9A154A015318 /* env_posix.cc in Sources */, - 33D4A6755604805767EFEFB5315FD0B2 /* filename.cc in Sources */, - DD0CB0EE9B3056AC226781F06D5A658B /* filter_block.cc in Sources */, - CB1D2548DE0413C0D23E0A273111967A /* filter_policy.cc in Sources */, - 91BA718C141542626FB9F3DD67D2593A /* format.cc in Sources */, - AE67D8858F21CF2E9AB80CABAA884AA9 /* hash.cc in Sources */, - 8236809F324BA01D2F056DB522BB5FBE /* histogram.cc in Sources */, - 40FBBCA1AC84F3F764E469EE1A37B474 /* iterator.cc in Sources */, - 66A0FE404478B743FC01CB19389F482E /* leveldb-library-dummy.m in Sources */, - EC713C93FBA4F7C3F8DC1C5D9A78F507 /* log_reader.cc in Sources */, - B18FED9A85C4BF90FD73A196214E8B17 /* log_writer.cc in Sources */, - DD93DCB360AECADA65CC493513644A16 /* logging.cc in Sources */, - DF459F6F2722164E616E361AFA171553 /* memtable.cc in Sources */, - CD5F19EE99E59C69EA9D15D9FE0839D9 /* merger.cc in Sources */, - 14DC9C3B9D8B8085E23E8C3EF594C1E2 /* options.cc in Sources */, - 89D46CE018FEA9C12EA5FDE4AFDB2958 /* repair.cc in Sources */, - D5662EF36C198390E081AD3A6D042066 /* status.cc in Sources */, - DFE6E03B94E66A74E6E6D4EE2F5E626D /* table.cc in Sources */, - C769E00670780217A020ACCA1FCCD1FC /* table_builder.cc in Sources */, - 517B7D494988B1056529A996CF1A3D90 /* table_cache.cc in Sources */, - 0F472D5AE60A0176C6BB3402B61BB096 /* testharness.cc in Sources */, - F2A58734FA8371D442ECA0E6E6A1402E /* two_level_iterator.cc in Sources */, - 7983A5748ED1E21C0754E16A4D67222E /* version_edit.cc in Sources */, - 9F1A4AF38F633E8167F3CD83AE2AB476 /* version_set.cc in Sources */, - 84F45986ACC307C53908CFAE733D60BD /* write_batch.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7E6FD206E5D24DBE561A8E22A92EA479 /* Sources */ = { + 03D56EE9C1D738C48A095342BC5B9611 /* alarm.cc in Sources */, + 440997775ECFBC7BD0BADED6DCF8F80C /* async_generic_service.cc in Sources */, + E9E9B93A6DB36EFEB49F6C47252CAF93 /* auth_property_iterator.cc in Sources */, + F72BB234F885064C6E52819A5F814615 /* binder_android.cc in Sources */, + 6FB620705113FCC03AD280FAE3AA93B1 /* binder_connector.cc in Sources */, + 38976FCEC83A08D9740A308BADC352A3 /* binder_constants.cc in Sources */, + 7C08DAEEBD7745FF40E631C90E48DF56 /* binder_security_policy.cc in Sources */, + B1E157BFCC2611C4E241ECFD49F7515F /* binder_server.cc in Sources */, + BE95E65C35E1F0B8BFD9B9FE42DB1F94 /* binder_server_credentials.cc in Sources */, + 060EE3B57731D8E0FAEAF8AAAFD09735 /* binder_transport.cc in Sources */, + 5528304B8FAD0F1D4C8F752C2F4B6938 /* byte_buffer_cc.cc in Sources */, + 2BE0D860224ABE810B1CEB5B3CBEBCCD /* channel_argument_option.cc in Sources */, + 2B23A967D99CC5894E6F5CF1836426E1 /* channel_arguments.cc in Sources */, + 3456097711F5482734A4EADD4E7B1BBB /* channel_cc.cc in Sources */, + C65292D4172905F77AEBB3A5390E8186 /* channel_create.cc in Sources */, + C947A5CAB0BAA86AFA2C6E073258458B /* channel_create_impl.cc in Sources */, + 0EDAA0E2C64B3EE3409AD4EE7D710C82 /* channel_filter.cc in Sources */, + 478E99C07B2C353C404FA64B3E5888F3 /* client_callback.cc in Sources */, + E0792187EF154624D9BB27EBD702C070 /* client_context.cc in Sources */, + F27D7947FFCCFB4C40E5CFA384056EC6 /* client_interceptor.cc in Sources */, + 5F187C7852F34854E992BE64DB9F126E /* codegen_init.cc in Sources */, + 36F46F789B0EEF8E892140030F3E03BD /* completion_queue_cc.cc in Sources */, + D405F02EE5A249B83031D3E72E6EC041 /* connection_id_generator.cc in Sources */, + E86B137D426DF17889DC9594D3D73876 /* core_codegen.cc in Sources */, + 1C224B3265AC95C1B51587EBB6F6C893 /* create_channel.cc in Sources */, + 672EE2230ED8A2035FE9CD1C4C52649D /* create_channel_internal.cc in Sources */, + 9DD5C6D943FC10E511F8A8C60ABFDFF6 /* create_channel_posix.cc in Sources */, + 7A0D7C212B7B84E79C8FF471DC2696A8 /* create_default_thread_pool.cc in Sources */, + ABDA5EB3CE554A1D4F97015B215E4ABC /* credentials_cc.cc in Sources */, + 3A59B2D10647677B15529CB3CA6DD49D /* default_health_check_service.cc in Sources */, + E984A5CCB2B29FECFEAECF7323371922 /* dynamic_thread_pool.cc in Sources */, + FFDD195B768B71139B8DF60E5F341CA6 /* endpoint_binder_pool.cc in Sources */, + 25400A7BE000DD4706985DCB1DE30EE9 /* external_connection_acceptor_impl.cc in Sources */, + 0D5D14A75D7C5036029D01C6977AC13F /* gRPC-C++-dummy.m in Sources */, + CDE45B0FC6BF5D290C3EC25C2526B38F /* health_check_service.cc in Sources */, + 3879544FBF7D676FA9C00C43EFD49B12 /* health_check_service_server_builder_option.cc in Sources */, + 9A41918638C49F51640CC453FF335BE9 /* insecure_credentials.cc in Sources */, + 2B47FD51D5C349D974B92B532BD605CF /* insecure_server_credentials.cc in Sources */, + F86D2FC19752A4CE233667196C047BBF /* jni_utils.cc in Sources */, + 091E20EF9774337213CFB843C2E5EED3 /* ndk_binder.cc in Sources */, + 3D542614D9776DF6C41921CB30D3C22E /* resource_quota_cc.cc in Sources */, + C85954FECFE548BC81D312C845AD862A /* rpc_method.cc in Sources */, + 94330305C101FD0E240899608BB3D2C4 /* secure_auth_context.cc in Sources */, + 4D329E5C57CC174265D1A9D672A6818A /* secure_channel_arguments.cc in Sources */, + 0E76E395B009ED9B59902E7DB02156F9 /* secure_create_auth_context.cc in Sources */, + 31504D8C419870C9B6BB8037B343AD4A /* secure_credentials.cc in Sources */, + E7F849FC2594574D7101D182C7EB42A1 /* secure_server_credentials.cc in Sources */, + 6900CF151B5656193759A4735E8DF81D /* security_policy_setting.cc in Sources */, + CBF0183085BED710DE45FFAD46352DCA /* server_builder.cc in Sources */, + ACA9408D920383D84EB9936D53DC7FA3 /* server_callback.cc in Sources */, + 60B6AEDE15185497C80160010476D04C /* server_cc.cc in Sources */, + 8D37F99789063AE37CC8F460FE5FA0D3 /* server_context.cc in Sources */, + 36A0473A8259A11D3D783C9F32CD9261 /* server_credentials.cc in Sources */, + EF467219E9C3ADA2878084DA970F4449 /* server_posix.cc in Sources */, + DC3BF2CE0DA1D4FEC8C34C27B4FF199D /* status.cc in Sources */, + 0E47A9E998716D7D296A78CF23FDF86B /* string_ref.cc in Sources */, + 9103C6D8C1A87837A5796D070011F8C5 /* thread_manager.cc in Sources */, + 20ECD93350B57289AEF86DFEE6BCCD09 /* time_cc.cc in Sources */, + 87BF42075D60ED1B172B419AB325504C /* tls_certificate_provider.cc in Sources */, + 08A7167D71889D67CCE6C5D5D9FAE64A /* tls_certificate_verifier.cc in Sources */, + A44603A23EEA2AE9364C868686A6CFCA /* tls_credentials_options.cc in Sources */, + 32651CFF296AD3D8964AB87FBDACF459 /* transaction.cc in Sources */, + CD5D8D77C06BDFBDB4440236699F1E0C /* transport_stream_receiver_impl.cc in Sources */, + FDC665F82674453D50FA8AE32680FE2B /* validate_service_config.cc in Sources */, + C97A64A9CD13ECF15DACBD7CCEC1A74A /* version_cc.cc in Sources */, + 270E16471B54704B872F0126B40C531F /* wire_reader_impl.cc in Sources */, + CAD97F674D69F6AA5BEFC2B17CAAC763 /* wire_writer.cc in Sources */, + A06C5D2C51808BE8FCF098C5C6F8C03A /* xds_credentials.cc in Sources */, + 3801FEE4D510325E506890F5AB03885B /* xds_server_credentials.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C37A2B64578B4B2FABA572FFE3224CEB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F118B5A50F26EA80532D5ABF8EA34D8C /* FIRAnalyticsConfiguration.m in Sources */, - 4DC21786D1EEEE726F0035210C6350AB /* FIRApp.m in Sources */, - 01BF73D1CB9F0157194C747719262EF6 /* FIRBundleUtil.m in Sources */, - AD1588464F0DAAD3D77584DB811D1306 /* FIRComponent.m in Sources */, - D50C38FCCB9E8029A9478CA46742E3B6 /* FIRComponentContainer.m in Sources */, - C4F8F0AB9EF39F182F5E87988CA43C70 /* FIRComponentType.m in Sources */, - FE67D247BDC9BD25B3170080A574ED64 /* FIRConfiguration.m in Sources */, - E6029A79998DA2A6E1CB1CA2253DF38D /* FIRCoreDiagnosticsConnector.m in Sources */, - B68215DC7882274FBC9A7DC16C493452 /* FIRDependency.m in Sources */, - 33B422247C19C584876C6C5031171BF8 /* FIRDiagnosticsData.m in Sources */, - D9C2BE695A0DD09F3CC569BB38791B79 /* FirebaseCore-dummy.m in Sources */, - 41080B7EEE47A04A414974B9B694BECE /* FIRFirebaseUserAgent.m in Sources */, - 25F494E42A300B483EAA0A06FCD930E4 /* FIRHeartbeatInfo.m in Sources */, - 94FD4694A70A8FBBD838B036F3E5B462 /* FIRHeartbeatLogger.m in Sources */, - E617A84F7CD9ECBA19B445B1DFB0B155 /* FIRLogger.m in Sources */, - 8AAB49E3533702D3DE00574C9B47F526 /* FIROptions.m in Sources */, - 22DD0AB35E1451344465628BDA084A56 /* FIRVersion.m in Sources */, + FF0C767BAFA9E025E14A649C0B9FC287 /* IQBarButtonItem.swift in Sources */, + CBD1FBD62936F20FAC958D65E8DD907F /* IQInvocation.swift in Sources */, + 989FDD0C1BFD9430BC54A9F0B8371295 /* IQKeyboardManager.swift in Sources */, + 47B628156A13461C8C4D1D3C1DE0C7E5 /* IQKeyboardManagerConstants.swift in Sources */, + 769C8D49A4FD4278D68BF6690D361D8A /* IQKeyboardManagerConstantsInternal.swift in Sources */, + 46C5ECADEC40FFECDE8A8A56B382AA78 /* IQKeyboardManagerSwift-dummy.m in Sources */, + F402983C9465EB0618E81BF95C531104 /* IQKeyboardReturnKeyHandler.swift in Sources */, + F19E4FD40079BC32B10F48D7E677FB61 /* IQNSArray+Sort.swift in Sources */, + 032E2C2B20DB11B7351DB97639A0FD23 /* IQPreviousNextView.swift in Sources */, + 4711C4F69D6ECC7E07D8D5E1DA877D22 /* IQTextView.swift in Sources */, + C6D8F2FF408271DF43DC5F766A2A03FB /* IQTitleBarButtonItem.swift in Sources */, + 8EFC5E0F53435F083C4190B59B97D8AF /* IQToolbar.swift in Sources */, + 6D871A3B11B06618FF2B6B985CC90C07 /* IQUIScrollView+Additions.swift in Sources */, + CE7CC281F116575B6A2A2C7D2ECE1B4F /* IQUITextFieldView+Additions.swift in Sources */, + 84BAA50AECB82A1E3F653417716A6A7D /* IQUIView+Hierarchy.swift in Sources */, + 9C55E8B7B89E33DF063D4AF0BEDC9D39 /* IQUIView+IQKeyboardToolbar.swift in Sources */, + D0429F48AD2F176F7E27C0A40FDBE1BC /* IQUIViewController+Additions.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A73B44A61EF6EE6CA930837BEB88D95A /* Sources */ = { + C5049EF63D121DFB4AE5B53084191972 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4A9EEBE0D403FE35730C06C4D5AD799B /* abseil-dummy.m in Sources */, - DA31BF09CC367C9668DA51B259F23D70 /* address_is_readable.cc in Sources */, - FEF68C9B350B3FC949D3E548CBB91258 /* arg.cc in Sources */, - D8C5D96FBA1BB75B12C08EB8EC992684 /* ascii.cc in Sources */, - E0207B6D1CC0E697D80E0BDA3C3BE12B /* bad_any_cast.cc in Sources */, - C50240C659A3A1281EC3F8E049937D32 /* bad_optional_access.cc in Sources */, - A843DEB9A68FFE2078A7F2FB85878525 /* bad_variant_access.cc in Sources */, - 879BD38F0A49AECD6C08232EC1B1884C /* barrier.cc in Sources */, - 931861667757DEAFC84E118D144423ED /* bind.cc in Sources */, - 1EFDB31C933CD466FC8C3C40DFC90B96 /* blocking_counter.cc in Sources */, - D28417DE4E7CA6B1CF5FFA4F70BD6194 /* charconv.cc in Sources */, - 1984B053696355F9684BD313EE43EEB7 /* charconv_bigint.cc in Sources */, - 2175DE1EBA20452AD7082ABD1173EADB /* charconv_parse.cc in Sources */, - E8C1D24270F5AED12221FF75DCD98450 /* city.cc in Sources */, - 813BF7DEE893F03B91C9392C89BFB000 /* civil_time.cc in Sources */, - 9D0725EE4A4774A1288A37DCA0FB1ADA /* civil_time_detail.cc in Sources */, - D65D893CFB61839CCC0C379969FC5ECA /* clock.cc in Sources */, - 77EA5E5E601BC13ADC5513DA55BD369D /* cord.cc in Sources */, - BB77FF4447DD67B2FFB76E2BB06FB94A /* cord_internal.cc in Sources */, - F870C00613E1022BE957DF602914DC08 /* cord_rep_btree.cc in Sources */, - 07E8F173AD18519410113B03D56161F9 /* cord_rep_btree_navigator.cc in Sources */, - AABEE7AE670BC23BE5A5598DB2BEC47F /* cord_rep_btree_reader.cc in Sources */, - F72C0C63594D7D30D934F7DF25641716 /* cord_rep_consume.cc in Sources */, - 6A907E4E2F8F7A5863CF57E2B4307E57 /* cord_rep_ring.cc in Sources */, - D2F823F1F014FA36D5635EE925E3BAFD /* cordz_functions.cc in Sources */, - D04D72EE0B67A24E905F3A8DA5ED0870 /* cordz_handle.cc in Sources */, - E844EC0E46B77F24E3AA7104C1F4AF2B /* cordz_info.cc in Sources */, - FE13018F9D662DC9E2272A49DF1BA90B /* create_thread_identity.cc in Sources */, - 896EB6C1D3DED05B82A7D06D9B72F668 /* cycleclock.cc in Sources */, - 8190E0BE66ADBE4A3464C51A3D20D041 /* demangle.cc in Sources */, - 895A41CAF468A4E7021C8DCB1F0E4C90 /* discrete_distribution.cc in Sources */, - 0B9AFC3323ADBDD2B13C249A661B1669 /* duration.cc in Sources */, - 616C4E7EEB725028A00B9A93A77DD08B /* elf_mem_image.cc in Sources */, - D4C8BF2E52B40F16A5A19D11C38E3471 /* escaping.cc in Sources */, - 67E48491F40DE444EAEB99EF7EE7C594 /* escaping.cc in Sources */, - BF0EBCD07B7033DD532FF60551900747 /* exponential_biased.cc in Sources */, - 9D016720B34D37BF673707C50E7A93A6 /* extension.cc in Sources */, - 0B8178BA1AE5FB6D97BB7A7352C74C1F /* float_conversion.cc in Sources */, - FD56E1F9BF05D8644B7CCFD417B7FB0F /* format.cc in Sources */, - EFD4769FC1D9D6B5520B923132227F33 /* gaussian_distribution.cc in Sources */, - 5AE8344F44E41E1B8018374411403E2F /* graphcycles.cc in Sources */, - F833D3587A174AC6681169E8526FFBFF /* hash.cc in Sources */, - 290F4341E4C549B194E58C740EED5583 /* hashtablez_sampler.cc in Sources */, - 70F9DAA331B2412278740F1D25BBDF17 /* hashtablez_sampler_force_weak_definition.cc in Sources */, - 0046A22CACA3F3FA4D98946C9D86644C /* int128.cc in Sources */, - 1630B1FC1C9051F677231AB99C896407 /* log_severity.cc in Sources */, - 1A75983CABCE6A63D431C20E1E4AD534 /* low_level_alloc.cc in Sources */, - C9B50929DCB61557C81E44717E8452D8 /* low_level_hash.cc in Sources */, - 4753D089B0D16C9139B1257BF104A82B /* match.cc in Sources */, - 4DA2E5AE393A78D15134341209945323 /* memutil.cc in Sources */, - DDB21CE0F95DB11E995478CD0B7A83F3 /* mutex.cc in Sources */, - D20F6F88F43371BCB42A980188E5D902 /* notification.cc in Sources */, - 942BA098464F2176B8053DDD045BF717 /* numbers.cc in Sources */, - FFBB39EBB8F7A1E785FCB279831028E3 /* ostringstream.cc in Sources */, - D361058CB69B365905E4CEE3926C6EB1 /* output.cc in Sources */, - 6AE9DF22A5ABA1803E74B8F985C57171 /* parser.cc in Sources */, - 2E6DE24DED03C4E7E922F06C40F6D1E0 /* per_thread_sem.cc in Sources */, - 2428AA2C86015084A662663E9B90B7C0 /* pool_urbg.cc in Sources */, - A4D5F3C014E359816EC4624916DE5FAC /* randen.cc in Sources */, - 22C417771ADB28976C102D5826607837 /* randen_detect.cc in Sources */, - 6C5DE6AD5E25D86052524B37FDD6A654 /* randen_hwaes.cc in Sources */, - A7110871D8A29002DE4A5460ADA7053E /* randen_round_keys.cc in Sources */, - 50712ED9F8E5438013319C2E20BA7422 /* randen_slow.cc in Sources */, - AFD37624999016DC151AC6AEB9D236C7 /* raw_hash_set.cc in Sources */, - 0C26FF79F867291FA786226AC4680D2A /* raw_logging.cc in Sources */, - A45804E9A10588B8000B21D452F851F2 /* seed_gen_exception.cc in Sources */, - F77BAD718D424CED7B4320D270AFFD42 /* seed_material.cc in Sources */, - EFEF03B6F54BF19171F374359590BE08 /* seed_sequences.cc in Sources */, - B93EF7C054B95B63FA614A4276B0678B /* spinlock.cc in Sources */, - 921592DB7BD8125FCE18439896EF8FAE /* spinlock_wait.cc in Sources */, - 6B108F2BF46D1E261678C7343F6A56B0 /* stacktrace.cc in Sources */, - 6CED1519B897A098A12CBEE5F9536A9B /* status.cc in Sources */, - F009B7DD305673CBA81F981C253359CC /* status_payload_printer.cc in Sources */, - 1F7ACF98CABAF24EA782D76511D11FFF /* statusor.cc in Sources */, - 3D38C41E5CC9E4D359BA3EB4B5D39B7D /* str_cat.cc in Sources */, - E56FAE8A4AEE91DD9700848AB762615B /* str_replace.cc in Sources */, - BEE694A6776911527E6A354C514BAD66 /* str_split.cc in Sources */, - 325164136731E72E77B41569CEF35952 /* strerror.cc in Sources */, - B2013135DE2975E97092B464D49251AB /* string_view.cc in Sources */, - 914411E9D160CDB07B078A824B397F14 /* substitute.cc in Sources */, - 065CAFBAE3F0F13DA862A83E7952325C /* symbolize.cc in Sources */, - 58603F2852CC8A027643811DBF3D9FCF /* sysinfo.cc in Sources */, - 96476B8212D2F7A18221BF56A303F8D6 /* thread_identity.cc in Sources */, - 1D3FD1668E5029B4B44324A1836B0A1D /* throw_delegate.cc in Sources */, - AE15009BAF7A2ABAAB11360BBBEFAC58 /* time.cc in Sources */, - 3F9746E529DF02451F0EC0F1B9DFFD53 /* time_zone_fixed.cc in Sources */, - C5A1DB7690354BB721E454CB72FEE3B4 /* time_zone_format.cc in Sources */, - BEEA004315ACDD2B2DF38C5658A2663F /* time_zone_if.cc in Sources */, - 2395D02FB2105F86C8A876D8A4442458 /* time_zone_impl.cc in Sources */, - 43FAE57F1E32DAFB8352695CB9742AC4 /* time_zone_info.cc in Sources */, - EAAB55DD5173D4D49841E5B612AB5270 /* time_zone_libc.cc in Sources */, - 0EAECF5D3BF18161E624A2141896523A /* time_zone_lookup.cc in Sources */, - 1A1E53062F7F35B09DC30DB627136198 /* time_zone_posix.cc in Sources */, - 6C31F4D688651AC81FAD7BFEDE48724F /* unscaledcycleclock.cc in Sources */, - 71C234D131537E89211D3DF7D253D33B /* utf8.cc in Sources */, - 20D86B64529E718A25BE046530561A0C /* vdso_support.cc in Sources */, - B2159F74E7DEDC2B7B3D8E9B973F51A6 /* waiter.cc in Sources */, - 31AEC1370209D06838A2693A729B98C6 /* zone_info_source.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AAF102875E4F6809FDB222D5F05D3129 /* Sources */ = { + 89399098A7D0F78DE8FAC222BA3A35F4 /* GoogleUtilities-dummy.m in Sources */, + 6B222DBDEE3D14C5FA651F7A547CD189 /* GULAppDelegateSwizzler.m in Sources */, + B38B6949CB1A76C2857EDE045213C87D /* GULAppEnvironmentUtil.m in Sources */, + 3F2B071427A28BC3BEB2064507FFCD72 /* GULHeartbeatDateStorage.m in Sources */, + 6EBFCA5FC2513DDCCEFB902B019C4D69 /* GULHeartbeatDateStorageUserDefaults.m in Sources */, + 95BE63068F48E36DE96C289542749335 /* GULKeychainStorage.m in Sources */, + B0D11D476B3A1B363CB69EC6FD34E646 /* GULKeychainUtils.m in Sources */, + 9D80C5671BF7CD2612CC8CA43144B207 /* GULLogger.m in Sources */, + 6B870998CA115DE2DFE298A7FD212551 /* GULMutableDictionary.m in Sources */, + 292787EAEA30C0F2D89B43F193441CFE /* GULNetwork.m in Sources */, + 27B98CA5B4A09566A46ADACC5E713AC8 /* GULNetworkConstants.m in Sources */, + FF058F4F822963BE9F8D1022F4B8E48C /* GULNetworkURLSession.m in Sources */, + CC9853D11404895E43A7002BE1276C09 /* GULNSData+zlib.m in Sources */, + 27C9ADC6A52B26B477476183DFD17E05 /* GULReachabilityChecker.m in Sources */, + 69D59DB7D8C710405C29951B0C1C40F1 /* GULSceneDelegateSwizzler.m in Sources */, + C677BB7955D8D57A291D6E21A4F42A9A /* GULSecureCoding.m in Sources */, + 53DD7B8B3A4C2CAA9262C9B94340A841 /* GULURLSessionDataResponse.m in Sources */, + E63F517474101C45F0501B0C563FE1E8 /* NSURLSession+GULPromises.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CDE506F5B2EF3E504C8C76BF91BF93D1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 61FC2D08089CEBFEA535D5E765464459 /* annotations.nanopb.cc in Sources */, - BF96AA7B65DE41D10A4DF4C183CD60A1 /* any.nanopb.cc in Sources */, - 73834A23F7640B71229AC07A66D3222E /* array_contains_any_filter.cc in Sources */, - 096FDF741B7FCC605D390AAD53F5CD20 /* array_contains_filter.cc in Sources */, - 0174DA901001CC6B09EB96C13151679C /* async_queue.cc in Sources */, - 9FC7E891EBC7454714DDCF62F4E8BC90 /* auth_token.cc in Sources */, - 156D2E44540CA30086A4FAE351466650 /* autoid.cc in Sources */, - 7F0CBC90DA8AB07FEB98693AC2DF7FC4 /* background_queue.cc in Sources */, - 9434980BC9F1EF53865807AFE5AA8BF8 /* bits.cc in Sources */, - FA97F9EB8CE877D4BC1E390FB3A03C6A /* bound.cc in Sources */, - 1721632419189D890E47E2FA4EDC5DDC /* bundle.nanopb.cc in Sources */, - F7B8B46F7582A2483A4AB80224716719 /* bundle_loader.cc in Sources */, - 981D544AD0894A8BF360C4B94A3B9755 /* bundle_reader.cc in Sources */, - D6A33DD5F32EF006F7AC2B248B80A9AC /* bundle_serializer.cc in Sources */, - 3A9C9BAD61CCF02672E8A016F92B2A71 /* byte_stream_apple.mm in Sources */, - BB05B63116EFFE2F2EAAFE46C566F8CE /* byte_stream_cpp.cc in Sources */, - 7E29F7BBAF7C3E975FEE4F8E1EEA3685 /* byte_string.cc in Sources */, - 2E06EEA2B6FABB4F2EFEABB5FB362DF6 /* collection_reference.cc in Sources */, - 016C9913B63FF48F4BAD06AD925B78E8 /* common.nanopb.cc in Sources */, - 40C062039B065050627CDA526027C062 /* comparison.cc in Sources */, - 92F048825FE266AB8D09790767212215 /* connectivity_monitor.cc in Sources */, - 63D373DACFF30025FDAA76D6D65596DF /* connectivity_monitor_apple.mm in Sources */, - F43C7A2568038D56B94CE0FF09F9AE6D /* converters.mm in Sources */, - 3F791B06C88525AB05BD71F6007188DE /* database_id.cc in Sources */, - 13579779509A9D773B696C25A9A8564E /* database_info.cc in Sources */, - F82D808CF0A0FB872A55819ECD737739 /* datastore.cc in Sources */, - F42E8BA682153D887F03298AED53558D /* delete_mutation.cc in Sources */, - 9FA6B1BA1C74B9C0B6446F81DF810672 /* direction.cc in Sources */, - FC1F197AFD3E9E2C32BFD4A5123AAC2D /* document.cc in Sources */, - 1E541522F0F24364110BE65F636DBC79 /* document.nanopb.cc in Sources */, - D2B780E5BA52D997AF5E0688BB095267 /* document_change.cc in Sources */, - 17CB9A0E6AB32F0A2C49C5C41A0AD87D /* document_key.cc in Sources */, - C2EE09E379CAEBA3147FF22B4150FC65 /* document_key_reference.cc in Sources */, - 1A4CD1B25C3259258F2B610E3062A64B /* document_reference.cc in Sources */, - 6492D076960F2D848F56F3A8768D6A93 /* document_set.cc in Sources */, - 257D105C723F074C01397F22D43723D5 /* document_snapshot.cc in Sources */, - A6DCFDAAA02FBCE25B0C26AD5DE09242 /* empty.nanopb.cc in Sources */, - 2F4836510CA9779C73D79DCB8FAB2900 /* error_apple.mm in Sources */, - A8AF11712D3CA440027E4AEDA6A10512 /* event_manager.cc in Sources */, - 589448FF7B9B1AE4CF975588ED3A70E3 /* exception.cc in Sources */, - 933AF84309E83E9D34AC365B68460B1F /* exception_apple.mm in Sources */, - 3171BF417B4B604AF51C9785AAA3B7D4 /* executor_libdispatch.mm in Sources */, - 6C4E539205A25EE932074C75C3F3207D /* executor_std.cc in Sources */, - 25A0C11BB995E1BD3C1E72E7A23ADBD6 /* exponential_backoff.cc in Sources */, - E8E2E1CDCEDD7111EBE72C39EAE30837 /* field_filter.cc in Sources */, - 8EC497DD3A9DB3C5B27AA24D51753924 /* field_index.cc in Sources */, - A9C4C623F3CB6EBF6E3D7AD5FC611C47 /* field_mask.cc in Sources */, - A73EFBC394A960C10A6E20C4D47E73E4 /* field_path.cc in Sources */, - 3CE76375AF5F380BE7C6A79DC6871154 /* field_transform.cc in Sources */, - 2FB54975BFF664B859BD0B9EFFCD3BB1 /* filesystem_apple.mm in Sources */, - D51DE57D70C726AF38C37ABF9AFEA78A /* filesystem_common.cc in Sources */, - A81E60001732EBC586D89FF769824E6D /* filesystem_posix.cc in Sources */, - DB9F65C90D72D3B5A7DF862A51121ADE /* filter.cc in Sources */, - 795BC47E5914FDF71DBDA611DE23A0F6 /* FIRCollectionReference.mm in Sources */, - F69051DB47C800B003E41165DA334D73 /* FIRDocumentChange.mm in Sources */, - B9425CC496F95B776905AEB01BA3ACF4 /* FIRDocumentReference.mm in Sources */, - 3095DAD45FA572E2579D5FFA62F1D9BF /* FIRDocumentSnapshot.mm in Sources */, - 4F7F3E993AD51AFA6CED5F29C0A5B514 /* firebase_app_check_credentials_provider_apple.mm in Sources */, - D1CC16A1430A03000F99757628AA8361 /* firebase_auth_credentials_provider_apple.mm in Sources */, - C0E778DCA54119688E044D1BCA36199D /* firebase_metadata_provider.cc in Sources */, - 1330A62F97D637BF9560BD32B6C88749 /* firebase_metadata_provider_apple.mm in Sources */, - B879AC35D191FA85ACB47F144B79D0F3 /* firebase_metadata_provider_noop.cc in Sources */, - ADDEA1406721331D23AE3B28260DE217 /* FirebaseFirestore-dummy.m in Sources */, - AB56F7A172543252AD85308545B9B900 /* firestore.cc in Sources */, - 2A5ABD8475EE919E9ECEB193F10AF515 /* firestore.nanopb.cc in Sources */, - F73997EE2149932A199337C97DFCD31E /* firestore_client.cc in Sources */, - 668097101035B99213565779234DACA3 /* firestore_index_value_writer.cc in Sources */, - 163427664A4F62EDF55691020700EB2D /* firestore_version.cc in Sources */, - 632052EC10ACE21F446303EEAEEB7EED /* FIRFieldPath.mm in Sources */, - AC7F67DADB1ADEA24BA108DD871C7D05 /* FIRFieldValue.mm in Sources */, - 5B223B097A47938D79149CFEF15179F5 /* FIRFilter.mm in Sources */, - FCEEE303402A3585A04B6C3561A027BF /* FIRFirestore.mm in Sources */, - 7D9BE6DF830548D1254B22DF07A32C14 /* FIRFirestoreSettings.mm in Sources */, - 85F55E188DD19A1C8C64066A88E344F7 /* FIRFirestoreSource.mm in Sources */, - 1D10C6535F93016C1D4441E312A6CD5F /* FIRFirestoreVersion.mm in Sources */, - 5379B3416AD6FC6B07936B564C02D753 /* FIRGeoPoint.mm in Sources */, - 367D8547D8DCDB4BC0471E96888F1CEB /* FIRListenerRegistration.mm in Sources */, - AFD0A14360875268E08A82FF03D1CBAA /* FIRLoadBundleTask.mm in Sources */, - 78008FEC7C53A989394973F56270BDEA /* FIRQuery.mm in Sources */, - A30FE2E75B55479657A648621917F860 /* FIRQuerySnapshot.mm in Sources */, - 30B55CCFDD79798246A54820D5C143CA /* FIRSnapshotMetadata.mm in Sources */, - 3FEA8868D7EFD5D3027B8CDCE8DBD3B5 /* FIRTimestamp.m in Sources */, - C10219012E77287EE228A4CD3B8BF477 /* FIRTransaction.mm in Sources */, - C5560345588E3B40E425F91247861601 /* FIRWriteBatch.mm in Sources */, - 9822D6F6CACB0987D339E3AA412A64EE /* FSTFirestoreComponent.mm in Sources */, - 4206E0541E351FCC0C70A59019D6A752 /* FSTUserDataReader.mm in Sources */, - 80346F1B70091CBB733BF5A0DAC2A982 /* FSTUserDataWriter.mm in Sources */, - 8211D1AEF7EAC1B64C5A1A0DF845002E /* geo_point.cc in Sources */, - 8585A1CA32BE8F9C3E966EDB0896E29B /* grpc_completion.cc in Sources */, - 70AF67CD2347EC54E99DB5D8C9C5F979 /* grpc_connection.cc in Sources */, - C22CD6B6FC0B130B242BD7A9C5FAB6F7 /* grpc_nanopb.cc in Sources */, - 65CFCAFF525B85B66D7BA50920FD3627 /* grpc_root_certificate_finder_generated.cc in Sources */, - 2150DC2B6172CFCB143C021F3627170B /* grpc_root_certificates_generated.cc in Sources */, - CA58328BB03766AFB8ECFE074EDC52ED /* grpc_stream.cc in Sources */, - 9618AE49D808AE0C7B6F7A971BADCDC8 /* grpc_streaming_reader.cc in Sources */, - 97C92FBDE4ABA8560AA5B4B732C55551 /* grpc_unary_call.cc in Sources */, - 1F7C8249656889CAE3263020AA33D9B6 /* grpc_util.cc in Sources */, - 36090F1946E4E1A6672BE42EF8E0C507 /* hard_assert.cc in Sources */, - B8F5F7DE093ADC1DFB4A0797D8450458 /* http.nanopb.cc in Sources */, - 920EE8E3E69FBC7F81A2C64333939DE2 /* in_filter.cc in Sources */, - 7EBED56778F6EC0A6093B8C2B2CC0A29 /* index.nanopb.cc in Sources */, - 92EEAB4AD8AB2FBE2C16315454825969 /* index_entry.cc in Sources */, - 68613B77AFDB10389B4049721F433B41 /* key_field_filter.cc in Sources */, - 284646318DA278D70802F928495FB514 /* key_field_in_filter.cc in Sources */, - 101197C0A6FCEABC735B12CF900D3246 /* key_field_not_in_filter.cc in Sources */, - B7248644B582566533E91D80BDF7004A /* latlng.nanopb.cc in Sources */, - B0708D1489DFFB98D3B0E271DEB3DC49 /* leveldb_bundle_cache.cc in Sources */, - 0A54BBFD5BB148D2E88F47407B689FEA /* leveldb_document_overlay_cache.cc in Sources */, - 9B45CE01A7C4378EE2C1042E1B17BFAD /* leveldb_index_manager.cc in Sources */, - 9A48AD2716119337DABD1508C6347AED /* leveldb_key.cc in Sources */, - 32CE24E94D00516F12F15F51ED00152D /* leveldb_lru_reference_delegate.cc in Sources */, - 7AEB5CF66827FA51DACB999714D09C14 /* leveldb_migrations.cc in Sources */, - 0BB0694069C56D20CD7FBF075FDC7BB2 /* leveldb_mutation_queue.cc in Sources */, - 756229E761FB819B9213EBA87F7A8ACF /* leveldb_opener.cc in Sources */, - 966450F823BC3FB20DC67B0735115F95 /* leveldb_persistence.cc in Sources */, - B99E935268CC073EC0E824B426558993 /* leveldb_remote_document_cache.cc in Sources */, - 181F970334E2BFFB5814D8116997AC2B /* leveldb_target_cache.cc in Sources */, - 102F66F70EEFD73EDBAD621DC2745475 /* leveldb_transaction.cc in Sources */, - F75CB03A1A4B606CEB63318C864E5114 /* leveldb_util.cc in Sources */, - 6E4B12620B10BCD184692EBCA688AE0A /* load_bundle_task.cc in Sources */, - 85E4782C7E864847F1D6DBD3FB63CB0C /* local_documents_view.cc in Sources */, - DDE9516054EE715A15C7733C963749E4 /* local_serializer.cc in Sources */, - 213424BFD541770C4A0ED50422C711A3 /* local_store.cc in Sources */, - A3E1519A0A89238F4508A95EE31FA672 /* local_view_changes.cc in Sources */, - 22C88D569889E0BE4561A72B8248C220 /* log_apple.mm in Sources */, - EF9FB0F473E4A7D910D926C7AE28D28F /* lru_garbage_collector.cc in Sources */, - 70DEA2D440220942E4D1851C056D0341 /* maybe_document.nanopb.cc in Sources */, - 215D1525172AEA38453B9276EABF53BC /* memory_bundle_cache.cc in Sources */, - 4FD742D74A25F59A922CC0D8FC78E282 /* memory_document_overlay_cache.cc in Sources */, - A9E880297F70D4E6984EEB2897012265 /* memory_eager_reference_delegate.cc in Sources */, - A2D4DA0AF133F41A2D9202026D05FD74 /* memory_index_manager.cc in Sources */, - 9BD14D9678FE59FFB94911645E385408 /* memory_lru_reference_delegate.cc in Sources */, - C74CC4460836A1B2AE446764A78FE7FF /* memory_mutation_queue.cc in Sources */, - A11FA3601FE099F804BA34AE5A719BC7 /* memory_persistence.cc in Sources */, - CEE3501AE0B9CB0C5DDD32FD02F0A995 /* memory_remote_document_cache.cc in Sources */, - 137CBD7EA2C5AE6F058426B4E134390E /* memory_target_cache.cc in Sources */, - EC35C3F578EE925FA305ED7C8D08BC03 /* message.cc in Sources */, - F763C6787750B8E3141D52EF150FD0B2 /* mutable_document.cc in Sources */, - 99592C16B2270DEB62F894FA7D221DFA /* mutation.cc in Sources */, - AB6AEF0F2E95F9F88FB4BA11AEAF7800 /* mutation.nanopb.cc in Sources */, - 4D2400B7FA4B094441C98EA2162F0352 /* mutation_batch.cc in Sources */, - 3DA0AC8F2530040F118B98F92AA47562 /* mutation_batch_result.cc in Sources */, - 45F46C57A2175CCB25F7C710FCE70787 /* nanopb_util.cc in Sources */, - 427D8401885874B6CAC412375F856277 /* not_in_filter.cc in Sources */, - ED609ED5925A51AAD1E685E93ABC2B32 /* object_value.cc in Sources */, - 3B8ED9EE53EFC2FA8BF6A93F6589A57D /* online_state_tracker.cc in Sources */, - 8684145FB6468AD5B70F9397C53F1B44 /* order_by.cc in Sources */, - 7DB73F2D435785B045C0858729C3D36E /* ordered_code.cc in Sources */, - 976D0782727D82A193D12C0FC2DCB29B /* overlay.cc in Sources */, - 40206797CD49D471BF0306A22CC5DBFC /* patch_mutation.cc in Sources */, - 76BD1166EDABF74D630F38B84BF0CB94 /* path.cc in Sources */, - DECDA6BA9F6F32A15898179CDC1CD982 /* precondition.cc in Sources */, - 2AD4A9A72B7AF095E36CC5EADC66DAAE /* pretty_printing.cc in Sources */, - E3D837F1585C63D4C4B8414978830C24 /* proto_sizer.cc in Sources */, - 5C2BD5601B221311FFA7C691F7FFAFDB /* query.cc in Sources */, - E199B3FC84F5BC5811913AEA92FAA153 /* query.nanopb.cc in Sources */, - 90DCA5165B0AB3167506E708FEC771F1 /* query_core.cc in Sources */, - CBA5F3AC046E09C5C2BC11C764C23A08 /* query_engine.cc in Sources */, - F4D826AE212D7BD7576A3B0B20374CA9 /* query_listener.cc in Sources */, - BA068C6F90F7D1636F8AF0828156B790 /* query_listener_registration.cc in Sources */, - 5C91DF4B328E4E4981AA9257933A156E /* query_snapshot.cc in Sources */, - C4308827FFDF1CEEBF24EAAAE9D6E1A3 /* reader.cc in Sources */, - 22D47830E99F3475DEA0C3A0C061AA01 /* reference_set.cc in Sources */, - 4E85D207BBA3B1D7F02FF8B044849826 /* remote_event.cc in Sources */, - 642671953C414321A30EB17F0F5DBD43 /* remote_objc_bridge.cc in Sources */, - 5A3628D720898ACADD60A0E598C2D99B /* remote_store.cc in Sources */, - 6ACC95BB715951A14D00161AA46E1B8D /* resource.nanopb.cc in Sources */, - BB11E7B8F89D2DBC94DC24BBED9C7543 /* resource_path.cc in Sources */, - A765C0022A055397505A4316936F1669 /* schedule.cc in Sources */, - 60DE83681530388BDD74377A6A5A3CF0 /* secure_random_arc4random.cc in Sources */, - 9B0E50C5D3EAF3B84C25C4A04E064FFB /* serializer.cc in Sources */, - EE32628AD2AE930A385386961F254D1D /* server_timestamp_util.cc in Sources */, - 77CFBC6E7DA10AA5A25DF8570C5F0204 /* set_mutation.cc in Sources */, - 44974BCAF615B143C07E5D97A3708F34 /* settings.cc in Sources */, - 12BCCADC093D6A8B3FDA8F908CD505F5 /* snapshot_metadata.cc in Sources */, - A725110D2A0B8164F7C8198C2BFBDE5D /* snapshot_version.cc in Sources */, - 93E9573A9ECC41B988A879B3C840660C /* snapshots_in_sync_listener_registration.cc in Sources */, - 5682CD19B29061ADEAC7E4162DE17C9E /* sorted_container.cc in Sources */, - 7D6538561E5E91B2F37143482E32F7CF /* status.cc in Sources */, - 0E154ECAA9052AD08B7C6E63B7444D7C /* status.nanopb.cc in Sources */, - 45492B4F0C4F764EB2FF4F790C4AF567 /* status_apple.mm in Sources */, - 610A0B10EBC00D639263DEE219A20837 /* status_errno.cc in Sources */, - 377761D2DCEFA94C10912BDD7179581A /* status_win.cc in Sources */, - 45ED29270A006ABD2293ED5A321EB277 /* statusor.cc in Sources */, - E16F3B7A0EEB9372F9D2C9E9C4CA14FB /* stream.cc in Sources */, - 8079094019052976EE13C9E219E006F5 /* strerror.cc in Sources */, - 18D08D96C65E6B917768C91A31A5C4BB /* string_apple.cc in Sources */, - 590DACC2138B129012874C56607417DA /* string_format.cc in Sources */, - 4D609F95BDD9B6AF1895CE5928BB247A /* string_util.cc in Sources */, - A8471A54C7A5308376ECA08B05A15A75 /* string_win.cc in Sources */, - EA0AF95B01942524402670B28E5B2E02 /* struct.nanopb.cc in Sources */, - F3FCF0ACEE2563097DEE0D4B0E27D4D2 /* sync_engine.cc in Sources */, - 61C3097B9780B4AA6610FFD7017B03B8 /* target.cc in Sources */, - 60A22BD2D896AB1F4E8E2E953AE56E5A /* target.nanopb.cc in Sources */, - B87AC23D3E9250211581E7014568B00E /* target_data.cc in Sources */, - DD15225EFD824DB20DE15CD3A619A15C /* target_id_generator.cc in Sources */, - F6DA64A4522B3E2681D7E91D5EA2CC35 /* target_index_matcher.cc in Sources */, - 5601439B1D04712040CFC03BC645ED18 /* task.cc in Sources */, - 870CABA0ABE74DF3293C2EDFE8D8636D /* timestamp.cc in Sources */, - 9FF45696BDE2AD3B2C1D8A7536D88EE7 /* timestamp.nanopb.cc in Sources */, - 7FA1CE48A5E9E159C974A74077EA5BBB /* timestamp_internal.cc in Sources */, - 4AB6922545620556E75D2BE13F3C75D1 /* transaction.cc in Sources */, - 967FD71710C6943B846C722182A66F1D /* transaction_runner.cc in Sources */, - DB8AB745C7F9BC4DAF6B933B268ABC72 /* transform_operation.cc in Sources */, - A7CAB9F3B8B689B5501CA9AD01A4A4E2 /* user.cc in Sources */, - D071E57D1CAB31BBE043D50864A5BF0B /* user_data.cc in Sources */, - 8742692A60DB6482F6CBC90E69022E57 /* value_util.cc in Sources */, - A06E779E7AAE3C787AA4ECEB7B06A8EE /* verify_mutation.cc in Sources */, - 3C8054E6A7B1FDF711AD89FEA2A3DCD6 /* view.cc in Sources */, - 71ABA9C475D7BA9FB4CFB6058E02CB08 /* view_snapshot.cc in Sources */, - 72A773BBC9F82F2E9466254E088E0BD5 /* watch_change.cc in Sources */, - 43122452034655610BE7746AA1A1AC92 /* watch_stream.cc in Sources */, - 77C311D15287A6228776ED91EC5E5FB0 /* wrappers.nanopb.cc in Sources */, - E29448C36E4012972D15188DD7C9F993 /* write.nanopb.cc in Sources */, - CBD3ABA55C809A96C554E1735E6E98CC /* write_batch.cc in Sources */, - 4E90E3F0C3B216D2F14D62B441B1722F /* write_stream.cc in Sources */, - 286EB755569CB591B4C0196BEC59B6E4 /* writer.cc in Sources */, + 92EF1AB84C40D61351AA0ADD5D09E098 /* FIRAnalyticsConfiguration.m in Sources */, + B6DB6585BC90A2E4F911139A474A3DB9 /* FIRApp.m in Sources */, + 6B78C0A2059190D0DE37E51B64765323 /* FIRBundleUtil.m in Sources */, + 3DE349F644E53A2FE22DD88D50DA981A /* FIRComponent.m in Sources */, + 0B27DFBF255F809F090AC75F2C6F51CB /* FIRComponentContainer.m in Sources */, + B7814F6CD06D665995729B49297465F9 /* FIRComponentType.m in Sources */, + 4427334D3FA929CF0E70A3F5A2285D81 /* FIRConfiguration.m in Sources */, + A335D1A738860DC040E021FDFF8928B2 /* FIRCoreDiagnosticsConnector.m in Sources */, + FF35465ED9F3C2FFFFC8F19AEA039AB1 /* FIRDependency.m in Sources */, + F82D3C825B6E3ADDFADD433FA33405BF /* FIRDiagnosticsData.m in Sources */, + FB982357FF72C68CB45E864A4C7ADCE9 /* FirebaseCore-dummy.m in Sources */, + 20D56D0EC2AB90BFCED2801780DACC88 /* FIRFirebaseUserAgent.m in Sources */, + F0B77731323CA8D4D5E59B948AD496C4 /* FIRHeartbeatInfo.m in Sources */, + D161C0087F079D5C0AE6B6FB5B89F323 /* FIRHeartbeatLogger.m in Sources */, + D6368C1F2F3A1771B4C2826EBF145F4B /* FIRLogger.m in Sources */, + 43E1528F65A192B0C760BA642B8DE830 /* FIROptions.m in Sources */, + 0169E5C44E3526341339FAC05893B11F /* FIRVersion.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -27306,393 +27683,312 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D4B329AA93A8B084F38EA5F32F3015B5 /* Sources */ = { + F1715DB9AF809DB4477B4E50E522ABB1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 77A9C8A0E7F9892896AC6C553DA63967 /* _ObjC_HeartbeatController.swift in Sources */, - A54348D7EA3FB9BA5BFD7472CC6C86B7 /* _ObjC_HeartbeatsPayload.swift in Sources */, - 439FBCB414759B65A1F6A0C8278FF3EF /* FirebaseCoreInternal-dummy.m in Sources */, - B8FB6F446DF31C7ED50666C35DF7968F /* Heartbeat.swift in Sources */, - 7403E644A2B30354AE1C962A5FE1B6A4 /* HeartbeatController.swift in Sources */, - 5710508511214F5048958C1653F2B334 /* HeartbeatsBundle.swift in Sources */, - 67FD7C744D94C4FBADF2C8D05502DC28 /* HeartbeatsPayload.swift in Sources */, - EAF14F04B736F0FABC9C84F5F4277FE3 /* HeartbeatStorage.swift in Sources */, - 38CADB311923097255DE3C24C3739414 /* RingBuffer.swift in Sources */, - 42B4A37BE660EC1B3ECC885C4B9DAD14 /* Storage.swift in Sources */, - 75498D86FA49548B9AB70B907872EB62 /* StorageFactory.swift in Sources */, - 51A7728BF6F6C62164DB019497917EE3 /* WeakContainer.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E8FDD41FDF3CDF075041D060DC0B050F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 31978B1791653CA5E3DED8C9CD5CAB52 /* alarm.cc in Sources */, - C73FA085F26832EA15193BA7CED33470 /* async_generic_service.cc in Sources */, - 0B500CD11BBBDB03295A7A71DF3522BB /* auth_property_iterator.cc in Sources */, - 7D8C286F8A4808A0386DE9AF044C2E3D /* binder_android.cc in Sources */, - C01CDD230E5F6DA61B71D4016536092D /* binder_connector.cc in Sources */, - 66F9C04646B7B1176882EB1E3C3BE4A6 /* binder_constants.cc in Sources */, - CF7BA0549DE4E30FB749E5B22AD05E55 /* binder_security_policy.cc in Sources */, - 54DC46C0341392FFDCD3B67E58993C9C /* binder_server.cc in Sources */, - 458503394BFB32B41C12893E0FBBFC41 /* binder_server_credentials.cc in Sources */, - A877AB2435A3877FFF4B2A0A363313AA /* binder_transport.cc in Sources */, - A1B34FB337D83F7261BDC27E36D3088A /* byte_buffer_cc.cc in Sources */, - 739861009B79D9C18C0BB25C5A7139DE /* channel_argument_option.cc in Sources */, - 44C71803DBFA3DF4B0443C1FA8630862 /* channel_arguments.cc in Sources */, - 614B0DE0E76AD6FE1CDCDB860A284863 /* channel_cc.cc in Sources */, - 813EBAC668940D75702DEE553219C4EC /* channel_create.cc in Sources */, - 36EE0896C40E860A824C0B60C359896B /* channel_create_impl.cc in Sources */, - 5CCC3C74069801DB479292E5197349D9 /* channel_filter.cc in Sources */, - 5F20A56E298BC83594BE7535B1F856F8 /* client_callback.cc in Sources */, - 27C447E61EEC94C6709D98BCE69132F1 /* client_context.cc in Sources */, - 2C83728025EBA1F66A4034E36F2F7824 /* client_interceptor.cc in Sources */, - 401FEB2C12C965AAD4D9D58545D04500 /* codegen_init.cc in Sources */, - B3B618470AE411DAA05FB3426018FF2B /* completion_queue_cc.cc in Sources */, - 443AA914457B7D433BC71AC580120721 /* connection_id_generator.cc in Sources */, - 52739F80B5A4848292D482C5BD6C77CF /* core_codegen.cc in Sources */, - 01DD34ADDB1E1C03A4A64E2A47B398B5 /* create_channel.cc in Sources */, - E18F0224E4A92BA321E54EE7C226240F /* create_channel_internal.cc in Sources */, - 250BABE91DA01966E3A938B2024EF213 /* create_channel_posix.cc in Sources */, - 399C81F454E892F4624525C5C8341F9F /* create_default_thread_pool.cc in Sources */, - 4AA9D9485E0FC20251D76D1E756AC3FD /* credentials_cc.cc in Sources */, - 236A133D8A0227DE946BF79AC1FA2C58 /* default_health_check_service.cc in Sources */, - 602D2C55E3B999631C5264237029DB22 /* dynamic_thread_pool.cc in Sources */, - 30645CC9BB8EC8782FDBC11A8060BD49 /* endpoint_binder_pool.cc in Sources */, - 4572989304EF775BE954148D17950E4A /* external_connection_acceptor_impl.cc in Sources */, - BF52DF97FAF547621C8FEFCF3F966022 /* gRPC-C++-dummy.m in Sources */, - 8314694B29359BEEE6987C75CC33662D /* health_check_service.cc in Sources */, - 82EC03A03394BAEF118A5F002B899C2D /* health_check_service_server_builder_option.cc in Sources */, - 122CF27A4707AAB50E9BB34B24F72082 /* insecure_credentials.cc in Sources */, - DB248F124ADAAEF827D3FD5D82B509B5 /* insecure_server_credentials.cc in Sources */, - D2ECBE005327E4048BA02B265FE11E70 /* jni_utils.cc in Sources */, - 352C8365E78D6EED638ADF418571EA4F /* ndk_binder.cc in Sources */, - 4291A2853F5A0CCF50328C87A64A4CE3 /* resource_quota_cc.cc in Sources */, - 9A75407E78A24CE12CA470CF479A627A /* rpc_method.cc in Sources */, - 45C668BE2AF8480078A2BBF721ACDD65 /* secure_auth_context.cc in Sources */, - 2222A6FA99286A3876DAD32D4F4782D9 /* secure_channel_arguments.cc in Sources */, - DE7A7F7D764C628E8AFE2E222CD281E1 /* secure_create_auth_context.cc in Sources */, - 9F4172DC2B36F16E84092F99FEBC8E29 /* secure_credentials.cc in Sources */, - C30F46A7D901DA6E3D09C06FFA8504F4 /* secure_server_credentials.cc in Sources */, - D3270098AE98C4BF71A9F0DBF110BB1E /* security_policy_setting.cc in Sources */, - 91B133B5D09E4D9523B9787B506AD278 /* server_builder.cc in Sources */, - 906626427BBB532A118EB47138CB8D35 /* server_callback.cc in Sources */, - B80B5CA0BC7B546BD1B1A2962341131B /* server_cc.cc in Sources */, - 1E5C6961BCF71F63B993B62B2EDA4AAD /* server_context.cc in Sources */, - C006DA1DE10C2F0F8B25D87810CEADB5 /* server_credentials.cc in Sources */, - B2465EE7C5BD8178AF67FC31E58856BA /* server_posix.cc in Sources */, - B5E7F3139C729362C3C7880DD6C3EEA0 /* status.cc in Sources */, - C6047AE7246A613DC12669E758AFB7F3 /* string_ref.cc in Sources */, - 8D6C2461EB69E040BCD5119938F5E6DB /* thread_manager.cc in Sources */, - 056709E54CA3CE8285C069DBAA649C3E /* time_cc.cc in Sources */, - 9D12D6BC317E61F2091A178367773911 /* tls_certificate_provider.cc in Sources */, - 2DD6DC642ECBBA8E7CCA3CF8F1280289 /* tls_certificate_verifier.cc in Sources */, - 31EAE46C611908F1F4C85AC19D441D15 /* tls_credentials_options.cc in Sources */, - 5B16EA4200D08DC160F4ACADB849222F /* transaction.cc in Sources */, - 47674DA93A1236BF16F8CD1A0DDDEF1F /* transport_stream_receiver_impl.cc in Sources */, - 27F8C524F455914F7F2F600C1A791B08 /* validate_service_config.cc in Sources */, - D57B579165834E4CD9EA6694DDAF3FF9 /* version_cc.cc in Sources */, - 4F7CEAD731D7EAEF2F01EBF285863D76 /* wire_reader_impl.cc in Sources */, - 15764B33D7FDF810BE7DF185189DA8CE /* wire_writer.cc in Sources */, - C7C5903402A0BF5F86BAA89AEAD65163 /* xds_credentials.cc in Sources */, - 2501BDAE9D16B10B48393444B8A4350C /* xds_server_credentials.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FE180D8B4D7D7F92EA48A98CC3BC4319 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7997FE22ADFC69155FA161B2503B740A /* cct.nanopb.c in Sources */, - EDF0D67A1F6EC1D5742E98EDB9667A3B /* GDTCCTCompressionHelper.m in Sources */, - 9C166964E84CF52989D67E6FFC4C9DE9 /* GDTCCTNanopbHelpers.m in Sources */, - FCEFF74B35BA223E4633F675252BE10D /* GDTCCTUploader.m in Sources */, - CD5C0FE3A8DFFCA00BDBA886105DC98A /* GDTCCTUploadOperation.m in Sources */, - 872D2980036FD507CFD0ACF61DC4CA52 /* GDTCORAssert.m in Sources */, - 3980D8C66F06838DD686CF367B971342 /* GDTCORClock.m in Sources */, - 8FC983B7AD0040047084F69A15AC3BEC /* GDTCORConsoleLogger.m in Sources */, - 75250BA014EB51BC104432CEDEADD6E2 /* GDTCORDirectorySizeTracker.m in Sources */, - 3629E7E83AB4A6EC2573C4B06737847E /* GDTCOREndpoints.m in Sources */, - F13C0F7DB44D372A522ED98BA05C3C46 /* GDTCOREvent.m in Sources */, - 36B154FD8C7534C03BF119CADAD061DD /* GDTCOREvent+GDTCCTSupport.m in Sources */, - CDC0B650AB99D3A2739FC44DC4A2FCEE /* GDTCORFlatFileStorage.m in Sources */, - 0B34AEBE8F5EF851CCDA90AD6A6EB49F /* GDTCORFlatFileStorage+Promises.m in Sources */, - EB197E06D1EB3BD1D65540CDF834B344 /* GDTCORLifecycle.m in Sources */, - 12CAEB26688F5CAE7F2BA62CDCC788CE /* GDTCORPlatform.m in Sources */, - DFD52FD820A6800C72AF721558FA4C0F /* GDTCORReachability.m in Sources */, - EDE88C9B63EB5BD76528C7756E051537 /* GDTCORRegistrar.m in Sources */, - 75EFD0BDB3941B09B6484708C656A058 /* GDTCORStorageEventSelector.m in Sources */, - 151087B14D3AC73EC5D28C2A218F4A90 /* GDTCORTransformer.m in Sources */, - BD9214D30BADE61EF4505ABFB114DE77 /* GDTCORTransport.m in Sources */, - 8D2E9D3DD5ED7AC7738B0E852E495C5F /* GDTCORUploadBatch.m in Sources */, - 712C496E4A535E572514219DD96BD960 /* GDTCORUploadCoordinator.m in Sources */, - A4551D339234E1E960B3580D33B086CC /* GoogleDataTransport-dummy.m in Sources */, + 4D7B0C18240A82A37671F5DF8594830F /* cct.nanopb.c in Sources */, + 8A78197F831C9011E080B8B0E148CDE5 /* client_metrics.nanopb.c in Sources */, + D97B5592DBE8803FF007A16C0503674D /* GDTCCTCompressionHelper.m in Sources */, + 4063F9EF0297AB5A184B6957180D8833 /* GDTCCTNanopbHelpers.m in Sources */, + 23B5C42FAA0A3ADC8BE64E9090B49AD5 /* GDTCCTUploader.m in Sources */, + 39FDE28CE248C86FDBDDBAC0DBFCC774 /* GDTCCTUploadOperation.m in Sources */, + 5825BC767513508277A17C62824C8016 /* GDTCORAssert.m in Sources */, + 8FAF416F46E13DE0D8F0A81408E63890 /* GDTCORClock.m in Sources */, + 3CB8E665A6E8B6D73607D7AD1722DA80 /* GDTCORConsoleLogger.m in Sources */, + F422E26ADAF7B441F94F77A4DA5682FC /* GDTCORDirectorySizeTracker.m in Sources */, + 72E6D4DBB84F404C7B06F89FFE0B0096 /* GDTCOREndpoints.m in Sources */, + B095E4341E52065773B7EC43EBC7A199 /* GDTCOREvent.m in Sources */, + 3306A777CBD832EE0A27C28EFA17716D /* GDTCOREvent+GDTCCTSupport.m in Sources */, + F7197484EAFF58759F70BC45E33FD71B /* GDTCOREvent+GDTMetricsSupport.m in Sources */, + DF12B7FA9168D9F3D286B4391582CCDD /* GDTCORFlatFileStorage.m in Sources */, + 6854D8D51DC64D95A22CA4032576EB93 /* GDTCORFlatFileStorage+Promises.m in Sources */, + B2239362230B7EE247EA34E6DF2D2119 /* GDTCORLifecycle.m in Sources */, + 2D42AA8E234DF16737CDE2ED990BD6B8 /* GDTCORLogSourceMetrics.m in Sources */, + BBEDC7E7B32A33B5C6C1CD5930BFC3A7 /* GDTCORMetrics.m in Sources */, + E32DF7ACF4B79734FBE5EDD939C7A260 /* GDTCORMetrics+GDTCCTSupport.m in Sources */, + 20491E363B0046C79589E70B482B602B /* GDTCORMetricsController.m in Sources */, + 4531B63E0D1EF7B9F817B0982872496D /* GDTCORMetricsMetadata.m in Sources */, + EFBA2F90C3D709FA5E15C6A6BEA05ABE /* GDTCORPlatform.m in Sources */, + 3E7D77CEE4786DC7FDE9F7F33A452DF5 /* GDTCORReachability.m in Sources */, + 39D2E92971AB1C04096FA3CB40044EFD /* GDTCORRegistrar.m in Sources */, + 8F9353A830BBC8E885290A74CB060C84 /* GDTCORStorageEventSelector.m in Sources */, + 506E7DB3C15B89FDF4970290F4C4D9A8 /* GDTCORStorageMetadata.m in Sources */, + EC04382BEC47F3EE67FA8185249C4087 /* GDTCORTransformer.m in Sources */, + 6927D1BD393BF9EBA2A927E49218C680 /* GDTCORTransport.m in Sources */, + C4FBBE14EE2434828BE42FC1BB106CF8 /* GDTCORUploadBatch.m in Sources */, + 3F70EA094EF0ACE44CB0D7E8F8D65ED1 /* GDTCORUploadCoordinator.m in Sources */, + A60671E8CE4A572AD548A4E1D812825C /* GoogleDataTransport-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0664AC78C791D0D9E10BC55069240AB0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 193F57525468EBCC81A4CCD781958706 /* PBXContainerItemProxy */; - }; - 09AEBCE3CF3A5CC5E759E32D67B830DE /* PBXTargetDependency */ = { + 055B75C48A4F8344E68F8A908E082247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 59C3AB1D4A6B1A868A85C8E21CE05936 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = A4B4386EC6152C3A0DBEB92F34DA2A37 /* PBXContainerItemProxy */; }; - 0EEFA8DF85DF23433DB567F1FE822C31 /* PBXTargetDependency */ = { + 0664C133F21AA5141B25744CF7C13B19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = 6D783A70B66D28D151342002597DE814 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 3E879C1EAD088D553BE4E248B0A8BFBE /* PBXContainerItemProxy */; }; - 16E1763082B4C30EDB3959600DD682AD /* PBXTargetDependency */ = { + 142576966D23206222574472FA165C1E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "leveldb-library"; - target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = 29595AA35469785ABA9D164CC0816C3D /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = BFAFEC30A1B4A83100DC3A100E68AD26 /* PBXContainerItemProxy */; }; - 1EE8D5AF734B5003AA9575535FF23C1A /* PBXTargetDependency */ = { + 15F154E5AF44D606D3A4E004D19DCF05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 13B8459B433D98A6E242A556598823BB /* PBXContainerItemProxy */; + targetProxy = CC913FBBAE5F5F73F08F9B971D5D111D /* PBXContainerItemProxy */; }; - 1FAA70FB1EC02326D3D8BAC58F59D95B /* PBXTargetDependency */ = { + 17CDF1A7ABE01E91C55570BDC2B3E658 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = B3F5575CC21B5DB629B22FB8D6460889 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = C705194CF019320E2F0E6063E84D5711 /* PBXContainerItemProxy */; + }; + 1CDEC28DE57A5B5A92E18FD44264EFB8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = abseil; + target = 73CDC3D182DB953135F62609681B443D /* abseil */; + targetProxy = BCD6F022DD482FDF14785CC4E1EFD076 /* PBXContainerItemProxy */; }; - 2474F1F10318D9E8B60F1065B35EFE45 /* PBXTargetDependency */ = { + 30E1462388091F44E4AB8CF83EB909FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CLTypingLabel; target = 6F8A929BDB6E633BE35459804508532F /* CLTypingLabel */; - targetProxy = 03DE8636B09B74BDD423664B8327F323 /* PBXContainerItemProxy */; + targetProxy = 06F35C885DAD97C377DAE82B5D9849E0 /* PBXContainerItemProxy */; }; - 25DD20BF1B803E9812362BEB6A7F6871 /* PBXTargetDependency */ = { + 398D67A5E8959F68CDE780AACB5BA1C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 70F462B08085236373876A69EABA5FA0 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 39A1B97EF5474397685B3B08FD51D9E9 /* PBXContainerItemProxy */; }; - 287FF5EA9D9DA44F9760530E700D112F /* PBXTargetDependency */ = { + 3E0374DC801792301FFB79A5A19613FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 190ED68DD1159142762167FE44A65648 /* PBXContainerItemProxy */; + name = "BoringSSL-GRPC"; + target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; + targetProxy = 1026F5BA5A7DBD7990660FDE5F697363 /* PBXContainerItemProxy */; }; - 2B0A8BF9935C299F08632B5685CE3E39 /* PBXTargetDependency */ = { + 4201D740741931F7BC9A36E4D735DB3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = ECA4E89D4183C03EBC35C423DEE676C7 /* PBXContainerItemProxy */; + targetProxy = 3E9AA18CFF12E0C375E00796717FF1B5 /* PBXContainerItemProxy */; }; - 30480A279AB6F9CF3861BB1DE56E6633 /* PBXTargetDependency */ = { + 4339D842B1B974FCEABBACC32920B212 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 7F05B1312BA9D1174CA976336FEA7BC0 /* PBXContainerItemProxy */; + name = "Libuv-gRPC"; + target = 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */; + targetProxy = 8419CAD0C44843012FB042480337585C /* PBXContainerItemProxy */; }; - 3E62CFE4CA7774C1DDF8227708FE0ED3 /* PBXTargetDependency */ = { + 4C82F12F69CF92F1F06B5EE702941088 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 4B9E88D1151F24A708E597C68CA8D34F /* PBXContainerItemProxy */; + name = abseil; + target = 73CDC3D182DB953135F62609681B443D /* abseil */; + targetProxy = 3E139DFA1F7BF1814A34FFC69018592C /* PBXContainerItemProxy */; }; - 42CDD5531C2027CC0B6385CB2ACB637B /* PBXTargetDependency */ = { + 4D0210DEDD03E7BAEB7D0779A1F93A3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAuth; - target = 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */; - targetProxy = 81CDD84199E443500AE8ADE4ADF9F62A /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = A1C75CA69FDD7C6A2D1AECCA3B35A0F8 /* PBXContainerItemProxy */; }; - 51C10F57625B1BBA5E655DF383844277 /* PBXTargetDependency */ = { + 574339B5E84A3C4E55D29B71A7A3F8F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "gRPC-C++-gRPCCertificates-Cpp"; - target = 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */; - targetProxy = 13C806F685C4402855BE92AB423C5FDF /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; + targetProxy = 054E80D6C34E45B95D8949BCE72DDE0E /* PBXContainerItemProxy */; }; - 5632C15F0EF6F1877715C522CFBC346A /* PBXTargetDependency */ = { + 5D4DF2209ED8D751692ED1EB458BC05E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 33DE5A882829AA54FF26C208A0E5C944 /* PBXContainerItemProxy */; + name = "gRPC-C++"; + target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; + targetProxy = B87291627484BDB1BC3EC014AFB817A6 /* PBXContainerItemProxy */; }; - 5759C8F97A7C8B37B9B947A842EC35A0 /* PBXTargetDependency */ = { + 68DEBC7879A1D4F8771DBD4DDE033FD6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 14B0CEEFCE09FF154F78A1F037EF58A2 /* PBXContainerItemProxy */; - }; - 59DB829F12E3DB9FBB058E89602AA2C0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-Core"; - target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = AC2FE4DA0CC69A9254CC8F4F96ED10A3 /* PBXContainerItemProxy */; + targetProxy = 3C9570688802DE0B601EE064196791C2 /* PBXContainerItemProxy */; }; - 5E43E07676049BC75F889F6FEB433C91 /* PBXTargetDependency */ = { + 6E790E008160E5D09732B33FAFBF54C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 95E077F3A3BC4E41DEC794E88B0C2F02 /* PBXContainerItemProxy */; + targetProxy = 28C4647C633A360CC3C790A661A2409F /* PBXContainerItemProxy */; }; - 6150BC5542DCB03D78DDF254A7F091F1 /* PBXTargetDependency */ = { + 70A3933FB67F474271AD8A1D6BA32C17 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Libuv-gRPC"; - target = 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */; - targetProxy = 719470C653BA5DF3920694D98A7818CE /* PBXContainerItemProxy */; + name = "gRPC-Core"; + target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; + targetProxy = 4197473F5744FC6A59C6A941CE597030 /* PBXContainerItemProxy */; }; - 64ADCFBEF5FAF18E094ED0DBA6FE8987 /* PBXTargetDependency */ = { + 73D5716AD0DC0E52E7DA1DFE1A9AD7B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = E3DFFBF698ABF473E5394B3B7BD3F04E /* PBXContainerItemProxy */; + name = "BoringSSL-GRPC"; + target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; + targetProxy = 2596F52C852068A8427F0C947D0CD9F3 /* PBXContainerItemProxy */; }; - 65611C899151186B81C5487922149CF0 /* PBXTargetDependency */ = { + 798450998565D551314538FE1C28A917 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "gRPC-C++"; - target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; - targetProxy = 8AF6E6F3C369376DAF34C34343D361AF /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 7788F1C2E8E5FFF3AA06C10AAB26A073 /* PBXContainerItemProxy */; }; - 69C08A786FF69BB6E81B66658A2E69CE /* PBXTargetDependency */ = { + 83293565696BA567F8EBBEF01889614A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = abseil; target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 039647ADA34CEBC1175FC65872EAC7C2 /* PBXContainerItemProxy */; + targetProxy = F23CFD2D627A8950389F8102AD8F51F8 /* PBXContainerItemProxy */; }; - 7874E2C65391ED671EDE111444310EAC /* PBXTargetDependency */ = { + 924FE030EB3CDCF8B656769A428D4332 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 11B511826761BF9DAFDEF5D04FBB2DE4 /* PBXContainerItemProxy */; - }; - 7EAF8F53698DFB80F2A6428BC0F570EC /* PBXTargetDependency */ = { + name = "leveldb-library"; + target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; + targetProxy = 334F9B1C893DE4F971B98668A7261616 /* PBXContainerItemProxy */; + }; + 975CA789510B985415249DBFC6F1AEEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 0C7B384DAAEAFC9E697B7C167FF78380 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = CCE51FC9149AEB72560BDD3166C29826 /* PBXContainerItemProxy */; }; - 83204C9B03D0B3822BE5314BCE528B63 /* PBXTargetDependency */ = { + 983A1901C4EA89EF38FBA5A64E509E3A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseFirestore; target = DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */; - targetProxy = AB14B1C60DAE69609D343EC6DAA2AF2B /* PBXContainerItemProxy */; + targetProxy = 03DED42F7EEA8E2965E0EC8F8923BAE2 /* PBXContainerItemProxy */; }; - 92F1E54E42D7341BBB8C510748AFB04D /* PBXTargetDependency */ = { + A35E11CC2EEAA94612610F7504918FA9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = FF131C57B062D833EFE6FC653111D853 /* PBXContainerItemProxy */; + name = FirebaseAuth; + target = 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */; + targetProxy = 7647C102502657916F329EC7D5A62F8C /* PBXContainerItemProxy */; }; - 94BF813BE5BB7F238F52A164A85A5C3D /* PBXTargetDependency */ = { + AFAD73B600DF1510E4104ECCB3C6632D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "BoringSSL-GRPC"; - target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; - targetProxy = 75BE9161B2AEC2EE7B70CE2B0F99E81E /* PBXContainerItemProxy */; + name = "gRPC-Core"; + target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; + targetProxy = 886BFF850ABCBC5C699BD5E37B918996 /* PBXContainerItemProxy */; }; - 95DF445E11591EE31F5C8EE10D78EEFA /* PBXTargetDependency */ = { + AFC1E624D6758E2214517AAF458D181E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 36E6ECB0D1593281CF28D969F5C8D194 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = F4D8E55330A39B7E6A8A1D0C72A98B92 /* PBXContainerItemProxy */; }; - A40FC42D6CE567880BF2BA975A6AFDD8 /* PBXTargetDependency */ = { + BA9D385480C776C998C40E42145918E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "leveldb-library"; - target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = EB0075A4F5618ACD620551F905B18C2D /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; + targetProxy = 282F276BD704D2510AFDDE6AE1B81E13 /* PBXContainerItemProxy */; + }; + BF586C2ABB91BECA2BA9FDD218A3A3A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = DB726FDF0923B63BD94D70382CD77819 /* PBXContainerItemProxy */; + }; + C1B9C1D938C9E414A5A9A7C56404D302 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 06D6A49CA96E8541084C9C2839361516 /* PBXContainerItemProxy */; }; - AA54D10955439E2EB2D2A800A4C544E1 /* PBXTargetDependency */ = { + C81B7F825DBC05DB757E113AABD3FBC2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = C3A3A59519BA04F14DAD99D0BE67C7ED /* PBXContainerItemProxy */; + targetProxy = CB6CE81833D14C13B32CFD8EF081F6F1 /* PBXContainerItemProxy */; }; - AC5AEA922CE4506BB086C10D26F5F742 /* PBXTargetDependency */ = { + C8D026C18D2C6686F2471728F1A40909 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 1FF7B62514728B07D060688DAE02919E /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 00625D505013DE0120D44C7D303C98A2 /* PBXContainerItemProxy */; }; - AD76CC2D5F0B64C0F005057C02485551 /* PBXTargetDependency */ = { + C8DF80A1A0AF7D44205EFB57962FFF08 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "gRPC-Core"; - target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = 04037E62F285911CE3CA7E6A6838DE4A /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 7802D8FBBDC848FA90A6EB4C1897EA70 /* PBXContainerItemProxy */; }; - B8A808ECD96D9A50B736083B042C007E /* PBXTargetDependency */ = { + DC1B210B7056142B319CAD930F441138 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "gRPC-C++"; - target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; - targetProxy = 966865C98BAC8BE061CD4125B77B1116 /* PBXContainerItemProxy */; + name = "Libuv-gRPC"; + target = 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */; + targetProxy = 66259941AFF02E90A07205A87A385F71 /* PBXContainerItemProxy */; }; - C7654DDBFA70AD4FCFD713DB9623C635 /* PBXTargetDependency */ = { + DFE80283E44E19556954E7767978B6AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = B68CFC611E2D0BF3A4949F574C69209D /* PBXContainerItemProxy */; + name = "gRPC-C++-gRPCCertificates-Cpp"; + target = 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */; + targetProxy = 727C396B65E0CC33453873E154DDEC1D /* PBXContainerItemProxy */; }; - C87A6F7DFF15945E5D9CCE1BF4B76ADA /* PBXTargetDependency */ = { + E281BB1C82A5A5C1D1B4245DC84CA370 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 6EA90345BB3D7E9A7C724E921AAACAF3 /* PBXContainerItemProxy */; + name = "gRPC-C++"; + target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; + targetProxy = AB02DBE4A74540245EAD021DA65D153C /* PBXContainerItemProxy */; }; - D380D051EF5F06B65D210B8ACFA85224 /* PBXTargetDependency */ = { + E49D76C49FF070CE900B5776DA68E471 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = F53E4BD49F40F8AAFCFB428173FCA544 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 2EC6F767300EADB22493DE684B38AA45 /* PBXContainerItemProxy */; }; - D3810777FE2E2D0D3EBDB04BACE7B429 /* PBXTargetDependency */ = { + E619C0B8C7C5B3C009E800E15C6C9BC8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Libuv-gRPC"; - target = 69AA1CD97ADEF721EFB8D16AF3E96CDE /* Libuv-gRPC */; - targetProxy = 3A3628934A22A6894AA6EC9F99F5B0EF /* PBXContainerItemProxy */; + name = abseil; + target = 73CDC3D182DB953135F62609681B443D /* abseil */; + targetProxy = 5DE59AB5CAD33E493749A3A4E6F1B62C /* PBXContainerItemProxy */; }; - DE86A53D875338D5DA634156D32CE3FA /* PBXTargetDependency */ = { + E99063ACDCA0DBA025A06EB2B4114B85 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = 4790F09C3E95C1F9483E0D03148EEA52 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 7FC6614F6FD4010ADCE4D710A793BD20 /* PBXContainerItemProxy */; }; - E113780EDE479457C8BA0F2A88B7725E /* PBXTargetDependency */ = { + EB1C944815F6A8B29C3401F97FC9FDA3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 0B8FB03254E1452CBCA9AB33528660A4 /* PBXContainerItemProxy */; + name = IQKeyboardManagerSwift; + target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; + targetProxy = 52DEBE09BE096BEAEEFF9437DAC29E91 /* PBXContainerItemProxy */; }; - E2F979B4013C1796530D7EF647EBDEB9 /* PBXTargetDependency */ = { + F45F5E5871DF2BF01C3141DF1BED5E22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "BoringSSL-GRPC"; - target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; - targetProxy = 025FDA2CBEA49714C5A0F28969C84995 /* PBXContainerItemProxy */; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = 33C28F6A903EFE70518E2D016FEF180B /* PBXContainerItemProxy */; }; - EAE78FEF721C7A1E5D1F7C229744AE24 /* PBXTargetDependency */ = { + F76DEAA976CBEC8BD520059AD7EE2E6C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = D237DA5E1A3DD185E867D8E77AC9A702 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 287059DBA22800093B2936034B3C5CED /* PBXContainerItemProxy */; }; - F414E42124BE9E0CA6F7F5031BFAF8EB /* PBXTargetDependency */ = { + F9F45DAEEFE39A1A790B8AEDB5BAF291 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 13EF123D84618E4BFBC03EEB51BCF7C2 /* PBXContainerItemProxy */; + name = "leveldb-library"; + target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; + targetProxy = ECC937480B4DB4ECE3E4C36FE2D4CAA5 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 03E36A9F9E3CCB94D41F3B6FAA35EB47 /* Release */ = { + 14F80A8878395CF59C55EFBA82CBB265 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1FFFF58013F964E342FC7BFA429875C7 /* abseil.release.xcconfig */; + baseConfigurationReference = 61EA2FB9EB952EC12664AE32EFDCA9E2 /* FirebaseCoreDiagnostics.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -27702,8 +27998,7 @@ 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"; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -27711,9 +28006,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/abseil/abseil.modulemap"; - PRODUCT_MODULE_NAME = absl; - PRODUCT_NAME = absl; + MODULEMAP_FILE = "Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; + PRODUCT_NAME = FirebaseCoreDiagnostics; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -27725,12 +28020,10 @@ }; name = Release; }; - 06267EC9387085BA06F1DCE4CF4BBF42 /* Release */ = { + 42DDA5E1C96B41BEB2C4729060D3847B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F80DD9660AFE9D88D648B289A0C0D664 /* Pods-Flash Chat iOS13.release.xcconfig */; + baseConfigurationReference = F1F33F62688A0542F04E8CF04A7C4999 /* gRPC-Core.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -27739,34 +28032,33 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist"; + 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; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + 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; + name = Debug; }; - 108D39EC45BD046F302E37AFAA57A5AF /* Debug */ = { + 469832D5AA477AA185990354FCD42610 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5E511D58A382BBA38D601B2E14812370 /* abseil.debug.xcconfig */; + baseConfigurationReference = 9AD1F57949459C695AF66472407A73EC /* CLTypingLabel.debug.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -27775,18 +28067,18 @@ 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"; + GCC_PREFIX_HEADER = "Target Support Files/CLTypingLabel/CLTypingLabel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.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; + MODULEMAP_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel.modulemap"; + PRODUCT_MODULE_NAME = CLTypingLabel; + PRODUCT_NAME = CLTypingLabel; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -27797,9 +28089,9 @@ }; name = Debug; }; - 1417F29E8EBF0D87FF0EE4DE7D0EBBF3 /* Debug */ = { + 4AAE2C96C0C69F13F97DE73E4D32E6B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A214A92A42B23975946F9EE5CB5228DF /* PromisesObjC.debug.xcconfig */; + baseConfigurationReference = 481E6AE9D864CA767B119756910C870E /* PromisesObjC.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -27824,14 +28116,15 @@ 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 = Debug; + name = Release; }; - 1AD2B7165178F674766E270F98527543 /* Release */ = { + 56A68E82D119E40BC3BEEC075A3F0001 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE2DCC69A9C0C4C92718B9924A9E5BDA /* FirebaseCoreInternal.release.xcconfig */; + baseConfigurationReference = F8C2BDF0CCA39825DF8F69EA2433BE5C /* gRPC-C++.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -27841,8 +28134,8 @@ 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/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 = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -27850,13 +28143,13 @@ "@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/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.3; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -27864,9 +28157,9 @@ }; name = Release; }; - 3645CC7A91F4B174A91D8A6BF99D263B /* Debug */ = { + 56EDA49CB88033A244A8514E4B3C4100 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F39007E062F01D6D490E9282FB37ADBF /* FirebaseCoreDiagnostics.debug.xcconfig */; + baseConfigurationReference = 60318D1DB6354FDA1E9418E5B58D2625 /* leveldb-library.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -27876,17 +28169,18 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-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 = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; - PRODUCT_NAME = FirebaseCoreDiagnostics; + 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) "; @@ -27897,18 +28191,20 @@ }; name = Debug; }; - 38E580791C565296E8E0D99210F39BDD /* Release */ = { + 59647A09F5D2FBBA32D2081F425D6802 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5EE740E8816C4FE50351436882289E58 /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 401BE371D29722629BA4091EA6B161B7 /* BoringSSL-GRPC.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/PromisesObjC/PromisesObjC-Info.plist"; + 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 = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -27916,41 +28212,23 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + 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"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; - }; - 3A80B9B1FC1E9A8DBBF2E99AD75E9185 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4DD909F395FB1CB615171423502F907B /* gRPC-C++.release.xcconfig */; - buildSettings = { - 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 = 9.0; - PRODUCT_NAME = "gRPCCertificates-Cpp"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; + name = Debug; }; - 3FD2D988A14B2028FAEE1E6ED4587012 /* Debug */ = { + 5FC3A7A0CD248AF4623E3220F55CC25B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6C05696DDF473DAFA042867E1824F95 /* Pods-Flash Chat iOS13.debug.xcconfig */; + baseConfigurationReference = 950288086A35B2B8CC5898D866AD3DE2 /* CLTypingLabel.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -27960,7 +28238,8 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CLTypingLabel/CLTypingLabel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -27968,26 +28247,24 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel.modulemap"; + PRODUCT_MODULE_NAME = CLTypingLabel; + PRODUCT_NAME = CLTypingLabel; 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 = Debug; + name = Release; }; - 469832D5AA477AA185990354FCD42610 /* Debug */ = { + 60D8334136B662C2DD2EB3BF91A81BC5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8B18036E1C30982D96418E7F0EF028F9 /* CLTypingLabel.debug.xcconfig */; + baseConfigurationReference = 8FA103D88C45B9E753114479F83397C5 /* abseil.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -27996,18 +28273,18 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/CLTypingLabel/CLTypingLabel-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel-Info.plist"; + 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 = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel.modulemap"; - PRODUCT_MODULE_NAME = CLTypingLabel; - PRODUCT_NAME = CLTypingLabel; + 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) "; @@ -28018,9 +28295,9 @@ }; name = Debug; }; - 49529358E608973D28C5330B9AAE0A64 /* Release */ = { + 7208B789300BF6830A9C82CA884CD3A7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 426693FD5A1BEE6E78EB7781E6425DEC /* nanopb.release.xcconfig */; + baseConfigurationReference = 637BA9035A6393E0C67237D99B796441 /* FirebaseCoreInternal.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28030,8 +28307,8 @@ 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"; + 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 = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28039,13 +28316,13 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + 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.0; + SWIFT_VERSION = 5.3; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -28053,9 +28330,9 @@ }; name = Release; }; - 59647A09F5D2FBBA32D2081F425D6802 /* Debug */ = { + 7612BB492ABE68BD8C503648D8BFBFC4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F1876AD29203EDCBAA95AEF56C391B15 /* BoringSSL-GRPC.debug.xcconfig */; + baseConfigurationReference = 5979D7585D4D45E6DE0093D79D0B71B6 /* leveldb-library.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28065,33 +28342,33 @@ 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"; + 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 = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.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; + 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 = Debug; + name = Release; }; - 5FC3A7A0CD248AF4623E3220F55CC25B /* Release */ = { + 7A8C41825E4FB656A2B279F609276D06 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F900FF5448DCE4BEFEBC824D038C5598 /* CLTypingLabel.release.xcconfig */; + baseConfigurationReference = 51B5928DCE2D65CBC9E19579CBEE2239 /* nanopb.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -28100,18 +28377,18 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/CLTypingLabel/CLTypingLabel-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel-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 = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/CLTypingLabel/CLTypingLabel.modulemap"; - PRODUCT_MODULE_NAME = CLTypingLabel; - PRODUCT_NAME = CLTypingLabel; + 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) "; @@ -28123,9 +28400,9 @@ }; name = Release; }; - 6182646671C3313B7F3B37BA3FD3D89D /* Debug */ = { + 7AA57F9B84A606C047DAF38BA75F0F06 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DCB0F88BE32897CF2CE95CC779759D65 /* nanopb.debug.xcconfig */; + baseConfigurationReference = B0295B6950116DEC5ABF66D74803854F /* gRPC-Core.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28135,8 +28412,8 @@ 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"; + 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 = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28144,22 +28421,85 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + 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 = Debug; + name = Release; + }; + 7EE7A78859F657F6BEFC651185B43192 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; }; - 65988F8BB87E96FE2F769AE9EDF9E319 /* Release */ = { + 80BDE5B301870A3DC843915EBA54D539 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5C3218E007EE16E154966A6F39936C0 /* gRPC-Core.release.xcconfig */; + baseConfigurationReference = 5793A690D0457D2634188B00D25F12D8 /* Libuv-gRPC.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28169,8 +28509,8 @@ 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"; + GCC_PREFIX_HEADER = "Target Support Files/Libuv-gRPC/Libuv-gRPC-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Libuv-gRPC/Libuv-gRPC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28178,23 +28518,22 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/gRPC-Core/gRPC-Core.modulemap"; - PRODUCT_MODULE_NAME = grpc; - PRODUCT_NAME = grpc; + MODULEMAP_FILE = "Target Support Files/Libuv-gRPC/Libuv-gRPC.modulemap"; + PRODUCT_MODULE_NAME = uv; + PRODUCT_NAME = uv; 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; + name = Debug; }; - 76E9528B14EC401ACD5542E798DA1435 /* Release */ = { + 8376D9F61F6CE854EA336DD4FB15C463 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D92E2648A3FA1689B966AACBF6ABC80 /* FirebaseCoreDiagnostics.release.xcconfig */; + baseConfigurationReference = 0351C0E7FAD69A223EB7140D9D84C28E /* FirebaseCore.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28204,7 +28543,7 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist"; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28212,13 +28551,13 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; - PRODUCT_NAME = FirebaseCoreDiagnostics; + 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.0; + SWIFT_VERSION = 5.3; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -28226,10 +28565,12 @@ }; name = Release; }; - 7E7582C35A3753CA0ABC41090E455E03 /* Release */ = { + 86CA54F96A1DE240010BADBFFC7E1F3E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 84437FFB956108EEA9F62285047A0CCC /* Libuv-gRPC.release.xcconfig */; + baseConfigurationReference = E6C05696DDF473DAFA042867E1824F95 /* Pods-Flash Chat iOS13.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -28238,8 +28579,42 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Libuv-gRPC/Libuv-gRPC-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Libuv-gRPC/Libuv-gRPC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 8A9A71A8A2ACC56BC025B32577074A45 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 09D7FD35F673C6E5DD89F5E884D72F08 /* FirebaseCore.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/FirebaseCore/FirebaseCore-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28247,9 +28622,43 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/Libuv-gRPC/Libuv-gRPC.modulemap"; - PRODUCT_MODULE_NAME = uv; - PRODUCT_NAME = uv; + 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; + }; + 8FCB77381A3D36D1D5199E3F1C809A4E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 48BD7F9E0E0AF3CD0C92970C6287CA31 /* 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) "; @@ -28261,71 +28670,59 @@ }; name = Release; }; - 7EE7A78859F657F6BEFC651185B43192 /* Release */ = { + 94370CCFA5BBA2EBF90E572D2A837535 /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 9D76245F75E9D13E7E30ACE2A2CC1F62 /* gRPC-C++.debug.xcconfig */; buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", + 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 = 9.0; + PRODUCT_NAME = "gRPCCertificates-Cpp"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 990D6DC89BED2396CF7C1EF740D5E041 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 743F91B42AB2B0DF8FFF6CC4D6C54B46 /* 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", ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + 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; - SYMROOT = "${SRCROOT}/../build"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 8C7986ACBD4360B08EFCC54DC6FBBB8D /* Debug */ = { + 9B290E691716EBE239D61312600E1664 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AA3A5D68BA26751D3EBE80AC04D33436 /* FirebaseCore.debug.xcconfig */; + baseConfigurationReference = 72C74E02940FB4DA4D7AA6FE51E2B2CC /* GTMSessionFetcher.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28335,7 +28732,7 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28343,22 +28740,23 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; + 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.3; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 8EB52BCAE4B907A73B0D430DA1524D8F /* Debug */ = { + A457D79638ABBDC47B2FB5990D4C141E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A36F1C89CBBFA453DB0B177E19FF84EB /* gRPC-Core.debug.xcconfig */; + baseConfigurationReference = 6ACCBFB1978DB94DE7C20DC567EAC616 /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28368,31 +28766,70 @@ 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"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.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; + MODULEMAP_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardManagerSwift; + PRODUCT_NAME = IQKeyboardManagerSwift; 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; + }; + AEC1BC6259CDDAC3E6F130D65008E759 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F80DD9660AFE9D88D648B289A0C0D664 /* Pods-Flash Chat iOS13.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + 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/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 93C67D5A5811D2D0AD34F5737F65CC39 /* Release */ = { + B5365EDA647AB78933C609FBDBE2B679 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 99990B79859B750223B653E08EBEB3F7 /* FirebaseCore.release.xcconfig */; + baseConfigurationReference = 1CC4ED28ECDE0D8C895E606DF1A4BE2A /* IQKeyboardManagerSwift.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28402,31 +28839,31 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.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; + MODULEMAP_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardManagerSwift; + PRODUCT_NAME = IQKeyboardManagerSwift; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - A82E048ADCC19D61F2ADD57B5183763D /* Release */ = { + B669305BFC484A941CBDA98E435B7BFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DDC5467A6D118C9C70E8C109BAA8D824 /* leveldb-library.release.xcconfig */; + baseConfigurationReference = 7289B0F87C60F11F99A29597B3E4E922 /* BoringSSL-GRPC.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28436,8 +28873,8 @@ 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"; + 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 = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28445,9 +28882,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/leveldb-library/leveldb-library.modulemap"; - PRODUCT_MODULE_NAME = leveldb; - PRODUCT_NAME = leveldb; + 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) "; @@ -28459,9 +28896,9 @@ }; name = Release; }; - AD2556176402368523A78DCFA023054A /* Debug */ = { + BBB33FBDA95446C1D892AA632A6F8780 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD5C4BC9194C5D8456F456356066A8D0 /* GTMSessionFetcher.debug.xcconfig */; + baseConfigurationReference = 685C8EA1CC96DB474A21A7DE0E5C2A8E /* Libuv-gRPC.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28471,7 +28908,8 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/Libuv-gRPC/Libuv-gRPC-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Libuv-gRPC/Libuv-gRPC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28479,22 +28917,23 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap"; - PRODUCT_MODULE_NAME = GTMSessionFetcher; - PRODUCT_NAME = GTMSessionFetcher; + MODULEMAP_FILE = "Target Support Files/Libuv-gRPC/Libuv-gRPC.modulemap"; + PRODUCT_MODULE_NAME = uv; + PRODUCT_NAME = uv; 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 = Debug; + name = Release; }; - AEA2D09D7D5EBE2A7F64DFD4319BFA05 /* Release */ = { + BBD781333CA8F071AD009A047AB75288 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5073BE02EEE87077825A5847FA8C9A17 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = 7948665A65AA28E8B9F1D1CB23D1639D /* GoogleUtilities.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28504,7 +28943,7 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28512,9 +28951,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap"; - PRODUCT_MODULE_NAME = GoogleDataTransport; - PRODUCT_NAME = GoogleDataTransport; + 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) "; @@ -28526,9 +28965,9 @@ }; name = Release; }; - B5BBCA53CA8F3C15869506B331685D33 /* Debug */ = { + BEB4FBED364266AA371C34CAF0D47E15 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D53A297877CDC46173C5A601C6DD358 /* gRPC-C++.debug.xcconfig */; + baseConfigurationReference = 5CFA20198B6915E2874A4A286063E4A7 /* FirebaseCoreInternal.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28538,8 +28977,8 @@ 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"; + 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 = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28547,22 +28986,38 @@ "@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/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreInternal; + PRODUCT_NAME = FirebaseCoreInternal; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.3; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - B669305BFC484A941CBDA98E435B7BFB /* Release */ = { + C7DDF7A5C5C7BFACBB981E2E59F9F2ED /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F8C2BDF0CCA39825DF8F69EA2433BE5C /* gRPC-C++.release.xcconfig */; + buildSettings = { + 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 = 9.0; + PRODUCT_NAME = "gRPCCertificates-Cpp"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + C840B3DA503504F157DE1AF0016A2438 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9BD501CC4F60EAF7EAC0DC5C35A9811 /* BoringSSL-GRPC.release.xcconfig */; + baseConfigurationReference = 5AA9F7C2DBF27A84F0AEAAB843C653A1 /* GTMSessionFetcher.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28572,8 +29027,7 @@ 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"; + INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28581,49 +29035,31 @@ "@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; + 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; - }; - C044875CBD8344559E1F383696CAF1B1 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3D53A297877CDC46173C5A601C6DD358 /* gRPC-C++.debug.xcconfig */; - buildSettings = { - 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 = 9.0; - PRODUCT_NAME = "gRPCCertificates-Cpp"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; name = Debug; }; - CA10EBDD5D7CC5FBAEAA734F95F1706A /* Release */ = { + CD8ED53ED5E97A03B8020D56F080E406 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA458B7D6BE7998BA4A6D5FD11FFBC2B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 4F5E31E8A170BEDFBC5C4D6542D58356 /* PromisesObjC.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"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28631,23 +29067,22 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + 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; + name = Debug; }; - D207F332CAF5A8813F09D220C21A844A /* Debug */ = { + D06096255497A3DA0CBD530D909EF2FC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E0E5618767EEE83B43C7EA69399AEFC7 /* GoogleUtilities.debug.xcconfig */; + baseConfigurationReference = 03CE6012BCA068CD82E776D1832944E4 /* GoogleUtilities.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28744,76 +29179,9 @@ }; name = Debug; }; - D3C6DE7301709149CE81D9849A8BD451 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C5C8B26B98A7824DFEFB1F9F680AE3D6 /* 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; - }; - D6BAE794EA7A6D3CAF26FA0924D725A4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B5D947551ABB4A328FF57D6FB5E753ED /* GTMSessionFetcher.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/GTMSessionFetcher/GTMSessionFetcher-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/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; - }; D864AEEFFC47F2AD6F2606FA753ED6A5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 58AE3D4C9E9EACADE37CAC4654B7A8D8 /* FirebaseAuth.release.xcconfig */; + baseConfigurationReference = EDC78F1FC5DC9C020F097CE738FE5872 /* FirebaseAuth.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -28846,10 +29214,11 @@ }; name = Release; }; - DFD502526E1FA421641A13678A7BAEBF /* Debug */ = { + D8921166E9926B4685DBAC55133F6199 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FEFA76422F8B32C035952A1136818341 /* Libuv-gRPC.debug.xcconfig */; + baseConfigurationReference = 1AD3A4E4C659DADB746C8E6475CA7A32 /* FirebaseFirestore.debug.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -28858,31 +29227,30 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Libuv-gRPC/Libuv-gRPC-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Libuv-gRPC/Libuv-gRPC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/Libuv-gRPC/Libuv-gRPC.modulemap"; - PRODUCT_MODULE_NAME = uv; - PRODUCT_NAME = uv; + 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.0; + SWIFT_VERSION = 5.3; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - E2E69D9562E6C70EEB2829D1C446EA4C /* Debug */ = { + E783E05ADEA3CB503C608F5DF43893A2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87FB35B4B8D497659A575754E0D6694B /* FirebaseCoreInternal.debug.xcconfig */; + baseConfigurationReference = 9D76245F75E9D13E7E30ACE2A2CC1F62 /* gRPC-C++.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28892,8 +29260,8 @@ 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/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 = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28901,13 +29269,13 @@ "@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/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.3; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; @@ -28916,7 +29284,7 @@ }; ECAA95602F94B2E3A3D852FC7898548E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C8671C2960EEE6841CC7A15BE702D244 /* FirebaseAuth.debug.xcconfig */; + baseConfigurationReference = 783BDAFB88A48948A9C559D76DB2A5FE /* FirebaseAuth.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -28948,11 +29316,10 @@ }; name = Debug; }; - F1D3D85E67B4562B756035A22C754912 /* Release */ = { + F2CE25E74D8DB7A5E144F45BB03A2B2D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B9BEA3EEB33090BAF243B18647356F3C /* FirebaseFirestore.release.xcconfig */; + baseConfigurationReference = C29A0661738030DE0724A0F9CB685EB9 /* GoogleDataTransport.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -28961,31 +29328,30 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.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; + 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.3; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - F42E390AF7BCB4D38E5497001A084570 /* Debug */ = { + F7FBFD78BF732291327E09D1BFDA28F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1FA7EAA56B657EF8C16E2544E895206D /* leveldb-library.debug.xcconfig */; + baseConfigurationReference = 89CA23EC82E4C307789F21BC02EEE090 /* nanopb.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -28995,8 +29361,8 @@ 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"; + 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 = ( @@ -29004,9 +29370,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/leveldb-library/leveldb-library.modulemap"; - PRODUCT_MODULE_NAME = leveldb; - PRODUCT_NAME = leveldb; + 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) "; @@ -29017,9 +29383,9 @@ }; name = Debug; }; - F48F10E118E77416C5D6609CC88CD04B /* Debug */ = { + F96F9ECDEF80CE6EE4F7171A863B170F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AAA6C7F1B6847261A14DDB3223F6A03E /* FirebaseFirestore.debug.xcconfig */; + baseConfigurationReference = 64CA3FC10EDB7E6F9BDB7CBA59545D80 /* FirebaseFirestore.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -29046,14 +29412,15 @@ 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 = Debug; + name = Release; }; - FDD68D6EAFB2954E30A9B8DF1E8E5B88 /* Release */ = { + FD81E2774C32F359DAAF0C30E897EFA7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4DD909F395FB1CB615171423502F907B /* gRPC-C++.release.xcconfig */; + baseConfigurationReference = 47159ED6338906AF1C4429988001F568 /* FirebaseCoreDiagnostics.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -29063,8 +29430,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/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -29072,55 +29438,54 @@ "@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/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; + PRODUCT_NAME = FirebaseCoreDiagnostics; 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; + name = Debug; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 0AD17B7A52ACC8DF5D6CD9A7A2F6CB01 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { + 019525E5D049F730B033F723C9080D98 /* Build configuration list for PBXNativeTarget "Pods-Flash Chat iOS13" */ = { isa = XCConfigurationList; buildConfigurations = ( - D207F332CAF5A8813F09D220C21A844A /* Debug */, - CA10EBDD5D7CC5FBAEAA734F95F1706A /* Release */, + 86CA54F96A1DE240010BADBFFC7E1F3E /* Debug */, + AEC1BC6259CDDAC3E6F130D65008E759 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1D4602E409D9E24817E17F14CB4A8A81 /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC" */ = { + 159D80B6FF4F46489E937F0C0EB96947 /* Build configuration list for PBXNativeTarget "gRPC-Core" */ = { isa = XCConfigurationList; buildConfigurations = ( - 59647A09F5D2FBBA32D2081F425D6802 /* Debug */, - B669305BFC484A941CBDA98E435B7BFB /* Release */, + 42DDA5E1C96B41BEB2C4729060D3847B /* Debug */, + 7AA57F9B84A606C047DAF38BA75F0F06 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3FBDC0FE159A37BA1C75558FD7B6ED11 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { + 1D4602E409D9E24817E17F14CB4A8A81 /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC" */ = { isa = XCConfigurationList; buildConfigurations = ( - E2E69D9562E6C70EEB2829D1C446EA4C /* Debug */, - 1AD2B7165178F674766E270F98527543 /* Release */, + 59647A09F5D2FBBA32D2081F425D6802 /* Debug */, + B669305BFC484A941CBDA98E435B7BFB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 44A07E8DF2DA9FB9E1D9490F21D838A9 /* Build configuration list for PBXNativeTarget "nanopb" */ = { + 3EA49FB0B5451CC2D8C1E48280017DB4 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6182646671C3313B7F3B37BA3FD3D89D /* Debug */, - 49529358E608973D28C5330B9AAE0A64 /* Release */, + F7FBFD78BF732291327E09D1BFDA28F0 /* Debug */, + 7A8C41825E4FB656A2B279F609276D06 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -29143,128 +29508,137 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 54667B4E116DCDC8402E5785E94800B4 /* Build configuration list for PBXNativeTarget "leveldb-library" */ = { + 50FCCDC4E28676CCC78EBB5B56192A5A /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - F42E390AF7BCB4D38E5497001A084570 /* Debug */, - A82E048ADCC19D61F2ADD57B5183763D /* Release */, + 8A9A71A8A2ACC56BC025B32577074A45 /* Debug */, + 8376D9F61F6CE854EA336DD4FB15C463 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 565B268BCF3DC57C5E9A02DF0E6D77A1 /* Build configuration list for PBXNativeTarget "abseil" */ = { + 5A8F1CE3E22FF476F9500C8B9421754C /* Build configuration list for PBXNativeTarget "gRPC-C++" */ = { isa = XCConfigurationList; buildConfigurations = ( - 108D39EC45BD046F302E37AFAA57A5AF /* Debug */, - 03E36A9F9E3CCB94D41F3B6FAA35EB47 /* Release */, + E783E05ADEA3CB503C608F5DF43893A2 /* Debug */, + 56A68E82D119E40BC3BEEC075A3F0001 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5B5B7A86BC8A854E5E65DA2A975FD163 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { + 6F32FC410BD7B7B9A8FBCC4CE455CEAD /* Build configuration list for PBXNativeTarget "leveldb-library" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3645CC7A91F4B174A91D8A6BF99D263B /* Debug */, - 76E9528B14EC401ACD5542E798DA1435 /* Release */, + 56EDA49CB88033A244A8514E4B3C4100 /* Debug */, + 7612BB492ABE68BD8C503648D8BFBFC4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6054225F4D8B4153DC15A41219E2864A /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { + 706DEA19F0765D8F710CD37299389215 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8C7986ACBD4360B08EFCC54DC6FBBB8D /* Debug */, - 93C67D5A5811D2D0AD34F5737F65CC39 /* Release */, + C840B3DA503504F157DE1AF0016A2438 /* Debug */, + 9B290E691716EBE239D61312600E1664 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 790D6FCF4372ED907573F357F17274AB /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { + 7353BCC50F485952199154EEE96DF78B /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */ = { isa = XCConfigurationList; buildConfigurations = ( - AD2556176402368523A78DCFA023054A /* Debug */, - D6BAE794EA7A6D3CAF26FA0924D725A4 /* Release */, + D8921166E9926B4685DBAC55133F6199 /* Debug */, + F96F9ECDEF80CE6EE4F7171A863B170F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9A09E33CCA24240C53A390753812E996 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { + 8F61E584F4836F8595B6C62F21CDB09A /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { isa = XCConfigurationList; buildConfigurations = ( - D3C6DE7301709149CE81D9849A8BD451 /* Debug */, - AEA2D09D7D5EBE2A7F64DFD4319BFA05 /* Release */, + BEB4FBED364266AA371C34CAF0D47E15 /* Debug */, + 7208B789300BF6830A9C82CA884CD3A7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A149BD73F88D0A8060A4F57192FF378E /* Build configuration list for PBXNativeTarget "gRPC-C++" */ = { + A419C17F70B99D024D8B35BFCEF2718D /* Build configuration list for PBXNativeTarget "Libuv-gRPC" */ = { isa = XCConfigurationList; buildConfigurations = ( - B5BBCA53CA8F3C15869506B331685D33 /* Debug */, - FDD68D6EAFB2954E30A9B8DF1E8E5B88 /* Release */, + 80BDE5B301870A3DC843915EBA54D539 /* Debug */, + BBB33FBDA95446C1D892AA632A6F8780 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B3004E19F0FC826809E80754C6D93047 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */ = { + A8EEE0493FC72F5E58936DA55A8A2ED8 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { isa = XCConfigurationList; buildConfigurations = ( - C044875CBD8344559E1F383696CAF1B1 /* Debug */, - 3A80B9B1FC1E9A8DBBF2E99AD75E9185 /* Release */, + FD81E2774C32F359DAAF0C30E897EFA7 /* Debug */, + 14F80A8878395CF59C55EFBA82CBB265 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B4077DEA539D4A582ABA73BDD4083C67 /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */ = { + B1185B7915E4B15B0A2D880095A99ECF /* Build configuration list for PBXNativeTarget "abseil" */ = { isa = XCConfigurationList; buildConfigurations = ( - F48F10E118E77416C5D6609CC88CD04B /* Debug */, - F1D3D85E67B4562B756035A22C754912 /* Release */, + 60D8334136B662C2DD2EB3BF91A81BC5 /* Debug */, + 8FCB77381A3D36D1D5199E3F1C809A4E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D610B5D65A42999C39CDC26E2C569B26 /* Build configuration list for PBXNativeTarget "gRPC-Core" */ = { + B11C6D409705314ED3A2C22DA203B54E /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8EB52BCAE4B907A73B0D430DA1524D8F /* Debug */, - 65988F8BB87E96FE2F769AE9EDF9E319 /* Release */, + CD8ED53ED5E97A03B8020D56F080E406 /* Debug */, + 4AAE2C96C0C69F13F97DE73E4D32E6B1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DCD40AC2021B625DD9C54C853A7CCD65 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { + BA676B7A40FDA2F44490F2E061480097 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1417F29E8EBF0D87FF0EE4DE7D0EBBF3 /* Debug */, - 38E580791C565296E8E0D99210F39BDD /* Release */, + 94370CCFA5BBA2EBF90E572D2A837535 /* Debug */, + C7DDF7A5C5C7BFACBB981E2E59F9F2ED /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DED52B1CD8B1591913FE8B6C27B45984 /* Build configuration list for PBXNativeTarget "FirebaseAuth" */ = { + BF4FD51CE11056B465529A56F303B3EA /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { isa = XCConfigurationList; buildConfigurations = ( - ECAA95602F94B2E3A3D852FC7898548E /* Debug */, - D864AEEFFC47F2AD6F2606FA753ED6A5 /* Release */, + F2CE25E74D8DB7A5E144F45BB03A2B2D /* Debug */, + 990D6DC89BED2396CF7C1EF740D5E041 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C99129FA9AB4B46A039E6041E0137923 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D06096255497A3DA0CBD530D909EF2FC /* Debug */, + BBD781333CA8F071AD009A047AB75288 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E728EA96B9F51544D2853460462B8909 /* Build configuration list for PBXNativeTarget "Pods-Flash Chat iOS13" */ = { + DED52B1CD8B1591913FE8B6C27B45984 /* Build configuration list for PBXNativeTarget "FirebaseAuth" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3FD2D988A14B2028FAEE1E6ED4587012 /* Debug */, - 06267EC9387085BA06F1DCE4CF4BBF42 /* Release */, + ECAA95602F94B2E3A3D852FC7898548E /* Debug */, + D864AEEFFC47F2AD6F2606FA753ED6A5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F038FFC9529BE99B68D111FFAE89D158 /* Build configuration list for PBXNativeTarget "Libuv-gRPC" */ = { + FF82530261D167263324BAFE589A2B5F /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */ = { isa = XCConfigurationList; buildConfigurations = ( - DFD502526E1FA421641A13678A7BAEBF /* Debug */, - 7E7582C35A3753CA0ABC41090E455E03 /* Release */, + B5365EDA647AB78933C609FBDBE2B679 /* Debug */, + A457D79638ABBDC47B2FB5990D4C141E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist index 61910b299..c0d5d7655 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist @@ -74,26 +74,33 @@ orderHint 9 + IQKeyboardManagerSwift.xcscheme + + isShown + + orderHint + 14 + Libuv-gRPC.xcscheme isShown orderHint - 15 + 16 Pods-Flash Chat iOS13.xcscheme isShown orderHint - 17 + 18 PromisesObjC.xcscheme isShown orderHint - 18 + 19 abseil.xcscheme @@ -128,14 +135,14 @@ isShown orderHint - 14 + 15 nanopb.xcscheme isShown orderHint - 16 + 17 SuppressBuildableAutocreation diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.markdown b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.markdown index 22cb97cbc..6f585d50e 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.markdown @@ -2215,6 +2215,31 @@ More information at Landon Fuller's blog +## IQKeyboardManagerSwift + +MIT License + +Copyright (c) 2013-2017 Iftekhar Qurashi + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## Libuv-gRPC libuv is licensed for use as follows: diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist index e8d8c08b9..2d833eb4f 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-acknowledgements.plist @@ -2286,6 +2286,37 @@ Fuller's blog</a> Type PSGroupSpecifier + + FooterText + MIT License + +Copyright (c) 2013-2017 Iftekhar Qurashi + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + IQKeyboardManagerSwift + Type + PSGroupSpecifier + FooterText libuv is licensed for use as follows: diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist index c4bfd2369..708498d2d 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-input-files.xcfilelist @@ -9,6 +9,7 @@ ${BUILT_PRODUCTS_DIR}/FirebaseFirestore/FirebaseFirestore.framework ${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework ${BUILT_PRODUCTS_DIR}/GoogleDataTransport/GoogleDataTransport.framework ${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework +${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework ${BUILT_PRODUCTS_DIR}/Libuv-gRPC/uv.framework ${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework ${BUILT_PRODUCTS_DIR}/abseil/absl.framework diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist index 6b860b264..f7b221367 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Debug-output-files.xcfilelist @@ -8,6 +8,7 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseFirestore.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMSessionFetcher.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleDataTransport.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManagerSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/uv.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/absl.framework diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist index c4bfd2369..708498d2d 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-input-files.xcfilelist @@ -9,6 +9,7 @@ ${BUILT_PRODUCTS_DIR}/FirebaseFirestore/FirebaseFirestore.framework ${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework ${BUILT_PRODUCTS_DIR}/GoogleDataTransport/GoogleDataTransport.framework ${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework +${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework ${BUILT_PRODUCTS_DIR}/Libuv-gRPC/uv.framework ${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework ${BUILT_PRODUCTS_DIR}/abseil/absl.framework diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist index 6b860b264..f7b221367 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks-Release-output-files.xcfilelist @@ -8,6 +8,7 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseFirestore.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMSessionFetcher.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleDataTransport.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManagerSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/uv.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/absl.framework diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh index 2b0fb80b4..ecda90ce3 100755 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13-frameworks.sh @@ -186,6 +186,7 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework" install_framework "${BUILT_PRODUCTS_DIR}/GoogleDataTransport/GoogleDataTransport.framework" install_framework "${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework" + install_framework "${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework" install_framework "${BUILT_PRODUCTS_DIR}/Libuv-gRPC/uv.framework" install_framework "${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework" install_framework "${BUILT_PRODUCTS_DIR}/abseil/absl.framework" @@ -205,6 +206,7 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework" install_framework "${BUILT_PRODUCTS_DIR}/GoogleDataTransport/GoogleDataTransport.framework" install_framework "${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework" + install_framework "${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework" install_framework "${BUILT_PRODUCTS_DIR}/Libuv-gRPC/uv.framework" install_framework "${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework" install_framework "${BUILT_PRODUCTS_DIR}/abseil/absl.framework" diff --git a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig index 67eb165f5..5d7b41f68 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.debug.xcconfig +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.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}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${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" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${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" 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}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.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}/Libuv-gRPC/uv.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.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" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.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}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC/uv.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.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" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "CLTypingLabel" -framework "CoreTelephony" -framework "FBLPromises" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseCoreInternal" -framework "FirebaseFirestore" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -framework "uv" +OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "CLTypingLabel" -framework "CoreGraphics" -framework "CoreTelephony" -framework "FBLPromises" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseCoreInternal" -framework "FirebaseFirestore" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "IQKeyboardManagerSwift" -framework "QuartzCore" -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -framework "uv" 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/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig index 67eb165f5..5d7b41f68 100644 --- a/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.release.xcconfig +++ b/Pods/Target Support Files/Pods-Flash Chat iOS13/Pods-Flash Chat iOS13.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}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${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" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${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" 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}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.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}/Libuv-gRPC/uv.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.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" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CLTypingLabel/CLTypingLabel.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.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}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Libuv-gRPC/uv.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.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" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "CLTypingLabel" -framework "CoreTelephony" -framework "FBLPromises" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseCoreInternal" -framework "FirebaseFirestore" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -framework "uv" +OTHER_LDFLAGS = $(inherited) -l"c++" -l"z" -framework "CLTypingLabel" -framework "CoreGraphics" -framework "CoreTelephony" -framework "FBLPromises" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseCoreInternal" -framework "FirebaseFirestore" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "IQKeyboardManagerSwift" -framework "QuartzCore" -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -framework "uv" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) From 21fd864ddeb9fd2bcdda71168e30ac777f267f43 Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Tue, 16 Aug 2022 11:44:34 +0300 Subject: [PATCH 09/12] finished --- .../UserInterfaceState.xcuserstate | Bin 64140 -> 60808 bytes .../Controllers/ChatViewController.swift | 98 ++++++++++-------- .../Controllers/LoginViewController.swift | 20 ++-- .../Controllers/RegisterViewController.swift | 18 ++-- .../Views/Base.lproj/Main.storyboard | 9 +- Flash Chat iOS13/Views/MessageCell.swift | 3 +- Flash Chat iOS13/Views/MessageCell.xib | 31 ++++-- 7 files changed, 104 insertions(+), 75 deletions(-) diff --git a/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate b/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate index 20d102761f587c4b8dfabdcd7123640c57ddd53c..ab78c6f3e37ad61739ac5af574dd61e583013d38 100644 GIT binary patch delta 29417 zcmb@u2YeJ&)Hl2{cV?$Il8|0038`DsHVFwKAtAlf64FC&Lg?b=0xBSV=tW5AMFc4- zBE1WOGzCPIVnY!XX$pLIb~hBu`+J`Ed&S*_Y4@J?Kj)rv=1%%e;O4%iH~fNfwq_yBwec7cz< zUa$}Bw}Qjq2sjE(fRo@;a0;9SUxMr4M{pbb0)7Yg!JptSLPuZ(N$3fRkO^19hX^2A z5rISy(T)fsjD(4ZCSr(qqJ-!|bS1hG-H9GVDN#oBB+7{jqLQd3`V#|)fy6MPo_LiQ zN4!Q@i3Va4F`1Y`yhT{&67z`p!~$X=v6NUvtR~hFYl&^dc47zdKJfwZA+eMAh}cDZ zOzb9(5T6nkh)cv};wteqafA4t_=)(L_?7sLxJTS49uN9MKtggnIe~nWoI%bc zmyk=zx5;JXa+;Lgnp!c zl>Sxy1pP$)>-x9!Q}uK7bM^D|^YzR0%k}H^8}u9X@94MaKh*EkAJ!kyAJrezAJ>1P zKcPRX|5E?8{)Yah{s;Zf`d{^b= z_n>>y<#YvIL)X%EbYHq3J%S!dkD^D@W9ZjtEBz)tiJnX^rkBu5>9^@+^m4k9ZlX8P zo9K7x_vo$k4*Gq1C;bt7(>9`Z#@tK1-jY&(jy^&#m-T`Z|4s{+|AU z{++%{|3TlQAJKo(e=#}+Fajeo5+gItj4R{D_%H!XE5^u}7&FtJNo10k4oouBiOFGd znLH++DPwvvm6^pXVwN&*GmT6Wvx-^GtYg+Q z)_0gq%ogT7W-IeP^8xcA^D(oVxyF3Ue8=2keq!!0zcPO?_n1e_pUhKM#}X{bGAzrA zti(F8&a4~j&U&*xYyjJe4P=AZP&SNBXFIbQY$lt_pp1}ee8br0DF)< z#2#jku%EDJ*t6_8_7Z!Uz0TfXZ?fOBzp=lw_t~eMj^jCJ&V>u(!np{}z!^CcXXYZg zC@z|d;o`ZDTnd-LWpagF5m(HWaXq<_oOKj8nj6E7)cdsHm7on zxh33cZVk7A+sbX@_HswLW862~HSRihgS*Ln%YDav&;7vt$lc<8;qGzwxd+@6?kP|4 zG|%t~-+~Y3L-9$MUc8Ef_*6I}Tof(|mxXVH zYr>DhE#W8OuJDIdltfun#1^8H=q$R3Ek#$+O>`GML?5w@*j5Y`!^9{tT8t56#g1Z% zm@0M>GsFV1P%IZK#7ePBtQKp;T5*6lP<&IIBu*Bmh;NBg#cASnafUckoF&c`mxxW` z3UPzDQQRTEFMcE*5D$u{#V^E*;;*9m`vxbg_*BwMltfFSBuTE4o8&I}O94`X)Lu%I zlB5n&veZ#Zky52jQks-06-ZsBZc?RGCH0pENJFGi(rD>*X__=$S}m=S)=KN7_0k4u zqx6onNqSe>ENzoM(m$1UN&BS((kIdh>7;aCx*&ZieJy<>{UP0xtoNk{(nINy^r!Tf z^jOx(Kqh2TW@Jg0Wkq(8y=8wnKyE7s%4RuIj*_G07&%r>kUPpLa;lsw=gIkUfm|pT z$zA2%av!;`+)wT=50D4SugLZCEP0MRUtT0Hm6yvaeI8}j$^Px1r#q5MexQ~pcQDWsxTC`D3aMNwKPEfp`t zTk%n%l^7*fu_$p$ypo`_R}z&ZrGt{JbW~E5RHc)Wrlc!HO0iO+bWyr0-IVT152aG+ zr}S3_CIat$}DBJGEZ5kEK=T9Rw`?i4ax_~F6CoopR!*$ ztQ=83QBEkQmCuy(>Ip6hi&1$VVo_VC^KP!#?5%5B6#?>Sn-f1wQJ=OA)_bok<2vSV=yAV5~o(!+|17~%DPSi>GZ}=a&;3oWc{BFa&hWkzUJ#0k7gNAYHqvD8o{4d?D zmH1=)3H}u58XiKdJ;bsgHn}153jhECNTAnAfC4mN01G(40|AIY0y0q4M-iLi8=gQ+ zgqYOu2x18ki-#DZF75)h23w1*(@EHRYy)rt&cFqG7r0`hAf|8l3t~*ef`&iU8-}<* zPc%I60^Yy}_%=LlcnUEbVnjpcS?nWh7aEzxMqqmyo~X&~ecA+qAZ!oBbP&TDW|nm6 zTQ_o;44N+t!wR&MKwX;V!vGUDO8Xb7?#p!#jX}?e1r`v8Z7i)FTr+%N-JtrC!tCz# zeFxSJtFIb31Y#7#=muSd+)Yi+Oi_1CXu*%_TYW}1M>iKFf+Tg5sU>Iv9n_5`ua+G_ z3P|lSq^iD8QT@=qgL*@ZgBYuRWs2yT4my{nb}3HlJD@Hfoo@mex`i(uI194SRI;&+ zAQxD=<`#ulR}HHxMZZJq22|De9Z}bSXcN$E>?0R|!jjw~G}9(fpj)VhCPo@S3Fx5< zUJ1H@uAm#}4lx;G3dCAK%xNVk1!bT+D2JFc#9E>w5c5%ICJxO3b-G)Ppclkk8ZvuC zruGX<=^9pDoa;~z&<_mO9@!rZ00Y4wh`B<{4Px#P^H>Rn=z_pdFbraz4d}2J#JttK zq*^N&1IFrtmoINHG(Y4uV6`7;)uFG>_Fwav3E(YV@ER}?ybj&~Z-Pl+GMEA}Ux@iZ z%pYO_5Nido)(~s6222Ihz;rMJ%mlM^Z6MYbVv)#HAQla=7>LC-gfti`WT~)D?U6s< z3YO?@tp-cM+h7@34jMrd!~!7}46#s%g+t5$F%wcFunKW}HCO}If{-3IPS@0rs2ZUC zb=Z))n!Z&7AQl9%b`^4$v17xGvF30~lsPKWY&007qM{>Bp?+azgE8C~9UB`HZHkF9 zSfUJ(<3jz$TFr*2aEs9xZ84ink*3(_NMop9w80V{V=#1D*EN9+x`oXX+oVklV(5Rz6il(P;g%RPdVnd~6dPqWMWZRae9&yL#E!F~IlMFl zv)LSF{^u0TvE#-y5B8pYu&`%?#Tvscu_jAQETSSR)(~y54Hjh#H=swGqN1ZMMsuve zqS1?H6mBua8jMC`q{(13SfdbcUZywJVm3b?Y=?cYh-ZWSlZbz(3=M|37akiGZ7`Wk zv1SWmhvn~MMOsZSQnu4RnDIXbi;6aBlKjUEOd4hXgTY=JYqxDID`tK+*h_4TM5+*_ z4fYZnjYxg|jg9~0Vx%e3GHzU}r29*ISkfQPYc`_;;Go06l1^*(m8nB;)ov`(&Tzz_ zXiIcttR)gDoe_;~4v#TKM_McfvoQ*3QIsVTX(93i;Ftyk$024xK#-N*Kdf&|SZ2SG z>Zug7Co-&@x?#hrde`}N99~^Lpl+C5aZiKK)TtJC>lxj`3fVa$wNt0szV(BLcJ4b2 zeUHwluN(MJM{y3EM;P}xauh7M1TI4?8Dbe4wk0Abp?QqX5X*eoM_d74J@*l55KD46 zi3Zg^bL$PwQQQRIg73ih5bFT3ju1L*v@qDH;t^OVipU zwIWTKfP|H36A+|H#E&DAP44iRQMhq@vTskhSx zS)cKTFgy6u)uGlz0?}C)yn$#>BoawP2O^p1NTd*{L?_yATo4qv_C`+kxS$e`RH$jIt1r+$W@>}5bF!E!H~s}haaZ>vtF(2 zaYjA9v|3#|CnJNXLgqlAXZ32xv}qZE9OX))7tve$Kn(rg$Nt@ri6T^E^PC3}Lv$@0 ziNO%-*GRkqvHt3v#cg{L!--M4mQBP6VkE?nR~gu(yF`p>K$0BP5K}s!@1VMjLA7V}m!#~|5tgL>EZQRLmNI>;~iOac-UwMUI7CO`}gF!cGO)TA8O2)VF%DpQG>y5JSW zG-5h217gD=HUeTJR}iy^*@OzUaBDQg-c)Ceby8oOYHHsq>5hFIJGF~6@)tvF46-46 zs7Sm`G-?AcBbGyKEW}=IBASR55E}=v*VGvUEe2v8u}Rl*C9$5^Kx`!5ftVFy4G@D6 z8^4lxm)J~fA>M-+n)O78y$-QA)K_2Ktme;WtQE3HeHB6#Eouv@h^s+XnKpQ6;oyOX~fgr>lVlTFl*pCq89C3&^46%g}o3H5(3LO$`crp)S3toZ{;wW+Kxk=1{*jq1{ zL<~Yd;*{>zD&jQp8F7XzI7+ra_Ch+5&ZG<35@O3BhSa9G5n@fxx%mRhJVRFEC8+s7fD75i z&b$>G^Q`{>mj<0fZ^>{n4#5Z+K^jOSX(G*JBpF3UlQCp0X@S^kh^>LxT8OQK*m{U< zfEs=y<=q6acOkZU0~v3J5i*I$C6hH6AyYLN+0qOnTkSCNz5_-+d=W-EkwwUk$YO}S z=YSEi>wm&X^L)$6N(3P!0<>+7Bm%VU8iaU~bz~nKgpde&5QOY_!R|lX;O0pVB44rL z0*L?(;lc+mpKnW!BvDwtf*eJTCdWW*C&WI2*e(PI0L4Y7<9h zy89Ubkdw%_UIqYiDme{meqpcb_ih^#Ig6b4UjRVPCl`kR4Kb?E zpeY&zw6?_)WD~ifLU#Fk98pwXRnxzTT&dO;n+b9axk+7I?9~~+PHrZ*;Mei*bZxYC z?J9vgSuNy z1jO!u}cuU46!dEcI7#ZFNS8# z=Ken=QtxIb@~an!d?^I8!J*zC!J$3?V&6F6P~V0`61(g)8q^u4iBx;FZL8W!Gf#=<`#u7eDYA@>*paquD(X6Q#F zMA46d*aHU?>c?qJc};KCJ`j5du}AiA6j3?JdCgOPLq7?@q5e&X{neNW!(659z0dW%IdW4qxHG1SLMnRl{xbzGy^_w)>-i0{*3@!EV>9@a(miis~ z_aV+eoVB5){v-X~|3XXsKK*|E0sTRUa}ehtE(Yh}9+=y=I;h=C zp^pBf{!@oZj)1r)#8LjomQri5uk-ZhP-;YfUVlOVx&90NMg1j+J3-tT;w>TW3UN1x zyFXJ(La;BJCcUuo(SL&t)Us)~i+wHCBBf7Ny%xDWUlcUQME}3syZ$$uY2zMha-6I6 z5{S{?*FVrd)IZWm`aeOe{xAJw!mNL)pNM^eeM0Fd4BJRy6v~V`qqN=7dX#)i89ZS4 zz(Kjg2Ugb&t&m&P4XXXeL8Yco)zGS%`nsWoRfBrhp`g1$mIn;3K?%3PgE|eW8LZuc z4q5FtXQM#<+4Gu*dGX-ipEtM$VqIkqA5JS9*f#C;&{3voY)`>&*AO2I}@NSFZ- z4{R6*af5oXJjs*tpnSD^JSi{An?g6Vf_Q6)w}E(D)m$;F1rVg|7WUxVvR2anD zsn#&hILfG--9(uvGsJ@-9@Y@BBq@8a)sdAJTwJn%znN+F*Wl~=_aE7YVNmMmeqh(QRtLm%r6tbv# z$N-d;Fc{8ZI3P$p6{aRt#RWRi49oF?D9K6-Cuf(Iu5Rugo?hNQzJ7iIey!WI4Gi)N z4harb->#~q(bF=9Wz~&V@#<6R>1q$B@Cbv^WR8rAPU@7Fo>N@XrF)tBxcU_=L>*ic zNTuld=&E$}>av$n2`ogNN5Qbtl>XEI^sPnT9)ivlQ>6Ykr>5k|w=)Th3)ZNA~Ouzy$GnR(c zVhz|^*c@yHwhCqA*I^s5jo3TbCTugd1>1^k$KJ>zdt`x<+Sd*LZ~ z2Hu3fkDtOX;9ucC;CE2<;4Xd-e}F#%7)sO|ff+Sf#DH?p&k6>kJn#fC8}(1TjWVpq zz>lcufkwFuo@k5K^C?6jYI5j-R@43Lt4X}=VGu*aT zOhs~CLDf;cbql*7`q96d^|LQEOcz|bj_ODCrv^|1sX^3WY6$fTH5B5p5Vt@)4&w0; zN3I-cY$C*yAl_jeQq1Ah2x=rXiW*Igp~h0LYC4(>$rg}wfn*>gJ3=xAlAR!#rV_pH zG>E4|yz?4r7B!nvsX5eKY92Ko z;>ZF@ApRc2k3jrSh}Oi!kp_dhwvX@Dnm&n`nQEj~qLK{NM6G~$Cd9Lws8!Tzi048) zA4Rs$%LLR0`zjF6QqT2`ae9_Wp*A~?=cqpY5_oDWwOuo@Z4l2>d-V&Bqjplenh!Km zA49yL!C;G%sJ+OGQTrfX*pPW1WdviXgCK@FL>ZVhhspIPLe!i`W8+0_pb0A)H zw%J07AgUDN4)gq!I;HacJqYSF^_d#nKQ@{=OI^?iLaTL%cY)ZvChBwQ3y61v_~e%f zy5g94*9y7Lw(h;$zg;}_HTA77cop>xb&a}C-JotlygS5uKpYKO2JxP&sPA-_s2`{w zsap^)M-c$tAL0WbJ_Iq<|E&_Jol_4f6m*P& zcs0apkUKAmpfSV*8i#o8GgnTNH2tzGrx}`scpb!h*<3j-(oX;7%4uiXg>FeBZR!p2 zJ`nE<@qRW}zQL3Br2`OSXg}H?;sYT*s7V(@x7HMIu$n$Bw6s-+Az$0fz@gf7Fl|CQ zM~Bd%bQm2@N6-e^2yqm?Al)7Y@p_04hdA>3BiGPoI+Bi}qv;qrR@VmNh{6dFp9t~S zA^rx$-&70omz(Jnl=Pre=}vSSolbX#II^{|5J#TF3UP?Y2etwUon=dE<0y1%r#238 zRkMerD)uvZ_A{^A&y+fj7TJ%YRb}(_9%|w%!H%WzNgfFbi8)-<||q{h;M-SMokh{dIbu~=#}&;dNsX#Fs<7 z3F0duzWTX1HriQ*QZvsgQ&Fh?Vu+22i805be81UNsWC=JhDXPmV~nW&g#JXvY9)rq z=*XDxNL0TvMa7`nRIC|Q1R|rY#^~^9Q=|b^2x246u`#H|&@B7S_Q94tAIuaT6K*g> z#~Nc|Or|J=wu%Wy zw`x~eqRnR8SXPIkZL<%Cl0^SbnaL2T6;EEKECv<4{)4iA9n3M-2lla6Xk%F&1-_Tq z_`e-2GWx%{xXV7+DjQ)%W5;St3Xh47F&WK~MvKX6Fltz4npTJZE8KRBU*Z2?;(HX$UIk zAt8hrO;J(dkrq_?ibc;fS&c{xXed(*s#_YO%|@dcor^R^p`nb?(dKYNWOS4%78Nuj zjRuoefI51Y>;1`qTh(2r&+FIEQP+I*d2q{}Ms(2!bq9S8ZxzwoXr7_ZsR4vww zbj@UrLKIlgvc!V&h4d#H7@eR`(x1|&=+h8?2jZI`j@DG0A-)9}Y19Z)Sf5T|ktNkV zI(F|7W{wT3Hw;y$k8IhgM|#I@VS~DbRrM}vp3oQcWzBvs(r9_J72?~Q=r8Fj5Pu)y zdtY)n^fiae*`|IqvhukPrN46=-=P+a>e`n6k-m-m2YrkFiT)YlA3*#=i0@oM|3crP ze}(u*5Jzrwx4L)l`WVtsAA^HoOlu|>Ia#I+)7FNi2uVMI_=#pb zowkYzVM3WOdN30K@skk$8sax?p!%J|%chPEY|BJ4u^JIkOf(Y%@lPRs3gV}cmu2FZ zc$=5~4B}^OUY6;IxWk}O>FhHv%cLeEUqSpTsxQ1B!PGJRkb_`)(U9q* zq4_s9K);4CeI?Uh7sL!i9Srz&&FP|?jn={7sg4`xYh{Kp^^SFjz5Kz9WJcK!*u|&$ z4+i;4F_J;eV&4j4r#_aTnd=V1fNXWECH zjhqCdGIN-@%sgg3vjE~hK>QZOkw*RkaioX8KXVeyVml6?RMaylHHBNu8f2qJ24wRw zs3jrH7-b08;2BwIOe`{fi&=vKRNuEgZ(l$i1r`LmWXp<2cZZqgG z%j|=p^wG1y{>Qx%FZC%rYn8D6vsc35k(d?s!BCdUG1$wM`~U8Wuv7K|VgHAw2!}^v zY`q~6N69e9U@w*P|94#x|19Uf)D*#NuoH$-Zp|L)Wy-YH4$b|&)C6Md_dt~WFB=t@ zckP3r%-+9p(fa?SE8_2s3d}YJEk(4}pcniE>QgXTP^*d29D`y5qZU_0no$RfDICQv zk%rjFn8;}4f1*)KhusWzYLcDtqXovmYKcGK4w32fH}wr&;x?O5KMyLZ3wnQ)Kme` zse6!cheQM450RsNYD%$9HS_Y(>ZX=s5MXLhi4^b9w5X@jlO; z74wVzG{Dq5;|IQQ{I26T&^i%bc-%wBak4@#K#xmPLnaC@-1fwAno{qi8P(;xNi}A2 z8+G+W<@qC6;JAjVko(zYlzYzmh0~~EPU}_!T!kE?`X_{|<6h@pI4w9%3l(y{w$N+i zXvlChV?1BuvMn4}N)_@<^dO@e^G4P4sj{w)(~9bo5ck3WUXJ5V6>_ERw$L|?FWlzv zhQLJ~@}~O2@wSfJT-C(P?k^kKM79`$Kt~dt?W$Ve@@m1Bvs%%Rt$?6iBU=SQu&rpw*0J`YA=_Ka zl7kSG=4Sh$cmjl~x8G{*$qr$M+0x+bP%RA(B3?MJrNP^S7n*)i-`_EiXs5SSn^ zBahBnS+sx~1wkYP3D45t>>Jwb-h?3PnOA40u+v^%JG0Z-84yH65Mx_Avnspbzt+y| zLUs|mm|X%vECh(NaS+5mOM}Z+b|t%6lfx=@HM@pg%dTVBvm4lr>^n>w_FV`PAxMIt z0|dzsbc7%Uf>a1PL4fiypFohlf!$)SX0Y3dTwM@>T1D8M>_-rEZk9tfs_de`0JXdz zp%g;UO=~gqD6)0yqztZApHAMdzOiL|276Q^`xpcn%|bbWDjV!c_EYTxK_&!Q_HR_# zaFbaFRI%sT&o!A{fFP%l{Q`nqO=ed1OZF<_7<+{n0YM%TTNC>=`way75ET4NX=ADl z6xnZex0XL=`VZ{S{~Cy~zp%)aA+Z%fQ2YW4+n;e)Bct6P5R^QB(gXI-mxD6)FZMA6 zT_EVHiLZpiIQ{=7C~JsuP|pdRY*Rf>vZ-G8CiWW^!DIoVR4c*MaxFQ3UGRF&m2>0V zISSzT>=PMyVI$sSz4Ft98xd6LhxwiUVnt5@-nt3(% z{eV8GNM*OJfmyK#SG`T@A;Gd!+nwzk>60Vz_6{sr;S>d1; zZqry{<;pn}#BSg!xJs^ytLAFBTCR@k#r0;|aD5>d0s*>fC`6GgsE1%U1W0p6LNLmv z=%Y7q{T=)mtnZ}@vT>xILsyMyR&*4`>Ka__JZXU7jhFSjZuXRYnx1#!#%p|<0Kr&? zo^#0F|D%G}%&2MH42@CKAsE-l&4l1JjZt3Q9B#gyQS)q!vLcH0vo%IxPc@3`xTRd< zziKeIf?H|RU$wXKfn9Pa@K>4wqnfJSKg@roz)NfjoWcF1(fu<7bD9NnM+2Zwx!=&| zt_^+W+P>!@9rl;QnuYU_L&n|6J%V6CBli~s3pL>s@H!sYgu~-D;VeQAXxlQ zB?i3XVLZzVHg;&QFd%hY`ur}NM0qFP2XTXU=3V%fyesdmRS>L(U=0Lo*Ym!1Zt$)6);vOKK2YPvx@K-{gaFC&Jq@F`+St*Fk3#I= zqaj%DU#LkOVJo44+`PKXyel5R_ zU(avgH}dcBn|S1@KY`!`1ScUt&hiulry=+Zf-?}Dh2Y$J-r=VC?G9disPW=_GcQmE zz=7sp*^PleqVeJ=1Q(ilfig=g`4jv}?E}H*5PV_(M%)OMTQ*a0j=!Ms<2(eH8hLcl zWxFw4=D*VT@ukKO)VPB9aaGfRD-9X{GzR94=7-(nzqhmFI~zN$YMOCX(~K*2ZrtV{ zYTWpRzr+8^|Hl8$-{t?{@A3Ef2M{1`UxVN}1UDeK3Bk7zdLp;Kp4$Hv}1RLr@_2$-xc58F52!5n5^=2oPx8wtpjT@UpXm0Kr@E zMcfcj2z#ed@Ppu2#Ernb)yfsp%e-~ zodDmsPC}W+v7V3s%^a(=h1f!Gp|8f0K9C?Ag?^CGYb@~?B-q;SMhHU?KOjMA)D1(_ z5w!Zsn$~TF(SjC13uA<_!mE(rAi+aIKoPWH6>JeSAwoiHBq@pz-qZ%31PS?>_Y&R` zrfa-=-g7I=5N1L`fkX>i^eoH~7XDZCEG!Zh3rmEhkZ^*8GbCIf(b5q;`>dlpg_Xh@ zyIfXlav|Jam^qS5PvITm1EizECgELSv#>>YPuMDK6SfOGg!dug0SQlty2lA`Nccd) z7ZQGu@P|YIBwDQ(K6HrWV~39JLpn;dZWc%o(oyx-B^T9G+s0=IsPVQ@I1Pz5&D=h# z>E}7&y!L@aTSx@jzma~@a=T{z{8B(>*(h9rM7u`eDkQY^PN3&?;ag2VZy^07LTvi^ z9Re>R6akUCc!P(R@Uw8oPV+A|n!^!H3COw%&^4MewiE7&xTcKvg$Kez;gRsC@R#sd zcp^L%bs`1{10;-)FhRnsV#{5O8$@8IRHQ^&WJFfiM&vbG|eO$Wsy5rwb+-uEqb7kh}M zVi_c|A&~yW5u7E={kaXSKFq7D-M)n6x{)u~M{|)Cduo6as_VmrTmN_8oD{zhZ&7RorHiMK4J7{(Dd>exOa^LrC;_ zE|Oj1p1+A?uec8qeIe0L6G^dnNId>uBKdb%XqLlg;yIgvh^P@2$zj0XD7YlvM3^96 z7QYm)h+m0U#jnM0#B1Vp@dhLYL1Hi@hCuY%12Gg5!yr))iQ!OF%aQBFZyh4|k;nx> z$WCr+b~3720H}gI7-E=aB+%}-MD+4$qxcvSqaB==bjU&^Ov1GfB*s8uto<8Vh=<(K zL4d?a91@I#fPP$~gs|4O;3$%0303HuBt@GIYBn6uBspuyfI_B!Sybz9Hb2cn^0u)< z^0KjGJi-gf*@hPlHs>X^k|K~|O0A_fQd=od3XuzuRwxx~j4Fb}tVRi0&}=Q<@sherWg5jJq*9v- ztB7L6Yi(sVNTaw;s+M~F>&i^(BlWc@@mxsE`@0fL1GNbv4VnK;iKSPhdNk4tD>G@h zgru_o5(|+Mw=EtcS^uvVX3`tdWV_HN*@U+EZzR-8Go(dGi=~;;ENQl+N^_*S(mZLt zv_M)2iKUQ0M!gIY$fz43(FD;uF2qVmtb)Yq_0nR8yq2*Yv~{$!Let_k&C=SS!HCxS zN^G_%ak{icBO7)2tZkOdc1?+QNbhSONUVdzdiyt0;^1bGU7ZUGi zk|~f5N=Fb`(jiTSH`!G9sD|_J{!8$sj9cCOuurAW?94cAW5yO_(9%&2Sl`ve87h4) zUDO3PN?$-?Yoml7xBaE0v~<;;`6RYg$b~3Vo2pLS<MCf(8nua&M#H>8`=x6*gg z_tFp2kC4~_2}IQgkU(&?6A~XmVizPnUMu}1{Vd&MJze57iwg(c3HiTOH zA#nhr-XP+z`s=PGqVxn?yxdXTlreSj$5Gz0UZ!*}zEUi+GLL30bC5Ww{`_%bs@y_$ zdijc$vb!$0Np_XpAaN8D$D0sHppfMRB#D
    HnO9#aSJPJ5n0mfJXve^Mc5Bg#9f z!XCvS2gzZmoG7=GgXIu86cQ&P@hK!uLE`jEIb4pA4KfN4K7+&=NaBzLYVMv(W*IF% z8)anHXB#rl$?ehm=ICt|IZ;lMJIKl1ht&;0-F~Qh4-yw3aUP<#k4Oy7B~@Lv7wwbK zNzOp#Ca1~iGP3W_A%P@yafO^IXUWK=B7t3o#Fy&%y?qMgVr>{?$y#&0y=WlY7eLkoXD`C}8>;5(xjULE`#qtU#{PvR!g5R?vWy>ju(c=Rz4<{vcT@>+Gm!4O>Dpl&`GhRd7OtJ=>NRXo%dm$#|W+RyuHx%RVD zed7?i@?&-Dq1L#(SG{-$J@|mi9S)`B!wqXHWFJ*N?Cg}0n_f}Wy{NcTPBUwcsda~= zaQTF~SwbDjus{|@RN;`;NB_mxS ziSBTRB)Y>Bl3tMXhNKT9eb*}?N~jJ67fOU;P>hO6F(Y^;{UGU&g1Zn%20*eEBwItW z4J6y5LowY^t9b9a`l8e<)HiPbd+Ju}@dC`CbXIZ@HUX3CX5e|?^kW5x@f40f0s5(iRqs-MBs7U6V3jx3Ii;aBbCSzp8paqcJYhWD7}@#Yo9?N(253os?w?O7hx{H7ZSzOm#Fm zphm&j_A3$Mpw^%s$~v9aD`S7mM%}IT=w0Yb%DZT5nM2BZ%2s8YvR&DsRcX=7<7B$+ zU95SK%z$JTBy%8{2gw37=<}+g@{t|e$?J}QAeGvREL;6++Mu# zkmG{v7Yea2+<)A0I`@UD=<_n7a>{W!|K&QZa?WwQ5S1OfT6MI}T^FDW)fshhx+GnJ zu8XcrSI*I#h-x6M(0))+TpX9cC88amI&q!R9#F4vleoFuO0>PxT5df`cyB@}?)SKT z+yU+ocLZgjPoU)UX_R>Wh7aJg(5_4i_-*_t{yY9I+DnN+`zQ%$4|Rq)li~q|b$$!neZjA}jKuh&DZHfi^s9 zi8ed(5WUc5M}BCFBMVw^wnvN1WVF#yCovsubd)9LhS&Q8v)o!dGGIR`t3I)^(OoK4P=&e6_g&aXMoa^CKI z#`&R(w@a!^j!UjfzDt2i50_Gxo-Vyy`nybbS?sdOWwXnBF56soxP0KU(`A>-ZkN3- zXI;*_d~S8Q=yKWRipy1(Z(Ods+;sV_CEwD}vZ&?QmaAGGZ~3#U?AqD2kLx7Y?XLS> zPr9CR{mk{O>v`ADU9Y*`aQ)Wxd)FUbe{#L;`q(YdEzhmWZIs&#w$cPFh}%)OV{V_gec^W5?TXviZr9vyxc%z(o7?Yhf4JlBp6*s}cVBmZ_g3z0+ymX) zxrexixktDg-OcXV?z!&y?uG8f?p@rwx%Y4{b1!$Vbgy==b?@aq+Pqw_hRp*-k*72^1kkU)B8K`AG~jQ|Lpz9$4dHeK7x1*VN%86I)7z)sXN1ovpD{iYd|vmN?K8(`p3efGRX%Hc*7+GB4o9$cUJH&UG?{MEyzGHk}^|zzw3W5KnU;;hzlqQs1B$Js14{900X86%nDEg<^?PWSQM~5V0XaffGYu41FgdY z#|O>`oE4}B&JCO&xG->W;M&0Tfg1xi1#S*}FK}Dnj=(d4cY}O_l7hMf)dckl>J!vI zXkgIbpjU&&1-%y35Hvq%dC)sSn}gm9+8*?N(1$@+g1!yYA~ZHMH}sXzIiV{;H-~Nw-5&Zu=+4kxp{GMHhJF?Lb?CLw z8==33J_xlw3jHheNf;SMg)w1Vm=NX}78DjA)+sDEtTe1TtTwDySf8-LVXuS@3mYCb zGHi0#?69R_%fhyWeH^ww>|ofDuw!8t!mfwi4ErwZhp<~=KZpGi_E*@Ga9ubEC&TG* zHk=Q44G#%V4$liO4IdjmE__P(jPP0EYWRZiMd3@r-?oNt4L=-yD*TJ^OW{|-zYf11 zeltQJ5fG6U(Jf*`#FU765!)hmM0^;rD`I!VzKDYnM)kZ&k76dQUOh8ac}MjOT&pkabxra?8#HOx1xH@t7yY1n1h zZTQUamElK&^{(N*;gR7lV^?FPafETKah7qBag}kcaf9)k@rv;W<89+36J?T2o+fXT zpQ)886z#+lW2!a1Vj5!_XKFA_Fuh@#VVZ54Yg%AhY+7pi&~(}KiQ_N}RJaeJB*xc3J!(3(_W}aeRX*IuZK4?B<6YM7D_xiVTSik2FR`YVFODnUN)tuSU*`Y>M0!c`EXY$eWSh zN8XCO9rV?U1F8@oUDQ0&pzYUyCfvE*BdEG3p|OP!^+rLWa8!ZO-2)-ujA)3VgE+_J*5Dh`j6;*>b& zIM=waxSnyZ#lg6Vac{;=iJKNTGfs`07x!-5dvV+2K8V{Hw<~UU+>yA`acAQ$#9fU0 zGVZImTXDDJevSJ*UX1sQ_lft9ZxtUAZ;VfjPmWKC?-XAcUlQLnzI*(D_|fsN##`fI zy!BT6gZM}Bj}vqWLPG0=z=Yt0umnSbIUzd1l8}&)l+ZDuQ$krnMM70VO+sBlpM?Gi zgA!gz7?v<1VN}AHg!u_O5-uhD)!wgtTKl^8liROt|5^Ln?eDjL)c$e%r-^i;lIWc1 zn&^?}o#>nBpV%tVkZ4YfPP8N@Bqk=7CiY1jXiXfFI4p5g;+Vv7iPpro5*H;dO6&Q8utE=(>?u1c;=?v>mp875Cpo|UX7&rM#Fye;|tDT`8;rYuWoOj(h#F=czo2Pq$= z>`vL2av*&15<~jT8E{MNFAN}YN|DLeCoo~C8=+xE>CSrU6r~vbwlc=)Xk||Q@5wS zpL#C!_fD>zES-9Gn$W4K)8S4x)5Nrpw8*rWw79f{v`%TcX$5J;XH zqzz3Qo;EUVPFiEy>a=xf8`HL=ZB5&e_CeZ_v~y_})4oi*nsy`Y+q567X}8iIrBmr* zx{~gk?wanC?w{T|JutmpdTe@D`hfJ|>7&xerjJXXl0GAScKY1(Md?e^m!~(S?@s?D z{apIz>6g;4q<@|ML;6qYzoh?`{zv-#&ic-V&Sjlp=P8}l&Ko*!?tHZKrOw}VzT5d; z=Lel1b^fdKlMG#kkRfHX$Z*MU&9Hi8cxCuxgk+d9qB3GL;xjsCbjnE2$jHdbsLU9a z@p{Je3^ik3#=?xn8M`ueXY9*3ka0NUSjHzApJsfP@ngo%8Fw;%&-f$be#XO0Jd?{5 zGnGu|OxH~J%(j_9nZcQ%nU>6i%%sfZ%-qa^%%aSa%<9a#%-)%OGhfY|oH;dfhBb3m z=6jjjGe5}OnfY<%-pu`(hcb_5ev^44^SjI+Gk?mwop~qoVHTc6X3<$(mY5}Hd1v`$ z1!T3(GG;|)#bjBs(y}tLva)irdSvy?s>rI!s?UO16SLmTnw&K|Yi`zptVLNXvQ}rU z%Q~KQGV65K*{lm$7qh<1x|($@>(8tw*;Xu@$ku1m*=)8`wpX@qc0hKU?4a!6?3nDh z?1b#Z?5ynE?1Jo~?8@w#?7HmU+4b2Yvqxu-&7PjUIQ#AF#_Sc@o3oE(AJ0CSeLDMW z_J!<=*GyD7Or#W~Ik)zL{bGRHaN6B%@amjJZ@yPMYvE+2ic{S(loc-3E z?{lf#klf7NVYxGN7v?U>U6$LJyFPbo?vC6Kb9d$L$=#QGAoo!2ncVZaU*ulS{VMnC z+{bxro|M-j&n3?z&nwS2&p*$QXUkE66L(>z-GdSDsgyH#qOrya{=42rdXKFcg>yA`7Amk_xg5@(KzI zN(#Calopg1R2B>@7*a5_puPYWOe}b#U{b--g7pRO6l^YduV7EX{(?gVM+(jrd|q&| z;Ig&g`+{2qKNtK`h!=(wb}Z~#*uU_#!dZo@3wIWNT)3xjf8oKx!-b~`zbO2z@L`ct zQM;n(qNJjZMV*Q|7iAR{7j-S_QB+n`QB+mbuV{SHw4(V%D~sMK+FZ1?Xh+e9Mf-~m z79B1+T6DbVMA47MRB>=|N^yR1QE`{z?!{%r<;6pbtz(NDiYFAmQ9P-5Zt;@hw~Ln- zHx;id-dMb;cuVot;$6juiq8~ZEWTWPrTA*`x5Ymc-zvUce5d$P2`G_EoJv}jxR-dA zc$XMU5=)XwI+S!Q$t$TT8BsF2WPHi=618Mm$=Z_5rBo?f>Qw4q8dMrlnoycoT3A|A z+O4#-w7j&+T3TD$yR={FxKeBB_|n%)CzZZcI=ysO>73H}r3*_pm!2%WRQhXK>$2#w zqO!WOhO%j8OUjm&HI=O@TU)lFY*X2mvb|*o$_|$uD?3qks_abJ`LfS@Vm;$~*7aP_ z^JvfC%frg!%9F}FmUk-8EYB&=FE1>wD6cB7E$>~vq7!2ie(ia zRP3qvqT+VNpOv~wP^quvD#c2r(y7v~GN7_eWl-hJ%B7WSD>qbbs@zh!t@8cK{gsC* zk5nG7JXv|V@=WEQRj$^mkg9^JerSt_*Q#LE#Hu%|rdQ3Xno~8uYGKvds$*4OR^6<+ zUG;0#-Ku-lpqj4cs>N!j>Xy~+)t=Qc)v47v)%n#$)m^H)S65fpRrjgxUp=ULNVTWnh{xxlD+SP>C7;DTm(KWF(c{SBF{cA?myje4)W?Ie68mn3}uV!J*l9~-Q zn`*YyY^!;{W@pXEHG69I)ts&Qs+O$%|7tkzza$gKfmheHuDyrmRcBY(yoT*%+1^)Y z>sksZ`%!S>!xVUsAwv+58IRzD3_(Nzp)*h~KkdD(uDZH*Szcw|_4@wue!pJtKjNK` zo|L{mJuUrMIxd}<4y04k^U@2`Y3We9FkO=VcY0@fSNfNXy&1+KR45*Pxx~82SeKG5Q1g6Z$i{8`Bfh z8`Bpv05c8~he^Op#w22pHCe7K54JycG#>H@LxORLTemZ_Gem;H?h+l$VjZeX+;y2;9;Bj~{-i2?#2k~M2 zDf}7y1N?LROZ*%BJNy^?SNu1^K*9*ZXu>!`9AOF}kuZ&rM3_a`P9PGb1Pwt)FcQoJ zJE4Z)B*X}p2v-R=2)7CM2pxo%gx7?3gihiv;_t*vB92HT0z?WikH{jH5J5h%lqe=j ziE?6yc#rrG@g1>~*hTz8`i|6x)SonvG?)}mT1nbPIzT!>LXk2_SW+H|Mxv8gBpyjX z5|JdNa?(jsg!CWMRniU8ZPGo`1JZNSOVS(Cd(uZz7wH?h4|y0lo;;JhkIW=jk-g*) zIYMqG$H;Bui{vXH`5O5q`40IWxf2))!~+w71Yi;{8<+#k1%3gR0V{zuKnk!OI0$3` zcz^_C15_X%C;~u01e5`CKnbXUO27b^fRjKC&23Dk+yNz`@J4b;ul zZPcCAJ=A^F{nSI$Bh=&63@V0-r4p!QY7Ui3Wl=d)9#uenM14bjNA09`fw}11oLp*d zer{3jlic^Yow;4PU-I_nq4F?!*gQhsA9?5UF63R#yOzHue|!GU{5|>m@|*L|=U>df zl7GEmctJwJq=KIcel92|;1=);N(;n=lMCk*&MRC{m|RFKEGjH6WE8RspA^0?>@4gm z{8A(=QWt59^hKtkE?OU2KN|Q0Z7_{XlhY8IgXX4rY4x;5T8I{*HPd3WHd;IFA?-2k zDeW2UAKEM0TiOTOM_L!{3$44jM{#`d^5Ub#%wo8>z4$pe1e^{22Ihb?kPfmy4k!YZ zU+`dE4*eFl9NeJ*_= zJ(<3gzMQ^=o<=`HKTgk}W9URWK&R02=mm5>T}uzqWArw9JN+#E7X3c`A^kD^IsGO5 z4gDQs2qTV>$e6}RV$5dDV=QH?V60}OFj5&C8NV?Yj2gy8#x2HE#y4g!=J(8g%paKG zVCFF9Nah&kcxF8FM`ki}DRVh!Sus`{tDSX@b%Aw>b%phS^%v_Y>pANs>ot22dptXVJ(-=z zp242Qp3DA)y@tJxy^Xz{y_0?}5(ox{#$7qDq;kj-P4vE^(fyMhg~5w?Tv zX8YI;>>#^|eUtr!{hIxb-O27^f8l)3>BsqjGng}sGlKIYCy_Ialf;?Jna^3oS$n@Zo4H%LnOrKj zkXy`Ua7(y+ZYfv9t>hZGHQZWm9oNqdaUIn^oMnI#XanM9)67&-^6J=@ zpl8qv=r!~X>V!TCz84G-3=#|#j1r6$Oc2BiW(t-FwhML%eii&CI3PGII4U?HKnXGh zH~~Yz7L*8h0!SbfNCZ-WT%Z(G2s8q};F{obX?*FLQZ!g9D6KASD}7x0s`PE?htiM2 z9>V^@fx;oe;lfeEF~V`e3BqZ@B;jn~JmCW2BH7QPd93cG|~M8iZQMWaPyMdL;Bq8~+5 zL|~$5nrMb-rf8E0BPta+L>EP$#Bt(f;sfGbF@Djn8z37b8!8(i8!a0r zi<2eDCd-m#OJ&PtD`l%?DY8`AM%iZBHrWo@E*U{4l(}V>WFO`6@-_0Ka!{_7TjW+b zBCnDAnRkm7g6F~tc5pa2zeg;JqbR4NP#vjSGw6n2GEQLAWC{HbVHoK>7x zTvA+BTvyyw+)><9bSS#Z+*OXrT&!HCT%k-=?ojSl?p3BK z4=N8Uk0_5R2}-guN13ZEP!=gGl&}&+ln$j^=~Ff+1Im!HU3pe{OL<@UQ2AK-T=_!z zTKQJhQ#DwXsG6oqQq5M)Q!P*>tCp%(s8*{|RH>@Ns-vpos&o}fm8rt12r9BFTSZmn zs|r;rRlVw#>TAWMiVYR%6}*b7it`n(Dn3FSy4 zIqF~33)RW$U)9IdD0QY9rzWej)l_w!nyZG?GPOZnrLI=js9oxMb)!0@j;Q}oUr@i* ze6Ja-8KW7miPt1(W@_eX7HE<+%QdSsYc=aMM>Tj2RgbV(l{RYVBI>dhG`7KJ5u@p0-e1tYv7~TCNt-3bhigOk1u+v<|IH zTdVbI>$Q#AptebSO53cBY9CbgtW2!jP>HQ9tE{WMT=`BnR5wl+r%TXH(#_D#*Dca5 z(Jj}l(yh^@=+^6Y>-Or>bO&|6>yGMZItbK>byA%|r`A>K3_6p}t@G$2x~Q&IcSd(! zcS(0ucU|{H_g?>lez1O+ex!bke!Ml!N-=W{F->Xm4 zAJ8AxAJHGv7waqar}PgEeGRh=`wRt!3WMKp#c*;qoMX;47no^g zx|wAzG4ss^v)ODhSD9^QyV+@Wn?2?_v)>#rhs-z4T_@vDt~z<*B>yCQ^3RihTl!gs zSw>pMSjJf~2Rqv`kRa2_gR-vkRRracjRh`yR)&=(gCbE^; zS@{atlp^`>fKb!oM$`dszP>W|g`R)4MjhV(;*AtRA7$ao|k zNkC>IbC6$vp3j-_OSgA`!)Mb`)&JO`+Yn3(Eix|)c(x= z!v4zsre<)>teRal*)__VP)&!Uha>rGhU=#5mg|n|nd^n?wdtE}&qdD_&vnmDPlxBJcaV3wcbRvccY}AccdK{57v;_L;=DvJ;H7}x zJTJ$~^+MiKugF{Gm3bB3M(3iXy91jM1T~?4-^H!05iY|hyrB+c|aLZ2eg6qz{lX=;H2P; z;H==>;4i_HU}|tvaBFZ!P#3HUdV>wYU@#m!9c&5y8Eg+;4n7HXhkghR3=Ikm3B`pH zLX$&@p=qHRA#ibMODHXb50OIIA!;Z;R1^Y3%n&EU3kgDokU0d0tfA^qO~@7UgnXff zP#_cvwS?}5{%-2kG^%N4)0(DzO@tm*Ed!_*3|ExI5A#GAJ@KGA1%U5+C^~@^fTH zWL9KOBrQ@Bsf`38p~#<+3z5r_Ymu9gj>x0PlgP8kKaqElFQ>ase~I>wj*gCt#zhmN zlcR~zY0-tz#nGkF717nvwb6Ca)F?J8i8e+bMPEcaqusH-u>r9WvGK8l*z8zx3|typ z9$OjP65Afz8QT-v7fXvBi>1dxtI$t#?}QwLWP5t8Hi7 g;kF}f$J;Xg_wv@GSFiu^$R0h0UH!lC|7;8X7erj9Hvj+t delta 32280 zcmcG$2VfM{w?Do!cV>3lP9p?TNr8~M$!0gb64FVf_ecp4S}385nMWHxkMTy9cQcx;NLs=*r<)MzK1eKx+)ERX_Jy1XN02+Ws zq0y)wjX`741T+yngq)}m0n*U|v=A*qi_tS^30jI)qIGCJ+JrWvEoeL1fp($YXdl{- z4x&ToFnZmI-atpt`{)C73>`-&&`ER(okky`v*;qagsz~U(KYl7x{m%pf1{g}i6SVH z5-5#oMFmiSR0tJHwWA`aXex$^rIM&jsv}iI6;owY71fpMM)jh4Q~jwLY6LZs8byt! z>Z$Qm1Jy_Y^)NMqdW4!uIiIBFP|K+mR1?)qt)x~_tEn~AW@;O?o!Uw5qV`hzr~}kN z>J{o$>J91$^(J+cdY5{SI!>LSPEwyz7pY6s73wN=jrxW9mHLDFo4QFOnxa{nqcz%( z4x!u9?dT{vj<(W?w4F|&Q|U}Pi_WHt=nA?U-OEY$ru)+a=^^w`dIUX^9z&0%r_w+_ zPCr3ENzbDf&?FnZ%?q=}aEe zk;!MeGd-A|OfRN4(}(HH^karFbF`%Zy_tFcX<6%v5GN^AO`?W-yO1k1}(Z zxy)0{JmzU;KBF^>nP-@F%z9=kvyIu#>|zcvN0|4RA&TKU&nv=}g<^pq>xyszt+|%6G z+|N9~JjFcKJk9)|dAj)_v(wyY2J^$_8Ro~$bInhg7n&EDpEoZzuQ0DOuQzWo?=v4X zA2PpYK4N~;{Eqpk`2+JY^C|Pk=1zcXJlUp4<_zG42`e3Lb?B5PqKR%R8} zmu_~PLJDP1|fqj^r z!9K!1%09+E&OXKJ>;m=~b_u(jUBRwlH?Z5-9qb~@AG2Su z7uhe_uh_5IZ`kkIYwR!Vuk3Fe;wX;h7|zVG9LMpTz=@m>*OK$)BDp9onv3CLxj4?s z#d9fKI+wv^b2(fd*O4painvm)6IaGnan)RBt~=L*8^jIfYPliYP;LY_o@?MHaF27& zncOUHHunVgBsYhf%Pr=Xa?f(lbIZAAZY8&dTgz?WHgYd=o4GCA4(=sxCwG85$Q|Mi zbFXl3bMJBQb0@fy+&S(%cY*ti`;z;L`-gdPgZ!iX zOnw&sBtM6r$3M+4;1}}G@Jsk*{B!*Cd^5k2U&XKEkMbYz$M{qHY5ojPYd&f z4Z=oYlkkG@qOe)mB5W153EPDo!fxT9a7Z{T91-3WJ`j!x$AvS(S*P%`a839{_*M8# z_+7Xz{2}}){3YBF36T{gQ5IW?t;GN_P;4u<6LZ8|v4fZ=b`lOpI9q%|Tr55#E)kcC&x*^$9pX#kPH~sG zTihc$_lo<({o>2w0r3^_E%9yf9r37mTs$G36+aO_6~7d}68{!&T1*zgLRyf8vd|XB zVz#gr(bB@=WAV2HSi&uBE$u83miCr-OM<1;(#cY0DYsNuDlJu(YD;HJ7fV-5PfLyE z0m}f(P|GmO7|U48ILlPaG|QuwSx(E-mid5+j)ekN>!mT$SZSQ}pfp{2NODSz z(j(H7(i~}tv{ZUlS|&Xwt(MkE2c(12A?dL6iu9`Vn)JH#hIB-FQ#vZ0kWNacq_ff| z(naY@=_~27bVcT5UKV6gw#bq!%ZjYZn%qM6kz31cJX4+}&z7H%pOP2J%jDs{tC>xc{%1&jMvRgTz98``dZz^vo$CTsBN6IJ4r^=7Y zPs-2AHRTuOSLHY5cjdbBmvU1zsf0?af>RY$i>j)AYLFVNhN6p0MIEFLR%_KE>QHr{YQ zZd6}Xx2ikTUFu%-W%ZEys``fdmU>iuUp=m#Qa@79su$FYs`DH5n)-|StNNSzyZV<# zXr#t#f+lJfP1Raytu;T*rX^~2&7mb}$y$n*s-?q<@m&&+$MAjiwr9kUn;DM}6aw z5bn5XfoUP?gv#^>Y^_nbX$k)68+07sRf(!lb?-3)8isXg7*{uXC=e15mKr5O|7>!^ zAoqP;QMW$%-MbdnjjXN07dE5rrX_bCIDvZNC-ovWp+2avM@1LwzyafH`{1ABYDW%e zsGC^Zh=Ean;N6ewk7~MAbm`W)tQqykBY8Y8F2$n|XdoJDie7~Vp~0vY4FRGB5I#V( z1j2U}8it0T;b;U9t?;iv_yG~5|2<@41sZ3%)P%+Z(Ymp;_ke+&(FTYRAVPr%10o!VwrkN7=t(pO%|%b4d8T$i z;D2@?96%%ikqktN{_>y|PV}tl(i*f3J%^r0%h3viH8%o?C?H~hhyx-X2pd))ve90prI{svkEvq-*Wuh9PyeBL};+{3G;njp9?1Ur;c(uAzQhaou?QJ*A|f zc2qMuqc^4oIR6<^K0%*ihj$)_l+V!T=nEjqfG9N_U7jnNlmk%$M5nu>$(QIWcQirY z0Z{}*M^88bqRr)qp`G1`MqoACewov!y4drrR9%L{th<6tRh7P)q#HQ8?ms2BN1ytrD|u{Okcl zue-RXM9OkImUaW8%ENu5ZZKaXQ!PxFnkgR&yZdS&y4-?*LT(5;8!@y;RsG;0I1qV) zBNgNhj$IokHqPsc&yDv0Lxs74>F$YzNxC}SW_8_pJ6cg;9(=lE)fh8j;K;f`)^QUC zPKg^oXk6Wx20bo4@t<<1;wUQ>PbHw1R3c@kuw(BJ1ddcVaQ1Nt{%Ig;ftYtU>&aBg zZPo_?(f2OaWh%>bX%&@Cz_QtOyyWN`VNJ&Uca-=1tB-(9hIH=eYtWLv0+Z-wOgw)jJ z#M`c(+TkYku!~f;Y18myldNe8Nw#Dh=k2xxN3uaG$$`mZXKX}zhb=Y19hQ@ltSL4} zQgV_5U*~Yxl5hY|O0;6%os^ntOG-|#r6wi0qlyzJCe&^>tw&t6x*N2T?AC-d?AcQj zZFYQHn#~}Vn1~Y-M}iIK8jci4a+)g%v8Se5lM<6K`4n4%9S;x_v!~*r;vqSb5>jv~ zkeYBi1)%o3X+7ql<#ZFnSKA#nN1`JwB_SDy_BclxegYnWBPl5bFtPw!n!}oy zoS2rHXirMQOc=RQqCM4`im^{k!%s-Hr8<&t#Y^gto7l|TAl}7TYMR4oz=(<25^O0r zt#Tw`A=z*k!^H09ECq+Ze-cZ;QQVu`P_MaZ&Ax+{!lxA4X61P^)>Yk z^({77Y}bo{SPI0mwnDsG zRC^CPG;g3oTTn|{rWINRVzmdIW*0h}fx!Od#k)cZ-GcVHjm}0qab0;gJhVTChYp|v z=^#27h*dzW0b(r>>u;e$^X^$ECPwK$rnhTz2P(H((N*JW$B(Za99fedbuS`0E=2M$BKdTI zfyfRIB3oUE><41sJ%|+3CASgT1H`s}08(iHQq`8OraRMJfY=ViOF--dV%Kd%a@@@B z&?D1A{x!(n0mp5K2Dvq5_Z^xt%nim~kEZnY1X)eLk!HRFnPDDe_8O%D=e;nDqfXNe z^aKpUBzm%8Hit0`K)eaW0T&LR0deG?c0*62AH0pj>tHClt7zfQvt;^V)1{U44EhoJ zQ6LTh@d^;Hx)3Na>J{`jH#3KgWUEF|JB%5VUpumP=zxY=t4oRhi)@2_+I{b9cL1@- z4a6HBAiBDM*!Y&}ydzDe7kOZK!{ean<@5$q^agqb-9$IjE9q7AYI+U5mR?7%2jVRt z-Ui|wAdUj@E)eel@jehA0C5b6;~VIWrgp|(dNaKRCE=gjjmiEA9K7*gAU*`*Q=`Tb z10->7`{89>i4yuS_GB~$;bdc}D+#AxH}vEU`iSuX;uH|4-QPGF^H=h`Lwt|^z~tLR zW7;1z(U|tf`r)S{0_aopM<(B9`ZSG6odM!(v*`?drm+NwPxR^8!A|DO@Lc7t6ovkb zzG&R>IsF9?=YhCz`;NwxZbRxv4j$isaQ&bOqiRPtl+}(N+Ayp}i8J!}x8o z&)~Yjg>|Fr#t$nSFk$qdVYrIZqpo3CEE#GT{lW*-fGzuAigwIkHkmhf0oPW8}#3|RqrwoU)`;G z4236n49zf%nPC|Yh_8Y8wha*90dWb4?{C>5Bf1so8*kOD+^coos+n=Zd+a|=hM6Gu zQ-3hjv(!C(!X-0f`h+bDSIj)3Wg?guoR>1~nMfvzi3Z{-5I+L(6A(YIVq%$S#>&J4 zaSi_p#IHbHcU7U7WUNL^3J|~GRJWqDJ+7)l+?4#O-bZFI*|-YDWHMPm{07AD|3MY1 zv-jQtrX1(6Od(Um6f-4EDbtB51L6-L{siJLAZ`HhHxM_0G_7SSm`bLKsb)GeT}PzgBtfUwXMumB%RZFyq~nu&R5@bk6^#PIq4b?^k;9ifWRZlyIBWU6i~`Id7K) z?@Q{xs9m|Zn&u{DxeuxTvUK&|6(2oX@y~)1)5yTTm$#dj+@&fr;!5I|&Fp3Np_a_cw^MB(qk#-_IqnWXEdOWDz#L{?x#hUYC?LcC;ka>SZWZ$u z^EUGibF>eTZGprbL;%_Tmd~c{%(cDchkwf`(Z3|y%vqOfCL;~k>~!aocO~0iWG*sS zaALrG$$Z6p&3war%Y4UNV!mg7U@ilRgL*8GaX?yuj0Z9SNE?ueK-z(HY+$as69eWN z^9wQ2)QY-1e!}R6E|YNB zH}Yv$#5c#|h;POybo2y#vz`74$ozYvJ)X=fhSr!<&1wJCnsOiu?yEKC9CPk%ttkVt z@NTU!7aE8anTyRO=29SwfGh?Q^H6%X(saNHs%wV!Kh+v@FSpio`fs$xJkUG}YmIr3 zd9bC>npc`P zm^Zp*>O@IEjstR#N2oY&cI(wvycTQTX5MbzVSdTH)4a>P+q?%zoJI@&HK$Sn-Ac5UrAnh?WlpZ<4W>9i;d(EAZzbPmt20;eAxU-?~=R+yw^6H zUo|bk2fV*~pZEqCw-39c{_j2Ww(HFB-o;ag#trWrH>IwZN43oFx;19x|I@_Me9ryU zu~-jVIZv6tKn3QD2zxQ}0rOXQk)Y80ZRfhdxc*R**P#KgvJRZkP}`+;z_>xf%Ie)o zJVpV?@y0BO2eKi&!)x7w|J*@DxZ(KT{6me>x+E{(GYfFz;JtOF`Lg+nY00fCcw?gA zzC{0^Cc^ro8LzRgGXG@$*?i6X3y>3moCG9}CR0|Ke>4A1Of>%iML z31A79!S}Evi&%=Kft&{9gFxc*59xclJgu=R+rkvx#A-k`HnG^#f!?=kKswvnG{2ek zWBq}A7|2H(tseDegV<1$?@DqHxtHA6_*vuUjbE%}!%Xd197SdrF82|AYuA7azivUz%C zx2W$n=Ql(*moQ_&K8?wwuCJ;7Ow{nXc$nb(uD)@6l;7# zLc&RcL=?@KV|4X!Dmt%d^Sk>AZNkFawu@*J85J3=M|2;o&+q=eKCp*hi`Y18d;(ra zb!2tSFX+^{OV=K~^|?L960!4pw&%)B^`@bwI@4&~+Os>8l$?^9o~Z{2{%TWNBiEGC zXlYbWWap&hcF5CT>N%V$EGjP1k14J6^j;R9;?kZKT`C6}D>f&~%2O&TBdeJ5}sUF-r#5u!y>Yv!;ut-v~qm5m7`Y(Hob`fS64zA)Y0kBbF0QL^H9HSWT=U*5Pi5 zO~htmE3u8(LF^><5bqPGh-;)urjps@67ogz4f0*`6i#`*Cch;wkw1`E$REkyannU4 zibk=xySE$e-W`I*I?+@#3onr`#7p0Y@Y2~0++j=L)ubTYNt;fU;4a!~+&w$M9Sups z{nOOP^V9Q#8Uy59w`j}Q@_rRv$|p1!wa0ucx|M7hTVYz#9rKQV^QvGK+uIbqo~>qk zbY{D-UD=$5$G3yeo^>>ME10J#n?h1_1fVduNcDdb9hX#bSk)h2ea=lE)U zYyV7e(N#9m)M>9@*01N-No+KU#>|_ zX7{o$8w~A37}XbXIiZ<7z#as03y@#m&CqL}fp4x+YF!1S(GNtWu}9c>2hP?mc49 zvY)V@0=Wyw-9YYH$)0B~u%7|B7s!1;?$-}3Ey};@*1B+St=x^tw+1HP0g3yKyh`>1 zdlkoA_A+|~$OAwgY-WFCe**FlkcahoIcW*(@9Yhe?<)2>`v?0c`xlU}0QoAAuL1e` zD)w*oCTHUCj2(xyBS5|hGtFurd;X`U^wt zow!z98?1L+YtE1J=K{DuE{MbPhWCN|0LWuNVgOD6c@oG|Yq=0Elndj+xwafGlL2`e zNX+i%Kz;$_MIgU4N(6Q;0Z)}U8<)u0IR}T+fDeKE7|63gVyMpFst$0e?s?!xcpj+F z8{9`-Wy}t_O!rY-{W6ZW(p%K#d(Py#&wS!OW7FemqdjNx-Dl1jXHM37pH%EVdcioF zJ0yMRghD`b;0O!U4i@xPumh~rEw$2#MO5%_XvXP$@RnWi|fVp=K64bf&2!@ zZ-K2JDl#$=nofDmRULki$XpM=X7oXhh5QiApZpN29P%a5rEKb?4NOCgUdkP%EDdK z{ePW<-@jAEXdk&>WrkbkCWUKF{~@XWb!CQI;Uew>+e=n)pAc z%y7F5ce6X5+hcx%+sEw(!~+s=Y7a;RWVv5u#wf>Rc}@OR?hV6KU*lc}Bm+{Lxg*@0 zfLZ_wyepP)@490NQfibwu2`~sq`&X2wJPqo=d@O%lpCj0N=6T+;w_zRAfH)4e@Lf z_bs4+#+j}_!r{XFid(rdcZK`ec=%QBNA4#;L4bk*wOMI8!~MejienfG0ThOxJxcq_ zc+L$#p`PdPCVj)`@K~PWaqiy4WAD!TRcL-51bF-L-{a3 z(STwA#o~C%x8oy>c#7fxS#dn=63@qBM0hKp_*tq&dz|k0O|^;TO+Ov zx=BvQ(Sd)6ck+!q@DKAd0AZGk0Aa1@1gIQP<*n$zKj!uWxFCbQo6!gIpR}Cd)qUK+ zkeHl|Lji7;uqCG8?t^4olBen9K0PP=Y&Wf9uh039Xt~-m@7La9$8CfE*51O;b(1Q+ z#n%5#dy9-03HbSLT6n1iL->E&-oh_()2i^&a=LnH{%_h__@!=Qxc$zf8+Z5Z;P#f} zuK$1ATmIQ{!Y}7n;LObj3pT;(z}-Zt$&Q3XqpjrL9+R{bcfp=tecQ&oro5itYl_~i zDEtO~Bfp7%fq#+T%x~eh^4s|B{0{ylekZ?+-_7p<)B{j2Kz#u915^WO0H8sDYTE$9 zMq3AH1fWrX>H&=f+&hjY7|-0t@7K>Utt#K--{Ri}GzrjBKwAL44(MB;OhB~)$_`Ws zQ2l`dpcVtQAE;A6eFHRox0`+6<7Rte)p13cV-s86o{8}%J*Ru?7mkd%9ewzZJ;(dj zD0elN+;Pb{&n5k9l>2lQ@LzZ?c|adMx%(YdzwsO&s6&QLKQxurEmM;3c=QjR^SD$s z91q%PZHc(!^iQ7CLu!;1eA=pWQ-wQD|K>S8tVXGFu{>(3dpf# z=aO-_Q{FW)+<(yWjtR5S(sMxr24>{#F$?~l;}dmhdgEvzNQg2;Zxn)sHbRIHDufB) zLR+Do5FxY|A^}YX{E7jZ3TPUj2LVk7grkZRP$M7!^zcR@+FeT)tU|nyKuk8Z6YRK} zjBp9e_zUP!K(hfoflHJ4mpS_3WykgR9@^MK$irqJbOiK>r=%LIHGHKAOnH2F3O z6@VUV5~=__?&?4gx(Yp9Rb!z$;Hoj2i7UTCFC%rBrT^({8z9sO16`G2VSrH?Mo->x z{@DE15yCKGBo5?4oiJR$Mlu)BQ-J2-KrW0Ha7A}7pr-*X(WRUMhbt@z6O7?a1T_Cv zG#91_58gcy7N!dr3?0w{y=itt{KLZI_nQX`Glf~gY~cw&3jr+xv>4Dc`sjgAI&USH z9#yks!D6VMv3EcW2? zzOYx=XM6yy1+>onjm!J3m3Z%1UlCq2MD;454NU@eCmUUhLc&|ZQH+!DHeM7$o3ON+ zg?I6y5PAVG3bjRDy*Hl_PP+w$TT!sUHX8za*AVCnIu_Vq;S=F&1Bg$BbHaJyg7BH} zx$uQ>QTS5$3eZ+S+W>6`v;)vffbht70on}+JIK8ogl{}Rd@uZ9tZoQb4IuV;fp{6v zE3VZI^s1{>ra<`H;Ql6{{T}W`^1h23p23TpC}7S-oX{U=5^*+v5Odysup+j=EQzYY z_#uOFbFkPFFKz)ke9!upOUpz*)1?)SrT<*!5QD@J7d9g9BEi_a)-1L(2ji#UXJK&s zMn#B;*kr}_Vx$-)MvF0GtQaR+#dtA6v;lep&=Ejy0(uJ&cKGiAItuu`1N0uC_W^yd zQM9`O5>v!fG0iYpG1GwPm=~gxfIbFv#%;2nculrQ?1X_5%K#ns0%i1`nFX=h_!#Ry z2-jnbZ>%PPUZ{GAy$q;&0y@__P}*PQ=D8ju#um34lHYbPmvYZ0zD>af-{>F97=H zwy}#&gE8#UKD%Y?;tcUIOyQ2Im-x6i6VT^?zR-VcY?mNDDL#EaYZvE>y0}2ZrhXC7 zmw>Rwe*Lf3E3}C(yzZJg|FNxoaKZuvbE80*K<6DUl?4=8`20)PqxDhQ}xpxOWxVwf})y3vyD=Gu}c zrdsk1g|HMEe201YjxbD`iqZEj`xuAcf%=K8kYY}}r0hT(8%Op=*ut{RBqYMT|8w^J4OXmj! zSjJl>x&fHr0wDH|^B91>mIp13|7x?Ahb=PB z0KYOrB>|NTR0>e3K&1hd4patESa?|*ESpU2T@9R;EpBtQ>@cL0?UhcR*IcP0mr@qL zV(|AWP&r=7ykSV@h~-V=15_^H7iwJJSTwPUuU9nhTaFo``2eVnO_t+8<+~O0wB=(% zF+VgEv%sa8XAH$G!~t2)TF3=hE?B;B%jR>JY>Exp810=@p`o0EE#F$M8H|5txn%j? z@`L5F<%;F1tG45&o)bK46b_{TuWgF*M0Ooivt6sNXc!FlG`5pVV0#ZgXKO3%TCEA8TKe8 zN_NR1B}vIrij*p)N$FCCghg5d)B`{b0BRsm*boK-g$-c{P(y(l22|Zf$zzXFp48D4 zX{2LPkyH%Sa4+X0fg0P0S2~P@j2Z`&(^wWWGBVsr-?4u1_RZ_V2tC0Wr4OE==@%Xn z^c6Gc7E*TuogP4q@S@Wj=gdLs0BMlHKOW1dCJB#aw86jsFlmG#)YH;%mqFGW9F8(L z9HUQM+BQNOFX2_al~RK=L7E8Ec%T}9nt+3(G)2M-=X-&|M<=;TTM`&_9|mgjt@tQC zD$T@Czr)<5S<-C4?>kXbUGY(xE9v($H)(;iP+BD6iRLt*9t3JSP!AdLG0daK((_W2 zOCO~bE`4mgW9V2oq0(9j*Jd|J>!kJ425FgS^e5?}X z9qnleH%B)~9|HAslZ3tOd;|V~Po)cn`kgb>55EqA)$cQ$3{nel8mF&#-akVcx^I5w#&H3VWsSlljLN;FPBj-0<{@yoSY`7yEJYKP`huZWpb`DGVJKK-cma` zUoOG~?od0qSjH;74XEudwUf)`&i7M0xr^LY?k0B!Y6nm+0kspTU547}%t|dlu94jn zNZB=kr1oK*lVc5Y*`SZz*V3`2zjJDN**oO%VXrRQihC8=VhP{0Cf-md}my2~HDu~DAjktA$UkqM;L4MH%|9e2akKZ=DYeiVzW{hDwP#@eD!cKY5KZLMX-Urk%ppF|t=qewS z@x<`oSA_q~_8YxBCCKl{@40M3#;-t}2kPWMI5;Vv$96BDl26MY${)!e%V*@X@+b1A z@;RWe#$gNm2q(}_+NCtKp}r)*v17f`Z(-)UZ9}9a`}P+ z`B#JO-+;nX0#{ln|ADRI-`}6`*n~nT2unpFf%>9Jp@6z*NF@+^3IX$^aE48MY1jmP z20H@c6T=Z;I}bG4EL}`1EnG~0jU54v6Y0bF8sma`{C-9R);%Ra2~>iVV5N-`g0u24 zC0tBU+5z<~P~QP{38?RZ`T?lRKwSaqDo}W;fSuM)8I+Hp=5Zm z=%kbzSd;j}ybW%$45kIF~|H}35P+5|M^$sZNt4PIp|(8MjJRstH7Nto&# zu0@%wOaYn%8o3fkWxDe4{j~buW_i=P$Ze~#&G-PV0o}s=jpY`ta9-&5DEkb#VYpg0Df@x;b<6FL@~R=X!&q)K z&RVeCUc+*uTN@eV*%!G0DJOvrY*O$; zg6}FUD`(v$NjgZ+-Q2gQa!$dupLNQ4<%05=^11Sba#8tG`3mSZK!*Sw3UnCI;Xty&SlZ``Yl(XQ?fG}sXVp;88HcgKf!779ZB<;3U8S~DBh>aPW+EBr6rfXqPFtl$ zt1)V<8V7Vb&>29F0D7cez3q%$O~TSv@s)TxiIZv?DlpnK)pRvO%~Z2`jmK}gx%%aR z&H*|b=q#Xz#zzbEkG2o1R;vsW z)j${CG8wh2+6TWFpmtNct3A}7YA>}n&_zJwJF(zPf$ju!*&3o+?S~slC#w$-)r}K@ zF2{PR16`>TuKiCKdBhfxEf!)=3=6tMz*DE~^u7oS}|2&EKr}tK-!1YJ)mK zov2PyC#zG`sp>TKL3O(Nkm^($RZt&RXQ+>;kE)NUkE=7)S?X-{381Th#)It)bQhqz z0^JSh?m+hdx+l=RfW`yu19V@Y`vKh_=o+9O0D1t>1A!g{^kA&EwLlL6dMMDtfUdhe zIJ}+I&TvwluaDZb(Q|ut{75X zt8d>GN2(k2&y621=<4nWQr)7b89%n`1B@R#^;x^|m3#D^yW5iLe*Kf(_?ZWFX-_Pv zzM^ODi6+(8^lH07AH5TYeKu^}+-k%Y!N!s0ZsA(Dw zo=qBdX49IqmOwwKN4^|ARP)!`nS3{B0a~CIqy=kjv=A*+3)8|i>@yw$+6i(EV9FxLzG6b)Bj z)?k9uv&wc$xr#9Cl zYfowOj9%l0x>2=QwB3Sxo?C=t$U0X~t2STL-R-Nj&Dwm^lKx%m2M?GMGN8fOj>Ya? zb^NLkV!wfXML%to$!Iun{i5N{&JCy) zbynLz+3_339QvG{rESr+;%-bJFdmy-yO|sTqKC1c4Q@N7w*tK#6TRJTs_pc6=Pfl# zy*srW04Y)QBDwM@qKt&Mo!$9M1^kGKqEIe~Y1{Lu2T=MbeY{ok?3V2sW8Slv00`I@rAJ1my%d7CVi9g|NHXf&W zV{o=K8>cyQaf&nFsVqWR?lGP^`-hJ-b_%&w%kr@uSH?QjKdoUrsB;5Gx5fOx!8(EXpd;i zwN2U!+KX7ud$a@E$J$rgx7sD`vUXK-{?x+K!ncLJMN*5D7N57c-_E`@zTw^* z)&}ed*cq@pU~jZgupc)t(SQc0j*e7sE;IP2qfg=M)2aXAx7C1f7 z83=(h0v`>0JaBp7k-$HL0)z5`It6tO>KfENsAo{`pm9NZ(3+slLHmPV4LTb1e$cU? z6G7hx-3*q3BZAX{y9M_M?iJi8xLpK@bs^(I8bT(9Ob(eEG9%>CkjF!2g**{5 zCuB{?>mkQNz6$v}6om$cMuaAWriT`URyjjEhjtC^7TP1US7@Kmk)e--&Iz3#x*&8> z=rf^Bp&LVA2;CmKKlHuOQ=#WVzYe__Mui22Il|Jy^1=p%4GWtUwkT|QSX0=_u+?E} z!?uKN3)>O4Gi-O*-mqg~Uxxi1?iU^r-ab4sJUYA}ymNTB@E+m4!~2H!51$hLaQO1@ zrtp=K&h*Hl$gYvyBYQ^nj_e!RKk|XdQIYkLVM%6}*i<%HMDQaregHaDfHAiiX+8eb$>Ojm` zVa(!~%`wMf&c*x^^IOdIm_K7~#N3P}Vo@v|YmVh&h1jszwy_bhk+IRSv9Z=zTdX5C zB{n@aGd4T6bF4G=>DXnl2V*~sy%E<6ez>JML)QdvPDc9gn*Z_k-1B<*hBOA=dWRC~J&0&g!rxTT`v+ z)=X=KwTE?}b+C1c^+mkt#hrKtCh+h!DCVq4Lq4-zg zUypw?{+;;u;*Z6jjQ=qHvTdsELEBv0 zv$p4LO}3S`^)}~5+iu%F+sn3tw&S+*w$E)BZC}~0Co+jzVqjvM#IVG+iL(>+#Px|U zCcc*VZsJFYXA{ra&345eXb-i=+0*TL_6mEIy^FoOy~bW^A8uc4UuA#6zQw-XzSF+P z{)+u|`uz&9`IU*c6j$%hAM}?!x(Z?~&G0N!};~4Ll?3m`5?r=KhJJvh4 zISxABa~yM=bbRPI$@R(OlHW=`o&0g~ zCn@%n+?0+fg(=SGQZ}T#kg_G!oa&R>D%C%AZ0gk1$5Usf&PshEbwTRE)HhR4q@GUw zIQ5g%^QoVwUQE4``bQd_rlbX=bxRwaHY4rHw3TV=(hjCwNc$q~tF&*@E~Q;g`!VfW z+HdJfdW&@5bied~^q};R^r-aMbi9RXdUkq;^p5ET={?g2q>oM?>r8J*pP2r7`tkIW z=^v(_Nxzn1&FGL(lhK$lBjd4*nHf)H%*~jWp=T`0*qpH~GRaITlgsqY^vev)49@JHIViI>b6Dnx%*M1xtOv6m%4*D-lQl1Ee%6AlwOKo|c4h6&+MnGjyKQzvc2st3cCYLq z+4b4uvL|Fu&YqV2NcQ8|v$N-9&&!^l{bKe9*%z~K{ZlbEle0HxU(U-pZ|A&|b2R6@oDXv@=KP%VYtHqY zzjAKolDTv)o7*baKQ|~hBsV-aA~z~GCO0lOC$}_rZ0-}ei*vW;zLxuL?wQG*cXcRRkHPv*<{3HkQ?b{^Wefe~;E-YodG;QN9r z1wR&CEBLM8kAfS8rb55Mz`{0#VTElABMKu6ZH4KDS%tZU9SaK!iwnCI_AKmE*spMM z;iH8!3!f;QQ@FJ7xx(dzO@%uO4;Q{x_(tKIg=Y)DDRf>cyj*y-sCUuOqPn7yMfF9? zi?$V=C^}vAanaeLb48yOT`c;#=(}Q6%oKCQVzE@L6l=u+#chk*7e^Pz6(BbD4tO~uUIc$SiHD+L-DTSy~QsVA1nzhi7JUHv6k3M zN=rtRj4m1LENLj2R5G<>dP!r+jFM#~%S)O|R+p?TSzofTWJk%qk^?1&OI|B^qvS-% z>5`91&Xim(`LpEjQd22eDwk@dKBc~;QKiYHX{DK^*`*6hn@d-ft}WeAx~ueP>HDR} zOHY-4RC>1bTg0e+r&y+1KTU)lF?1i!|W!uYM zDmz|wzU*Sz*Ja<8T`Bvq>{{8c-n#o?f0=o>ShTyr{f;`D5iz zmCr9-S^iD=rSi+=KbBuB|E>IwiWU{V6@C?g6~PrD6=4-I z70DH86`2(|6?qi}6-5R6JHOvtnVzGZoKPJXf)y;)ROM6b_@?4g#SayKRH90zlB*Oe<;vET0hPg(p_OebBP#PMo!u)RtXx?6 zd}UMRs>(H$TPqJ#zFPT4R+m8d^23YDv}hs)JP@SAAdgOEp+0HjU%Suu z@pwPJzr3FR#j7`IUeb!B)k*7;#7UJ&rX+JxZIU&~opdYdVbYtV_emdvs%myq4tOINU>;@bGU;r$D2yhxu3$Oxg00+PcI1BIqLV$Ka1keTe8_);10O$u? z2HXQY20R121iS-$0DJ;`0kVGu&H^q5E(IM4z!IPU zC<2Os7 z$)LHQ1)#;CC7|`7Lm&Vs83Y9(Kxoi05C)V6!hr~&LeMEThzsI@1RxPe0+NE{ASFlz zQiJ@UtDtYm)04L)W0Qr+b;(`HkCI;}zf1m*{0aOccm#M9cno+Pcp`W*I1U^SUI_jJ z{3m!hcoldJ7z92BP6elfGr%NpE|>zQfw^ElSPIsGjo?~v9oPvz3$6$Iz+vz;@Lli& zF#9q1Dfk`u1Nbu}4l)fg12P*j53&&Q2jox4a>#zjK}Zq=1OY>!5IE!nBmmL3=k*84XKCtAnlL{q!ZE&`3Le0@)Gg}@(wx>IsrNvIu$w{ zIukkvIv=_Sx&)d4T>;$#-4FeX4Lt-+f`XtBC=7~#qM=8j$Dtgk7TOBE4;uzs3Io7M zFfq&y^TPbFMpzIQf%U;I!Y;$E!EVC-f!%?z6gUmeh3nu3xCw57*TL;@wiE7$cftRL_rWj1FT=0F zZ^CcG@51lHUmyk|enJdIj77vD<{}m$Rv|Vawjy>Q4k4fj1OkmnM^F%S1QWqVR3Hop z6QUMjMfeZ_L=&PJ(Sztk#1Iz|cM$gw4-k(KUy#2de?u-sE<>(Fu12myCL(tt4Ntvn(xVzsQB*hTJSv9jM_ooeMZH6PLVZR5fF6h*g&vQdh@Om&L(fFd zLC-@kL@!3KL~lgzLnonu=wvhmjYhMNp--Sw(O7ggnu#t!3(z981T96&(H689?L(hK z2hb7p4fIR&8}yeWLywF+GU>>SBMUIu7&0agBg9BCDvTKuz%*f6Fm0GHrW4bH>BU^Y zT*5rYJjJ}gyvDr4e87Chd`lUSGALzm%G8v#DLYe;DP<|uDZ!M!lxOUePpLnrjz}Gq zIwo~o>crG3sqv|cQS6WY6Z`uXy&)D(UiP$OFcx)0DjXj3NVAHVaSUi@Cm0=ZF6;^}QVfENL ztOM)9y0KC04eSFf`!V(@_8Imi_D%W^=|85ANS~d)D1Cc6EIl4NmqbaA>g{VQ%5ZX9kRZVE0Q_d9MDZV4^{w;Z<$w-&bnw-J|$E5udc8gZ9!cX3Z} z&vCDCZ*iY--|z$QgYbj#rsclZzZPZ>XC49OUi5udR*BRQiW!<5mI@ps0Bj7u3; zGj3(v&bXU#KjSN5G+`=X5n%}-fv|$Gny`+LNZ3p`NJt`p2oM6CfFc|v94BB16hZ-^ zme5LIpC>#fe9au3`D^BHnG-T6XHLzWo;f3PNoGRkicDcX8+IKnv2NMU3$NQ_(tmBC=J7=;WTL&nfC&M>YqhcFj0*D$v* zw=;J!_c9MKlbKK^oQYx{WgchJnNp^XSE@IJ^=bpC{yrcw$~TuZpMV8F{t5I-Z@^#k<10$-B+F%X`Fo z!h6np$@|V9$REz1$e+re&Y#Jj$6vr-%wNJ!3=>JdFD8&>v5*}<~x zGG$p~*^RO<;z{Be;@RSP;sxSm;`QQ<;w|Fs;$7lB;$$&Yj1Z&6$HXVZ`QlP>xmYe% ziZx=L*dR8FJ>n*DP~0N!6kitK5dS0oSNu@?MEqR*Qv6*qLc*RYnIoAmStMB^Nsz3N ztd^{kBuX|*wn<1yd(X|nXVG);<=5~SJE zTq#vbmzJ=l0;x<|Ej39kQk&EzbxXa{bJB>kUwT9OkMv*Zed#mlOX(Zwd+7(+5ZPqe zI@vbaPT3yWJ{d%YlpT>Bm!-*YGJ-5iCXgv*)v_9yS!R{lWnP(I)+lS1waVIM7iHh& z3*`sp5IIIpm$T#?d7=E2yhJXLi{xyHTqak@ZSpg6m)tF{m!Fe2$eZNN@>Y4fJS@Lg zF{ol*#h!|cit-9?#ife(im{3~#WckX#Vo~Q#Y)8*#d^g?#TLaj#SX zmDoydWlg2M(pl-Qtgj4KMk>21dn$V?W0e;xFIC>Hd{Ftg@>%7}%GatKbkC#vVFSE@Ivcd8GnPpU7cC!Jn>8h)B}T6a2p`hj}5dVzYU z`k*>V4N`;EN7Ps~UY)5XsdLn1HC0Vl7pr+{AzNLhE?3LcE_G1drVgt+)#ufH>Wk`2 z>ig

    i6o;>Tj9>n!%c(n&Fy}nmEmT%~H)W%}UK0%_hxO%?{0O&0Y;aldOSi;F>f| zh9*mst)Xfd8n%X`IjyPHxHKM(PZQ8IX~LRLO^>Emb3xOuxutok9iSbg9in9q(~i`R z){fPV*G|&LX{TwIYgcL4XxC{sXg6uMYPV~5YWHaOX%A@AwIy1c_Pq9O)#R$gDnu2d zN>Qb&GE|wWYO7pTfvTpema4X@a8}+f{d~9#lQj4c3j-P1H@%#p`D3 z=IG|>7UwTUD93EUDw^zeXgEdomh>oF08Jt?x}vJAEBSGPtdQ>uhy^CZ`JS9 z|D`{y2kOCks2;9Q)8q66JyD;dC+o}gRr(seS#Q;!(X-F$J$kRcLm$!i>#yl=>Tm1s z>mTZ$=%4Ao7=AWPH_SB5G0ZnCGAuD97*-fo8`c>T4Vw*M1I&OhpbSS0#|8yEN^QPu~&BvP0#zDrB#!<#!jbn}Dj1!Er zjC0w>1;)k3rN#u~Uq-m`i1D~F#fURz7_*EdW4^J-C^S|Ybw-2HWV9HaMz_&x^cx$D zUB+joA51@+#+b&LCYmOj=9(6nmY5Put4wQ68%!HbFjJ~2%am;*n`kDc>7k~!B*H8ad?bH2IATx{lu%NEu6tbfrtW>+$GR_d z-)#eIKib%%ZDVcYZIf(qws_k*+b-LF+d*5B4Qzwi5H^%8!E*-qJnwlZ6}O>R@$ zs%(0j(Pp-JZJoBKws*D_A&Nx_R03C_UZN+_C)($JHVc7huRT#v^~v^ zvlHw@dybuKKWTT^uR8`fhB-z!COP8Sj^7=#9P=Fu9e+5MIyO4?IgU9njx-0(L2wWq zISz`0?qE4MjzUMJL+#KybPm14=%{sA9X5x<;c|E!UdKhp+cOi-tUZG~Q+TH8Oxu~e z&L5p4oTHp$oWD7zI_Eg&ITtt=Isb4jb#8EOa&C3*aPD^Qb*4IVoHQq!>CAH$IZruD zoP1}c)8w=}oldvY>uhqiINO|IXVe*UUU%Md-f`Y_zH+{Iesq3u4R8%|4RQVKn(az( zt#c*1HoLaDcDfF_l3XAc#07UDUFoh&7s-|DqPv)`JXgM}%%yg@TppLt6>v4VT3l_e zu&dM6-o&}!Go^76;o;@D+e$PQqk_Y60c;FtC=ctG3VR%@cJWsx- z$W!d$d4wL3N8*usH96|GfTH{hRtP-k-cfy~Dk~ zcz^Yd^^WsS@Xqqi^)B!(_Ad1%c>nUky+^#qy(wOtm*CCvlDzreBCpsh_bS=m(_Wod z?=^bOUa$9@x5L}x?e$*pUh>}b-uB-0KJY&BzV^QJe(-+s4e^cejq;80P4G?jP4!Ll zt@G{j9r6Ku$v&tL;ludSd^jJ$NAzX;n7$I9#;5Zcd?ug8XY-x$o%PlG&iNXAeZGsn zOTH_&+xPT`TipRDZk!-#_#d_`~iQnzt!LF5Bo3qulgVOpZZ_; zU;F>_fAoLxe+!HZOb$#9Ob^Tq%n8g3tO%?MtPN}kh}i*6z!7i-JON)I5NHat1lj`O zz?H!Dz^%ZYz`el3z>~o9z^lNUhLH`E8WuI|YydW-HqaW18_F8Q4do4|8`KTjhG0Xa zp}*l$!{vsn4G$U~H#}>2+3>pIZR6m^S&e@-CNwTM0wuqoIQYzuY;{|@#AF9t6KZwBu*4{M&& zyt;XF^S0)l&AXdH&BvNC&1ucJWlsa9$FPz8(JUQ9@-f?62gXXq2f?kND{J#yrFZU+o8vyr>*QU zty5a3w(e{_*m}5?)>_b7)M{*Xv^rb+TW_`AZu_b2m$uPui`!PVt!@LhA=}Vx%(jzl z#cj21t~Phu`L-)<*V+fR4{smYzO;Q!`?_{``-%3Hc1gRcUELmRkFfXe1?q zjo>51NKS+jp+)i|(ug(Ui=2!2BMp&gq&spx5{vXlE=TT1K1K&e*;AtN(ch!9qI07Q zqKl(TqsyWzqidoEqKBe@C@2b!!lKCNk?8SgN;EB+9?gmJqw=UD8j4jCA&Q-s-&5d9U+f=abI2o&R-y>ipXEL)XBrDP1eO4s{iFm2{PL zNxD>B)m=4R<}NF{%hu)ZYUyh03U_sO^>tnBy4-cG>qhtB?&aO+?zHaoZb~=1JHNZA zySTfwTih+}uIN^FS9RC+8hdMd>w8;!J9?wN-M!~~W4-;o|MuSRec1b?_j&Kj-q*cv z`zG}z_NDfT`zrhNebzpApSQ2MFWlGNcfIdk-^0GgeNX!cAN#)aeTxl<4T=qpjf#zl z{T3S^n--fMn-N@Rj&oM3k^Z)n4!~X-zfU}VR diff --git a/Flash Chat iOS13/Controllers/ChatViewController.swift b/Flash Chat iOS13/Controllers/ChatViewController.swift index fb4375219..266a41727 100644 --- a/Flash Chat iOS13/Controllers/ChatViewController.swift +++ b/Flash Chat iOS13/Controllers/ChatViewController.swift @@ -13,7 +13,7 @@ import FirebaseFirestore class ChatViewController: UIViewController { - + @IBOutlet weak var tableView: UITableView! @IBOutlet weak var messageTextfield: UITextField! @@ -31,63 +31,65 @@ class ChatViewController: UIViewController { loadMessages() } func loadMessages() { - + db.collection(K.FStore.collectionName) .order(by: K.FStore.dateField) .addSnapshotListener { querySnapshot, err in - if let err = err{ - print("smth wrong \(err)") - }else { - - self.messages = [] - //or//self.tableView.clearsContextBeforeDrawing - if let snapshotDocumets = querySnapshot?.documents { - for doc in snapshotDocumets{ - let data = doc.data() - print(doc.data()) - if let messageSender = data[K.FStore.senderField] as? String, let messageBody = data[K.FStore.bodyField] as? String { - let newMessage = Message(sender: messageSender, body: messageBody) - self.messages.append(newMessage) - - DispatchQueue.main.async { - self.tableView.reloadData() + if let err = err{ + print("smth wrong \(err)") + }else { + + self.messages = [] + //or//self.tableView.clearsContextBeforeDrawing + if let snapshotDocumets = querySnapshot?.documents { + for doc in snapshotDocumets{ + let data = doc.data() + print(doc.data()) + if let messageSender = data[K.FStore.senderField] as? String, let messageBody = data[K.FStore.bodyField] as? String { + let newMessage = Message(sender: messageSender, body: messageBody) + self.messages.append(newMessage) + + DispatchQueue.main.async { + self.tableView.reloadData() + let indexPath = IndexPath(row: self.messages.count - 1,section: 0) + self.tableView.scrollToRow(at: indexPath, at: .top, animated: true) + } } } - } } } - } } @IBAction func sendPressed(_ sender: UIButton) { if let messageBody = messageTextfield.text, let messageSender = Auth.auth().currentUser?.email { db.collection(K.FStore.collectionName).addDocument(data: [ - K.FStore.senderField: messageSender, - K.FStore.bodyField: messageBody, - K.FStore.dateField: Date().timeIntervalSince1970]) { err in - if let err = err { - print("trouble in data sender \(err)") - }else{ - print("bebra deployed to space") - - DispatchQueue.main.async { - self.loadMessages() + K.FStore.senderField: messageSender, + K.FStore.bodyField: messageBody, + K.FStore.dateField: Date().timeIntervalSince1970]) { err in + if let err = err { + print("trouble in data sender \(err)") + }else{ + print("bebra deployed to space") + self.messageTextfield.text = "" + + DispatchQueue.main.async { + self.loadMessages() + } } } - } } } @IBAction func logOutPressed(_ sender: UIBarButtonItem) { - do { - try Auth.auth().signOut() - navigationController?.popToRootViewController(animated: true) - } catch let signOutError as NSError { - print("Error signing out: %@", signOutError) - } - + do { + try Auth.auth().signOut() + navigationController?.popToRootViewController(animated: true) + } catch let signOutError as NSError { + print("Error signing out: %@", signOutError) + } + } - + } extension ChatViewController: UITableViewDataSource { func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { @@ -95,12 +97,24 @@ extension ChatViewController: UITableViewDataSource { } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let message = messages[indexPath.row] let cell = tableView.dequeueReusableCell(withIdentifier: K.cellIdentifier, for: indexPath) - as! MessageCell - cell.label.text = messages[indexPath.row].body + as! MessageCell + cell.label.text = message.body + + if message.sender == Auth.auth().currentUser?.email { + cell.leftImageView.isHidden = true + cell.avatarImageView.isHidden = false + + }else { + cell.leftImageView.isHidden = false + cell.avatarImageView.isHidden = true + + } + return cell } - + } diff --git a/Flash Chat iOS13/Controllers/LoginViewController.swift b/Flash Chat iOS13/Controllers/LoginViewController.swift index 2891d65c9..14febfd5e 100644 --- a/Flash Chat iOS13/Controllers/LoginViewController.swift +++ b/Flash Chat iOS13/Controllers/LoginViewController.swift @@ -11,27 +11,27 @@ import FirebaseAuth import FirebaseCore class LoginViewController: UIViewController { - + @IBAction func accountSwith(_ sender: UISegmentedControl) { emailTextfield.text = "2@23g.com" passwordTextfield.text = "werwer123" print(sender) } - + @IBOutlet weak var emailTextfield: UITextField! @IBOutlet weak var passwordTextfield: UITextField! - + @IBAction func loginPressed(_ sender: UIButton) { if let email = emailTextfield.text, let password = passwordTextfield.text{ - Auth.auth().signIn(withEmail: email, password: password) { authResult, error in - if let e = error { - print(e) - } else { - self.performSegue(withIdentifier: K.loginSegue, sender: self) + Auth.auth().signIn(withEmail: email, password: password) { authResult, error in + if let e = error { + print(e) + } else { + self.performSegue(withIdentifier: K.loginSegue, sender: self) + } + } - } } } -} diff --git a/Flash Chat iOS13/Controllers/RegisterViewController.swift b/Flash Chat iOS13/Controllers/RegisterViewController.swift index 68ebaa09e..8e93fe4e9 100644 --- a/Flash Chat iOS13/Controllers/RegisterViewController.swift +++ b/Flash Chat iOS13/Controllers/RegisterViewController.swift @@ -11,21 +11,21 @@ import FirebaseCore import FirebaseAuth class RegisterViewController: UIViewController { - + @IBOutlet weak var emailTextfield: UITextField! @IBOutlet weak var passwordTextfield: UITextField! @IBAction func registerPressed(_ sender: UIButton) { if let email = emailTextfield.text, let password = passwordTextfield.text { - Auth.auth().createUser(withEmail: email, password: password) { authResult, error in - if let e = error{ - print(e) - }else { - self.performSegue(withIdentifier: K.registerSegue, sender: self) - - - + Auth.auth().createUser(withEmail: email, password: password) { authResult, error in + if let e = error{ + print(e) + }else { + self.performSegue(withIdentifier: K.registerSegue, sender: self) + + + } } } diff --git a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard index 263a94496..224e1bebd 100644 --- a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard +++ b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard @@ -346,7 +346,7 @@ - + @@ -369,6 +369,11 @@ + + + + + @@ -384,7 +389,7 @@ - + diff --git a/Flash Chat iOS13/Views/MessageCell.swift b/Flash Chat iOS13/Views/MessageCell.swift index 85d2f0c47..c20a870fe 100644 --- a/Flash Chat iOS13/Views/MessageCell.swift +++ b/Flash Chat iOS13/Views/MessageCell.swift @@ -14,9 +14,10 @@ class MessageCell: UITableViewCell { @IBOutlet weak var messageBubble: UIView! @IBOutlet weak var label: UILabel! @IBOutlet weak var avatarImageView: UIImageView! + @IBOutlet weak var leftImageView: UIImageView! override func awakeFromNib() { super.awakeFromNib() - messageBubbles.layer.cornerRadius = messageBubble.frame.size.height / 5 + messageBubbles.layer.cornerRadius = messageBubble.frame.size.height / 2 } override func setSelected(_ selected: Bool, animated: Bool) { diff --git a/Flash Chat iOS13/Views/MessageCell.xib b/Flash Chat iOS13/Views/MessageCell.xib index 4eb243f83..c7c1c17f1 100644 --- a/Flash Chat iOS13/Views/MessageCell.xib +++ b/Flash Chat iOS13/Views/MessageCell.xib @@ -19,16 +19,23 @@ - + + + + + + + + - + - + - - - - - - - + + + + + + + @@ -65,6 +72,7 @@ + @@ -73,6 +81,7 @@ + From 1ff8e9cf7ce40880cbe8cc4f6e7032b92a45ec27 Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Wed, 17 Aug 2022 18:23:00 +0300 Subject: [PATCH 10/12] minor update --- .../UserInterfaceState.xcuserstate | Bin 60808 -> 58127 bytes .../Views/Base.lproj/Main.storyboard | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate b/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate index ab78c6f3e37ad61739ac5af574dd61e583013d38..14da3a6e021a08f55c928e7fa2b818e60fb628f6 100644 GIT binary patch literal 58127 zcmeEv2YeGp_Ww@VCarcw?_e+_K(MjoBAYZ^!C*>UD5f~Z79cQ|BiWPy$xb@yy%%h1 zAR)c?-W%x&>6P@}%m2-;R+h0%xg)>-eeQFYlaY33=S}&}YxCyqyoS0^v@tF1B>@Ro zAOaOcK@w!aHDl<~U?ds}*UubU9jRFuf?wrB8^aAVhKA=Y3f446y9(%}wN+kYa@oY- ziePPStk4UBBB&K*jn$1o6J6IuJVV~?b9;hekg@&O6(1B<;N=1H@j&jhU zXeO#ev(Rib2hBxQ=txwJ=Ajx?i-Kq&T8!#Z7&RahF?1X{9-V+rMCYON(FN#2bP>83 zU5TzjYf&>=k2a&5(Jkn1^dNc&J&YblPornhvuHbd1-*)1Lp#u0=xy{4`UriDzC+)m zAJC8JC-gJ=1yk(C2JVJ?;oi6p9)MGDDjto~un+rjI?loYJO&rxad4M4nL1y!>{8v@O$`M{0sh-2!s-msKiCw#2{YM zo%A66NPm(Z>CELj>dJ0`bPo<~P)9D%X zOnMQ$lwL-!q*u`vx{hw7o9Gt0m2RWg(d+5W^cH$6y_eoc@23yY2kArfVfqMtls-wH zrLWSr>Bsal`Z@iYeoudK#81VY;*a7_;?LqQ;;)h@Ns=rnk}4UJSL!MClKM*rNC!&8CBKv|Wk}i5 zA<|fBnlxRSAC+|bEFHT zE2OKW_0ksUM(I}RHt7-RQRy-1ap?)^N$Dl&W$6{^Rp~WphxDQJk@T_jiS)hngY={H zlk~Ini}b7XoAkT%hxDf`%91S0edNA!Ke@j=KprR$l9S}&@4hIbR+pkC)5k3VE75U7jJ&mTTppJYQZeuaJ+HSIVp8)$%d&vGOVMY4Yjv zS@PNPdGh)4Me@b+W%A|nRq|T7S>7OTlsC!O$=Ay_$T!M2$#=>3$@j|-%a6#<$kJ8KfjD z2PvbJY$Zn-qa3Upq8zFeD-)E7N{KQ_IYOyWW-66Row7u!SHenza+DHLqRJ}eSjAM1 zS58n)R!&h)Q%+aTQqES+Q_fc|P%cp}RW4JmQr0RDD~~HrD9QdLw{)urmHp^i{Tst2i~)D$&U9j&IR zKGmIQYAx=G!vUaf9Xx2o5vx2m_Px2yN6_o6pPpaG17uC1a_tc&0 zXX;Pt&o0B|b#-xdb#-%fclB`fboFxecJ*-$a1C`0a~qu9%Yo4pdRqI;l3cDIyN4b`{mb*+Ba~<@Ao9jB) zW3I`1Z^^EIT*K@AtT`#y^cI|Mz<$Bxoq3a{pm#(i|U%P&G{o?kzySTf$ zyScl&d$@bLd%1hN`?&kM2fBy34{(oir?@lSS?+*4+nwXib?3P&-Lu@Y-E-V?-Bs=* z-PP`S?izQkd!ak*Zg4MkFLNL3Hr>p<#(k>0#l6nG-o3%S(Y?vN*?qNpi+ij48u#_? z+uXOi?{MGezTf@0`w91x?(Oau-JiR^aDVCk%Kf$b8~3;F@7&+Je{lck{#6q+q+w0b zRIQ8FRqLkp)B0;!T0qOza|*BqHWc#(XQ3DY1e7jYd2^&YBy;&Yqx9nY4>Xn zXpd=+YtL&hXxp_nv^TXMwV$+~wO_PfwcoVgwLi2!wZF8#J%WdN+#b!-)zi(>&(q&C zz%$S@$TPw-(sPh!lqbdG^W=EOc#1sZJmWpZo(Y~(PnlKU z)U(X9(sP{W6weyZIi7PpmwGPqZ17y|xxsUz=U&f!o>x7ud0zLt;d#@u!}FHsZO=QN zcRlZUKJt9w`O@>1=LgS^oD!TJzASs$to(+|)O)Q9UM^pSe1o~dW) z0sT<@Fuh10r;pbs>LvOly+WU+*Xv=uK|e~5=uy2-TfbpR5knynbi1CE+tnr-jyz!dxy77kbrtyyPk@2zdiSf5r@FFkv5-;_N zUdbza6|d@bdEH*k>+$Md!|V0-_YUw5^bYbSc?Wxkc$2*&yy@NyZ>BfP8}Md(^St@q zBJVWsbnguBOmC%kuD9Ad&pY2+=WXyty{7jB?}^?u-c!A2de8En=RMzhvG)@16%|A4 zo9gOb6g+}17=l;mCiI*>xh!>Ya7DBd{*CFV(}vd6RY#*OLKmT{iA~ZXbQgMjgfF&T`*FWospLr zD9j6_Wcjl*Q!>*0fs~wryu1{Dc2S@pkeij`FZ5M;4~W+YPv=!frdLO&g`%N(b;0SO z#)V~}`UQ1CxKrgFo=C}VL)GN6(qObP9I1xlmKI-7-B?}a9Rx*lYZ}1}hz~{Erg{6c zQVoae=2b_E9jaB{-mUkn7A4&3v2tbFsHC*jqmowoGBV(6PFmXP)z0u{2!{zHuNE?e zEFmCd3pv6V;b7qq;ZRdI4by9OF}s@G%NnXF;o|73m86lMvtg*n1pp~~!I_BH#N{mlX9Ky#3pWDYim zn8{m(YGIyGBh(5(VZN|HSSW;qMZ#ipsF`jaZcZ{Mo3qSXbE$c$xz)Ud4@bWlHR0M| zD$t)8YD|syCAAz-P~{yNzgre=iqr&SSga^cD4D;ox_&`0TIC%OFWk1OvK33_h3jBU z%Yt<>6)+#iMZ!%D_6;yLp_YR>sU;8QWpP6|RNol2p9g?;PO~@~ZQ^a}-$`xO zTy)<1B3O`}-z^C*fU1)^sXD$uoLO8Un8L`7!qLJ?VU@62I7T?u9A+M19%v3XN0@Mf z0e3haKEs5Q%!7a>q`+sCnQF6!*vc)1fwNa(+2T+`L$H?5PqZjh*BFezf-bD*>lK=O zAWUR@c*|-y-c?UwtqUsPl)k#%+L6_Am3@&MXDo)1W_hPeI z9tpxkbZ=e9{(yf}QXo5X^=hT<_4L4~B!5=I@;+BMU+CE^oM(=17A`Q;I8){|Pphtj z$;*xMnw>$sM7UHKxpuAT+b&!oTq#^7tgW<}dp$7C8TMB`;oT;eO=@c7qfrn7eig2- zj;vS*#hZne*^|p!ug#cTHpOye*!49F>sxpkhulVCt1xoCuu0e~TrF%dGt5jg%M7d+ zt`V*kwh7mm*=CM82L8ed>TVCJ#VqqyOoG(}4iP|mNp-X_J{A0OmA7X_{d{Z6b}ii7 zt|M4mQQY>H)1F&}+k~FbeHbCmOxx6376vv2-E_*{CEUYD^=|XvX5n7*kljAB9i-=j z!b8HtRo=e92>7^7B4hb6jzI?CJV9u zwYat9u}9fIlE6d!w#FB~`vuYPKtgtU46njLE{pIGyH{kCMVYoToQZRa%6M&mcgzquo2V|@3 zYlF4cJj8g4#i8S%;^J{Uw17MQ0Ler7VsBr9%Ytec&`5MjeH|1V+(|L6fdyk_`X-cF z5}aDy2<)rAtdX;@PU%$CHvyvZVF7hcCk8FMmB0m(6X?XmJnvMTHS?ObTdL!y!p^m3 zv5lC|g)ipD*+*_9QVpErbKy&&1yoDx=T!TdZ-j5xnkDu#Ukcy1@FM#l4}JpRf>QId z@Qd)P@SE_v@Q3iH@R#tnImMi69$}W6WoEfqVNNrrUkw=N;=Wd>L=p)73Z$AdEKxrR zg#Jtr_nq84C6^HGv8kozbn#QIGFuMbHS1v)C z@1gaMB;Rezb}NzX#@h-_X1r0IDl~R+4i!LUez*Y?z|QpyXKXvueVo?sgCZ4M_NX@+ zD2&{I`k=n3A1DvUnzPM0=3G!6;Nl>zE}$VO*{p)aJ<6;$=UJi%V4n{nzq$cd3}>^p zZ01Tq>ww3Xxh-?1)PrmaagGD(!?4|#jLCneg(J{Gj`&8S%p*;|b7M40vxRkA`5)H{ zoN^f`D_%jstZA)a3_94Zz$tkcnkbCC1|5#ZqFj`R@=*aQL`7&E8jp(61T$#PHy4-- z&5*gsTx`~vOU!yRY&KkjO3)V)0epUQpKIv0Uue*?I<)=90TG5(!7_kx$gy_^mk6 zwoh?A4Aegm3+*545BE4@%MUN%@)~9xL`ltJ%aV+8%aY%W=B?mOvs)XxP}&4ihFhCm z6A4?;x1LK-J1w4v=A#8`&4|VGPzWumm|RvCY-~Xxp~b#mXYo-l>R`q*v*HFFItncZ zT^L1B6g8qI;b^qXTxKpeSC~fwuvcz`**O}mgn3$xj)56jWu60bbFp~|pO*o#?r`2+ zTn~Z+G+=9m!uNVmj`_G-T&z4&T^|j>HA}3*xc4f^8y81C7h7=8R>=6U^AX{7!jRNM zeR*}^n#HlnvIf%`ThL)F#ngf1N$7OGK2Jucpf%`Jbeg%^JjOiMG)=YvogoZ|PMnR- zF^_`|^fFI2FXCO`FtVEH;3Fo3`LeUF=hlIhQ@esUslF&2nH*d;wVF#mt0z@nACwzk zy);-{4=Po4UEK<&p8Tm5*7FPafGiBv)kcCKRzV4~^?d7IJN(9ob6J_+6oDriORAgd zYZjIPkf5`r!TB)8^)+0bwdeQ}bj3P!DY^_@ZXR!*V4i561YIfu`Mxj-jKIdE(3CP? zdeX3ANzm1S9bM1x=Vat$1^hXgpfB!Pz{XY!S_gW1Ooa!CtwRYQ+aT<0MjOpj%;Hzj z)o2Ua3VyI_(6wkAx(+@!pc~OmP_g5qDGAqD+Uwj_oeDG#Fywp0^?=fFn6E0XiEsnI zAiM-Ln%3e~;MD+CY5A1-PMxjyOu;-AJ{Ov6%nM*<;&LU<9{BL47A_CgG;#H}uzqPM z60YaIBb$mnq_+y+u1B|_+tD59PV+SLEc0CRJhS9QbPu{0`gR|>A3adnO0&Xhjd{9x zhI!_67;4^Hug4y^N6@2S?!sKQDz~;`Wj!;sIuvO^k8wR^w`Cm4PoS0P0rPBFe`n4p zU&uk3vSL1?byHV|Jm(- z9lc?Dq}mK%YiHV8BrWJo-WTq{+N<)j1M}x))qsO3J3A|_10Kb#RWEjy_PgkPVPrFU z&%CS|ePCYBmu{b(d;4tP(r)hp*b^a=U`Oh)u6+KE0xpPN^hSDIIuYuCfL ze1*P7-@wQ;n=R%#URlqWaRsZjtR~zL%wHG|N4dMGKR2QZtD`H*!}c0)3?9Mh=5r-_ zmemCAg$vgMHy z&jhD!)UpH2jTOs6Df2@XDzF!Kv0@AyhF}$02ba4FEnvdiHQPnI;~u*VfZchZ+Jbv> zv~cztAD#HkU9Pu|T79@aXjk1A_p=#k+o#(Mehco;X>hm7Zc4?#f(PPZAP4avoP-DC zAvhTiHLo$RHMg19nb(^)fE>gJaupAc#M~ovBYZ}gH<>qc@FW2R(06UvgU2w>Vqq}2 z7Q?rE58Z1VC9suufJoz-MB4a9gN4qn!<cVOahz+%R||E)n+94TGoRQc!O35#~M3xXiqFPi`1IU3du3+>;yTzA0Vs z)ouMS2aWRo>wcKclIHEvXW)UE=_4ggHu3xwQ z9n?0fl}|^#bo-#B!FyYCgHn45)SP_4x}n{Mbx?B!cO*rWxZ~>(i)b{ zjrm(zQbxC=rnWl1(tL@IFWd9goDNOMaIeqoHY}@yHUMj!1S$YJGN%K_~z* zPKTi*Ag(C{u}l$&Upft)fzCx6AYSPn^eB1)B9&f-2&MNxynTVbML%KH_PAlk5f^Yg zaIx$ClE*fTwZ1#+c@C}u!HVaa4>sc?&4>899Sr(yWNL&fn-OsHfX=!AI#akDlynZI z;({3Os10TMX}>nac#898`zhM z0pj(rJph9RJvlgD|E>;>_9M`y1TcTlr{Yg{+`1#0LN$xW2kRQ*P<3W@DF(x?880)R zX$IG$ z!qBG-{b|W#$FOSMz$*jwr!l5?bHie!z5Bu~$?8Zb8s;vSU{wVGKQ=P~MU7E_nMx)%sZc8ru zBEAM+3#w;5D2dyE_~f$q2$clu7gz>Z!Zpj*Hs7`tuydAO@T3)`-KH*w@BG&w+cvMerfai47&p zwJ-gkS==6+2(r~uw*~-&o9b#gkf%Z*Lun9n>u4hYgd2#^2dB+1;FtLN*p6Q`KR3T< z!7t-i%rDKKIPSXg-sVPQBxAR{2Bfne}TWmU*WIuH=s4v#$q1Y7+RC9ScSp!fnD(k0j}4_ z6!^B&4k9Yb9TBZNZ?LagZ|%K<3yrsW*YaK3+~ss;IW4FtErF+8)D(~nx^J~*n+gwkL^B1r= zY!|mZw7>D8{T=^-|HOZp-b1HRQG%aKhH=a7W1tuaHOoou;O0JyR1|LI$ z`8RCV?Oii%+6RyWX8~o$+tWgZ0}DyG@FE!rlnz4MNDArAV~OU0^$R>EH4>}?H`3Ce zDKLc1KkVAlh!0$#fX5b+##=tJCcGrIx&b&QXc}#`kMz|1a80*bwgCiykMk_aW|+q zZ~TgRkr0T67(V$#w5q?rx9q1uu1t-Dmxe$w0#8J7UVe4`QXV0cSlEI#DGS z%#zBCf<-C$(^KY^Pj=d0OeXX8PaqRX37N!@#*l|0ogrgAnIa4)N03s6yk;+kx-it0 zH@|yv9!&h=wxr;4!ZvAfl(R(eMR0#^Uc!yUj(8KUTR}HYlV+02Hrobd4w-9TNFE!q zl~SkZJhBJ^w@3}CB|$QuEFcR>h@tKb^w1dOJM_2AyM zhuzs7pH$rdJ?1xac}Pb+aLm>UX61uW0413Rzd$K2Rv>C4+)xr+8mx;!p#Y@5w;;GQ z1X^#kqgL3{xKj9bBUwdOlVixS#3YQN{tOLbXfQ*`3_*_$1b#(M0Q8?oP9i507muKe zfJV8rx{iP45l`T4W@rFIuzshlT$$p_PEXCrOwY_n_oewVGqW-v;v*$J&6n!S%FYgC z`2(40Ihko0JgO@_Ei*O8=gZ1T_xm&a*;yIBQAt^8IjMo1G$@tjONXmjK5qU)Tn9Oo zoCa&plKm~@REWojwd)MtE{2lgE%0Y&r{)CGp#nb-hD-NnK?~YmOi#Dg&HHm$7G z9DjD2&*#hVr}^OauC%gq($iaMU0~B18mHC13!U~0#x6BGGb_#S_h+Z)z+mL;N-M*k z*sn`$S_gDOD>KW_XR%!a{JdZLO6v-n*6=v3He;9pFv#Sz+KizOkh6DVnBmXJS-m>> z@Sm@!%o+FVh0dC8A?sqR{qX1Q)n4Ttu@Z2Z3Zs*ila-O3lL2`10qOMAfIllECnqi4 zmk9vM%*n9*Ph>Oac~>)(3OsM(xWy@y7?vwJG z=JD-98{yZH>p3TM;{6iTw-#~(7bP9uYp17?o5;-|t8N87Z6~>d+{sWDLx*u0l@6*8 z*MmTM9NtFrA$OB|9LfaWX?w+D_j$Ai2jg*c^AZ zlgKAr&jdIDnoM_s$%E} z%QiWUp*ak#X*0$20D55S6whL)w9ORL6ye(qG?k8~Y1Bu-hAU&Jf}!aQ&0uI|e4c5h zJ>2E?aQEEBMVK@^4>a2m&J>QZ3s18P@9Ix<)@u6|O%vzdscf8GS>+xky2PI7+4e-& z?1zcwIF63y9ZRiih=do7-lfwC+C43aP4etLsO@EOuWEwYPN&gXp!U+~bOxPCD;YYH zp=yTaF;ugj&Zd=gE`=$sg`W(~XK2x$)b@^)^5o*YR@$Aa^Se{s>3k4lbOA#_5M#B) z87alSlx5XN#{?x^OzXj`K^G78({nREKQ8T|4!<6BQl2yYD7?cj;1k4CvH! z8C_0S(4*-}x{9u5XfZ>eI|8M8hQbUrFm%)=dMt%w81y)LJUxNy)Deb`WyoZRF?1Y5 z$N#76)buRSsp;AD9C|K2kDgC2U?|E^6GO`wTEWmthE~UQYI?D)3pHB0Q2EN0zN|oI zYFbuyS_bH?IRQ|hK^4l#PD}M=gTk1V76?EAzokxQI|X#B)a;z>jBMy@M$|7Z(Ihml&r)38Mf%NR0Kt=#G>=eH* zDfMTTi_0tos}2jU6b+ey|`?v;CQA0T{Tv&$^e%cgLnknFB10!JbTUJy0JkX*ElEkw zOPQZhUpX#sMoRsRlu7MWfxXvF7>A@EKJF$nAf`H zv3Ck~D}MwZ#xA@*Cg7&Sjz$tVtnFq$2JT?`I74SZurGZ|FzD0t8PI`h?7$~me@oEC z89I}p2ivJ_mQ;U%Zr@d^U&7E?olEuC=qR7J4iuY{irt!2mxh1s1;>z|R0Vi%B&VpoQ)>PR+ zqcb8&;&2d&;$U%zm@EzzhlvM>2Qsvtp$!aeWM~sZn;8OgbIT@igg8<>NE{`mh^fLb zhPEoE)vBY5Q*X#@nG=~@lf$F@oPn5BxdDsL1&4?oQ&*1x-ZMmAH?7?MLA&POvH6kU;655x(MNo6=3Kl>Q;%E0)@nZm}r+qrz95W|O+jBJ~dm-(3Zw zI7^(pXMqSVO)iSF0;#@CUmEx_Gkrb?Va>D!qF4>=Tbw7>h_zx+1eO0DhVEtPK8EgR zuyymV3Pj6UB-V>zJ3Ot8fU>q1Tf_$LE#fh4?Qeqf$=PnKvhTLBGsURbXiFp!G`QCo zdc>AU483YeOYvyo+b!Zsah14QJVrcLG({#JCmt_?tbdfDCm4E?p{E&omZ9ev+Ro66 z486qA%lu4?A)YLrBCY{vba9^JnszpAK>R+IV2#*aJY77avbAW7c&5;j@EhDOkboICnrM!86ZQt_Y4# zDXvaQpHLZ-kKz@!;Cta87O>(ro6akp2w1Q9vUoG;CEmif?Zh?WZD<=U5$`Mw!TF3n z#d-0tm9ii|pXKbJ!O$}FI=5_RGxSC>kGjPDWe<);t$?u&JL-JTfd(RJc| z;{6;;otEf$XU>sv4~h>%=!f_aLpz$qM;LmG+q_+1Yb_pD5SujEmKUE8cD9I5icc~0 zHbWoAH|ND?#qC1Rb>eg4^WqB(y~EJE486Bbd{G!KzRb}3d>iQl(?17lZQb>n&40C? zGWWty?gyAuy#V6ln`(nI<7*>%EL)gps)}!k?{!4(eIN%K*hie)$Ifw7CrX0HIV6v5 zYOpGT{r6ZrL`iUdV|logqtqFZ&&02}9`w2Rh4`iT6+=52`i!B^8Tw+q_>K52I!64S zp)VQw&IHBr2h%r$*TI`U)2fDltF&vkLqe?MCr*q;Jm$io_M7-Or}n$}hxn)X7ehc0 zw!gn&=-c&ho?@kS7H|}REp`U5-!zCp;b$MMJwGdyrnGvQwdDePNPXMhbq?0?C}ju^ zX>*e|vkdmS3W9LbGt>ay5_rC6n<7^2JT@TKR>>u4fECHj(D%)-|9*}I74XtU!*#J^ z#=OT)=`KF<8M5LYIzg7y8;~XSk@_<9Gef_{ktGd~26r&k(hy;oG?bxV z%ux*eYWm|-kUVzP)I_LABczm$o=+8qOKA-K&Y|*$>2IAms9px)Nprk=V zl7|jEV9@Xp!$;1UT$Ye-0$NfYYUCkjT_E*?eWMg&0^qDT>{||SE)_wH3Y;bn2J7Qt z5XA+sH^^gP_+}#02ws5w{ko{#RA86!2Y@bw zO^pk}aaHR~h~4&akp`=kJXof7IdsAvfXPjKcilvg$U`=XqMB5NV0FpFUG6tbMfD11 z*DhOsyUyEfR7&dTG@m~`{lwN`wD+f(xGC zA_@kOM5HId9-%4|isWu-Bc}}{#c-Y~AvAKC5 zT3{kA{Ma*BQBhoAYXv~L?JXWA$@8X|8Vp26R#C1W&TOP)`U06LK5)6Dq-Er0q-4Ve zG^82GFY;$(&q_!fvb|{B_~MQd1HjxS(r+0*0l;bR%D+@HDKL4;@To_@S!f3Vb}JK~ zh$Uwk*tW#3umZ@nEs(I(tc)c(?BB0k>4!WgfdF^qaD2db*r;9&!`+%g!On$}9e`sg z(5H%NactTxYpIw3muJjulhUAN#)P?P%LDU+fwY|J9A8aMniUP)R~RacfNYBa$hO!3 z*(XkdObT~GZp4>_Hw7L6Owa%{0v!Um4VNO=r9hX!0k10{TVXStyjlm*zZ)TA;TAY% zb)9v<>SlB+oK<=bB7uLvU2ryp<(~+Vk~czzzy}~Z;ENET_9|osd=o;=KE!`R9>AUu zcGMTL{!JpK5REY(GW;zk47T~Nfn0q%$>*^5^)*%LVA%P{gbaL#Lgu|m7V{M1QN^?D z-_BnO`pw^#S|c4Q9R}RYN%sK!bRAqeTxbFI!(-AMDUvI}+0m<|JSkr)kP4+DX`D1( zDwZZNj2OlY6NVurkjSvau*|T+unO5^q)F0bX^J#eIzlRy%A|7O^Vr4c=Zt>EM1hHY znb?ns1DH6F%dqaP=WC-@o*W3^fK}Bu78Ggg;Gnldv@x9PgSesSY&)HfonZqiuz$iK zL=dNNuF>LBuG26 zL#7t%2pT`0Ra`$GtP8`5DT){GZHKbhZFVZ-O?C$KNNFKBHKb~3o>U{%NOJRn)GCYvsV;Mf5;b$2=jZw(xvFlOswuDo` zjpsDt-|-T*J&wK$jj256g?;T`+Uno8-QZp0taoWlE}Y|SgfR8$Iv$c83kA2fo6{k1 zizi<#Yii(gz3aAfn=;O1t&moMKTA4VTFG!XhI_O~tEFQY1~d;aeF@uQ(((4T817!> z^)F9Z&eH;=Knoxm5cU~z0>0e56z~mafjG*|PRY(pD@e&N%;4_t!rZj1%*2{biPhAz zT}`mHQ2=?heBcW%$bbY^*;y&D0g{uF;m^ypoaW$)b{c+~bOu-cPG`7xvvelIeK=C$ z?m`C=juB&@5|GXX-=1_H!+p(?mm#33mvkZNDP1I8jJ649NykfLGKx?8%3;UNq|YlkvCjNt<|NcRalqz9x2rH2?k(45Hd z!3-b5;5Zk|C(l)8!yk@-Eak=>&2?$;eZ(#RD-A*77k)0#xx_j8xUVlP;sU_UhZp|7J zD?6pN0jX1gIYz2OjmfQXV4X#iIwSFyjQBG9TNW5Tl;OkvEw{g{$X<|;vMRe|x2(w? zS(ia1j%7HP;XH=(87^SBkl~_Dau>O)+)eH-_mF#n+aHf(xRl{ChRYeQV0hYpy4znK z4DL^Ph@31Bm50d(Fg%`N(5y-rp3E>DFo^AU$|EfIE-r3$@22s<(DWQ12$eKH{NVez zu;G}Rla&R5lY#Vf5H4AklAN99PxS|UIX)h}mjR{`?5+ATb6~^Sdf1l(yRoph?Ch<| zDK@Q%ozvnwoE_8hWu;}LLR@RMKO44)!Ono9yQAf^X-(>!R_FcNS6Z1ittoL@uuqbj zl?kB%ujqxDN_q$xMwEmjAV+%<>Og_AwOMUpt z6h5rkun`V3&0}cOU?&~6${{e*pPiAB4xyNtfi%DEQI~n#xeTjgI(X01d=paY8dAd3 zCOHI(Wgd4fPmm|dCGsSOXEI#L@GORBua~FDljI|0SU_{&C&P0Yu5P0>{9gzUi-XHE zp%3C3@XE$HxI9Nb5?G8pSFU0h{(oePFr0?D`zXZQ*hv(8yI>q=7#7H3&SDnIA$gI! zSgwX7X|J@$w1siSkJdFJickVd!rI!x4rXTlvfy8@G!s+_nq0*^fJmvK^9+A+QNn zNIOdVac5Ds1JZFgfzm&-vnbo)==i8sO8?N#qHG7F{7{VK@m1bQ`+;Nv5nF|pAC;d3bzXiBn8AkLJ zhEHYqbk2);5|65>CB2Fl7c|SiFbvtV5|ILD6&b<| zU-%E6Sd5LRA}A2kv_U}%R)|6sk>QIOzJ%dR8NQ6+%Qq;pqA02&D&YURg5fO;-vE~x zzKIX>UYoajKD`(BeC(wT(@A)+)2(hwF93?tUFo6pWcW&kuVQ#Dn6^qErLSe$HZy$n zelcyW30IN;=?XY4TH^YUGE_ORtwpO0SHQqt$MAZ-^}0vvRY_6&omsC+x{{$}Dp?F~ zV0a_Ln;70~`se=VS*Ff>9H!)hR;wJYj8$?KFcG&hd=10E^tY{73WVWG5uB#P*KsE_ z#8dsBoTgMJD^qMu-f3g0QWo3DnTWsWjesZx$q zsufU9Z)W%whC%q;#_;V7gXp<)lTxb$mHEm7WuX${`srN^Kh7|4=qDL|is7gK)AduO z5%g1~Nm;5aQ9AxJ2$jQGI}4*20L99Xds za%)B3W~Qa4@pF`5;exFOwl25f+8m_>GcE@#vUF}&!BI>ec%7By_xW05j1^|nf>5M5 zt^Iy%GiKi_C)%_gh|_9&j&Oe-&{SeNJ_MY^`qk!e;eI`!sl>GWN8+^F_KTk}<-UYA zr&0MuK41HIXi|yk`4Gqx>sQ-q_sapzT@Otv7b+LEv)AF!q(2AFyuwy>7Nr!DTD-d;lo!6_hDC?B<$_8bl zvPs#jT&-+Twkp>s*DBkT>&TZ1h|T91eu3c^8Gf1JR~ZKF=S_y+Vi;VW?=cJt%|{G> z!Z3u>fOF|{Ugb^7&B`sxt;%i6?aCd>oyuLx-O4@6y~=&c{mKIhtiCT9>B`7xMhY3J zW@H&7XEL&mkvkZ9j*;&eRTxcSw1~mJB8B{~32KJ&SWL}$9u7V42Zgi@oV~#Uh^T?r zPC&8@>%e5|*)!$o7`5$H-o^WYTI+s&baZKO0qEL1+f3pi|MpFIA=ZSKs=N#La}!_} zFI2xL`me<3zf$G>zd7frycwhTT9x;R{nKN}r%@kmKeX@02tks|eLUDWHCzk1H$su% zJlK)p|60*G))o6(4Fv0qjz(%mL!!~T(Xe+|#lNI3OoZ}BG4eaAyo>fvKV$EtiH@Eg ztb^niR$l#9%(WkY&tffj8@4p}tp%lpxdoF7Q3CLS9#CgH#*k5l~+d=1bJ?h*p@APD}pGc=xBa7rNgFldWUBs3G!XJ_0J#wEbgOj!;5b_5(JW8tP1?zZEM_Zv@(CapL z+6}f!Vst;P@}BuG(A}?tUCToxIvQ#f5}z_|eSQXRzkO?Ehw}}aT%8I9)f1!jMU{8y zzR|Maw^wYV4)P?|jjrR#L~7?%LGWF0dDW8YdPr0hNv)}gNpaPy_J?$8Y8SPu+D+}Q z_E3AOz0}@nAGNRAkKwNv25bHshQDR_JBGh!_y>l6WEd>?pBesTt2%(Eb`yrFgViCz za0p5rrXHXk$ndYA+{1qi|IP@4YJ}XqP(}OU-~k*(;ksHYna*B1 zA}n=I%>;E$1=IOA9?%b#o(e~McphWxKbRu>KWArJ9joREJ)2e7+Wezg&1d*eZoNa~ zQ(a@VJ#BW(T71kLM2%A?fc>wISBn|`i{ZapgdJ)LIH?G{ooyEHw3Wat7@b=i3tP9- z#C1{A;z=`|s>;-9ysC1wf)NNWqlr~j%!fhPwG!vSIchbyLDacwm3ky25+gDr3b;Yk z8WlEC4q`-Q#MOZtWDnc<9fSbH_oD3~UChV0juCg+@;*88j_B9;Y*D^BD;U3om_fT(8Z{#0F z1~HOk|20dzy}d4H=I>DN;#}lTMus%2cQcZ_mt5q2^&!6WA5h0LG87m|i~6vzgOOnn zL*?Ia#ZIc*f!!!#U@8m@}ba?H+d?c}ab(L)WSLh6?5?@Qjg+ zz}wsG(RiDW#ygB0)Vj{!S3lZioqw!;!UzB|W$)Jc=ju0|t@Doko^jsebm12l5k_uN ze^q}|e^>ud|5X1{|8@y38J_>&x3>1f;@QLU+|$}}^#wG!`Z02FY;Cy)#w4?AuyvZ|97Ya- z@h|ZXi_Ns_0M~F>R;~jXIjq?=f|0}bZdtifTxon=jCYOZ!kLVPb>Z^!b&=a{U38%& z`My~AnnO0*b+EOpTw|iE#K__;uDfIF>i!tR zf0(bTI%ici#2J3mf8UbY4{K%*t8$M^YCA{Mi;OIBmeea;nYz*S8hqZcG^u*)Zy1); zU~h_p*mqoTytUc&E+a=ZyWVFcvX@KhW7kf5NquT9DR^`C4%g>=Ni}w`q%?=xH?HsP zCH0-Pq?YdHDd&-2-IU|;H`nj3KU{yh{&M~87Tm~<-C(^fXJiEDdLkyVVWX5<(~ zj%CDTgl%z)HXhxo+vRo(!`vQ@$KxD4!lFKvk<++#fBOFbX}wW8H41)_z4a6936So7 z07!R#MvjjG(me#Q-7rljHM>DKK6&rJ=uUO} z09NkNT(gJZoWEM!ey-WC=}5EJ9!wrP#MbP+vO{=``%nv)?n5kGo&mUYTRO~|c4&4U z$#+9==@xf^yU<rw}nT=j4-0$9R_k;^zN;Sa#Fk2BRr zxuYDG5k{_Pb~iF|gFpX)x)eZCuDx1Ny=jBI3N6C;}$B&;P{ z7}?6mHH=)l#eGo>iP$7Pm2SorA?2I2Lbo-^4$R zT+hf2_Fq8bC~r?^y6<$~&GC2_BR4g>?_uQTy~N`K?uR)ZALMw1*c!m&BOH&nc7#Xu zB!}8lZrktSw*4Nrb38u6@px;eczntI4#(rm?pNHex?gj@?ta7lrhA9`E%)0D@(&Ye z_}z>^!|!F}K1S|mcPdOeRcJTOk9FNcZ50C!<9)IF^{F#wQ z96a(@R=9t6|G__uJjx*5v-KD7sCm1`5TX%H1Uzb#ktdopiIFGw4v(5k^8g+-H^(D{ zZ~fJx=^T$wcYsIl8xFDVS}%(|YT(%g74TVrqo#8>KHV7{wE@})@E2$UwLw~vHdq^? zC2K>qVcG%Off}Iec}8AfWIH3EJio-q%Z$9j$g7OJ#>nf8ys=dqX=74L)kbS++*Pcl zb5y?RpzAaF#l~kQhP8>_Ji@Wmzz$z-5j&Ls9GLCSj%T*M-0MR5kR=p z9Vu;+HibiXG9zy{Yf~9{XD^{!u1)7C9Is6S+%obmN8wD4!uQ&tu!~-sJT`c}rE)qT zuF~e&AcjCA0P%;rdE9wqp;ia31udj4(iSuFF(aQa@+s^;Y4uvzaxLs+$$Fp{>xk8zsRzp{>@y;QE}AFZi(SF$`BbPCL0X?}T=WwnjTuJB^Vq z8TpEluNnCUhVnl)3|Bi(yAouacD{CjcA<8WcCmJecByumcDZ&1Bi}Rf10z2&@)IM# zPJdzKS4MtgkZqm(u|>No#!uGSGEUpXxyhd~ZbFeGScl5tNv#9q{1vDpI%Bf_Z6*~2ryUEr}!OaN_%_9>TfZ)tC9?`ZF8 z?`iLAA7~$HA88+JpD?O23K>b*QFtlQIQuU^cufpb9*@TW0DEBSdpCPv>ig^+fIZzkT;KBa-~fj69)GoX zdUF8x>j1!AdX*=SEsXhA&Tt4Pd4_`E@(lJ2@gy@kh|wfQ2ZP}99N>Ylo`V=2!f0{_ zg6rQ6obaUbVH(Zo(6|Ki_&u3zC73766JT^0qX+Dj1oIs18QYlz^W=K+Jo%miMh|3k zIHMyN9r>Rm!JPS+=$ULW7Y{h9fVqqU=HltinM=RUn2V>}1Lu*qdMZ5AJkvchJTpC& zo>`vRo;liqo+?ID8HG_!W7Nl}pV4$iGZ@WeG>a?HG_ciEZ8H~7P#xk~z&G4Hi$LVj zY=^mwfru_f53@Gh=-B^0skhrDyb4TjM>abG4Wrx@W!CbDrly8;;}m19 zkucyWxr`RZcG)}|dCxa7n%Bw&ws@}Hg$r!+T*qiWqXm1%1#a@(-WeC@SdZN`tip4@ z=PA%0Jr8&u^gQHw*z<_zQO{$Z$30JYo@5l5H}KkGMkg=|%d&*gNsLZrbPA(Ww|Jh8 zEvDzyOYtkPlwRUX=?G^jRY2GhytD^|bmf2FI{N>wJ$l~fX!?NBQfD1~%th}fo=^FQ z(K1HM?Y|&;`+A)>IC{SJe9PC3g}Je)9YZNcH^8h3^bY`2NO)FIbxG zcy$-)qZo(R1)W$+O2^icn#DQ%Z=A!=Z1Rt4%dN)Sr zFglmPyK3l>j8-!`kI@=NYZ(nPI)97a!^WfDNAIim6Nc#nI35=`cwEfrQH(}7Afx{S zbM(1-m42iS&|J#sGDep(3X<+< zMprVriouJ8=rN2QyG5^wA$5T|gexKXVvbbPK`QLFAX@`j^FN^e13+EDfeMqt9H6e| zKs`o3mVX#Mj?v@ozW~&cUe%fIlk`(KP)}y`#AbaBqbKbpP|wiM=0H7@1NCGJsONCb zc}ho|bM;1t+C}=MHXtvt0C_5KP94%=^XED-y!Ewu3nU=Wn;AX5SzpKKnQcx6>YMFj z8T5=QZ|S}r%jozB2+#N!g~KM0#0|bU?cS>2ER5W&U!z~EZ_}^Suh(zTZ`5yM^ejft zX7n6J&t>#HM$c#P{waFlX8jiZR{b{pcKr_hPW>+ZZbmO+^kPOYVf0c)FJts_Mz3V_ zDsJTWvQJV3Yk6w+){N@WSyAi#hE~FM2x6}dHdcq~T90)>BHxBcaDFfnfmhI5B}?F7 zq4f^lInf$;OClULNU4TA>F}&wQwq=W5xZnSlDfts2nUxJEWm5&MVH3CB&Q(d!)5Z$z$v8PjtiT&*{&%Ik&FAsK3l7^Cd>FXhtRG zQG5UlI}K!P0QlQ;`|*tRJVR@FcyX|Pa;R=vbzKu=o{lUIMw}UWQ{U0H>UZ?_A)ku= zuKpgQ0G4$v`Um=ljBa2Qvfw8isnU1G5CaJ!bN3A~)ZC%oYpSv-<~4=tYRiI+ zkUw`pG*T9r7&LUFE7(bfVR(%$j9$;^4UFEn&gf=zH+nD% z?BQlcZ!vw-?EX))`{<-gOz&Wb;we;jHw3U^Vkg94MbC>=M^@N_GJp@tKt}n?eQd-S zgAI7+(MDs4k!%b#h8YJK2Qqpaqqj492cvf~dKaU2Z$#zBNWOt%q@Z%Mkh$lmVck9BGCqZ7^hG3*I#1B&q?ey7#P_zNgZ`oBOClrf4zQS7Z zZA;~c>*}f-fMK82Asy7k6Wb?LWsg<>-a=+%GkPz)g-kH8hCRk1 z=0?bni3)-Zb>S5}H}k4h#Z$*mnOr!ftg4`JYRQzDlL{x7SC!|Mjw>v;YdK8Vd7Zbf zakw$o$Tjkee51f9G>VLI#(1OHm|#paN{mUyWMhgk)i}Z^HOh=~qr#YGOgCmQdOxEN zF!~^)4>9^Mqu}#?l+ni+yc&%@!6?|NPciy5qt7t#@IsPMBP1wpf>X+?R+SY@ES)k18g2KqiWlnBwx^TJ%5zIf zs;1_ak9UgAYhSEvV)4|fV!NzUEXa!uZBtuWd1-68!h)))rBezj^5gUu@+XqpJYkP2 z6fG#6R-9j0Rg^oaxCC-D*$rOIAK3e;u^+1E4-G>lq58$Zg;uR9m{|fZgU+8a3Hk_f ztfaVnX4SO9Ql2Wxp>q^}WKg?DDoRWF%u+lK5u_vQSs!$vZ_fimL>6OSGOxy zJh^C!oieMaxV4!?nxMp3a|0YV$;_1c0w-3g8LGVun-yS-kYXj!G9#9#>U1 zv#h*ul2i6vUUmeW^sNgffz+#Ckd%^C0{=9@In-6F#^vY7>aH3OXWa`+oyRWVj}5Ab z1|unuNFGi^)~;HWUy=*e=g*i?1-L5BEsdk~VqUmk+rpE|O90c5#%xl;0=tYC?BBNF z)F}mJRe2S~0FQ#=IQ=Vm$zC0lOkCE@ywKnd3fYURs;o3WvH1E9nprlzxTxK1Y~lsS zw5_+Itgs3)s8zu7nO0a;mJjQ_9OhGn<7#6|T%5$Rr|+s$ ztTVP6*YM2UF{#r@vE3%{Hnthpwb2ZX8;zUVUbxkO5d8JVZCsTyKn%X^=u+>jH|{p> zG43_)WAt4{L6dx+(a*RT>`2wI@;HMc6>DW1O=`F;huYkVsXF$G4#u^j?y;iQLT|n7 zwJ-DBd3MdV#CeoUd5{txB&t478c!Kd8!kpaX7nQlZ?5DD&wkZGLH8+pdQ88^raG#{ z3&u;JZX4STgV9ew`Drm;Hb5SI%IHqhH$B#Gustl*HYp!oaGnIQ2EKGiui8<6ooaU& zZ?&DPca8VKJ~dz}zGyZ+VDw9P^%P|E<1*cOZAm*CPGz4O5DmY@*lB!bd~SSUd}(}T zd~JMVd~1M*@M}iDVf0%@;rsWD{=g_`)ITx$Go!z3F@7+96ow1Kj9-jjjo*yljX$_6 z<5xz11J?yOgMMf94@UoAapxVCR@U`@H8ITwDvG@&Mn$Z#pcn-#AQ}_9qSzHtu^TX; z2ue^aC?ZxACH5LcO;OW(ne<8Ty-kwIq)n3FHOb5~GtaZ0cdg%A?|T0d&pG#=b1sK{ z_uY4&@8@&b(l2F8zXC-LQ3c=BC4k#3Fu(7gzbkBS%uFaq&Cbh;PS5wrOixP(U{8Q9 z{a;()@*@Bx5kQCn@LoWFp5`07i2`VA|Ltsl_=fuM7XKL>~S9 zkG+HSA3-$`7^DUKZb9n6mL*LPq)bu1Oi`gsaY>otQYlCq*ukm;0#G1|Ws1wn6qlDN zu2}rtE+PQ_j^+3PS%Uss#gE(5B7E(i#{}gR05>k+3$pvSsvkrUpgN>5D+_SOzpu)W zl(a<;GC%B_R~&Bd=nH5-gPwf*4TDz8J?;Um0hxo=mMN|*Q&cNcRR0r_1;l1-fQJeY z3`j_YmjRSkMWr%D`|l0W zfZ+*A$pO^kfiD}lH~#n5-~0IHo|}1nk2lI~GXC+410g^j|6%aUegb)d0LgV&nIfo6 z5zMqtk~3bTAZPrI!UghP<{kuI^5LKKtyTZO^sO^1R)*$fXBRN#$3Qwt${L#b25T(< zWi~fccTa#xTmM>0L4>;echK+wBr+_1ZLja`H4|LHYn1|LA9J&$scE5cF%-r{hEMD|)Qvr^Mhy+aaKd)|g z)W-i%3bZD~{8$a$gpI(z#JF#utv|0w^7ob39SwEF zAy+NeBG(4ESDkVLa^rHda{B?C)M2@!a>wOP0$8b=au4KQ%Ka|CL|$25O&%<-ArFza zk#~|0lFyW<$mh!!%G2eU@+|psc@BV^s+O;n=gT($kg4PH59FW9KbLyr)mH?{jU;i*4ejs4aPcLBma3FsW925Ww{AK|)$`myL zBUq*g*nF*CRbBZ|&?Zo@e5iaV@b(J`SttUAQ3nWDd<$5Z{&)MexM+Yd!GCWAFspz@ zYyam)-;j9!V@m+U4mc|SJnt-sAg2b30mUvFj{=|+aI3;Q%ah`MD^rAi^O8Y;&J(a) z76;G`ij(UmhGr)x(2N1^$==n?;k%LnC<*WZ<-mYl`XkT-N&}?>an;2#35Z;#sQ=^T zJSYo@a(rtE1UUft7*OsvZQt*o0jY_q89C+|_F z2vBZ-d#p*BqFI^ZnlgZwt!N4K`7fnB5c_+`QxPEDWdA`bN>79*EwWAuvI~<)a3Dy% z7*}?)U3`4Vx6MjOvi-yB2ej0HFf<9i=p4eoIfwA?CI6HJTNJCyxBVduhDpiHw4tUa z{&g5XFh`1}aiHS=?P2_d#`6!_{a;5^^W(y-{y&ot1U38^g8BcI&>TqgV+0oeHzJ0h z_8;DhTrNhA2yEt_Uv+%dxm7n--Cy-&)w5MER=rvE zcGde;AC*j$T!HP3p-SOOkxJ1@F-k+FRxSmSpQXw($~%Az+BxL~<-N-Ll@BT(Rz3=(q}~8BQSSg*s1KAMDL+wuru;(r z7nLO{S}Im59x9tuh$;mtTUCTAO)5PqJ5_e8%mZ05`+#JaLqH;mZAU_ZhFlI#{Hi!e_f_R`BP#s7D z8U>Ak#zEUbyFiCPr$P5Y&p;o*3ScEL2y6g02U~!xz}8?JunQOgb_aWaJ;5k&BsddX z0qz2ifJeb&;0f>v@MZ8d@D1>7@LlkIbvgBw>gMVe>Q?F()Ng1k*HG1P(P-Bg(AcT5 zTVq~hkH$WY0~&`kj%XayxTF}rCFspp?N{` z6J#kw5waWtf*3)}AvO?Oh${pEaff(AaF9$04N?uMh43K_kVZ%oq#4o*X@`g*6Oc)W z3^D`R0oetagDgPyLiR%rLY`=;YT0W=X|c8XwT^4O&^Fih)lStGXm@E3X^&`+X-{ZR zYRk0uXz$ZLpnXXDi1sn<6WVv7Do`gV8tMb}gZe`Qpc|kBXbdzK8V4~=+65hf9)cc$9)q5Mo`U`aJqtY#y$JmodIfq7dIS0n`T_b0`WgCFM_y-% zj-t+Tos~LDIx0G9I$)hOIvzTkbTV`}Iue~ZoohNzb-wCq>YC|V>%w(ybzODW>tb{R zbOUvRbT{debPIJ^y5+hYU9N7GZnbW$Zkuk0Zl|t9w?}uIZlCUe?or*lx}Wu+dX9Qt zdU(A+y&%0!dLepYdhvRRddYgJdL%uvUZ!5T-mu;+eR=)0`gZy*`Urh@eGh$4{Rn-k zK2N_hI59G4Br|l8>t%U87&fd&5YIY@L~tnX{RzS%_J@S&~_b8Oe-nmT9)t zjBhq#HfADm^X=mwZ>1>IxL|S@UqAZgw>n(dM zM=j?pFIaxEQnPZf!dhimQLU=2I;|vDgI3d4yQ~gdowYh|b=~Tg)g7yQRG zu%)nNuobXXFm0F)Ob=!VGlrSL*1*=n9ALh%7#JB=1Z#pd!?wW&VZ*Rd*d$B_n}O|s zor2wlJ%PP}y@kDpeS&?lma{go_OMQ{&bO|&-ex^vecJkr^?B<{)|aiXS>Lq2V}0NH z3tSGa0AC7U244YR1xLbt;2Yo@;lc1wcsM)~o&ryUr^7Sg40sj18eR+M!<*pE@NMuu z_yBweJ`X<*KM6k#KLfu9e+B<+v)pE-jgpOu4ap|gW~)uLO}EXE&9u!9n_V{dY@XYE zu=!%U%2wOf$QEV`x3#l%uywaZ+4|b%+cIq{ZL4kTY#VHawqjd}t<<*9cF=a%_K58h z+b?$70JPZ5&fLzz&e6`x4rdo&7i1S~7iLGaOR!6_OSMb4%dlhFwb)JC9kM%Tci!%T z-6gwwcK7Wb*gdj)W%tEi#U5m@VXtMcW3O*-WN&J35750_?A`1=?7i$U_CEH0_EGl9 z_B{J-_7nEU?QhsWwExxqo&87q&kk}9OB|LttZ;xh7(2iKGMK$Xm4m>c&7sR-#9`cF z(oxw_$5G$W$dT$;;mCF5Io@-8<@l@PyLB7a#jcBAm$Yv8x`XS^t~UTQobi(Ph(;27pPM4f6J6&_S>Ga;|lhYSxIcEju zrOwNo)tsTudd`Ncot<5s-JCZ#6P#m#cv6Bh#W}}0&$+<4%(>i|qR>snV!S0`5&S8rE8SDY)}mFSw` zN^#9`&2z1AZEzL3idbL?$8|k%uTmP!U@YC5SRaE20C@h3G~| z5xt0h!~|kDVga!aaS(9?aU5|HaRqT5aT9SH@zHI$+bTC@H&r)dH@KUvo4uQ(o0l8L z&Bx8pEz~W-Ey|7HMseHXR^rBVW4S$Yd+YYj?W5agcPn=ncQ1F0yRSRWJ-|K8J<^@v zPIOOjPjWAH7r5_mKkI(g{f7H(_q*;d+&>}ZkV}xukV;5ZBnYXFT!Ta+eUQP(1Y|NY z4M|33A#;%V$RcC~l8fXaYmxQHMx+SYf^0*MAZL*`ksmx1J&ZgYJls979(a!p9-BNu zJt91!Jz_l4Ju*GAJq~%C^SJ17dA;3wkM&;bG3#5`_pKjXKjNwAsqP8!gnH(BmUxzV zmU~|JeBk-U^HyXr95soOp=MA&p{}EDq3)pWp5NXY^OhDvUNpA7g|u z#jM3xVXQGW7!)QFlY%M0Y{nF07#Jpojp1M_G0m7Zj2I)qNHKkwLCi2_6tf3&9P`>+ z*&FKZ;O*nR!JFVs^iJ?j_D=IAduMrPd(*v3y;*{VO_EA*!5Tx)*I`G z^~VNcgRqg<3@inki=|^Luzai#+l8IRE@1az4`P49UdCR--o!q^zQO*6{eWAF1LHJt zS~w`q9=9Hc!eMYexL{l;E*uw$OTm$FWLzeWhNI(3a7>&4C&UfnMsP=QCvc~6XK?3n zmvFamkNubWEBTxIBmHsy0scY$!Tw?X5&jwe1^zUDx__yEnSZUn(7)Ng&0p-l&A;D& z(0{~#%zw`RnE!SEhyK6#f5tDxFUPOKtKc>9+IStjKHd;-hezNy;0gF-d>WpN&%)>6 zX?Qxm6kmof$8+#?_!hhrzZ-uPe-?iM|1yPI2dp$;9S7PfXe|_10Dsu40s*zHsF20*Fc59 zrGd)>R|cvF>IGT^+6FoVIt980dIq8cy#xIMae*O$F@foUxoTA$LRNLe)dzp>CnL(16gO(BROp(8y3iC^0lEG$%Aav?!DoN)Ig!Wrdc9 zj)p!8QxEeAD-7!jyAt*=>{-~$u-9Sl!ajz54*MFe9IhG;4%ZCFg@=bnh7-bx;ezn4 z@SgDA@PY8*@X_#N;pf6HhF=c98vaYfk_eRuP=tDfMub*`PK0@cMTC8Xf5fH;as)G? zCW0R!h-ivvj%bbOix`d=i`X796R|U5E@C0#M8v6xGZE(_k&(E_(8!3$=*ZZ}_{gM4 zN@Q+ieq>Q3Es`Et64@8IKk`!K=P0cxvnZ=5c$8g~W0YHzN0e6-Cdwx&G%78M8&x0G z8r2ci71bRz7Bv+$6SXsHA!=XL!KlMgC!?-Ly^CHNtr882)`-@M)`>QaUK4E*4U4vk zwu^R-_K3zthejtw*F^7#z7hS9AWu*wXb`jrIs`+43Bio8hTuvFBE%3f2oyptp@6WN zP)uMDn1nh)13^e=CbSX61PP&su#GT7*hhFAvm{0>#xe#O;}f$nCL|_2CMqT-CN3r+ zh7yw-QxJ19=1R=^M#wH?A{od)z|Yskk$7=i@HLU5UFMcPs90-0Qfvaqr_k#eIpFk6#+U zEPh42Zv2|~fcVt-y!h()&iMX#S^RALuK4-*z3~U)562&kzZicx{#t@#f>#12!8f5J zVK8ANVLWkpqGqCYqHbbtVo73IVtL}V#K(!x5?>}^lQtz0lj4%%lM<6Ml0->eNkd7a zNfSv^Ni#`1lXfQ^PCA=(J?T->+oX?4pOfX16_ZyaDn7_b8zq}2Gm~qQ>yjIi zg~|7mUnhS^{yq6?ibBfD6y+4P6!jF%6sMH%6j}-^r6Pr!QkBw}(vi}Y(vz|+Wi(|h zWg_KB%7v6`DK}H@q})$=mhvLyRm!g^zolxYx}_3Q^HR5@mZX-YvQw*5Yf|e{+fzGJ zyHmHN_NNY}&ZO>0-JQCSrkl1l%^}Sx%{9$EZG9RlEg&r@EjTSKEi#Re7MsRN>rXq7 z_H){+v@aw@(h8CiNtFa4K}mWfLy|GcmV_oHkupiyq&yOUyC!i+m85D?J*kl-BDIiY zq1FA)>7w-3^p5nd^q%zL^s)4b z^r`fj^d0Fxr9ULglQqdEWK*&kc@5ct>_}cmb|!n0(PSU8A32yDN2ZW-$pz%i| z%p|kP4P+s?ncPMelO<#+xtH8e-bp@4ewMK;Lp{Sf!!rY$5tb2|LC7FxBxEFKq-CUM z6lKsd=ouF>?quB0c$A6C+>p5`Gc>g?L= z`s~IWg&egUaE@kaS5RNjSRg92D0C`xDRe9JC~Pd06!sMM77i4d7TFg07U7Blih_!Qi^7T`iwH%; zqJ*O4qO_utqOu}(QAN?#qN<{rqPn8`B0*78QA<%<(QMJBqEDL*HlsGDZ7$#3zxnXy z2UImGl&VKHq#9E#sSeb2RA;Iy)s2dz;-~@CAZjo*j2b~Lpq5cN)JkeKwVo=VHc^|Y zQtBjinz}$eK|Mn~PrXFFM!iA3O}$HfOnpyNq$$(XXzDZwO`m2&Go`Jet))5BB4}h< zK8;Q*rLkz`w0c?-t%cT3lhCBJKH327Anh#eD(wdCHtinmA?+918`^KQ547KDUy4X2Li=P+&Qv9a)x8e`Q zpNhY1k=vrM#c0d=Es0yoxAbp0wdFY-Ot+&4(!=Rd^cXsko<`51=hKVmG&-GLLTA!h z^g4P2T}W@Hx6wQ3JL!k%C+Mf?XX%&dSLoO1H|WplztBH0mNAqVsthngiveZmF$@^i z39xJ0u=yF|Cdpv1Vuti-&;vc$T?w#2){uLM_uF9|H! zSQ1haRuWMXT@q75EZI`hS~6d9t8{6pRq2M(tkUYzfzs`zveMboou&IrPn4c2{i*a^ z>4nlurI$+|ls+zfR{FB^b?L9bi!ei`8Pl9;$+ThGF&&vsOmC(ib0agBnaE6Gl9*Y{ zY-S$tx`WN+Gy9l>%n{}|bCNmD+`-(}+-(yO3SXX0VxT7F*07Vo$MW*gM&C>^=W$M?6d3(>`Uxh?C0eQ<%;Di%9YAh%faQE<=W-CF_0(Nob|F;Fp7F;y{Fv8Q5x#i5F$6~`-1 zR-CT5R&lf9PR0F-M-@*v%Q>1H9gaT7h_jkw&avdcIBpydjz1@e6U+(YL~~*|ahwEB z4u`>M;0QU*oHmY_BjHFneVjqg2xpvgkaL7{jB|o>igSi@o^y$FnRAVEgL8}Xd8__b zudRt&Ia`Of{Wo%`9WnyJ=Wol)5Wo9L%GN&@XvaoVh{5RCzF-E6;=H#l!Hh zJUlOu7sMm-5_l9|KCg&J|9cOJW8tb?mzCy1jKb>K@iTse4}cvhF=!p1+j8oWF{% z!dK&i`5Jsja_>cL|_%Hdd`EU8}>(%Pj>ox1O>Y?>|^@jB(^{ea6>n-bH z_3(QC`t)z{4Tl`9yUA{EE8x5paMOCp}<;Ks1V z$VNgVu`#WY+?dsv)0p2_*jU~;+IXe$t8j%7BD501g?2(mp|cPnL<&8HXrYe~D~uJ! z3loLO!c<|pFjGho<_PnJg~H9kM&YFJlJG;5K@+Aat%=jLt!ZD=@upKvXPVA6U2D4E z^r-1+(~G88O>dgsHoX%q6)hL75~+wlB6X3i2q{8|yhVPZ08x-=lPE-#C`uOPii$)u z5nWU!Vv9H;u1F-3igtmDkCxPyik8}z`j*C)rk2i@{+6MZ(Uysp zsg~)M*_MMXM_P`zoN77Ka<1it?I3st!Ay}t+uW9t?OHTTCuJ8 z)(x#;t&y#SR$^;>Yj!KYwWoEsRn|J&x~p}r^;qla*0Ze_TCcQTZ@txer}aylQk!O* zcAIXSL7Q=#Wt(-IZJR@zQ=3bhZ(B}Vd)wZ&Q*GzkF1B56yU}*5?QYxswqM)j+oA1x z?S}0p?W^0@wp+Es+wIyN+nw7H?Hk)e+QZr-+N0WI+T+?2+mqW<+tb@K+OyiL+6UTC zw!iGq=sm4^cZg<@6xZm-*<88>zd$yNQuvPccfoQ5-8y6sL$u;w*8tI8R(4W{de^k+@adA?_0Qi3i0a;&JhI z@h{7vCp%@GXFFeY zLAqSJ2wi1e+qw>P-Id5mR!Wp5Y7($SS7IhHmsm=yCAJcKiKE0xf|mG5uoApvgJh#5 zOHwQ;m9Qigk}64!q)t*V>5}wF#w9YztYnvDk7S?ZpyaURqU5gRz2uYROSgRY((dKm ztGZRXLEReNTHUa2n{K;qhwgRVF5Pb39^IbZ=x*OIaqVLb&s z^*yaU9X(w=-91A+Q#~_1JA3AO_Vn!QInZ;c=UmUlp36PgdT#dI?)f5Bl7gffQZ1>T z)KF?7HIq6>ouuofo>G+5Um75dk`ko}(qw76G*g-_&6P5xHPUYBHfg_fNIEK=kWNWw zq&uZ^(mm1((x0VQq}QZ3q_?H_qz|Nzq)(;Kr7yQBZ-Z?M+LpUbxNX|T0rX)mj{qL)f!@Qt zM|+R=Ug^Ew`=s|}@9W;Ty&rpj@BP{*-v{b5=ris!>of1O?1S~W_PObe~`+n;O_3QWB_WSoo_Gk1n z`g#40{lb1xe^t;;NZZKf#ZX^gKG!v1|0{T2N8qFL7zeF zAbxPe;HJTlLDt~J;O(JRL*_%aLk>euLoP$uq2Qsgp~xY^5OJt`XlQ75XklpI(7~Z2 zL#Kz%4qX`fdFaZ}?V(4*D#Mn;?!(^0e#8F50mD(lsl(~RnZwz`dBcUn)ZvQZt;1Er z)x)*J^}~W;;jnD@%<%gW!x8V1^pU)g!V&67@d$gQVq|P&cI4&A>yfu3??*n3d>NG= zT{^mabk(TJC}>n;RBKdcRDaZH)O2*ssKqF3)MnIvbls@SsN1N=sOKnl)PFR2G;1__ zlsDQq+BCX-bl2$I=)KYBqc6uGV}@hKWBy|yV_{>AG0qrwY;bIHOg46T?9SM|@fG9X zagA}iam2X$c;tA(c+xm?ymFj3J~BQ%K0AJH{Mz`93B?K33DAV&1ae~iMBD^vf;`bQ z(K#WR*gtV%;?%^miMJE)wrg!S+HSJleY^K|-|gh>`P&P(3%0j!7jM71{odr#Nu^2H zBx-WQWYFZs$>7Pj$@s~H$)w4gN!lcRvUHL)Sut5VSwGo0DVl7ZY@a+a`EE*e%4EuF z3O;2w1xy7^iKqIerlxjG?VehgIxuy3>e$qYsq<40r@qLPWXduXnVL*r zW+XF}t&v&CtYoe-yev|dCCicJ%Zg+)8C_N?W63IHTp3T+CF_y(%KBx4vJu(1Y*IEY z+acQ}o0A=u-H<(=R+xrNTTi2=!>1|JTcXPOj5+??&bfPY&*$FGeVLb^Uo{V&*P355 zZ!>Q{?>O%?kDm9L_nY^h51bF0kDMpW$Ii#iljhUsGv*8CE9a}{>*gEgh4anxZS&%J z$-H#FZ+>8YdVY3(*Zll~-Gax0=K^}cXJOyM>4h^3=NB&R@!1o+Cv;E5p6ES?_nhBz ianI#F*Y^7D4c!~QH)?OpkF2mC*2X8tp0W_E5>d0Di^?|)H1 z0v3os1()C!L_wL>Z*jOfS{A9C-Y-;LvY-sU74@r$R88v_nY%DtQWNbUpflGM8+t+E zm~dUVG%Hr<1wj(z$%Qqcny`s>_*{j8NAL<=g>FK3VURFbNEDKUA%b5B2+2ZD=L+Wu=L;7I z7YeI{i-jwNtA%>udf^6Phj62ClW?1Ghj6EGzwm(Yh_F+5Qg~B%OL$v&M|f9wPk3MW zK=@GjMEF$rLikGf8o7`giAX{+QjiCEk%}~=BLn%+;V1$1K}Vpzs2}Q&2BE>okJ8al zGzCpX)6jG@1IvPm6G({6B_*VkEFfj1 zmMkVq$Wl^ARuD!`C6|y($r^GQxtv@&0Amnn(jQnWobqJ%&!EQ|MGWjZUXC=uA3`&Zcu{F+G8n(nYkKR?sM|p(oK5^kjMp zHR(!vHa&-)OE0Bs=wv&$^e%cgy@%dQ@1ytA$LX{5 zWxAKXPT!{Q&=2S*^b7hW{g!@5f1*FrU+Ay&PZx42E}yHLtCuUm)z3A+b+jwdHPSW8 zmG2tu8si%48s{o-jdx9OO>|9iO>xb3mAFb><*o`>t!uH%bTQYduG3s+xh{0Aa$V)R z+I5ZVTGu*Py=$Xulk0ZZgRX~M54#?5J>h!6^{VS_*ZZ!IU7x$Yc75ae!S$z`x;<{) z-O=6E-P7I6o#5{0KFaNP2i?cJv)v=yqumAW@$N!*g}c%naaXxdbXU8h?izQkd$D_o zd#U>*_i66a-DkMZb)VtdZ{0t-e-f!Ei=D+TVpp-7*j?-|9w{Cr4iJwPhlqYL zO&lf;7qi4M;#hH1gQ~=~(GF>3C_FG+fG(vZc||IH^FI zC{21F8^ z>22wK=>zE#=~L-@=?CdY=_lzo>38W5S&)gW%9^aphTKW+DtD6)laG-5$^ki9PLYq3 zkC%tZ!{sbFPaY>1$m8V+@+^6_JV!2;Pmn|MT)9Lpm8;|vK1IGrzEZwg zzDBN>8|01hCiyyft9-qDgM5>GvwVwuhkU1emwcamzxH>JDMTRBWQLg}j1MlMEOqnUin%1+aq|q zo=%?5o^K_T+f-J)=F7JcXVj&n(Yu&l1m4Pn~C( zXSwGj&kE1Uo>M%ghk4HMoab5Xx!AMTbCqY4XR~LU=N8Yco(DZoc%JmU>v_-fzUKqa zhn|l-AA3IWeCqkk^SS41&rhD8J->MV^8D=;y^>e<`n(;y1HFU1gT0B~B<~Qf-y85I zdsDor-VE?*#8e?<8-bccyoix5iuRUF==rUFxm#F7qz;p5$HOJ=uGz z_iXPu-c{a%Gr=zxM&}gWiX{4|^Z+?({zDea!om_XY26?;h`K z-o4)UyzhHI@P6U_Qgx|rRa7NaRu$EwdR0}`R9)?;_E3AOz0@PrzUm-#u$ri*sp;wj zb)q^+EmVut$?6n!sya=buFgSL&wOp-GYt_Z-5_PG1s(PAwx_X9srh1OLTD@4k zR$Zsos}1UUb(^|f-KjpRKBhjdKA}FTKBewbpH`nypH+9Ouc>?0*VT8`_tekS&($x~ zAJiW;T{ASF) zo21RrinSB8kTzE<(Mq*)twK9XTdAF`oui$rou{3zU7%g4t!L2{ny%|z^=^81 zy^nr`eyo0+e!M^wIi6eX2f9KS2-ai}Z56N?)qi>1XKY>lf&o z^v(Jf{W^WCzD?h*U$5Vw@6d15Z`JQ{|E=GvKde8Z@6w;vpV42^U)JBy-_hUIf7E}{ zf7XA|f7O4}f7k!e|1<=H7}RhXvY{J>;WIiLy^TJ`5yp|mQAUc9YNQ$IM$pJGjy1B4 z93$5#Fvc4bjETl1qtKXY%r_PoWyV5dkx_0`7$+Jv#zn>@#%0Ep#?{6;W4*D-xX##a z>@aRNZZqyQ?lJB+9x`?sj~h=J<}edyJQj*Niuew~Y^sPmC{&UyNUk-;CdlKYW7E z<#YQ)pYAh!K3@l47hf-5Z{K0QbYIYy;mh<5^&R6o)_0umc;7JJa9@@$+n3|Z_2v0S z_(u8)eMP>>zA3(`zG=Scz8Ss~d<%VxeC56hU!^bNtMe`Mt?-@iyTEs$Z$}hQkndsNW4_0IyL?akp7*`rduejN%G&bsJ%TD|f-V?B zN1@Bqg2JRl;kxJy_#MN%Q~H&ZhoaF2!6$Suu}K<)PC{psG8{C6#YVrh>=8kKT6#`m zN>(tCm>S5-O3cg~k&>91>QBq|XXoaQNX;uYI_2l)O^sA9idKb6!nu)>+KO;xjni@u z;Rs>iW}&ChOXw{eCLAs#2z^YK={7}EGG$XSJ)4ETLO-Fua3mBNAoMrArfLpiI1S2l zH3ymgIlTI^%F@V^5!IoJaItZG)Aou&b8{kY^GdDo2Yjjcu^<#R*T`A)0F zMz_X$R*#z8>b!ipe{h0-#o&bHfz(v^Gt=*1vBH_&RN;7G;B`WpkS+v;3?Wk(DjXvm zD;#HPrfwRh&+K4!G&`A{%`Vr$xHD%%G)Uwi=1$MFg%4ij6Q<3V% zV(}-fVzZ`{g_q=p=hn`j4+~~=92c&LRM(BH4pl8^yz2BJ-ok8XF0ZsKR}ryFsFs#a+tetX}lFs zM@LpiYOCxUpu9pYgZ5ENHmu8{sz_O7P1JrK2z1|V=0~HoyidLMQJb|E`yTxW*pS6W z!ag33Z-ISRPz0OES;acR6b5b*mI=#+lY|w*$-*gSfAdK5D06^$vNB*41BO2j8DJ5n>Eth^>%ZEa0Z+G^+_<(jfME;Y+8>s z>)CZy1$|rGgC~K(wQQzicxhFrvNT+pUkZ22=9Pi90eE8xFs4vdwAp0|t~c)LfIKvzDQWT&P>`ZTq0a5tPw7oVYBE;V13iE1%=~kYd8nWs;&;zt%q`# z3s(Stx4up*C>(E@H0=7;HmUC#;ab>o@uzdkfMZ1}L)B2lHNraKidhAPjn|yzX%IFG z12+ikg$=?+VUw9`rkJT_+6G~ZaGkJK*kY!e8D=K@gyrbeWLC24#=*w1X3#e_6s?J` z5x-n)beUW^uW_ZC6z*o%5iXsaZ>>-KmeZe`g(-e;dydu#w>R*<+g!9+D}@o@ zPcS;?$-9Jmgf8{M-R97G;a>9?F5@`oZS$GkAT}Qq9ugidHhKUD;FCRpo0cYptE$6M zSmF?$I`cU5*zv}exsKHdVM1MQQJr2^6Rxnj4{Q-cY)w{4NjM5*0Ma5nCtAYg)r3eC zxM!qtb~Lu_^WmB3x|FP)1)mOoI`5(eNokPfzC!H329LMz@DuGXeTT2K|5zvadL|t= zX6)o?GfU@J)!7#jianymemlRG*)#U2@E8ceyros;wip{cGmMLVUI9yi?B<0T6jiyR(MW$UU)&+Z4NVsn^|VInPcXfdFF^MAnOJQ zFT>|mU?O_~VswRnT>6ayMv@O7pj^JmZ9W{Q1}+5SoNRn$Iq(uL<=ZGV3N|}8Dnbb^ zxuE+tC*bQ@Z1idSp&X99!cn{89!<(rgeQb*fQ3~S)>Ol|0f#lY8I#GpZ<8x)fuM3= zH`#Tx)lQ7E>^?(Z_E8lVTOlBUYO6ao-}uPl8x!m=p9!C@Ge_IxbGh(k1LrsG;Q!7- zeIxwFVam6{cf$9=55kYaPr}c_FT$_pIJ3YUZ%!~Lnv={zv&fu$o$$LQz)OW0K*f`V zVnoa-mhc_}VtgtH^}gmbzF&0-4xoM4vNxbLX9)m^+1Gl4N(Q)W_Gz<+#StuLjpj?!PMxc@AJafLez$`Ntnv2YG zv%;)2BW9I(;&zmeMx!xk49qWlgaK$G{|k*VtIeoc1OEnDpRVR&>#v$N=Dl;1S+Zvx zW)Fyns|oSBvN(OQ(G{*aERth^avQBcX)cWOs;eW__Id#^#+QNLidWS9DURKmVzQ=> z^@4kxSLQ@2xY!1M2@<7bk)=sSxn{|4Mzia9*X-WLE=;Ng5XZI64ow@jHcHE3L1+0; zn?gEk{nOH8kPel`AQ-6PXg*r7&aAaKDO!jYO)e-b4A(TEg~AmEau&7{)dC|h4m;wcO=vM%f|kNMEdyD$!aUi$7-ZR%ur|OJ`8-)ebVdvS!=f^K z-YuS2R2`~}mH~vZq$_m2Yi{<)_+H_%0Pfi+&8iNjh)Woll1iA{?D9y-B6z5GZ1(uA ze0T(=x5i>0*5d|t26H+(hi~dL(3$8gv=W_do?@CNGfy>7+lbEPq8VL)E;LVvA#^p* zHm~4=;M8RG)FBfK8QFW*x}H@I%1&t=U#rRyk?Ml*k_jO$46Okb8v%HJRA_NHzY+je zsJy(+sV8T`Wb66)yrT=s%1f)mAY}oP6&r^+Z91DhPR6muIYP*(t%fIR#)fJuOBNIY zJ;Cfw3eSVFSC(+7YY9tq8Cts@U5>6mSDI&-XPRf3D`7|@K-@1#09~*qp=^9%ASI!H z{{*l_9M;zL)a1<6%=BP#W*PvBmIZ9mS%>NYtjDwfprG|=9j76?1M7v=^=N~6j+yi_ z+KjfK>wxaIqHSn9x*k3|(2eLOsMs;pjE$67Sawb$!U6yS`h4d&`k555^ePTaxSpRI zsQ|RlSiBgF8=(3u9Y4>hv+t2gEa=7r{} zsW8>Nw}xs@+#_fwXuYtOjZoLdS=KWXLS@wr=ur-C_FKkj`Ej%qJz%be9k^;*(E?7C z2?0ZJ?p|r#J&WIUF1=t~TEi~^8auX>8$uEQ269SDm=~!|Xt~_ScRb~9`#-z?ub@|L z!&I{gY#dB;{iFfC#>c`9S?wx6D>!d%dI{K>GBVO(BevpcO=a4f=xt$OJ$lQ$svf;# zUd=ad_Y-Tw)pZj>+)xJ`A=+q~bGX3==u=Q8(TC_G^fCIxyvDrNTxZsAfLZw*eSyA& zd1)}$n;Up#U1EwB?A5}ONL4szK_n98Hlto#p~?$I>xv@w4zCGMOF3+g=oOj4{C! zyP&>ZScG1LK>;f(DXYmXi&m9~>TD{U2Gdr-rBP80bj;iWk8c816w6q_p6Ot@jao{9 zxq0%Evc!317ENFkYnJ1J!w#$>>*2C4TmjYqyJown4|ixW0rudb)dt*=(+X$4@!5&r zY;nDD)+!^FVY}+CxSP#Jn?K!b@*8k>-Ues3`zaM87Tgmj0I}d+xHmowA8uZ6-eB%9 zZ`^?U;3IHf+{e7hyxF`3esW5+A%n%t;}!#u=wlC|SRivNha3-bYtAH#STvoc^yH8+I5S+-ir;-48pW-+;mXw9MnP zM~p7mElRSts0vv9bl4H$rK7;4*r0gY5JhcVGSF^KH+*o1Z_;K~51@CBJ0iBk1v5wC zGgX^@*k}mQU`Jnlr#5Qa-KA@{_SO}7;hATkrXIZ;diH9gs-g*z(x^dpAD+;s-8H_p zsyo!!*IVCfcmE@gYWHKq`v%~#qkFF(=o!>TPbPCiOLTW)(vWu6`0TCseSbRC7)V_Y zXSZ$CIK=|QQ3LNz4`#Ht(x0b2`U6xt^tgs&j%}mP85Txf!q0UKx_j90tajG>Oysr8 zc0#>5$F0xxx7dXP> z3*0!$r09~ec{Sih=7VFfB;h!45IX@*9~Ocm*b;F6x>~pvEUR}2kAeN_1u#>+Dts<{ zg9s?YJy8NUY^9@PK%dJ-lTj%+V^yOXREN$(YtaUD9l*HR2^`4 z&Nguh&IZS+3Ahl?0|%)nUW(7fSAs*-7Q7ulfOmo0)BE^4aBUI@AzjGfq#p@_3)6Tq zjm#u-$b7PpM9E3yWO5o=N!Hr-L+qFp=Q#F6`!~7W;d#g69MD_vark&V3=anlzN2}k zd6#*&c@OCDGq@qYKOO;}QJ7oZ2ATK5=RWfR3ps#9C@fhJt_Zi*{Vc27qOz*0Fi7iY zO|*3huJ+sb22O|yE$iy|dGn&-n(Q!Os>Uj9$ulAZ8r#0AY6^K$z%rkl-gw-GC*nd! z6~{&9{c%+sPsP&&OKIN+X6iei09P{CNe1iE1pMpN1!BkJE=ITT> z*!4gwnGYvpc}qbX<6JX8H)>&F4BF&o9ENqBj~C!Fybv!kcbboykC~5~Pnb`dPnk)@ zMtTfqbG>XH9Lr|cg0d5?=I2iF6FR4bq^ueM40CI1xE7mwFb~>@yQZ$#@E^=$g=Nb? z;p!V#1={WvSF4MS;K5W3d#)0Wbzrh!B*(<-Z)x{xJp;{3fMpF3bNuPHdpEJRtYp!s zaCudnM>s3H7%$~3yTp8^UKjv6Ev#%$%c#H=<(RRGGl-bg!+C54hC{Fhd@?@8e9nBn zf$tUA9hOetIsW)qIN}SJIvV)l(mf|(|GJH9{0{F&Sd=DNAJ9i3Dsp4aJ(}%R2QiQOK0cC z6JqPOW8UanWtVeqTi(B=%@rj$76TrV8=e<}25cLHbxDA${B)#DxJ+x8SrDT>dYWp}W*{4K)j z27D{N&3woF$V_r7xD($ibXkw@!gu3)%y-TA%=g#h`-B1b0rLZ(yARFaY&e2x)QV^E zZ;d_&27KjoI4(3F%p|p?;ps2|_7M6GXA7EftH<%KRxLdZEj?>~3@v@)m@^#$;Aj7R zhu2nFb<7xF6|T&$1aF9_A%I2}TdlF-c{N3mNoDgF)YxNunUC=m{HpmSLr*jg@^$?*Zj)-+Wf}+*8I-=eiMkX5AcWZ^JCaAKbSuaf%G244TOoVGO`v>m0K;Y`5C-QoiXXfOpNL zFz9;G8X#_Nt^jc9EX;TKN4}T8$3K`qnLjt+pU`6S7qHa9Ch5TEAuAedGG6~SkZ%6Q(6J01!;qJuq0LNJq$BA>I-?z=D_Y8s+x&we z8Ei_wn->=wL*lHu*;sA!QBs^6f);F_(^!*Bdcx$AUZgiUj2v$MY5vU+W{AdZN<;xG z>jUOruxhJdHpYR4CNw{s6D}`LT3R+YX3Zf-kpbudh6IL?xyr`%Kn1o{iX@_m{3Zdj zIaJZgj^`9h<`yA_T((K5bukizRn8!pWGLF+bWW#p`!uXlMHNFLLttnqHm32F9Xe#l z5YAzvLn=ZgLmZ1-bckhHO62%7(Xv1$+E@A~`}sBaWnCR&X(vNk4A|1}$?;?u@JZks zPNk0Nuz?KcYJFR`z<5EjNe;=K!8J(AqCEq+t*LK@sVWIOlX?J0&a$EAo;=- zO)u;rW1y+AXget&ncUZHE*NHJ!td&EIoLNBhfP=}73RvWZX%fkws)Y-1~QTNePBtX zA}Le_q6H9AbJUcQloKh5go+}yB@2?KF(qR*MSopl2%wwptIeJEF?!v^Jsflxo3Y`8gBoW^K zMWmcmkV=NSGSrQs?hN(VK&pfRq?$w->S@B|UJTCNp!=Qjvtj8MHE#+oH#yGFk8<`1 zb~1k8klo})qe29mp~-d2E6nNAGO}D~diVtz$SL-PzQfBbaRNvFmQN#SCg*}@Avv9# zLCz#+ftqqQIftRc8A@QN4?{;V)R&=t4E5hk&LiiO3&@3J6}d?0&(M(!r81PpP&z|F zhB9oFrQ2snd~8*b>YC_`8IefEh!FQ>152%q*79?UBHW@hrV}hwrIL3vlV8r}p z7WY4@1n${b!OR>G5CHDEcNUc5A_f$YNY&Wz;&6G46mo$CjNI_zGC=Dg2OinWc$M(^ zCUP~ohFnY5k$Td=&`}HxWN0u$NeuZJN(R0~HUjx?BAdw;GKjl)Rs#}V94hC3a+f?f z2VrOcLq``IQ46lunjYY1UEs1rwvp|y`K%+S2C_}K z!s*uyyk88#|FIqnRp0!e-tTyk1^dS)Oc!=Gulm7bKDoZ$}y0;$RV z0NifbRz_w@N@H8M+ieYrx7B(G`y3a{T~bC`x<5HNIU^+#CL^eR$w1( zrKKnHRczIPWInEgZR>u!t(16M&E_x_$RLfk)ocy}KsoK3!_?%|%oQv84*U7)8JQ!0 zUE}QON660DZXfo%z1xe8qn86+Cc*5aXQroSWTpbW1)%Aaq+oJ-YG$TCC6ERLl$M!l z`_GXlInR5Fp-kX;V@57YEDI)%Ubv)DMYSC{Tk`lM8}>PZjkEbiv7eA#JC~nl+Z6sh zd4Y362P`*%at&lR7bR`pYmM1nBrk!mdId0>LiUo^8OmZPp9`tu0S0kQG>W0o%~8;s z&G=iaFaTsJXiVrxb`H*}>J|>?qG@PMqhH@CnZG<&1+Mp!M1|`0xV%{=SIjE!= zvT-gpMKsQ}Uu^i2cL4bECxlPb{aqP&|{1!AYAv`}6t&KXyfzoiRHKY=Gi7M1XG^$dKuiMWX#^ ze~vLHGBn9t)zkoMP-h+6SX-K8ukGahuPsfn*LG@bZRa0?wQU3o(INY?s5Sw7G$pps zQ)8Tj9!tR$W*a?@9#4nS;WUe8(;S*h^XLc)G&qBynGDThXf{KD(TW*5fuRsXa~UdO zsB|06=k^z&KOIL4=y*B-{+c9!@C*Y~fPV~?F%)44kav`StFg^IJsK&+rlh2(>WiSQxwd2F_8TA3O@f zo+hw)F6M>^Xdw2dech@Ij>KAZcnL%cjD@&FF_*$RF07{~GPH=BF?!^N%WFb*`?jSbK6lP@wREY_rGYM{ zOBe!7RnZ{qrOQm%^_6CDCLg+`!h@G~X-owl8?KyRv%qKE-*>pt48u}JPv=#gN>5`5 zdQjc8s>$d9YbevPp$0O zoEDaZxIxv3UjV#Y2Clc+|0ly#YUEIr^L)gBIqgP}8_p|aAlNX3*= z3qsETRW1yE2;i496OQd+D7KFa=(tU^xki`GY#VtO*3PZrMiE}DY{CLK+fFYIl)=$I z;EtaZoacnkH`3?n3v@T#LtkX*Jcce{Xca>jF|@i->bzo$gY#{1&}AHW)qwQ~EN62g zq3Y6v0okB%AMJ>oH|)X}+J*HNg&nEWUYJ2YwX3`M0HWwCTNGUy6GbJ5Kos$Hi4Ngo zODeCbjw~F~awv^>gMJkgLzf=Fo=_N{H5+I;ryT9Wrj1X7`ro2Au~o3Q>Tlo&Mt^5$ zEyR=1zko6R?E)iFw-Vcn&1P~<;44E{G4xn#k^_+AqApiUkh77YtM>_VTppLVk>)lq zbWL-bb9De7?ds_2}1sG*VEnt>dLtePPihl<+3F0TGI!K^<3!8F4z zG1lWsat#IW;2Prcy8^CcSBfjumF7x!1zj1gOolcww3(qT3|+_2R))4Q4s3xz-N4We zhHl*EI>rVMu3@ymmBqn>E0=?Zn;h_Piv=F;h=GT@{s9k3|9jv8^0|Co?jVG}EtET!2UbI6&A^BXDQ|7M!LkT_;)q z!39tg0K%Q^cw~tSOla#}OI>xYWenZT&^-*@3&6m&!gaC*4DMs-(L(|ZEGFYRolhW0 z;QQlvz_rqKZgV`~I?r`J;~L0=9Ah0&_PZ`}t=X6CcU|VX+;xTPN`@X{=wXH)VQ8lr zob%r&*DYg#tHHJ2cAaa+Z2{SqENXCV;MM}}Z`b-J7$2OYr(*lALlT=^aBR5012NZ) zuA7_#F@~OG;GFqG>_p6|;||w7oJQ_+-Q@xT0b|K7hMr#Ux)+QC6B&92j020?e^>=w z&8-6m$g+}V$5*bM!siXHM_m9>o@MBjeVkgM?XIVZ26hlQwX)8ExCDKU8$jTXVY^*0Y`5Djx+S;F&|ZdK zXXp)v-fSFpQ@hW>j@#YM9`{=Z78*A~p+^Wq-p z9z-;EVxv8bq0bq5pTi7nv|$l*2i(bxGxHfkAGDa63_dfN?xF5u+<=ZhWauM?K4#!~ z>^P5;e`{vO*faC#!OTo-6S|AsJb2wb**(QQ)jiEU-95uS(>=>Q+dan(qU8&QzGUbt zhQ4O#8-~7R=sSkKX9%`39CH7(%^k8)hCA$@=bjJYApPA7Im-CiK^ea@EHI3qXM-3f z|A37DMUdgH0~zUF#?UV@kl|jz$?|0PDg49GuMGWW{{#y~M`OH0A!oW*0?=@u#n2!1 z?z0*Cvwao{_xbKs7SM2mWdMN2Uw|6itGR{ZZ;+HNtP(`%`#?;;cbdK2z19L9?khRy zz<588JCD@6H-bQMH@MfkH!utdL|hEJ0d%-Gy8$RKWmsfbKXjnOeFLA+9Slox(BZz> zeOq(T;lAB{2g5SMO1nUZ`yTg$`vM*AhujalA93$w*u$`wVU=O+zY=uJ2`vE+G42Ic zP&RkK(ap>N?q}T3#(3pohI=v$C)KtSg?)13ei4ot-7mRccE93&)%}`#FT))f?!<5x zhPyJ{jp6Qbu1Qt<9APCtM~KN2_q*0L+}S=`=+N438!On{eC=FpuV&}|&f>Ya$3A%O zUJ`Ww?Ec05s~bW%+`p3y_aE**X^Q)A_vzp%yGs;Agtm)FBydm@h3o)!&{}zIMP)%P zKa&R^op2?$azeOalZ(ER1z=8s>>SmTcsdWT>47Z`Lg6g4QeGukM=issVL!{Qlkw`D zR+?UHSzV-rp{WKCYcFH2DRhj5{QPZ!NYN#_d63?eA|7_(98o#G7wbh)lsJ&wSAn+u zGGaSdR74$|07Q@I6;)AV_%MbKXE=f3J{v?s^r6Kf5Wx`)A7!p!*l+r$amOug6S0wN z+*>W~GdIIFn{sRJbj!Vq7j|0fAs)_K>nZjUdyCLiUxxcJ+@IkiH$cqkQi#qU0P^c% zh|0GeC#QhdAUBR#-VNNbAUY|u#EzN;TW#~ZPOLkR6#}okW;b~s3c>Q08wORgtP0F8 zVE63OtcX=R_lR=(I#3)e46GMHdJd=;6B$05Lt-DSLVV1Y`<4ZC!~l4&iOFIL!vh&k zjJvOi>Eh6qo^vAD2gKtT<_8IQuo;ZcXy4%{O|UGjP7kuh5v?8`DGU(v8BQ``OAaxE zjZ+Ly4{!E#fjEKpe>}s1dbAWKm3JQwR-%#em`5~UBd4v&;uOL5yb!00Ga&e>9QMjg zc%q;%?#O5xvVrcKT(cH~;Z&PaXNz;dgIEksI!!L@7DIwA&J|0zgH9>9ppA!& zs?7sh++yOtnyd9~qoX7%94Qb!Ck4Jzd7$ zDyx@Vi7QiRcPnkZ;&O!!9LCOAvU@#$&>WAN%83}&)$Fo`SWL62Vk(+&Q_61yTGE*{w zX<2D0iOJc)U}9=^a&BT~R!Vweb}%(1CncB~$jnQg41*h*5ite{BZP8D@e~yn2nmqs zY61LR1Amo4Hr_%Z02z7{5;`@xGX?I1Aq*o&h(M0s8lf6~m&3m>{FMZ?EP?y;1hDAy zF!1=Y+cRS`K!+VSo>=Y)W@HXM_IOU=i`q=LR)35s*B=LI&U|}@XJuyRcVm@#&ae`#=DIOxv|Wd=%0{8mg(522rMG$d~hLh|Nn$V9bL zxJtMevfjK5iIzVUzCsAnC?ADVAcI0FBtbqGQXj8J8zHRvx>!K<4LqD0k{{m&vB`I% zdm$M40rU{siT0v*ARea|&cXSRiuexv9DW%*m_LQI!r$Q^@K5*`{2M{wff^twkVrTP zQ8(a^N0xzK+iFM=d<{5qJxM-;#J&sLJR)bd{oVOV z>ljYA8FE;h2h1)O7|MNq*Nb6szHkL_CH~Ff{$*km610d5#YJMdSRq!55wS`?qOCPc3=6mo_@;+mG>sn^Nn+vYI;ZS_Tln4OX$ES)2ZVclNOV;t8|> z-C5!1JTyDMa$W?AJ6@ad;@xa#LA%dRWxUJIgsv3fcy_aRws?+su6Uk!zIcInA;Z}W z=P;bha2~@W7#_*+sLkR<;%f0?@e=V;agBHx!yw!zGki0{k2Cx`gF{aGIG?@dxn-I+ z%#+bMooEc1Irzh*{kAcIXTP%B{g<4n4$jr4Wdu%(0cSxfj~WPI3YGIPpw0n)HEp6`jBKzd^8h^&mnj5L34VoqLaI(P%-W%<+7oQ~fj-o_!`tqhN^ z7xn^b211Fu7&{cPze0>dFN{fNJcVANX5@LYziR85YPNz4)D0A43RYjL-fn5RnIWx}FX2?4cAnBmg6 z4M=iHQga)SBufgzVTR|m%LXKA5+urP+v!B=Bz2a$NFd_oGYr&T#_+=bCL0hSr+xU_ z$5u)@T!LJ@4N`*Chv5o_D;tCXQa>)UBbIn>;*;ORiNBSrK7_KqV*w4P+JRCsh&pMI zG+0WMlB6M$UkWe`hC@IPQHE<6u4Nc3PD?gRDN?GGCZ$V3DMRSbFc8OS44=;M84RDv z@L8bx1G)eAI^s(?;3y;IN_o-Issa#C_IkQv~P&Z+)PKlnNa(lWtY z-+DNZnGUYvsd4{vX}sOmN&9XK-1Ya-Rv_Jt+>DXd%jB- zS8l)8A^j7ikZm-HvnIeT%M^|YWr**3aL z^Eej+jeEvkWQ2$QdENN zbpd>3cooBziRXV*2-uu>IUmDG3||OiD9ukz%nu|k2`zKRU`nTPw!@@T8NP_&)&CmX zacVn9TFtr5xzc&k`O*c_h0-bsD!qi^OBr6nFaYSw8NPzyD>q9QOP5HON^7Lcq{}(C zS00C zIAl3n69P+;GW{9BU@#>Ef+td}ke5JuY7#IIpyrHp_?K!CcxrlTFew$nfFKny5G{b! z!3nA9f%K$wU_cOUkpUb6HkK1!Bi(4Xb!}r?z`K(C{`3rBQOU_^e!kxz!U$qRg2BuH z?AMe4gcMm}D9I_w5V-**Am%4M2wBcxZ$R`1Yudg^emeQ1T7^6{F&(x^8yQ-9)zMWYe^8j1u`Q5)+boj_+mY1H?+BNP^oDd zNomP2IT=75z$IY?5(CL;X~0M!f+z#(Oa@lUTLKA{mgG-Q2?SE$Rw}Sn;G^m3DM|iR z;KLaZ6P60%jPu1Oe(=oS_2yn@lRhdv)&^fpO;3lQF&I!0-PiRsVP8a87Z7w zrli3DGGlyk7Z$gn~^tTWcIYg%4vzA`GrmgUzJ|xJn1zF4!Le& z__hY=4e3pW?_l`BW(tG!UQA)Qwb+<>2o#2qkqEq8pfFs`!~7Dtbs-5789*xZMkQ1F zIM(Ft#m2Zp&}5TFYwi^fkXF3cO7ms6BKzMyza-gGvN( zkOjtYyAE4`{LBT&FAU#nj-H-9xgd9JUU5EHMVsVe$>bq>@Y;!3N=@lcw6pG`CxWJx~m^)0gHc+YzHoQG?rBfau=Y!HI zkCZ_nc#+|k8syRP7=~YF_?3S-`azy3PXR?#o+KB_MKag}UuF0;hJjnXzCoTUPm`z1 zU_5w(VPINsG5q%bZ_y9VI)>$ifN$k_5|bBjeE6;f5#IxpxItbd43H}z1RcN6byRTd z+FuCz0d!wED%aQ&$!U3s3~73Jnq_-`atJE}g#8FaORGqE*_2nd6LiXF%jd}F%IC@F z%NKCa`3b{6G7N^1pBV-Q_bUgTc8jY4-N_frm&ljOYvjx1%NhQZ;m;Wcmi#rtz=*$( zqdR%6EyTgUEslbcL7(Jc3r>1KUiY_nBFLGdhIPB1S711n$wRnhWI*V?y~) zNVISW;9DVt;e{b65n_=cJhNqlv;0}CwZDsvMTelZ##8L*kV)bBfJ}L&uBM4aT6f`V zy9)#r8w(C`7vNm0tnxtZ{}5{*9J>Bz!ph}eV=cOhjfsb5#NZ-U8Erkaf5jRSi;aVf zs^-~Fhk%z!crKiO^4~mAFKk`0|0>~MqtzutAnkVf5I9XM=6@tDXrhTIB-XrKY%Dx9 z$X5{F4CB(?U_Qf_RVZ{!jROa*81~LeO6O@Hu(jnkU+cLI6_Q$h1 zI|Ny!M6K8crJBb!kRkhd+y6 zhF0g-2h6l!DTd0Kd?L?cBrR@YP|i`#Z+@<=T%cUYNIE0di&_sDP^nz3T)wY!ZRHB( zN@cBb6(bppz@{9^2)r5Zzc8TES&t3Mjhv@!R5mG_l`YD3%2s8YvR%1e?yu}%O|KZL~lbKq1MCa<_61Bm7-(7Ec)q(b-^d zfJ`~SQzkKDy=|;@4wC?Q|H?9w{ZO_S6yHi7K_0w`U+1+)n-^vH*e;ZK+-He@|*3g5*g1-9zB5dVrKj9teA_ z_W(0@QX+YdjR|AVFe?<~Vn*h}{Es&JJ1d>*fmoAz4{*w|de2Bkz_-cr%{@RiB+nR6 z0jH|Po^h5uUIbL-;TwyQ@>W#kqfUxs&t%Uun;0Q$7|7wu{XOP%agGO!#oIi^o)bJF z&sYn%=65b`+Le5sbT~ws%Bs@CN+%IG6K7O2_s7_#$UJ1vnWQ95%)Y{fJKuv z9w@cUVfcrjJsT`0&lowiC6o7T;e)!4k<;Q#-m~4a0~&8~B;>i#a}y({Gjc}znEY*?yZ<#N z|Bz>=y{{gz_SISK8TM12mpGH(<$2okjOSU;bDrltFL-u)_IO@o$^ zg!d&QmpHrW8;+u$^?V1PA1nxUsr7RW@cBMQqC@4sdH{jcdwyf&@_Nr7j9k&a9px3g z#M)6_Z0)EkL3Q%F%zQ@Hwr2Fi8*9z0cvXuay>v1KY$$jIcuHe z%>iQcf~IzTy%#jK8`?>Xqr78)ti1Ug((mAq-aA&<%gBuo1JTM1;C;C7@FVQlC_{7_ zF7i&b=@Q}v05{yq>2fTm<{Mj8;5;(hyMWW>9B;Ar1aHVY*IVK(^@hFkyz?2kosl~j zxs#E*7`dAfP$=(Z@Fc8Yj!sfh^&}$itj0;RldqcW0^3^@72r-U~u+XT2AM-lOd#%hldXIayxJ$r2JD z0a>o$n&#teYMQRMo#w9cUTYI0WXS_!d=jL#cZ~(2AKxc6ZuEi~WUF_Rce8hk_d4%Z z?>6st@AcjrykG>`#mLi)Ji`bm)6X&TJR>hKvYU}TjJ&wj8?%6TZ;MgmU7Q+Ua;Op9 zOk%3pTmMkwe}Ebv=hXNFBQHDD2%e4`yia?d;U7j`VdPc&C(z?yql-f#FM40*6!{V( zd+WVW==F9|tg`YwtJSZ@u4nzxV#&{n7iA_h;`fjKCInkCFEo`GAoR8Tp8jj~QerC!aF% z*;emwG4A-6O^+((^!T|$kKhawqsJfqp~pi{kE#LmsQMWBB1VsDC!j~Qv)YA!7y*3w zmHiXw(Q9;yQHa`GJsjv!g_E0a>eU2BzHJ{ps{PcXfU?y7oF2hHro2HN!0GY(Ht5lC z{E5{hHDHmW>bJ=8M<7Ra04K-q_eG9sP=$99Zc{VVOm(PwjC!nkoO--EOdYOfsQ@;9 zW(3IcS4MtgJ-4al2hY4{TOYXK@mq%_wn5_yi!~eI7lj^VKp=x(gU})vF5`b+?mr zD^)8Q=VG-A=$28DQ(+XSkV>tn(5IF59Ui{1X`Gx|r}A?ob(y+cJ&92dqh3Z;I7d=X zQLS?%sxjJDj;w#zXH`9mPtQt5jktkAJy*SeZ>YwM-RgzvDn@;bcHon7zyl@q67`CG z9Vn?+s%zD&)T` zB|rt3G!Y(b#b2Cfe$p_PazCrTsK2VeslTg#sDG+|sefyNh8XoT8elY;(G*5g8BJp} zozWnp8H{E!I&_;xY^u~mP10md5&COhPM60xba_0ZIgI8qIuVQ}bkhGl+HAKJ`rkj( z(cq1R^&0S(V`D_D9S%gSCD8u-!{~8vWNrThB0f7tAlgyd(Lll)Eb6d&Z6Kq=+b8R^ zB#k33Z3rjfEKb5&GQc#N-3CnabuH>UJkPeTIL&5i$APTVhHA%X$1O+Kq1p&OHzOH^17)WRqqT8-J2i?ptw0;k=x9dAv`fTk zg&G`DwVewg&6@H z1`vAAHf?!~xtyX5x6j+O)3q}gEq0ho2%NWoqww=K8fJ9SKj&=`NHEua1btv&tU-)P zy>>C9Cpau)&HjL~cC`j(sCw-hM(5UR>liI*C$rd~Sx9QJ21p8kap{4Ply<##Q=4E| zyG6UzVi5Bfo!|1PO}mqi=PpJUG;Z^IwFg>k^9Qwu7%gMeI>A05lGPs7p4!(oZyU)v zJL(1PMN3|5kYF5kRCzl_y;u7X@T2y+_J;PR_Llax_Kx_5q`nj7Au(V(=;= zTFq#b(Hcf;8E3#twrU^6Hq&RcfD8aR{S}wfOP#F**&iYdA-KIB$s6W!(cCN(cMEih3Q?y>=d6>xK?#Xc}}M zUwp_9UEZK~;s6qC*ljp0xj&3iq~1gCZBeA&%c96r0YU1WECgxpi^=PK^&!CI^?rJP z{Yd>NeSm(nK2RT|50?AuN$`3qMuBCY$>>>(u4MFVM$cjNTt*=S#V$tA-=_O*y3|uG zZ#sC_iJqwsW%L4vGFQdC>7txAFJbh`f4Kai=JNVTAWj_s6{O#=(2za`h_mhYpE;B= zNiX7rS;*)`^*TuM)$QZ-`gDC3r?AEPOpDWB3={^$&%G+(hs$4s?Znc zWfrTyl+iUUS-oDt2L(LwvN)^PPtBkTjRdVQIG%D?1Qp`WRr zZEviV*2Y@fo?&08UkSWkU!`B9uhuWtFVQd6*XWn&m+MzBdNrdUWUplugls*d4GdnF zMmI3Jk_3hkGJN3tbu=Gbcqrbso^iOa# zYe!pZ){0F|YtQO0*yQ-UMUFQC^3b2)SboPoH{mP#Yr?>K{Z&S9sn?-}+nNO}>TlZ- zBNWnHOggxTkv5}|tn`dgh=YMQ|AlLu#Dn^K`sc#HE&BWV2l|KlNBYP5C;F%QXN=y? zD9r4gi~_W~o6&n1y_eDZw&-8zU+Q1!U+drK-|FA#-!lsH`v9Xbzku)_X7mvT3IC{- z$f2w4mlrPOIk}s>R()pFdef_wsT)$tm4<6VW#x?#XOMZfsyaL`TwNV5wS6kbLd>J} zO7hv!5_n%M1SBPfs>308)~+d$r|XDa(&5d9H6tLEC{Hm8g=X_tbuNZ*N$bANi~mAv z*Tr%^7|8k?QcCA%=jX(-SB{T8(%7fI!^G{&sq zGF7)TGsY%>zf8O*PgTy+?Y8V5IL`XSc9Bm9V1{s4HeTLCz8GVk?=QkKh#t_4AfX(a$Mt3t8W-h|# zc5t(-p|IGRU^fdkO1gCq{MhmfAHH+bw3-mX((lhHLmc z3Zk()#*uCGCRV;_XTXZT&q^%PG{8Hj-T<(+#~l5laU97YK|wc;H-;I*jjZW$KUYRy zX7nWn?}cfj@>dK{jBR88q72D0UsD6jFAR_m{%ADCiU8SW3(~G0P70y zs@EBP!}L$F$3Mj$qw|i7y3U@IB0edAi1@pcViYsY zD26v~8Pkm!#!O?DG258K=v$0}LHHd;0hYhV==+<{L?gtHoQzU5(FAV(0mx|3yg!1M zVE_dk(PSwgL2XsIx~7h2d(SP4R+We9cq0BLnOos~=3 z=vc;z5j8hMwqleUt}2hz@kGieos>Ue)cAtD@rA{?c@xHtpFS?Hps2VgYtqQPBD#<|9M#`(qt z#)XW2%;+bKe#$7wk~~m`47TDgxlyPAf8e|@H2(k+CJ_Cj{1#b?<$p;r*Q+2DFW5$KA0y(Z>uGDe0%Q)I zzL(P>OJewsB!K||vXTEASS$k@{~i3Tb7+1jUoV;`isJP>Z^_@_L<}t;&`;LipmQoz z0NUqk-&4NBdu4DPd4EuEFAVf0AgjL@7U$clRG|GAk)ywxg_OJ}Q z3cQ3IA87>cdWq3SFe4)PlMdeh&B^gbqrc@%^8v5ndj)(?c2t(kFfcWe0Rz3hgO|x7 za&pi_6qr4F-8vdLuL4j3KW6K38CdtPU|%W`oYSB`GT%Qfuv0Ri-d}k%HC{9d8eH#GaBTbosTA<%dw{w4^$rhHQ=$z3mK7m@|8+GXG0+0xD;f;PL-D` zuT);EykSEYvLTDuki~2WAlnB2jp}?SQr~L%7baykw*~zr>KoOWThWm}SdrQ{=+}k* zN3hCVu*?bGT+VYl&S%*!|Ah@%@+ay8$O8(%JQYyDK#2`m%7!R@B|QIMIVi||C`S>x zv;N;Y6<7o)f^-{Ltb%1jpdk5a2bKb0>B?+~3JbpWTf4z$kFV6$NT#S|1b#A*yYF4jZDza@q(w_mfeO?>Zy@DC2u(hJd-8#%{m} zFa}J3<-iJHCGZnq3YY<_*r0SXM3W5xv(;upz-)Ed5Ir_TpA9i!LkxEV7J#K3cvuZs z18~3wum$YEgA9lf8)6I|Tv)InCTz%ZHe>}GvXTw?2@G;tpZ3-91-Q+E?VJ01PL|z2 zJ}fONiIK1&Hq|RWHaZqmgaSRq{~3WxT?;xn0exhE#6{&tHeUsv5<$U-zvT9vAA;H{ zbI3n$^FIRTO2&e^rtz7e_Q;D;H96-+bx6pqJK}ImsBEE{)!~TXwING7m_FgD2m^0||3ufJ z1B|AmCnSJmd~Q}!BBNytGBxlkAzou+hXwsSt33R=hJhftY5@=oYy?8s5I7s+$cDK5 zZ~zH}0g>QC1rQF8c06MGtN9E^N0Zd@C z?8Fq}#D+Mt;B+~ol?rl3Up2LW?1gj^Fz@}}wX~M}ziMfnT(p?VNJ>g$$#<)0D=t-4 z)6+LK1D(bpOkCZ)WimqKz%?5-&Ivr7o)g>xC4;`TYXu!V8A%1zcTj0*jM(t>w8&JJ z0!xcEZ#^ZQPLGU?h>SR`t^w85*8LZiq&6+q{5Bm>Z%P#uslg^Crkw@lyNsbG%R&7v zFhnMR1eO#9n#5>X5r0U!fsrzUw%p^VxgG^dR6xzD1uW3ziiXu!u0qKK9a<#>;$*pc zCdEgbhORQVu!Mn}V6LP;^7=7Xb^adnrzUAE19h<$uolVMVr{1@0QIj}i)G?W0#F5u zwG>o%QfH}xreH1$S;c=O26-7M`bCvh1REJ9d%pPoi1jB3s0uX)3B(1ag3Rhi)F}<9 z8xoX|g0j?PWqY7?+fkk}0i||~7Ykr5la;CqCjFjsJjfD~7=Ij#fero|LP2y;@VD8}9^?=HH-z?88S6)nM9j^+_E0c6sF?Nl@P8;h5#`9B zAXt)Ix?GN2k=!=9dbviq9da#lopL>LBXS4ira=X$!*V~%{UUcp?wZ_Pxu<*no$`P^6Bz9pfXgxe4+eSd5-)x`EvP6`D*zNP;K(A{3H3t z@=xWT%fFNVDE}GMgHlkKudqO2k-|?39txfc7*HFEs<2UElR|<5Qz2V{qfoA}U7gKexIi>H>H0lK81ZV8sC2AfgUm)znhOOKoNLe0opzmzy>0K z0-*4#1w^nRuAmWQL)_Sq)goZ4JQ*kfO20~eLy+K+1;m{VL9xC`f1CVg`z4z+;Hk!c z27v-oAjtH;2Yr>b`)`q;Z)cFKfC6~SJr>P1`xH6mG|I*XVQ)LPku-v2P!0eM)b|q~palRg0)Gu_ z1KQaT%r~E%fDk!e3iVlhh zMK?vHB3jW)(MJ)ln4(ys$Wz>@C{pZD+znp3mw?yo`xN&n9#EWCoK-vm-e*4s-eo_f zcw?!_Qo>T^(z>MsOOG$TxAc|LLZ!t@ib_gK%1VHeDtOUFQ%PIN61-*tSF%;IS8@ce zjUd1)BS`SN2t_Fh{A8c2)CPX_eNgGV(jBF{N-v>Hpi7}ps0wr$R1K;D)q?6k^`Hh& zBd8P91^nc3HTan$3W|n$LA{|kC;{pVB|#IQ4bU;@G3a$=sIrx^uX3DnxpJ5CsPc^R zA>|{=N0pB$pHM!fd`@tDrE3jl&i8+MW`~NGOaSBa!BQ* z%CF$_`74!=z&!AIQ610#w7`cmCjbc&`gI`nr2~;5&y58bKpIFHGk`202dDvd0aL(b z;6CsGcnJIkyaqljQ(tDXY~?c3W#-E)msu^tEelwdv@B&=s;Ysisj9!~T2+?n9n}|V z^VA?}3)L2@DXJ-{DXRf$s%k6Leo`}2Ggq@zvr>br*{a#AIjRM#ZBeUI8&o@`_Fi3I z9i#56?x*grPFCNb9;CieJxV=JyjJg#|C^R(t! z&GVW!HE(O))x59yQ1ds{rvs#C=4r~3a zbwTU0))lSmS~sU8RL8g+K+2z7Sp^ym!fjO$2sj_91%xu|nl=ZelXof|s0be`$F(0QfvM(3T*2c1tk zUv#x~?R0&0V{}V&Il6q^cHN!2BHa$%-MU@6!@8roGSpL z^&9nf=%3WTq<>5Qj{ZIU2l|inAM1ZGfEXwmC>bal00!Cyx&|u@&;~vR(FSP-OoI%A zEQ11rB74wRMsfOu>8HQPgIfiwH zLPLpRk71wTfZ>qgq~Sip1BTOvvxbKaZyL!PDS<+~2qSl+bw=Sv@kUG|w$V1Da-&M4 zDx(@Bo)O=u!)VIru+cH26Go?u&KO-Wx@Yvj=&8{=<0Zy`v5xU_V^?Dj<8{W##_7ge zj9ZL%8c!RaGQMnl#rT@>4dYwJzZpL~Jy z(;?GSrmxHl%-qe^n9?Sjs*Y91%omws%~Q;?%!|!A=G)9G%&W|6%zMrE znjbKqHlH;=YJSZ8g!w7+hZajMv@PHkwifmljuy@q2n#n0q=kotrv=6WYq8OSW)WsV zw}`ZewurTew@9*JSfpEQw#c;LT8vp7wK#9_!E%|Uv!$P9ie;^(z_Q1(-*V7$#B$7X z!t#XWMa!#}*DY^a-nM*h`Ofl#;7ouvAz&Y%{DBRt?($Yk>{Gq_F+4gRoiHVc0p?E!Z8{J=g=-BiLiuQ`jfi7b`id zc~%gsMOI6!mRf0ASy-X0NLE2s*;ct$9IFbeDytf+I;#e&CaY$veybU)<5m}}E?Hf% zx^8vL>W=jSYZGg%^*U>&HOG3p^?>z|^{DlP^JHSrOPSZ}? zZiStV9l~z4od>8?jI|@#1=vyT*4k~b3${zO~Lvy5x58u3J7Hc zfKWqdB4CJ(h%E>w4FC*G$(O*F0CY>m%29 zt{+@KyUDpJxvg+Bbu)K^xxwA++#KCp+}zyU-8|jA+=AU`Zeeb8w@9}bw>Y;%w-mQj zH>O*LTb3K&ZOHAC+o#n=tFfyiSC_8tSbcK!lhtome^~u__3y|nBp6_1d z&T;3uSGrfb*SU+__q!i=zuo_W0Vc;oTT@DbrW?P_11H~=R(gV zo=ZI$o_U^Z&qB{)&jHUT=!Iw%v?^Kyt%Wv5yP@5|Lrgk43LT3EPgl_lbUHc%osF(V z^U)3H9q1Nx8(M(wLJy)x(BtU6=zZt|=o9GE=yT``=sW29=tt zBf<1w`Z0r;VayrKOD|0?7q5+81zzo5GhTPFP^<;k9_xffVBN4@SU)ToOU16mZomd( zW3lnrBrF4)j@^u{#kOHZ*iLL0winxv9m0-aXR&9n7qP!$uVHUv?_wWdA7MXuFZ70b z1Kw)hn%)N9#@;KuO}$rnJ9`tnP)LUF0MB3wDH2Dcqo zk88wD;P&G7;SS(taEEa}A;NHSyZ`pYUdQ zbG#+q1@DG;$D{Cmcru=X55$M#Bk|GrSbPq?6u%8$fv>{%;Ro>}_%XZ`KZW0qpT-}; z-@xC--@`w||Av2pe};cgP#{1EiwKGYC_#mwPcR~w5LOUu2=)Xgf(rplz!3-pU&02$ zMgolxMo1&D35A4WLMfq|z$4TV8VCY{h|ozmLimMnf^eE}j&PCiE8!a9CgCID3sIgp zpSXayh`5BPO4K775>1FJiDpD|q7xB8bR!~(1fn02Or#J)iF9HlF`Af0+)T_QW)sVa zjl^bR8&N>)AJLPxQ?}FcDzpH-N{XUbHkd#TwNa`dVk{-#BWK4pS>_~1T@Rd7>Ornz3lY&Sg zq)<{4DTh=*+Da-VZ6no?wv*~fO{8Yh9?}%)2I(Q`G3goU1?hMH`Th(2m-s9DFY{OT z*YvmZ_wdL06a7j40sevhA^u_h5&qHsoBZSbv;BqsC;i{}|4xRIP08kD7#U8sCEJr7 z$?jw#nM4jC2a?y3gUBJ|P;vq}nam)kk=f)z@>X&Qc?Wqnc@MdV+((`y?~) zIzgSLo}yl)UZ!55UZdWnKA=9LKA}FNeh8cws1m3es1c|gs2ivsXcLGGbPx0h^b8~g z(gT@+nSuF%<$*PUErA_@JwXeDmISE=83&mKSqHfVk%9t(0)y5C1qFo!g#|?fMF(vP z$_>g3$`2|EDhVnJDi5j(stw`?)d%$i{StI3=y~vpV8>ueaAYtmm>b*_+!EX#EDY`l z76(g$dxNKf4+PHy9}Yemd_4G6@Y&$=8|62;Zj9VmxAD-%mm#naM2LHcXNXq_KEyY~ zKO`W877`W`5fUBJ6w(3zN&_-yJv;jmxB?u0!Fdmi>G>`nN*@I~Q@;m~l^aE);7aNTgHa7?&w zxPLe$d`ye#^cwnhdOf{~E~ZQ9z4QV4Fnx?JrBBlL(NEK_MnEDABP=4kBGyHOMZ`xW zMKB`LBQhegBXT1+5!{H%hzAjGBHl-QiVTblkBp3riQE@?Eb?UJnJ8EkB5HM%N7Tls zsHoJaw5ar`%~7l^&;wZ)VrvUQD36vqV=NT z(QBfUqBEkiqqjt}qRXP|qIX2MMhl`lqIXB{iSCY`iM|+pH~Mw-yXcS6Ut;8A=Ep3I zSrVfiqZeZsV-mA6#w^An1{Px-gNh->q{eV#>SOw2W@3)V{2FsD=4Q;DnENr0VxGi2 zi}@TY7dtODI5svmJ~k=#Q0&>*3$d3s*>6H^!ff*1)VgWUrk+jxaf{x2 zNGeF$npB#!EvX`@I;l2EnshDcx1^UzZ<5|8eM+8}ydZgT^3r5zvVJl$nVh^KnVuY# z9Ge`MoROTH%t|guE=ev+E>EsZ-k!WOc`EsrGut z8CDEy2ApBbaAhDFC`Pj48$e#th>y<0#`8<1*ta<3=hX)jJiR>YFM`?N1#_9Zg%7W|(G@wlZx?T3K3o zT2AmR#=|k!J(vPJ-Pk)vEHvL2TXQmu; z9&-V6F>@(XnYoOq&eUS+G7XrUtFq6g%XGSt(m~qTRW(qTn z$z&EVi_eAc`Ea4=7p?fS%z80Su3(kv$C>^vr4nJWmROG zWLsz3WZP#uWhZ6lWN*o4XBTGQ%YK#pCi{K%ryOohLrzmpOHO;v``iV&i*glnp}EDm zwYlP4Np5fMK<;qvSgtg8D)&I{Ozz>_qq(23i z+!p;UZd*dPsT~a zI4hDB!%AW?Sm~?`Ru-$2)x?srW>|+=M_I>Mms!_Yw^(;sk62Gw&si_o%4|LMO12r> zf^EgNVI$b9*&b{(8_V`#uVu5@d)TMgm)ZB(zvnCDL-H5pE9OJFU` z1!DyV3T6rp7aT1(UU0JDbivtzn+10Y?iV~NcvA4JP^nO-(6G>?aAl!+A*>KyXj_OX z#1#4#`W5;YZY+!_j4s?%m{6EjxVbQ^Ft;$Tu%xi6u(pt2SYIeA6c~ikx|jgBC{fkB6yKqkztdT?WHG83Q|w)gFD4ep7Bh>p zi??t{3^0HLB)Uk9! zX=Z6%XFl^!geEj?U%uJmH*ucg;YZSbDGx@G!hmSrwwer4n`YT4Sd z4P_h4Ld)o7QDw1Z@n!6?!m_PpC1sp4Zdqknby;m0zpTEjv23L5eA&ls`rA<3qPLZ8 z+r91Zw!7P&ZhNuq^|rTMIqqWaQm!(08CRXF$<^lSa?Q9FTq~{(*PiRhrEo*Jk=z(= z95qY_=|RY|Q3t7KMYR_0XZRpwU~RhCqiRhCy)Rn}H^R(4fN zDtjvXDhDe^D#t1(Dkm%VRUW9kUio{~@+z;Y*s6-E{;E?|&#R%;n$ZdjHYZlflsZpv?sZp)bsL`&`t1+xGsd1`7)VS3kYdmVuHP{-T z8hnj!4XK7)lUT#8>8&|k^R`yM7F8Qsn^)UZE3ECP71!>m9jcwI-CsLhd#Lv3+Fxpq z*Pg7sT6?4RcI~~|hqb@)7V|WCx;z7(G4ChdDxL)o#&hGj^N2h$kIGxi3+9FJ!gzEZ zgO|svKDDN2W1n)HO9Pa|}67LG{8t(@0%Xa-i$Sm@nb?@`w1N{BgdNf0TcWf0=)se~W*Y|A_yX|BU~lPQDIWx3bQx&Z5q$&Zf@3 z&Z!Pjx4O=w4qb<>+gKM`7hV@p7gZNq7hjiHmr|En$E?e&%dV@d8?L)t_qpD<-n%}c zzNCIv{fYXg_3!FG)_-Y`YgpW{tU;|oqd}`dr$Mh_RfA=Nb%Sk#LxWQTwIQq_sv))^ zz9FR{wSn1?(NNsLX{c#vZP?YYyJ1g5Ps4D-Sc9}-s$qY_$%Yq=kVa^uW}{A{exqTd zWur}_eWO#OTcdlUXCtODv@xNP*_hdw)0o$o-&odI-dNRG+sJRMZ|rD1)%c}pc@w6n%$b+ zn^Dc^X0PUe=D_B4%|Xo}&7sY?&79_n=IUl%b3^lv=GNx+=HBN1=BeiC=0nXtH=k%e z-F&Y3Li4@mS1pPy&=#OYtwpm%r$xWTsAYM}Pc5rjEL+em*cP7_d<(IK)DqAV*s`u= zL(9e%T1!~VmX;kY`&w?bE^LLhu4&C`t#2J^J==P<^+xOM*1N4wTi>;QZ2i(E-!{K( zLEEA>^){_G-8O?Z)JN9g|>yaMYN^1G28Omwzbu?ZEve@Yibj; ziP}2by4oad(zX+A&)YtH)r6WtZJ~+KLI@LD3vGmULIS+Ab1^MnvPHy`p`hgQ8i{ z5z#NA6Qa|ibD~G0C!%Mf7ou09x1tZC&!XRVDeRiRYr(GNyF7PA?JC*Twd>TbHy!F7 z_8sJo4ILXhLOa4c;yThgHg{xorREvg`G<}l{%Mos&{I2>U6H^bnNu)^zWo}uIXIg8Qe+h4DXEW zjOmQ)OzbS`Ea~KQZtE=Xtm>@o+}>H=+1T0K+14rOoa(%`d*1GqyK%ddc5mC=v-|k& zC%fP7{;>P=?%&0W#DG{$tSQzJ>x&J=mSStMt=K{AEJldeiX+6a;&^eAI8D4+oF&c? zmx=4dE#h{uP~0Kz7Wat<#UtV|@d5Es@p17f@fqU6ToNgXk;F+7BuSDSNuDHMQY0yna3s4V1Cmk6gk(~3P%lO)cvIUdH1XCH$5sndOg-X_?~q=aXq;` zWj(b$ydHi}YfoE`pyxo((VmMvmwGPuTOIgq-Fv9_=RTc2(>{2gU7us0OP^bxSD#NG zq0g_6+(+rl@9XWm(Z8hsr+({x+kS_Br+%OQfd0V#b^Ss8A^q+B;{K8T$^QNQ)BT6~ zkN2PIKihwy|5E>r{`&(;1FHsH2QUNP1NZ^r!1{rxf!KlgfusS(K>9$&K+!<)0B2y^ zK>0w`K+OPeU~J&rz~{l`gSf%iLB?SEV8&q9V8LL~VE5q2;M2hugRckQ4SpQ_G9*7V ze`w**k|Cubl_Aw3jUnwJy&=OPlcAMEW=_vv85ub}^6SXeQOGECRAtm|)NK?wN*j$C-88y= zv}Lqy^uXxR(PN{(jlLdzJEk#aIA%QNI))j;j%^xC9ZMgp8EYDA9=kktdwl-5;<&{) zYTR#}H10nhFisl}9S<9)k0+03j^~W$jpvUSjhByCjn|Iz#~a3*#*dD_oq$dlPnb`@ zCg2mc6X*%-1a5*jL7Hfu*flXQF*-3ZF*$K?Vs_%l#L`mNTym!am?!Ega6($!?s!ZxmnoZhF+D|%7A|_W) zVkdEv#7WX*z$A4tVX|aWFnMnB*U4LxcP5`qzMgzH`El~gl-!ikl-iW$l+Kj?)QTz7 zDf21Vl=alQsjX9eQ{z+8sUuS-r_M~BpSm=4W9s(Qy{U&&zfHZI`gHL9!B5kRr!}Uv zr}d@{r%k3;PMb|TOgm2_rdLmUOnXjarm@p;)0NX>)3>J|PrsS|GP7`I$&BiZ&Wz!V z)r`{&V#aL-IYXH7oAIBa%&eJNHxo7!F%vZtGm|pIm`R(-ovEJT&D6~_&NR=o&Fq}n zHM4tW&rHuu-^}F9zL|qFv$HO<*jb-h!mQuy&$Ab1FU?+=y?)5=P|%@`he8k051lx4 n< - + From 5f44e71b01cd8a476e44957439b6e1a75274002d Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Fri, 19 Aug 2022 14:32:49 +0300 Subject: [PATCH 11/12] other minor fix --- .../UserInterfaceState.xcuserstate | Bin 58127 -> 58312 bytes .../Views/Base.lproj/Main.storyboard | 12 ++++++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate b/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate index 14da3a6e021a08f55c928e7fa2b818e60fb628f6..03ee115ed49ee4218e0415a3e227af3fac74cd52 100644 GIT binary patch delta 23085 zcmcF~2UrzXyDrmb&z{+AM3i0y>FiCfQk7<-7X_3K3fK^kvRMcsND&4QkZSKW#$IDI z8jVJyvBw%)G#YEHcMZk-`A`1mo_o)8)EW28nwf9CUwOZ8t(jGS4Eydlws|SVkBWom=WfL1z|~8 z5sril;YxTAqX=)phZs$aAp(gYVjMA^m_URP;Y0)xN5m5e#1vvGkw~NxX+$&flpSL6=zYw`&B4SAIOmOMrtC%+?4kSEFS$y4M{4f~YVml8T~YsYz5kl|Us@NmMG8MrBgdsOi)UY9=*{nnx8K z)D7wZ^^kg`pdM4dQ*WrZG)@yVNmDdUi)b}^7(JX;r!{CD+JH8uO=xG@g?6RgXm{F! z9z}c70dz1umYzUQq{HZNI*N{_C()DX1bPZRl}@2k=`?y8J)K@mH_^>>8{JNK(cScN zdIi0PUQ2JJH__YZ?etE17p>Sw@23ybN9bepar%4u6n&Qdk-k7*q_5Cd=~wh?`VIY- z{*!)3zo$RYAL&o@XOWT!7l}nGq9Gzpk(NkXq$AQ5nTSS;OhvXLJCVJ}LF6cM75RvK zMH565MIoY4QJ5%8lr72;%@EBL%@WNP%@O5_=8Ez}g`zTrXuhaiR4rO0;zdoOW>Jf% zOVlk|E7~a9A^KW$MD&g5s_2^Ny6A@J7tu}8Ezxb!9noFUJ<&taGtqO=8_`=vi9r~Y z!5A^aGA7JO#*{H*%oz*DlCff}85>5%*fVa7JLAFlGJechW*jq~iDaUfsZ0u!#VE3w zc}yY0Gfhl0)50uaTA4Pcomt9sFr7>e0xySsMDVAnMEW?UfmgQI#R-IMovU==D)|544%~@O4j`d(iv7W3K>&K2| z$FVVNEIWyv%*L_t>|8dF&1VbPd2AtD#1^w9tb#3N%h^S24O`3dY!lnTcCuaUDt0w{ zm_5RN!yaY7WskAP+3(mB>`C@}_7r=T{h7VQ-e7-W@3RlshwLK-`@gxQ-JsZWK^jVK)eAW z2gtpAjnBsC;JNr*JP*&u3jmS{kZAy!4v;K>WCJ7zATw6ug?JHOjF;dF zyi^IQa3(-X0HOd$DL?=~%J|+%Jqmo0((_e#4PJ}a;q~}pya6Dy05S(4a{-bMka++p zf||j~m6Wjxya}tspdZWzh;D*3qOeeI>*#Fl>}=;?XD_#Nw0Ci_v(&e8aCEYElFOX! z?d+WF?49i#<;9lz@KTwbwcOs>!NuOr$;sZ)#okh1E_YElSj(MdPPVqrE^-H32gl;# zL0PT+vU2-mg$uImovmFQ?VKGP>}}>gX4h_cu|tE-ucFj&eJ>+}=fyWGjQxU7!fLlf6vtAb0uiN%}jeo_k!OqzQ8Vq(s-e)R1nZ3O=e59kJ%*Ec>QRd(TyX5R7x3+hLeG-oC;gkN7wWeQI z@&8TM-$cp!^k=8|2U&J9TRUqP=oC&aG6>#Y4sB)R`9S@cye3IwFitk&o0QCZdP?O+ zo@bT%{v=3E3t=~9*7gog&USJ;TL)X{mX`XqF4oRYE)M-}<^(M$FYf1q?T`=r@vrb5 z_}BPOd>26G1Ed@v6#!WPkjm1ru|6@eR(8%-b7Zq({e7aXvZJl0riH~$&r7!Q4zS8~ z9vvH=k!5A)W0h*3%@=!(*6e@mVWo$?_z{3qmj<50zlD5q3_s3)^wLo*0?7V#Rs0%$9lrsPI)E$&nh1>TMu6~tG2N|x zKCAyb(|HHlits=Bo0Bs1Z7l;D}+wa6+BXAT$XrLK`66 z0O;TBu0NL3`a0I0NRfG*8 zBjkiFVMo{lWHmt60%ScvHUeZbK(>A%IKrvlmDl{m1d!ltGMSS=1%D?v z$YuXbI+prQb}rTmM`swGE{<}!lY@ipU;IY6^^00J7&ZTMF8vpN`-^o1f+IZpWo`Hi z*8c{V3X**LCBeK1c}HMvg+SZ?8(d2G_lw%nCraSbf22}Ku>V6YC4&0}Z5y=If8x@= z@!KGkD*k(1`tSTkOe8}73%`wo{O0Il?c`$T46}uuy_3DIkZ|QLPS(zj&dxA@I667F zIQ7#T5eZ3vh>9Vii5Mc5fK>=&xZMER1CYG{+4uiOZ?O(@ZLQKrTiHh>o>S^n>LQYe zWd5MPI<|~R;rIKyj!!2t{vxFB0CMPWghb>BeVIYbBxVt_30Pbl2FN!6ISP<(0dnjM z9}#)|q;uro`N)o5*xzzopd;gdpd+Gz;FZjK3CM3Jdx<81e9vzltK~toDm`3Av=NYn zP66axY2W~R5uHS@(y--37tu{XS~(4n9{_S@Ik8O1lz`N7wsbf^e&ja>1&`Q3Z26}P zx55h{*PItF{E62NcD3G39DsaC>>>6N`-uGj`57RW0CE{1S5^=Qi9<*U0dvAtfZQyF z9C@2B5BAbLLHr=xa+3I-I7PrdTm#5;fIzAa@0j3gW&1@&N(M?t1`v@E6G6h-d%Q_vcE+#0!A@T51W9`=z$gV^dP+ zL}sMq8F>{=?8~HsN_tCt_^10nLhO+69}3tXmD=)w#Oo~V*YJ8Y= z^3*v~C#Vpsx0j7ujabm7WGSk0NV!xjk}8#|sjPpuSvt(p%GyRIhnd>V-6v>bNNB|5 zxcI5be8_|c3K!SN5lPdh&Ym5emyw;ElNachARRg*W!CJB*>h5|=L9ChT}Em~%B)gG z1sPf@icA$A?Y)a(_hN=87FZ~jb3y5byi33-DKMcq(u zbRpV_?m+jU-=L@9faxCk0DXi$M_*$I#$XnhHRgnk!p2}BSQr+8MPV`6BrFjt#u~9E ztOaYu4r1S9XR%+f+t_2A!>#ckI4?LJ&J1SaWpMVd1#g2he(Paf)%OQQ`u|rbrS$(8 z+~d%>pY*W+$&y^$_^@%gbEYOvPw|7sUJg%5l$J$89Pntsk4P!0sbs#ER3V3us^m~o zjT}Y}C)G&}fcy@SX8?H)kUszdUGgPBUIFAaK;EoXG9|T19a5Jx(j)ar1JaN*68!Bg zz@Gs886Z#qs{%p?5PE>n=l#N-huV-%ux=n_q@1)R?MQplfpi4Op8$CWkoN%j0FaLW z`2>*9t4U|lg>)s|NO#hM90gD%fU*G10%#dP_W`^X;LA$o3DS|gmW%fG<>8))Z2%bz zD;6@43<4+uP;41FmK+CA0-)kj`FYG7j*cvlO_&uK+CL6NQGRHowz zI4bNVCjpe~CF1}}@f#vX=ucI8-b*F|lr9~60X}9pnSu=?Q^_=BlTtkyN>1aSMd}$c zrAjnFQGklhqZ`nTaJ-w1Q|PAB8~t|3A!qRNC@pLzIg6hVf$BWq^+PJCO2$u1gZ6Dg4y+*8ELJHC{8?+_{phRWe^m zE+nhSYH|@-15hbIRRB5!psD~Jx{|C@x<)Q08^}h0s=*2nH3O(QK&|+q=w-(3WS5fp za&jrzL3RRk7(j;uRDC(wP4H<`c|2D?eW+%B%Y1j&K7rC3T8m*gveIs()gpsoOQ2k59Tl_>ePujoLX_?eTFMC6D5BNuq2$-kK#L@V{5 zaDyl8`QkVkjrX7M;CI9&({%rVCvOlh$2dyDN5p%LRfXE5h5~dnO#L!>kk#}VRymR5 z1{6!FQ?Tk@L1|E$lokaw>krTXfCd6I2$u7dHlLlmq2RIZ@7(3qU6TbRs}Q02&I= zFo1>wG-5U7M!8cS)F{f6@)Fb-3D6{fCId7Dps4^&gKF$m1jC}98cU6%##0lhi4=T7 z6hLDD3WEzqRsuk$eo-YA-mi`5FEyz!YwKzsTT+~z1{i0$AOU3`CqFz~nRZx@r zWljDI*8fsbPfh8U6#thb#s5-KPbK$@n$jogKNj_J#s9RZr_%ccB@SBZ|EZ|ASNyjo zNdCR3r?RN*|5;H_&4%nj&7l;z)Lbf$$_HpVKr;ZE3D9W(o&Nt_)DMPoDK%dRWk8hy zG#j8ZmQm$Y1wdy3wD51~fupJi@ALj2N+j+9EuEBejXz4A3Hg76Y_oIV7)b)OLZoV45q1 zk1zM%Bis*j0~oyjfYQUBFI6*jnED1LPwEIj=l4=a0b21lc!tP zBK4AjX{7<6jeO~RV;S`)_31yQMCvoGL?bi`P#&O70EKpG;eSi-v|wmumL2J@l{hmGGNwhAlH!vU&rnPB9*m2qj zpgqtVd&1iGlg0`fsXqaG^0dzS)R{#{+dKExd19Z)5 zT1LxhTiTAcryYdk0IP$q0m|$I=q`Zn2Iw9k$vV(pFg?)Tv=8k|`_ZH6F#uf$&+n^=Qn0WV2N}R|J+lRSI@Qf{#GcU5llKGkAV3cT^c#SF3((^L zJps_~0eTvsX8;P_?mR#*02Gco#{=}T@JIz+N&~u#o==z474!nSl3qwx(be=Kx`wW$ z>i~KcjKP!urUNiLfK32c3c!j0)&Q{80NW3+n*e(aa4mq_13U=ed4CH7njZ**0}0Z| zFJV4CM~`hCXgHK0o%W@n=Mc-A9U95eodc~$5~S&WYqdT+f}xiUv>xR*JEn8=>Vd;! z3DS@+7f+a}$!-{E_%1=31{>`7UviE4(=)Y1TL&6W^3P`$uwM@xol1~8_1(W>mKwWv z;N%Yp(urRlO3&6{4-GV&O^`0`d+3ze8SJ+MC(k8F9pFhhPtK8wP7a*>iPxKx&CzED z4lgE1>jrKd$7|+laP&_DEtlY2*cVyzbG148@<7X#1nJzqdw$6cQqb4v2TJDa>Fe|j z`WN~peT%+L-=Xi)_vl~g`vAQL(CYw&#pf>oy$R4;0EKjM2cUNWdJmw#uBRU=84G{u zC-hS#Q=}07`h$J}(EFv9!e4+s1nBRj!%G{4-_HR0LKx&|hUMhWN=osC17TiTbD007 zbqYVFLXUrtXEg+YzAA#`@St>TAJK{k{%oiA5D_bqC=KfsaR7bPD^dpNWB$iB6D^Ud zXc%N7(NK{ZKz{@1lVwWRMCtzH&<_Cp2+&Ue{mg$TXvz*3O@ZbRMTjCrQKD#3j3`z# zNib3NQ>{IKT*ikpQCrMgvSFqyUUrFPhqK4pE9IRg{L~O2(p0_$m(* z510c}2G~%5sR6_v8U!28Z|y$EpDmmpkT1Y102n){_9CU{D@4Vj5@7=v2QW$hzI3cq zUCIoQsHj3zDOd%{miCGk0!&4)iiW60R4=H#Rs>}YfreQoTC8*pV5+>deJKC5NL6!* zsJ-7VkmR2OY?xq|#n5cbj! zW|L^^znNy6Xgk0(0j4FGMj_fM`j2C_e@alLwqIWP3_?FDI-_L1PV}wlnCQ6ZJJAWz zNzwPBQ=-$N9{{EcFg<|j1Iz$mh5$1H*a(0b1Iz?qBiD(}Dvj)m8PQLo3qr(*E(szz+`>#g2}gU?G8u$M866E?*q(i&^V8vap2@+q38)x2rq^7X%7DzD>WYM+#jNs zf?Zw!%(7SX3Sd_K(ekGVPOb^j@?MA*%vwZ#va{!nlz?=Z)3@{gfxdO}$VD5dc>9L;C z>~~E@S9F2V7jQF10`5_RxP2gQfcf`B4;=8!vOq=-(KEIH^Bh3WI6(A_BjY4&0P_Nv zcmEzLKvgp|>){ObMf4 zN*TbEG4q*nrhQ3`hu^xz~0^MZLL zKz<3ZIlatlfaUhFC-aW^2r)751@?qPl;4&yp9J>I>toOF7OH8IVo@JxF`S=+>{%#) z?hE5QfjyJO%3?V8xlSw zFNUDS0fHmc^@ENQCkmjW#WCVo@g(tNahy0_oFJYeo(ix=fbjrp0$4M^S^%~LV66aa z16Vu2maY>g4S-G?04;p{f^`gn?)d_GWxs=q3k1;f0Mx{RB31|+z`6hiyjdC%=mCK@2*6kL0sp<0(Oe?#&z0i- zT)9dB-XH*9(GR>wyj}p_D_$mEE?yyCDPARBEnXvDD_#e%H2_-+F!*CVz+hx;1Q?90 z%>dg1u&wLF8wP-H836v30DRjZ@UOoB-#Y;OhyeT>fNdWHeoO#PD|0qiS)?dab_ z;H-4$An-Hd9|hoN0k*SOd=6l{`hi~*UlxG>EC7e2C^Q)_TQ7b+0R5f#z4(JrCy74`;7<&K{~lnlzdsJtN$2_gIw_I& zY%}8*G#U(%Kvl4?m^wM23U)|enaXOgS`aG>3yo8~tTw<-3s|*Sebz`oGn6%iKmqmx zM8g^jXwLAays@SQYuyKywdw_4R!Hk^%MBUzXY zt^y2N=Q_Y{z|nd~GMm7{kH*%qQ`o6&BAdh}vngyUo5rTIkWOy_>^8ve0PHTn?g8vq zfWhkJ0l*#t?9n=QTEFhuoPM`sXA7EtJgE8KzqsAYez#+R00|P+Z-ct7fNsYwU@L_U zU{3)2&aZC|-Hw);4Y(a!$HKtsW$OX_&DIyP4g>Ze_Qz+X40l zU~d8TC&1nT>^;Cf0PG{cJ^}1Az?A@wtY>!&Am7dIQ8H!sDH*c|*ngQfNU>}f$IKL8vXRLPHmO3vZ9umSiF@$cV5l~fHXPo!C^vy3b_jvf{P#lnVPV_vCjn8d%`|te+M`Ra0$Sb z1=st7g~L1zfJ*_c(lx!xxZ`Mc|JD2D-D72repo9!kx6vzH2&*L~w z!YOm`@oE4c25_hrbvQ!ewYcG&W}lHbI6!+2a81ETccGDBmp!{Qvh+DiXd}*mGvti8 z5u7n+!j0riIWzGK&H~`t0M`MyF2MBwt`BenfExnb2*7t!kQs2}^_*3|jW{{|l(Q4c zRL&9lCvGxmBU3n_1-NBjnTlHv5JQsYz1&2AoAq*` z05^w9AE_D1#Rw3Fa?w!X0Jr#;fQJw?6S%~Fgj4$vTK&CwQaU&NAL)S0=5qRMVgqoy zfpU|ZCG=}Hz-3>o!p-Fh{>>`$xI%!-0d6Z;MWNuz|C3ezi4Xqk;E1c?mOyggYPmYD zo?FZ{aE%<#HF3>c3&0%!?g(%vfI9=+1>mj#cLTUPz&!vyY8}@)P;PP^qEz%E)P9ek zea}Jd`@->S>1!c80w6m?AOV{Mc$)$4HK_J&FcP@!+*iT|aBqP7^zUILXi9wsVu9Ps z?HA0l58!^i+yQ`(7R;i4g!>jMhWkbc1vr2A+cNH$5DNZ6E*?SN8@%}xcc$MwKlGU= z5SoWOCODwK;DGc6?v~(y7x`!O&~Sjm^J4)%4&dVfJ^|p+6G8wEJs}L>ur*>mcYDC& ze&y~fnR0MKg?r3Fr-&TH91Gy5yU_io3a}Fap35UOXCV)42oNHUgAo@s2>z1*{|4@R)eTBNQj>G^upF~%pCxP*k1n^{lr$9oG7)eI-IbSNk)A|TOVgb7+fqhQ@ z;(8JriLD?*CV|eD0r1Ra5<7`Kz^4IxI((PvB9pjEV0pMg;wEvIct}P8JPY920M7yV zj1>|uiMPZ@;tTMZ0G|bL=+txI%hWAK19p*&m-Ls2lD-lVpSw(=Dj5QM4>9mLD;)gu z0sL$kp9gU0>_q@C26zd;6#y>2*FYDO2t^-k`@G6Xx2{*R9N>%pHa#j?(?7q5*YjSh zb3GdX-Ux6W;7tH;1~?47B>-<-BiSMOTC!8JOR`(CN3vG}1E3Ay?Eqg2@D6}?0=x_0 zJpk|JU#@m-9a|-4(s)ptpMKwa2Uqd;A4`8 zZv*&tfPb}ISyg$cGNk_<0RI}`JNZlNXCk}!pbffay8*rj;ClfM0qh6(fmKMjvbiuN zqHKkPm(BtBL1-+fg2Q~nhF_6GeE!A){>{cQB*3o#{OWd(O``~dn*i_c;jI$+k5w(Z5pJzn;e8XVl=_W}N^(8&p3O;>&h@NLVKFDPFG z_#=Qn=1+bVMLq3RhIjwYo9^%rdJgbE0R95tF9H4v;I9Gx2H@~pl0O0dZk_T=mH$+Jr~F>|gWzp2ls~}9Qs`tK0saZVPh1HlKp@+9@0f?^VSvB^K>&hWAsr4U z;WVV0fS>?D140A{h7aAjk`e<#1rS5|Pdn9zvjBeUN=TMVZKN{ka6l*nLJDu-t#++4 z8*C%HrJhnaXQ=^*A%IXVl_x3b8>344eP2{b{YYl}hh3jB+HV_F@>}8`J8mgz%}Oo^&Nl}Zu$4Aaut62;o*vX z%n{}c^D|tY^pJVVJcA39-Y|bMADB;KW4P=n5DqkB;UF^}4lonN$>LPF)+kS0ATESs zz*2D;Ty3-ft~0tQ{tTA{jfF+=e0C`;9`~~Q*@JLl&o^*U&vCe*=X>@vdy~D*-erG< zOL-o_V(TgU3|3YzIcg}U$yvjNIuTqVmk$@@v~lg+YJTbwHN`o&|_yOkx08Fk4b4X_6d~+*U@E^^`r7rzmGB&r>c^E>SL3E>kX7UZBh? zH!CkuZc|>W+^O8H+^f7r`JD0xsgBe|8Z1qeCQ0W>E2Y)a8fm?>LCQ;4O1DY3OTUtS zEj=hbsgRzRK9oL_epDeH*b5 zsz+3hsvcAQPW7bfDb*iTe^I@qdPnu1>V4IRs*hEls49L}eLfT)YBF@((3wN)hVB@8 zdFW>~T1})TRvW5jq-L&Wt7fO>uI8cUsTQC%PHl!-vD#v_Mztoj7PVHjcC`+*F0~%D zWokRrcB<`G+pD%;?V#FWwQtnERXeVBLhb3WA;TPo#SN<*wqe+rVSfxaA09M3bNG_s zD~4|#zIFKa;X8)!oIHH@@T0?z4gYTV$>FDl|1kXQ@cZg2>MrVI)C1Ln)yJz(R1Z~8 zP@kecRXs_4o_eKvwR(+uy?TQ>uim5HtG-Nqh5AY5`pWtwtLJ56^@A5DMF ziJBprVVV(|(=`h;7iccjtk$g2tkYbq*{IpA*{iu+bEW2L&9$2AH8*OW*1WHUXlZLX zY58eQ&v&Y46eAr+q>Df%Y36WgSDEQ952aK01CnV{`&^f^j? zH0m_zwCJ?zwCk+a*`~8gXOGT4odY_@biUL1QRkV?E8U^G2D(PN#=0YQWxBSyp1R(; zzPh7zLv_P-BXy&76$;&jx(&MfbPwzPru(O!RBwo$o}QuJ2)&VdW_lKS{(9khae4`Q zQ}vScQuMO*X6Vh*o1-^ZFJG@gZ;ReOy&v@+>OIw`^i}k=^o{jp`fmCj`kwk;`ab%8 z`eXE?^mFv{^^5ft`aplaevN*Meye_${%ZZ*`iJyS=%3Snr2o6ZfHKfC7-3*#Fy0`{ zV2%MWs54k>&}h(P&|=VP&~C8WV6DM=gN+884YnF=H`rlt$>4WGv7y{B(r~(AuHjt6 ze8YOfR>L;KrG{$^w;FCY++n!WaJS(R!=r}B48JoxX?V);j^P_4sgZ?|vyqFDtC71= zlu@!#no)+)bfave8AgglMomUrjkX)@FiA9-W|D7GXi{uaYEouWZnDN?tH~jgBPK^p zj+uOCa?<3K$qy!HM~X&zjhsEQZRB}V6;pT9(WarM5vEb5v8Izv<4uc9t4!-m7n?Sk zE-`I0U258Cy2JEm)4QhcO+T7`HbcxXGs28A6Pbz4I5TB46*E&abA_3unYEeB%+}1_ z%*o8v%)`vf%-3wRS-M%X*=n0Yo23XWWLyZx%o=-P3C*d51M~( ze$o7r`7QIi=D(UhFn?u%THqF>1#Q7tuoe;vEejnBJqtsN5f&pY%q%P{94&$@rdVWK z%(G~>=&)F8vB_eK#WoAYPK(_ZdoA``oU^!R@zmmt#h(@*EIwPJmbj&{rMG2@Wu9fT zKxR;-o8%F8OyD%2|6D$*+2D%NVU zRfg3xt1PP=D_~V;wb-iBs>!O|s>5on)q1OqR-3JkSe>!@(dxX_1%=fEt5?>Dwb+`o zR<>5Lo^G9My~uj8^(yPl)_bh?TOYK3VEx?sqYY{!vC*}mTZJYvP-hdva7NOvWK!qvfpH{&uPgCU8}lv)oNSO71Q9ll#j9<-zhedAht_zE-|Nenx&<{#gE2{$Bpc7O}-`DO<*t zwbig4VQXV+3)d>u*)Fl|wq0Sn)%Gjfopw??9XowHBZXa&U6oypUA^4{yH|E^?cUpm z+fTJmwokJ^WPif`qW#bIm+Y_D-*HfOPvyo9T`VeM{P$vM?*(rM^i_0M<+*DM|a0jj-ieT zj#C|z98(+>vmEC*&UMUptZ-cDSnXKj*zLH%akJxA$L&s1Cmkm}CqpM=CpV{QPBl*T zPK{1YPD`BHojRR*oR&N7b2{jB#ObKhF{kgGPCA`;y5{tY(`~1FP7jg?_u=sebWyz@loBFD^PH;{&P$xzojaVnTxb_Hm*Fm& zE;=sbTvA;sU8-GbT^76WE-fx?E*&o2F1uXzx*Tvh}u+2?rP~e$~D+^oa+SF5Z8Fusjf+`DXz0zb6xXX3tVel z+gv+byIgzRNH>M5o0^-to0eOETZCJ@+f=t?w=}m*x7lvFZuxG7ZY6G|ZXIr0+%CHP z?)JeQamU>$ch+6mUBzA1-NfC)eT;jUd!l=ad%F8H_iXo>?sMGp+!wf4x!1VYyEnQw zySKWxyLY&6a^LNK)BT+X>7nmo=i%-V=rPt~f=8%Fgh#Z(W0FUlN2W)X#|)3}JT7=# z^0+$6c9iERpHZVnb&Og&YQw0_p17xq=TOh#o;jXHo(j)0&nupHJfC?!_x!{2rRPU4 zQ!lxfyO*bzkJo6g0Iy)LabD40NnY7r1zzP|2fU7Zo%A~Gb;j$G*9))LUVnOPdh2-W zdmDM1c$;}!dfRv_Y`ufM$9so(hj~YMM|sD1Cwgaj&+wk@J=eRyyU4r5dy#jY_hRox z@Aclhy!U$V_de)-%KHcJv)<>tfAPNUeb@U}?-$;$z2ADj^Wl6neRO>Ed<=Z7eVlw; zeLQ@;e0+Vz`i%Dp@d@{d@`>@u^{MjN?DL(^1)nQE*L`mK-1B*$@Ok9(o6l$8VZKJb zw!RL&&c1HGqkO%6{e1m>BYk6hC;KM&Ci z`}>FbPx7DbpYOlef0_SY{{#Mq{lD@5*8jNw3IB8c*Zpt$-|_#||DpeH{!jhi`+o{h z3P1z20!#xe0;~dT0^9>e1$YJc1WX7B4G0g23`hz{4M-2j3@8q$4yX;NR|GT!bOrPV ztO!^gur6Rjz@dN>0Y3!%81PfT#eh2jj{=?qJPUXc@GjtEz~?|T5Dy#@s26A(=pHya zFf=eGaB^TmU}9iK;Pk-kz?p%w11kdS0+$DF3EUmHFYsXCk-%>Qe+c|B@Tb6wftLfX z2Hp*P8u(|BN|0{Q$RP6|s~}mBU68^(XjG6_kWY|b(3qg)AP}@7Xn)YjpwmHTgU$zC z2>LnbanReK_d%b6kzhQS4Au-b3N{V42(}KE1$zYh1^WjF1&<334~`0s37#ArADk9E zBe*!YJh(ErI=D8tDR@b6TX08kSMZwPt-%L^4+b9!J`((W@cEFE5D-!w(i+mO2w4@f zJ>*!(iI7tvXF|?}TnM=oay8^e$gPls-!FpMycFpY?d$c)H} zm=Q5MVs1o!L{mg(L{G%>h?Nn0B2GvA9C0P$TEz8;n-O;+o<;l-@jh~Bq*kPTWKd*O zWNc(yKwNbrM$D?jWJ&Af5^(N|F)W>K%nu=zkxoG8R-Dr7qX!NA$ zoLoMsX?Tdd$t3J24Mp9>+Y1`8^hm)rd8Tb%=G2 zb&DMp>mBPC>mM5w8xuP@HX$}KHYGMac3Ny!Y)&kQt%=7*%i>nXt%+M7w=wQS z-1T@YUOV0_-a1|$Zy)ax?-oBQ-YY&TJ~KWqenEUyd`*0Pd}Dlbd~5vD_;v9cF|~1O_ta%mS5EzyNG7T#4oy@` z9G67@s&bF*z|UF*7kMF(+|eVnyQO#HER=61OMrO5B@xAn}{TV~HmczfZiB zcqQ?A;!Q=;sHEVeaY+-C!jhIJZAsdhv?pnQ(xIf|Nhgy|C!I|?m-HfeXtGnXSF&&N znB;)u(Bw(U@ySz@lai+=XC>z(FG%K-+mkz!dyj_hlHaCiq{vcS zQruHKQ@m4xQi4;)rNpMhrA$dlf{UTjQ*u-CQs$);rzkF^+)H_u@*?GR%AYA8Qa-0L zsa&cwRW)^3sz$0-s$XhqYFTPa>gLpaso$g?OFfZ#D)oHo#nj8G*HUk!K1owbGe|Q} zvr3bt*`|4>`K9@%1*J_$3r&kii%OfFR+?6oR+Cnr)|l3u)|J+qwjynH+Pbt2X?xS| zrK_YnrhBH3RisCxN2gCpk58YPo|&GNo|8T+JvTisy)J!a`oZ*b>A$4kOuvoSgJoXvQY@iCLkRLvZgsgbFjsh4S(X`DGS(>_z-l%Hc^W%S zdD@U^)28K5E1Xs`?dNHCr`@0SXu9w8iPOWTM^4{7eb@AFryrYseENy$=ca$kqOzDQ zE=xH}Gizj4P}aDtiCJM;ky$ZWld}@C60=gW(zB*zWoOOInv<26H7~0(t0!xD)~c+v zSsSu8XKl;ck+mypuOjO}*5Rz9S;w%x755kj-eHv3kbZ85?G7o~b?4 zY^KFb>zVSI(`M$+oHw(0X6elHGjGnkJ@eko2eS%iEu2+7t9I7nS>MgNFiY|CtShsw z&-R){qkj&VD~9bWXyYsdJL&q|LcG=SeP}OXV`TT&^@%HFsF9 zMy__QUan!Tajtu=XRddyZ|>;afZX8Rak&$6Lvq7&qjF<%=jJx&?#{iM`+2VMT%WnA zb1UYqn0tEe#krT~UYmPk?)|yX=KeAFrDE>uxo_vb%cJs`JT6a~r<$jhXPf7l=a=W7 z7nC<4FC;HKFETGNZ)V<{yyCp-y!yPxyym?2ypFu?yxzRkd0*#!lXo)jbl%y#^LbbD zuIJs%yOVb>?`6JPzG=QZ-!tF7*jZ@Fu$;(u)46eaB*RCVQXP~ zVMpQm!cB!c3y&6_C_Ghortqi2i-ng9uNFQkd{g+T2r0sgs3J*`O3~1w;YAunhDF9j zrbXsOPDSoTo<%-I{zXAWwM8vOZABeL-9^iaRupY4+Ea9< z=vJ0uB4%aFKI4WQnI3Cb;-JtjU`)3ww0VI zxmI$k()paO=1VL%U<0t;XbH2PT3r5CLWZ1yGcON>B~zK?7(4 zEnp>B19pHtU_Uqnz6Hm@NpK2W1rNaQ;1BQ$yak`j&@!ToE@R46%Z8O{lxdZjmRXg_ z%IwOV%iPLFm3fs-F3TvJRhCtfjj|VIugl(+y({}r_IW-!AD>Uo7tI&X=jNNw51gMhzkdGq`IqN^ zEY~h~D~~RpTAo~^84iv%ios2ub?Zq3TcIEg?fc%g-(TDg>{9(tzu$DSVd$-OvU7igo?z9 zl#29?m29PQrAp<{%3+o2m70|!E6ppdDrJ>+l@67ml?j!}m1&ikl{uBO zD(6(rt*oeASlOVcc;ZlS}%(1kM>HZR<{@M;xOWnAS~l~h$) zRaI3}RbSOm)n2u{YE{*ms`XVHt2S3{tvXP3xaw%t@v4(mr>Y)SDPC8-uliJtRFl=B zYH>AJtzE5GZCNd^wy$=ocCQ{)?Op9#9a^1GJ*PUadR}#Lb!qkd>IKzR)iu@i)s5Aw ztJhU;sNPh)rFwhy*VVhK_f+q%K3ILY`bPD~MFxv}7o{z#U9@%4*+swCur+Em>NQ$5 zIyELWHZ`_24mHj-ZZ#f?8qXT)GVs0t7)idscEZOTGLsx zp=NWsvdfHlQ}Bc3ka*+K}4p+S=N!wdZT!)alfD*G;KY)OFOYtW&J1TVJ=a?(4dP zbw}#Ht^2O-`?}M0XX<{eyHR(m?rz=vx<_@t)r;zf)oa!3)*IBD)SJ~?)LYfN*N>_X zuAf*RRv%eEsXnfLN_}Ge%=(i0=K9w9rS)C)z4a^VSJ$tr-&nt;etZ4b^{4C4)}O2Y zss3X9<@#&&ztrEZzgvI5{$c%N#bSE#$i=~nvlcfj-nsbV;&%-i4L%JC4e1Tj8nPQ^ zG!!(HHIz3jXjs@#-B8oe*3i+=-LR}-Wy9)*qYXbcTx_`9aIN81!<~j-8y+;gX?WL& zHA)-R8r2)M8uc3u8;u)BHaa%?HU>40Yn<2^))?Cu*EppysWGK-PGe=`n#Qe-imw`X zHtudb*7$wn4~;)IUTnPFc&+h9<2#<>rMxOXjMw0`d1Lt9kOgne%XvHAho8>3^85K? z{CWNX|CoQuKj&ZaZ}@lo$0nsFtch&WYSL}eZ!&Be(KNEjyvef3x=G$-*W}O?+BCDN zxoKz9)n=sGxY@5cskyYdO3_@?T;JT#+}^yrc~$e;<_*o8o3}P^Z{E>-r1{(C@0!1F z{-OD7^ONRx&7WJ)7NUh|;aZeiR9f^~3|nkk>|2~#Tw6R_yj%QQ#kklPV3y(`K=3Dt6FPX z>suRIH?{6#^4FTYqRh+j_3`R_oo?C#}D?erUtm$Tm?M+osw!tWBd$yG^&v zs%?DR)V9pF*==*%3fcH9^0;HuW4^+Z)#uC-qGIG-rK&seOvp%_KWS8+po3%(tf-BUi*Xg z$L&wspSQnkf3sAwRAs5^QnjVSmufE6S*pL(aOsGpBbS;jwOAUkG;Qgkr5l(2xb#hj zVpxZ3M@+}u4n;>*loo5uCmpZR@-srs5dAIXP=d;ciov%Cp?0nya zcd2xlbeVNocG+~hkXL>x$``+!fz7r7N*3r7OKFvuk=+PS?z?*Hf~+kL-T<&i7pGx!m)t=S9z}o;N*z_I&91+>7+$y=1Sbm+h7GTJ#3> zX8)gp-~}qDI{*N<9>~0wnb$myO3P!6jiHG=<}t#?n%Bm3Frr1QEqr-&=474;CoOXQ}hlCF(Nun0f<3Ksaa(+JTOs6X*=0K`a;oJ_f@; zJQxF}f!SaVNCxx45|9FxgOwl^WPzhV0wxH6)1U;Df~%kcRDvpS7u0}SPzM_6P`Wog zkp7hZj2=yU#?a&Fsq}PuCjAvXmrkY^(J6Eqoki!;guVq^!cMR&>;ZehDA*6i!2xg- z`~oh3-@zp?1ulmx;cEC3Tn9J6U*K-I59YyqcnB82Lih(Pf;99(2A+Y{-U#miZ<05| zd)RAuuX-E2Z@kSY6osSq9@GVOM?Fy=6oq0?EQ&+J(MS}J5>O(VfEJ_GXf0ZgGSMcK zjkcogC=VS(05OP182ONfOmqU3qO0gS`WxLuw^22!M-AvXddVa)3z$?UjakdAXEK>A zW;3&e+0NuMhnXYHF{X&28N_gmM`R?XlqqBGvteu`8^exZC$clxBz6`%kDbphWH+)o z?0zxJa%u*M*Db`f+jGKrW5j z$Zh7faND^n+%2w#tK}YZPq}AY6Cc8d^R4-J_;wyXo?poq@Td5j{C)l*U&lWYLWH(L z2O(1EEOZqX2q{9kkSSydn}sdH4q>OTTi7S$2?autP%PXQ8iluF3o%S=DRvV3h*4rc zF-{yP4i<-s3F0_$f;dT>EKU=ri%H@dF;`T?YvNlRg$Lrncqsk^e~vu~cm+CbyG2$Rp&ja-zIcPL62!GG3XeEK|~ybmey?Upb^WN{Ldc)GE)E7iu@PuNtk+RKHc{s~goE^*0r& zSe4a_YPottZB*Z?&Aw>gAm3o$bl+TGvhRSe&}aKj`>K7fNNW;7+K{%S8|hAZke;MJ z8AgVaktCjY63ApSjm#jk$k${p$ssZ+Avee!a+lPQhvW@u)h*9vQjgX9>x1+m`Y?UCK2nd@ z6ZAxVqCQVwsDH07(UgEKTE{J5K})bSTeUSi zXkWB1+humSU13++Rd$_SZ#US_?U(jz`>oyV#5hx(bxxtD+T3 zIJHil^V(^0Tex9vD>uT8bUV9U+-`1PH_DB1KXS*rliVrpmu}J&ceXpnO?KzIi`>QT z4{n;9?q;|@yN&)3f0)0Ozl}f3zr&yF-{s%yZwj;xv=6)+crTD0*cI3l*dNFbwg|Ql Rb_{k3zMuE_cJI(&>i;`d{A&OJ delta 23305 zcmcG#2S5~8*FU_|XLe_nML>F2q%E-Ysx+nB=tYWvGzCROKw$UM1Q7%VM5+0K zug4qkMR+5=7;nOx@lL!O@4@@=<@ic`75)jn7T-{U{vKjSa(SNJ>p4?;k&1V@MoH9|sY5?X{IVMG`c zGQyE?BAf{q!j*6%+zCG-kQh${6Cp%65kX8QrVvp?G!aL{6A45zkwT;r*+dSJOXLwV ziCM%PqL3&h>WD=|Be8^NA$X#l=p>dAJ%qfMSV0UBYl!v4W?~z$o!CL_Ck_xtiIc=B z;v8{}_=dPnd`sLQZW51($HWujDe;o{op?pOCf<+)Ns<&vlMJawO30C; z$QH7d>>&Hd<>YE|1G$~tMeZg~kYA7|$y4NM@(g)}yh?seUL(IDZ;}tlhvXyjG5Lc0 zjeJS|PQD^vlW)kkuUs-P+Kb)}x=r1op3153sUN5xsh_Cl)Nj;V>I3zW=4dgkMoVaQdIW7i8`4I!F>OxU(6+QY z?Lm9eUbHvuLx<3zbQm2@N6=H~XgZ!wpl8yv=zO|>o=wl83+cIZIW4CZbTwT=FQn_~ zMtU*5gl?gEx}ENzyXbDZhh9$0SJ21lQ}k*29DSa?L|>+_(cjQF>09)7^ga3!{h0oN z{*nHLeonunf2ZHl@92+=fWaApVHhDJX4Duf#+tEVY#AwI$JjFtjEr$)oET@uof*fB zXC^QcnMurKW(qTvNnjG0BxVMa#bh%%OfHkp6f^VXOf^%()G~FlOs3w#M)rBL3 z8bVE>mT;s{Tc{({6&eah2}cWUgtkIwp^MN}=q4N|^c5xu6NO2_X~JY-iZE3uPZLfT zrVBHK*}?+hY~dW?d|`=DAq2uI;UZz9utV4-91yM)ZV_%3o)n%Eo)(@FeknXFJSRLa z{7QI1cu{y&cvE;wcw6{D_)z$h@R{&u;Va>5kwl~}8X?jUX^ON&BSqRG9g(g`Ph=z- zEwT{VilibJk*ml}ptIm#KHCTPtfOTcvSa;Tg^<=$RZ`Ow$%Z_7xSwD6>8_rH; zBiTeYiJitKvoqK%b`D#}&Si_(5>~+iwux z?qEM-_ppcABkWQ3Br89~USKb>m)LLF8|+K=clH(gntj8*W#6%Xu_<+(;hczL zxe=TOr_UL1hMW;+%vo{PoDFBoNjVwk!Fh5MxF9Z=3*kb!sazyCi_7N;;pVs1XSfUDx_xdyJ4Yva1P9&Qb{K8f4LZRZYghq-IqH{5mZTkZyTle@*;=I(HJ zx$n4#+>hK(+%xVs?j`r0`@nq^Q({_dA~qG9iOt2M#G}O);xS@Nv6a|bY$tXRyNcb! zKH{^GYBL>4FqF}$VccsfWmNZ>C@jTk%}(?zxbB#H0!EM~%$Fi_=4 z-^)c7gC`2CSL3mG93GD+03;P4X#klHko47f5}tr3;}A&(90FtpKyno_eokzGw`!U* z1kVTXEP!Mx!V@w=oTVW$>HM^^%K~l?L>`_muwIGJ#Ag8nUX;BOFA!J)B!^e?9v51S zR|>4x;`8wmyc93P7vSZ11wiruG7}*1`h0*C0Aw~m=B&l#xB>@w6<&?k2u1^>5Fm1Z zC;$QgQU#D|{y_2yIle^j{1dzdZ^hei9&g7x05TUK^8hj*Af-U5V()x}ZfCF{R1AyiRf#J8n<#fX z4+mFgM^{I8SDB-$42p7cb+>bOg|cMMPBJGqM`xG+7g2wgCw}OO&gV zore>gx|4&O3xwyS6eV-9bN6s}c85qE++=PZ&i_SGe+RW%C8=ysQuKlat}?l!ovWLJ zv$KPvlN(f{i!&7E?hcVUy12Wz$Q&I#9GzSpm7-)GE;2iJ7guLjS7!*-%?VyA^KgQf zIypGPqwtWs`!FnsYMn|}`Jk+r1q-Aycr(qTvzrH$C3lp$I@>{rZZfD= zcUMOzccn0AS7$dnXJ}7H7dIzIM|US^SZ7z6tDUQ(vxAeP%-z|^-Ob}KYi&{qtNc&G zpmm|Jf0G53St0*#2s0n|+qI>sw@%+4j+1Tpc7gSZ6$+X8xC?^8|57AY3mhFB9qrs5 zT^!t?>RjC1WJ*twIXT-w4LP{DyF+*LaB%jh7>vYle7BM@_TYQ*efWO-06=O0QVWne zfGh+^Jq*vNoLN#Qf9VY8{DdI?IB9;IG%YJK!9PAh>f|mhawtrgIX^?{7c8CUKAtc2 z9nXLC&^3zCi^~Ag@~^abM+x#S{vCb~zmGovNGm{i zpog>r1jhT)zj*Pniu~G?w8#$AqM}vN%mb+gf632)eyzHqQ%R2#{-j66dxc=gDg;81 zkQWJ*zzCcm0MZSR9)R=$q;EAr5d^^ykV5+55Fjf6vg+@=NT@?zBt`&a`9JX@F_O@Q zyhvyhIsh2}$jZO*qTSSC@g{^N85>moWFd85m0kQ`mdjYZ!Ao~GwV2~dP56F*%C*ehS6F$UPVjMs=0cA?~ z6d>CH@)3HqldG*o0H7dQOS93gW>%T{OIiHW+!*? zaB*~ZfU&O(d*?qRj+melwe_Dx{r{ojzw_gtqy_nr2vv#N_BT=g8&nJ>O;kzR@s}j| z{}L4wQ&pmN4vHG2;(ugf`TqqfCSp{wb`Q$>k5v3`?5JX5`G1*;|D7F)L?Y?`n;l)< z-Ic`b>SiZ%kvVwC;9lnF;o_oVMUnx0u05*S%jn3E4{D@e;H2P-hSssvNbY%$T4@Yl5~iDtpdzl~EQ8ihGo z*+u?oh5qx3iVE^WiZW--9hTEJ_|PvCrntx0tth7e){G|sa$Q;7CIRGIbHC%tVn0Hz zQpQ2zP>Mt+#6Pegecr6h{34YKhi_d)943wkRt{ak{{0f(HfHn);uvvUU_C&54v?Dz z#0h}h;x_~vc%K$LT}hlFz68i^fILuy472xn;*wzGD&i~R0&x)_cK~u1Am6PbE(ZFG9zzBf693V9T@;k(+??dW9kfbiD2as0)dHW|w(vUR$ zhq;qxg3;tCfV@`N0^|*!6sA9#v?8VdbfulZl5_ybJ0;3L_}(x>BNx(D73`Nt4}lu# zNqWUjjI_&0D@vQBPB`wk7Pc0#6evgqs(wUGK{FD8Vubp}w_7C|wo*HL2brUjvrjTLoZDTii=O07#Wz8uJqKj!qSy- zp?vM+Z24EnRpd8R9d$>?qP1u@x*gq%9!1Zhm(i=}HS{`q1HA?7s*ji^HWJgp^e{gx z0-K6W!)9Rfuo4Vli?B`DIqWI+18h@&#u?lc_LeSiz0?P;lSZh@Nfc52El3>td+0A5 zhKc;+V0e%|j3lF=!BHW=e*pM1 zH9!aep$7I{(00M%8< zARqBlHtJdovOC!Z3qO(vsGcJHDtw|gxfB~oc9P4GErKOvHQCGWi#9ehPza!2Gy$rA z8Qp|#hARU3IE8Le+*Vm)1v$XKi`K_hlB;;#7?1EZ{uR^CArvNjf6Q$6J>(&Q^%`<7xsTjW9v}|_)C{2T5u*S) z8lV>$w2~aD5 z!tn+2B6$g*HUPB+s3*_GMcG|f>f>90N?~z1H0fL9UBSqe1$e#owSCdc4@5vv?9|7tJP$z&o1Jq?T`HcLT{DpiDP*;Gu0n{C!9{lUL z8#*5-M5&06lmMVU03G{J6*Wau66jPELkTGn#Znw4rl1%30@M$n{s0XCXdpnx19ZY# zN}U=(X;7M!7Bv!9)MyYurvfw*piuyg251bds0Zv#VM#%mQRdVrYBXg5&|rYVC0S`FyHxeCa7uA7DygVs`_D~I` z@INHUu(8xQ-guhtq(G=s3eGbY)-4XQQ0dIs(t?=7R45fjg;Nm#jR$A~ zKobF)w3?bkMNm^H2xS@^0yG(*X{xrxY0!JAc=%+Z0cO!Ztwl|vQlVz4WGV%q@c-16 z0!zF=$=5mj*ktF>EUG}M(`+h-%BAwCnba&QAE46#nhwwmfMx=820&rxX0N4YQ*)?7 zYA#ho%~R?$2cX3Ooe$6wfR+NZOsP}30yZfWpsJ{9s)nki>HwMx(3t>*&zud=LVyM}{oh(I`o|^(lh;zMDp7Fl>rYYtJ537Jp^`M` zFG;TQ|DE+Bs!JsbF33Sp|G7zVm;cY#i>N-8EV%LqW&QV>lm+tt>UzJqOUr|4NhcS7$QJ2A@&8mEpUS+67PrK&w_# zd#JqttpRA$zhnsNkTOHyC_n*!cX}@S`B1{BPLV|L1MUHQSNe$2Ur=Wt?NcYIQ`BjI z)&dm9=fYLgm(*Db&afV!ivYTqzmPsldRa+PR{+|e2#@!Vo){QDJ|!ej#WCL?eFM~W zfHo@XR0nSIxf!EI-K8EVpZy(mkGc=gW`HgMXv-?WP3jT#Seb%a0on#1J(|CkkrMPw z`HY_d$`3!|SHaU2f7YecOX?L&nAGn8?HHh51GMvBp~5vDfIy^6d3C!)zadT00vay& ztf3Jar7;?(34ksGXcs`c0onu5-ZeBu(=c=3f&dZArt# zx(cAH`LR`_9cU@-_@6Q(?L<4%F0?B^*8ubrfUX7TI$p;2+R|g`0GJQxakMY(N5eF? z5ulp@3cYK~YC2G0Nl(CFKG>=($UfzB9kS%~M0%3Sm4`Jmm5v;$$(5`6bc}N5u>jo; zJ<>TaR~is2ogOuD_~Jx59VP@iiJnF$(G^aCT}qb$^Z-B)0rUt! zj{)>JK)?7iCD0YB*gwd-7Bo`XGIXK1?5> zkJ3;hKLKn6!0Z7w9$;wzn-8#NfUN@9UVwcCuwMaA16&I52>=%V_`H9K4Ep3yWL$vE zIT-cU`NquIp@WzBmLsJceQ{`bB}I}AubIS;DHzRuJ#_Hv6iLG1jXeeC?2Vy=-=s*U zz=IQb$!u-r?$E(+d577>%)_D4O@8a_Qs(=i(QRHfX9Dx{(C99&n3KZ(HZ;1IB58pS zv*UFO^O-k82Osb)g@Npcq0yrhN$TJw;<-K?gAE;hk|Jpyx^XK1&0JlMp@+_V4}SxK zX9D=dW9qz5zKCPEp))_GNQwvVSynVj&PW&of%Qg4of*MsFq(`OGm_C}bQoPmkI@I{ zGk`)y`URlR0s1RIUjXzsfW8DMWT968eZ7$}6pU8>VN4k_fhDp4{>y?H1JE}LTjd{s zz5^Jd(1wfDwg5u`Mkregy~u)jh3T0A1sR#VqW>u0*O|(1tuy97DVC0KflkQ4fPbr8 z8-jt!c<{}=1|t|>#$PaUfPqEr9|KGPK;QFzYc2GdASM*D3lq$Q0Q3VuKduzqgg*p^ z0ZhP0&6nv#GBL{2QA{+zU{i_z?ey~b#-pb(X^`HSWG0141sDl13Scy(Hzu8dWu6Vd z7=Q_RgRV$>CQmu9nE(_0$!tskQ~0mU#>{1k0LB808)P=7gsJ#X%*IqQaz?=bfQbR7 z1~3W0)FHDi=H=Z~0aMSkD{a!iEMgj&#Y_{^%q(GAm{uBLcz|gDOcP*Q02>J~ZGhnBkC3FjIh80Bj6Ef|ORV;$`)h_~x?e z;7v-5n*nAttou&|&sQ_snC;39V8#G5QSBAs5*>+fh#8o@%zmY5_5sXnfH?p#bERo? znIp{SO5Go2f&n%PT4yD5TyPU$qj|+zO@7k?4ZSa!^D5(<8#Iok(m2PJwj0g+Ez(J1 zt}x&HWAb6XWgwwI>sSNKP9amd$!+D_?*Po^FZ3SApi>n7%me7YItUTR#CP(HvHR}uv%EBQcdlkY7+js zYtUhZi-j%!=&-^zAwTG_NdQY7a#-O~C7@1#P5aYfh26qF`24@EAqe}0%K?@QuoUR9 z7V=fXb^kMe6@Dt*5B*iRO}JgSL-?6+r*M~Ww{VYeuMh_BbbzG;ECXPf0E3Fo0$4V{ zasZYKu)Gbz1A@^OO4A9C4EgJErP*c*c0 zSQ)?;0IVEf6#%OQm>ggVfPoDnLgmIHMkEx81fxZqQX5sn+JOGC2w;s$c3lkB5sd`u zLv4r*09HMu4UsX_hR6h2pxgjfqYPiTgSr?sG_jq% zNo232RoI+-SSfN;(rUvXt=28n((@Gg41yMU4}xxjphbi6-2g%BrU!`NO3DUNplG~k zf+$E7ED8~Yio!(UA{eDh0M-I9IF&Yl@c?TFSO>tC0t~w8vJIk1Lzp8~9v~VF+^%8F zy?=VZfC{oQVnxuAx`!bvBUY3PA;S$|Jxa)M2O;YYL!Kj=tAtz#u)YCN5y1LYkV`}h zl#ol6kYNJ?A(ty5uNZ`ExJam1C8||Ht{H^9QVF?S=^ZNuAvcPaDj_cxHHn%!NQ(H$*o@w?wxA2IC!yI{+{!?hwEZ1MCREjsol$z&_s~x;q5>!4T{xO4!GTVW0XF z_Bj>o-<7am0qn#u?6*qT??itnH-LQsu#>7igw0AchhVc9OF-Bx4zSY$ED5kPgRog4 z%R$(zNC_J@OdnRVVkPXeywwr|eO8mz9yB!ziys)J=OJcRti*g)8PWx;A!`NG6Klj8 zvnH%5YsQ+hqu9}`1v`d?7%l+pBET*I3=-27fL#UH*8sZ)ux|i%9bn&XWUW=mSv%IA zbx@X0tdkP^jbZG!00v3v{!r=kkXMyX)A{$ER(xQq=?H(Q3N`>>H-}WgP8cj-*$8%$ z66-{O-5y{k1MH3xt3DgW#wyVSvoR1T!0sy1#4FK!$3JQvt(U@1SAm5s4+Q(*Z>J$x z3pSgb2@?*R!{)Mi0DAsL0PEf`EVPXYG)ulAgsr<`3ez`p-8=dh)$G86tS z=dcxQCBS|F*pGunEL+7c{7*@Tt!Eq9MQkI$egfDtfc*@xUtkg2m(H{O(DT@Kwu4>D zcCyRZF1DNPVSCv=fV}|NZvcA?^z}^Auj}7edA^opXc^ViE3JrBnRJ?|X!Je=UUrG|Q!*{@Z$fKGz}oKo8295fX?4Q(N3 zZ?aF6j(3Z_&E8?}vfr`y*!%1Q_96R-eGG60;P96r5x`l1a{w0uTn*q7fU5(11i&>m zvQLMA|HM8MShBxB$NQCi0dUP>=-L1`P{185;sI_1aGQT^qnXoR(4{aJ}cl zN=`?q5dA?0y0=Wzf-~VpK@a3iIWx{2;Kl$q0k|pjK+b}LU7!uX%>Zsb*g*>T^ZpA+`1GkccD{s&)egGdoRElz+C?~cS;QoJEW&^kR-z>9* z+Y0aifCnlqBj3U8`A?SlCsz1BTPN-a_a)>A?kIPR` z7Xt85fJ3W=13UuY69GO6;FC9SXNO8r?gG<|eht-sMXCNN!|IQQ-L2wxWtb$u^c01J zaQBq>?gM=4u;L#nL*g;_M7aSx65vs)Jq!swiT`j={LDR98s-;(#|&_Ai78eU6u)zC zplY~R%AklF42rkPpokv~ij)f#Y%4S-Jrcrt+RCgZ69PXqXLfTsgI1K^nepRqx#rE)#7u2@g3FBmO0 zR3gtBMxF=oIRGzILZ7RGF1CTt#c-TG1YK+op^F{FGUW#F9DwJl_7HlmWcVjovAft4 zLKk}geCB}I3*fUL^f9jE#BdE}rPx=AJYR`i93X}PSODX{Pz;@EHoRM@6W(`?VNfx^=L5V1;4ntY0KNd=_AJh$`S3hLD#kk;BJ;VdND`Gj3>jTq zC$3i_UkLEp0dWJs>mYImH3)d&AmCP|sq3MsM{7ihy9Ti=g60*sD$QFz2<5_Bk?G0Ph8OKfssso7cTV`uO$hldJ{+zG|iTzW4#a*8u$1 zzsi0(Bpbd8O0`ScM|Mss3YVe7hjI}=n_%?uVU!|s@rm3a{@ErjE z4B$KY)=hJQl`mte`aCsLHA{i@Cu(MD=4zwVMypwfbRkLUV!fd_Bj>=1eKCwo#v-``JA6`-<=@Y9ywud>KpajM|rKXVruNe+2M{ z0KSE*L^iCQF}jZd{^?4!t7=~Z{0YFHDrB*f3k#I*%kURRY49s{dQv|QsNDznPyBZ~ zgF=4>IAo3I0Eevc0^q*^{3XDD2ly+1zuutso7zi(rC_w$Yqd9OZ`IzZ{h{>aHvoSN z*GXZhz61Cl0Dlkg4*>tTqi|OlVvGO+1q22Ne6>UyF1_hW;F~1`AV@$^fS`HNo;6+! zAmB?UBmVro2s*VLOaT%b*l9=se5;ob0fJp6v6nbVv;n~ZLJXgw)QANie#nSt_EuXB zUqoJzjFZ4u2y6f$0ff3jmM$9wugaO?t}jfY9Oh z9Wue(JstU5hb$2To;++NGly>g?Uj_EKTFCa3nb-|3P~k=DMb0>0pbG)_<{)3jwv9_ z0WliDmx&20KK1ZO#Dr&#R3i0!!Qob>N#*>+D7e;Ng;>B<`4YbID1%!LFZMq^D#fk; zS}(Vh?-3q?-&<_*P^Jzn&T|iW0?$;^5~~N$}IDRQTBx zY+Ob2;0IG>qH<9s{Aj8QwwRYh?_k>z%x181SOc$Sce8t8U3w6HqjZ%0oIL@*QaTNb z#@nz~ya(&VN9+^!d-g~68T$)|IdCK4cSt_m6fPNlWwem%;FfZ$xP9CK_({V~sFkUet5vEg z)T-2$sI{u`Y8`5wYF%nQYJF;()XuBDh92btt(YuZrO%U7~KNZlP|eZmn*sZl~_1?jcwAQuk3Gr|zd7r#@4? zR(*x~X7w%VTh+IzpH;uEepCIn`giL0)gO)!j9^AsjIbPGJ>u$!+ZvRHSi?=DS7W`# zK8*t!hcu389Md?i@rA}IjWZfIG;V3!(fCf|zQ#k1#~M#He$e!{Y}S|_x=A1NLw8yP>cdgQv1UygjHZJ|9udxkcz zy+V7V_Gay^+S{~uXz$cMqJ2#Jxb_#?r?k&#pVhvv!|Ax_`0I?<3DOCb>xAn})JfDy z(wU}{qEoC>ty8B{uhXd0q_ae)SEo;>UuT8RW}Po|PU)P{IjeJC=Yq~9ohv$D>wKg0 ztDK8E=pNL)sr!TO zM?FnFb3I!8%=`Gf4*6Y#h(_5}L zptnkIjow7_2kcX7HK8E`vP=7Y!a5ypS7;42=vu z4ZRJ=8u}Xg8wMIqFf22yHe77jY}jJhX4r1H)NqyI7Q@dBcNy+6+-G>q@VMbQ!ygTw z8%c}|jf{;1NZd zrrS)fnEqf!nMuv2nq`~KF)K7HGHWzzH|sF#G+S-9*=(!XHnSaOJIxN69Wgs*cHHa> zvr}ew%wCwY=3~sA&0Wl0&E3r-%~Q?O%`?rj&2!CXnlChOG2d*y)qI;pvPG6fk;QzA zQj2nnN(+U>YKzSl2P_U*9I-fNaoj@wg~ch0GZtsZ5M#W@6pZN@^OYrM>2B#~Ini>8 zWu#?{Wt?S#Wr=02kIMp;={Sz1|J*;?6IIaoPaxmtNxd0UOM^0UgYYPDKrwZ-b7)m5u^)@s&{a_eC0 zJnItc#n#KM2dp<(@3P)+ebV}p^%d(|)_1M%SwFCTZvDYVV1wG=Hlz)0Bec=B(Y4XH zF|skSF}E3QGseczW`a$UO|DI`%~G3XHfwA)*le=dVza|$r_FAgy*B4=7r5m zo7Xn)Y(CfuY)x%_Y}0J#+P2!RvE61X|H}5F?G@W=w%2WM+TO9fXZz6hgH#|zrMQ%o z(o&(+TRL7kQ94;VRT?FYk;X|grCHJ(X`Zw~x=6ZM+AM96E|o5mu92>lu9t3<9+G}3 zJtzH2dQtj7`ds?njHd3Z5lN-p4Wo9y&%vt6p^OX6>d}RT$@v|KE<041ivBzWaIPu4=A2 zuKKPH&54zu8FSGTvJ@rT=QLLyB4|@xdPW3*E-jF*B;k(t{Yu9 zyKZ%3-E`gb-HhB!;YV{>Zt{A!Mz?0S7B}8)soOHQ9=CqC-ERBb4!Rw7JL>ki+X=Vx zZr9wtb-U$u*X_RBL$_buUb?+Akp?$PJ5!egb! zYL8Dm)_H96IN)*E}ldD^|betc{+Le zdIoro_YCrk@{IM2_e}K6_gvsv>8bFn@_gd?(({$)ThI4i)?RL2zFq-d6TCva!o8xs z;=B^QlD*Qr(!Jzfyw_f@OJ4FDUbnrz^SbZ#%y+z()Z;AH^@6q1g-s8Qe zdZ&43cxQR%de8En?LF7K*t^!d-n-Ge*}K)d-MiDf%e%*Wv-ckFJKk@62p?k~M;|Yr zV4pCbi9S<&qI_a~5`2<;a(rg`6!?7MbJ^!>pX*~C#`=u)9UCyVd+ge=8{}g*k0Zv7 z7^gK(XWX1|mE*v;nsK+rJsS67+;8Jvj(g=R@U``I@%8l$@SWfr;v4Qe$#;rxl5du8 zp>Kt6z3(yK8@~5_fAsy?_gCNFeBb-&`04u@`Hl1Q_Z#mQ>=))Y(Qk@hlwYjhY`?jF z#eOAzWq##;m3|BT+Wb2FmihJg_4~;O{8ssW>bJvhr{8YB3x2o!?)u&Hd*Jun?}gt> zzgPaaKjqK(i~M!`_5BU~jr|?{$NBsF2l`L&kMvLSPw}7bpXs0NKgYkwf4+a2e}%u? zzsG;8|5g8I{;&Ms`oH)87$6ML4loEX4loNC6JQ-+8(kcL7&ty~Vqjuma$s6uMqpN8 zZs4rIg23`Xd0rl zP3V~LY{IJ`JctM)gXkdjAfKQKK~sXFg5QiG-k%?c_Bst#%n>IzyJv@hsz z(6yka!DuiMOa}{t*^&py1Hph~P=Valv`P`N4C7 z%Y$o!TY@`+R|M}0J{){3_(br9;OoIRgYN`?AN(Tt_uw}nc!+w4X2{48oe){b*bqN? zNI=N=kf|Y2Au%CwA(^l|7fq3^@+Fe*$K#)WBy$+g3D!wkZV!W_ap!X}0#hGm3hh2@6L3Y#5P z8de@A4+CK}VRd0k!n(p%haCtz9d;?~YS=enH^Od*Jq~*s_CwfDVLyjG4_6Df4WAUA z9X>C-Bz!@5Ww;`|Dtu}9s_;+3*N1Nk-x|Ix{6zTq@XO&}hhGoB5&k6n=kQ;{UxvR9 z|0s_@Bk%|+f{7Rrp&wxxVIScb;S%8SsE{amc+{k*sZr5UaZ!m;$x*YSW=GA9Dvm0R zDvy#!RYlcAZHamkJtBI1^t|X5(ceZtj{Y(F=jdOfUq!!-ejoiYhK&)&sK;o=gv7+e z#Kk1WB**YED`Hl~d=j%hW>d_Tm@_e#W4?~L9&;n+msl*8i5o;MM ziw%{>PKnKpRm3*Mw#4$WOJkSCcE_%b-4weuc6;pZ*nP1FV-LrkjXfWGG4@KFcU(wZ zR9tLaLfo{t)VTDx{J1%BbK{ERO5@7oD&yA1eI9o$?tT2oc=LGccxk*tyi>eqyidGu zd_es8_^9}-`1<(P`0n_=_!aRh?RCCST@dy@N;S0ryt-jjSZ`FQflB&Tx-)f8 z>i*P2sYg?fr=Cnbo%(g^_0*ebPHDbr0cjJ``qDO}ZBF}iIyGH$y7qLv>2s!6P6yL# zrr(_Ybo!6ef0m~Qr%y>wPEScsO`o2gm)@DaB7I}}mh^4upQZ0k-(O@E&u$RIN43{eJ`p_gHhVVq%>p~z^;Sd!6}(UI{miGZxQinz3X??~LU$R?b*6W8I7mGj`9|JLABN z!&!P+W3n8xT(aD=yt2k-`DKM?P0E^@6`d8Am6$axt1fF@*72-wvYuys$R@JsY*Ds2 zTPs^9TR+<<+a%jQ+h3lYo;@?WAiFTTC>vzgWjACm&Th?a&+g3b%HElMEc?ss^Vt`( zuVi1#zMFkN`%(7O>>snAWxvlElM|U!k^^#@b2@XnbNX^tuo-jPvXQQ*#W~etDx6(7w{UaezQO~AhYOF*)tYNIchuZ5bFJqdoO@>O z*|}fMy;LMD(k{|1GAJ@Gsw!Gi)LPVD)H%;`p36M9d7krp=C#ion73-)C-c@9n-$v^ zPbdy44lkZmJheEwIIcLcIJr2jIHNdAUR+rWimQujix(CzDsC!XQrue17cVXDD()%X zQ+%!X-F(COe)F^D*UVox|K$8fC2A!)CHf^sB_<_SC5|P|C9WmzC7vbTB_So@C6h{~ zmPD7tmK2qMlDd+HlEo#hC49-!l4T{UOLmm(Dmh$ow&Y^Tm6B^EH%o4pd{=V6e98P z>q}3RUMjs&db{+y(g&rFOMfYSQTlu7o6>E z7Mx%3Q@MJ%LwQ7bOnH2HQh9QDR{8Amx#h*>rRC-2mF0@^s`4e}ZRH*1%gTGo`^xu~ zpDaIH{#E&<@@wVamftMDUH((~FXeA4$O=(~xI(>RWQ9(JeuZI$ZG}gLZ$&`Ggo==g z$rX_m@|cSFio}YHimZy>{Ac;E^4}Ed3L}NN!a`xCuv0iFoD?pKKt+&ZvSONIx*}7Nt(c`KP!uYP z6xE6r#ahJ%#b(8)iXDnwioJ>hio=RyiW7=ciaUyXiU*2EiYJO66wegT6)zMo6|WU< z74koTE^r4)pc1SEr@-SXQI&O7P}StB$f}sCxT>_O+^Shsv#aJ-6<3v1l~t8jHB>FG zT2j?k)lt=1^;y-?sxPWeSDmf8SarGT>#A?69#?%|^{VQRs*lxZHC4@2v(@5i!)ohl zS+#SuTeWAkUv*%0P<3c^cy)AjTyWXSbbyanL^~UPYs&`lK zt3FtLr22IA+3K&VFI8WyzE*v=`llMShNz)yL^a|X^%~6@?Haur!y1zsmm2pP&l>NV zu{C}*fi)9qf@{KRB5Eep%&cjw*;;e4=4GvZ?YP?H+KSrl+Eulm)UL1HSo>M+!P+CW z^3Q9(s6Ac#W$n4zuWE1B-l@G;`>^&&?e}$5oo1bGok5*(-KaW?I;%RHI?pk{gc>Qd^`>Sotf)V0-h)Ge#)sq3#Bs9RmPwr)e+=DJVoPSl;MJ5zVI?tIaN$_th-%zx98fp7q}Ko?VJtN*NiSN)#)ll5onFV|nKzgPdb z{`>l$>VK{Ot^QU0n+Cc;tHHWK+ThUO)Zp6S(cs-MuED=yd_!=>%xn&vl^HB~gp zn?O@_Q%e)yw6v+Kskf=WX@AqHrgKdfnl3ke({!WhR@0rPXHCzWJ~U&^WHZw&Zk9A_ zG;1}FYL+!mXbx$Xhc{1Zp4uGU9M_!KoZOt&oY7p`T;5#StZ1%ku5GSwUevs}c}a6? zGvEAa^HUSdy}&ddbQqN0;1Q@_5PjOMY7N^ODysNDJOVwFq0d7PS`j7L68@ z7V{R17ONK97Q2?PmbjK_EvYT(E!i!3Ewfq*S}I!+lw0XBBw$-!^v~6hH-1ceP_O|_P$J@SWJJoik?QGlmwi|7? z+rDdi(Du0PDNphmybdqd=Z$!Cel%~%Tk{^gH$R@A%E$5v{4{<#pTTGGIeZCU3tur` z!ng4qd@sM8U&*iG*Ydmg)BN}R3;uWh4gap4Zs*!1?HcVm?fUIT?I!Ks?IG<`+oRj# z+7sK8+q2qp+h?`UZlBveuf3*yOZ&I&A3Nv{tq$uBsl3CX!>Ply!=uByV_b)S$M}xm zj%gjK9n(89I%ag_bj<9?@0i^&w_{$%{EqgH9Ua#?-Yhj-8n85LY2DH_OOGx6a_RY{ z7nfdMdUNT+rB9aru=Lr|=SyEKeYx~iC*DbQ3Ol(@N#}@8`%dppzs|tUpw95lNu5(V zBRi*eW^~T!Ebf$-c9wU7&g#y(⁣I&efg!I}ddp?L6Ljvhz&mxy}onmpi}iyxw`U z^F`kZTNbfw&N6=4?q#=@z3npU^68qzA(g@@}-7=%%~5Zb|ou zZq07Zx zU+TWv{cZQH?z`RhxRuOs{pXwAZ26sn@mFqjz#|WN&nDY;SyT zQg2G{^xll#8NE5ZdA+lG7xk|1J=gnlpGKcYUtC{#Ur*njzN3A|`%d}z^yD#@z?(_dNa4*a?Tmb-pG3}^F+NesW>aCtZ z;t|nks7QiPQLjc*)G$Uw1f|6=SJR1ls}ee1d(ZB<=j`+B?%h3i56PZ;6VWK9M(a@# zOo&!Ji>A^tY5V<3+*up8_FK_CGOP{2Srh=D3_64Zc8;1*~C&q1@;QhZ5lEw&Zo z#Q1>NQA`jM#UWy{I7}QNriy7|x;R$M5HrPWaiLfuBJq@XUwT~{Db12rOM9e)(h(^r ziIOI{k|!OPd?_YXN!8N#($CT*>55b*-H_^~X4nqK!;UZkz74yO^(2I#vBpouQVf zwpy>X)%t2l+Au9eOVuW7)3sSzo|do8(?m_vm=@Kl0@_LKly*-0NxP{1qSb2k+8sSk zAE1xcGxZ62jy^@7qc7GA^ksUnzDi%CuhmQSuk~&E4t=ibyfpPWF-gBuvVQPa4Pr^2qFDb~AgJIpz#=mbuZ~Y;G}C z(=n-e#k^@YSg%+etd3T)^{zGA%Ci<&3$0DoR%^RuSP_d^KU;Oyb^B%eRXg4uZog-b z3E1=PCH7K#zb)9nK4G7=f3)x0jrOx}Lb!XlXLxitGn^e>8vZQ2CcHO%ID9mGHQeC5 z~jt{2c5&tS?8Jis@u~Y z=ni(1-C^!{H`|@$PH}VHz)=^wu6xX_aHDRuTjQQ~&$<`f-`r-}j<%<9^flUrcBj2) zAKIS|q@(C$nn#Q13i=uSoUWrAXn>Z`Qo4n1r$H)FL}jW{gId&~5qgZ4Q=it*>-6_X zt4OEFpvbt$?8x%S*O4O;Gg9fb^4bKvc<*hmzcgi_z(O>znQn>ZFvWt!29qad?+8zQ+Ni?;uCld|A6Q6Jf6?z^7(uTFW`lIHQ&m2 z@ZJ1dUdF%UhxkzrIOLcsJi-|-=RBGmO^=R^W<;~1Rnc?N^U(`EqL*V?vFWjyv5#UO g$7*61VwYl9Vs(`hDrZ*CuAEc($zJ(Zw^o(Tf1DThGXMYp diff --git a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard index f856d0b63..368d079da 100644 --- a/Flash Chat iOS13/Views/Base.lproj/Main.storyboard +++ b/Flash Chat iOS13/Views/Base.lproj/Main.storyboard @@ -290,10 +290,6 @@ - - - - @@ -331,9 +327,14 @@ + + + + + @@ -406,6 +407,9 @@ + + + From d6f9a2ddf16ad4d23c782e789a2fb5eb6dd965c2 Mon Sep 17 00:00:00 2001 From: misunderstood <58114769+maonz@users.noreply.github.com> Date: Fri, 19 Aug 2022 14:36:26 +0300 Subject: [PATCH 12/12] deleted useless prints --- .../UserInterfaceState.xcuserstate | Bin 58312 -> 60803 bytes .../Controllers/ChatViewController.swift | 2 -- 2 files changed, 2 deletions(-) diff --git a/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate b/Flash Chat iOS13.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate index 03ee115ed49ee4218e0415a3e227af3fac74cd52..b5b4dba5a26e730a55080efc59499627979a0c56 100644 GIT binary patch delta 27308 zcmbrm2VfON7e9J;ceZy(LJH|Xdb#O^^gwzgKte)#NFxa)fPi>2iZm(0N|Tz&hF04Ip=qNbLPzKe)s|L$~VO871*#H zmEU5ftN0!K9)6#|2$G-(j^GJ_PzaTx65EJf#6jW+ae_EWoFdK;UlHFB7l_Nm72*ftN8%^q z7V$Un7~p^aG++P=L?D4~pgZURY(Y=p2%LZi@CTtF5=4PmkO=yN6p#TjK`v+jjbJ!v z0?nWWi~u9SC@>ndf-zt`Xaf+KUIx>^bTAjp0~&Y(%m>TBad;&fNC&4N38TcHW2H$|I;5xVoegnUQKfqn^kTj4ONs<)Fkv!Rh zv?c9Gd(we)Cwq~-$v$KR8A(Qw(PUpThKwcSOk^sVL1vOUWG*>?EFcGyg=8^VLY9%` zWCdA64kK&H7IFkRk{m^jCR@odzCkV`my#>V)#Ms-19^lzN**JRlOK>D zk{^*L$dAcS$WO_WC$nI5n0UN4-FerzTJnsaL5f)KqF3^#(Pc zT0kwN7E!CIHPl*a9krg?N^PU|PI3R?>NItR`ilC7xkJBH~pU|i1)3oUe`W*cYeUZLGe^38R|4QGcAJLELe;5OUF(kt=JR>kx zj5TA!^k5tqcgBP9WWtzmCW47%qL^r=AJd;nVN#h)rhpm9R4|oH6;sXBFvFNyriB^7 zjAUM6CNr-xQ<$mDG-f(8gPF(7XBIGvnKzkb%yJXc&U7$qn6=D0W)riS*~08#b~1;V z_n7yYBg|3e7;}pGjQN~7&75JrVlFY4nJdgy<|gwSbBnpn++lua{$T!O{$d_8|F8zO z8{3_=Vy#&lwg+p=+OckIZ?+HX#d@=TtUqgHgV<0ujE!WY*l0G6jb{^BQyQDjX0VxT z7MsluVu!HBY#Ce5Hn5HCaJGpZ$&O;jvg6qa>}2*;b_zR{oyN{&=dknH#q68xdUgZ5 zk=?{@X1B0!vHRHl>;d*2_Bi_idxkyBe!+gpe#M?+zh{47e`J4Rud%kLBa|BtD(b;4}GregI$0m+)nLIbXpy^27NN z{0sbe{#AY!Kbv3AZ{RoboA}NA7Je(gjo;4i;CJ$SP5dGL2!E9Sg#VQPia*C+;J@d8 z;BWKy`1^vDU@h1PJp^09POujogr0(<;3T+F0|hU^TL=`4LZlESL<>nmvXCw03qyor zp;o99+5{-PEW9F27G4#m2vdb=!gOJVFk6@}ED#n7%Y@~^T49~AUf3?|5KJElCxnlM zPlQi}lfo(CGvRaLv~WiFO1LOo5`GYV6mAN?3AcpX!X4qh@IbT{ZNwg;t!O9Oiw z(NS~~oke%iTl5i)VvramMvHyL{$h%lAr24=#B#AttQVp9viOQPS$tKTB2E>jiPOay z;%nj@ae=tdBrX$|i)+Po;(BqrxI_F%JRyE8ejwSl6YDC zQT$2#O}r)E7VnAoB`e8VvXOd7wvwG>FF8m(B}d6ga+cgBZz)hRN|92O6fO0YlBIr9 zj+86qN%_(ssZ=VH8l~Y09ZdbXEFUx-Q+4ZcF#1`_cpH zq4Y?mWkzOYPUdAoFQk*S#q{X&XIHFJUL$;AQ#937#fko{Gs!@m4~V zP$g1HP!g4FWsovhX;DTfBb8CgXr)ydql{I?DK9AFl}XBEhGEN%P$`R$La!xs~e64(=Tu{DME-IIl%gT4kkIGNVHRTuOj`F+m zhjLdns6ZuE)}(T(qN=L3>Zm%ay;N^CP&KMSYPy=CW~y0gwwj~ns(EU@IzTN@2dabA z!D^veqz+Mw)mpVqtyde=Ms>K_q&BOq>PxCgZBwE8vigcTOP#IGRom4Lb(OkWU8Am5 zH>z9It?Ev7pL$SzSN%l&O#NKNzR(VGu{iFoJ>=SO+;!JWe3UKr)~@~T?_*%z$)&$) zrrzFE`0CK^J;Sumdv$jzQ|vNZYU`T^)z^$mYH4mA)iQi|%_#rTW#Nr{A2eFxLndk8D@bB>-@E;Abrutgp_-(DX?`igT{15z3 zYzO}LJiq?V4-B_g;}7vi_+$K^wmWTqwEf+7uPyTob_jdNAmi7y8oyo`t2H%9U-#t{Y2;5ECTiH@%kGY4l67*sKQOic&znxUiXirMBXb_7-MmOJK| ze>(_llLF_bi{Eu_bKotK8zlQ%z z>?Zag>%WEH#IF+vh_|&*LwhA2BHpne7MlpMXo!WhJ#JgjcB^gfX|v6aA`BD9h~vZu z#D@?Ig;+SmA|Mv|1joc~EjY}>gT}u^2>!F}ueRBp04JUSbyv|j4TiaN0{UA7=#61@ z{8LbVt2u_}IzREN&Q4!5clri?llYamN&KeG4DX$Io4E6|)0q%Ue7@6n^-kX-?h_A) zhY(AGSU-rRLM;7hr>|+hhx-!%kXo+@7lG5=4`ONm;eSBZhDW$`Gy5N~BJ8oP5X)+N z)Mn5EM;NusBV4sx5%%4m^dDHY86bwEYc#naNXv<|GyR7wz?s+sT!9;Y6Z8VTiQgbL z5Ms!ehC(bKVn&F)2C))|<$Q^4z&2u=3^KME+X6g+*HdAKKy1Ks!h!%KEC>Wf5CnoD zRsgX<5E~4!LL_XRg-3uh_L45&z_!J0v;XfXw9`xg=|#UDIdaMqbAo4;)OBGJHc`K@ zNc-H+&f210Sby|Bwj^@$gV0x;i)J`=OcRDf1149kon?ODo01CiBFbE6= zg`fxw0mT4mqZDFg5G#jR1;i>LRt2$Yh}A%B7{qEJR<{Y18hY#hKqaUG)!0PzSFOPl zV)bpl`ag&@L2NW+vDUV^`mb@CaoTBZ_Jm69(LygRd9F(u7>hg&jDuK1Tc#QGV1lmF ziQq;31F=Sk4YwTIG8IMf?dtX`;8lZ7JD3cy=5{azVl7(2x<13e3^2=J(*a%sGa)tt zVk0}iY{LbJjcUti3o5N{sT$K%)7+X_(_GtHS3JDFxhAc-y5@zN(JJw)`@6TEV>hq> zEY_=92o^zX48+EE7%qU>Z5gOCZN)gJK42wSZSYD;X#%&OrgkWKzW3UtK(QDrYc0=qXh?zRTUho#g+8_qCIfapd;1GD< zV6z&$1KtIP0Wvcp%~v3XW8gT%kl<4xHVtCawY!CHo0N*Gs+KX$tpmo@ zx7K-(YY>|QvAGb_Aod2t=0EX!aKi%F*R|ORy_s8a=}Y>N{t#OOv9%CG09X&P4G`N1u}$m9K+;GCk-=mL8EWVavCRw~!_+gCv<| z8OOG2O)*0)LmQc8DcY``iz(?W%Ci*h)IKZkDjH}h+O2Jl9nyJKk)>#_W{UIEPF46T zU5yO2oY;p>Gy<}ctkQ1A#W|66$l7E**+4du!%5`c??CKbh#iJH7rn1FRYq!)37u)XzPxYWs+Y$M@+lJhBueegfYnVd>ady31G z5c}{sT#~a9laO=B*U7o$JcxY+u@eyc7;*h4Pa*j%Id}2u|0w~J?G`wGs>9Lr-vr$0 z>f}apFJf476SHtWhm1}^FB>Ofv0zt>4?CixwrR)}4Gh7uEI*gBBc$zRQsN&aG{ z%&X6z??e7h{*5S;{Db_H{0m~=L+l5L{fH=&yhq+QQ|3<)`wdZMzYz0KKp9ZaDGXxQ zp716GDEfKcq!`)+QO;U%iXBe5Xk$|%O_V#;s}o&_pdUi)_fB*zwsg)L`77l^`BHwAKNUa)LhKKS z{Ry$ZA$AvH_aJuvDa?9Vkn$R`QCEaUgXN$R6W%I zaSY;gTUw__P)*cGgUu?cnQEa%KpclS0dcU38fEaLS|Luh^?*2~;c4l;sTZlXf4dSI zdQ-1JoIzm_&T1pmA_J)D)NC{=Q8TF5sF~C(hzk%GAud5&UQNxRUdLXd=0RM6xOLlN zi1*OWr^Pu?i>c-MJ#SJ=sHN00h^r9q2J!9?x6*>s=L*yYYLhP3Mu^*JpQXEXqqb8! z^@1G`w{53(LEO$F=Ucj*`>6d8w}-gnQ#lV(hyShj@1fowfw+U-`<_}!hC^@aL+X=% zyYf?{ky8+N(lz3&EzNLrI!k?FnLwVV&LPm9r@lthI{)g5)`}dJ?7!=)jCGi&p^a+8 z)x&Zd!zzZhZtAA{+m!CUe*OW0#-QMkn55)>8TkVW1`p9TWR1jpHHT~uW2T|SP;00+ zG#dt?V~t^)AqkZ<8(Iyc(D!ikuLk|)Zy1fv)EkBwTD7w5AUvwCc8arC+auf9_UJaT zO+6DE7apIGs72-&Nv@4=6SS6`kiPv>QqzX?sv2G~dUSI|Q%#}e&zjMt*#ibtjjE|> z&a4>UGN!d7HN7xtO;zjJ%&hS29M9Z5?fsl`Qf^b)B+Vl?*r$KWz(MG?!S&76 zE#o?G8<>8&e@bCdN%nx``YPQ=Dn^a(C`{L0&8;(?!oI-%z*Rf~kHr_`Tk+%gr}!86 zWi%oC8NY%5ivNb+#_tl{2~V^%<%_Zj1JMH1Fk&QHcA8GiL`zM}iNk2^=n?S`z|fkJ zBU%}X0%>SHC=Zl^3QLIlBt27X`Q3E{2-+q$i%(skz8#u9AZtu(Mdk3CWMr&W)CKCI zp<@v0Gy2u#7niB)2Ja2j73wPW9rZo+1N9^I6LpRH8RESl-W%e5AnpNiPl$U#+#BLP z5cl1H5b_K4D|M6ljk-nMrtVO`>tOMNB>F#4hGZfnheEOxlI4)B(4_p^MgP!@!FxSz zpfMV!2^!EOP0=*O{UIIz@j!?hAsz(rV2Fo6Jaj$H(j3jx0xi-KEz`(_!XOSI{u?9! zMEMhvgropTR}|u^`jAs znP>l6T!EjKJHRuhQ-0ckc0w^C-II2NcsRr(J7{Ox1>(^VAB|EdPm?}$Z%agqN0ccE zXkO;8m29-Oc``4fy*p1wl_{C%bfT8EhYRm&#E%X_PEY&O0dydZMC}Xl7>LJ0JZ?1| zOoz~+G?FhK;t3ER3Gq=Hx9RIJIu;F{bR5JJ+cMA6i71JMA{07_PNw_O{fkD|3`dYf zz=L={h$lll3F0H3_N=>Byjkf(r_?$xuxXrK=6zYw1$Dj4r1u=t{Z@;;5Qzi042&7viXj{IysCJq!&{ z6X|-apbatU05lxVh4?@%eapAj^k@`B(x|im1(7IgC*UIeg4TDd(L_%${Jc%Erzg@c z(v#?yXcOH=L;7X<6?!uLDm{gsN>8Jw(=+JT=$Z5^dNw_Wex066&!aW^4Tukd_+W?^ zLc9p#sLRC=FM;?_h?hdV4C3VwuYhIUW zq`j7>JzJz<+uU(_iPmRZZ=7DPW$9n-TI;qzoL;T1-4=k;>rm(YX^S8mHDS9Er?+Tv z+kJ3)yEc5gA5QPmmgrx5wG-R>;Pig&j{bE}v)_Tf-qjL!pex_kT6Xlp>0{db9jM|D zwGVdq;`GPbpF6y9`lRN%GZd#k*9v!{E6-}L?)1Rvue7Z@J#qSL?c7e(y>GQgJ5dXl zHQ!z6+;`f*UCDs{f&Nijw#${Gf18;A+w%o?XcW?| zrhhks^Dl@aV_DESW;K16zDM7uA3%I8#K%GW1&Ft`8OszuP2S|7jov-nm%$Ng7y{zs zpTQ_YF*L)_2yHJyd?Lgrn337#6!v`>kx`J#F%q2t@kt1l9gNDLG4LhCU2Vp}xuaTi zHr6xN+R8mn$&4*y_gt5mo{T=NV;sSGh@)Bc;ts}zafSF~i0^*RWtl#mKKY8ad{9dy z2Jz`@m_Wk?CWr}ULLfc^O(*e%5MKoGC7RtZ zKW+5j);>&MCLZ|{6T`$Z$T44o_)Lh;Lh&z?$Rz3UFFqUM3!cWmOq#A9ls#9xQ_Tyy-(3}TA^SNzMAFhiMA24Q?2#5IT`SD3HIzuJx>S39PTLD}36 zrk+6%NAbp+&&+oH^E;V{8O2OMlU`;t)5?rt#xmoW7nt!7UkdSM5MK`Q6%bzu@pg!J ztYaoJFEW#umlzY%X6Oy^RS@3_@of;_4)Glj->FY}1DV&*WRjW5%wlFUa~LGVYKX6e z_n<~%fRFr(*c7}U*OD2pCwO!pf;!mnjeR+s#{nEg5i zb~AgJz06z8K8Wvu_+E&=1#$HE{x!@2gn@m`A?6*3AJ8$dAL5@v{IjPRIL@5VG4KKN zA@dQ$--h@>h#%51@Coy&83X9fceS322Lv!@^{#vY@xxEee~$SEnV&h&d=2sUApU*_ zbAkC5;zuBU)SNbAzGJQ-^E2NwKQKQsKSBH$#E(P#1BidPn)#Wz&fH*rfjDaT1jIjv z_$MfBv|Tg3NjorqGxv4#-(~JW{3OIrbr?KJ7c?%TbVqDya0ZL9EV4X{vjhuRlBHOh zWgz}J#7{%~48+eu9QE`|h<~+?y|gM_GtRV zI~=9^&6X97%Ht;#VO4-4pY(?iN#_Y!zCB8Z>dDpV1f`<{ugyY7C4B z3Ji-343F@2@e2wzhWiJG1{xy+14E6*kjThMzAh7k0wcryjiG_TLB@!%kdW~3P+yl2 zqbUsC9~2y6j0g%34v!3tm^7&qYpjQ*u?yzL2L8WmEW{WY;vXCs7#0#79uyH7YHsV_ znlhP}Dp(&&TNll36-=BM93JW)7#b* z-N)C(Xp9W?H%6eAQKyZeL7^c}Zw$8FcvYKQ)|o_N!!1SMqwG_$$vy7lwXUNB+s1Ud z2-}y9vGA>X+-H`+vP|)w=ob<0ABhAA2@eVn2}8XLv6w8_KRhBLC?YV@7!nj36c{|o zJh^5Q5ihVwY%<%A?a!t_{5r&MKpa8$SCk?`o|#xQ#4k9)uQgB`Ul|h2=CJt)ylgIu zVv1W3zth1EU<)Ar2gDyeN9k-)C#B!kE?1U64ZqmZ&hp>Olq?i}C25PR)IMwlTZ4R+ ztz@fM6bbwZaWugFy^0;i*0OaFzYFpE5PztBRyEw8ZAQMzwm=-MF%~5b%udeiSC*D+ zk!3WttetIz_=C17mV$9wL$!Nvb|P!iYk!fQ#GoROA>oebY*`<6 zD~qOA(`xpT!IQm041k0)A~&>*+Ynf5Vt;1QEasU-Pxe>#rlr7QvD|w(ztZuCYK3`I7lSu%Wy;zB>F)j1rlkHK)#R#i5y7eLEUfzAu$+Y z*^nsGtIXzdxSCupkIUxd&>U?HVgPYh{o~~^h(eljo zZJp(rnsH>`XUbpgEYH^3Mh<+Y`5B$%xn;`hsCj?QZdCO%x6SE1ov*zpQZX36q+W`p#7G&g7NR&aM91<0fsDwln zB&s1%1BqdqxLuY6I`j3 zs!3|8uF=|-zo#u*SgviG;;gM5>)W0CSO@zjkf`fSsB@>Z*-LwNl`UoakX&&+X3y>IZ=2%|f)&Iq@d^f&3Z^c_fVge*kLoY&N65`mIdd%p^_vAg1VR%R0 ziFf8*cvs$ycjtTYy_wy-hjw$SZC^-C)gxqL+9ux1Vg=rh_cwR~($Jd^;)5YEy~_%- zAff5uW(rC%5^q4_O>N}z&pP$)m~EzE9xaiz^9hic(W!Vo8LedS{rLX+2NJJAVy5MY z){1Qvu9JTFEItR>g-47ryPeO4#2no&Ccc0lY_iIgp-fW@ykXX=Wd=e6!HUyzfIee2YP%|VJ zKDE|Jz7_TAnFyaB!;gi;B1kOOtu>IJz?=TxMEGq%U45LwPdB5CpJqncl4s;aFtcl! z!!OaT`8q$BpT}$b8~l8J0l$!6gsk}{B$h#9IV4s<0!0b!km!KKDoCt`#2T}K*KXpM zb{cpksIs^jzlKL~!@4d5Z$Rr*U2e7o61$$YZ@NXlyL5HzhQ#_V`@Z%6v{J>t!=rq4 zJO3^uHn#KcL1L3`+n)R}{zHpx(dr?x?Peq^n629ut==P9t55Q$|J`0^d9(tDfW8$H z+n%$RZm#os|GtLA_NV6hme-y8S#w?CuR>x6Bz9WN^&^jb`~Q4G_S9T=_&+V?Ld#0X zzjyzK2u%+JS~u52{t^F}|3@$gn1Bm}0NAAh1&O_ocncEyAh9132O#k_Bo0CXvEDo8 z81LOp0%I|kAb=`C(pgbZ(Xt|OxXWBe^<_okBMU8l+_|dwa*E)LbRf7u;=N8A3GT>7 zLNB4W{(;2%kT_yFA|K4@gr49d_#rC^$g_{N3;vKeu3ITj2ogfgRuV$YR{8+(o)E4x zlOoZm{qF#b82LWgCRe7K3dv8|=rYcj*SJ z5q1iPbZzVsb_;uiy~10G}y-OSCbnu?XCh8wZ{DD%> z`T^;pS6AmR3s-ebT!F-2?ZS7E_*>V6o$!-z9mynILmQ0ZJm`i zWvZ2f@VoGrMQXGrjQsbJF7*vvSNC+OO~OMFt!Zo$9tn?ye?)_biMU9JKqQ&nA`OXu zATU6HL4ZR*K!BdtAt9h3pmn+h%qEewh%Sm zh~MdgUxgsHUHl$`IE&!dL_NY5f7S($Hw*rYE_j0GHK(V8ct^AhwW4{b1xdQlzvx1v zmAW_Wnjc8|NGm=RABm5}ek%!D8df@}zK zHc6c$tt3dIBr>9w@dbX2nIt?XbFA6kpJAk(_PXXQ$qO3>r{o*%RJwZd?bBT zm3$!>&@Q3bYypzh!#+r|462fOPz3{#Fp@r~faLrj#P3N=Tey2udIriY6OUrj%v&%~A-4JM^diEZG)fvRwMt{8vC=r{ z1!=rAL7E6b9R%o(1_&A<7!E-b1kDh%KrjM=ksGB+7MGJyh5DF@)&!9LM|J6c>=W!w zv|vxtbdlbGV04$l7b5IQi=@T+2Lj~ch!XT8!XBe|bz)CiDIxD_m)ap1*DkGs;04_t zw(F#gNEy<49eU$+=t-M&=uObX1w9?49nx-#HP9YEROySlH8$zinqVF!qyy4%ggxnP z>7aB-dPjO!IxM{>y)PY+j!MTMcnLkm2|*hK5Q3K>cm<*jvEWsRHpGId5KP-7eb6cS z$I>STPw6C*{WIxv2)brndY|UD^?+a=8YF=R0owQf?BrK7Eq@=)!8WBxmvog}hM;Te zC8159tEKM&sed4N4WZX^L@JryrH~sE+7H$){Q|+PcIhSrv&{;*BkA5I{jN8Tc8Vf} z{G}`8bu$TFU1ZfqdMx8Q1pkrICTs|hA?8D{06|a&GHHh3LI@U_=ex3i`X!4HEPjGM zS&_Rxk3QK-wuazM2$q=9C)>$R{|kMxv+N?f%803#La+>iOkGn1=MXQQ31g&b9@K(bn?W@-Q_{L4iJTG z?S!j5#LN$JgQc;<8<6rL*!esGILISqeFh2^%4l05 zg5>V!&zHy(_KmWYtb=?}zGATs3iXk7K10@#&*>OEsbkPl{z?8_$KW;jXZgB(L;gkn zRlX_zCf{Oq%XhSMTYE<6@#8m}Vb z{QB&C-I9+{cqF?bK+rY0P*CD}wW5gU(N297i(WJj(CDa7E(#R2Q+AY^u}88iCt8woA)X6_iJ6SEfPmPrEV$k_Iz$mD$Q%B$zS>L6^jI=qmFN zbV(dR*U>>)q%5(BjUF}_14)2jtIR{NMdy*!zDm2Y3awu$9gw8jmDP}Bp3B248!U-o zk}gyF>WSgd+?MLm0shGY$_AjPv1+=ywprPR)&Z3*%2r6SkmU4McId6}`nYDN_wWuChBvWu9^-g2lf8E4N0+GIRw#uzGruHDergoM=DeD z&6(`D^)`jdG36xMrluTMK2SbXK2lC7A1j|IpF;G+0jWZ=8zj3!(h8E+khFnhkM+ta zTU$#lDT4y$Y3lHD8b3t3I>UV;t;V!EJZIas1&QkVd8jkrnnN#^gj^Kir2+Q5|1XZcIfQ_K~jhm zCPkn(4D^*^rFbb3y=9=kG!(sCphBvWYS8Sh9=&Ct3B6%pB$}y>ku)@Axh(x5Qz$Af zkVm8FZX0@H{}PH!ZpydhJMteU`7ik{dRU)E59;%ZsK|_2R&hb$jpwv z=+vb=Rxv~xBqESrhywbkp6HSJzQ`+!k^8hD5JGi|sv*2BS68CP-&do@-nXecbQq{_ zsVCK|>Vs}J-Q2tN>ejoPN4LaoIo~X=CwY9NzwRN}cZR=s{W$R-bW*cD}W!u*_);8WY(YDC;728d=`)uE~J!E^>_I=x< zwx8RcwmoC}h3zl4_iP{9KDNW`2s_fQn_YK1D?5{oox5FMyI8w;yF|NWyZ&~mcIkGR zcG-5hcKLP%c1?CIb|dXZ+l{dsXE)w%qTM7rlO42s#qL$Rsdh{3cG-Pkcg60ZeGmI! z`+WNf`!V)2>=)a2*sro*W53mYxBY(m_wA3^AG80!{-XU2`@8n{?H}4db}%^L4!}Wm z=4?>QWCIOgzy!$%GuJACPI&f#l^3l0|@ zE<0RxxZl&Q=b)bBdM@j^w&#|f+j{QkxvS@%o}c!->4-UUjy)Wm96cPp9eo}B9a9{K zIMzEt$2T0eJMMJc?YP%*pW^|?gO0Zx?>XU4z=?8VoH!?w;AH32%gNix*U8^0&?&+x z$|=dI(y7*Iij(Fv-)W)KVy6zL)lNH{b~){Fddumk({ZN{olZF2cDnCOIQu&XJC`~) zI=}2Z*?F$>8_o-y7dtO;Ugo^t`MC2b=g*zbIDg^%mGfoitIpp$|LAYs?=FA3Ja%PV zIakHi&eg{?$TiwE*|o&A!gajsT-ODzD_jq|9&`QC^>;Ue8}0_&C^yE9a}(U`+#K8- z-JIQA-Q3-JyLq^!yH&VNa$Dv0q1#2bpWLpwU3bUaId|S&bT`?%ySw*x_i*=e_i+z# z4|9)jk8!cHip$k^7hK=iR??zvzD1{i^$;UQ{plUcGyH z^tsySMxVQV9`t$SVer5`fQP4t(Ieg?(IeTTzelP^x<{r*wnwhVbdSRxzkAww4)C1o zdC>Ei=V{L`Jiqe%+Vg_R^P=ZNFV;))QoOo(_3*Oua`1BW3iTT7RqZv=Ym%4A3wpic z^{UrYujyW|dCl^g<2Bc7z1K#s&0br*wtMaL+U@n0*8#6XUWdJocpdY)=56im;T`0i z;9cZx^47ffdVk{moA*N>#mC*Jw~xP1luw*bhR-0MLZ1qsYM)^~bv~vsJ}>)B_L<@{ z&1Z(sOrP04OMI63tnlgZS?#mVXM@ispS?aOd@lRk^ttbA@7vSY%h%sG&^O38+&9uU z+Be2G-?zrM*>}9}MBkTuq3>khslL;FH~Jp;z3%(a&)(19FUqgbZ;0PezjD7yzZ$Fae&6_g>vzfTir-DYTYh)^{_v;#yZc-F z_wcv#clLMn_xBI<5AqN3Pw_ACALL)?Kg7Sue}exM|JVKJ`M=@6!2h=Y{QxDvI>09& zBp@yzF(5ghDPU~C%K=jZw1AZX>jQQN>h2EHMr>mKw{AO~z(pi*clJf^n*GfpM{Msd0s|!??z{-nhwlz<9`b z*m%Tv-1w346XQwaXU40>UxTcI{7peoK?OmzK_h}D1+@je5;P@fdeF?EIYD!SmIrMJ z+8y*((1GCY!99a}1$zaD1xE(=4W1v|5xgdNeFzpJg{UD`Ax$9@LMDZ@g`5xhG34iv zUqbtZW``DsmV^!sEeov+eIs;P=*rMlp=(07hkh6OXXxWF>oEH;V_1IJz_7xwAz`MW zVdY_!VKrfOVK8iR*wnD;VXuYF3Y!zQD6Bnfb=bPFjbU5DwuK!GdpGR8up?n#g?%6P zW7xH@>tTO~-3xmV_9&bS7sKUnHN022F+3z3?ZphAAKnqZI(%LD#_+@8w<6RCtB4*E zb`d=zoFm*KdPjIhBt#@fq(r1eWJF{|TuNiQAeXbk2)LmWz@N-8&P+o9z;Eg`X{;}dR+AQ z=oh0+(KDl0MX!zC5WP8iTlCK8J<?1^JC17n42-TWB!V{7xN(IQLGSa8|x6;E7lkr z78@DcH#Q+QDYk!XYHW7w(Ab99k+H3@<6WmAD<9k8DA4$7vC7)96vI?HGW+Dgm^7}LHy$QCGpGRSH!o+ zZ;am)zc2pn_;=#pi$5BFJpN4lm+|M~zmESs!H_^CkO_2xT|ysIf@gwvf^R}(Lf?eg zg!qK4gxrMugo1?Hgw}*{3F8wcCR|ClnQ$xN_k_O^-4g>7BNO{3#w8{u_Djr8%uO7S zI4H3wu{d#D;%kXJ5>F(4m3SfXQsULbpAxSp{*rhz2}`m~a!vA2ib;x3N=oXVl$Mm4 zl#`U7RFPDjRGZY0)Rbfzku*AKOwzcd=}B)Sy`A($(v_qK$x?EUFD)R=m==;2o)(qXH!U_TAuTDb zUs`1vOk0!oLE4RUH9auBAboWD()9i5@24M2|1kYT`kC|#>6g;4rvH$BE&Y1>-|6?$ zA7vOahzv5rEh8W!BqKZ{DkCl`ApkP$4r+@_e{@BpG^PEz|73dqRh(7 zn#{V)#?0o-ahVe`C!y!AUdenl^Nq}RGOuUJS+-fOS&><>S%b3bvS8Natf^VkvtG-Z zl{F`8QP!HQ^;w&;wr1_f+MV@Q*8VKh@vM)sKF<0y>+7s}pot)i2J2ksFdvf-Y?Cse{v%ku|p8Zcw_Z*uX+Z_8G#~kMz z*BtMh;GC?Sf}G}@$vJa#-pE;)^JdPnoE15{at`Lamvc1dgPf0YzRdYH=W@<>IX~w7 zYRb8lb0_D|oWFC)+-|wOa|3cCa{J|G=H}$)=MKy*$t}yR$gR#Dmit03%w3SXDtB}4 zw%nb$dvf>XzL$G6_k-MzazDvEnfq1lmE2$QK%SaspXZq8lINb+Codq+m=~NEnirlI znKwAEHE&_w_Pj%Rhx3l)9nbqP??m3kyc>Bp^Gvt%{>b|~?_R!`ZAJMwqt z@5VZXw{!s5cx!ivJ`!rH=y!luFzg`*3n6izFAt#EeX z+`=~s7n%y+EL>K&vaq9Yf8m#f-xc03@+*ofDk*9%nqIV^XkF39qAf++i*^<5E!tmn zu;|^Q&x+0zeOYwA=t9w@qN_ze6kRL2KBU)>(jn7^yglSbv3qfL@e9ST7SAZ2Rs4GK z{NhE$ONy5jZ!F$iysda=@n0oG30cCF@Fhb^YD-3xj4l~lVj5raV#%u|(@I_|nO!os zL@Rl}%kPvwD1TJZtHQ4$pkiP}X+?R(j0&w{e#N1R;}suPT(9`O!t`gQU8P%P zugcWQyvhNUBPz#NPOMy1*%I zsufl1t2S1BS#_!EN;Od}R7=&q)uGkl)q|?bsw=7|R!^>;QoXTySM{FiGu0QWFV;BJ z^r}g&$*5_pfi<&h=G44iGp}Yv%}P^Ed(Env?KS&r4%WO|^M1{-nv*r3*PN~Ss^;sO z3&VtA;lr|rRSatw)--Iyuu;Qa88&6u^kFlH%^7xa*iXa$7YO8B&Ylqji)Q+lct%bF()K00LUVFRtaUEMH)X8<->a6Qb zwsr1xed;{xeCqt`jCH|vC3P><&8*v5_i^31x=VFe>wc)aR`*-oow`5k?$+I}XX|^` z$JF<)Ppi+Y&#o`7FR!nvA6DO3-&{Ykesuku`la=2>ettAs^40_qy9ksq58x1N9vE) ze^~!j1J>Zzkl#?;Fs9+YxHRhYaH4*uJM(|WsTb#_ctDG{GjnfqO`kM< z+H|VvTr<&Z5}M`aZp~KB&dt8f;muLaG0pMKNzMJ6^O_5q2Q?Qpmo%3(S2WLPUfX=2 z`Ev8U7OF*TQChmU*t9sdxU{&p^l9;I32!NEX>4h2nbgwO@=D9AE%RCyw!GQ0tfix6 zP0RY0jV;?--f8)|<^QVTy5EyH9Jj_<z+;Bty)(#K-iER zndBe`9O1$|AdrJVfN((W!VcI7+PYV5U5$HhV;uG4_xU{EU*7k5-ap}8xAUIlJG`aDZvLtKEBXKA z-=NQ;FQzZ0ub^A#4fGH_Opnl;=|||V=pPt87`+&M8T}ap8ABMKGR88#WXxtPVyt0o zW9($?X6$2ptW7f*3>Kr5QO*Dvm5h6gHby(+9peLYC37=#2lE%^UgodNd?u60Ve*-U zOarqSU|wfFU_NF(W4>Vi%j(AJ!Rp28!y3#Q!upi;6)T&ykhO%hjJ1-rftAbJ#M;W* z&MIQnvRYV|ST|XBSoc{ES+7`ataf%+_9yI~>^|&%>~!`>_GtE4_UG(UHq6$s4Qvw| zW7o0k*#z6q4zZ)`IJpYw$Cob!tFmh&&SBexTGIQI+g*W7Qov$)@KzvF(-UCv#_UCZ6T&E@Xq z!rU;om3yE2`s1>>Gp`%32d@`zAa4loQ{HF1k-X8onY`7!{k%e+m{-Yz0G^bmI<3*f(4PnL4{)q z#}!T}EGd)~Ruxtk0*?#d6@CCxfK9+ofC|une1HKI0(QU)5P%;D0*8S!z$>5~cn5s= z=$Lj9bpLph&|8ouNdM?|X9$J~MhHd=#tN1QmI+o0)(F-Mas`_NTLnJ}b_#Y2_6ZIM zD1v+eQ@|1M1Qi02020UqcRyyRuLW-f{}%mP!~u$UMTJF0MOTXM7dU-CoA#*!^1%97d=ONp(-QSza*XKC-!w9@oaYpJi4 zDD{_yN?(+9EbCO(wd|9!U&}aUyt2ZwqVj&_!^=mOk0~ElURW+JhstH;Rl=UaA;Kxb zslqHFFhe+7m@Ui^E)XsjE)}j2t`_bQ?iU^q<_W1nx{xL02zkN+p+Hz7EEAf9G2zXM zZWR+NR#zOXkXPUpCo9^)6tD}}9qa-22Zw^6fg`|C;23Z$I2FtSXMnT8Z16j9E4Uw| zfcYR3zz`S(W8g{fGI#^L4c-GEf-k@}@D2DL{2=Nr z`j03_v{bZC^n+-lXtQXq=%9!yqKh~pz6cN%iBOSU^f6-)`9&d7RFo9`E;=qcB|0lQ zFS;r2Bc3JREpF3rKR#v&}-VzoG+jDKnj!sCI!&4-{YE-d zI!8KJnj@VrT_{~5T_y!qNcT%cQkV3k^o1-#HeI$!#+9jMCK)EHli6inSx6R@#bqtB zr0l5dg6uEZW!W{^b=gfg1?~f!R_*{@>F?m zd76Bne29Fg{4@C^`Aqq0`8xRz@{RH>^6l~+@?Ye8<-f}FbL5DH61i5n$DUuO}b`~CPOn!GaS&&)-2Ji(5%+1 z)BLE}tl6sBuF2ETG(1g#Mx>EycUgB&_gME#_fq#p_a5zlrl4tP zIyw>^k4{7>$Ktr9O#c%vH%>9mG3FQ-7#ACt8-Z2EHO6(u9mZdb z`9`*pXDl?97|V1cNh%sjT&6qGAH6AmbG@db@H(oS8GCnmvH@-Bs8Q&P+ z8$Z-^tm$0SwWfPbX3hMXJvE{lSIya)*QP1gR}>1OF+NwcI| z23ayJLoE|6-&(d=_E`2?4q7Od0!y)_%u->2EHX=#1+n0kh$Ue;3RsR=PFl`bE?KTx zS}iv%cP#fT?bgxOl~%g7z$&sDtR^dFt+Uo!T~^%cvy#?;HEca?J!idOy=eX0dd2#W z^}6+@^^WzP^+DYyb>r)n)g7#p*EQ8$s(Wk8uuZqkwav3Fv@N!+wr#X+v2C~Qu>E4& zW7}u@)yA>$Z2({^ww2k0wptr*BW!+K$QHBxW;<+4+Ai2G+HTqI+aB4T+FsdS+uqvV z+k4uF*r(X1+OzC4?6d9J_8j{H`(pc2`wIJN`yTs#`vH5Nooc7sS$2+{Z!feL*-P!^ zcC$Thzg6G8{)_rG^?CJG^`82_>)$v!Il4MN0UW80bjL8q2*+s0SjXp%iH=E*nT|P* zxsG{`g^tCJT@IRq<={FB9L0_@htL5!R1U49)?smY9RWw!(d;zb?8^`YUjhMb0-4HXTphGPv+-F@AY+*$4!?%D2d z-HY6-+-uzH+#B4v?u~$Zw|k%afScmZcQf2_x4~WOwz}=^1~=~Zxe0fR`?ULl`!Dxp zcdPq``?mY8`!(JL?}_)p`{4udq4;oo6rPEX!>8a=@htosd;$JFz8qhLug7!oP52g^ zgO}q{T#h5S3fJPbxD~hKPTY-q@F1SVFXO;9{5pOMzl%S>ALGyPm-uV^t*5W2zh{7F zkY|WzsAsrmq-V5etY^Guf@hKE7mvu}@SOC#@@9BvcyqlBZ=tuyTk0+MO1&zt)~ol{ zcx$~DZ=KifCA|S}*xT$qhydQiizRtd`z5%|$zD(Z)z&FV^#rL&u zx^Jd$wr{B~*O%v``4~R7kLN4&75PeiLZ8S7`D8w;&+c>hTt2tY>mz(kzMwDcYxW)T zwfI^aJ2qxEE^6H02sgSKPd7d#`VvEkp~P@vBr$=QN@Ni;h}lFo@f|UbSU{{H))TqJ zCSohGohTpx5g{ey1VU&ClrRz|0w;V#n1~X85NC+<#6{u~ah>G!6m{sI1J{I2||}xDdD)cp2;z>>2D6Obhl8jtGtpjtzbu{319x zI4d|OI5#*is0w01BIpl>g3(|+*b+4kRT)pDMPA|CS(rPhAg4Op%bA?q06Bwp=+Usp(ml|p;w{Tp*P{4;R)gC z;cvn-!n4AQ!^^{~!fV61;Z5PK;qBoA;k+;{%m~}VWY`}Lg`?pYk&cnhk#3P5kzSEL zk%^IMk?E0{k=c>ek)4r)5o#nqLXWT_05>9xfDw75KH`b|9{DHoDDpJ&BGMLVkGzd` zkETX@N7JI|(Sgx1(dp6o(I2CmquZiCM|VZ{ME6GzMyXMHlohRvN~7|qB3d0)M|Dv{ z)D*>{)~GG&jUJ7ji#}@Z*gUv-Qgcr8#^(HHuvy#eY<|@IviV)CTPz)j4U3J4jgF0t zeIENN_I2!=*sR#MvAMAyWAvCb7LO%kCt{~!f5rZZ-H6?e-HSblwZ}WeJH@-kKZ*B^ z_m2;Z4~c&opC6~i^>J(57ANB2cys(v{BZnO{AB!0{Cxb+_|^EG!#5A#Is7t_lIW7? zo=8pfPNXH$6C)F262RER=ZP;8lM_=CUnPD>@DrBA$;8D(YvNwwdE!;#L$Yf!HJOnd zogAASpPZ1Ko}8JSoy<<=BEf&kJCGJNIU;O;s5an`CquO#5Vu{ delta 24625 zcmbrl2UrzH_Xm7;cedQE7b()KAVsRuL8{Vh^rC=tPyrPX5acol8jXGJv4Op}7-O%| zXl&7F>@k*D5?hSM#Hima7u5XU_kEu4d%l>v_i|=-cYf#m&Y3f9{59g+{%ynz- z4NUtp{v3ae|3#<>K#+u*UgT1VjHoCI82-%P7`N{^TZ|MDsheYiMU1FCGHWw5KoC$ z#9M#?98iD;4B&wP^gtJ21iAt&`tmo!DnC+m<(hv7t8|-!53f&SPI&}a`jT958R8_`{9JGvWf zPdm`vX?NO#_M{`|NV*T*myV*N=@>eePNY-lR62tmOlQ&AbS|Ao7t%%aFnTyWf*wha zqDRwX={mZe){dhaXe~XF{+ymd&!A`0U(k!_#q<)ojb2W#rq|Ky=^gY}^iKL~dKbNq zK1d&6T}2Fy_pauTFb;S{g{EwASRJXVp5qjW-v2^$!3N!IZOdl$P_Wd znGwtkW;Qd2S->o0mM}}1<;)6Z4YQWn$ZTS^G25A)%-76bW*>8iIm{emjx*merZ!Y^P1R;slC-c>Hu}PIzl~AJxCp|PEaSROVwrSa`i~{DD`M{g}PE*r5>ZMR@bSU z)Z^97>dETQ)v|iFdX9RodWm|edaZh+dWZTe^Z%^$qn+^-tYvrO)pyi) z)%Vm7wd!Z;=juPzuUQp~u{cYx9Luu~Y}1#Br>#*Ss{Sec#8&SB@W^Vs?90(K$$1-pn{%(k*?*tP6Bb_=_e z-No)^_pnFUqwIC|278m${>0v5e`as9ci6k^J@yy&5&N9|oqf&z#bF%I5gg!1PT)k& zf$PpWa!#Bx=fd^iTsb$+o%7&&ae-VA7tTd+aa=#HKbOp3%nk0%vL;ex} zEB}&z#sA5_=Ktc~3Zy^@T?Bo>Krj@H1WUn6@D~DvKp{v77J3UILZ}cXgbNWulvWrZ zBninvrjR8R3Pr*wp-LDhGzgQ0&xPf}3Sp(NN?0wd5!MRpg!RG(VWY5B_*&Q{>=q6R zhlCTtN#Q%;g7AazM0hGZ6P^pd3onE}gqOlA;ZNbU@R#sb1R^O?A}ldtQW_N&0>rAxj03fEzS|=ic7?$;!1I?xK7+J9uNo&>BXg*035*!)pYMsF5@pjk(4`W2v#ySZi!Fwi-K)lcuMp zm&RM;qw&@FX~H!Tn!cJ8O{ykMldj3oWNC6Vxtc=F2+c@Mg{D!{tZC6q(o7aL(=^jH zvSzkszGi`DvFyh6#<3@I8P|woziofU1sG#%x4U#Zi~&avrwsYIy)((J@Yc7NtsRUs zQvaNiGPjD#^3k=qZ#(>e3kM)}0%8{-b_rs? zZa?C56Qd?IK7`nQd9_O=rjpHjB>1ktuj4oHoA^(SPax(6u~3M`H}<=X-^TCYckz2F z3I7GZk3Ya4;*aoO@!#;r_!Imo{!Cuiyu#U9)xG|fW+j4er<$@eA?aDt{362a$Z4r6F!75;Ri7i zVid$^h%qaO03wj^BZB4b9$G3=^}LnnBX969wu>PKD7VBCaYR3&Kg4*52@n$@CaoX_ zsvL=UB0;|IF)}Be$WS>iTh{1#K_#d})R0UfODC`kEzy~%vm}=orgC0QE2<~8bz0Dt*As#%UeoBRUAzSou-( zBUXnUf>?mu8g0_SzUzp6?!Lv`NA6sg+k6LE{U28#?zgw>5&oF?jd)Bvk@fuS)z66M z9W4v-GvfbLTK1awi};&(Bj@-TVfW=4KR1E^Kwj%-jj836eh!!@KliiNy&CAFSDX4* zeS9_0mlygcYX9%6e*;#)8rUeW2HgNM@*s$1Lu@F-5+LT;{%01%KD&gi#nxf#QLNp7 zZ3NwcqpodO9mIw}EV1!j;!JA=PQ9b@Bp5`3-p9o62wvnfCQ3Wv^RgurSTgisuhMpi53_%VG(m*=M0D~cx z1F>9)cd6JnzwRtd2&5UYXMScuhsa9c22 z=UNqVT;*U*hg*U9I$@Q(J#vW71;HYns9Lt@(rw$xr)ac8J#K zMB|XiRi4al7eed{h%MZr6v{<)%qgJhsiwC+>-k|8?bhL7|m zBXpuoAL&a*=|o#T(wB_WiMAoG4%XU*JTN}yIVI1e6Z#-BzN3o`Ij8Glvo+o8JpFw9 z-F*Ff`t|bi=-JD+msigo)~=rZzHWX#etsT)-afwG{=Vbd!yuW0*g~d~X=FN?L89P+ zIKK;GyCJp*VtX6=WrU|^xc2mOt@Ie35hXiTIir+hv1$pKN9M~m{Y?N_fO;~U{>E}j zf2)CHF~4gm;cF3awaLOoLfoc9Vc7K*%13qUOdn&n4GVA*hVfO5g|`O?0jQPr^*+T zttzACcai&%bCA2qJ>*_;AH;ry*ky=af!Ng*4^_PU-0q+&ga3?_0>nmr56?aoDWy9bEx zh;wMt_BQb=nx1t7v1kHz0Gfgw2Aa?;>s+t^&8)5mn{+{_bA+Z<73c(=SAfXe4l%^YKOpuJVy__f=USB`WlmX8mXw_pWlh;owv?Sh!q*TyhTs__afmty z(gKoJkhGSUr9B_$PWhrPgz}&~DKDxg)r<0`d?5B0#QuiZ8;Jb_v9}O=2eJ37DL=}e z3ZMe1AS#&Z4RIC3d5D)nyb0oaA(#q58|u6U40c9|LV%o=F&%T1b27~Nu!@R;$_NB( zM0t_?C_Nyc6JRtIhq^c_hKhwa263W|>PPj5I0k86lP0 zAqVn-eL-EQ3<_m~t<+$MQ>|1c#A#XBZ)Zd0pg{Pi(5MpPkHgl$qy zrxK{)a{PYFFq~~vF%ZWguD*b8z&D~yx(v|xrpB8(o0U@|vo%IBk$w7=7e$umRh1&A z=~teYqp)r{HHsQ7Z`toRh^nNL-Pzm#Hh%Rq7gbow`BYgt!~T-68G)aZiYQLA)o#d#$E! zQ9o0+sXNqN>K;mTaBql*LOcxO;Si62c%+i(cu>z!e@s26ey3hge^4(W?gMc@hzCGC z2;#jzau9+AD!4AiL-PfTBQ>OcGNVLTSho{6aigPuhaWdJv5skqYs2h$G)bj+qVdoDWK- zlXS{R`vzL?;~bF_EN)>O@%|6G=K>CmQ-Ok)(@tqTK(QNYbTr+5f*p zlCD5xqATetdJJ7n*Fd}&;w2Ct2Jzt#AMu}wq^A$vNRL;H0_i4*mqC1F8{JH|KzuaB z>;4rC=*bEX!(BK!5pj)~M2t-uzy z(kmfe+c-fdSR)%%+u73_=q<{tHqx8u%@D7L_&A6+EJr-tMsHVGh(cQd}K{YZl`0M zqR*q)NS~(9&}Zp$^!E^-0P%?s{|w@jAU=5|eS!XgzDR#h{|NEVAwD1COOY7jttdFU z%84GfvO(hJ6rmJGz>E9HEJ%;#< z4?&WCM!)!Xkfi^hQDB(~@mcby5_=E&FZ$j83X=4DM#W$Z4sjXcvmuU*H&ke4pVMo)H)k;>er}A^ru#7p-74Do3UZfn0Pka%+5v{M4gJ%a}4|I#zcm ziLqp?Ix#hv0^*1dt02A_;%inj9*igB#q?x)G2TizKt0D-5NCHn{A-Bsg81(Cc)*0Bc))}) z;YH$Z$7#J50v8^pi-5D%Cbox84=@6>n1OQye0v{4>7u2U4R6K($Y z{3VmD6K_@KFLm*kN!N+Cqne$fOr2;)#}sBVU~-u}xm+8nWr`KWAotya6cZOU+_l8l zHFj8ar(#N(29@(>jfN>>%9)YOC}uQM!BjF;%owJcsbOlFu}mHDm_g3458?+PehA`6 zApQ-+k3;+f#J_|1X^5YNIO6C9h+l*_8t)8%_!Z@mTBec7g-jDOo@r)UmFfJ9G741`1hBM83E~epr4VQ2L3ytwVlPhA`Xc!|WWhxvZMHiY|YU2yF*&sKT*%wj^ax)Y>_{??S~Hev!e_#P2uuQ2s&uA;h0H zc107q==U>-zi9N#)|e)iSB=gqh(IGedGqo^viXd0^1094^wk*h3pI*R4;uTmcLZuu z)|+JBMa`>4l~Jo&fcT?UwFL2BWxZt%PHKHL&u!GEHc%Tv{5Oa{Zc|-X8!H{dlSZ$> zBTC8&V#@LhY6>dkrb)JTYAdy^QrlXM(#Gcy|NYb2$%W-3@+;&+lZ+hHPHI;aqSel7 z7d2}09}q_o_7w`zYIilt0!<+PC&XXNZzmOghxe}`ywh#KXF ze?$C@jE!}0k5tF}uL!MIV$ivUpBtB0Yv zXoBmo5g|ds01{|%C<T&7@DmGe6F zH|k^RFZjPpi*B!V(fzkg$e?4J2$KVF!tBkg$h@10=eyQ=e1WJ1AyT z|De98xRv^{Vlu~0les{`qur?p&+Rr}Ct;E5Ule@zA>q_%sz=CFXo{{*{TQo5RZ$3c zMqm9j_MMIUUHyk*r5BLs(W-t430K8R8S1~(Xue7DsyB*P5pIgs-zi#mZ}iH_?;MsE zloeGL>jA>-ZZwu^H=5VS+mX>sN(I&gQJEE4iPf-rY!_CaHDC={BlXu)fL%5}}X?(_N8<^fd!Jbj0>%Ly?Zy5J*I{vZzL+ zq9Zf54;$UCBQ~mCM|}`THdfJ5U-|oa`gW?$+Xu1*Xwz-+F9AP*989|+7AvL)#8pA4GWVeD{7^n*lyB_GtXiacl#tWgA(@HnHQ`X10Yz&OHbc@en12L?R@TAdw7-6iB2(A`KGh>)6j! z-P^kcc8ZR{>>2hfBnlx>1c_pZR@I4NkU$zA0f|ybltH3= z9s7L;MK7|K*dGx=uPCrbcEYZJL=7Zrl|VbT9d{r0zJmJ!Bt~`O{#BvoZ&;o3fy8LV zbl2X~+ea?V0g~U8a%!kARNGycJ7wfpZ4(LT4(3O>5Vo@jbWgnog)DfMlRiKZB#Ntlq;}qx( zoL2cjVhJRW7bsT*zK6!B6Tk%SGX?%cNVK+clOWNigFlsqA#5sAnpuSLjeL-t1ND~*>TR8d>}=)EL*i>4>Py@e1@(^#YBU5ysIMxhcgwfh%+0u4 z+#Q{*QMQU~y;nhfRYAR5L0!&0dc#FCqo-DAzjKp#Z*1dv?p4@MZ`hkJ64)t-LuTPAdq_cx&EH!C=7KB6yHEgD~*+ z3Wl@t;+5UZco*KS9V74Bj`92_3 z&{z`Leemc{T&u8;!bHqA+D4)aU@_BqdU%(ggMSL-j0_x9@xDAOrkhlwpdyx1A z5-6#80Evf?c(jfmuG2hUt|J{^q3HeBPQ5?11f$FJu%@EiF}{APX&zm?y{Z->O6 zka!J=zaa59B;G*cA4t4~#5+j5hd>1Zww~Y7p@CieZj~dyS7p!d=MO-Dcjy3+5U`D1 zAwbzZ1Uv*L|9!+YRCWw@l5ecHjp9!$IywUZ(W#^F6&;-iK>0xQKNh9CA{|ZY1bKzO zrfBFY1XL@39RgaXpK>uLjZL#NJDp#hJd=g2U@Vfz=8jbf2Q#AG5>^r3V{HD z2!W*V@^>DM8%-e4K%mz?yyDT`zgGSY1YJJz@|}SFo0kGE5D@4?V9?G>ffo4x#Y;gD zL_reJ^9>;|f&eMWSQ%fL30(!#c8dvUboU$rQ^jI;k;PEEQMf1*tc4!PWP*)gE7%F$ z1be|j=q@-4PTUK@1p;#jEFiFizzPCu2y7s*g}@G?MHmz=fc<*GRcA86lX)WaRFYP~ z2hkQdbehZ&jgcYf(Vnydw+~6HzMyOq6#77bHr=)7fI@V8#1IAws4Hs~20`G|DkMPQ zjFjKqG(|{PP#6elNbwN3d=d~43Ns;F$kn0DX-Db$@A4r+u`uGlMhu}$C~vonI|MyD zvQc5Q(zFT)JU-Y)7$emFAKQ!->LBohz^gqQ6|_S0|FX@0iy8kpo)V@A^HAUrrV7)9 z>B0O%YyGQl#% z1RR#u~r-ZXQ3!Q1VPzx}e;a33>C8bjd84zt{Ltc@i=ph$^s(*(LdDHU4Xs+f% z_gi@*yZdaYnQgyS1~q5Q3sc&#aj6L8A-CloZI!1UJV6is@r4W=sP!7S!6=J9uCWea<5R8Ig zGz7?DD$&a1PIGa9sLMvh_G}c4X%qFuE(j^Y+n$(-siKmOifLlHm>~`phlrVCmY6LL z6>}h{foQuR7z+V%uX+f^LC^q!7J^0y;5xA*9Tkh1CrYppm2?y|bsBksG9jl-$AQmv zOc#}OR74LO-(f{jNk_#7QLB6)XojFgcSTlo)~GubJV8{_QE?&!6I;be5Pa6&1Bg>a zB^?!&bQDZ#x1y4cg30YvAGfOW?s=jvFBRMKQZNNkT~zW?R1s0Vhqz2^LrXSdD+JS8 z#pMvp_}5IcxJEaZ38rUj656LaC+#sx6W5EVYh5F55I2gO#LeOsajUpZ+z!!xNH7Zm z8G_jm%z*#}i+K>tUnA}izY=$fUyHlM-Qpe*`RoD+7DDg^1dAY848alzmO;=e|G8(8 zC?3ZaFY8!d5>Lvld%Z2hvmzQKezGT9ydYjwTKxkAOXU}Pdq;}b#OwdA@so(Q3AKs0 z#GfHRuvWH-cf`98tcKvHeld3xbM-%f=-7hj>(8}WDX zh4_c~5`r}ltc7451nXCbe~Pcgzr?>G*Z{#s2yQ@dQ=U2GYEKDArk4l^HZ}J9L88!J zd9;s9q9sOBOKf^Y!3eb52JJn7U@HV$AVAUZI%-XlgCt5_kaJ0rq>=O>*aiVo@|Vjc zeaS#Ved`VgzJg$SvL$NU$jG1LV^Au+98V00r0pW1<6@C zZd$bNB=uH3+^jK`LZnbBObVAGq)4fc)K`jaf&6Bu2QC%Mt~u_wG#oX&CoYxA za*ii1jgpV$xZqNy{36E{m#SskT=X?oj?Z<#rEzkt^3^D}DqrK}6S=771o>5NH(Z(| zo9CftPLT)X^}wa+a($jNF3pnHqCh+8x^&~;O}i!C zMzKmlKKG38|sPBTvk{$3~j zA-z;Ns_doL(qGcw(i`a?C7Pl>?;o_Pfr98;2;M=o85(PTw||s&~%3+2T46h z8hlv5Mq$?t`J2WCO$WF_l80!+E-5b8xNAH#T_Gt!QiC3-^wtit_PC`Sbhy$_=n>cH~p!} zLljZzHR2z_h^9zWf`Y9gYt;;cq-95HswqXWp}i&w4WcSb(u``~4A7o0Xew3D*MV-t zV@)-&OH+$K)zoR~HRCjBPkk0dtE8k2#DXDd2Qdti_K-xzaDt=@dg;flVw&-~08H9u zYsSjaCx*($!^}S}&uKpEDDEcrIWhXv$gP>$QR1MigMM6@)6D9SJASe%`N;$4brd@* z%cP&&wx~nis-EOjNe29x6{&fGR{4uS!u3QDvd&&cp0k_D6JF^CA0$eTEKd z{>lEu{=>fG?9nmI7&Psbfu_8&&~#TWm(LZV!$;D(LSExY;6c-2!(c#4X=qTc0;izy-_!b>UJSChF&I#wyk;Gqx$LLVvb95l_ zB|41wm+(e-i!w?~Bt#pOIF*S_=-l98@isd2XN3;*4V6lzu~I!cz}F}>Y0(+J3F!3R z9BCdpzxRc-7@gp2mA0T@@eew5=dX!FN9po3V>J^slQmP&`MH_s1l>x_HqCa;mzu9M z2Q()&7c>tw&opoKC_PEfK+i_cS+9qlo1TZBmtLS=uwIB>m|lclAH5-ZBlRZftD|`T-qX9U_pl4-B6M-?(xZ!8mn&Uv>vQ^D^aJ&m>2K8EuYXYg zu>Mi~WBT9fpVU94e@6c&{h#&k=-<=7um4d0SN+HOPxYT000Reu{syBArWx!oxMJ|$ zkTFyna)t(mc81P|UWPplgA9WWLky!0`x}ll9A`MgaF*e0!?}j@4Hp_N(i$!?TxQs2 zxWjO#;V#2HhWiW;7#=b_V)%{Wal;daPmH=4c^hRKO*GnIbk^wiuFhR!yAJC*uj`7g zo4ao9y1na;t~Uy;6v98~CJ=yhC*E3zub-iz_XY6m>*Eq&F&Uk?FAmaq%Y~!KE zImUU$V~r;oPd1)nJl%Mvv247|xYfALSi8b_tMN(WQ^seE&l#UL{=xW?@nz$y#@CH+ z8s9R$ZT!agt?_#k%!Du@O=uIf31=dhNG5tF`X+`ZP9|X{$tL9{lTB8d95T6O^3;?t zH8$;T>S5|>+S4@1G~6`GbdYJhX`*Se=?K$W(+Q@ZnNBvHVmi%qhUqNRrKYW>%S~5m zO;?+)HC=DI(e$+GeKX9=+|1W3(rlnvyjh}IvRSHGx>>$ip;@unFtZV6Wo9GIJ~P{5 zcGsLVcQNl}9%vqH9%3G59$`M%yxx4e`F!)0<{Qj+n15})+kCJ2Me_&de_BWuwidlD zLM_5AA}#t_L|epKG+0cum|-!?Vz$Lxi}@DXg%+zVwpn~_vD;#=#eR!p7T;QYZ}H6H zrKN$TjisHXy=8Yx4@)o05X&&j2+KZ}36@EgDVAxLTFcKYXIk#HJY@Ns5%th!q{S-Dt6StVIzT4h`1Smjw2Se03gv>I(yX*I^G#%iY37OTBh-&;MjdSXpm z>sgy=t?jKntOKostwXFst;4M&t@~Q1T9;ebSdX*TT0`sc)>EwKTF3>ey4kqe46sSGskDJM(`;tg%(9tnGuLLm%|e^iHfwFx+ibMiY_rv7 zyUh-p%QjDKIa^QL6x$KDRkmYnYiy_6&bM7)`-QD`jqO(3?Y28?ciQf(}WS44}Z&zejVmHFB%xx z9FrYW9Wxwm4UKPIH{$ILmRK;{wMo92Yz8aQxBnuHzfWw~p_fFek!^bfTTq zPMnkABsu9hIXXEz^>A`?@^JEU>gD9?6yOx>6zUY=)W@mVX^zusr)^G$oUS;%ch-0I zaqj0_?p*IY!+E*$O6N_^yPXd>f9HJ3`LgrR&Uc-Eaem;eed&U`02j)IabaC}7tzJc z#lpqP#nz>pOLrG17Z(>FmsppfE@dubT^715a#`!L$z_YnHkX|)yIl6T>~lHqa?j<7 z%bzZPx%}huz6ag|^sw&{)}x?Db&okc*7n%Z<3f*%JudgS*5gKxTRrad_@&1~SKJl2 zQm%|E>&m-|uAy4j7}o^XB-a$zG}jE*A+9B^!(B^V%Uz-CG}jrfvs`DpE_7Ywy4H2Q z>qghju7_REx_<9^!S$l+1J{>sm>cINxJhn$ZX?{P+&*`k;kL?cv)gXBeQpQb9=JVs zd+Uz7i|%IbcJA)(p6Fw#~8R*&DGt4v6Gs-i@ zGtM*9v)FUG=UUGlTF^LLeC_$h^PLyw1-xi4){FNt@#^N~?&am>?KRD7p4U>Z z6<%AtzVzDJQ`6I;r*%)ep7lK^^_>Ftx?lkJn^ljl?5Guo%pXN*sc zPm9lIK9hZ>_$>9=;Ir9htIu{{jjx5Tm9MR@y>FoJaNjAu(|u?8&i0+>yU=&B?=s)z zzI%NS_#XB>>U+%hTi=tu7qq_DeSh-3?R(Gnf$t;VKYjo9{m1v6pNXG?pOaq?KR3Ss zzaYODzkYrL{08~u`Hl3e@T>Bx_M7ZC&u^jMBEKd6jK86OSASD~3;+K9h5i%$C;LzJ zpW!e2&-Gv6zsP^7|JVL|{P+7G^grx>)c=_OS^um4H~eq;-|_#&|Dpe{{;&PDZ~Wi- zzYj1Dun%wya1Q7Z&^sV5pnt%?fcSu{fSiE5fP#S00aXFj0kr{B0u}@;3Rn`bERYJ+ z4>Sxk4m1ml4onWr3d{-24=f5C7FZEj6<8Bk7uXQk7`P~KOW>uzr-A2>4&sBP zAiW^{AcvsfpuRzgLAgN%LB&DCwLxV;qk<}fs)Hs3O$wS4G(Bim(43(8K?{Qx1#Jr2 z6?7};?_es}I=E+WP;g9ezu0!BHrC}q(D#FHu)rQrFHH3X0HZ5#M*sQSiVPA*s3ELNT zAna7wnXq$V=fi#qyB&5n?3b_?VXwkohyAS$7s5@$EyAtBZNlBceZvF7gTq6^Bf|TI z4+xJBPYO>BPY>|7(yd(S~0wa1y zghfO~L`9@Tq(=;i$d1U3D2OPI7#1-iq9I~Z#FmJY5tkyKMG}#Gq)DWCq*bJCqqwnM9dIIYfCz1w} zF(ol0V#;E)qhcyzT4JWfERWd|vnytA%z>E0G2g_TiTOU}hnPz-S7NTk+>Ln>^H;21 ztYvKXSm#*RSdZAAu|cuDV?$%ZVM)VOqQ+>p4exT3g`apU5e<0i&U zj++`cJ8oXwg1AL-OXAkVZH?O>cOdRy+~K(I;x5ED#KZW>@$=)C#;=Os9)B$UMEt4v zv+?KSFUDVvzZQQp{^$5V;$Ox875`8C`vg3JOkfhY1TjIA&^;kCAwHov;fsWg2`3Y- zC;XWR67>^}5=|1d=80B`wu$zMj)}gB0g1thp@|WReG_96`y~!YtV!IKcs)r<3P~E4 zv?6J1(pO2llJ+JYN;;Z!Jn2NzrKHPA*OG1~>nB?$+a}v5J0@o)4@)jh9+_N`JSMp& zd3N&R&Z8gZzbPJewO@u@|zTc6tk3G+LYLo)Rc^r%#@)i zxheT6qf*AC)TY#@z?9~ci7As(=BCU~`66XWDwV3AYME-2+AXzvs&lGqs$XhgYH(_3 zYD8+^)acYvsZQ;(G1z*r-C&2o zPJ>+r`wb2p+nQocsnYoz-nZ=pIGOIG1GC$9pmN_$XcILdyWtnZ6D>K(*uFu?o-MKes4%SZ--F86Zo)!ZAo zxAJ=D#pU(S8)o4-p;(;dHeDX<{i&FnRhzxT;BP-7x@PHzWJf~5&3=dqw^E; z2j^$y=j7+*kH|00FVCNlFXu1JU!1=zU%NbiUH*pr&H3B%zs$dw|GL1Wz@xywAgCau zAgmy^Ag-W)K}JDl!O(&{bhNR!psJv{U~Iv-g3AT>3Z50bD0o%ySHV98?+e*Np-@w( zUuaZlQfO8fSy))uR5-VAbK%~?BZbEbPZXXiyij8R4m((2N&rHf0Kl`bz`Rl2rx zL+R$yZKXR(zb@TVy1(>L>Cw{Tr6)^Im!2)XUV5|i=hC}n!DX>!{mKTGC6pa3J6(3R z?0nh9^3d}B`RX(l)Rdf|wB~)pu^s9`jOsdSQ ztg39Q?5l#RLaM^5BC7gmtD>vos`^(AtctHns!FX&uNqS|r)pQ#wW{}H?8k(UDIC)> zX2qD(V=j%kGUoc2n`7>ec{b+vF@KDCHRko0zpLqLwpysxRO?q8R(n;4R7X}vRmWBj ztd6fvs!plStsYffSv{_La`p7;S=Do@7gjH-URvE+y}J6V>Lb-Bt4~*-tJYqqzFK{w z`d0Ow>U-6H)EL${)_B$g)CAXr)`Zs#tVya#t;wj#uF0(_s41!$Uo)d-LCvC?r8R9e zD{D5@Y_0jSW@pXrn!PpO)x4~=sqI^vSUaq?w02}|MeUf{+S>YBZEaI+OYLX1pVzk4 zuB=^MyS8?H?WWqTwO`imtld?+w|2j__F(Oe+JDAcj}0GNICjd|^<&SDeNxBO8Ps*H zGp#ePv#)cj^Q`Mt=UW$07gX1~F0`(H-JrU}x|F)~y1{idbuD$1>!#MtsGCzaziwgO zqPq2Uo9cGf9j!Z2cdG7e-4At_>aNsXt9w-UXWhGctRB?U^(AF;tiN1;t^Q{H&-Hif@7F)7e>@H!M~zfWX9cen& zbfW20)7hr;O&6OkH(hJG+4Q36RnzOHznlJPdOsc?55`mD)#JJG!g%NLG2=_ePanU1 z{FU)66We%SoF`ArMcBD82)^jnNuOj|5ktXkY!0$T>PB(|iqq_+%d z$!^JQDQGEf8QxOXGQMR(%V#Zym4 zh$3jAQjbLeL0MJ~1wmmEsX(o=AcJ6=nKYR+$s|oONhULyOy8W;ym0G0@Hv+z#B0vn#fCR7~I0ak;t^n77o4_rg9q0h=n>(4a%{k`5=3(aH=6v%=^Jw!p z^LX<_^JMc>^EC4!^Cq*2Fel87mMqICONnK*Wv9hrfh>pxwJ;XZ;<0!w0ZYgdwnQyy zOPyt}<$&do<*?2v89-It513m}702YD8;2dxf_#RjW zeg^&n`~utw?glGC3kZP-h=DTb2ZNvjM!>iU)IkH>1E#p%s_l6&Z`@wmzX&^iVeiF`ypMz(> zFTh3cYW068+0`dYu1ltmq=3zbkA z-HV<;8_=`pIkXx58T}PCT}0c_4lEmc6nh*SfDOimWBJ%9Y&7;PHV2!F&BNZr-oln* zE3lQ=YU~573;%?;oyE>!O;`us4Sy8xhv(q~@gevqd<txHe<=6(>hS`SO@@*q+qiy4C z<82ddlWkLN(`<`un{0$FVQVC^h*3ldv6|RPSO|zf2$Wz5k?;^cB1nXZC=n+#qMq1C zd`Emw93_qutwaa$knBu$B_APslYPltayXe!P9mQnpCf0Gv&dqygfzWEE+*e6x02gQ z6S<45AkAbIX(dt8M%IuF86{OxCk=8BnIdb+dU79mfILJVA&-$)YkJm9s##d`X^p+c zs5w`2ml{dUq28btP>ZOysTI_R)ZeKMR4KKYDx=D&-BcxIp&$yOP)eb`rfR8gsr}UV z)KL?4oH|K0Q!P|0b)C9LXVW=!54soKkIth9(nIKB^aOf7y^3B>Z=uWSt@Jk9Ov7|F zjnfour+HeSzo8G(C+XAl8M={fqA$>w=~ns%-A3PLx-b)&rHqMz7?iOwH4Mw}jFStLO%$VS*WtFuY=8#c{0vKQG_ z_6FO={?2x=_t}SBA8s%=oEyOvaE06i6ZbSXg)8RfbBnpZam%=OxevH?+(+C-?h|e+ zx1BR_UvgFs=SYs`c+SbWIS*IQ9plb$ja(Dg%(ZZ>+zqacyTkp#-Q~ORxqJaXmLJbg z;-~P_`04yizKAd8OZa#A<@~$+O8$NR1AZO9p5MTi@|*ZA{0G&1m_Nneb_{gPa;$dj zayT7n#{tJ7#}UUd#~DYnqs4K-aoN%8xbC>=XcIaK*+P!cL+B;+5ekLr!i&OeVUF;c z@VYQhSRlMBtP(Z~TZD39tFS}ZDeM+11e@R#41DM>Pnd29ZNhD#UHC(|Cp>g!IlDM> zoIRYq{)=V`opYTVoz+g&`Gd3FHP|)7wc54IRpqj}P#5lEU6RY|3b+(k)D?GWu7qo^ z>wxQ!>xk>P>!jz5}y{Qh%?0(#kt}_@ojO5xYQ)B z64!`p#r5I_ahu4BVbKul#J%DH@u1isHi}JRv-qocNxUjv6K}aYyN9_8-Osq6bI)+U z=$`HVi~9}t0{0^KV)qjF3ild!se79nbgS;4q^{Cq(i74kX{eMhjgrPl^oc%?&*uyJ6ko(w@B7Ku>bvH&Sm7=NL^)W6-o!~doKEB`6~PyS2(tN!c$-~6}z4+2?%E`e@=M*_V9GXv`b zOyJwVkAaJUD}if)8^Nq#&tRWmZm@swiQux}n&773=fQ2k9lp}CUGFT5c9QMfEz9_GTHus3`({IBrY zNOq)Gq)+78$gD_lWOZaiWMc%2*dtt|E^;VxIC3fSTjW+WH##UfB>H^xrD#d?!)R%A zQxu94(VA#FdLVi*dNq1G+8!Gadnz^}wjlPm*wWbcSVatoNiiiBi5-ibiTz-T-HP3h zJ&cctkB?7`zY$*?UlO;)xp*qRH{KHOP`jz!)gEe3b$~ih9i$FX$Es7*Y3g)!rdp)F zs?JsCsc))psf*PLHKHC+e^7r`e^oE3SJZpzL#?ycRqL)T(N=07Yn!!Cwa>LLw4K^+ ztwMt}K}%?RwSAgtzxJJWT05gPYE4?R_Oo_V@1p1G1^QThygo^vqEFMO>ofHty;v{N z-_e)r@9C@b)%u6}-}Mc8slHh+)64apdX4VVzt)fHzvvx_zKPL^*@?d<)+PRt_&QOa zIGFfnqB(In(VDoCXiMBlJTy8RU5)NWPouX{U^0r0qCC~B2W2!0DoVu2}nQBYjN&S(!o4TKRm>!w_OL|M1OMB8v+LTD|Nq?I@ls=Yj zN?%A{PG3!5OW#dD$aKnNXL2&#Gr5`mnY_$^%u|{C%*f1y%uAV> jQis(M^_}W_*Y~Y|EWiHoKh0_9&i}Kg{Gb1S>o@!d!CADP diff --git a/Flash Chat iOS13/Controllers/ChatViewController.swift b/Flash Chat iOS13/Controllers/ChatViewController.swift index 266a41727..1c10044cd 100644 --- a/Flash Chat iOS13/Controllers/ChatViewController.swift +++ b/Flash Chat iOS13/Controllers/ChatViewController.swift @@ -44,7 +44,6 @@ class ChatViewController: UIViewController { if let snapshotDocumets = querySnapshot?.documents { for doc in snapshotDocumets{ let data = doc.data() - print(doc.data()) if let messageSender = data[K.FStore.senderField] as? String, let messageBody = data[K.FStore.bodyField] as? String { let newMessage = Message(sender: messageSender, body: messageBody) self.messages.append(newMessage) @@ -69,7 +68,6 @@ class ChatViewController: UIViewController { if let err = err { print("trouble in data sender \(err)") }else{ - print("bebra deployed to space") self.messageTextfield.text = "" DispatchQueue.main.async {